mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
10404c4275
- one JWT for reading and one for writing, analogous to how the JWT between Master and Volume Server works - I did not implement IP `whiteList` parameter on the filer Additionally, because http_util.DownloadFile now sets the JWT, the `download` command should now work when `jwt.signing.read` is configured. By looking at the code, I think this case did not work before. ## Docs to be adjusted after a release Page `Amazon-S3-API`: ``` # Authentication with Filer You can use mTLS for the gRPC connection between S3-API-Proxy and the filer, as explained in [Security-Configuration](Security-Configuration) - controlled by the `grpc.*` configuration in `security.toml`. Starting with version XX, it is also possible to authenticate the HTTP operations between the S3-API-Proxy and the Filer (especially uploading new files). This is configured by setting `filer_jwt.signing.key` and `filer_jwt.signing.read.key` in `security.toml`. With both configurations (gRPC and JWT), it is possible to have Filer and S3 communicate in fully authenticated fashion; so Filer will reject any unauthenticated communication. ``` Page `Security Overview`: ``` The following items are not covered, yet: - master server http REST services Starting with version XX, the Filer HTTP REST services can be secured with a JWT, by setting `filer_jwt.signing.key` and `filer_jwt.signing.read.key` in `security.toml`. ... Before version XX: "weed filer -disableHttp", disable http operations, only gRPC operations are allowed. This works with "weed mount" by FUSE. It does **not work** with the [S3 Gateway](Amazon S3 API), as this does HTTP calls to the Filer. Starting with version XX: secured by JWT, by setting `filer_jwt.signing.key` and `filer_jwt.signing.read.key` in `security.toml`. **This now works with the [S3 Gateway](Amazon S3 API).** ... # Securing Filer HTTP with JWT To enable JWT-based access control for the Filer, 1. generate `security.toml` file by `weed scaffold -config=security` 2. set `filer_jwt.signing.key` to a secret string - and optionally filer_jwt.signing.read.key` as well to a secret string 3. copy the same `security.toml` file to the filers and all S3 proxies. If `filer_jwt.signing.key` is configured: When sending upload/update/delete HTTP operations to a filer server, the request header `Authorization` should be the JWT string (`Authorization: Bearer [JwtToken]`). The operation is authorized after the filer validates the JWT with `filer_jwt.signing.key`. If `filer_jwt.signing.read.key` is configured: When sending GET or HEAD requests to a filer server, the request header `Authorization` should be the JWT string (`Authorization: Bearer [JwtToken]`). The operation is authorized after the filer validates the JWT with `filer_jwt.signing.read.key`. The S3 API Gateway reads the above JWT keys and sends authenticated HTTP requests to the filer. ``` Page `Security Configuration`: ``` (update scaffold file) ... [filer_jwt.signing] key = "blahblahblahblah" [filer_jwt.signing.read] key = "blahblahblahblah" ``` Resolves: #158 |
||
---|---|---|
.. | ||
filer_ui | ||
master_ui | ||
volume_server_ui | ||
common.go | ||
common_test.go | ||
filer_grpc_server.go | ||
filer_grpc_server_kv.go | ||
filer_grpc_server_remote.go | ||
filer_grpc_server_rename.go | ||
filer_grpc_server_sub_meta.go | ||
filer_server.go | ||
filer_server_handlers.go | ||
filer_server_handlers_proxy.go | ||
filer_server_handlers_read.go | ||
filer_server_handlers_read_dir.go | ||
filer_server_handlers_tagging.go | ||
filer_server_handlers_write.go | ||
filer_server_handlers_write_autochunk.go | ||
filer_server_handlers_write_cipher.go | ||
filer_server_handlers_write_upload.go | ||
filer_server_rocksdb.go | ||
master_grpc_server.go | ||
master_grpc_server_admin.go | ||
master_grpc_server_cluster.go | ||
master_grpc_server_collection.go | ||
master_grpc_server_volume.go | ||
master_server.go | ||
master_server_handlers.go | ||
master_server_handlers_admin.go | ||
master_server_handlers_ui.go | ||
raft_server.go | ||
raft_server_handlers.go | ||
volume_grpc_admin.go | ||
volume_grpc_batch_delete.go | ||
volume_grpc_client_to_master.go | ||
volume_grpc_copy.go | ||
volume_grpc_copy_incremental.go | ||
volume_grpc_erasure_coding.go | ||
volume_grpc_query.go | ||
volume_grpc_read_all.go | ||
volume_grpc_read_write.go | ||
volume_grpc_remote.go | ||
volume_grpc_tail.go | ||
volume_grpc_tier_download.go | ||
volume_grpc_tier_upload.go | ||
volume_grpc_vacuum.go | ||
volume_server.go | ||
volume_server_handlers.go | ||
volume_server_handlers_admin.go | ||
volume_server_handlers_helper.go | ||
volume_server_handlers_read.go | ||
volume_server_handlers_ui.go | ||
volume_server_handlers_write.go | ||
volume_server_tcp_handlers_write.go | ||
webdav_server.go |