@@ -6,119 +6,119 @@ There is a general mechanism in place that allows custom **permission policy plu
...
@@ -6,119 +6,119 @@ There is a general mechanism in place that allows custom **permission policy plu
That mechanism is `authz_policy`, which is an optional module in `tracopt.perm.authz_policy.*`, so it is installed by default. It can be activated via the //Plugins// panel in the Trac administration module.
That mechanism is `authz_policy`, which is an optional module in `tracopt.perm.authz_policy.*`, so it is installed by default. It can be activated via the //Plugins// panel in the Trac administration module.
== Permission Policies ==
## Permission Policies
A great diversity of permission policies can be implemented and Trac comes with a few examples.
A great diversity of permission policies can be implemented and Trac comes with a few examples.
Which policies are currently active is determined by a configuration setting in TracIni:
Which policies are currently active is determined by a configuration setting in TracIni:
This lists the [#ReadonlyWikiPolicy] which controls readonly access to wiki pages, followed by the !DefaultPermissionPolicy which checks for the traditional coarse grained style permissions described in TracPermissions, and the !LegacyAttachmentPolicy which knows how to use the coarse grained permissions for checking the permissions available on attachments.
This lists the [#ReadonlyWikiPolicy] which controls readonly access to wiki pages, followed by the DefaultPermissionPolicy which checks for the traditional coarse grained style permissions described in TracPermissions, and the LegacyAttachmentPolicy which knows how to use the coarse grained permissions for checking the permissions available on attachments.
Among the optional choices, there is [#AuthzPolicy], a very generic permission policy, based on an Authz-style system. See
Among the optional choices, there is [#AuthzPolicy], a very generic permission policy, based on an Authz-style system. See
[trac:source:branches/1.0-stable/tracopt/perm/authz_policy.py authz_policy.py] for details.
[trac:[branches/1.0-stable/tracopt/perm/authz_policy.py](branches/1.0-stable/tracopt/perm/authz_policy.py) authz_policy.py] for details.
Another popular permission policy [#AuthzSourcePolicy], re-implements the pre-0.12 support for checking fine-grained permissions limited to Subversion repositories in terms of the new system.
Another popular permission policy [#AuthzSourcePolicy], re-implements the pre-0.12 support for checking fine-grained permissions limited to Subversion repositories in terms of the new system.
See also [trac:source:branches/1.0-stable/sample-plugins/permissions sample-plugins/permissions] for more examples.
See also [trac:[branches/1.0-stable/sample-plugins/permissions](branches/1.0-stable/sample-plugins/permissions) sample-plugins/permissions] for more examples.
=== !AuthzPolicy ===
=== AuthzPolicy ===
==== Configuration ====
#### Configuration
* Put a [http://swapoff.org/files/authzpolicy.conf authzpolicy.conf] file somewhere, preferably on a secured location on the server, not readable for others than the webuser. If the file contains non-ASCII characters, the UTF-8 encoding should be used.
* Put a [authzpolicy.conf](http://swapoff.org/files/authzpolicy.conf) file somewhere, preferably on a secured location on the server, not readable for others than the webuser. If the file contains non-ASCII characters, the UTF-8 encoding should be used.
* Update your `trac.ini`:
* Update your `trac.ini`:
1. modify the [TracIni#trac-section permission_policies] entry in the `[trac]` section:
1. modify the [TracIni#trac-section permission_policies] entry in the `[trac]` section:
1. enable the plugin through [/admin/general/plugin WebAdmin] or by editing the `[components]` section:
1. enable the plugin through [/admin/general/plugin WebAdmin] or by editing the `[components]` section:
{{{#!ini
```
[components]
[components]
tracopt.perm.authz_policy.* = enabled
tracopt.perm.authz_policy.* = enabled
}}}
```
==== Usage Notes ====
#### Usage Notes
Note the order in which permission policies are specified: policies are implemented in the sequence provided and therefore may override earlier policy specifications.
Note the order in which permission policies are specified: policies are implemented in the sequence provided and therefore may override earlier policy specifications.
A policy will return either `True`, `False` or `None` for a given permission check. `True` is returned if the policy explicitly grants the permission. `False` is returned if the policy explicitly denies the permission. `None` is returned if the policy is unable to either grant or deny the permission.
A policy will return either `True`, `False` or `None` for a given permission check. `True` is returned if the policy explicitly grants the permission. `False` is returned if the policy explicitly denies the permission. `None` is returned if the policy is unable to either grant or deny the permission.
NOTE: Only if the return value is `None` will the ''next'' permission policy be consulted. If none of the policies explicitly grants the permission, the final result will be `False`, i.e. permission denied.
NOTE: Only if the return value is `None` will the _next_ permission policy be consulted. If none of the policies explicitly grants the permission, the final result will be `False`, i.e. permission denied.
The `authzpolicy.conf` file is a `.ini` style configuration file:
The `authzpolicy.conf` file is a `.ini` style configuration file:
{{{#!ini
```
[wiki:PrivatePage@*]
[PrivatePage@*](PrivatePage@*)
john = WIKI_VIEW, !WIKI_MODIFY
john = WIKI_VIEW, !WIKI_MODIFY
jack = WIKI_VIEW
jack = WIKI_VIEW
* =
* =
}}}
```
* Each section of the config is a glob pattern used to match against a Trac resource descriptor. These descriptors are in the form:
* Each section of the config is a glob pattern used to match against a Trac resource descriptor. These descriptors are in the form:
Resources are ordered left to right, from parent to child. If any component is inapplicable, `*` is substituted. If the version pattern is not specified explicitly, all versions (`@*`) is added implicitly. Example: Match the WikiStart page:
Resources are ordered left to right, from parent to child. If any component is inapplicable, `*` is substituted. If the version pattern is not specified explicitly, all versions (`@*`) is added implicitly. Example: Match the WikiStart page:
{{{#!ini
```
[wiki:*]
[*](*)
[wiki:WikiStart*]
[WikiStart*](WikiStart*)
[wiki:WikiStart@*]
[WikiStart@*](WikiStart@*)
[wiki:WikiStart]
[WikiStart](WikiStart)
}}}
```
Example: Match the attachment `wiki:WikiStart@117/attachment:FOO.JPG@*` on WikiStart:
Example: Match the attachment `wiki:WikiStart@117/[FOO.JPG@*`](None/FOO.JPG@*`) on WikiStart:
* Sections are checked against the current Trac resource descriptor '''IN ORDER''' of appearance in the configuration file. '''ORDER IS CRITICAL'''.
* Sections are checked against the current Trac resource descriptor **IN ORDER** of appearance in the configuration file. **ORDER IS CRITICAL**.
* Once a section matches, the current username is matched against the keys (usernames) of the section, '''IN ORDER'''.
* Once a section matches, the current username is matched against the keys (usernames) of the section, **IN ORDER**.
* If a key (username) is prefixed with a `@`, it is treated as a group.
* If a key (username) is prefixed with a `@`, it is treated as a group.
* If a value (permission) is prefixed with a `!`, the permission is denied rather than granted.
* If a value (permission) is prefixed with a `!`, the permission is denied rather than granted.
The username will match any of 'anonymous', 'authenticated', <username> or '*', using normal Trac permission rules. || '''Note:''' Other groups which are created by user (e.g. by 'adding subjects to groups' on web interface page //Admin / Permissions//) cannot be used. See [trac:ticket:5648 #5648] for details about this missing feature. ||
The username will match any of 'anonymous', 'authenticated', <username> or '*', using normal Trac permission rules. || **Note:** Other groups which are created by user (e.g. by 'adding subjects to groups' on web interface page //Admin / Permissions//) cannot be used. See [trac:ticket:5648 #5648] for details about this missing feature. ||
For example, if the `authz_file` contains:
For example, if the `authz_file` contains:
{{{#!ini
```
[wiki:WikiStart@*]
[WikiStart@*](WikiStart@*)
* = WIKI_VIEW
* = WIKI_VIEW
[wiki:PrivatePage@*]
[PrivatePage@*](PrivatePage@*)
john = WIKI_VIEW
john = WIKI_VIEW
* = !WIKI_VIEW
* = !WIKI_VIEW
}}}
```
and the default permissions are set like this:
and the default permissions are set like this:
{{{
```
john WIKI_VIEW
john WIKI_VIEW
jack WIKI_VIEW
jack WIKI_VIEW
# anonymous has no WIKI_VIEW
# anonymous has no WIKI_VIEW
}}}
```
Then:
Then:
* All versions of WikiStart will be viewable by everybody, including anonymous
* All versions of WikiStart will be viewable by everybody, including anonymous
*!PrivatePage will be viewable only by john
* PrivatePage will be viewable only by john
* other pages will be viewable only by john and jack
* other pages will be viewable only by john and jack
Groups:
Groups:
{{{#!ini
```
[groups]
[groups]
admins = john, jack
admins = john, jack
devs = alice, bob
devs = alice, bob
[wiki:Dev@*]
[Dev@*](Dev@*)
@admins = TRAC_ADMIN
@admins = TRAC_ADMIN
@devs = WIKI_VIEW
@devs = WIKI_VIEW
* =
* =
...
@@ -126,7 +126,7 @@ devs = alice, bob
...
@@ -126,7 +126,7 @@ devs = alice, bob
[*]
[*]
@admins = TRAC_ADMIN
@admins = TRAC_ADMIN
* =
* =
}}}
```
Then:
Then:
- everything is blocked (whitelist approach), but
- everything is blocked (whitelist approach), but
...
@@ -134,7 +134,7 @@ Then:
...
@@ -134,7 +134,7 @@ Then:
- devs can view wiki pages.
- devs can view wiki pages.
Some repository examples (Browse Source specific):
Some repository examples (Browse Source specific):
{{{#!ini
```
# A single repository:
# A single repository:
[repository:test_repo@*]
[repository:test_repo@*]
john = BROWSER_VIEW, FILE_VIEW
john = BROWSER_VIEW, FILE_VIEW
...
@@ -149,43 +149,43 @@ john = BROWSER_VIEW, FILE_VIEW
...
@@ -149,43 +149,43 @@ john = BROWSER_VIEW, FILE_VIEW
[repository:*@*]
[repository:*@*]
jack = BROWSER_VIEW, FILE_VIEW
jack = BROWSER_VIEW, FILE_VIEW
# Jack has BROWSER_VIEW and FILE_VIEW for all repositories
# Jack has BROWSER_VIEW and FILE_VIEW for all repositories
}}}
```
Very granular repository access:
Very granular repository access:
{{{#!ini
```
# John has BROWSER_VIEW and FILE_VIEW access to trunk/src/some/location/ only
# John has BROWSER_VIEW and FILE_VIEW access to trunk/src/some/location/ only
Note: In order for Timeline to work/visible for John, we must add CHANGESET_VIEW to the above permission list.
Note: In order for Timeline to work/visible for John, we must add CHANGESET_VIEW to the above permission list.
==== Missing Features ====
#### Missing Features
Although possible with the !DefaultPermissionPolicy handling (see Admin panel), fine-grained permissions still miss those grouping features (see [trac:ticket:9573 #9573], [trac:ticket:5648 #5648]). Patches are partially available, see authz_policy.2.patch, part of [trac:ticket:6680 #6680].
Although possible with the DefaultPermissionPolicy handling (see Admin panel), fine-grained permissions still miss those grouping features (see [trac:ticket:9573 #9573], [trac:ticket:5648 #5648]). Patches are partially available, see authz_policy.2.patch, part of [trac:ticket:6680 #6680].
You cannot do the following:
You cannot do the following:
{{{#!ini
```
[groups]
[groups]
team1 = a, b, c
team1 = a, b, c
team2 = d, e, f
team2 = d, e, f
team3 = g, h, i
team3 = g, h, i
departmentA = team1, team2
departmentA = team1, team2
}}}
```
Permission groups are not supported either, so you cannot do the following:
Permission groups are not supported either, so you cannot do the following:
At the time of this writing, the old granular permissions system from Trac 0.11 and before used for restricting access to the repository has been converted to a permission policy component. But from the user's point of view, this makes little if any difference.
At the time of this writing, the old granular permissions system from Trac 0.11 and before used for restricting access to the repository has been converted to a permission policy component. But from the user's point of view, this makes little if any difference.
That kind of granular permission control needs a definition file, which is the one used by Subversion's mod_authz_svn.
That kind of granular permission control needs a definition file, which is the one used by Subversion's mod_authz_svn.
More information about this file format and about its usage in Subversion is available in the [http://svnbook.red-bean.com/en/1.5/svn.serverconfig.pathbasedauthz.html Path-Based Authorization] section in the Server Configuration chapter of the svn book.
More information about this file format and about its usage in Subversion is available in the [Path-Based Authorization](http://svnbook.red-bean.com/en/1.5/svn.serverconfig.pathbasedauthz.html) section in the Server Configuration chapter of the svn book.
Example:
Example:
{{{#!ini
```
[/]
[/]
* = r
* = r
...
@@ -213,28 +213,28 @@ sally = r
...
@@ -213,28 +213,28 @@ sally = r
[/branches/calc/bug-142/secret]
[/branches/calc/bug-142/secret]
harry =
harry =
}}}
```
*'''/''' = ''Everyone has read access by default''
* **/** = _Everyone has read access by default_
*'''/branches/calc/bug-142''' = ''harry has read/write access, sally read only''
* **/branches/calc/bug-142** = _harry has read/write access, sally read only_
*'''/branches/calc/bug-142/secret''' = ''harry has no access, sally has read access (inherited as a sub folder permission)''
* **/branches/calc/bug-142/secret** = _harry has no access, sally has read access (inherited as a sub folder permission)_
==== Trac Configuration ====
#### Trac Configuration
To activate granular permissions you __must__ specify the {{{authz_file}}} option in the `[svn]` section of trac.ini. If this option is set to null or not specified, the permissions will not be used.
To activate granular permissions you __must__ specify the `authz_file` option in the `[svn]` section of trac.ini. If this option is set to null or not specified, the permissions will not be used.
{{{#!ini
```
[svn]
[svn]
authz_file = /path/to/svnaccessfile
authz_file = /path/to/svnaccessfile
}}}
```
If you want to support the use of the `[`''modulename''`:/`''some''`/`''path''`]` syntax within the `authz_file`, add:
If you want to support the use of the `[`_modulename_`:/`_some_`/`_path_`]` syntax within the `authz_file`, add:
{{{#!ini
```
authz_module_name = modulename
authz_module_name = modulename
}}}
```
where ''modulename'' refers to the same repository indicated by the `<name>.dir` entry in the `[repositories]` section. As an example, if the `somemodule.dir` entry in the `[repositories]` section is `/srv/active/svn/somemodule`, that would yield the following:
where _modulename_ refers to the same repository indicated by the `<name>.dir` entry in the `[repositories]` section. As an example, if the `somemodule.dir` entry in the `[repositories]` section is `/srv/active/svn/somemodule`, that would yield the following:
where the svn access file, {{{/path/to/svnaccessfile}}}, contains entries such as {{{[somemodule:/some/path]}}}.
where the svn access file, `/path/to/svnaccessfile`, contains entries such as `[somemodule:/some/path]`.
'''Note:''' Usernames inside the Authz file __must__ be the same as those used inside trac.
**Note:** Usernames inside the Authz file __must__ be the same as those used inside trac.
As of version 0.12, make sure you have ''!AuthzSourcePolicy'' included in the permission_policies list in trac.ini, otherwise the authz permissions file will be ignored.
As of version 0.12, make sure you have _AuthzSourcePolicy_ included in the permission_policies list in trac.ini, otherwise the authz permissions file will be ignored.
The same access file is typically applied to the corresponding Subversion repository using an Apache directive like this:
The same access file is typically applied to the corresponding Subversion repository using an Apache directive like this:
{{{#!apache
```
<Location /repos>
<Location /repos>
DAV svn
DAV svn
SVNParentPath /usr/local/svn
SVNParentPath /usr/local/svn
...
@@ -267,34 +267,34 @@ The same access file is typically applied to the corresponding Subversion reposi
...
@@ -267,34 +267,34 @@ The same access file is typically applied to the corresponding Subversion reposi
# our access control policy
# our access control policy
AuthzSVNAccessFile /path/to/svnaccessfile
AuthzSVNAccessFile /path/to/svnaccessfile
</Location>
</Location>
}}}
```
For information about how to restrict access to entire projects in a multiple project environment see [trac:wiki:TracMultipleProjectsSVNAccess].
For information about how to restrict access to entire projects in a multiple project environment see [trac:wiki:TracMultipleProjectsSVNAccess].
=== ReadonlyWikiPolicy
=== ReadonlyWikiPolicy
Since 1.1.2, the read-only attribute of wiki pages is enabled and enforced when `ReadonlyWikiPolicy` is in the list of active permission policies. The default for new Trac installations in 1.1.2 and later is:
Since 1.1.2, the read-only attribute of wiki pages is enabled and enforced when `ReadonlyWikiPolicy` is in the list of active permission policies. The default for new Trac installations in 1.1.2 and later is:
{{{
```
[trac]
[trac]
permission_policies = ReadonlyWikiPolicy,
permission_policies = ReadonlyWikiPolicy,
DefaultPermissionPolicy,
DefaultPermissionPolicy,
LegacyAttachmentPolicy
LegacyAttachmentPolicy
}}}
```
When upgrading from earlier versions of Trac, `ReadonlyWikiPolicy` will be appended to the list of `permission_policies` when upgrading the environment, provided that `permission_policies` has the default value. If any non-default `permission_polices` are active, `ReadonlyWikiPolicy` **will need to be manually added** to the list. A message will be echoed to the console when upgrading the environment, indicating if any action needs to be taken.
When upgrading from earlier versions of Trac, `ReadonlyWikiPolicy` will be appended to the list of `permission_policies` when upgrading the environment, provided that `permission_policies` has the default value. If any non-default `permission_polices` are active, `ReadonlyWikiPolicy` **will need to be manually added** to the list. A message will be echoed to the console when upgrading the environment, indicating if any action needs to be taken.
**!ReadonlyWikiPolicy must be listed //before// !DefaultPermissionPolicy**. The latter returns `True` to allow modify, delete or rename actions when the user has the respective `WIKI_*` permission, without consideration for the read-only attribute.
**ReadonlyWikiPolicy must be listed //before// DefaultPermissionPolicy**. The latter returns `True` to allow modify, delete or rename actions when the user has the respective `WIKI_*` permission, without consideration for the read-only attribute.
The `ReadonlyWikiPolicy` returns `False` to deny modify, delete and rename actions on wiki pages when the page has the read-only attribute set and the user does not have `WIKI_ADMIN`, regardless of `WIKI_MODIFY`, `WIKI_DELETE` and `WIKI_RENAME` permissions. It returns `None` for all other cases.
The `ReadonlyWikiPolicy` returns `False` to deny modify, delete and rename actions on wiki pages when the page has the read-only attribute set and the user does not have `WIKI_ADMIN`, regardless of `WIKI_MODIFY`, `WIKI_DELETE` and `WIKI_RENAME` permissions. It returns `None` for all other cases.
When active, the [#AuthzPolicy] should therefore come before `ReadonlyWikiPolicy`, allowing it to grant or deny the actions on individual resources, which is the usual ordering for `AuthzPolicy` in the `permission_policies` list.
When active, the [#AuthzPolicy] should therefore come before `ReadonlyWikiPolicy`, allowing it to grant or deny the actions on individual resources, which is the usual ordering for `AuthzPolicy` in the `permission_policies` list.
{{{
```
[trac]
[trac]
permission_policies = AuthzPolicy,
permission_policies = AuthzPolicy,
ReadonlyWikiPolicy,
ReadonlyWikiPolicy,
DefaultPermissionPolicy,
DefaultPermissionPolicy,
LegacyAttachmentPolicy
LegacyAttachmentPolicy
}}}
```
The placement of [#AuthzSourcePolicy] relative to `ReadonlyWikiPolicy` does not matter since they don't perform checks on the same realms.
The placement of [#AuthzSourcePolicy] relative to `ReadonlyWikiPolicy` does not matter since they don't perform checks on the same realms.
...
@@ -302,20 +302,20 @@ For all other permission policies, the user will need to decide the proper order
...
@@ -302,20 +302,20 @@ For all other permission policies, the user will need to decide the proper order
== Debugging permissions
== Debugging permissions
In trac.ini set:
In trac.ini set:
{{{#!ini
```
[logging]
[logging]
log_file = trac.log
log_file = trac.log
log_level = DEBUG
log_level = DEBUG
log_type = file
log_type = file
}}}
```
Display the trac.log to understand what checks are being performed:
Display the trac.log to understand what checks are being performed: