Changes between Version 1 and Version 2 of TracFineGrainedPermissions


Ignore:
Timestamp:
Sep 2, 2019, 4:56:56 PM (5 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracFineGrainedPermissions

    v1 v2  
     1= Fine grained permissions
    12[[PageOutline(2-5, Contents, floated)]]
    2 = 粒度が細かいパーミッション = #Finegrainedpermissions
    3 
    4 Trac 0.11 より前は、リポジトリブラウザ サブシステムだけで「粒度が細かいパーミッション (fine grained permissions)」を定義することができました。
    5 
    6 0.11 以降、カスタマイズした **パーミッションポリシーのプラグイン** を各所に使用するための共通のメカニズムが導入されたので、すべての種類の Trac リソースのあらゆるアクションについて、そのリソースの特定バージョンのレベルまで含めて許可/拒否を設定できるようになりました。
    7 
    8 Note: Trac 0.12 では、 `authz_policy` はオプションモジュールとして実装されました( `tracopt.perm.authz_policy.*` 配下 ) 。したがって、デフォルトでインストールされ、 Trac の管理 Web インタフェースの //プラグイン// パネルで簡単に有効にすることができます。
    9 
    10 
    11 == パーミッションポリシー == #PermissionPolicies
    12 
    13 様々なパーミッションポリシーを実装することができます。 Trac にはいくつかの例を同梱しています。
    14 
    15 現在有効なポリシーは TracIni の中で設定されているコンフィグレーションによって決定します:
    16 
    17 {{{
    18 [trac]
    19 permission_policies = AuthzSourcePolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy
    20 }}}
    21 このリストの1番目の [#AuthzSourcePolicy] ポリシーについては、下記に記載しています。続く !DefaultPermissionPolicy では、 TracPermissions に記載されている従来型の粒度が粗いパーミッションチェックを行ないます。そして3番目の !LegacyAttachmentPolicy は添付ファイルに対して、粒度の粗いパーミッションチェックを行ないます。
    22 
    23 使用可能なオプションの選択肢として、 Authz 形式のシステムにてとても一般的なパーミッションポリシーを提供する [#AuthzPolicy] があります。
    24 詳細については、 [trac:source:branches/0.12-stable/tracopt/perm/authz_policy.py authz_policy.py] を参照して下さい。
    25 
    26 もう一つの評判のよいパーミッションポリシーである、 [#AuthzSourcePolicy] は pre-0.12 で再実装され、新しいシステムでは、 Subversion のリポジトリに限定して粒度の細かいパーミッション設定をサポートするようになりました。
    27 
    28 その他の例については、 [trac:source:branches/0.12-stable/sample-plugins/permissions sample-plugins/permissions] を参照して下さい。
    29 
    30 
    31 === !AuthzPolicy === #AuthzPolicy
    32 ==== 設定方法 ==== #Configuration
    33 * [http://www.voidspace.org.uk/python/configobj.html ConfigObj] をインストールする (0.12 でも必要)
    34 * authz_policy.py を plugins にコピーする  (Trac 0.11でのみ必要)
    35 * [http://swapoff.org/files/authzpolicy.conf authzpolicy.conf] ファイルを適当な場所 (望ましくは、 Web サーバ起動ユーザ以外が読み取りできないセキュアな領域) に配置する。ファイルに非ASCII文字が含まれる場合は UTF-8 で保存してください
    36 * `trac.ini` ファイルをアップデートする:
    37   1. `[trac]` セクションの [TracIni#trac-section permission_policies] を編集する
    38 {{{
    39 [trac]
    40 ...
    41 permission_policies = AuthzPolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy
    42 }}}
    43   1. 新規に `[authz_policy]` セクションを追加する
    44 {{{
     3[[TracGuideToc]]
     4
     5There is a general mechanism in place that allows custom **permission policies** to grant or deny any action on any Trac resource, or even specific versions of a resource.
     6
     7That mechanism is `AuthzPolicy`, an optional component in `tracopt.perm.authz_policy.*` which is not activated by default. It can be activated via the //Plugins// panel in the Trac administration module.
     8
     9See TracPermissions for a more general introduction to Trac permissions and permission policies.
     10
     11== Permission Policies
     12
     13A great diversity of permission policies can be implemented and Trac comes with a few examples.
     14
     15The active policies are determined by a [TracIni#trac-permission_policies-option configuration setting]:
     16
     17{{{#!ini
     18[trac]
     19permission_policies = DefaultWikiPolicy,
     20 DefaultTicketPolicy,
     21 DefaultPermissionPolicy,
     22 LegacyAttachmentPolicy
     23}}}
     24
     25* [#DefaultWikiPolicyandDefaultTicketPolicy DefaultWikiPolicy] controls readonly access to wiki pages.
     26* [#DefaultWikiPolicyandDefaultTicketPolicy DefaultTicketPolicy] provides elevated privileges in the ticket system for authenticated users.
     27* !DefaultPermissionPolicy checks for the traditional coarse-grained permissions described in TracPermissions.
     28* !LegacyAttachmentPolicy uses the coarse-grained permissions to check permissions on attachments.
     29
     30Among the optional choices, there is [#AuthzPolicy], a very generic permission policy, based on an Authz-style system. See
     31[trac:source:branches/1.4-stable/tracopt/perm/authz_policy.py authz_policy.py] for details.
     32
     33Another permission policy [#AuthzSourcePolicy], uses the [http://svnbook.red-bean.com/nightly/en/svn.serverconfig.pathbasedauthz.html path-based authorization] defined by Subversion to enforce permissions on the version control system.
     34
     35See also [trac:source:branches/1.4-stable/sample-plugins/permissions sample-plugins/permissions] for more examples.
     36
     37=== !AuthzPolicy
     38==== Configuration
     39* Put an empty conf file (`authzpolicy.conf`) in a secure location on the server, not readable by users other than the webuser. If the  file contains non-ASCII characters, the UTF-8 encoding should be used.
     40* Update your `trac.ini`:
     41  1. modify the [TracIni#trac-permission_policies-option permission_policies] option in the `[trac]` section:
     42{{{#!ini
     43[trac]
     44permission_policies = AuthzPolicy, DefaultWikiPolicy, DefaultTicketPolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy
     45}}}
     46  1. add a new `[authz_policy]` section and point the `authz_file` option to the conf file:
     47{{{#!ini
    4548[authz_policy]
    4649authz_file = /some/trac/env/conf/authzpolicy.conf
    4750}}}
    48   1. [/admin/general/plugin WebAdmin]でプラグインを有効にするか、 `[components]` のセクションを編集する
    49 {{{
     51  1. enable the plugin through [/admin/general/plugin WebAdmin] or by editing the `[components]` section:
     52{{{#!ini
    5053[components]
    51 ...
    52 # Trac 0.12
    5354tracopt.perm.authz_policy.* = enabled
    54 # for Trac 0.11 use this
    55 #authz_policy.* = enabled
    56 }}}
    57 
    58 
    59 ==== 使用方法 ==== #UsageNotes
    60 パーミッションポリシーを指定する順序はとても重要です。
    61 ポリシーは設定された順序で評価されます。
    62 
    63 個々のポリシーはパーミッションチェックに対して `True`, `False`, `None` を返します。 ポリシーが明示的にパーミッションを許可する場合は、 `True` を返します。明示的に拒否する場合は、 `False` を返します。そして、パーミッションを許可も拒否もできない場合、 `None` が返されます。
    64 
    65 Note: 戻り値が `None` の場合のみ、 ''次の'' パーミッションポリシーに問い合わせを行います。
    66 どのポリシーも明示的にパーミッションを許可しない場合、最終的な結果は `False` となります
    67 (つまり、権限なしとみなされます)。
    68 
    69 `authzpolicy.conf` は `.ini` スタイルの設定ファイルです:
    70 {{{
     55}}}
     56
     57==== Usage Notes
     58
     59Note the order in which permission policies are specified: policies are implemented in the sequence provided and therefore may override earlier policy specifications.
     60
     61A 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.
     62
     63NOTE: 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.
     64
     65The `authzpolicy.conf` file is a `.ini` style configuration file:
     66{{{#!ini
    7167[wiki:PrivatePage@*]
    7268john = WIKI_VIEW, !WIKI_MODIFY
     
    7470* =
    7571}}}
    76 * config ファイルの各セクションは Trac のリソース記述子との照合に用いる
    77   グローバルなパターンです。記述子は以下のような形式です:
     72* Each section of the config is a glob pattern used to match against a Trac resource descriptor. These descriptors are in the form:
    7873{{{
    7974<realm>:<id>@<version>[/<realm>:<id>@<version> ...]
    8075}}}
    81   リソースを親から子の順に、左から右へ記述します。不特定な
    82   コンポーネントがある場合は、 `*` で置き換えられます。バージョンのパターンが
    83   明示的に記されていなければ、すべてのバージョン (`@*`) が暗黙的に追加されます。
    84 
    85   例: WikiStart ページを照合する
    86 {{{
     76
     77Resources 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:
     78{{{#!ini
    8779[wiki:*]
    8880[wiki:WikiStart*]
     
    9183}}}
    9284
    93   例: WikiStart の 添付ファイル `wiki:WikiStart@117/attachment/FOO.JPG@*`
    94   を照合する
    95 {{{
     85Example: Match the attachment `wiki:WikiStart@117/attachment:FOO.JPG@*` on WikiStart:
     86{{{#!ini
    9687[wiki:*]
    9788[wiki:WikiStart*]
    9889[wiki:WikiStart@*]
    99 [wiki:WikiStart@*/attachment/*]
    100 [wiki:WikiStart@117/attachment/FOO.JPG]
    101 }}}
    102 
    103 * セクションは設定ファイルに書かれている '''順に''' 現在の Trac のリソース記述子に対して
    104   チェックされます。'''順番は重要です'''
    105 
    106 * 一度 セッションにマッチすれば、'''順に''' 現在のユーザ名がセッションの
    107   キー (ユーザ名) と照合されます
    108   * キー (ユーザ名) の前に `@` を付けると、グループとして処理されます
    109   * 値 (パーミッション) の前に `!` を付けると、そのパーミッションは
    110     拒否されます
    111 
    112   通常の Trac パーミッションのルールを適用していれば、ユーザ名は、 'anonymous', 'authenticated', <username>  '*' 等とマッチするはずです。 || '''Note:''' ユーザによって作成された (例えば、ブラウザ上から //管理 / 権限// (英語版では //Admin / Permissions//) の '権限グループの追加' (英語版では 'adding subjects to groups')) グループには使えません。詳細については [trac:#5648 #5648] を参照してください。 ||
    113 
    114 例えば、 `authz_file` が次の内容を含み:
    115 {{{
     90[wiki:WikiStart@*/attachment:*]
     91[wiki:WikiStart@117/attachment:FOO.JPG]
     92}}}
     93
     94* Sections are checked against the current Trac resource descriptor '''IN ORDER''' of appearance in the configuration file. '''ORDER IS CRITICAL'''.
     95
     96* Once a section matches, the current username is matched against the keys (usernames) of the section, '''IN ORDER'''.
     97  * If a key (username) is prefixed with a `@`, it is treated as a group.
     98  * If a value (permission) is prefixed with a `!`, the permission is denied rather than granted.
     99
     100The username will match any of 'anonymous', 'authenticated', <username> or '*', using normal Trac permission rules.
     101
     102|| '''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:#5648] for details about this missing feature. ||
     103
     104For example, if the `authz_file` contains:
     105{{{#!ini
    116106[wiki:WikiStart@*]
    117107* = WIKI_VIEW
     
    121111* = !WIKI_VIEW
    122112}}}
    123 デフォルトパーミッションが次のような内容の場合:
     113and the default permissions are set like this:
    124114{{{
    125115john           WIKI_VIEW
    126116jack           WIKI_VIEW
    127 # anonymous に WIKI_VIEW は付与されていない
    128 }}}
    129 
    130 結果:
    131   * WikiStart の全てのバージョンは、 (匿名ユーザも含む) 全員が閲覧できます
    132   * !PrivatePage は john が表示可能です
    133   * 他のページは john と jack が表示可能です
     117# anonymous has no WIKI_VIEW
     118}}}
     119
     120Then:
     121  * All versions of WikiStart will be viewable by everybody, including anonymous
     122  * !PrivatePage will be viewable only by john
     123  * other pages will be viewable only by john and jack
    134124
    135125Groups:
    136 {{{
     126{{{#!ini
    137127[groups]
    138128admins = john, jack
     
    149139}}}
    150140
    151 結果:
    152 - すべてのアクセスがブロックされます (ホワイトリストアプローチ)。しかし
    153 - admins グループはすべてにおいて TRAC_ADMIN 権限を取得しており、
    154 - devs グループは Wiki ページを閲覧可能です
    155 
    156 リポジトリの例 (閲覧ソースの詳細設定):
    157 {{{
    158 # 単一のリポジトリ:
     141Then:
     142- everything is blocked (whitelist approach), but
     143- admins get all TRAC_ADMIN everywhere and
     144- devs can view wiki pages.
     145
     146Some repository examples (Browse Source specific):
     147{{{#!ini
     148# A single repository:
    159149[repository:test_repo@*]
    160150john = BROWSER_VIEW, FILE_VIEW
    161 # John は test_repo に対して BROWSER_VIEW と FILE_VIEW の権限を持つ
    162 
    163 # すべてのリポジトリ:
     151# John has BROWSER_VIEW and FILE_VIEW for the entire test_repo
     152
     153# The default repository (requires Trac 1.0.2 or later):
     154[repository:@*]
     155john = BROWSER_VIEW, FILE_VIEW
     156# John has BROWSER_VIEW and FILE_VIEW for the entire default repository
     157
     158# All repositories:
    164159[repository:*@*]
    165 john = BROWSER_VIEW, FILE_VIEW
    166 # John はすべてのリポジトリに対して BROWSER_VIEW と FILE_VIEW の権限を持つ
    167 }}}
    168 
    169 より詳細なリポジトリのアクセス許可:
    170 {{{
    171 # John は  trunk/src/some/location/ へアクセスする場合のみ、BROWSER_VIEW と FILE_VIEW の権限を持つ
     160jack = BROWSER_VIEW, FILE_VIEW
     161# Jack has BROWSER_VIEW and FILE_VIEW for all repositories
     162}}}
     163
     164Very granular repository access:
     165{{{#!ini
     166# John has BROWSER_VIEW and FILE_VIEW access to trunk/src/some/location/ only
    172167[repository:test_repo@*/source:trunk/src/some/location/*@*]
    173168john = BROWSER_VIEW, FILE_VIEW
    174169
    175 
    176 # John は trunk/src/some/location のリビジョン 1 へアクセスする場合のみ、BROWSER_VIEW と FILE_VIEW の権限を持つ
     170# John has BROWSER_VIEW and FILE_VIEW access to only revision 1 of all files at trunk/src/some/location only
    177171[repository:test_repo@*/source:trunk/src/some/location/*@1]
    178172john = BROWSER_VIEW, FILE_VIEW
    179173
    180 
    181 # John は trunk/src/some/location の 'somefile' へアクセスする場合のみ、BROWSER_VIEW と FILE_VIEW の権限を持つ
     174# John has BROWSER_VIEW and FILE_VIEW access to all revisions of 'somefile' at trunk/src/some/location only
    182175[repository:test_repo@*/source:trunk/src/some/location/somefile@*]
    183176john = BROWSER_VIEW, FILE_VIEW
    184177
    185 
    186 # John は trunk/src/some/location のリビジョン 1 の 'somefile' へアクセスする場合のみ、BROWSER_VIEW と FILE_VIEW の権限を持つ
     178# John has BROWSER_VIEW and FILE_VIEW access to only revision 1 of 'somefile' at trunk/src/some/location only
    187179[repository:test_repo@*/source:trunk/src/some/location/somefile@1]
    188180john = BROWSER_VIEW, FILE_VIEW
    189181}}}
    190182
    191 Note: Timeline での通知を John に表示するためには、上記パーミッションリストに CHANGESET_VIEW を追加する必要があります。
    192 
    193 
    194 ==== 利用不可となる機能 ==== #MissingFeatures
    195 粒度が細かいパーミッションでは!DefaultPermissionPolicyで行っていたような (管理画面での) グループ機能は備わっていません ([trac:#9573 #9573], [trac:#5648 #5648] 参照)。パッチは一部利用可能です( [trac:#6680 #6680] にある authz_policy.2.patch を参照してください)
    196 
    197 利用不可となる機能:
    198 {{{
     183Note: In order for Timeline to work/visible for John, we must add CHANGESET_VIEW to the above permission list.
     184
     185==== Missing Features
     186Although possible with the !DefaultPermissionPolicy handling (see Admin panel), fine-grained permissions still miss those grouping features (see [trac:#9573], [trac:#5648]). Patches are partially available, see authz_policy.2.patch, part of [trac:ticket:6680 #6680].
     187
     188You cannot do the following:
     189{{{#!ini
    199190[groups]
    200191team1 = a, b, c
     
    204195}}}
    205196
    206 パーミッショングループも同様にサポートされていません。下記のことができません:
    207 {{{
     197Permission groups are not supported either, so you cannot do the following:
     198{{{#!ini
    208199[groups]
    209200permission_level_1 = WIKI_VIEW, TICKET_VIEW
     
    215206}}}
    216207
    217 === !AuthzSourcePolicy  (mod_authz_svn のようなパーミッションポリシー) === #AuthzSourcePolicy
    218 
    219 この文書が書かれている時点では、 Trac 0.11 以前にリポジトリへの厳密なアクセス制御に使用されていた、古い「粒度が細かいパーミッション」システムは、パーミッションポリシーのコンポーネントにコンバートされました。しかし、ユーザの視点では、実現できる機能に大きな違いはありません。
    220 
    221 「粒度が細かいパーミッション」の制御に定義ファイルを必要とします。この定義ファイルは Subversion の mod_authz_svn で使用しているものを使います。
    222 このファイルの形式と Subversion での用法に関する情報は、 svn book の Server Configuration (サーバ設定) の章にある [http://svnbook.red-bean.com/en/1.5/svn.serverconfig.pathbasedauthz.html Path-Based Authorization (ディレクトリごとのアクセス制御)] の項を参照してください。
    223 
    224 例:
    225 {{{
     208=== !AuthzSourcePolicy  (`mod_authz_svn`-like permission policy) #AuthzSourcePolicy
     209
     210`AuthzSourcePolicy` can be used for restricting access to the repository. Granular permission control needs a definition file, which is the one used by Subversion's `mod_authz_svn`.
     211More information about this file format and about its usage in Subversion is available in the [http://svnbook.red-bean.com/en/1.7/svn.serverconfig.pathbasedauthz.html Path-Based Authorization] section in the Server Configuration chapter of the svn book.
     212
     213Example:
     214{{{#!ini
    226215[/]
    227216* = r
     
    235224}}}
    236225
    237  * '''/''' = ''全員 read アクセスが可能です。これはデフォルトの動作となります''
    238  * '''/branches/calc/bug-142''' = ''harry は read/write アクセス権を持ち、 sally は read アクセス権のみを持ちます''
    239  * '''/branches/calc/bug-142/secret''' = ''harry はアクセス権を持たず、 sally は read アクセス権を持ちます (パーミッションはサブフォルダに継承されます)''
    240 
    241 ==== Trac の設定 ==== #TracConfiguration
    242 
    243 「粒度が細かいパーミッション」を有効にするには、 trac.ini ファイルの {{{[trac]}}} セクションに {{{authz_file}}} オプションを __設定しなければなりません__ 。オプションが空値に設定されていたり、そもそも指定されていない場合、パーミッションは適用されません。
    244 
    245 {{{
    246 [trac]
     226 * '''/''' = ''Everyone has read access by default''
     227 * '''/branches/calc/bug-142''' = ''harry has read/write access, sally read only''
     228 * '''/branches/calc/bug-142/secret''' = ''harry has no access, sally has read access (inherited as a sub folder permission)''
     229
     230==== Trac Configuration
     231
     232To 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.
     233
     234{{{#!ini
     235[svn]
    247236authz_file = /path/to/svnaccessfile
    248237}}}
    249238
    250 `auth_file` 内でシンタックス `[`''modulename''`:/`''some''`/`''path''`]` を使用する場合、以下の設定を追加してください:
    251 
    252 {{{
     239If you want to support the use of the `[`''modulename''`:/`''some''`/`''path''`]` syntax within the `authz_file`, add:
     240
     241{{{#!ini
    253242authz_module_name = modulename
    254243}}}
    255244
    256 ''modulename'' には、 `[trac]` セクション中の `repository_dir` に設定したリポジトリと同じものを設定します。例えば `[trac]` セクション内の `repository_dir` に {{{/srv/active/svn/blahblah}}} を設定している場合は次のように設定します:
    257 
    258 {{{
    259 [trac]
     245where ''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:
     246
     247{{{ #!ini
     248[svn]
    260249authz_file = /path/to/svnaccessfile
    261 authz_module_name = blahblah
     250authz_module_name = somemodule
    262251...
    263 repository_dir = /srv/active/svn/blahblah
    264 }}}
    265 
    266 Subversion の Authz ファイル {{{/path/to/svnaccessfile}}} では、 {{{[blahblah:/some/path]}}} のようにエントリを記載します。
    267 
    268 '''Note:''' Authz ファイルで使用するユーザ名と、 Trac で使用するユーザ名は __同じでなければなりません__。
    269 
    270 0.12 では、 trac.ini の permission_policies に ''!AuthzSourcePolicy'' を必ず含めて下さい。さもないと、 authz のパーミッションファイルは無視されます。
    271 
    272 {{{
    273 [trac]
    274 permission_policies = AuthzSourcePolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy
    275 }}}
    276 
    277 ==== Subversion の設定 ==== #SubversionConfiguration
    278 
    279 通常は同じアクセスファイルを対応する Subversion リポジトリに適用します。 Apache のディレクティブには以下のように設定してください:
    280 {{{
     252[repositories]
     253somemodule.dir = /srv/active/svn/somemodule
     254}}}
     255
     256where the svn access file, {{{/path/to/svnaccessfile}}}, contains entries such as {{{[somemodule:/some/path]}}}.
     257
     258'''Note:''' Usernames inside the Authz file __must__ be the same as those used inside trac.
     259
     260Make sure you have ''!AuthzSourcePolicy'' included in the permission_policies list in trac.ini, otherwise the authz permissions file will be ignored.
     261
     262{{{#!ini
     263[trac]
     264permission_policies = AuthzSourcePolicy, DefaultWikiPolicy, DefaultTicketPolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy
     265}}}
     266
     267==== Subversion Configuration
     268
     269The same access file is typically applied to the corresponding Subversion repository using an Apache directive like this:
     270{{{#!apache
    281271<Location /repos>
    282272  DAV svn
     
    288278}}}
    289279
    290 複数のプロジェクト Environment において、プロジェクト全体にどのようにアクセス制限を行うかについての情報は [trac:TracMultipleProjectsSVNAccess] を参照してください。
    291 
    292 == デバッグ用パーミッション #DebuggingPermissions
    293 trac.ini の設定:
    294 {{{
     280For information about how to restrict access to entire projects in a multiple project environment see [trac:wiki:TracMultipleProjectsSVNAccess].
     281
     282=== !DefaultWikiPolicy and !DefaultTicketPolicy
     283
     284Since 1.1.2, the read-only attribute of wiki pages is enabled and enforced when `DefaultWikiPolicy` is in the list of active permission policies (`DefaultWikiPolicy` was named `ReadonlyWikiPolicy` from Trac 1.1.2 to 1.3.1). The default for new Trac installations in 1.3.2 and later is:
     285{{{#!ini
     286[trac]
     287permission_policies = DefaultWikiPolicy,
     288 DefaultTicketPolicy,
     289 DefaultPermissionPolicy,
     290 LegacyAttachmentPolicy
     291}}}
     292
     293`DefaultWikiPolicy` 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, which causes the next permission policy in the list to be consulted.
     294
     295Since 1.3.2 `DefaultTicketPolicy` implements the following behaviors:
     296* Authenticated user can edit their own comments.
     297* Authenticated user with `TICKET_APPEND` or `TICKET_CHGPROP` can modify the description of a ticket they reported.
     298* User with `MILESTONE_VIEW` can change  the ticket milestone.
     299
     300The wiki- and ticket-specific behaviors are implemented in permission policies so they can be easily replaced in case other behavior is desired.
     301
     302When upgrading from earlier versions of Trac, `DefaultWikiPolicy, DefaultTicketPolicy` will be appended to the list of `permission_policies` when upgrading the environment, provided that `permission_policies` has the default value (`ReadonlyWikiPolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy` if upgrading from Trac 1.1.2 or later). If any non-default `permission_polices` are active, `DefaultWikiPolicy, DefaultTicketPolicy` **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.
     303
     304**!DefaultWikiPolicy and !DefaultTicketPolicy 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. Similarly, some of the behaviors implemented in `DefaultTicketPolicy` won't be considered if `DefaultPermissionPolicy` is executed first.
     305
     306When active, the [#AuthzPolicy] should therefore come before `DefaultWikiPolicy, DefaultTicketPolicy`, allowing it to grant or deny the actions on individual resources, which is the usual ordering for `AuthzPolicy` in the `permission_policies` list.
     307{{{#!ini
     308[trac]
     309permission_policies = AuthzPolicy,
     310 DefaultWikiPolicy,
     311 DefaultTicketPolicy,
     312 DefaultPermissionPolicy,
     313 LegacyAttachmentPolicy
     314}}}
     315
     316The placement of [#AuthzSourcePolicy] relative to `DefaultWikiPolicy, DefaultTicketPolicy` does not matter since they don't perform checks on the same realms.
     317
     318For all other permission policies, the user will need to decide the proper ordering. Generally, if the permission policy should be capable of overriding the checks performed by `DefaultWikiPolicy` or `DefaultTicketPolicy`, it should come before the policy it overrides. If `DefaultWikiPolicy` or `DefaultTicketPolicy` should override the check performed by another permission policy, as is the case for those policies relative to `DefaultPermissionPolicy`, then the overriding policy should come first.
     319
     320== Debugging permissions
     321In trac.ini set:
     322{{{#!ini
    295323[logging]
    296324log_file = trac.log
     
    299327}}}
    300328
    301 ウォッチコマンド:
    302 {{{
     329Display the trac.log to understand what checks are being performed:
     330{{{#!sh
    303331tail -n 0 -f log/trac.log | egrep '\[perm\]|\[authz_policy\]'
    304332}}}
    305333
    306 どんなチェックが行なわれているか見ることができます。より詳細な情報については、プラグインのソースに添付されているドキュメントを参照して下さい。
    307 
     334See the sourced documentation of the plugin for more info.
    308335
    309336----
    310337See also: TracPermissions,
    311 [http://trac-hacks.org/wiki/FineGrainedPageAuthzEditorPlugin TracHacks:FineGrainedPageAuthzEditorPlugin] は設定を編集するプラグインです。
     338[http://trac-hacks.org/wiki/FineGrainedPageAuthzEditorPlugin FineGrainedPageAuthzEditorPlugin] for a simple editor.