2023-12-27 14:18:15 +00:00
|
|
|
package ape
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2024-03-11 14:55:50 +00:00
|
|
|
"errors"
|
2023-12-27 14:18:15 +00:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
objectV2 "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/object"
|
2024-05-02 17:26:06 +00:00
|
|
|
frostfsidcore "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/frostfsid"
|
2023-12-27 14:18:15 +00:00
|
|
|
cid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id"
|
|
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
2024-03-15 12:16:52 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/user"
|
2023-12-27 14:18:15 +00:00
|
|
|
apechain "git.frostfs.info/TrueCloudLab/policy-engine/pkg/chain"
|
|
|
|
policyengine "git.frostfs.info/TrueCloudLab/policy-engine/pkg/engine"
|
2024-03-12 12:09:55 +00:00
|
|
|
nativeschema "git.frostfs.info/TrueCloudLab/policy-engine/schema/native"
|
2024-04-11 10:51:39 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
2023-12-27 14:18:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type checkerImpl struct {
|
|
|
|
chainRouter policyengine.ChainRouter
|
|
|
|
|
|
|
|
headerProvider HeaderProvider
|
2024-04-15 13:51:19 +00:00
|
|
|
|
2024-05-02 17:26:06 +00:00
|
|
|
frostFSIDClient frostfsidcore.SubjectProvider
|
2024-04-15 13:51:19 +00:00
|
|
|
}
|
|
|
|
|
2024-05-02 17:26:06 +00:00
|
|
|
func NewChecker(chainRouter policyengine.ChainRouter, headerProvider HeaderProvider, frostFSIDClient frostfsidcore.SubjectProvider) Checker {
|
2023-12-27 14:18:15 +00:00
|
|
|
return &checkerImpl{
|
|
|
|
chainRouter: chainRouter,
|
|
|
|
|
|
|
|
headerProvider: headerProvider,
|
2024-04-15 13:51:19 +00:00
|
|
|
|
|
|
|
frostFSIDClient: frostFSIDClient,
|
2023-12-27 14:18:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Prm struct {
|
|
|
|
Namespace string
|
|
|
|
|
|
|
|
Container cid.ID
|
|
|
|
|
|
|
|
// Object ID is omitted for some methods.
|
|
|
|
Object *oid.ID
|
|
|
|
|
|
|
|
// If Header is set, then object attributes and properties will be parsed from
|
|
|
|
// a request/response's header.
|
|
|
|
Header *objectV2.Header
|
|
|
|
|
|
|
|
// Method must be represented only as a constant represented in native schema.
|
|
|
|
Method string
|
|
|
|
|
|
|
|
// Role must be representedonly as a constant represented in native schema.
|
|
|
|
Role string
|
|
|
|
|
|
|
|
// An encoded sender's public key string.
|
|
|
|
SenderKey string
|
2024-02-14 11:14:07 +00:00
|
|
|
|
2024-03-15 12:16:52 +00:00
|
|
|
// An encoded container's owner user ID.
|
|
|
|
ContainerOwner user.ID
|
|
|
|
|
2024-02-14 11:14:07 +00:00
|
|
|
// If SoftAPECheck is set to true, then NoRuleFound is interpreted as allow.
|
|
|
|
SoftAPECheck bool
|
2024-04-04 11:55:38 +00:00
|
|
|
|
|
|
|
// If true, object headers will not retrieved from storage engine.
|
|
|
|
WithoutHeaderRequest bool
|
2023-12-27 14:18:15 +00:00
|
|
|
}
|
|
|
|
|
2024-03-11 14:55:50 +00:00
|
|
|
var errMissingOID = errors.New("object ID is not set")
|
2023-12-27 14:18:15 +00:00
|
|
|
|
|
|
|
// CheckAPE checks if a request or a response is permitted creating an ape request and passing
|
|
|
|
// it to chain router.
|
|
|
|
func (c *checkerImpl) CheckAPE(ctx context.Context, prm Prm) error {
|
2024-03-12 12:09:55 +00:00
|
|
|
// APE check is ignored for some inter-node requests.
|
|
|
|
if prm.Role == nativeschema.PropertyValueContainerRoleContainer {
|
|
|
|
return nil
|
|
|
|
} else if prm.Role == nativeschema.PropertyValueContainerRoleIR {
|
|
|
|
switch prm.Method {
|
|
|
|
case nativeschema.MethodGetObject,
|
|
|
|
nativeschema.MethodHeadObject,
|
|
|
|
nativeschema.MethodSearchObject,
|
|
|
|
nativeschema.MethodRangeObject,
|
|
|
|
nativeschema.MethodHashObject:
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-27 14:18:15 +00:00
|
|
|
r, err := c.newAPERequest(ctx, prm)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to create ape request: %w", err)
|
|
|
|
}
|
|
|
|
|
2024-04-11 10:51:39 +00:00
|
|
|
pub, err := keys.NewPublicKeyFromString(prm.SenderKey)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
rt := policyengine.NewRequestTargetExtended(prm.Namespace, prm.Container.EncodeToString(), fmt.Sprintf("%s:%s", prm.Namespace, pub.Address()), nil)
|
|
|
|
status, ruleFound, err := c.chainRouter.IsAllowed(apechain.Ingress, rt, r)
|
2023-12-27 14:18:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-02-14 11:14:07 +00:00
|
|
|
if !ruleFound && prm.SoftAPECheck || status == apechain.Allow {
|
2023-12-27 14:18:15 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-02-14 11:14:07 +00:00
|
|
|
return fmt.Errorf("method %s: %s", prm.Method, status)
|
2023-12-27 14:18:15 +00:00
|
|
|
}
|