Browse Source

s3tables: implement validateTableName helper

pull/8147/head
Chris Lu 3 days ago
parent
commit
ab6351e1c9
  1. 17
      weed/s3api/s3tables/utils.go

17
weed/s3api/s3tables/utils.go

@ -149,6 +149,23 @@ func validateNamespace(namespace []string) (string, error) {
return name, nil return name, nil
} }
// validateTableName validates a table name
func validateTableName(name string) (string, error) {
if len(name) < 1 || len(name) > 255 {
return "", fmt.Errorf("table name must be between 1 and 255 characters")
}
if name == "." || name == ".." || strings.Contains(name, "/") {
return "", fmt.Errorf("invalid table name: cannot be '.', '..' or contain '/'")
}
for _, ch := range name {
if (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9') || ch == '_' {
continue
}
return "", fmt.Errorf("invalid table name: only 'a-z', '0-9', and '_' are allowed")
}
return name, nil
}
// flattenNamespace joins namespace elements into a single string (using dots as per AWS S3 Tables) // flattenNamespace joins namespace elements into a single string (using dots as per AWS S3 Tables)
func flattenNamespace(namespace []string) string { func flattenNamespace(namespace []string) string {
if len(namespace) == 0 { if len(namespace) == 0 {

Loading…
Cancel
Save