~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/administration/authorization.rst

  • Committer: Mark Atwood
  • Date: 2011-11-15 04:19:11 UTC
  • mfrom: (2457.1.1 drizzle-docs71-2)
  • Revision ID: me@mark.atwood.name-20111115041911-mwcqz8tvfze0sgbo
lp:~hingo/drizzle/7.1-docs-reviewfixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
=============
3
3
 
4
4
Authorization is finding out if the person, once identified, is permitted to
5
 
have the resource. [1]_  Drizzle authorization is handled by plugins; there
6
 
are no grant or privilege tables.
 
5
have the resource. [1]_  
 
6
 
 
7
Drizzle authorization is handled by plugins. There is no single
 
8
source where users or access rights are defined, such as a system user table, 
 
9
but each auhtorization plugin will use different sources to define or store
 
10
access rights. By default no authorization plugin is loaded, this means that
 
11
any logged in user is authorized to access all database objects and do anything
 
12
he wants (everyone is super user).
7
13
 
8
14
The following authorization plugins are included with Drizzle:
9
15
 
10
 
* :doc:`/plugins/regex_policy/index`
11
 
* :doc:`/plugins/simple_user_policy/index`
 
16
* :doc:`/plugins/regex_policy/index` - ALLOW or REJECT access by matching a regular expression against the table name.
 
17
* :doc:`/plugins/simple_user_policy/index` - Allow a user to only access a schema that matches their username.
 
18
 
 
19
Limitations
 
20
-----------
 
21
 
 
22
At the moment there doesn't exist a plugin which would implement anything 
 
23
resembling the traditional SQL standard GRANT and REVOKE type of authorization.
 
24
You are invited to share your opinion on whether that level of authorization
 
25
control is necessary in a modern database.
 
26
 
 
27
Note that at the moment there also is no plugin that would distinguish between
 
28
read and write operations, rather access is always granted to schemas and tables
 
29
in an all or nothing fashion.
12
30
 
13
31
-------------------------------------------------------------------------------
14
32