From: Vladimir Davydov <vdavydov.dev@gmail.com> To: Serge Petrenko <sergepetrenko@tarantool.org> Cc: kostja@tarantool.org, tarantool-patches@freelists.org Subject: Re: [PATCH v2 3/4] Add single object privilege checks to access_check_ddl. Date: Wed, 22 Aug 2018 19:47:55 +0300 [thread overview] Message-ID: <20180822164755.6eomdsuptgluumc2@esperanza> (raw) In-Reply-To: <6d1b868fa068adbfd54b7af731cc311e33f101fd.1534944662.git.sergepetrenko@tarantool.org> On Wed, Aug 22, 2018 at 04:39:04PM +0300, Serge Petrenko wrote: > @@ -1862,3 +1877,173 @@ box.session.su('admin') > box.schema.user.drop('tester') > --- > ... > +-- > +-- test case for 3530: do not ignore single object privileges > +-- > +box.schema.user.create("test") > +--- > +... > +_ = box.schema.space.create("space1") > +--- > +... > +box.schema.user.grant("test", "read", "space", "space1") > +--- > +... > +box.schema.user.grant("test", "write", "space", "_index") > +--- > +... > +box.session.su("test") > +--- > +... > +box.space.space1:create_index("pk") > +--- > +- error: Create access to space 'space1' is denied for user 'test' > +... > +box.session.su("admin") > +--- > +... > +box.space.space1.index[0] == nil > +--- > +- true > +... > +-- fixme: cannot grant create on a single space > +-- this is because when checking for create > +-- access_check_ddl ignores space privileges, Please don't use code function names in tests - if they change (and they can), it'll be difficult to understand what this test is about. > +-- assuming that there is no space yet. I thought you fixed that in v2 by dropping PRIV_C check from access_check_ddl, no?
next prev parent reply other threads:[~2018-08-22 16:47 UTC|newest] Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-08-22 13:39 [PATCH v2 0/4] Finish implementation of privileges Serge Petrenko 2018-08-22 13:39 ` [PATCH v2 1/4] Introduce separate entity object types for entity privileges Serge Petrenko 2018-08-22 15:42 ` Serge Petrenko 2018-08-22 16:22 ` Vladimir Davydov 2018-08-22 13:39 ` [PATCH v2 2/4] Add entities user, role to access control Serge Petrenko 2018-08-22 16:36 ` Vladimir Davydov 2018-08-22 13:39 ` [PATCH v2 3/4] Add single object privilege checks to access_check_ddl Serge Petrenko 2018-08-22 16:47 ` Vladimir Davydov [this message] 2018-08-23 7:51 ` Serge Petrenko 2018-08-23 8:57 ` Vladimir Davydov 2018-08-22 13:39 ` [PATCH v2 4/4] Add a privilege upgrade script and update tests Serge Petrenko 2018-08-22 16:48 ` Vladimir Davydov 2018-08-23 7:54 ` Serge Petrenko
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=20180822164755.6eomdsuptgluumc2@esperanza \ --to=vdavydov.dev@gmail.com \ --cc=kostja@tarantool.org \ --cc=sergepetrenko@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [PATCH v2 3/4] Add single object privilege checks to access_check_ddl.' \ /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