2021-05-19 09:28:17 +00:00
|
|
|
package authmate
|
2021-05-18 18:49:09 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/ecdsa"
|
|
|
|
"encoding/json"
|
2021-05-20 10:14:17 +00:00
|
|
|
"fmt"
|
2021-05-18 18:49:09 +00:00
|
|
|
"io"
|
|
|
|
"math"
|
|
|
|
"strconv"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
sdk "github.com/nspcc-dev/cdn-sdk"
|
|
|
|
"github.com/nspcc-dev/cdn-sdk/creds/bearer"
|
|
|
|
"github.com/nspcc-dev/cdn-sdk/creds/hcs"
|
|
|
|
"github.com/nspcc-dev/cdn-sdk/creds/neofs"
|
|
|
|
"github.com/nspcc-dev/cdn-sdk/creds/s3"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/acl/eacl"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/container"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/netmap"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/object"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/owner"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/token"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/policy"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
|
|
|
const defaultAuthContainerBasicACL uint32 = 0b00111100100011001000110011001100
|
|
|
|
|
2021-05-19 16:27:02 +00:00
|
|
|
// Agent contains client communicating with NeoFS and logger.
|
2021-05-18 18:49:09 +00:00
|
|
|
type Agent struct {
|
|
|
|
cli sdk.Client
|
|
|
|
log *zap.Logger
|
|
|
|
}
|
|
|
|
|
2021-05-19 16:27:02 +00:00
|
|
|
// New creates an object of type Agent that consists of Client and logger.
|
2021-05-18 18:49:09 +00:00
|
|
|
func New(log *zap.Logger, client sdk.Client) *Agent {
|
|
|
|
return &Agent{log: log, cli: client}
|
|
|
|
}
|
|
|
|
|
|
|
|
type (
|
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 {
|
|
|
|
ContainerID *container.ID
|
|
|
|
ContainerFriendlyName string
|
|
|
|
NEOFSCreds neofs.Credentials
|
|
|
|
OwnerPrivateKey hcs.PrivateKey
|
|
|
|
GatesPublicKeys []hcs.PublicKey
|
|
|
|
EACLRules []byte
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
GatePrivateKey hcs.PrivateKey
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
issuingResult struct {
|
|
|
|
AccessKeyID string `json:"access_key_id"`
|
|
|
|
SecretAccessKey string `json:"secret_access_key"`
|
|
|
|
OwnerPrivateKey string `json:"owner_private_key"`
|
|
|
|
}
|
|
|
|
|
|
|
|
obtainingResult struct {
|
|
|
|
BearerToken *token.BearerToken `json:"-"`
|
|
|
|
SecretAccessKey string `json:"secret_access_key"`
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func (a *Agent) checkContainer(ctx context.Context, cid *container.ID, friendlyName string) (*container.ID, error) {
|
|
|
|
if cid != nil {
|
|
|
|
// check that container exists
|
|
|
|
_, err := a.cli.Container().Get(ctx, cid)
|
|
|
|
return cid, err
|
|
|
|
}
|
|
|
|
|
|
|
|
pp, err := buildPlacementPolicy("")
|
|
|
|
if err != nil {
|
2021-05-20 10:14:17 +00:00
|
|
|
return nil, fmt.Errorf("failed to build placement policy: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cnr := container.New(
|
|
|
|
container.WithPolicy(pp),
|
|
|
|
container.WithCustomBasicACL(defaultAuthContainerBasicACL),
|
|
|
|
container.WithAttribute(container.AttributeName, friendlyName),
|
|
|
|
container.WithAttribute(container.AttributeTimestamp, strconv.FormatInt(time.Now().Unix(), 10)))
|
|
|
|
|
|
|
|
return a.cli.Container().Put(ctx, cnr,
|
|
|
|
sdk.ContainerPutAndWait(),
|
|
|
|
sdk.ContainerPutWithTimeout(120*time.Second))
|
|
|
|
}
|
|
|
|
|
2021-05-19 16:27:02 +00:00
|
|
|
// IssueSecret creates an auth token, puts it in the NeoFS 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 (
|
|
|
|
err error
|
|
|
|
cid *container.ID
|
|
|
|
)
|
|
|
|
|
|
|
|
a.log.Info("check container", zap.Stringer("cid", options.ContainerID))
|
|
|
|
if cid, err = a.checkContainer(ctx, options.ContainerID, options.ContainerFriendlyName); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
a.log.Info("prepare eACL table")
|
|
|
|
|
|
|
|
table, err := buildEACLTable(cid, options.EACLRules)
|
|
|
|
if err != nil {
|
2021-05-20 10:14:17 +00:00
|
|
|
return fmt.Errorf("failed to build eacl table: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tkn, err := buildBearerToken(options.NEOFSCreds.PrivateKey(), options.NEOFSCreds.Owner(), table)
|
|
|
|
if err != nil {
|
2021-05-20 10:14:17 +00:00
|
|
|
return fmt.Errorf("failed to build bearer token: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a.log.Info("store bearer token into NeoFS",
|
|
|
|
zap.Stringer("owner_key", options.NEOFSCreds.Owner()),
|
|
|
|
zap.Stringer("owner_tkn", tkn.Issuer()))
|
|
|
|
|
|
|
|
address, err := bearer.
|
|
|
|
New(a.cli.Object(), options.OwnerPrivateKey).
|
|
|
|
Put(ctx, cid, tkn, options.GatesPublicKeys...)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
secret, err := s3.SecretAccessKey(tkn)
|
|
|
|
if err != nil {
|
2021-05-20 10:14:17 +00:00
|
|
|
return fmt.Errorf("failed to get bearer token secret key: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ir := &issuingResult{
|
|
|
|
AccessKeyID: address.String(),
|
|
|
|
SecretAccessKey: secret,
|
|
|
|
OwnerPrivateKey: options.OwnerPrivateKey.String(),
|
|
|
|
}
|
|
|
|
|
|
|
|
enc := json.NewEncoder(w)
|
|
|
|
enc.SetIndent("", " ")
|
|
|
|
return enc.Encode(ir)
|
|
|
|
}
|
|
|
|
|
2021-05-19 16:27:02 +00:00
|
|
|
// ObtainSecret receives an existing secret access key from NeoFS and
|
|
|
|
// 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 {
|
|
|
|
bearerCreds := bearer.New(a.cli.Object(), options.GatePrivateKey)
|
|
|
|
address := object.NewAddress()
|
|
|
|
if err := address.Parse(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
|
|
|
}
|
|
|
|
|
|
|
|
tkn, err := bearerCreds.Get(ctx, address)
|
|
|
|
if err != nil {
|
2021-05-20 10:14:17 +00:00
|
|
|
return fmt.Errorf("failed to get bearer token: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
secret, err := s3.SecretAccessKey(tkn)
|
|
|
|
if err != nil {
|
2021-05-20 10:14:17 +00:00
|
|
|
return fmt.Errorf("failed to get bearer token secret key: %w", err)
|
2021-05-18 18:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
or := &obtainingResult{
|
|
|
|
BearerToken: tkn,
|
|
|
|
SecretAccessKey: secret,
|
|
|
|
}
|
|
|
|
|
|
|
|
enc := json.NewEncoder(w)
|
|
|
|
enc.SetIndent("", " ")
|
|
|
|
return enc.Encode(or)
|
|
|
|
}
|
|
|
|
|
|
|
|
func buildPlacementPolicy(placementRules string) (*netmap.PlacementPolicy, error) {
|
|
|
|
if len(placementRules) != 0 {
|
|
|
|
return policy.Parse(placementRules)
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
REP 1 IN X // place one copy of object
|
|
|
|
CBF 1
|
|
|
|
SELECT 2 From * AS X // in container of two nodes
|
|
|
|
*/
|
|
|
|
pp := new(netmap.PlacementPolicy)
|
|
|
|
pp.SetContainerBackupFactor(1)
|
|
|
|
pp.SetReplicas([]*netmap.Replica{newReplica("X", 1)}...)
|
|
|
|
pp.SetSelectors([]*netmap.Selector{newSimpleSelector("X", 2)}...)
|
|
|
|
|
|
|
|
return pp, nil
|
|
|
|
}
|
|
|
|
|
2021-05-19 16:27:02 +00:00
|
|
|
// selects <count> nodes in container without any additional attributes.
|
2021-05-18 18:49:09 +00:00
|
|
|
func newSimpleSelector(name string, count uint32) (s *netmap.Selector) {
|
|
|
|
s = new(netmap.Selector)
|
|
|
|
s.SetCount(count)
|
|
|
|
s.SetFilter("*")
|
|
|
|
s.SetName(name)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func newReplica(name string, count uint32) (r *netmap.Replica) {
|
|
|
|
r = new(netmap.Replica)
|
|
|
|
r.SetCount(count)
|
|
|
|
r.SetSelector(name)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func buildEACLTable(cid *container.ID, eaclTable []byte) (*eacl.Table, error) {
|
|
|
|
table := eacl.NewTable()
|
|
|
|
if len(eaclTable) != 0 {
|
|
|
|
return table, table.UnmarshalJSON(eaclTable)
|
|
|
|
}
|
|
|
|
|
|
|
|
record := eacl.NewRecord()
|
|
|
|
record.SetOperation(eacl.OperationGet)
|
|
|
|
record.SetAction(eacl.ActionAllow)
|
|
|
|
// TODO: Change this later.
|
|
|
|
// from := eacl.HeaderFromObject
|
|
|
|
// matcher := eacl.MatchStringEqual
|
|
|
|
// record.AddFilter(from eacl.FilterHeaderType, matcher eacl.Match, name string, value string)
|
|
|
|
eacl.AddFormedTarget(record, eacl.RoleOthers)
|
|
|
|
table.SetCID(cid)
|
|
|
|
table.AddRecord(record)
|
|
|
|
|
|
|
|
return table, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func buildBearerToken(key *ecdsa.PrivateKey, oid *owner.ID, table *eacl.Table) (*token.BearerToken, error) {
|
|
|
|
bearerToken := token.NewBearerToken()
|
|
|
|
bearerToken.SetEACLTable(table)
|
|
|
|
bearerToken.SetOwner(oid)
|
|
|
|
bearerToken.SetLifetime(math.MaxUint64, 0, 0)
|
|
|
|
|
|
|
|
return bearerToken, bearerToken.SignToken(key)
|
|
|
|
}
|