mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-09-08 15:41:15 +02:00
* filer: allow clearing a bucket read-only flag stuck after quota removal Once s3.bucket.quota.enforce marks a bucket read-only, removing or disabling the quota orphans the flag: enforcement skips buckets with a non-positive quota, and fs.configure merges booleans with OR so -readOnly=false could never turn it off. The only way out was deleting the whole path rule. - s3.bucket.quota -op=remove/disable and the admin server quota update now lift the read-only flag on the bucket's path rule - fs.configure now honors explicitly passed false boolean flags (-readOnly, -fsync, -worm) instead of OR-merging them away * filer: ClearBucketReadOnly reports unchanged when the save fails
121 lines
3.0 KiB
Go
121 lines
3.0 KiB
Go
package shell
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/filer"
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
)
|
|
|
|
func init() {
|
|
Commands = append(Commands, &commandS3BucketQuota{})
|
|
}
|
|
|
|
type commandS3BucketQuota struct {
|
|
}
|
|
|
|
func (c *commandS3BucketQuota) Name() string {
|
|
return "s3.bucket.quota"
|
|
}
|
|
|
|
func (c *commandS3BucketQuota) Help() string {
|
|
return `set/remove/enable/disable quota for a bucket
|
|
|
|
Example:
|
|
s3.bucket.quota -name=<bucket_name> -op=set -sizeMB=1024
|
|
|
|
Removing or disabling the quota also clears the read-only flag that
|
|
s3.bucket.quota.enforce may have set on the bucket.
|
|
`
|
|
}
|
|
|
|
func (c *commandS3BucketQuota) HasTag(CommandTag) bool {
|
|
return false
|
|
}
|
|
|
|
func (c *commandS3BucketQuota) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
|
|
|
bucketCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
|
|
bucketName := bucketCommand.String("name", "", "bucket name")
|
|
operationName := bucketCommand.String("op", "set", "operation name [set|get|remove|enable|disable]")
|
|
sizeMB := bucketCommand.Int64("sizeMB", 0, "bucket quota size in MiB")
|
|
if err = bucketCommand.Parse(args); err != nil {
|
|
return nil
|
|
}
|
|
|
|
if *bucketName == "" {
|
|
return fmt.Errorf("empty bucket name")
|
|
}
|
|
|
|
err = commandEnv.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
|
|
|
|
ctx := context.Background()
|
|
|
|
resp, err := client.GetFilerConfiguration(ctx, &filer_pb.GetFilerConfigurationRequest{})
|
|
if err != nil {
|
|
return fmt.Errorf("get filer configuration: %w", err)
|
|
}
|
|
filerBucketsPath := resp.DirBuckets
|
|
|
|
lookupResp, err := client.LookupDirectoryEntry(ctx, &filer_pb.LookupDirectoryEntryRequest{
|
|
Directory: filerBucketsPath,
|
|
Name: *bucketName,
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("did not find bucket %s: %v", *bucketName, err)
|
|
}
|
|
bucketEntry := lookupResp.Entry
|
|
|
|
clearReadOnly := false
|
|
switch *operationName {
|
|
case "set":
|
|
bucketEntry.Quota = *sizeMB * 1024 * 1024
|
|
case "get":
|
|
fmt.Fprintf(writer, "bucket quota: %dMiB \n", bucketEntry.Quota/1024/1024)
|
|
return nil
|
|
case "remove":
|
|
bucketEntry.Quota = 0
|
|
clearReadOnly = true
|
|
case "enable":
|
|
if bucketEntry.Quota < 0 {
|
|
bucketEntry.Quota = -bucketEntry.Quota
|
|
}
|
|
case "disable":
|
|
if bucketEntry.Quota > 0 {
|
|
bucketEntry.Quota = -bucketEntry.Quota
|
|
}
|
|
clearReadOnly = true
|
|
}
|
|
|
|
if err := filer_pb.UpdateEntry(context.Background(), client, &filer_pb.UpdateEntryRequest{
|
|
Directory: filerBucketsPath,
|
|
Entry: bucketEntry,
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
println("updated quota for bucket", *bucketName)
|
|
|
|
if clearReadOnly {
|
|
// with the quota removed or disabled, s3.bucket.quota.enforce can no
|
|
// longer clear a read-only flag it turned on, so lift it here
|
|
cleared, err := filer.ClearBucketReadOnly(ctx, client, filerBucketsPath, *bucketName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if cleared {
|
|
fmt.Fprintf(writer, "cleared read-only for bucket %s\n", *bucketName)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
}
|