TracFineGrainedPermissionsバージョン 1バージョン 2 との変更


以下の違いを無視:
日時:
2015/05/27 0:24:03 (11年前)
更新者:
trac
コメント:

--

凡例:

変更なし
追加
削除
更新
  • TracFineGrainedPermissions

    v1 v2  
    11[[PageOutline(2-5, Contents, floated)]]
    2 = Fine grained permissions =
    3 
    4 Before Trac 0.11, it was only possible to define fine-grained permissions checks on the repository browser sub-system.
    5 
    6 Since 0.11, there's a general mechanism in place that allows custom **permission policy plugins** to grant or deny any action on any kind of Trac resources, even at the level of specific versions of such resources.
    7 
    8 Note that for Trac 0.12, `authz_policy` has been integrated as an optional module (in `tracopt.perm.authz_policy.*`), so it's installed by default and can simply be activated via the //Plugins// panel in the Trac administration module.
    9 
    10 
    11 == Permission Policies ==
    12 
    13 A great diversity of permission policies can be implemented, and Trac comes with a few examples.
    14 
    15 Which policies are currently active is determined by a configuration setting in TracIni:
    16 e.g.
     2= 粒度が細かいパーミッション = #Finegrainedpermissions
     3
     4Trac 0.11 より前は、リポジトリブラウザ サブシステムだけで「粒度が細かいパーミッション (fine grained permissions)」を定義することができました。
     5
     60.11 以降、カスタマイズした **パーミッションポリシーのプラグイン** を各所に使用するための共通のメカニズムが導入されたので、すべての種類の Trac リソースのあらゆるアクションについて、そのリソースの特定バージョンのレベルまで含めて許可/拒否を設定できるようになりました。
     7
     8Note: Trac 0.12 では、 `authz_policy` はオプションモジュールとして実装されました( `tracopt.perm.authz_policy.*` 配下 ) 。したがって、デフォルトでインストールされ、 Trac の管理 Web インタフェースの //プラグイン// パネルで簡単に有効にすることができます。
     9
     10
     11== パーミッションポリシー == #PermissionPolicies
     12
     13様々なパーミッションポリシーを実装することができます。 Trac にはいくつかの例を同梱しています。
     14
     15現在有効なポリシーは TracIni の中で設定されているコンフィグレーションによって決定します:
     16
    1717{{{
    1818[trac]
    1919permission_policies = AuthzSourcePolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy
    2020}}}
    21 This lists the [#AuthzSourcePolicy] described below as the first policy, 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.
    22 
    23 Among the possible optional choices, there is [#AuthzPolicy], a very generic permission policy, based on an Authz-style system. See
    24 [trac:source:branches/0.12-stable/tracopt/perm/authz_policy.py authz_policy.py] for details.
    25 
    26 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.
    27 
    28 See also [trac:source:branches/0.12-stable/sample-plugins/permissions sample-plugins/permissions] for more examples.
    29 
    30 
    31 === !AuthzPolicy ===
    32 ==== Configuration ====
    33 * Install [http://www.voidspace.org.uk/python/configobj.html ConfigObj] (still needed for 0.12).
    34 * Copy authz_policy.py into your plugins directory (only for Trac 0.11).
    35 * 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.
    36 * Update your `trac.ini`:
    37   1. modify the [TracIni#trac-section permission_policies] entry in the `[trac]` section
     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] を編集する
    3838{{{
    3939[trac]
     
    4141permission_policies = AuthzPolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy
    4242}}}
    43   1. add a new `[authz_policy]` section
     43  1. 新規に `[authz_policy]` セクションを追加する
    4444{{{
    4545[authz_policy]
    4646authz_file = /some/trac/env/conf/authzpolicy.conf
    4747}}}
    48   1. enable the plugin through [/admin/general/plugin WebAdmin] or by editing the `[components]` section
     48  1. [/admin/general/plugin WebAdmin]でプラグインを有効にするか、 `[components]` のセクションを編集する
    4949{{{
    5050[components]
     
    5353tracopt.perm.authz_policy.* = enabled
    5454# for Trac 0.11 use this
    55 #authz_policy.* = enabled 
    56 }}}
    57 
    58 
    59 ==== Usage Notes ====
    60 Note that the order in which permission policies are specified is quite critical,
    61 as policies will be examined in the sequence provided.
    62 
    63 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.
    64 
    65 NOTE: Only if the return value is `None` will the ''next'' permission policy be consulted.
    66 If none of the policies explicitly grants the permission, the final result will be `False`
    67 (i.e. permission denied).
    68 
    69 The `authzpolicy.conf` file is a `.ini` style configuration file:
     55#authz_policy.* = enabled
     56}}}
     57
     58
     59==== 使用方法 ==== #UsageNotes
     60パーミッションポリシーを指定する順序はとても重要です。
     61ポリシーは設定された順序で評価されます。
     62
     63個々のポリシーはパーミッションチェックに対して `True`, `False`, `None` を返します。 ポリシーが明示的にパーミッションを許可する場合は、 `True` を返します。明示的に拒否する場合は、 `False` を返します。そして、パーミッションを許可も拒否もできない場合、 `None` が返されます。
     64
     65Note: 戻り値が `None` の場合のみ、 ''次の'' パーミッションポリシーに問い合わせを行います。
     66どのポリシーも明示的にパーミッションを許可しない場合、最終的な結果は `False` となります
     67(つまり、権限なしとみなされます)。
     68
     69`authzpolicy.conf` は `.ini` スタイルの設定ファイルです:
    7070{{{
    7171[wiki:PrivatePage@*]
     
    7474* =
    7575}}}
    76 * Each section of the config is a glob pattern used to match against a Trac resource
    77   descriptor. These descriptors are in the form:
     76* config ファイルの各セクションは Trac のリソース記述子との照合に用いる
     77  グローバルなパターンです。記述子は以下のような形式です:
    7878{{{
    7979<realm>:<id>@<version>[/<realm>:<id>@<version> ...]
    8080}}}
    81   Resources are ordered left to right, from parent to child. If any
    82   component is inapplicable, `*` is substituted. If the version pattern is
    83   not specified explicitely, all versions (`@*`) is added implicitly
    84 
    85   Example: Match the WikiStart page
     81  リソースを親から子の順に、左から右へ記述します。不特定な
     82  コンポーネントがある場合は、 `*` で置き換えられます。バージョンのパターンが
     83  明示的に記されていなければ、すべてのバージョン (`@*`) が暗黙的に追加されます。
     84
     85  例: WikiStart ページを照合する
    8686{{{
    8787[wiki:*]
     
    9191}}}
    9292
    93   Example: Match the attachment `wiki:WikiStart@117/attachment/FOO.JPG@*`
    94   on WikiStart
     93  例: WikiStart の 添付ファイル `wiki:WikiStart@117/attachment/FOO.JPG@*`
     94  を照合する
    9595{{{
    9696[wiki:*]
     
    101101}}}
    102102
    103 * Sections are checked against the current Trac resource descriptor '''IN ORDER''' of
    104   appearance in the configuration file. '''ORDER IS CRITICAL'''.
    105 
    106 * Once a section matches, the current username is matched against the keys
    107   (usernames) of the section, '''IN ORDER'''.
    108   * If a key (username) is prefixed with a `@`, it is treated as a group.
    109   * If a value (permission) is prefixed with a `!`, the permission is
    110     denied rather than granted.
    111 
    112   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 ||
    113 
    114 For example, if the `authz_file` contains:
     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` が次の内容を含み:
    115115{{{
    116116[wiki:WikiStart@*]
     
    121121* = !WIKI_VIEW
    122122}}}
    123 and the default permissions are set like this:
     123デフォルトパーミッションが次のような内容の場合:
    124124{{{
    125125john           WIKI_VIEW
    126126jack           WIKI_VIEW
    127 # anonymous has no WIKI_VIEW
    128 }}}
    129 
    130 Then:
    131   * All versions of WikiStart will be viewable by everybody (including anonymous)
    132   * !PrivatePage will be viewable only by john
    133   * other pages will be viewable only by john and jack
     127# anonymous に WIKI_VIEW は付与されていない
     128}}}
     129
     130結果:
     131  * WikiStart の全てのバージョンは、 (匿名ユーザも含む) 全員が閲覧できます
     132  * !PrivatePage は john が表示可能です
     133  * 他のページは john と jack が表示可能です
    134134
    135135Groups:
     
    149149}}}
    150150
    151 Then:
    152 - everything is blocked (whitelist approach), but
    153 - admins get all TRAC_ADMIN everywhere and
    154 - devs can view wiki pages.
    155 
    156 Some repository examples (Browse Source specific):
    157 {{{
    158 # A single repository:
     151結果:
     152- すべてのアクセスがブロックされます (ホワイトリストアプローチ)。しかし
     153- admins グループはすべてにおいて TRAC_ADMIN 権限を取得しており、
     154- devs グループは Wiki ページを閲覧可能です
     155
     156リポジトリの例 (閲覧ソースの詳細設定):
     157{{{
     158# 単一のリポジトリ:
    159159[repository:test_repo@*]
    160160john = BROWSER_VIEW, FILE_VIEW
    161 # John has BROWSER_VIEW and FILE_VIEW for the entire test_repo
    162 
    163 # All repositories:
     161# John は test_repo に対して BROWSER_VIEW と FILE_VIEW の権限を持つ
     162
     163# すべてのリポジトリ:
    164164[repository:*@*]
    165 jack = BROWSER_VIEW, FILE_VIEW
    166 # John has BROWSER_VIEW and FILE_VIEW for all repositories
    167 }}}
    168 
    169 Very fine grain repository access:
    170 {{{
    171 # John has BROWSER_VIEW and FILE_VIEW access to trunk/src/some/location/ only
     165john = BROWSER_VIEW, FILE_VIEW
     166# John はすべてのリポジトリに対して BROWSER_VIEW と FILE_VIEW の権限を持つ
     167}}}
     168
     169より詳細なリポジトリのアクセス許可:
     170{{{
     171# John は  trunk/src/some/location/ へアクセスする場合のみ、BROWSER_VIEW と FILE_VIEW の権限を持つ
    172172[repository:test_repo@*/source:trunk/src/some/location/*@*]
    173173john = BROWSER_VIEW, FILE_VIEW
    174174
    175175
    176 # John has BROWSER_VIEW and FILE_VIEW access to only revision 1 of all files at trunk/src/some/location only
     176# John は trunk/src/some/location のリビジョン 1 へアクセスする場合のみ、BROWSER_VIEW と FILE_VIEW の権限を持つ
    177177[repository:test_repo@*/source:trunk/src/some/location/*@1]
    178178john = BROWSER_VIEW, FILE_VIEW
    179179
    180180
    181 # John has BROWSER_VIEW and FILE_VIEW access to all revisions of 'somefile' at trunk/src/some/location only
     181# John は trunk/src/some/location の 'somefile' へアクセスする場合のみ、BROWSER_VIEW と FILE_VIEW の権限を持つ
    182182[repository:test_repo@*/source:trunk/src/some/location/somefile@*]
    183183john = BROWSER_VIEW, FILE_VIEW
    184184
    185185
    186 # John has BROWSER_VIEW and FILE_VIEW access to only revision 1 of 'somefile' at trunk/src/some/location only
     186# John は trunk/src/some/location のリビジョン 1 の 'somefile' へアクセスする場合のみ、BROWSER_VIEW と FILE_VIEW の権限を持つ
    187187[repository:test_repo@*/source:trunk/src/some/location/somefile@1]
    188188john = BROWSER_VIEW, FILE_VIEW
    189189}}}
    190190
    191 Note: In order for Timeline to work/visible for John, we must add CHANGESET_VIEW to the above permission list.
    192 
    193 
    194 ==== Missing Features ====
    195 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 forgotten authz_policy.2.patch  part of [trac:ticket:6680 #6680]).
    196 
    197 You cannot do the following:
     191Note: 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利用不可となる機能:
    198198{{{
    199199[groups]
     
    204204}}}
    205205
    206 Permission groups are not supported either. You cannot do the following:
     206パーミッショングループも同様にサポートされていません。下記のことができません:
    207207{{{
    208208[groups]
     
    215215}}}
    216216
    217 === !AuthzSourcePolicy  (mod_authz_svn-like permission policy) === #AuthzSourcePolicy
    218 
    219 At the time of this writing, the old fine grained 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 point of view, this makes little if no difference.
    220 
    221 That kind of fine-grained permission control needs a definition file, which is the one used by Subversion's mod_authz_svn.
    222 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.
    223 
    224 Example:
     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:
    225225{{{
    226226[/]
     
    235235}}}
    236236
    237  * '''/''' = ''Everyone has read access by default''
    238  * '''/branches/calc/bug-142''' = ''harry has read/write access, sally read only''
    239  * '''/branches/calc/bug-142/secret''' = ''harry has no access, sally has read access (inherited as a sub folder permission)''
    240 
    241 ==== Trac Configuration ====
    242 
    243 To activate fine grained permissions you __must__ specify the {{{authz_file}}} option in the {{{[trac]}}} section of trac.ini. If this option is set to null or not specified the permissions will not be used.
     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}}} オプションを __設定しなければなりません__ 。オプションが空値に設定されていたり、そもそも指定されていない場合、パーミッションは適用されません。
    244244
    245245{{{
     
    248248}}}
    249249
    250 If you want to support the use of the `[`''modulename''`:/`''some''`/`''path''`]` syntax within the `authz_file`, add
     250`auth_file` 内でシンタックス `[`''modulename''`:/`''some''`/`''path''`]` を使用する場合、以下の設定を追加してください:
    251251
    252252{{{
     
    254254}}}
    255255
    256 where ''modulename'' refers to the same repository indicated by the `repository_dir` entry in the `[trac]` section. As an example, if the `repository_dir` entry in the `[trac]` section is {{{/srv/active/svn/blahblah}}}, that would yield the following:
    257 
    258 {{{ 
     256''modulename'' には、 `[trac]` セクション中の `repository_dir` に設定したリポジトリと同じものを設定します。例えば `[trac]` セクション内の `repository_dir` に {{{/srv/active/svn/blahblah}}} を設定している場合は次のように設定します:
     257
     258{{{
    259259[trac]
    260260authz_file = /path/to/svnaccessfile
    261261authz_module_name = blahblah
    262262...
    263 repository_dir = /srv/active/svn/blahblah 
    264 }}}
    265 
    266 where the svn access file, {{{/path/to/svnaccessfile}}}, contains entries such as {{{[blahblah:/some/path]}}}.
    267 
    268 '''Note:''' Usernames inside the Authz file __must__ be the same as those used inside trac.
    269 
    270 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.
    271 
    272 {{{ 
     263repository_dir = /srv/active/svn/blahblah
     264}}}
     265
     266Subversion の Authz ファイル {{{/path/to/svnaccessfile}}} では、 {{{[blahblah:/some/path]}}} のようにエントリを記載します。
     267
     268'''Note:''' Authz ファイルで使用するユーザ名と、 Trac で使用するユーザ名は __同じでなければなりません__。
     269
     2700.12 では、 trac.ini の permission_policies に ''!AuthzSourcePolicy'' を必ず含めて下さい。さもないと、 authz のパーミッションファイルは無視されます。
     271
     272{{{
    273273[trac]
    274274permission_policies = AuthzSourcePolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy
    275275}}}
    276276
    277 ==== Subversion Configuration ====
    278 
    279 The same access file is typically applied to the corresponding Subversion repository using an Apache directive like this:
     277==== Subversion の設定 ==== #SubversionConfiguration
     278
     279通常は同じアクセスファイルを対応する Subversion リポジトリに適用します。 Apache のディレクティブには以下のように設定してください:
    280280{{{
    281281<Location /repos>
     
    288288}}}
    289289
    290 For information about how to restrict access to entire projects in a multiple project environment see [trac:wiki:TracMultipleProjectsSVNAccess]
    291 
    292 == Debugging permissions
    293 In trac.ini set:
     290複数のプロジェクト Environment において、プロジェクト全体にどのようにアクセス制限を行うかについての情報は [trac:TracMultipleProjectsSVNAccess] を参照してください。
     291
     292== デバッグ用パーミッション #DebuggingPermissions
     293trac.ini の設定:
    294294{{{
    295295[logging]
     
    299299}}}
    300300
    301 And watch:
     301ウォッチコマンド:
    302302{{{
    303303tail -n 0 -f log/trac.log | egrep '\[perm\]|\[authz_policy\]'
    304304}}}
    305305
    306 to understand what checks are being performed. See the sourced documentation of the plugin for more info.
     306どんなチェックが行なわれているか見ることができます。より詳細な情報については、プラグインのソースに添付されているドキュメントを参照して下さい。
    307307
    308308
    309309----
    310310See also: TracPermissions,
    311 [http://trac-hacks.org/wiki/FineGrainedPageAuthzEditorPlugin TracHacks:FineGrainedPageAuthzEditorPlugin] for a simple editor plugin.
     311[http://trac-hacks.org/wiki/FineGrainedPageAuthzEditorPlugin TracHacks:FineGrainedPageAuthzEditorPlugin] は設定を編集するプラグインです。