mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Improve aws_s3 permission handling for non S3 (#38574)
* Test case for missing permissions * Update aws_s3 module to latest standards * Use AnsibleAWSModule * Handle BotoCoreErrors properly * Test for BotoCoreErrors * Check for XNotImplemented exceptions (#38569) * Don't prematurely fail if user does not have s3:GetObject permission * Allow S3 drop-ins to ignore put_object_acl and put_bucket_acl
This commit is contained in:
parent
0ff04ad41b
commit
46886f8249
3 changed files with 78 additions and 38 deletions
|
@ -135,6 +135,9 @@ class AnsibleAWSModule(object):
|
||||||
def warn(self, *args, **kwargs):
|
def warn(self, *args, **kwargs):
|
||||||
return self._module.warn(*args, **kwargs)
|
return self._module.warn(*args, **kwargs)
|
||||||
|
|
||||||
|
def md5(self, *args, **kwargs):
|
||||||
|
return self._module.md5(*args, **kwargs)
|
||||||
|
|
||||||
def client(self, service, retry_decorator=None):
|
def client(self, service, retry_decorator=None):
|
||||||
region, ec2_url, aws_connect_kwargs = get_aws_connection_info(self, boto3=True)
|
region, ec2_url, aws_connect_kwargs = get_aws_connection_info(self, boto3=True)
|
||||||
conn = boto3_conn(self, conn_type='client', resource=service,
|
conn = boto3_conn(self, conn_type='client', resource=service,
|
||||||
|
|
|
@ -290,16 +290,18 @@ s3_keys:
|
||||||
import hashlib
|
import hashlib
|
||||||
import mimetypes
|
import mimetypes
|
||||||
import os
|
import os
|
||||||
import traceback
|
|
||||||
from ansible.module_utils.six.moves.urllib.parse import urlparse
|
from ansible.module_utils.six.moves.urllib.parse import urlparse
|
||||||
from ssl import SSLError
|
from ssl import SSLError
|
||||||
from ansible.module_utils.basic import AnsibleModule, to_text, to_native
|
from ansible.module_utils.basic import to_text, to_native
|
||||||
from ansible.module_utils.ec2 import ec2_argument_spec, camel_dict_to_snake_dict, get_aws_connection_info, boto3_conn, HAS_BOTO3
|
from ansible.module_utils.aws.core import AnsibleAWSModule
|
||||||
|
from ansible.module_utils.ec2 import ec2_argument_spec, get_aws_connection_info, boto3_conn
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import botocore
|
import botocore
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass # will be detected by imported HAS_BOTO3
|
pass # will be detected by imported AnsibleAWSModule
|
||||||
|
|
||||||
|
IGNORE_S3_DROP_IN_EXCEPTIONS = ['XNotImplemented', 'NotImplemented']
|
||||||
|
|
||||||
|
|
||||||
class Sigv4Required(Exception):
|
class Sigv4Required(Exception):
|
||||||
|
@ -322,8 +324,9 @@ def key_check(module, s3, bucket, obj, version=None, validate=True):
|
||||||
elif error_code == 403 and validate is False:
|
elif error_code == 403 and validate is False:
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg="Failed while looking up object (during key check) %s." % obj,
|
module.fail_json_aws(e, msg="Failed while looking up object (during key check) %s." % obj)
|
||||||
exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
except botocore.exceptions.BotoCoreError as e:
|
||||||
|
module.fail_json_aws(e, msg="Failed while looking up object (during key check) %s." % obj)
|
||||||
return exists
|
return exists
|
||||||
|
|
||||||
|
|
||||||
|
@ -378,16 +381,17 @@ def bucket_check(module, s3, bucket, validate=True):
|
||||||
elif error_code == 403 and validate is False:
|
elif error_code == 403 and validate is False:
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg="Failed while looking up bucket (during bucket_check) %s." % bucket,
|
module.fail_json_aws(e, msg="Failed while looking up bucket (during bucket_check) %s." % bucket)
|
||||||
exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
|
||||||
except botocore.exceptions.EndpointConnectionError as e:
|
except botocore.exceptions.EndpointConnectionError as e:
|
||||||
module.fail_json(msg="Invalid endpoint provided: %s" % to_text(e), exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
module.fail_json_aws(e, msg="Invalid endpoint provided")
|
||||||
|
except botocore.exceptions.BotoCoreError as e:
|
||||||
|
module.fail_json_aws(e, msg="Failed while looking up bucket (during bucket_check) %s." % bucket)
|
||||||
return exists
|
return exists
|
||||||
|
|
||||||
|
|
||||||
def create_bucket(module, s3, bucket, location=None):
|
def create_bucket(module, s3, bucket, location=None):
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
module.exit_json(msg="PUT operation skipped - running in check mode", changed=True)
|
module.exit_json(msg="CREATE operation skipped - running in check mode", changed=True)
|
||||||
configuration = {}
|
configuration = {}
|
||||||
if location not in ('us-east-1', None):
|
if location not in ('us-east-1', None):
|
||||||
configuration['LocationConstraint'] = location
|
configuration['LocationConstraint'] = location
|
||||||
|
@ -399,8 +403,12 @@ def create_bucket(module, s3, bucket, location=None):
|
||||||
for acl in module.params.get('permission'):
|
for acl in module.params.get('permission'):
|
||||||
s3.put_bucket_acl(ACL=acl, Bucket=bucket)
|
s3.put_bucket_acl(ACL=acl, Bucket=bucket)
|
||||||
except botocore.exceptions.ClientError as e:
|
except botocore.exceptions.ClientError as e:
|
||||||
module.fail_json(msg="Failed while creating bucket or setting acl (check that you have CreateBucket and PutBucketAcl permission).",
|
if e.response['Error']['Code'] in IGNORE_S3_DROP_IN_EXCEPTIONS:
|
||||||
exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
module.warn("PutBucketAcl is not implemented by your storage provider. Set the permission parameters to the empty list to avoid this warning")
|
||||||
|
else:
|
||||||
|
module.fail_json_aws(e, msg="Failed while creating bucket or setting acl (check that you have CreateBucket and PutBucketAcl permission).")
|
||||||
|
except botocore.exceptions.BotoCoreError as e:
|
||||||
|
module.fail_json_aws(e, msg="Failed while creating bucket or setting acl (check that you have CreateBucket and PutBucketAcl permission).")
|
||||||
|
|
||||||
if bucket:
|
if bucket:
|
||||||
return True
|
return True
|
||||||
|
@ -419,10 +427,8 @@ def list_keys(module, s3, bucket, prefix, marker, max_keys):
|
||||||
try:
|
try:
|
||||||
keys = sum(paginated_list(s3, **pagination_params), [])
|
keys = sum(paginated_list(s3, **pagination_params), [])
|
||||||
module.exit_json(msg="LIST operation complete", s3_keys=keys)
|
module.exit_json(msg="LIST operation complete", s3_keys=keys)
|
||||||
except botocore.exceptions.ClientError as e:
|
except (botocore.exceptions.ClientError, botocore.exceptions.BotoCoreError) as e:
|
||||||
module.fail_json(msg="Failed while listing the keys in the bucket {0}".format(bucket),
|
module.fail_json_aws(e, msg="Failed while listing the keys in the bucket {0}".format(bucket))
|
||||||
exception=traceback.format_exc(),
|
|
||||||
**camel_dict_to_snake_dict(e.response))
|
|
||||||
|
|
||||||
|
|
||||||
def delete_bucket(module, s3, bucket):
|
def delete_bucket(module, s3, bucket):
|
||||||
|
@ -439,8 +445,8 @@ def delete_bucket(module, s3, bucket):
|
||||||
s3.delete_objects(Bucket=bucket, Delete={'Objects': formatted_keys})
|
s3.delete_objects(Bucket=bucket, Delete={'Objects': formatted_keys})
|
||||||
s3.delete_bucket(Bucket=bucket)
|
s3.delete_bucket(Bucket=bucket)
|
||||||
return True
|
return True
|
||||||
except botocore.exceptions.ClientError as e:
|
except (botocore.exceptions.ClientError, botocore.exceptions.BotoCoreError) as e:
|
||||||
module.fail_json(msg="Failed while deleting bucket %s.", exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
module.fail_json_aws(e, msg="Failed while deleting bucket %s." % bucket)
|
||||||
|
|
||||||
|
|
||||||
def delete_key(module, s3, bucket, obj):
|
def delete_key(module, s3, bucket, obj):
|
||||||
|
@ -449,8 +455,8 @@ def delete_key(module, s3, bucket, obj):
|
||||||
try:
|
try:
|
||||||
s3.delete_object(Bucket=bucket, Key=obj)
|
s3.delete_object(Bucket=bucket, Key=obj)
|
||||||
module.exit_json(msg="Object deleted from bucket %s." % (bucket), changed=True)
|
module.exit_json(msg="Object deleted from bucket %s." % (bucket), changed=True)
|
||||||
except botocore.exceptions.ClientError as e:
|
except (botocore.exceptions.ClientError, botocore.exceptions.BotoCoreError) as e:
|
||||||
module.fail_json(msg="Failed while trying to delete %s." % obj, exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
module.fail_json_aws(e, msg="Failed while trying to delete %s." % obj)
|
||||||
|
|
||||||
|
|
||||||
def create_dirkey(module, s3, bucket, obj, encrypt):
|
def create_dirkey(module, s3, bucket, obj, encrypt):
|
||||||
|
@ -466,9 +472,14 @@ def create_dirkey(module, s3, bucket, obj, encrypt):
|
||||||
s3.put_object(**params)
|
s3.put_object(**params)
|
||||||
for acl in module.params.get('permission'):
|
for acl in module.params.get('permission'):
|
||||||
s3.put_object_acl(ACL=acl, Bucket=bucket, Key=obj)
|
s3.put_object_acl(ACL=acl, Bucket=bucket, Key=obj)
|
||||||
module.exit_json(msg="Virtual directory %s created in bucket %s" % (obj, bucket), changed=True)
|
|
||||||
except botocore.exceptions.ClientError as e:
|
except botocore.exceptions.ClientError as e:
|
||||||
module.fail_json(msg="Failed while creating object %s." % obj, exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
if e.response['Error']['Code'] in IGNORE_S3_DROP_IN_EXCEPTIONS:
|
||||||
|
module.warn("PutObjectAcl is not implemented by your storage provider. Set the permissions parameters to the empty list to avoid this warning")
|
||||||
|
else:
|
||||||
|
module.fail_json_aws(e, msg="Failed while creating object %s." % obj)
|
||||||
|
except botocore.exceptions.BotoCoreError as e:
|
||||||
|
module.fail_json_aws(e, msg="Failed while creating object %s." % obj)
|
||||||
|
module.exit_json(msg="Virtual directory %s created in bucket %s" % (obj, bucket), changed=True)
|
||||||
|
|
||||||
|
|
||||||
def path_check(path):
|
def path_check(path):
|
||||||
|
@ -521,14 +532,25 @@ def upload_s3file(module, s3, bucket, obj, src, expiry, metadata, encrypt, heade
|
||||||
extra['ContentType'] = content_type
|
extra['ContentType'] = content_type
|
||||||
|
|
||||||
s3.upload_file(Filename=src, Bucket=bucket, Key=obj, ExtraArgs=extra)
|
s3.upload_file(Filename=src, Bucket=bucket, Key=obj, ExtraArgs=extra)
|
||||||
|
except (botocore.exceptions.ClientError, botocore.exceptions.BotoCoreError) as e:
|
||||||
|
module.fail_json_aws(e, msg="Unable to complete PUT operation.")
|
||||||
|
try:
|
||||||
for acl in module.params.get('permission'):
|
for acl in module.params.get('permission'):
|
||||||
s3.put_object_acl(ACL=acl, Bucket=bucket, Key=obj)
|
s3.put_object_acl(ACL=acl, Bucket=bucket, Key=obj)
|
||||||
|
except botocore.exceptions.ClientError as e:
|
||||||
|
if e.response['Error']['Code'] in IGNORE_S3_DROP_IN_EXCEPTIONS:
|
||||||
|
module.warn("PutObjectAcl is not implemented by your storage provider. Set the permission parameters to the empty list to avoid this warning")
|
||||||
|
else:
|
||||||
|
module.fail_json_aws(e, msg="Unable to set object ACL")
|
||||||
|
except botocore.exceptions.BotoCoreError as e:
|
||||||
|
module.fail_json_aws(e, msg="Unable to set object ACL")
|
||||||
|
try:
|
||||||
url = s3.generate_presigned_url(ClientMethod='put_object',
|
url = s3.generate_presigned_url(ClientMethod='put_object',
|
||||||
Params={'Bucket': bucket, 'Key': obj},
|
Params={'Bucket': bucket, 'Key': obj},
|
||||||
ExpiresIn=expiry)
|
ExpiresIn=expiry)
|
||||||
|
except (botocore.exceptions.ClientError, botocore.exceptions.BotoCoreError) as e:
|
||||||
|
module.fail_json_aws(e, msg="Unable to generate presigned URL")
|
||||||
module.exit_json(msg="PUT operation complete", url=url, changed=True)
|
module.exit_json(msg="PUT operation complete", url=url, changed=True)
|
||||||
except botocore.exceptions.ClientError as e:
|
|
||||||
module.fail_json(msg="Unable to complete PUT operation.", exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
|
||||||
|
|
||||||
|
|
||||||
def download_s3file(module, s3, bucket, obj, dest, retries, version=None):
|
def download_s3file(module, s3, bucket, obj, dest, retries, version=None):
|
||||||
|
@ -544,22 +566,26 @@ def download_s3file(module, s3, bucket, obj, dest, retries, version=None):
|
||||||
except botocore.exceptions.ClientError as e:
|
except botocore.exceptions.ClientError as e:
|
||||||
if e.response['Error']['Code'] == 'InvalidArgument' and 'require AWS Signature Version 4' in to_text(e):
|
if e.response['Error']['Code'] == 'InvalidArgument' and 'require AWS Signature Version 4' in to_text(e):
|
||||||
raise Sigv4Required()
|
raise Sigv4Required()
|
||||||
elif e.response['Error']['Code'] != "404":
|
elif e.response['Error']['Code'] not in ("403", "404"):
|
||||||
module.fail_json(msg="Could not find the key %s." % obj, exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
# AccessDenied errors may be triggered if 1) file does not exist or 2) file exists but
|
||||||
|
# user does not have the s3:GetObject permission. 404 errors are handled by download_file().
|
||||||
|
module.fail_json_aws(e, msg="Could not find the key %s." % obj)
|
||||||
|
except botocore.exceptions.BotoCoreError as e:
|
||||||
|
module.fail_json_aws(e, msg="Could not find the key %s." % obj)
|
||||||
|
|
||||||
for x in range(0, retries + 1):
|
for x in range(0, retries + 1):
|
||||||
try:
|
try:
|
||||||
s3.download_file(bucket, obj, dest)
|
s3.download_file(bucket, obj, dest)
|
||||||
module.exit_json(msg="GET operation complete", changed=True)
|
module.exit_json(msg="GET operation complete", changed=True)
|
||||||
except botocore.exceptions.ClientError as e:
|
except (botocore.exceptions.ClientError, botocore.exceptions.BotoCoreError) as e:
|
||||||
# actually fail on last pass through the loop.
|
# actually fail on last pass through the loop.
|
||||||
if x >= retries:
|
if x >= retries:
|
||||||
module.fail_json(msg="Failed while downloading %s." % obj, exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
module.fail_json_aws(e, msg="Failed while downloading %s." % obj)
|
||||||
# otherwise, try again, this may be a transient timeout.
|
# otherwise, try again, this may be a transient timeout.
|
||||||
except SSLError as e: # will ClientError catch SSLError?
|
except SSLError as e: # will ClientError catch SSLError?
|
||||||
# actually fail on last pass through the loop.
|
# actually fail on last pass through the loop.
|
||||||
if x >= retries:
|
if x >= retries:
|
||||||
module.fail_json(msg="s3 download failed: %s." % e, exception=traceback.format_exc())
|
module.fail_json_aws(e, msg="s3 download failed")
|
||||||
# otherwise, try again, this may be a transient timeout.
|
# otherwise, try again, this may be a transient timeout.
|
||||||
|
|
||||||
|
|
||||||
|
@ -576,8 +602,9 @@ def download_s3str(module, s3, bucket, obj, version=None, validate=True):
|
||||||
if e.response['Error']['Code'] == 'InvalidArgument' and 'require AWS Signature Version 4' in to_text(e):
|
if e.response['Error']['Code'] == 'InvalidArgument' and 'require AWS Signature Version 4' in to_text(e):
|
||||||
raise Sigv4Required()
|
raise Sigv4Required()
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg="Failed while getting contents of object %s as a string." % obj,
|
module.fail_json_aws(e, msg="Failed while getting contents of object %s as a string." % obj)
|
||||||
exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
except botocore.exceptions.BotoCoreError as e:
|
||||||
|
module.fail_json_aws(e, msg="Failed while getting contents of object %s as a string." % obj)
|
||||||
|
|
||||||
|
|
||||||
def get_download_url(module, s3, bucket, obj, expiry, changed=True):
|
def get_download_url(module, s3, bucket, obj, expiry, changed=True):
|
||||||
|
@ -586,8 +613,8 @@ def get_download_url(module, s3, bucket, obj, expiry, changed=True):
|
||||||
Params={'Bucket': bucket, 'Key': obj},
|
Params={'Bucket': bucket, 'Key': obj},
|
||||||
ExpiresIn=expiry)
|
ExpiresIn=expiry)
|
||||||
module.exit_json(msg="Download url:", url=url, expiry=expiry, changed=changed)
|
module.exit_json(msg="Download url:", url=url, expiry=expiry, changed=changed)
|
||||||
except botocore.exceptions.ClientError as e:
|
except (botocore.exceptions.ClientError, botocore.exceptions.BotoCoreError) as e:
|
||||||
module.fail_json(msg="Failed while getting download url.", exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))
|
module.fail_json_aws(e, msg="Failed while getting download url.")
|
||||||
|
|
||||||
|
|
||||||
def is_fakes3(s3_url):
|
def is_fakes3(s3_url):
|
||||||
|
@ -666,7 +693,7 @@ def main():
|
||||||
encryption_kms_key_id=dict()
|
encryption_kms_key_id=dict()
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
module = AnsibleModule(
|
module = AnsibleAWSModule(
|
||||||
argument_spec=argument_spec,
|
argument_spec=argument_spec,
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
required_if=[['mode', 'put', ['src', 'object']],
|
required_if=[['mode', 'put', ['src', 'object']],
|
||||||
|
@ -678,9 +705,6 @@ def main():
|
||||||
if module._name == 's3':
|
if module._name == 's3':
|
||||||
module.deprecate("The 's3' module is being renamed 'aws_s3'", version=2.7)
|
module.deprecate("The 's3' module is being renamed 'aws_s3'", version=2.7)
|
||||||
|
|
||||||
if not HAS_BOTO3:
|
|
||||||
module.fail_json(msg='boto3 and botocore required for this module')
|
|
||||||
|
|
||||||
bucket = module.params.get('bucket')
|
bucket = module.params.get('bucket')
|
||||||
encrypt = module.params.get('encrypt')
|
encrypt = module.params.get('encrypt')
|
||||||
expiry = module.params.get('expiry')
|
expiry = module.params.get('expiry')
|
||||||
|
|
|
@ -11,6 +11,19 @@
|
||||||
no_log: yes
|
no_log: yes
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
|
- name: test create bucket without permissions
|
||||||
|
aws_s3:
|
||||||
|
bucket: "{{ bucket_name }}"
|
||||||
|
mode: create
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: assert nice message returned
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- result is failed
|
||||||
|
- "result.msg != 'MODULE FAILURE'"
|
||||||
|
|
||||||
- name: test create bucket
|
- name: test create bucket
|
||||||
aws_s3:
|
aws_s3:
|
||||||
bucket: "{{ bucket_name }}"
|
bucket: "{{ bucket_name }}"
|
||||||
|
|
Loading…
Reference in a new issue