Explicitly deny buckets with "." (dot) symbol #506
Labels
No labels
P0
P1
P2
P3
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-s3-gw#506
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Is your feature request related to a problem? Please describe.
With latest frostfs-contract it might be possible that container creation function will support dot symbols in a name. Previously it was not possible due to subdomain registration process in NNS contract.
While dot symbols are allowed in S3 specification, we've never created buckets with it, so it can break a few things including VHS. Also, some bucket name patterns with dots are still restricted, e.g. ip-address pattern.
Describe the solution you'd like
We must add dot symbol support very carefully. First step is to explicitly deny buckets with dots instead of implicit deny from NNS contract.
Then test carefully all corner cases and fix VHS and other functions if necessary. Then, enable dot symbol support.