package shell import ( "context" "crypto/rand" "encoding/hex" "flag" "fmt" "io" "strings" "time" "github.com/seaweedfs/seaweedfs/weed/iam" "github.com/seaweedfs/seaweedfs/weed/pb/iam_pb" ) func init() { Commands = append(Commands, &commandS3ServiceAccountCreate{}) } type commandS3ServiceAccountCreate struct { } func (c *commandS3ServiceAccountCreate) Name() string { return "s3.serviceaccount.create" } func (c *commandS3ServiceAccountCreate) Help() string { return `create a service account for an S3 IAM user s3.serviceaccount.create -user -description "my app" s3.serviceaccount.create -user -actions Read,List -expiry 24h Service accounts are linked to a parent user and can have restricted permissions (a subset of the parent's actions). ` } func (c *commandS3ServiceAccountCreate) HasTag(CommandTag) bool { return false } func (c *commandS3ServiceAccountCreate) Do(args []string, commandEnv *CommandEnv, writer io.Writer) error { f := flag.NewFlagSet(c.Name(), flag.ContinueOnError) user := f.String("user", "", "parent user name") description := f.String("description", "", "optional description") actions := f.String("actions", "", "comma-separated actions (subset of parent)") expiry := f.Duration("expiry", 0, "expiration duration (e.g. 24h, 0 = no expiration)") if err := f.Parse(args); err != nil { return err } if *user == "" { return fmt.Errorf("-user is required") } ak, err := iam.GenerateRandomString(iam.AccessKeyIdLength, iam.CharsetUpper) if err != nil { return fmt.Errorf("generate access key: %v", err) } sk, err := iam.GenerateSecretAccessKey() if err != nil { return fmt.Errorf("generate secret key: %v", err) } // Generate a unique service account ID matching the format // required by credential.ValidateServiceAccountId: sa::. // 16 bytes (128 bits) of randomness makes collisions negligible. var idBytes [16]byte if _, err := rand.Read(idBytes[:]); err != nil { return fmt.Errorf("generate service account id: %v", err) } saId := fmt.Sprintf("sa:%s:%s", *user, hex.EncodeToString(idBytes[:])) sa := &iam_pb.ServiceAccount{ Id: saId, ParentUser: *user, Description: *description, Credential: &iam_pb.Credential{ AccessKey: ak, SecretKey: sk, Status: iam.AccessKeyStatusActive, }, CreatedAt: time.Now().Unix(), } validActions := map[string]string{ "read": "Read", "write": "Write", "list": "List", "tagging": "Tagging", "admin": "Admin", } if *actions != "" { seen := make(map[string]struct{}) for _, a := range strings.Split(*actions, ",") { a = strings.TrimSpace(a) if a != "" { canonical, ok := validActions[strings.ToLower(a)] if !ok { return fmt.Errorf("invalid action %q: supported actions are Read, Write, List, Tagging, Admin", a) } if _, dup := seen[canonical]; dup { continue } seen[canonical] = struct{}{} sa.Actions = append(sa.Actions, canonical) } } } if *expiry < 0 { return fmt.Errorf("-expiry must be >= 0") } if *expiry > 0 { sa.Expiration = time.Now().Add(*expiry).Unix() } err = commandEnv.withIamClient(func(ctx context.Context, client iam_pb.SeaweedIdentityAccessManagementClient) error { _, err := client.CreateServiceAccount(ctx, &iam_pb.CreateServiceAccountRequest{ ServiceAccount: sa, }) return err }) if err != nil { return err } fmt.Fprintf(writer, "Created service account for user %q\n", *user) fmt.Fprintf(writer, "ID: %s\n", saId) fmt.Fprintf(writer, "Access Key: %s\n", ak) fmt.Fprintf(writer, "Secret Key: %s\n", sk) if *description != "" { fmt.Fprintf(writer, "Desc: %s\n", *description) } if *expiry > 0 { fmt.Fprintf(writer, "Expires: %s\n", time.Unix(sa.Expiration, 0).Format(time.RFC3339)) } fmt.Fprintln(writer) fmt.Fprintln(writer, "Save these credentials - the secret key cannot be retrieved later.") return nil }