From: Konstantin Osipov <kostja@tarantool.org> To: tarantool-patches@freelists.org Cc: Georgy Kirichenko <georgy@tarantool.org> Subject: [tarantool-patches] Re: [PATCH 3/3] Introduce privileges for object groups Date: Fri, 8 Jun 2018 20:26:45 +0300 [thread overview] Message-ID: <20180608172645.GB6436@chai> (raw) In-Reply-To: <c59f7fd4b951ddca90db7ae04da6c75f40b111d4.1528448404.git.georgy@tarantool.org> * Georgy Kirichenko <georgy@tarantool.org> [18/06/08 12:11]: > Allow define access privileges for all spaces, functions and sequences. > Read and write privileges are supported for spaces, execute privilege > for sequences. Privilege granting and revoking might be done through old api > without object identification: > box.schema.user.grant("guest", "read", "space") The patch looks good, I don't understand though why we need it - I never asked for one. Does it have a documentation request? A few minor comments below. > > Prerequisite #945 > --- > src/box/alter.cc | 18 ++++++--- > src/box/call.c | 2 + > src/box/lua/schema.lua | 9 +++++ > src/box/schema.cc | 8 ++++ > src/box/schema.h | 26 +++++++++++++ > src/box/sequence.c | 1 + > src/box/space.c | 2 + > src/box/sysview_index.c | 11 ++++++ > src/box/user.cc | 12 ++++++ > test/box/access.result | 77 +++++++++++++++++++++++++++++++++++++ > test/box/access.test.lua | 29 ++++++++++++++ > test/box/lua/identifier.lua | 1 - > 12 files changed, 189 insertions(+), 7 deletions(-) > > diff --git a/src/box/call.c b/src/box/call.c > index 6388e1e68..8a43db130 100644 > --- a/src/box/call.c > +++ b/src/box/call.c > @@ -71,6 +71,8 @@ access_check_func(const char *name, uint32_t name_len, struct func **funcp) > return 0; > } > user_access_t access = PRIV_X | PRIV_U; > + /* Check access for all functions. */ > + access &= ~get_entity_access(SC_FUNCTION)[credentials->auth_token].effective; 1) Are you sure get_entity_access() is inlined? This is a hot path I would try to make it as fast as possible. 2) the name should be entity_access_get() or entity_access_find(). > @@ -295,6 +298,10 @@ vfunc_filter(struct space *source, struct tuple *tuple) > */ > if ((PRIV_WRDA | PRIV_X) & cr->universal_access) > return true; > + /* Allow access for a user with function privileges. */ > + if ((PRIV_WRDA | PRIV_X) & > + get_entity_access(SC_FUNCTION)[cr->auth_token].effective) > + return true; Perhaps we should have a variable for PRIV_WRDA | PRIV_X Please add a test case checking that granting entity access via role works. We also need a test case that revoking entity access works. The same is for revoking entity access granted via role. Thank you for working on it, -- Konstantin Osipov, Moscow, Russia, +7 903 626 22 32 http://tarantool.io - www.twitter.com/kostja_osipov
prev parent reply other threads:[~2018-06-08 17:26 UTC|newest] Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-06-08 9:06 [tarantool-patches] [PATCH 0/3] Object group privileges Georgy Kirichenko 2018-06-08 9:06 ` [tarantool-patches] [PATCH 1/3] box: Add privilleges constants to lua Georgy Kirichenko 2018-06-08 10:31 ` [tarantool-patches] " Vladislav Shpilevoy 2018-06-08 13:20 ` Konstantin Osipov 2018-06-08 9:06 ` [tarantool-patches] [PATCH 2/3] security: add limits on object_type-privilege pair Georgy Kirichenko 2018-06-08 14:01 ` [tarantool-patches] " Konstantin Osipov 2018-06-08 9:06 ` [tarantool-patches] [PATCH 3/3] Introduce privileges for object groups Georgy Kirichenko 2018-06-08 17:26 ` Konstantin Osipov [this message]
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20180608172645.GB6436@chai \ --to=kostja@tarantool.org \ --cc=georgy@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='[tarantool-patches] Re: [PATCH 3/3] Introduce privileges for object groups' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox