2020-04-01 15:40:04 +00:00
|
|
|
syntax = "proto3";
|
2020-08-05 22:10:09 +00:00
|
|
|
|
2020-08-12 21:43:51 +00:00
|
|
|
package neo.fs.v2.acl;
|
2020-08-05 22:10:09 +00:00
|
|
|
|
2020-08-14 18:27:31 +00:00
|
|
|
option go_package = "github.com/nspcc-dev/neofs-api-go/v2/acl/grpc;acl";
|
2020-08-12 21:43:51 +00:00
|
|
|
option csharp_namespace = "NeoFS.API.v2.Acl";
|
2020-04-01 15:40:04 +00:00
|
|
|
|
2020-08-05 15:07:56 +00:00
|
|
|
import "refs/types.proto";
|
2020-04-01 15:40:04 +00:00
|
|
|
|
2020-09-02 11:06:21 +00:00
|
|
|
// Target role of the access control rule in access control list.
|
|
|
|
enum Role {
|
2020-10-13 20:29:04 +00:00
|
|
|
// Unspecified role, default value
|
2020-09-02 11:06:21 +00:00
|
|
|
ROLE_UNSPECIFIED= 0;
|
2020-04-01 15:40:04 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// User target rule is applied if sender is the owner of the container
|
2020-08-11 09:03:50 +00:00
|
|
|
USER = 1;
|
2020-04-01 15:40:04 +00:00
|
|
|
|
2020-08-11 09:03:50 +00:00
|
|
|
// System target rule is applied if sender is the storage node within the
|
2020-10-13 20:29:04 +00:00
|
|
|
// container or inner ring node
|
2020-08-11 09:03:50 +00:00
|
|
|
SYSTEM = 2;
|
2020-04-01 15:40:04 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Others target rule is applied if sender is not user nor system target
|
2020-08-11 09:03:50 +00:00
|
|
|
OTHERS = 3;
|
2020-04-01 15:40:04 +00:00
|
|
|
}
|
2020-07-08 07:22:07 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// MatchType is an enumeration of match types.
|
|
|
|
enum MatchType {
|
|
|
|
// Unspecified match type, default value.
|
|
|
|
MATCH_TYPE_UNSPECIFIED = 0;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Return true if strings are equal
|
|
|
|
STRING_EQUAL = 1;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Return true if strings are different
|
|
|
|
STRING_NOT_EQUAL = 2;
|
|
|
|
}
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Request's operation type to match if the rule is applicable to a particular
|
|
|
|
// request.
|
2020-08-14 19:04:56 +00:00
|
|
|
enum Operation {
|
2020-10-13 20:29:04 +00:00
|
|
|
// Unspecified operation, default value
|
2020-08-14 19:04:56 +00:00
|
|
|
OPERATION_UNSPECIFIED = 0;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Get
|
|
|
|
GET = 1;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Head
|
|
|
|
HEAD = 2;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Put
|
|
|
|
PUT = 3;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Delete
|
|
|
|
DELETE = 4;
|
2020-08-11 09:03:50 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Search
|
|
|
|
SEARCH = 5;
|
2020-08-11 09:03:50 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// GetRange
|
|
|
|
GETRANGE = 6;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// GetRangeHash
|
|
|
|
GETRANGEHASH = 7;
|
|
|
|
}
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Rule execution result action. Either allows or denies access if the rule's
|
|
|
|
// filters match.
|
2020-08-14 19:04:56 +00:00
|
|
|
enum Action {
|
2020-10-13 20:29:04 +00:00
|
|
|
// Unspecified action, default value
|
2020-08-14 19:04:56 +00:00
|
|
|
ACTION_UNSPECIFIED = 0;
|
2020-08-11 09:03:50 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Allow action
|
|
|
|
ALLOW = 1;
|
2020-08-11 09:03:50 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Deny action
|
|
|
|
DENY = 2;
|
|
|
|
}
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Enumeration of possible sources of Headers to apply filters.
|
2020-08-14 19:04:56 +00:00
|
|
|
enum HeaderType {
|
|
|
|
// Unspecified header, default value.
|
|
|
|
HEADER_UNSPECIFIED = 0;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Filter request headers
|
|
|
|
REQUEST = 1;
|
2020-07-08 07:22:07 +00:00
|
|
|
|
2020-08-14 19:04:56 +00:00
|
|
|
// Filter object headers
|
|
|
|
OBJECT = 2;
|
|
|
|
}
|
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Describes a single eACL rule.
|
2020-08-14 19:04:56 +00:00
|
|
|
message EACLRecord {
|
2020-10-13 20:29:04 +00:00
|
|
|
// NeoFS request Verb to match
|
2020-08-14 19:04:56 +00:00
|
|
|
Operation operation = 1 [json_name = "Operation"];
|
2020-07-08 07:22:07 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Rule execution result. Either allows or denies access if filters match.
|
2020-08-14 19:04:56 +00:00
|
|
|
Action action = 2 [json_name = "Action"];
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Filter to check particular properties of the request or object.
|
2020-09-02 11:06:21 +00:00
|
|
|
message Filter {
|
2020-10-13 20:29:04 +00:00
|
|
|
// Define if Object or Request header will be used
|
2020-09-02 11:06:21 +00:00
|
|
|
HeaderType header_type = 1 [json_name = "HeaderType"];
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Match operation type
|
2020-08-11 09:03:50 +00:00
|
|
|
MatchType match_type = 2 [json_name = "MatchType"];
|
2020-07-08 07:22:07 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Name of the Header to use
|
2020-08-11 09:03:50 +00:00
|
|
|
string header_name = 3 [json_name="Name"];
|
2020-07-08 07:22:07 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Expected Header Value or pattern to match
|
2020-08-11 09:03:50 +00:00
|
|
|
string header_val = 4 [json_name="Value"];
|
|
|
|
}
|
2020-07-08 07:22:07 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// List of filters to match and see if rule is applicable
|
2020-09-02 11:06:21 +00:00
|
|
|
repeated Filter filters = 3 [json_name="Filters"];
|
2020-08-11 09:03:50 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Target to apply ACL rule. Can be a subject's role class or a list of public
|
|
|
|
// keys to match.
|
2020-09-02 11:06:21 +00:00
|
|
|
message Target {
|
2020-10-13 20:29:04 +00:00
|
|
|
// Target subject's role class
|
2020-09-02 11:06:21 +00:00
|
|
|
Role role = 1 [json_name="Role"];
|
2020-08-11 09:03:50 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// List of public keys to identify target subject
|
2020-08-11 09:03:50 +00:00
|
|
|
repeated bytes key_list = 2 [json_name="Keys"];
|
|
|
|
}
|
2020-10-13 20:29:04 +00:00
|
|
|
// List of target subjects to apply ACL rule to
|
2020-09-02 11:06:21 +00:00
|
|
|
repeated Target targets = 4 [json_name="Targets"];
|
2020-07-08 07:22:07 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Extended ACL rules table. Defined a list of ACL rules additionally to Basic
|
|
|
|
// ACL. Extended ACL rules can be attached to the container and can be updated
|
|
|
|
// or may be defined in `BearerToken` structure. Please see the corresponding
|
|
|
|
// NeoFS Technical Specification's section for detailed description.
|
2020-07-08 07:22:07 +00:00
|
|
|
message EACLTable {
|
2020-10-13 20:29:04 +00:00
|
|
|
// eACL format version. Effectively the version of API library used to create
|
|
|
|
// eACL Table.
|
2020-09-02 10:53:44 +00:00
|
|
|
neo.fs.v2.refs.Version version = 1;
|
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Identifier of the container that should use given access control rules
|
2020-09-02 10:53:44 +00:00
|
|
|
neo.fs.v2.refs.ContainerID container_id = 2 [json_name="ContainerID"];
|
2020-08-05 22:10:09 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// List of Extended ACL rules
|
2020-09-02 10:53:44 +00:00
|
|
|
repeated EACLRecord records = 3 [json_name="Records"];
|
2020-07-08 07:22:07 +00:00
|
|
|
}
|
2020-08-18 13:41:47 +00:00
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// BearerToken allows to attach signed Extended ACL rules to the request in
|
|
|
|
// `RequestMetaHeader`. If container's Basic ACL rules allow, the attached rule
|
|
|
|
// set will be checked instead of one attached to the container itself. Just
|
|
|
|
// like [JWT](https://jwt.io), it has a limited lifetime and scope, hence can be
|
|
|
|
// used in the similar use cases, like providing authorisation to externally
|
|
|
|
// authenticated party.
|
2020-08-18 13:41:47 +00:00
|
|
|
message BearerToken {
|
2020-10-13 20:29:04 +00:00
|
|
|
// Bearer Token body structure contains Extended ACL table issued by container
|
|
|
|
// owner with additional information preventing token's abuse.
|
2020-08-18 13:41:47 +00:00
|
|
|
message Body {
|
2020-10-13 20:29:04 +00:00
|
|
|
// Table of Extended ACL rules to use instead of the ones attached to the
|
|
|
|
// container
|
2020-08-18 13:41:47 +00:00
|
|
|
EACLTable eacl_table = 1;
|
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// `OwnerID` to whom the token was issued. MUST match with the request
|
|
|
|
// originator's `OwnerID`
|
2020-08-18 13:41:47 +00:00
|
|
|
neo.fs.v2.refs.OwnerID owner_id = 2;
|
|
|
|
|
2020-10-13 20:29:04 +00:00
|
|
|
// Lifetime parameters of the token. Filed names taken from
|
|
|
|
// [rfc7519](https://tools.ietf.org/html/rfc7519).
|
2020-08-18 13:41:47 +00:00
|
|
|
message TokenLifetime {
|
|
|
|
// Expiration Epoch
|
|
|
|
uint64 exp = 1;
|
|
|
|
|
|
|
|
// Not valid before Epoch
|
|
|
|
uint64 nbf = 2;
|
|
|
|
|
|
|
|
// Issued at Epoch
|
|
|
|
uint64 iat = 3;
|
|
|
|
}
|
|
|
|
// Token expiration and valid time period parameters
|
|
|
|
TokenLifetime lifetime = 3;
|
|
|
|
}
|
|
|
|
// Bearer Token body
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Signature of BearerToken body
|
|
|
|
neo.fs.v2.refs.Signature signature = 2;
|
|
|
|
}
|