[#21] Add container id into EACLTable message

EACLTable message and signature stored in blockchain storage.
If owner has several containers, malicious node can return
correct EACLTable of the container other than client actually
requested. With container id field in the EACLTable, this
malicious behaviour can be detected.

ContainerID has id 1, so contract can easily cut container id
from byte sequence.

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2020-07-31 16:51:35 +03:00 committed by Stanislav Bogatyrev
parent 6a2c66cbd8
commit 27171ef753

View file

@ -101,6 +101,8 @@ message EACLRecord {
// EACLRecord carries the information about extended ACL rules.
message EACLTable {
// ContainerID of the container that should use given access control rules.
bytes ContainerID = 1 [json_name="ContainerID"];
// Records carries list of extended ACL rule records.
repeated EACLRecord Records = 1 [json_name="Records"];
repeated EACLRecord Records = 2 [json_name="Records"];
}