Authentication and ACLs
Requests to the RADOS Gateway (RGW) can be either authenticated or unauthenticated. RGW assumes unauthenticated requests are sent by an anonymous user. RGW supports canned ACLs.
Authentication
Authenticating a request requires both an access key and a Hash-based Message Authentication Code (HMAC) in the request prior to it being sent to the RGW server. RGW utilizes an S3-compatible authentication approach.
HTTP/1.1
PUT /buckets/dir/file.jpg
Host: s3.z1storage.com
Date: Mon, 4 Feb 2020 13:00:00 +0000
Content-Encoding: jpg
Content-Length: 46667
Authorization: AWS {access-key}:{hash-of-header-and-secret}
In the foregoing example, replace {access-key} with the value for your access key ID followed by a colon (:). Replace {hash-of-header-and-secret} with a hash of the header string and the secret corresponding to the access key ID.
To generate the hash of the header string and secret, you must:
Get the value of the header string.
Normalize the request header string into canonical form.
Generate an HMAC using a SHA-1 hashing algorithm. See RFC 2104 and HMAC for details.
Encode the hmac result as base-64.
To normalize the header into canonical form:
Get all fields beginning with x-amz-.
Ensure that the fields are all lowercase.
Sort the fields lexicographically.
Combine multiple instances of the same field name into a single field and separate the field values with a comma.
Replace white space and line breaks in field values with a single space.
Remove white space before and after colons.
Append a new line after each field.
Merge the fields back into the header.
Replace the {hash-of-header-and-secret} with the base-64 encoded HMAC string.
Access Control Lists (ACLs)
RGW supports S3-compatible ACL functionality. An ACL is a list of access grants that stipulate the operations that can be performed by a user, on a bucket or an object. Each grant has a different meaning when applied to a bucket versus applied to an object:
Permission | Bucket | Object |
---|---|---|
READ | Grantee can list the objects in the bucket. | Grantee can read the object. |
WRITE | Grantee can write or delete objects in the bucket. | N/A |
READ_ACP | Grantee can read bucket ACL. | Grantee can read the object ACL. |
WRITE_ACP | Grantee can write bucket ACL. | Grantee can write to the object ACL. |
FULL_CONTROL | Grantee has full permissions for object in the bucket. | Grantee can read or write to the object ACL. |
Internally, S3 operations are mapped to ACL permissions thus:
Operation | Permission |
---|---|
s3:GetObject | READ |
s3:GetObjectTorrent | READ |
s3:GetObjectVersion | READ |
s3:GetObjectVersionTorrent | READ |
s3:GetObjectTagging | READ |
s3:GetObjectVersionTagging | READ |
s3:ListAllMyBuckets | READ |
s3:ListBucket | READ |
s3:ListBucketMultipartUploads | READ |
s3:ListBucketVersions | READ |
s3:ListMultipartUploadParts | READ |
s3:AbortMultipartUpload | WRITE |
s3:CreateBucket | WRITE |
s3:DeleteBucket | WRITE |
s3:DeleteObject | WRITE |
s3:s3DeleteObjectVersion | WRITE |
s3:PutObject | WRITE |
s3:PutObjectTagging | WRITE |
s3:PutObjectVersionTagging | WRITE |
s3:DeleteObjectTagging | WRITE |
s3:DeleteObjectVersionTagging | WRITE |
s3:RestoreObject | WRITE |
s3:GetAccelerateConfiguration | READ_ACP |
s3:GetBucketAcl | READ_ACP |
s3:GetBucketCORS | READ_ACP |
s3:GetBucketLocation | READ_ACP |
s3:GetBucketLogging | READ_ACP |
s3:GetBucketNotification | READ_ACP |
s3:GetBucketPolicy | READ_ACP |
s3:GetBucketRequestPayment | READ_ACP |
s3:GetBucketTagging | READ_ACP |
s3:GetBucketVersioning | READ_ACP |
s3:GetBucketWebsite | READ_ACP |
s3:GetLifecycleConfiguration | READ_ACP |
s3:GetObjectAcl | READ_ACP |
s3:GetObjectVersionAcl | READ_ACP |
s3:GetReplicationConfiguration | READ_ACP |
s3:DeleteBucketPolicy | WRITE_ACP |
s3:DeleteBucketWebsite | WRITE_ACP |
s3:DeleteReplicationConfiguration | WRITE_ACP |
s3:PutAccelerateConfiguration | WRITE_ACP |
s3:PutBucketAcl | WRITE_ACP |
s3:PutBucketCORS | WRITE_ACP |
s3:PutBucketLogging | WRITE_ACP |
s3:PutBucketNotification | WRITE_ACP |
s3:PutBucketPolicy | WRITE_ACP |
s3:PutBucketRequestPayment | WRITE_ACP |
s3:PutBucketTagging | WRITE_ACP |
s3:PutPutBucketVersioning | WRITE_ACP |
s3:PutBucketWebsite | WRITE_ACP |
s3:PutLifecycleConfiguration | WRITE_ACP |
s3:PutObjectAcl | WRITE_ACP |
s3:PutObjectVersionAcl | WRITE_ACP |
s3:PutReplicationConfiguration | WRITE_ACP |
Some mappings, (e.g. s3:CreateBucket to WRITE) are not applicable to S3 operation however, are required to allow Swift and S3 to access the same resources when things like Swift user ACLs are in play. This is one of the many reasons that you should use S3 bucket policies rather than S3 ACLs when possible.