2021-05-19 09:28:17 +00:00
|
|
|
package authmate
|
2021-05-18 18:49:09 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/ecdsa"
|
2021-05-25 16:52:29 +00:00
|
|
|
"encoding/hex"
|
2021-05-18 18:49:09 +00:00
|
|
|
"encoding/json"
|
2022-06-15 19:31:41 +00:00
|
|
|
"errors"
|
2021-05-20 10:14:17 +00:00
|
|
|
"fmt"
|
2021-05-18 18:49:09 +00:00
|
|
|
"io"
|
2021-09-01 11:30:15 +00:00
|
|
|
"os"
|
2021-05-18 18:49:09 +00:00
|
|
|
"time"
|
|
|
|
|
2023-03-07 14:38:08 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-s3-gw/api/cache"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-s3-gw/creds/accessbox"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-s3-gw/creds/tokens"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/bearer"
|
|
|
|
cid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id"
|
|
|
|
frostfsecdsa "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/crypto/ecdsa"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/eacl"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/netmap"
|
|
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/session"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/user"
|
2021-06-16 20:09:51 +00:00
|
|
|
"github.com/google/uuid"
|
2021-06-24 15:21:34 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
2021-05-18 18:49:09 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
2022-03-01 19:02:24 +00:00
|
|
|
// PrmContainerCreate groups parameters of containers created by authmate.
|
|
|
|
type PrmContainerCreate struct {
|
2022-12-20 08:38:58 +00:00
|
|
|
// FrostFS identifier of the container creator.
|
2022-04-25 09:57:58 +00:00
|
|
|
Owner user.ID
|
2022-03-01 19:02:24 +00:00
|
|
|
|
|
|
|
// Container placement policy.
|
|
|
|
Policy netmap.PlacementPolicy
|
|
|
|
|
|
|
|
// Friendly name for the container (optional).
|
|
|
|
FriendlyName string
|
|
|
|
}
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
// NetworkState represents FrostFS network state which is needed for authmate processing.
|
2022-03-01 19:02:24 +00:00
|
|
|
type NetworkState struct {
|
2022-12-20 08:38:58 +00:00
|
|
|
// Current FrostFS time.
|
2022-03-01 19:02:24 +00:00
|
|
|
Epoch uint64
|
|
|
|
// Duration of the Morph chain block in ms.
|
|
|
|
BlockDuration int64
|
2022-12-20 08:38:58 +00:00
|
|
|
// Duration of the FrostFS epoch in Morph chain blocks.
|
2022-03-01 19:02:24 +00:00
|
|
|
EpochDuration uint64
|
|
|
|
}
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
// FrostFS represents virtual connection to FrostFS network.
|
|
|
|
type FrostFS interface {
|
|
|
|
// FrostFS interface required by credential tool.
|
|
|
|
tokens.FrostFS
|
2022-03-01 19:02:24 +00:00
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
// ContainerExists checks container presence in FrostFS by identifier.
|
2022-04-13 16:56:58 +00:00
|
|
|
// Returns nil if container exists.
|
2022-03-01 19:02:24 +00:00
|
|
|
ContainerExists(context.Context, cid.ID) error
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
// CreateContainer creates and saves parameterized container in FrostFS.
|
2022-04-13 16:56:58 +00:00
|
|
|
// It sets 'Timestamp' attribute to the current time.
|
|
|
|
// It returns the ID of the saved container.
|
2022-03-01 19:02:24 +00:00
|
|
|
//
|
2022-04-13 16:56:58 +00:00
|
|
|
// The container must be private with GET access for OTHERS group.
|
2022-03-01 19:02:24 +00:00
|
|
|
// Creation time should also be stamped.
|
|
|
|
//
|
2022-04-13 16:56:58 +00:00
|
|
|
// It returns exactly one non-nil value. It returns any error encountered which
|
|
|
|
// prevented the container from being created.
|
2022-06-27 09:08:26 +00:00
|
|
|
CreateContainer(context.Context, PrmContainerCreate) (cid.ID, error)
|
2022-03-01 19:02:24 +00:00
|
|
|
|
2022-04-13 16:56:58 +00:00
|
|
|
// TimeToEpoch computes the current epoch and the epoch that corresponds to the provided time.
|
2022-03-05 08:53:01 +00:00
|
|
|
// Note:
|
|
|
|
// * time must be in the future
|
|
|
|
// * time will be ceil rounded to match epoch
|
2022-03-01 19:02:24 +00:00
|
|
|
//
|
2022-04-13 16:56:58 +00:00
|
|
|
// It returns any error encountered which prevented computing epochs.
|
2022-03-05 08:53:01 +00:00
|
|
|
TimeToEpoch(context.Context, time.Time) (uint64, uint64, error)
|
2022-03-01 19:02:24 +00:00
|
|
|
}
|
2021-05-18 18:49:09 +00:00
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
// Agent contains client communicating with FrostFS and logger.
|
2021-05-18 18:49:09 +00:00
|
|
|
type Agent struct {
|
2022-12-20 08:38:58 +00:00
|
|
|
frostFS FrostFS
|
|
|
|
log *zap.Logger
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
2021-05-19 16:27:02 +00:00
|
|
|
// New creates an object of type Agent that consists of Client and logger.
|
2022-12-20 08:38:58 +00:00
|
|
|
func New(log *zap.Logger, frostFS FrostFS) *Agent {
|
|
|
|
return &Agent{log: log, frostFS: frostFS}
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type (
|
2022-12-20 08:38:58 +00:00
|
|
|
// ContainerPolicies contains mapping of aws LocationConstraint to frostfs PlacementPolicy.
|
2021-07-16 12:35:07 +00:00
|
|
|
ContainerPolicies map[string]string
|
|
|
|
|
2021-05-19 16:27:02 +00:00
|
|
|
// IssueSecretOptions contains options for passing to Agent.IssueSecret method.
|
2021-05-18 18:49:09 +00:00
|
|
|
IssueSecretOptions struct {
|
2022-03-03 12:43:56 +00:00
|
|
|
Container ContainerOptions
|
2022-12-20 08:38:58 +00:00
|
|
|
FrostFSKey *keys.PrivateKey
|
2021-06-24 15:21:34 +00:00
|
|
|
GatesPublicKeys []*keys.PublicKey
|
2021-05-18 18:49:09 +00:00
|
|
|
EACLRules []byte
|
2022-10-25 09:30:18 +00:00
|
|
|
Impersonate bool
|
2022-01-31 18:40:00 +00:00
|
|
|
SessionTokenRules []byte
|
2022-03-30 12:23:00 +00:00
|
|
|
SkipSessionRules bool
|
2021-10-26 12:03:51 +00:00
|
|
|
Lifetime time.Duration
|
2021-09-01 11:30:15 +00:00
|
|
|
AwsCliCredentialsFile string
|
2021-07-16 12:35:07 +00:00
|
|
|
ContainerPolicies ContainerPolicies
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
2022-03-03 12:43:56 +00:00
|
|
|
// ContainerOptions groups parameters of auth container to put the secret into.
|
|
|
|
ContainerOptions struct {
|
2022-06-27 09:08:26 +00:00
|
|
|
ID cid.ID
|
2022-03-03 12:43:56 +00:00
|
|
|
FriendlyName string
|
|
|
|
PlacementPolicy string
|
|
|
|
}
|
|
|
|
|
2021-05-19 16:27:02 +00:00
|
|
|
// ObtainSecretOptions contains options for passing to Agent.ObtainSecret method.
|
2021-05-18 18:49:09 +00:00
|
|
|
ObtainSecretOptions struct {
|
|
|
|
SecretAddress string
|
2021-06-24 15:21:34 +00:00
|
|
|
GatePrivateKey *keys.PrivateKey
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
// lifetimeOptions holds FrostFS epochs, iat -- epoch which the token was issued at, exp -- epoch when the token expires.
|
2021-06-28 13:20:11 +00:00
|
|
|
type lifetimeOptions struct {
|
|
|
|
Iat uint64
|
|
|
|
Exp uint64
|
|
|
|
}
|
|
|
|
|
2021-05-18 18:49:09 +00:00
|
|
|
type (
|
|
|
|
issuingResult struct {
|
|
|
|
AccessKeyID string `json:"access_key_id"`
|
|
|
|
SecretAccessKey string `json:"secret_access_key"`
|
|
|
|
OwnerPrivateKey string `json:"owner_private_key"`
|
2022-05-31 21:27:20 +00:00
|
|
|
WalletPublicKey string `json:"wallet_public_key"`
|
2021-07-16 12:08:05 +00:00
|
|
|
ContainerID string `json:"container_id"`
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
obtainingResult struct {
|
2022-04-25 09:57:58 +00:00
|
|
|
BearerToken *bearer.Token `json:"-"`
|
|
|
|
SecretAccessKey string `json:"secret_access_key"`
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2022-06-27 09:08:26 +00:00
|
|
|
func (a *Agent) checkContainer(ctx context.Context, opts ContainerOptions, idOwner user.ID) (cid.ID, error) {
|
|
|
|
if !opts.ID.Equals(cid.ID{}) {
|
2022-12-20 08:38:58 +00:00
|
|
|
return opts.ID, a.frostFS.ContainerExists(ctx, opts.ID)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
2022-06-15 19:31:41 +00:00
|
|
|
var prm PrmContainerCreate
|
|
|
|
|
|
|
|
err := prm.Policy.DecodeString(opts.PlacementPolicy)
|
2021-05-18 18:49:09 +00:00
|
|
|
if err != nil {
|
2022-06-27 09:08:26 +00:00
|
|
|
return cid.ID{}, fmt.Errorf("failed to build placement policy: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
2022-06-15 19:31:41 +00:00
|
|
|
prm.Owner = idOwner
|
|
|
|
prm.FriendlyName = opts.FriendlyName
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
cnrID, err := a.frostFS.CreateContainer(ctx, prm)
|
2021-05-26 16:48:27 +00:00
|
|
|
if err != nil {
|
2022-12-20 08:38:58 +00:00
|
|
|
return cid.ID{}, fmt.Errorf("create container in FrostFS: %w", err)
|
2021-05-26 16:48:27 +00:00
|
|
|
}
|
|
|
|
|
2022-03-03 12:43:56 +00:00
|
|
|
return cnrID, nil
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 12:35:07 +00:00
|
|
|
func checkPolicy(policyString string) (*netmap.PlacementPolicy, error) {
|
2022-06-15 19:31:41 +00:00
|
|
|
var result netmap.PlacementPolicy
|
|
|
|
|
|
|
|
err := result.DecodeString(policyString)
|
2021-07-16 12:35:07 +00:00
|
|
|
if err == nil {
|
2022-06-15 19:31:41 +00:00
|
|
|
return &result, nil
|
2021-07-16 12:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err = result.UnmarshalJSON([]byte(policyString)); err == nil {
|
2022-06-15 19:31:41 +00:00
|
|
|
return &result, nil
|
2021-07-16 12:35:07 +00:00
|
|
|
}
|
|
|
|
|
2022-06-15 19:31:41 +00:00
|
|
|
return nil, errors.New("can't parse placement policy")
|
2021-07-16 12:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func preparePolicy(policy ContainerPolicies) ([]*accessbox.AccessBox_ContainerPolicy, error) {
|
|
|
|
if policy == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var result []*accessbox.AccessBox_ContainerPolicy
|
|
|
|
for locationConstraint, placementPolicy := range policy {
|
|
|
|
parsedPolicy, err := checkPolicy(placementPolicy)
|
|
|
|
if err != nil {
|
2022-06-22 19:40:52 +00:00
|
|
|
return nil, fmt.Errorf("check placement policy: %w", err)
|
2021-07-16 12:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
result = append(result, &accessbox.AccessBox_ContainerPolicy{
|
|
|
|
LocationConstraint: locationConstraint,
|
2022-06-15 19:31:41 +00:00
|
|
|
Policy: parsedPolicy.Marshal(),
|
2021-07-16 12:35:07 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
// IssueSecret creates an auth token, puts it in the FrostFS network and writes to io.Writer a new secret access key.
|
2021-05-18 18:49:09 +00:00
|
|
|
func (a *Agent) IssueSecret(ctx context.Context, w io.Writer, options *IssueSecretOptions) error {
|
|
|
|
var (
|
2021-06-28 13:20:11 +00:00
|
|
|
err error
|
|
|
|
box *accessbox.AccessBox
|
|
|
|
lifetime lifetimeOptions
|
2021-05-18 18:49:09 +00:00
|
|
|
)
|
|
|
|
|
2021-07-16 12:35:07 +00:00
|
|
|
policies, err := preparePolicy(options.ContainerPolicies)
|
|
|
|
if err != nil {
|
2022-06-22 19:40:52 +00:00
|
|
|
return fmt.Errorf("prepare policies: %w", err)
|
2021-07-16 12:35:07 +00:00
|
|
|
}
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
lifetime.Iat, lifetime.Exp, err = a.frostFS.TimeToEpoch(ctx, time.Now().Add(options.Lifetime))
|
2021-06-28 13:20:11 +00:00
|
|
|
if err != nil {
|
2022-06-22 19:40:52 +00:00
|
|
|
return fmt.Errorf("fetch time to epoch: %w", err)
|
2021-06-28 13:20:11 +00:00
|
|
|
}
|
|
|
|
|
2022-03-11 09:59:52 +00:00
|
|
|
gatesData, err := createTokens(options, lifetime)
|
2021-05-18 18:49:09 +00:00
|
|
|
if err != nil {
|
2022-06-22 19:40:52 +00:00
|
|
|
return fmt.Errorf("create tokens: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
2021-06-18 15:15:58 +00:00
|
|
|
box, secrets, err := accessbox.PackTokens(gatesData)
|
2021-06-14 13:39:25 +00:00
|
|
|
if err != nil {
|
2022-06-22 19:40:52 +00:00
|
|
|
return fmt.Errorf("pack tokens: %w", err)
|
2021-06-14 13:39:25 +00:00
|
|
|
}
|
2021-06-16 20:09:51 +00:00
|
|
|
|
2021-07-16 12:35:07 +00:00
|
|
|
box.ContainerPolicy = policies
|
|
|
|
|
2022-04-25 09:57:58 +00:00
|
|
|
var idOwner user.ID
|
2022-12-20 08:38:58 +00:00
|
|
|
user.IDFromKey(&idOwner, options.FrostFSKey.PrivateKey.PublicKey)
|
2022-03-11 09:59:52 +00:00
|
|
|
|
|
|
|
a.log.Info("check container or create", zap.Stringer("cid", options.Container.ID),
|
|
|
|
zap.String("friendly_name", options.Container.FriendlyName),
|
|
|
|
zap.String("placement_policy", options.Container.PlacementPolicy))
|
2022-05-25 17:25:43 +00:00
|
|
|
id, err := a.checkContainer(ctx, options.Container, idOwner)
|
|
|
|
if err != nil {
|
2022-06-22 19:40:52 +00:00
|
|
|
return fmt.Errorf("check container: %w", err)
|
2022-03-11 09:59:52 +00:00
|
|
|
}
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
a.log.Info("store bearer token into FrostFS",
|
2022-02-08 16:54:04 +00:00
|
|
|
zap.Stringer("owner_tkn", idOwner))
|
2021-06-16 14:07:31 +00:00
|
|
|
|
2022-02-08 16:54:04 +00:00
|
|
|
addr, err := tokens.
|
2022-12-20 08:38:58 +00:00
|
|
|
New(a.frostFS, secrets.EphemeralKey, cache.DefaultAccessBoxConfig(a.log)).
|
2022-06-27 09:08:26 +00:00
|
|
|
Put(ctx, id, idOwner, box, lifetime.Exp, options.GatesPublicKeys...)
|
2021-05-18 18:49:09 +00:00
|
|
|
if err != nil {
|
2021-05-20 10:14:17 +00:00
|
|
|
return fmt.Errorf("failed to put bearer token: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
2022-05-25 17:25:43 +00:00
|
|
|
objID := addr.Object()
|
|
|
|
strIDObj := objID.EncodeToString()
|
|
|
|
|
|
|
|
accessKeyID := addr.Container().EncodeToString() + "0" + strIDObj
|
2021-06-02 18:53:20 +00:00
|
|
|
|
2021-05-18 18:49:09 +00:00
|
|
|
ir := &issuingResult{
|
2021-06-02 18:53:20 +00:00
|
|
|
AccessKeyID: accessKeyID,
|
2021-06-17 16:45:50 +00:00
|
|
|
SecretAccessKey: secrets.AccessKey,
|
2021-06-24 15:21:34 +00:00
|
|
|
OwnerPrivateKey: hex.EncodeToString(secrets.EphemeralKey.Bytes()),
|
2022-12-20 08:38:58 +00:00
|
|
|
WalletPublicKey: hex.EncodeToString(options.FrostFSKey.PublicKey().Bytes()),
|
2022-05-25 17:25:43 +00:00
|
|
|
ContainerID: id.EncodeToString(),
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enc := json.NewEncoder(w)
|
|
|
|
enc.SetIndent("", " ")
|
2021-09-01 11:30:15 +00:00
|
|
|
if err = enc.Encode(ir); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.AwsCliCredentialsFile != "" {
|
2022-05-25 17:25:43 +00:00
|
|
|
profileName := "authmate_cred_" + strIDObj
|
2021-09-01 11:30:15 +00:00
|
|
|
if _, err = os.Stat(options.AwsCliCredentialsFile); os.IsNotExist(err) {
|
|
|
|
profileName = "default"
|
|
|
|
}
|
|
|
|
file, err := os.OpenFile(options.AwsCliCredentialsFile, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("couldn't open aws cli credentials file: %w", err)
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
if _, err = file.WriteString(fmt.Sprintf("\n[%s]\naws_access_key_id = %s\naws_secret_access_key = %s\n",
|
|
|
|
profileName, accessKeyID, secrets.AccessKey)); err != nil {
|
2022-06-22 19:40:52 +00:00
|
|
|
return fmt.Errorf("fails to write to file: %w", err)
|
2021-09-01 11:30:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
// ObtainSecret receives an existing secret access key from FrostFS and
|
2021-05-19 16:27:02 +00:00
|
|
|
// writes to io.Writer the secret access key.
|
2021-05-18 18:49:09 +00:00
|
|
|
func (a *Agent) ObtainSecret(ctx context.Context, w io.Writer, options *ObtainSecretOptions) error {
|
2022-12-20 08:38:58 +00:00
|
|
|
bearerCreds := tokens.New(a.frostFS, options.GatePrivateKey, cache.DefaultAccessBoxConfig(a.log))
|
2022-05-25 17:25:43 +00:00
|
|
|
|
|
|
|
var addr oid.Address
|
|
|
|
if err := addr.DecodeString(options.SecretAddress); err != nil {
|
2021-05-20 10:14:17 +00:00
|
|
|
return fmt.Errorf("failed to parse secret address: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
2022-02-08 16:54:04 +00:00
|
|
|
box, err := bearerCreds.GetBox(ctx, addr)
|
2021-05-18 18:49:09 +00:00
|
|
|
if err != nil {
|
2021-06-17 16:45:50 +00:00
|
|
|
return fmt.Errorf("failed to get tokens: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
or := &obtainingResult{
|
2021-07-16 12:35:07 +00:00
|
|
|
BearerToken: box.Gate.BearerToken,
|
|
|
|
SecretAccessKey: box.Gate.AccessKey,
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enc := json.NewEncoder(w)
|
|
|
|
enc.SetIndent("", " ")
|
|
|
|
return enc.Encode(or)
|
|
|
|
}
|
|
|
|
|
2022-03-11 09:59:52 +00:00
|
|
|
func buildEACLTable(eaclTable []byte) (*eacl.Table, error) {
|
2022-06-08 16:01:25 +00:00
|
|
|
table := eacl.NewTable()
|
2021-05-18 18:49:09 +00:00
|
|
|
if len(eaclTable) != 0 {
|
2022-06-08 16:01:25 +00:00
|
|
|
return table, table.UnmarshalJSON(eaclTable)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
record := eacl.NewRecord()
|
|
|
|
record.SetOperation(eacl.OperationGet)
|
|
|
|
record.SetAction(eacl.ActionAllow)
|
|
|
|
eacl.AddFormedTarget(record, eacl.RoleOthers)
|
|
|
|
table.AddRecord(record)
|
|
|
|
|
2022-04-26 14:35:12 +00:00
|
|
|
for _, rec := range restrictedRecords() {
|
|
|
|
table.AddRecord(rec)
|
|
|
|
}
|
|
|
|
|
2021-05-18 18:49:09 +00:00
|
|
|
return table, nil
|
|
|
|
}
|
|
|
|
|
2022-04-26 14:35:12 +00:00
|
|
|
func restrictedRecords() (records []*eacl.Record) {
|
|
|
|
for op := eacl.OperationGet; op <= eacl.OperationRangeHash; op++ {
|
|
|
|
record := eacl.NewRecord()
|
|
|
|
record.SetOperation(op)
|
|
|
|
record.SetAction(eacl.ActionDeny)
|
|
|
|
eacl.AddFormedTarget(record, eacl.RoleOthers)
|
|
|
|
records = append(records, record)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-10-25 09:30:18 +00:00
|
|
|
func buildBearerToken(key *keys.PrivateKey, impersonate bool, table *eacl.Table, lifetime lifetimeOptions, gateKey *keys.PublicKey) (*bearer.Token, error) {
|
2022-04-25 09:57:58 +00:00
|
|
|
var ownerID user.ID
|
|
|
|
user.IDFromKey(&ownerID, (ecdsa.PublicKey)(*gateKey))
|
2021-06-16 14:07:31 +00:00
|
|
|
|
2022-04-25 09:57:58 +00:00
|
|
|
var bearerToken bearer.Token
|
2022-10-25 09:30:18 +00:00
|
|
|
|
|
|
|
if !impersonate {
|
|
|
|
bearerToken.SetEACLTable(*table)
|
|
|
|
}
|
|
|
|
|
2022-06-01 14:00:30 +00:00
|
|
|
bearerToken.ForUser(ownerID)
|
|
|
|
bearerToken.SetExp(lifetime.Exp)
|
|
|
|
bearerToken.SetIat(lifetime.Iat)
|
|
|
|
bearerToken.SetNbf(lifetime.Iat)
|
2022-10-25 09:30:18 +00:00
|
|
|
bearerToken.SetImpersonate(impersonate)
|
2021-05-18 18:49:09 +00:00
|
|
|
|
2022-06-01 14:00:30 +00:00
|
|
|
err := bearerToken.Sign(key.PrivateKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("sign bearer token: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &bearerToken, nil
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
2021-05-25 16:52:29 +00:00
|
|
|
|
2022-10-25 09:30:18 +00:00
|
|
|
func buildBearerTokens(key *keys.PrivateKey, impersonate bool, table *eacl.Table, lifetime lifetimeOptions, gatesKeys []*keys.PublicKey) ([]*bearer.Token, error) {
|
2022-04-25 09:57:58 +00:00
|
|
|
bearerTokens := make([]*bearer.Token, 0, len(gatesKeys))
|
2021-06-18 15:15:58 +00:00
|
|
|
for _, gateKey := range gatesKeys {
|
2022-10-25 09:30:18 +00:00
|
|
|
tkn, err := buildBearerToken(key, impersonate, table, lifetime, gateKey)
|
2021-06-17 16:45:50 +00:00
|
|
|
if err != nil {
|
2022-06-22 19:40:52 +00:00
|
|
|
return nil, fmt.Errorf("build bearer token: %w", err)
|
2021-06-17 16:45:50 +00:00
|
|
|
}
|
2021-06-18 15:15:58 +00:00
|
|
|
bearerTokens = append(bearerTokens, tkn)
|
2021-06-17 16:45:50 +00:00
|
|
|
}
|
2021-06-18 15:15:58 +00:00
|
|
|
return bearerTokens, nil
|
2021-06-17 16:45:50 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 12:29:11 +00:00
|
|
|
func buildSessionToken(key *keys.PrivateKey, lifetime lifetimeOptions, ctx sessionTokenContext, gateKey *keys.PublicKey) (*session.Container, error) {
|
|
|
|
tok := new(session.Container)
|
|
|
|
tok.ForVerb(ctx.verb)
|
2022-06-27 09:08:26 +00:00
|
|
|
tok.AppliedTo(ctx.containerID)
|
2022-05-04 12:29:11 +00:00
|
|
|
|
|
|
|
tok.SetID(uuid.New())
|
2022-12-20 08:38:58 +00:00
|
|
|
tok.SetAuthKey((*frostfsecdsa.PublicKey)(gateKey))
|
2021-06-16 20:09:51 +00:00
|
|
|
|
2021-06-28 13:20:11 +00:00
|
|
|
tok.SetIat(lifetime.Iat)
|
|
|
|
tok.SetNbf(lifetime.Iat)
|
|
|
|
tok.SetExp(lifetime.Exp)
|
|
|
|
|
2022-05-04 12:29:11 +00:00
|
|
|
return tok, tok.Sign(key.PrivateKey)
|
2021-06-16 20:09:51 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 12:29:11 +00:00
|
|
|
func buildSessionTokens(key *keys.PrivateKey, lifetime lifetimeOptions, ctxs []sessionTokenContext, gatesKeys []*keys.PublicKey) ([][]*session.Container, error) {
|
|
|
|
sessionTokens := make([][]*session.Container, 0, len(gatesKeys))
|
2021-06-18 15:15:58 +00:00
|
|
|
for _, gateKey := range gatesKeys {
|
2022-05-04 12:29:11 +00:00
|
|
|
tkns := make([]*session.Container, len(ctxs))
|
2022-01-26 06:57:11 +00:00
|
|
|
for i, ctx := range ctxs {
|
2022-05-04 12:29:11 +00:00
|
|
|
tkn, err := buildSessionToken(key, lifetime, ctx, gateKey)
|
2022-01-26 06:57:11 +00:00
|
|
|
if err != nil {
|
2022-06-22 19:40:52 +00:00
|
|
|
return nil, fmt.Errorf("build session token: %w", err)
|
2022-01-26 06:57:11 +00:00
|
|
|
}
|
|
|
|
tkns[i] = tkn
|
2021-06-18 15:15:58 +00:00
|
|
|
}
|
2022-01-26 06:57:11 +00:00
|
|
|
sessionTokens = append(sessionTokens, tkns)
|
2021-06-18 15:15:58 +00:00
|
|
|
}
|
|
|
|
return sessionTokens, nil
|
|
|
|
}
|
|
|
|
|
2022-03-11 09:59:52 +00:00
|
|
|
func createTokens(options *IssueSecretOptions, lifetime lifetimeOptions) ([]*accessbox.GateData, error) {
|
2021-06-18 15:15:58 +00:00
|
|
|
gates := make([]*accessbox.GateData, len(options.GatesPublicKeys))
|
|
|
|
|
2022-03-11 09:59:52 +00:00
|
|
|
table, err := buildEACLTable(options.EACLRules)
|
2021-06-18 15:15:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to build eacl table: %w", err)
|
|
|
|
}
|
2022-10-25 09:30:18 +00:00
|
|
|
|
|
|
|
bearerTokens, err := buildBearerTokens(options.FrostFSKey, options.Impersonate, table, lifetime, options.GatesPublicKeys)
|
2021-06-18 15:15:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to build bearer tokens: %w", err)
|
|
|
|
}
|
|
|
|
for i, gateKey := range options.GatesPublicKeys {
|
|
|
|
gates[i] = accessbox.NewGateData(gateKey, bearerTokens[i])
|
|
|
|
}
|
|
|
|
|
2022-03-30 12:23:00 +00:00
|
|
|
if !options.SkipSessionRules {
|
2022-01-31 18:40:00 +00:00
|
|
|
sessionRules, err := buildContext(options.SessionTokenRules)
|
2021-06-16 14:07:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to build context for session token: %w", err)
|
|
|
|
}
|
2021-06-18 15:15:58 +00:00
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
sessionTokens, err := buildSessionTokens(options.FrostFSKey, lifetime, sessionRules, options.GatesPublicKeys)
|
2021-06-18 15:15:58 +00:00
|
|
|
if err != nil {
|
2022-02-16 19:26:51 +00:00
|
|
|
return nil, fmt.Errorf("failed to biuild session token: %w", err)
|
2021-06-18 15:15:58 +00:00
|
|
|
}
|
2022-01-26 09:09:28 +00:00
|
|
|
for i, sessionTkns := range sessionTokens {
|
|
|
|
gates[i].SessionTokens = sessionTkns
|
2021-06-18 15:15:58 +00:00
|
|
|
}
|
2021-06-16 14:07:31 +00:00
|
|
|
}
|
2021-06-18 15:15:58 +00:00
|
|
|
|
|
|
|
return gates, nil
|
2021-06-16 14:07:31 +00:00
|
|
|
}
|