2020-08-06 11:51:56 +00:00
|
|
|
# NeoFS S3 Gate
|
2020-07-03 12:03:06 +00:00
|
|
|
|
2021-02-08 09:45:18 +00:00
|
|
|
S3Gate provides API compatible with Amazon S3 cloud storage service.
|
|
|
|
|
|
|
|
## Notable make targets
|
|
|
|
|
|
|
|
```
|
|
|
|
Usage:
|
|
|
|
|
|
|
|
make <target>
|
|
|
|
|
|
|
|
Targets:
|
|
|
|
|
|
|
|
deps Check and ensure dependencies
|
|
|
|
format Reformat code
|
|
|
|
help Show this help prompt
|
|
|
|
image Build current docker image
|
|
|
|
publish Publish docker image
|
|
|
|
version Show current version
|
|
|
|
```
|
|
|
|
|
2020-10-19 08:47:13 +00:00
|
|
|
## Example of configuration
|
|
|
|
|
|
|
|
```
|
|
|
|
# Flags
|
|
|
|
--pprof enable pprof
|
|
|
|
--metrics enable prometheus metrics
|
|
|
|
-h, --help show help
|
|
|
|
-v, --version show version
|
2021-02-02 09:23:28 +00:00
|
|
|
--neofs-key string set value to hex string, WIF string, or path to NeoFS private key file
|
2020-10-19 08:47:13 +00:00
|
|
|
--auth-key string set path to file with auth (curve25519) private key to use in auth scheme
|
|
|
|
--verbose set debug mode of gRPC connections
|
|
|
|
--request_timeout duration set gRPC request timeout (default 15s)
|
|
|
|
--connect_timeout duration set gRPC connect timeout (default 30s)
|
|
|
|
--rebalance_timer duration set gRPC connection rebalance timer (default 15s)
|
|
|
|
--max_clients_count int set max-clients count (default 100)
|
|
|
|
--max_clients_deadline duration set max-clients deadline (default 30s)
|
2021-02-02 09:23:28 +00:00
|
|
|
-t, --con_ttl duration set gRPC connection time to live (default 5m0s)
|
2020-10-19 08:47:13 +00:00
|
|
|
--listen_address string set address to listen (default "0.0.0.0:8080")
|
|
|
|
-p, --peers stringArray set NeoFS nodes
|
2021-02-02 09:23:28 +00:00
|
|
|
-d, --listen_domains stringArray set domains to be listened
|
2020-10-19 08:47:13 +00:00
|
|
|
|
|
|
|
# Environments
|
|
|
|
|
2020-12-02 09:46:51 +00:00
|
|
|
S3_GW_AUTH-KEY =
|
|
|
|
S3_GW_NEOFS-KEY =
|
2021-02-02 09:23:28 +00:00
|
|
|
S3_GW_CON_TTL = 5m0s
|
2020-12-02 09:46:51 +00:00
|
|
|
S3_GW_CONNECT_TIMEOUT = 30s
|
|
|
|
S3_GW_REBALANCE_TIMER = 15s
|
|
|
|
S3_GW_REQUEST_TIMEOUT = 15s
|
|
|
|
S3_GW_KEEPALIVE_PERMIT_WITHOUT_STREAM = true
|
|
|
|
S3_GW_KEEPALIVE_TIME = 10s
|
|
|
|
S3_GW_KEEPALIVE_TIMEOUT = 10s
|
|
|
|
S3_GW_LISTEN_ADDRESS = 0.0.0.0:8080
|
2021-02-02 09:23:28 +00:00
|
|
|
S3_GW_LISTEN_DOMAINS = []
|
2020-12-02 09:46:51 +00:00
|
|
|
S3_GW_LOGGER_FORMAT = console
|
|
|
|
S3_GW_LOGGER_LEVEL = debug
|
2021-02-02 09:23:28 +00:00
|
|
|
S3_GW_LOGGER_NO_CALLER = false
|
2020-12-02 09:46:51 +00:00
|
|
|
S3_GW_LOGGER_NO_DISCLAIMER = true
|
|
|
|
S3_GW_LOGGER_SAMPLING_INITIAL = 1000
|
|
|
|
S3_GW_LOGGER_SAMPLING_THEREAFTER = 1000
|
|
|
|
S3_GW_LOGGER_TRACE_LEVEL = panic
|
|
|
|
S3_GW_MAX_CLIENTS_COUNT = 100
|
|
|
|
S3_GW_MAX_CLIENTS_DEADLINE = 30s
|
|
|
|
S3_GW_METRICS = false
|
|
|
|
S3_GW_PPROF = false
|
|
|
|
S3_GW_VERBOSE = false
|
2020-10-19 08:47:13 +00:00
|
|
|
|
|
|
|
# Peers preset
|
|
|
|
|
2020-12-02 09:46:51 +00:00
|
|
|
S3_GW_PEERS_[N]_ADDRESS = string
|
|
|
|
S3_GW_PEERS_[N]_WEIGHT = 0..1 (float)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Reference Resources
|
|
|
|
|
2020-12-02 09:49:57 +00:00
|
|
|
* [AWS S3 API Reference](https://docs.aws.amazon.com/AmazonS3/latest/API/s3-api.pdf)
|
2020-07-03 12:03:06 +00:00
|
|
|
|
|
|
|
|
2020-12-02 09:46:51 +00:00
|
|
|
### Bucket/Object-Level Actions
|
2020-07-03 12:03:06 +00:00
|
|
|
|
2020-12-02 09:46:51 +00:00
|
|
|
| # | Method Name | Status |
|
|
|
|
|:---:| ------------------------- | ----------------------- |
|
|
|
|
| 1 | AbortMultipartUpload | Unsupported |
|
|
|
|
| 2 | CompleteMultipartUpload | Unsupported |
|
|
|
|
| 3 | CopyObject | Supported |
|
|
|
|
| 4 | CopyObjectPart | Unsupported |
|
|
|
|
| 5 | DeleteBucket | Unsupported |
|
|
|
|
| 6 | DeleteBucketEncryption | Unsupported |
|
|
|
|
| 7 | DeleteBucketLifecycle | Unsupported |
|
|
|
|
| 8 | DeleteBucketPolicy | Unsupported |
|
|
|
|
| 9 | DeleteBucketTagging | Unsupported |
|
|
|
|
| 10 | DeleteBucketWebsite | Unsupported |
|
|
|
|
| 11 | DeleteMultipleObjects | Supported |
|
|
|
|
| 12 | DeleteObject | Supported |
|
|
|
|
| 13 | DeleteObjectTagging | Unsupported |
|
|
|
|
| 14 | GetBucketACL | Unsupported |
|
|
|
|
| 15 | GetBucketAccelerate | Supported |
|
|
|
|
| 16 | GetBucketCors | Unsupported |
|
|
|
|
| 17 | GetBucketEncryption | Unsupported |
|
|
|
|
| 18 | GetBucketLifecycle | Unsupported |
|
|
|
|
| 19 | GetBucketLocation | Unsupported |
|
|
|
|
| 20 | GetBucketLogging | Unsupported |
|
|
|
|
| 21 | GetBucketNotification | Unsupported |
|
|
|
|
| 22 | GetBucketObjectLockConfig | Unsupported |
|
|
|
|
| 23 | GetBucketPolicy | Unsupported |
|
|
|
|
| 24 | GetBucketReplication | Unsupported |
|
|
|
|
| 25 | GetBucketRequestPayment | Unsupported |
|
|
|
|
| 26 | GetBucketTagging | Unsupported |
|
|
|
|
| 27 | GetBucketVersioning | Unsupported |
|
|
|
|
| 28 | GetBucketWebsite | Unsupported |
|
|
|
|
| 29 | GetObject | Supported |
|
|
|
|
| 30 | GetObjectACL | Unsupported |
|
|
|
|
| 31 | GetObjectLegalHold | Unsupported |
|
|
|
|
| 32 | GetObjectRetention | Unsupported |
|
|
|
|
| 33 | HeadBucket | Supported |
|
|
|
|
| 34 | HeadObject | Supported |
|
|
|
|
| 35 | ListBucketObjectVersions | Unsupported |
|
|
|
|
| 36 | ListBuckets | Supported |
|
|
|
|
| 37 | ListMultipartUploads | Unsupported |
|
|
|
|
| 38 | ListObjectParts | Unsupported |
|
|
|
|
| 39 | ListObjectsV1 | Supported |
|
|
|
|
| 40 | ListObjectsV2 | Supported |
|
|
|
|
| 41 | ListenBucketNotification | Unsupported |
|
|
|
|
| 42 | NewMultipartUpload | Unsupported |
|
|
|
|
| 43 | PostPolicyBucket | Unsupported |
|
|
|
|
| 44 | PutBucket | Unsupported |
|
|
|
|
| 45 | PutBucketACL | Unsupported |
|
|
|
|
| 46 | PutBucketEncryption | Unsupported |
|
|
|
|
| 47 | PutBucketLifecycle | Unsupported |
|
|
|
|
| 48 | PutBucketNotification | Unsupported |
|
|
|
|
| 49 | PutBucketObjectLockConfig | Unsupported |
|
|
|
|
| 50 | PutBucketPolicy | Unsupported |
|
|
|
|
| 51 | PutBucketTagging | Unsupported |
|
|
|
|
| 52 | PutBucketVersioning | Unsupported |
|
|
|
|
| 53 | PutObject | Supported |
|
|
|
|
| 54 | PutObjectACL | Unsupported |
|
|
|
|
| 55 | PutObjectLegalHold | Unsupported |
|
|
|
|
| 56 | PutObjectPart | Unsupported |
|
|
|
|
| 57 | PutObjectRetention | Unsupported |
|
|
|
|
| 58 | PutObjectTagging | Unsupported |
|
|
|
|
| 59 | SelectObjectContent | Unsupported |
|
2020-07-03 12:03:06 +00:00
|
|
|
|
2021-06-04 18:40:06 +00:00
|
|
|
## NeoFS AuthMate
|
|
|
|
|
|
|
|
#### Generation of key pairs
|
|
|
|
|
|
|
|
To generate key pairs for gates, run the following command:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ ./neofs-authmate generate-keys --count=2
|
|
|
|
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"private_key": "b8ba980eb70b959be99915d2e0ad377809984ccd1dac0a6551907f81c2b33d21",
|
|
|
|
"public_key": "dd34f6dce9a4ce0990869ec6bd33a40e102a5798881cfe61d03a5659ceee1a64"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"private_key": "407c351b17446ca07521faceb8b7d3e738319635f39f892419e2bf94462b4419",
|
|
|
|
"public_key": "20453af9d7f245ff6fdfb1260eaa411ae3be9c519a2a9bf1c98233522cbd0156"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Issuing of a secret
|
|
|
|
|
|
|
|
To issue a secret means to create a Bearer token and put it into a container in
|
|
|
|
the NeoFS network as an object.
|
|
|
|
|
|
|
|
If a parameter `container-id` is not set, a new container will be created.
|
|
|
|
|
|
|
|
If a parameter `rules` is not set, it will be auto-generated with values:
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"version": {
|
|
|
|
"major": 2,
|
|
|
|
"minor": 6
|
|
|
|
},
|
|
|
|
"containerID": {
|
|
|
|
"value": "%CID"
|
|
|
|
},
|
|
|
|
"records": [
|
|
|
|
{
|
|
|
|
"operation": "GET",
|
|
|
|
"action": "ALLOW",
|
|
|
|
"filters": [],
|
|
|
|
"targets": [
|
|
|
|
{
|
|
|
|
"role": "OTHERS",
|
|
|
|
"keys": []
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Example of a command to issue a secret with custom rules for multiple gates:
|
|
|
|
```
|
|
|
|
$ ./neofs-authmate issue-secret --neofs-key user.key \
|
|
|
|
--peer 192.168.130.71:8080 \
|
|
|
|
--rules '{"records":[{"operation":"PUT","action":"ALLOW","filters":[],"targets":[{"role":"OTHERS","keys":[]}]}]}' \
|
|
|
|
--gate-public-key dd34f6dce9a4ce0990869ec6bd33a40e102a5798881cfe61d03a5659ceee1a64 \
|
|
|
|
--gate-public-key 20453af9d7f245ff6fdfb1260eaa411ae3be9c519a2a9bf1c98233522cbd0156
|
|
|
|
|
|
|
|
{
|
|
|
|
"access_key_id": "5g933dyLEkXbbAspouhPPTiyLZRg4axBW1axSPD87eVT_AiXsH4AjYy1iTJ4C1WExzjBrSobJsQFWEyKLREe5sQYM",
|
|
|
|
"secret_access_key": "438bbd8243060e1e1c9dd4821756914a6e872ce29bf203b68f81b140ac91231c",
|
|
|
|
"owner_private_key": "274fdd6e71fc6a6b8fe77bec500254115d66d6d17347d7db0880d2eb80afc72a"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Obtaining of a secret
|
|
|
|
|
|
|
|
Example of a command for obtaining of a secret stored in the NeoFS network:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ ./neofs-authmate obtain-secret --neofs-key user.key \
|
|
|
|
--peer 192.168.130.71:8080 \
|
|
|
|
--gate-private-key b8ba980eb70b959be99915d2e0ad377809984ccd1dac0a6551907f81c2b33d21 \
|
|
|
|
--access-key-id 5g933dyLEkXbbAspouhPPTiyLZRg4axBW1axSPD87eVT_AiXsH4AjYy1iTJ4C1WExzjBrSobJsQFWEyKLREe5sQYM
|
|
|
|
|
|
|
|
{
|
|
|
|
"secret_access_key": "438bbd8243060e1e1c9dd4821756914a6e872ce29bf203b68f81b140ac91231c"
|
|
|
|
}
|
|
|
|
```
|