S3ACL(1p) | User Contributed Perl Documentation | S3ACL(1p) |
s3acl - Display or manipulate the ACL of AWS S3 buckets and items
s3acl [options] [[bucket|bucket/key] ...]
Options: --access-key AWS Access Key ID --secret-key AWS Secret Access Key --get Output the ACL to STDOUT --xml in raw XML form instead of parsed form --set Modify the ACL --clear remove all grants from the ACL --add grant,grant,... add grants to the ACL --del grant,grant,... remove matching grants from the ACL --xml apply the XML ACL from STDIN to the item --acl-short cannedacl apply the "canned" ACL to the item Environment: AWS_ACCESS_KEY_ID AWS_ACCESS_KEY_SECRET
The access keys MUST be specified, either via these command line parameters, or via the AWS_ACCESS_KEY_ID and AWS_ACCESS_KEY_SECRET environment variables.
Specifying them on the command line overrides the environment variables.
If more than one bucket or item is specified, the XML ACL for each will be output, concatenated together. This is probably not very useful.
The raw XML output can be used as input for the --set option, like so:
s3acl --get --xml bucketA | s3acl --set --xml bucketB bucketC
This does not work when specifying more than one bucket or item to the --get option, because the concatenation of multiple XML ACLs is not a valid XML ACL.
It is usually accompanied by the --add option to add some grants back to the now empty ACL.
Grants are specified in parsed form, and then joined together by commas with no whitespace.
There is an extension to the parsed grant format. If the grantee is specified as "ANY", then it matches any and all grantees in the ACL. If the permission is specified as "ANY", then it matches any permission. Thus
s3acl --set --del ANY:READ mybucket
removes all grants that give READ permission, and
s3acl --set --del someuserid:ANY mybucket
removes all grants to the user someuserid
s3acl --set --del ANY:ANY mybucket
does the same thing as
s3acl --set --clear mybucket
Due to a limitation in the semantics of the S3 API, it is not possible to delete a grantee by email address, only by canonical ID.
It is possible to add the same grant to a bucket or item more than once. This is a surprising behavior of the S3 service.
The following canned ACLs are currently defined by S3:
The anonymous principal is granted "READ" and "WRITE" access. This is a useful policy to apply to a bucket, if you intend for any anonymous user to PUT objects into the bucket.
If just a bucket name is given, the ACL for that bucket is retrieved or modified.
If a bucket name and a key, separated by a slash, is given, the ACL for that key in that bucket is retrieved or modified.
If a bucket name begins with one or more dashes, it might be mistaken for a command line option. If this is the case, separate the command line options from the bucket or bucket/key names with two dashes, like so:
s3acl --get -- --bucketname/keyname
The access keys MUST be specified, either via these environment variables, or via the --access-key and --secret-key command line parameters.
If the command line parameters are set, they override these environment variables.
The configuration options will be read from the file "~/.s3-tools" if it exists. The format is the same as the command line options with one option per line. For example, the file could contain:
--access-key <AWS access key> --secret-key <AWS secret key> --secure
This example configuration file would specify the AWS access keys and that a secure connection using HTTPS should be used for all communications.
Retrieves and outputs the Access Control List (ACL) of buckets and of items in buckets in the Amazon Simple Storage Service (S3).
(Much of the following text is taken from the "Amazon S3 Developer Guide (API Version 2006-03-01)".)
Every bucket and item has an Access Control List (ACL). When a request is made, S3 determines the principal making the request, and then checks the access control list to see if that principal is authorized to make the request. If the ACL contains an entry authorizing that principal to make this request, the request is allowed to proceed, otherwise an error is returned.
A principal may be someone with an AWS S3 account who has logged in, or "authenticated". The principal might be the creator and owner of the bucket or item. Or the principal might be some anonymous web browser out on the internet.
An access control list is a sequence of grants. It may contain up to 100 grants. A grant is composed of one grantee, which is a description of the principal who will be allowed access, and one permission, which is a description of what that principal is allowed to do with that bucket or item.
A user grantee must be registered as an Amazon.com customer, but does not have to be registered as an AWS customer.
When an ACL is read, the user grantee will be displayed in a canonical format, which consists of 64 hex characters. The exception is if the grantee is the owner. Amazon still stores and returns the grantee in canonical form, but this tool displays it as "OWNER".
The only groups available are those pre-defined by S3. In the current release of S3, you cannot create your own group. There are currently two pre-defined groups.
The first is represented by the string "WORLD" by this tool. All principals, whether they are anonymous or authenticated, are considered part of this group.
The second is represented by the string "USERS" by this tool. Every non-anonymous principal is considered part of the group. Note that permission granted by virtue of this grant does not trump other access control considerations. For example, if a user is registered with AWS, they may be part of this group, but if they have not subscribed to S3, they will still not be granted access.
There is also a special pseudo group with the string "ANY". It is used by the --del option to match against a ACL item to select for deletion.
If Amazon updates S3 to define any additional groups before this tool is updated, they will be represented as a URI surrounded by angle brackets.
Every bucket and item in S3 has an owner attribute associated with it. The owner the user that created the bucket or item. The only way to change the owner of a bucket is to delete the bucket and create it again under a different user identity. The only way to change the owner of an item is to overwrite the item using a different identity.
The owner of a bucket or item is subject to the access control policy of that bucket or item just like everybody else, with two notable exceptions: The owner of a resource always has the ability to read and write the ACL of that resource, no matter what the associated ACL says. For example, as the owner of an item, you could remove yourself from the associated access control list, and find that you can no longer read the item's data and metadata. However, by virtue of being owner, you always have the right to re-grant yourself permissions to it. This policy prevents the situation where an item becomes "stranded," with nobody able to ever modify or even delete it.
The permission in a grant describes the type of access to be granted to the respective grantee. The following permissions are supported:
If no ACL is provided at the time a bucket is created or an item written then a default ACL is created. The default ACL for new resources consists of a single grant that gives the owner of the resource (i.e. the principal making the request to create the bucket or to write the item) FULL_CONTROL permission. Note that if you overwrite an existing item, the ACL for the existing item is always overwritten as well, and defaulted back to OWNER:FULL_CONTROL if no explicit ACL is provided.
The XML ACL format is documented in the "Amazon S3 Developer Guide".
This tool parses the raw XML ACL format into a more readable form.
A parsed ACL consists of several lines. Comments are lines that begin with a hash character. Lines that are not comments are grants.
For buckets, the comments give the bucket name, and the Amazon canonical user string for the owner.
For items, the comments give the bucket name, the item key, and the Amazon canonical user string for the owner.
A grant is grantee string and a permission string, separated with a colon character. A grantee can be one of the strings "OWNER", "WORLD", or "USERS", or a URI wrapped in angle brackets, or the email address of an Amazon user, or a Amazon canonical user string, which is 64 hex characters. A permission is one of the strings "READ", "WRITE", "READ_ACP", "WRITE_ACP", or "FULL_CONTROL".
$ ./s3getacl example # bucket: example # owner: 5a1568e09392dad4b4ceb54f29f0a64d651a531350d6f720fbd2367eed995f08 OWNER:FULL_CONTROL a00490decea9d0ad76e5ef8b450b3efa63861adccfb9197cfb42f837eb222df2:WRITE USERS:READ WORLD:READ $ ./s3getacl example/thingee # bucket: example # item: thingee # owner: 5a1568e09392dad4b4ceb54f29f0a64d651a531350d6f720fbd2367eed995f08 OWNER:FULL_CONTROL $ _
Report bugs to Mark Atwood mark@fallenpegasus.com.
Occasionally the S3 service will randomly fail for no externally apparent reason. When that happens, this tool should retry, with a delay and a backoff.
Access to the S3 service can be authenticated with a X.509 certificate, instead of via the "AWS Access Key Identifiers". This tool should support that.
It might be useful to be able to specify the "AWS Access Key Identifiers" in the user's "~/.netrc" file. This tool should support that.
Errors and warnings are very "Perl-ish", and can be confusing.
Trying to access a bucket or item that does not exist or is not accessible by the user generates less than helpful error messages.
Net::Amazon::S3 already uses XML::LibXML and XML::LibXML::XPathContext, so this tool should use those instead of using XML::Writer, to have fewer module dependences.
It is possible to add the same grant to a bucket or item more than once. This is a surprising behavior of the S3 service. Both identical grants will be removed by using the --del option.
Due to a limitation in the semantics of the S3 API, it is not possible to delete a grantee by email address, only by canonical ID.
Written by Mark Atwood mark@fallenpegasus.com.
Many thanks to Wotan LLC <http://wotanllc.com>, for supporting the development of these S3 tools.
Many thanks to the Amazon AWS engineers for developing S3.
These tools use the Net::Amazon:S3 Perl module.
The Amazon Simple Storage Service (S3) is documented at <http://aws.amazon.com/s3>.
2022-06-16 | perl v5.34.0 |