Shawn O. Pearce | e31d02c | 2009-12-08 12:21:37 -0800 | [diff] [blame] | 1 | Gerrit Code Review - Access Controls |
| 2 | ==================================== |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 3 | |
| 4 | Access controls in Gerrit are group based. Every user account is a |
| 5 | member of one or more groups, and access and privileges are granted |
Matt Fischer | 620255a | 2011-03-22 14:28:23 -0500 | [diff] [blame] | 6 | to those groups. Access rights cannot be granted to individual |
| 7 | users. |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 8 | |
| 9 | |
| 10 | System Groups |
| 11 | ------------- |
| 12 | |
Edwin Kempin | d2605ed | 2010-10-11 08:02:24 +0200 | [diff] [blame] | 13 | Gerrit comes with 4 system groups, with special access privileges |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 14 | and membership management. The identity of these groups is set |
| 15 | in the `system_config` table within the database, so the groups |
| 16 | can be renamed after installation if desired. |
| 17 | |
Edwin Kempin | 913eab1 | 2011-05-06 08:18:24 +0200 | [diff] [blame] | 18 | [[administrators]] |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 19 | Administrators |
| 20 | ~~~~~~~~~~~~~~ |
| 21 | |
| 22 | This is the Gerrit "root" identity. |
| 23 | |
| 24 | Users in the 'Administrators' group can perform any action under |
| 25 | the Admin menu, to any group or project, without further validation |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 26 | or any other access controls. In most installations only those |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 27 | users who have direct filesystem and database access would be |
| 28 | placed into this group. |
| 29 | |
| 30 | Membership in the 'Administrators' group does not imply any other |
| 31 | access rights. Administrators do not automatically get code review |
| 32 | approval or submit rights in projects. This is a feature designed |
Nico Sallembien | ee6eaf0 | 2010-02-01 13:24:49 -0800 | [diff] [blame] | 33 | to permit administrative users to otherwise access Gerrit as any |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 34 | other normal user would, without needing two different accounts. |
| 35 | |
Fredrik Luthander | 8fa3d26 | 2011-11-07 17:04:01 +0100 | [diff] [blame] | 36 | [[anonymous_users]] |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 37 | Anonymous Users |
| 38 | ~~~~~~~~~~~~~~~ |
| 39 | |
| 40 | All users are automatically a member of this group. Users who are |
| 41 | not signed in are a member of only this group, and no others. |
| 42 | |
| 43 | Any access rights assigned to this group are inherited by all users. |
| 44 | |
| 45 | Administrators and project owners can grant access rights to this |
| 46 | group in order to permit anonymous users to view project changes, |
| 47 | without requiring sign in first. Currently it is only worthwhile |
Fredrik Luthander | 5e1b51b | 2012-01-20 13:06:06 +0100 | [diff] [blame] | 48 | to grant `Read` access to this group as Gerrit requires an account |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 49 | identity for all other operations. |
| 50 | |
Fredrik Luthander | 8fa3d26 | 2011-11-07 17:04:01 +0100 | [diff] [blame] | 51 | [[non-interactive_users]] |
| 52 | Non-Interactive Users |
| 53 | ~~~~~~~~~~~~~~~~~~~~~ |
| 54 | |
| 55 | This is an internal user group, members of this group are not expected |
| 56 | to perform interactive operations on the Gerrit web frontend. |
| 57 | |
| 58 | However, sometimes such a user may need a separate thread pool in |
| 59 | order to prevent it from grabbing threads from the interactive users. |
| 60 | |
| 61 | These users live in a second thread pool, which separates operations |
| 62 | made by the non-interactive users from the ones made by the interactive |
| 63 | users. This ensures that the interactive users can keep working when |
| 64 | resources are tight. |
| 65 | |
| 66 | [[project_owners]] |
| 67 | Project Owners |
| 68 | ~~~~~~~~~~~~~~ |
| 69 | |
| 70 | Access rights assigned to this group are always evaluated within the |
| 71 | context of a project to which the access rights apply. These rights |
| 72 | therefore apply to all the users who are owners of this project. |
| 73 | |
| 74 | By assigning access rights to this group on a parent project Gerrit |
| 75 | administrators can define a set of default access rights for |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 76 | <<category_owner,project owners>>. Child projects inherit these |
Fredrik Luthander | 8fa3d26 | 2011-11-07 17:04:01 +0100 | [diff] [blame] | 77 | access rights where they are resolved to the users that own the child |
| 78 | project. Having default access rights for |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 79 | <<category_owner,project owners>> assigned on a parent project may |
Fredrik Luthander | 8fa3d26 | 2011-11-07 17:04:01 +0100 | [diff] [blame] | 80 | avoid the need to initially configure access rights for |
| 81 | newly created child projects. |
| 82 | |
| 83 | [[registered_users]] |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 84 | Registered Users |
| 85 | ~~~~~~~~~~~~~~~~ |
| 86 | |
| 87 | All signed-in users are automatically a member of this group (and |
Fredrik Luthander | 54abc35 | 2012-01-20 16:18:41 +0100 | [diff] [blame] | 88 | also <<anonymous_users,'Anonymous Users'>>, see above). |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 89 | |
| 90 | Any access rights assigned to this group are inherited by all |
| 91 | users as soon as they sign-in to Gerrit. If OpenID authentication |
| 92 | is being employed, moving from only 'Anonymous Users' into this |
| 93 | group is very easy. Caution should be taken when assigning any |
| 94 | permissions to this group. |
| 95 | |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 96 | It is typical to assign `Code-Review -1..+1` to this group, |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 97 | allowing signed-in users to vote on a change, but not actually |
| 98 | cause it to become approved or rejected. |
| 99 | |
| 100 | Registered users are always permitted to make and publish comments |
Fredrik Luthander | 5e1b51b | 2012-01-20 13:06:06 +0100 | [diff] [blame] | 101 | on any change in any project they have `Read` access to. |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 102 | |
| 103 | |
| 104 | Account Groups |
| 105 | -------------- |
| 106 | |
| 107 | Account groups contain a list of zero or more user account members, |
| 108 | added individually by a group owner. Any user account listed as |
| 109 | a group member is given any access rights granted to the group. |
| 110 | |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 111 | Every group has one other group designated as its owner. Users who |
| 112 | are members of the owner group can: |
| 113 | |
Fredrik Luthander | 8fa3d26 | 2011-11-07 17:04:01 +0100 | [diff] [blame] | 114 | * Add users and other groups to this group |
| 115 | * Remove users and other groups from this group |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 116 | * Change the name of this group |
| 117 | * Change the description of this group |
| 118 | * Change the owner of this group, to another group |
| 119 | |
| 120 | It is permissible for a group to own itself, allowing the group |
| 121 | members to directly manage who their peers are. |
| 122 | |
| 123 | Newly created groups are automatically created as owning themselves, |
| 124 | with the creating user as the only member. This permits the group |
| 125 | creator to add additional members, and change the owner to another |
| 126 | group if desired. |
| 127 | |
| 128 | It is somewhat common to create two groups at the same time, |
| 129 | for example `Foo` and `Foo-admin`, where the latter group |
| 130 | `Foo-admin` owns both itself and also group `Foo`. Users who |
| 131 | are members of `Foo-admin` can thus control the membership of |
| 132 | `Foo`, without actually having the access rights granted to `Foo`. |
| 133 | This configuration can help prevent accidental submits when the |
| 134 | members of `Foo` have submit rights on a project, and the members of |
| 135 | `Foo-admin` typically do not need to have such rights. |
| 136 | |
| 137 | |
| 138 | Project Access Control Lists |
| 139 | ---------------------------- |
| 140 | |
lincoln | fa7bdd3 | 2010-04-22 14:23:05 -0300 | [diff] [blame] | 141 | A system wide access control list affecting all projects is stored in |
Shawn O. Pearce | a063182 | 2011-06-14 11:18:18 -0700 | [diff] [blame] | 142 | project "`All-Projects`". This inheritance can be configured |
lincoln | fa7bdd3 | 2010-04-22 14:23:05 -0300 | [diff] [blame] | 143 | through link:cmd-set-project-parent.html[gerrit set-project-parent]. |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 144 | |
| 145 | Per-project access control lists are also supported. |
| 146 | |
| 147 | Users are permitted to use the maximum range granted to any of their |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 148 | groups on a label. For example, a user is a member of `Foo Leads`, and |
| 149 | the following ACLs are granted on a project: |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 150 | |
Karsten Dambekalns | a7f72a2 | 2011-03-25 14:21:59 +0100 | [diff] [blame] | 151 | [options="header"] |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 152 | |=================================================== |
| 153 | |Group |Reference Name |Label |Range |
| 154 | |Anonymous Users |refs/heads/* |Code-Review|-1..+1 |
| 155 | |Registered Users|refs/heads/* |Code-Review|-1..+2 |
| 156 | |Foo Leads |refs/heads/* |Code-Review|-2..0 |
| 157 | |=================================================== |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 158 | |
| 159 | Then the effective range permitted to be used by the user is |
| 160 | `-2..+2`, as the user is a member of all three groups (see above |
| 161 | about the system groups) and the maximum range is chosen (so the |
| 162 | lowest value granted to any group, and the highest value granted |
| 163 | to any group). |
| 164 | |
Nico Sallembien | ee6eaf0 | 2010-02-01 13:24:49 -0800 | [diff] [blame] | 165 | Reference-level access control is also possible. |
| 166 | |
| 167 | Permissions can be set on a single reference name to match one |
| 168 | branch (e.g. `refs/heads/master`), or on a reference namespace |
Edwin Kempin | a2bf083 | 2011-09-08 14:23:30 +0200 | [diff] [blame] | 169 | (e.g. `refs/heads/*`) to match any branch starting with that |
| 170 | prefix. So a permission with `refs/heads/*` will match |
Nico Sallembien | ee6eaf0 | 2010-02-01 13:24:49 -0800 | [diff] [blame] | 171 | `refs/heads/master` and `refs/heads/experimental`, etc. |
| 172 | |
Shawn O. Pearce | 6d6d451 | 2010-07-15 11:42:34 -0700 | [diff] [blame] | 173 | Reference names can also be described with a regular expression |
Edwin Kempin | a2bf083 | 2011-09-08 14:23:30 +0200 | [diff] [blame] | 174 | by prefixing the reference name with `^`. For example |
| 175 | `^refs/heads/[a-z]{1,8}` matches all lower case branch names |
Shawn O. Pearce | 6d6d451 | 2010-07-15 11:42:34 -0700 | [diff] [blame] | 176 | between 1 and 8 characters long. Within a regular expression `.` |
| 177 | is a wildcard matching any character, but may be escaped as `\.`. |
Magnus Bäck | e561183 | 2011-02-02 08:57:15 +0100 | [diff] [blame] | 178 | The link:http://www.brics.dk/automaton/[dk.brics.automaton library] |
| 179 | is used for evaluation of regular expression access control |
| 180 | rules. See the library documentation for details on this |
| 181 | particular regular expression flavor. |
Shawn O. Pearce | 6d6d451 | 2010-07-15 11:42:34 -0700 | [diff] [blame] | 182 | |
| 183 | References can have the current user name automatically included, |
| 184 | creating dynamic access controls that change to match the currently |
| 185 | logged in user. For example to provide a personal sandbox space |
Edwin Kempin | a2bf083 | 2011-09-08 14:23:30 +0200 | [diff] [blame] | 186 | to all developers, `refs/heads/sandbox/${username}/*` allowing |
Shawn O. Pearce | 6d6d451 | 2010-07-15 11:42:34 -0700 | [diff] [blame] | 187 | the user 'joe' to use 'refs/heads/sandbox/joe/foo'. |
| 188 | |
Nico Sallembien | ee6eaf0 | 2010-02-01 13:24:49 -0800 | [diff] [blame] | 189 | When evaluating a reference-level access right, Gerrit will use |
Nico Sallembien | a78a37c | 2010-05-04 11:49:12 -0700 | [diff] [blame] | 190 | the full set of access rights to determine if the user |
| 191 | is allowed to perform a given action. For example, if a user is a |
| 192 | member of `Foo Leads`, they are reviewing a change destined for |
| 193 | the `refs/heads/qa` branch, and the following ACLs are granted |
| 194 | on the project: |
Nico Sallembien | ee6eaf0 | 2010-02-01 13:24:49 -0800 | [diff] [blame] | 195 | |
Karsten Dambekalns | a7f72a2 | 2011-03-25 14:21:59 +0100 | [diff] [blame] | 196 | [options="header"] |
Fredrik Luthander | 54abc35 | 2012-01-20 16:18:41 +0100 | [diff] [blame] | 197 | |=============================================================== |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 198 | |Group |Reference Name|Label |Range |Exclusive |
| 199 | |Registered Users |refs/heads/* |Code-Review| -1..+1 | |
| 200 | |Foo Leads |refs/heads/* |Code-Review| -2..+2 | |
| 201 | |QA Leads |refs/heads/qa |Code-Review| -2..+2 | |
Fredrik Luthander | 54abc35 | 2012-01-20 16:18:41 +0100 | [diff] [blame] | 202 | |=============================================================== |
Nico Sallembien | ee6eaf0 | 2010-02-01 13:24:49 -0800 | [diff] [blame] | 203 | |
Nico Sallembien | a78a37c | 2010-05-04 11:49:12 -0700 | [diff] [blame] | 204 | Then the effective range permitted to be used by the user is |
| 205 | `-2..+2`, as the user's membership of `Foo Leads` effectively grant |
| 206 | them access to the entire reference space, thanks to the wildcard. |
| 207 | |
| 208 | Gerrit also supports exclusive reference-level access control. |
| 209 | |
| 210 | It is possible to configure Gerrit to grant an exclusive ref level |
| 211 | access control so that only users of a specific group can perform |
Fredrik Luthander | 54abc35 | 2012-01-20 16:18:41 +0100 | [diff] [blame] | 212 | an operation on a project/reference pair. This is done by ticking |
| 213 | the exclusive flag when setting the permission for the |
| 214 | `refs/heads/qa` branch. |
Nico Sallembien | a78a37c | 2010-05-04 11:49:12 -0700 | [diff] [blame] | 215 | |
| 216 | For example, if a user who is a member of `Foo Leads` tries to |
| 217 | review a change destined for branch `refs/heads/qa` in a project, |
| 218 | and the following ACLs are granted: |
| 219 | |
Karsten Dambekalns | a7f72a2 | 2011-03-25 14:21:59 +0100 | [diff] [blame] | 220 | [options="header"] |
Fredrik Luthander | 54abc35 | 2012-01-20 16:18:41 +0100 | [diff] [blame] | 221 | |============================================================== |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 222 | |Group |Reference Name|Label |Range |Exclusive |
| 223 | |Registered Users|refs/heads/* |Code-Review| -1..+1 | |
| 224 | |Foo Leads |refs/heads/* |Code-Review| -2..+2 | |
| 225 | |QA Leads |refs/heads/qa |Code-Review| -2..+2 |X |
Fredrik Luthander | 54abc35 | 2012-01-20 16:18:41 +0100 | [diff] [blame] | 226 | |============================================================== |
Nico Sallembien | a78a37c | 2010-05-04 11:49:12 -0700 | [diff] [blame] | 227 | |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 228 | Then this user will not have `Code-Review` rights on that change, |
Nico Sallembien | a78a37c | 2010-05-04 11:49:12 -0700 | [diff] [blame] | 229 | since there is an exclusive access right in place for the |
| 230 | `refs/heads/qa` branch. This allows locking down access for a |
| 231 | particular branch to a limited set of users, bypassing inherited |
| 232 | rights and wildcards. |
| 233 | |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 234 | In order to grant the ability to `Code-Review` to the members of |
Nico Sallembien | a78a37c | 2010-05-04 11:49:12 -0700 | [diff] [blame] | 235 | `Foo Leads`, in `refs/heads/qa` then the following access rights |
| 236 | would be needed: |
| 237 | |
Karsten Dambekalns | a7f72a2 | 2011-03-25 14:21:59 +0100 | [diff] [blame] | 238 | [options="header"] |
Fredrik Luthander | 54abc35 | 2012-01-20 16:18:41 +0100 | [diff] [blame] | 239 | |============================================================== |
| 240 | |Group |Reference Name|Category |Range |Exclusive |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 241 | |Registered Users|refs/heads/* |Code-Review| -1..+1 | |
| 242 | |Foo Leads |refs/heads/* |Code-Review| -2..+2 | |
| 243 | |QA Leads |refs/heads/qa |Code-Review| -2..+2 |X |
| 244 | |Foo Leads |refs/heads/qa |Code-Review| -2..+2 | |
Fredrik Luthander | 54abc35 | 2012-01-20 16:18:41 +0100 | [diff] [blame] | 245 | |============================================================== |
Nico Sallembien | a78a37c | 2010-05-04 11:49:12 -0700 | [diff] [blame] | 246 | |
Shawn O. Pearce | a229966 | 2009-02-25 14:34:40 -0800 | [diff] [blame] | 247 | OpenID Authentication |
| 248 | ~~~~~~~~~~~~~~~~~~~~~ |
| 249 | |
| 250 | If the Gerrit instance is configured to use OpenID authentication, |
| 251 | an account's effective group membership will be restricted to only |
| 252 | the `Anonymous Users` and `Registered Users` groups, unless *all* |
| 253 | of its OpenID identities match one or more of the patterns listed |
Shawn O. Pearce | d7c026d | 2009-08-05 20:11:22 -0700 | [diff] [blame] | 254 | in the `auth.trustedOpenID` list from `gerrit.config`. |
Shawn O. Pearce | a229966 | 2009-02-25 14:34:40 -0800 | [diff] [blame] | 255 | |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 256 | All Projects |
| 257 | ~~~~~~~~~~~~ |
| 258 | |
Shawn O. Pearce | a063182 | 2011-06-14 11:18:18 -0700 | [diff] [blame] | 259 | Any access right granted to a group within `All-Projects` |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 260 | is automatically inherited by every other project in the same |
| 261 | Gerrit instance. These rights can be seen, but not modified, |
| 262 | in any other project's `Access` administration tab. |
| 263 | |
Fredrik Luthander | d996088 | 2011-11-08 01:42:19 +0100 | [diff] [blame] | 264 | Only members of the groups with the `Administrate Server` capability |
| 265 | may edit the access control list for `All-Projects`. By default this |
| 266 | capability is given to the group `Administrators`, but can be given |
| 267 | to more groups. |
Shawn O. Pearce | e2c2a22 | 2010-05-11 13:43:45 -0700 | [diff] [blame] | 268 | |
| 269 | Ownership of this project cannot be delegated to another group. |
| 270 | This restriction is by design. Granting ownership to another |
| 271 | group gives nearly the same level of access as membership in |
| 272 | `Administrators` does, as group members would be able to alter |
Fredrik Luthander | d996088 | 2011-11-08 01:42:19 +0100 | [diff] [blame] | 273 | permissions for every managed project including global capabilities. |
Shawn O. Pearce | e2c2a22 | 2010-05-11 13:43:45 -0700 | [diff] [blame] | 274 | |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 275 | Per-Project |
| 276 | ~~~~~~~~~~~ |
| 277 | |
Fredrik Luthander | da86788 | 2011-12-21 18:28:40 +0100 | [diff] [blame] | 278 | The per-project ACL is evaluated before the global `All-Projects` ACL, |
| 279 | permitting some limited override capability to project owners. This |
Fredrik Luthander | 5e1b51b | 2012-01-20 13:06:06 +0100 | [diff] [blame] | 280 | behavior is generally only useful on the `Read` category when |
| 281 | granting 'DENY' within a specific project to deny a group access. |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 282 | |
| 283 | |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 284 | [[access_labels]] |
| 285 | Review Labels |
| 286 | ------------- |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 287 | |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 288 | For every configured label `My-Name` in the project, there is a |
| 289 | corresponding permission `label-My-Name` with a range corresponding to |
| 290 | the defined values. |
| 291 | |
| 292 | Gerrit comes pre-configured with several default labels that can be |
| 293 | granted to groups within projects, enabling functionality for that |
| 294 | group's members. link:config-labels.html[Custom labels] may also be |
| 295 | defined globally or on a per-project basis. |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 296 | |
Fredrik Luthander | 7126706 | 2011-12-21 18:38:45 +0100 | [diff] [blame] | 297 | With the release of the Gerrit 2.2.x series, the web GUI for ACL |
| 298 | configuration was rewritten from scratch. Use this |
| 299 | <<conversion_table,table>> to better understand the access rights |
| 300 | conversions from the Gerrit 2.1.x to the Gerrit 2.2.x series. |
| 301 | |
Chad Horohoe | 029c85a | 2012-06-07 16:10:14 -0400 | [diff] [blame] | 302 | [[category_abandon]] |
| 303 | Abandon |
Edwin Kempin | 3ff0511 | 2012-07-19 14:43:25 +0200 | [diff] [blame] | 304 | ~~~~~~~ |
Chad Horohoe | 029c85a | 2012-06-07 16:10:14 -0400 | [diff] [blame] | 305 | |
| 306 | This category controls whether users are allowed to abandon changes |
| 307 | to projects in Gerrit. It can give permission to abandon a specific |
| 308 | change to a given ref. |
| 309 | |
Chad Horohoe | 35ced0a | 2012-06-27 19:20:34 -0400 | [diff] [blame] | 310 | This also grants the permission to restore a change if the change |
| 311 | can be uploaded. |
| 312 | |
Fredrik Luthander | e9eeeea | 2011-12-08 16:45:32 +0100 | [diff] [blame] | 313 | [[category_create]] |
| 314 | Create reference |
| 315 | ~~~~~~~~~~~~~~~~ |
| 316 | |
| 317 | The create reference category controls whether it is possible to |
| 318 | create new references, branches or tags. This implies that the |
| 319 | reference must not already exist, it's not a destructive permission |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 320 | in that you can't overwrite or remove any previously existing |
Fredrik Luthander | e9eeeea | 2011-12-08 16:45:32 +0100 | [diff] [blame] | 321 | references (and also discard any commits in the process). |
| 322 | |
| 323 | It's probably most common to either permit the creation of a single |
| 324 | branch in many gits (by granting permission on a parent project), or |
| 325 | to grant this permission to a name pattern of branches. |
| 326 | |
| 327 | This permission is often given in conjunction with regular push |
| 328 | branch permissions, allowing the holder of both to create new branches |
| 329 | as well as bypass review for new commits on that branch. |
| 330 | |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 331 | To push lightweight (non-annotated) tags, grant |
Fredrik Luthander | e9eeeea | 2011-12-08 16:45:32 +0100 | [diff] [blame] | 332 | `Create Reference` for reference name `refs/tags/*`, as lightweight |
| 333 | tags are implemented just like branches in Git. |
| 334 | |
| 335 | For example, to grant the possibility to create new branches under the |
| 336 | namespace `foo`, you have to grant this permission on |
| 337 | `refs/heads/foo/*` for the group that should have it. |
| 338 | Finally, if you plan to grant each user a personal namespace in |
| 339 | where they are free to create as many branches as they wish, you |
| 340 | should grant the create reference permission so it's possible |
| 341 | to create new branches. This is done by using the special |
| 342 | `${username}` keyword in the reference pattern, e.g. |
| 343 | `refs/heads/sandbox/${username}/*`. If you do, it's also recommended |
| 344 | you grant the users the push force permission to be able to clean up |
| 345 | stale branches. |
| 346 | |
| 347 | |
Fredrik Luthander | 8f430f1 | 2011-12-27 13:40:43 +0100 | [diff] [blame] | 348 | [[category_forge_author]] |
| 349 | Forge Author |
| 350 | ~~~~~~~~~~~~ |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 351 | |
| 352 | Normally Gerrit requires the author and the committer identity |
| 353 | lines in a Git commit object (or tagger line in an annotated tag) to |
| 354 | match one of the registered email addresses of the uploading user. |
Fredrik Luthander | 8f430f1 | 2011-12-27 13:40:43 +0100 | [diff] [blame] | 355 | This permission allows users to bypass parts of that validation, which |
| 356 | may be necessary when mirroring changes from an upstream project. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 357 | |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 358 | Permits the use of an unverified author line in commit objects. |
| 359 | This can be useful when applying patches received by email from |
| 360 | 3rd parties, when cherry-picking changes written by others across |
| 361 | branches, or when amending someone else's commit to fix up a minor |
| 362 | problem before submitting. |
Fredrik Luthander | 8f430f1 | 2011-12-27 13:40:43 +0100 | [diff] [blame] | 363 | |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 364 | By default this is granted to `Registered Users` in all projects, |
| 365 | but a site administrator may disable it if verified authorship |
| 366 | is required. |
| 367 | |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 368 | |
Fredrik Luthander | 8f430f1 | 2011-12-27 13:40:43 +0100 | [diff] [blame] | 369 | [[category_forge_committer]] |
| 370 | Forge Committer |
| 371 | ~~~~~~~~~~~~~~~ |
| 372 | |
| 373 | Normally Gerrit requires the author and the committer identity |
| 374 | lines in a Git commit object (or tagger line in an annotated tag) to |
| 375 | match one of the registered email addresses of the uploading user. |
| 376 | This permission allows users to bypass parts of that validation, which |
| 377 | may be necessary when mirroring changes from an upstream project. |
| 378 | |
| 379 | Allows the use of an unverified committer line in commit objects, or an |
| 380 | unverified tagger line in annotated tag objects. Typically this is only |
| 381 | required when mirroring commits from an upstream project repository. |
| 382 | |
| 383 | |
| 384 | [[category_forge_server]] |
| 385 | Forge Server |
| 386 | ~~~~~~~~~~~~ |
| 387 | |
| 388 | Normally Gerrit requires the author and the committer identity |
| 389 | lines in a Git commit object (or tagger line in an annotated tag) to |
| 390 | match one of the registered email addresses of the uploading user. |
| 391 | This permission allows users to bypass parts of that validation, which |
| 392 | may be necessary when mirroring changes from an upstream project. |
| 393 | |
| 394 | Allows the use of the server's own name and email on the committer |
| 395 | line of a new commit object. This should only be necessary when force |
| 396 | pushing a commit history which has been rewritten by 'git filter-branch' |
| 397 | and that contains merge commits previously created by this Gerrit Code |
| 398 | Review server. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 399 | |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 400 | |
| 401 | [[category_owner]] |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 402 | Owner |
| 403 | ~~~~~ |
| 404 | |
| 405 | The `Owner` category controls which groups can modify the project's |
| 406 | configuration. Users who are members of an owner group can: |
| 407 | |
| 408 | * Change the project description |
| 409 | * Create/delete a branch through the web UI (not SSH) |
| 410 | * Grant/revoke any access rights, including `Owner` |
| 411 | |
| 412 | Note that project owners implicitly have branch creation or deletion |
| 413 | through the web UI, but not through SSH. To get SSH branch access |
| 414 | project owners must grant an access right to a group they are a |
| 415 | member of, just like for any other user. |
| 416 | |
| 417 | Ownership over a particular branch subspace may be delegated by |
| 418 | entering a branch pattern. To delegate control over all branches |
| 419 | that begin with `qa/` to the QA group, add `Owner` category |
Fredrik Luthander | a8b9d21 | 2012-10-10 16:05:59 +0200 | [diff] [blame] | 420 | for reference `refs/heads/qa/*`. Members of the QA group can |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 421 | further refine access, but only for references that begin with |
Fredrik Luthander | 8fa3d26 | 2011-11-07 17:04:01 +0100 | [diff] [blame] | 422 | `refs/heads/qa/`. See <<project_owners,project owners>> to find |
| 423 | out more about this role. |
| 424 | |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 425 | |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 426 | [[category_push]] |
| 427 | Push |
| 428 | ~~~~ |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 429 | |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 430 | This category controls how users are allowed to upload new commits |
| 431 | to projects in Gerrit. It can either give permission to push |
| 432 | directly into a branch, bypassing any code review process |
| 433 | that would otherwise be used. Or it may give permission to upload |
| 434 | new changes for code review, this depends on which namespace the |
| 435 | permission is granted to. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 436 | |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 437 | |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 438 | [[category_push_direct]] |
| 439 | Direct Push |
| 440 | ^^^^^^^^^^^ |
| 441 | |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 442 | Any existing branch can be fast-forwarded to a new commit. |
Robin Rosenberg | 524a303 | 2012-10-14 14:24:36 +0200 | [diff] [blame] | 443 | Creation of new branches is controlled by the |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 444 | link:access-control.html#category_create['Create Reference'] |
| 445 | category. Deletion of existing branches is rejected. This is the |
| 446 | safest mode as commits cannot be discarded. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 447 | |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 448 | * Force option |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 449 | + |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 450 | Allows an existing branch to be deleted. Since a force push is |
| 451 | effectively a delete immediately followed by a create, but performed |
| 452 | atomically on the server and logged, this option also permits forced |
| 453 | push updates to branches. Enabling this option allows existing commits |
| 454 | to be discarded from a project history. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 455 | |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 456 | The push category is primarily useful for projects that only want to |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 457 | take advantage of Gerrit's access control features and do not need |
| 458 | its code review functionality. Projects that need to require code |
| 459 | reviews should not grant this category. |
| 460 | |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 461 | |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 462 | [[category_push_review]] |
| 463 | Upload To Code Review |
| 464 | ^^^^^^^^^^^^^^^^^^^^^ |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 465 | |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 466 | The `Push` access right granted on the namespace |
| 467 | `refs/for/refs/heads/BRANCH` permits the user to upload a non-merge |
| 468 | commit to the project's `refs/for/BRANCH` namespace, creating a new |
| 469 | change for code review. |
| 470 | |
| 471 | A user must be able to clone or fetch the project in order to create |
| 472 | a new commit on their local system, so in practice they must also |
| 473 | have the `Read` access granted to upload a change. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 474 | |
| 475 | For an open source, public Gerrit installation, it is common to |
Fredrik Luthander | ea13ca5 | 2011-12-29 11:36:48 +0100 | [diff] [blame] | 476 | grant `Read` and `Push` for `refs/for/refs/heads/*` |
| 477 | to `Registered Users` in the `All-Projects` ACL. For more |
| 478 | private installations, its common to simply grant `Read` and |
| 479 | `Push` for `refs/for/refs/heads/*` to all users of a project. |
| 480 | |
| 481 | * Force option |
| 482 | + |
| 483 | The force option has no function when granted to a branch in the |
| 484 | `refs/for/refs/heads/*` namespace. |
| 485 | |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 486 | |
Fredrik Luthander | bf56857 | 2012-01-18 11:17:00 +0100 | [diff] [blame] | 487 | [[category_push_merge]] |
Edwin Kempin | aef5d6e | 2012-01-24 09:04:54 +0100 | [diff] [blame] | 488 | Push Merge Commits |
Fredrik Luthander | bf56857 | 2012-01-18 11:17:00 +0100 | [diff] [blame] | 489 | ~~~~~~~~~~~~~~~~~~~~ |
| 490 | |
Magnus Bäck | 282c102 | 2012-04-18 15:39:17 -0400 | [diff] [blame] | 491 | The `Push Merge Commit` access right permits the user to upload merge |
| 492 | commits. It's an addon to the <<category_push,Push>> access right, and |
| 493 | so it won't be sufficient with only `Push Merge Commit` granted for a |
| 494 | push to happen. Some projects wish to restrict merges to being created |
| 495 | by Gerrit. By granting `Push` without `Push Merge Commit`, the only |
Edwin Kempin | aef5d6e | 2012-01-24 09:04:54 +0100 | [diff] [blame] | 496 | merges that enter the system will be those created by Gerrit. |
Fredrik Luthander | bf56857 | 2012-01-18 11:17:00 +0100 | [diff] [blame] | 497 | |
Magnus Bäck | 282c102 | 2012-04-18 15:39:17 -0400 | [diff] [blame] | 498 | The reference name connected to a `Push Merge Commit` entry must always |
| 499 | be prefixed with `refs/for/`, for example `refs/for/refs/heads/BRANCH`. |
| 500 | This applies even for an entry that complements a `Push` entry for |
| 501 | `refs/heads/BRANCH` that allows direct pushes of non-merge commits, and |
| 502 | the intention of the `Push Merge Commit` entry is to allow direct pushes |
| 503 | of merge commits. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 504 | |
Fredrik Luthander | d774986 | 2012-01-20 07:29:43 +0100 | [diff] [blame] | 505 | [[category_push_annotated]] |
| 506 | Push Annotated Tag |
| 507 | ~~~~~~~~~~~~~~~~~~ |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 508 | |
David Pursehouse | 690cebe | 2012-12-12 19:22:45 +0900 | [diff] [blame] | 509 | This category permits users to push an annotated tag object into the |
| 510 | project's repository. Typically this would be done with a command line |
| 511 | such as: |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 512 | |
| 513 | ==== |
| 514 | git push ssh://USER@HOST:PORT/PROJECT tag v1.0 |
| 515 | ==== |
| 516 | |
David Pursehouse | 690cebe | 2012-12-12 19:22:45 +0900 | [diff] [blame] | 517 | Or: |
| 518 | |
| 519 | ==== |
| 520 | git push https://HOST/PROJECT tag v1.0 |
| 521 | ==== |
| 522 | |
David Pursehouse | b429ce1 | 2012-12-12 11:04:40 +0900 | [diff] [blame] | 523 | Tags must be annotated (created with `git tag -a`), should exist in |
| 524 | the `refs/tags/` namespace, and should be new. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 525 | |
| 526 | This category is intended to be used to publish tags when a project |
| 527 | reaches a stable release point worth remembering in history. |
| 528 | |
Fredrik Luthander | d774986 | 2012-01-20 07:29:43 +0100 | [diff] [blame] | 529 | It allows for a new annotated (unsigned) tag to be created. The |
| 530 | tagger email address must be verified for the current user. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 531 | |
| 532 | To push tags created by users other than the current user (such |
Fredrik Luthander | d774986 | 2012-01-20 07:29:43 +0100 | [diff] [blame] | 533 | as tags mirrored from an upstream project), `Forge Committer Identity` |
| 534 | must be also granted in addition to `Push Annotated Tag`. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 535 | |
Fredrik Luthander | d774986 | 2012-01-20 07:29:43 +0100 | [diff] [blame] | 536 | To push lightweight (non annotated) tags, grant |
| 537 | <<category_create,`Create Reference`>> for reference name |
| 538 | `refs/tags/*`, as lightweight tags are implemented just like |
| 539 | branches in Git. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 540 | |
Fredrik Luthander | d774986 | 2012-01-20 07:29:43 +0100 | [diff] [blame] | 541 | To delete or overwrite an existing tag, grant `Push` with the force |
| 542 | option enabled for reference name `refs/tags/*`, as deleting a tag |
| 543 | requires the same permission as deleting a branch. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 544 | |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 545 | |
David Pursehouse | b429ce1 | 2012-12-12 11:04:40 +0900 | [diff] [blame] | 546 | [[category_push_signed]] |
| 547 | Push Signed Tag |
| 548 | ~~~~~~~~~~~~~~~ |
| 549 | |
David Pursehouse | 690cebe | 2012-12-12 19:22:45 +0900 | [diff] [blame] | 550 | This category permits users to push a PGP signed tag object into the |
| 551 | project's repository. Typically this would be done with a command |
| 552 | line such as: |
David Pursehouse | b429ce1 | 2012-12-12 11:04:40 +0900 | [diff] [blame] | 553 | |
| 554 | ==== |
| 555 | git push ssh://USER@HOST:PORT/PROJECT tag v1.0 |
| 556 | ==== |
| 557 | |
David Pursehouse | 690cebe | 2012-12-12 19:22:45 +0900 | [diff] [blame] | 558 | Or: |
| 559 | |
| 560 | ==== |
| 561 | git push https://HOST/PROJECT tag v1.0 |
| 562 | ==== |
| 563 | |
David Pursehouse | b429ce1 | 2012-12-12 11:04:40 +0900 | [diff] [blame] | 564 | Tags must be signed (created with `git tag -s`), should exist in the |
| 565 | `refs/tags/` namespace, and should be new. |
| 566 | |
| 567 | |
Fredrik Luthander | 5e1b51b | 2012-01-20 13:06:06 +0100 | [diff] [blame] | 568 | [[category_read]] |
| 569 | Read |
| 570 | ~~~~ |
| 571 | |
| 572 | The `Read` category controls visibility to the project's |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 573 | changes, comments, code diffs, and Git access over SSH or HTTP. |
Fredrik Luthander | 5e1b51b | 2012-01-20 13:06:06 +0100 | [diff] [blame] | 574 | A user must have this access granted in order to see a project, its |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 575 | changes, or any of its data. |
| 576 | |
| 577 | This category has a special behavior, where the per-project ACL is |
| 578 | evaluated before the global all projects ACL. If the per-project |
Fredrik Luthander | 5e1b51b | 2012-01-20 13:06:06 +0100 | [diff] [blame] | 579 | ACL has granted `Read` with 'DENY', and does not otherwise grant |
| 580 | `Read` with 'ALLOW', then a `Read` in the all projects ACL |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 581 | is ignored. This behavior is useful to hide a handful of projects |
| 582 | on an otherwise public server. |
| 583 | |
| 584 | For an open source, public Gerrit installation it is common to grant |
Fredrik Luthander | 5e1b51b | 2012-01-20 13:06:06 +0100 | [diff] [blame] | 585 | `Read` to `Anonymous Users` in the `All-Projects` ACL, enabling |
| 586 | casual browsing of any project's changes, as well as fetching any |
| 587 | project's repository over SSH or HTTP. New projects can be |
| 588 | temporarily hidden from public view by granting `Read` with 'DENY' |
| 589 | to `Anonymous Users` and granting `Read` to the project owner's |
| 590 | group within the per-project ACL. |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 591 | |
| 592 | For a private Gerrit installation using a trusted HTTP authentication |
Fredrik Luthander | 5e1b51b | 2012-01-20 13:06:06 +0100 | [diff] [blame] | 593 | source, granting `Read` to `Registered Users` may be more |
Fredrik Luthander | db7679a | 2011-11-03 08:52:56 +0100 | [diff] [blame] | 594 | typical, enabling read access only to those users who have been |
| 595 | able to authenticate through the HTTP access controls. This may |
| 596 | be suitable in a corporate deployment if the HTTP access control |
| 597 | is already restricted to the correct set of users. |
| 598 | |
Fredrik Luthander | 5e1b51b | 2012-01-20 13:06:06 +0100 | [diff] [blame] | 599 | |
Edwin Kempin | fd330fc | 2012-05-09 21:09:55 +0200 | [diff] [blame] | 600 | [[category_rebase]] |
| 601 | Rebase |
| 602 | ~~~~~~ |
| 603 | |
| 604 | This category permits users to rebase changes via the web UI by pushing |
| 605 | the `Rebase Change` button. |
| 606 | |
| 607 | The change owner and submitters can always rebase changes in the web UI |
| 608 | (even without having the `Rebase` access right assigned). |
| 609 | |
| 610 | Users without this access right who are able to upload new patch sets |
| 611 | can still do the rebase locally and upload the rebased commit as a new |
| 612 | patch set. |
| 613 | |
Chad Horohoe | c626f3c | 2012-09-13 11:04:20 -0700 | [diff] [blame] | 614 | [[category_remove_reviewer]] |
| 615 | Remove Reviewer |
| 616 | ~~~~~~~~~~~~~~~ |
| 617 | |
| 618 | This category permits users to remove other users from the list of |
| 619 | reviewers on a change. |
| 620 | |
| 621 | The change owner, project owner and site administrator can always |
| 622 | remove reviewers (even without having the `Remove Reviewer` access |
| 623 | right assigned). |
| 624 | |
| 625 | Users without this access right can only remove themselves from the |
| 626 | reviewer list on a change. |
| 627 | |
Edwin Kempin | fd330fc | 2012-05-09 21:09:55 +0200 | [diff] [blame] | 628 | |
Fredrik Luthander | 5e1b51b | 2012-01-20 13:06:06 +0100 | [diff] [blame] | 629 | [[category_submit]] |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 630 | Submit |
| 631 | ~~~~~~ |
| 632 | |
| 633 | This category permits users to push the `Submit Patch Set n` button |
| 634 | on the web UI. |
| 635 | |
| 636 | Submitting a change causes it to be merged into the destination |
| 637 | branch as soon as possible, making it a permanent part of the |
| 638 | project's history. |
| 639 | |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 640 | In order to submit, all labels (such as `Verified` and `Code-Review`, |
| 641 | above) must enable submit, and also must not block it. See above for |
| 642 | details on each label. |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 643 | |
Fredrik Luthander | bc75ef7 | 2012-01-26 15:57:08 +0100 | [diff] [blame] | 644 | |
David Pursehouse | 5ae7300 | 2012-11-01 15:22:26 +0900 | [diff] [blame] | 645 | [[category_view_drafts]] |
| 646 | View Drafts |
| 647 | ~~~~~~~~~~~ |
| 648 | |
| 649 | This category permits users to view draft changes uploaded by other |
| 650 | users. |
| 651 | |
| 652 | The change owner and any explicitly added reviewers can always see |
| 653 | draft changes (even without having the `View Drafts` access right |
| 654 | assigned). |
| 655 | |
| 656 | |
David Pursehouse | be7f458 | 2012-12-12 11:21:29 +0900 | [diff] [blame] | 657 | [[category_publish_drafts]] |
| 658 | Publish Drafts |
| 659 | ~~~~~~~~~~~~~~ |
| 660 | |
| 661 | This category permits users to publish draft changes uploaded by other |
| 662 | users. |
| 663 | |
| 664 | The change owner can always publish draft changes (even without having |
| 665 | the `Publish Drafts` access right assigned). |
| 666 | |
| 667 | |
| 668 | [[category_delete_drafts]] |
| 669 | Delete Drafts |
| 670 | ~~~~~~~~~~~~~ |
| 671 | |
| 672 | This category permits users to delete draft changes uploaded by other |
| 673 | users. |
| 674 | |
| 675 | The change owner can always delete draft changes (even without having |
| 676 | the `Delete Drafts` access right assigned). |
| 677 | |
| 678 | |
David Pursehouse | 59aee36 | 2012-11-15 17:25:17 +0900 | [diff] [blame] | 679 | [[category_edit_topic_name]] |
| 680 | Edit Topic Name |
| 681 | ~~~~~~~~~~~~~~~ |
| 682 | |
| 683 | This category permits users to edit the topic name of a change that |
| 684 | is uploaded for review. |
| 685 | |
| 686 | The change owner, branch owners, project owners, and site administrators |
| 687 | can always edit the topic name (even without having the `Edit Topic Name` |
| 688 | access right assigned). |
| 689 | |
| 690 | |
Fredrik Luthander | bc75ef7 | 2012-01-26 15:57:08 +0100 | [diff] [blame] | 691 | Examples of typical roles in a project |
| 692 | -------------------------------------- |
| 693 | |
| 694 | Below follows a set of typical roles on a server and which access |
| 695 | rights these roles typically should be granted. You may see them as |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 696 | general guidelines for a typical way to set up your project on a |
Fredrik Luthander | bc75ef7 | 2012-01-26 15:57:08 +0100 | [diff] [blame] | 697 | brand new Gerrit instance. |
| 698 | |
| 699 | [[examples_contributor]] |
| 700 | Contributor |
| 701 | ~~~~~~~~~~~ |
| 702 | |
| 703 | This is the typical user on a public server. They are able to read |
| 704 | your project and upload new changes to it. They are able to give |
| 705 | feedback on other changes as well, but are unable to block or approve |
| 706 | any changes. |
| 707 | |
| 708 | Suggested access rights to grant: |
| 709 | |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 710 | * xref:category_read[`Read`] on 'refs/heads/\*' and 'refs/tags/*' |
| 711 | * xref:category_push[`Push`] to 'refs/for/refs/heads/*' |
| 712 | * link:config-labels.html#label_Code-Review[`Code-Review`] with range '-1' to '+1' for 'refs/heads/*' |
Fredrik Luthander | bc75ef7 | 2012-01-26 15:57:08 +0100 | [diff] [blame] | 713 | |
| 714 | |
Fredrik Luthander | 654161c | 2012-01-31 14:42:36 +0100 | [diff] [blame] | 715 | [[examples_developer]] |
| 716 | Developer |
| 717 | ~~~~~~~~~ |
| 718 | |
| 719 | This is the typical core developer on a public server. They are able |
| 720 | to read the project, upload changes to a branch. They are allowed to |
| 721 | push merge commits to merge branches together. Also, they are allowed |
| 722 | to forge author identity, thus handling commits belonging to others |
| 723 | than themselves, effectively allowing them to transfer commits |
| 724 | between different branches. |
| 725 | |
| 726 | They are furthermore able to code review and verify commits, and |
| 727 | eventually submit them. If you have an automated CI system that |
| 728 | builds all uploaded patch sets you might want to skip the |
| 729 | verification rights for the developer and let the CI system do that |
| 730 | exclusively. |
| 731 | |
| 732 | Suggested access rights to grant: |
| 733 | |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 734 | * xref:category_read[`Read`] on 'refs/heads/\*' and 'refs/tags/*' |
| 735 | * xref:category_push[`Push`] to 'refs/for/refs/heads/*' |
| 736 | * xref:category_push_merge[`Push merge commit`] to 'refs/for/refs/heads/*' |
| 737 | * xref:category_forge_author[`Forge Author Identity`] to 'refs/heads/*' |
| 738 | * link:config-labels.html#label_Code-Review[`Label: Code-Review`] with range '-2' to '+2' for 'refs/heads/*' |
| 739 | * link:config-labels.html#label_Verified[`Label: Verify`] with range '-1' to '+1' for 'refs/heads/*' |
| 740 | * xref:category_submit[`Submit`] |
Fredrik Luthander | 654161c | 2012-01-31 14:42:36 +0100 | [diff] [blame] | 741 | |
| 742 | If the project is small or the developers are seasoned it might make |
| 743 | sense to give them the freedom to push commits directly to a branch. |
| 744 | |
| 745 | Optional access rights to grant: |
| 746 | |
| 747 | * <<category_push,`Push`>> to 'refs/heads/*' |
| 748 | * <<category_push_merge,`Push merge commit`>> to 'refs/heads/*' |
| 749 | |
| 750 | |
Fredrik Luthander | f2105be | 2012-01-27 12:44:05 +0100 | [diff] [blame] | 751 | [[examples_cisystem]] |
| 752 | CI system |
| 753 | ~~~~~~~~~ |
| 754 | |
| 755 | A typical Continous Integration system should be able to download new changes |
| 756 | to build and then leave a verdict somehow. |
| 757 | |
| 758 | As an example, the popular |
| 759 | link:https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Trigger[gerrit-trigger plugin] |
| 760 | for Jenkins/Hudson can set labels at: |
| 761 | |
| 762 | * The start of a build |
| 763 | * A successful build |
| 764 | * An unstable build (tests fails) |
| 765 | * A failed build |
| 766 | |
| 767 | Usually the range chosen for this verdict is the verify label. Depending on |
| 768 | the size of your project and discipline of involved developers you might want |
| 769 | to limit access right to the +1 `Verify` label to the CI system only. That |
| 770 | way it's guaranteed that submitted commits always get built and pass tests |
| 771 | successfully. |
| 772 | |
| 773 | If the build doesn't complete successfully the CI system can set the |
| 774 | `Verify` label to -1. However that means that a failed build will block |
| 775 | submit of the change even if someone else sets `Verify` +1. Depending on the |
| 776 | project and how much the CI system can be trusted for accurate results, a |
| 777 | blocking label might not be feasible. A recommended alternative is to set the |
| 778 | label `Code-review` to -1 instead, as it isn't a blocking label but still |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 779 | shows a red label in the Gerrit UI. Optionally, to enable the possibility to |
| 780 | deliver different results (build error vs unstable for instance), it's also |
Fredrik Luthander | f2105be | 2012-01-27 12:44:05 +0100 | [diff] [blame] | 781 | possible to set `Code-review` +1 as well. |
| 782 | |
Edwin Kempin | a2e13cf | 2012-03-30 09:02:36 +0200 | [diff] [blame] | 783 | If pushing new changes is granted, it's possible to automate cherry-pick of |
Fredrik Luthander | f2105be | 2012-01-27 12:44:05 +0100 | [diff] [blame] | 784 | submitted changes for upload to other branches under certain conditions. This |
| 785 | is probably not the first step of what a project wants to automate however, |
| 786 | and so the push right can be found under the optional section. |
| 787 | |
| 788 | Suggested access rights to grant, that won't block changes: |
| 789 | |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 790 | * xref:category_read[`Read`] on 'refs/heads/\*' and 'refs/tags/*' |
| 791 | * link:config-labels.html#label_Code-Review[`Label: Code-Review`] with range '-1' to '0' for 'refs/heads/*' |
| 792 | * link:config-labels.html#label_Verified[`Label: Verify`] with range '0' to '+1' for 'refs/heads/*' |
Fredrik Luthander | f2105be | 2012-01-27 12:44:05 +0100 | [diff] [blame] | 793 | |
| 794 | Optional access rights to grant: |
| 795 | |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 796 | * link:config-labels.html#label_Code-Review[`Label: Code-Review`] with range '-1' to '+1' for 'refs/heads/*' |
| 797 | * xref:category_push[`Push`] to 'refs/for/refs/heads/*' |
Fredrik Luthander | f2105be | 2012-01-27 12:44:05 +0100 | [diff] [blame] | 798 | |
| 799 | |
Fredrik Luthander | fe72002 | 2012-03-22 17:29:39 +0100 | [diff] [blame] | 800 | [[examples_integrator]] |
| 801 | Integrator |
| 802 | ~~~~~~~~~~ |
| 803 | |
| 804 | Integrators are like developers but with some additional rights granted due |
| 805 | to their administrative role in a project. They can upload or push any commit |
| 806 | with any committer email (not just their own) and they can also create new |
| 807 | tags and branches. |
| 808 | |
| 809 | Suggested access rights to grant: |
| 810 | |
| 811 | * <<examples_developer,Developer rights>> |
| 812 | * <<category_push,`Push`>> to 'refs/heads/*' |
| 813 | * <<category_push_merge,`Push merge commit`>> to 'refs/heads/*' |
Fredrik Luthander | 404a285 | 2012-10-10 08:51:22 +0200 | [diff] [blame] | 814 | * <<category_forge_committer,`Forge Committer Identity`>> to 'refs/for/refs/heads/*' |
Fredrik Luthander | fe72002 | 2012-03-22 17:29:39 +0100 | [diff] [blame] | 815 | * <<category_create,`Create Reference`>> to 'refs/heads/*' |
| 816 | * <<category_push_annotated,`Push Annotated Tag`>> to 'refs/tags/*' |
| 817 | |
| 818 | |
Fredrik Luthander | 9c64536 | 2012-03-22 18:10:42 +0100 | [diff] [blame] | 819 | [[examples_project-owner]] |
| 820 | Project owner |
| 821 | ~~~~~~~~~~~~~ |
| 822 | |
| 823 | The project owner is almost like an integrator but with additional destructive |
| 824 | power in the form of being able to delete branches. Optionally these users |
| 825 | also have the power to configure access rights in gits assigned to them. |
| 826 | |
| 827 | [WARNING] |
| 828 | These users should be really knowledgable about git, for instance knowing why |
| 829 | tags never should be removed from a server. This role is granted potentially |
| 830 | destructive access rights and cleaning up after such a mishap could be time |
| 831 | consuming! |
| 832 | |
| 833 | Suggested access rights to grant: |
| 834 | |
| 835 | * <<examples_integrator,Integrator rights>> |
| 836 | * <<category_push,`Push`>> with the force option to 'refs/heads/\*' and 'refs/tags/*' |
| 837 | |
| 838 | Optional access right to grant: |
| 839 | |
| 840 | * <<category_owner,`Owner`>> in the gits they mostly work with. |
| 841 | |
Fredrik Luthander | 5a8e7d8 | 2012-03-22 17:29:39 +0100 | [diff] [blame] | 842 | [[examples_administrator]] |
| 843 | Administrator |
| 844 | ~~~~~~~~~~~~~ |
| 845 | |
| 846 | The administrator role is the most powerful role known in the Gerrit universe. |
| 847 | This role may grant itself (or others) any access right, and it already has |
| 848 | all capabilities granted as well. By default the |
| 849 | <<administrators,`Administrators` group>> is the group that has this role. |
| 850 | |
| 851 | Mandatory access rights: |
| 852 | |
| 853 | * <<capability_administrateServer,The `Administrate Server` capability>> |
| 854 | |
| 855 | Suggested access rights to grant: |
| 856 | |
| 857 | * <<examples_project-owner,Project owner rights>> |
| 858 | |
Sasa Zivkov | d589f46 | 2013-02-12 14:27:09 +0100 | [diff] [blame] | 859 | Enforcing site wide access policies |
| 860 | ----------------------------------- |
| 861 | |
| 862 | By granting the <<category_owner,`Owner`>> access right on the `refs/*` to a |
| 863 | group, Gerrit administrators can delegate the responsibility of maintaining |
| 864 | access rights for that project to that group. |
| 865 | |
| 866 | In a corporate deployment it is often necessary to enforce some access |
| 867 | policies. An example could be that no-one can update or delete a tag, not even |
| 868 | the project owners. The 'ALLOW' and 'DENY' rules are not enough for this |
| 869 | purpose as project owners can grant themselves any access right they wish and, |
| 870 | thus, effectively override any inherited access rights from the |
| 871 | "`All-Projects`" or some other common parent project. |
| 872 | |
| 873 | What is needed is a mechanism to block a permission in a parent project so |
| 874 | that even project owners cannot allow a blocked permission in their child |
| 875 | project. Still, project owners should retain the possibility to manage all |
| 876 | non-blocked rules as they wish. This gives best of both worlds: |
| 877 | |
| 878 | * Gerrit administrators can concentrate on enforcing site wide policies |
| 879 | and providing a meaningful set of default access permissions |
| 880 | * Project owners can manage access rights of their projects without a danger |
| 881 | of violating a site wide policy |
| 882 | |
| 883 | 'BLOCK' access rule |
| 884 | ~~~~~~~~~~~~~~~~~~~ |
| 885 | |
| 886 | The 'BLOCK' rule blocks a permission globally. An inherited 'BLOCK' rule cannot |
Sasa Zivkov | cff084b | 2013-01-15 18:52:32 +0100 | [diff] [blame] | 887 | be overridden in the inheriting project. Any 'ALLOW' rule, from a different |
| 888 | access section or from an inheriting project, which conflicts with an |
| 889 | inherited 'BLOCK' rule will not be honored. Searching for 'BLOCK' rules, in |
Sasa Zivkov | d589f46 | 2013-02-12 14:27:09 +0100 | [diff] [blame] | 890 | the chain of parent projects, ignores the Exclusive flag that is normally |
| 891 | applied to access sections. |
| 892 | |
| 893 | A 'BLOCK' rule that blocks the 'push' permission blocks any type of push, |
| 894 | force or not. A blocking force push rule blocks only force pushes, but |
| 895 | allows non-forced pushes if an 'ALLOW' rule would have permitted it. |
| 896 | |
| 897 | It is also possible to block label ranges. To block a group 'X' from voting |
| 898 | '-2' and '+2', but keep their existing voting permissions for the '-1..+1' |
| 899 | range intact we would define: |
| 900 | |
| 901 | ==== |
| 902 | [access "refs/heads/*"] |
| 903 | label-Code-Review = block -2..+2 group X |
| 904 | ==== |
| 905 | |
| 906 | The interpretation of the 'min..max' range in case of a blocking rule is: block |
| 907 | every vote from '-INFINITE..min' and 'max..INFINITE'. For the example above it |
| 908 | means that the range '-1..+1' is not affected by this block. |
| 909 | |
Sasa Zivkov | cff084b | 2013-01-15 18:52:32 +0100 | [diff] [blame] | 910 | 'BLOCK' and 'ALLOW' rules in the same access section |
| 911 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 912 | |
| 913 | When an access section of a project contains a 'BLOCK' and an 'ALLOW' rule for |
| 914 | the same permission then this 'ALLOW' rule overrides the 'BLOCK' rule: |
| 915 | |
| 916 | ==== |
| 917 | [access "refs/heads/*"] |
| 918 | push = block group X |
| 919 | push = group Y |
| 920 | ==== |
| 921 | |
| 922 | In this case a user which is a member of the group 'Y' will still be allowed to |
| 923 | push to 'refs/heads/*' even if it is a member of the group 'X'. |
| 924 | |
| 925 | NOTE: An 'ALLOW' rule overrides a 'BLOCK' rule only when both of them are |
| 926 | inside the same access section of the same project. An 'ALLOW' rule in a |
| 927 | different access section of the same project or in any access section in an |
| 928 | inheriting project cannot override a 'BLOCK' rule. |
| 929 | |
Sasa Zivkov | d589f46 | 2013-02-12 14:27:09 +0100 | [diff] [blame] | 930 | Examples |
| 931 | ~~~~~~~~ |
| 932 | |
| 933 | The following examples show some possible use cases for the 'BLOCK' rules. |
| 934 | |
| 935 | Make sure no one can update or delete a tag |
| 936 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 937 | |
| 938 | This requirement is quite common in a corporate deployment where |
| 939 | reproducibility of a build must be guaranteed. To achieve that we block 'push' |
| 940 | permission for the <<anonymous_users,'Anonymous Users'>> in "`All-Projects`": |
| 941 | |
| 942 | ==== |
| 943 | [access "refs/tags/*"] |
| 944 | push = block group Anonymous Users |
| 945 | ==== |
| 946 | |
| 947 | By blocking the <<anonymous_users,'Anonymous Users'>> we effectively block |
| 948 | everyone as everyone is a member of that group. Note that the permission to |
| 949 | create a tag is still necessary. Assuming that only <<category_owner,project |
| 950 | owners>> are allowed to create tags, we would extend the example above: |
| 951 | |
| 952 | ==== |
| 953 | [access "refs/tags/*"] |
| 954 | push = block group Anonymous Users |
| 955 | create = group Project Owners |
| 956 | pushTag = group Project Owners |
| 957 | ==== |
Fredrik Luthander | 9c64536 | 2012-03-22 18:10:42 +0100 | [diff] [blame] | 958 | |
Sasa Zivkov | cff084b | 2013-01-15 18:52:32 +0100 | [diff] [blame] | 959 | Let only a dedicated group vote in a special category |
| 960 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 961 | |
| 962 | Assume there is a more restrictive process for submitting changes in stable |
| 963 | release branches which is manifested as a new voting category |
| 964 | 'Release-Process'. Assume we want to make sure that only a 'Release Engineers' |
| 965 | group can vote in this category and that even project owners cannot approve |
| 966 | this category. We have to block everyone except the 'Release Engineers' to vote |
| 967 | in this category and, of course, allow 'Release Engineers' to vote in that |
| 968 | category. In the "`All-Projects`" we define the following rules: |
| 969 | |
| 970 | ==== |
| 971 | [access "refs/heads/stable*"] |
| 972 | label-Release-Proces = block -1..+1 group Anonymous Users |
| 973 | label-Release-Proces = -1..+1 group Release Engineers |
| 974 | ==== |
| 975 | |
Fredrik Luthander | 7126706 | 2011-12-21 18:38:45 +0100 | [diff] [blame] | 976 | [[conversion_table]] |
| 977 | Conversion table from 2.1.x series to 2.2.x series |
| 978 | -------------------------------------------------- |
| 979 | |
| 980 | [options="header"] |
| 981 | |================================================================================= |
| 982 | |Gerrit 2.1.x |Gerrit 2.2.x |
Dave Borowitz | 01c1b1f | 2013-02-27 13:49:04 -0800 | [diff] [blame^] | 983 | |Code review |link:config-labels.html#label_Code-Review[Label: Code-Review] |
| 984 | |Verify |link:config-labels.html#label_Verified[Label: Verify] |
Fredrik Luthander | b7bd7e4 | 2012-01-23 16:01:37 +0100 | [diff] [blame] | 985 | |Forge Identity +1 |Forge <<category_forge_author,author>> identity |
| 986 | |Forge Identity +2 |Forge <<category_forge_committer,committer>> & <<category_forge_author,author>> identity |
| 987 | |Forge Identity +3 |Forge <<category_forge_server,server>> & <<category_forge_committer,committer>> & <<category_forge_author,author>> identity |
| 988 | |Owner |<<category_owner,Owner>> |
| 989 | |Push branch +1 |<<category_push_direct,Push>> |
| 990 | |Push branch +2 |<<category_create,Create reference>> & <<category_push_direct,Push>> |
| 991 | |Push branch +3 |<<category_push_direct,Push>> (with force) & <<category_create,Create reference>> |
Fredrik Luthander | 7126706 | 2011-12-21 18:38:45 +0100 | [diff] [blame] | 992 | |Push tag +1 & Push Branch +2 |No support to limit to push signed tag |
Fredrik Luthander | b7bd7e4 | 2012-01-23 16:01:37 +0100 | [diff] [blame] | 993 | |Push tag +2 & Push Branch +2 |<<category_push_annotated,Push annotated tag>> |
| 994 | |Push Branch +2 (refs/tags/*) |<<category_create,Create reference>> (refs/tags/...) |
| 995 | |Push Branch +3 (refs/tags/*) |<<category_push_direct,Push>> (with force on refs/tags/...) |
| 996 | |Read +1 |<<category_read,Read>> |
| 997 | |Read +2 |<<category_read,Read>> & <<category_push_review,Push>> (refs/for/refs/...) |
Edwin Kempin | aef5d6e | 2012-01-24 09:04:54 +0100 | [diff] [blame] | 998 | |Read +3 |<<category_read,Read>> & <<category_push_review,Push>> (refs/for/refs/...) & <<category_push_merge,Push Merge Commit>> |
Fredrik Luthander | b7bd7e4 | 2012-01-23 16:01:37 +0100 | [diff] [blame] | 999 | |Submit |<<category_submit,Submit>> |
Fredrik Luthander | 7126706 | 2011-12-21 18:38:45 +0100 | [diff] [blame] | 1000 | |================================================================================= |
| 1001 | |
Fredrik Luthander | b7bd7e4 | 2012-01-23 16:01:37 +0100 | [diff] [blame] | 1002 | |
Fredrik Luthander | 7126706 | 2011-12-21 18:38:45 +0100 | [diff] [blame] | 1003 | [NOTE] |
| 1004 | In Gerrit 2.2.x, the way to set permissions for upload has changed entirely. |
| 1005 | To upload a change for review is no longer a separate permission type, |
| 1006 | instead you grant ordinary push permissions to the actual |
| 1007 | recieving reference. In practice this means that you set push permissions |
| 1008 | on `refs/for/refs/heads/<branch>` rather than permissions to upload changes |
| 1009 | on `refs/heads/<branch>`. |
| 1010 | |
Fredrik Luthander | 80ebf9d | 2012-02-13 09:32:43 +0100 | [diff] [blame] | 1011 | |
| 1012 | System capabilities |
| 1013 | ------------------- |
| 1014 | |
| 1015 | The system capabilities control actions that the administrators of |
| 1016 | the server can perform which usually affect the entire |
| 1017 | server in some way. The administrators may delegate these |
| 1018 | capabilities to trusted groups of users. |
| 1019 | |
| 1020 | Delegation of capabilities allows groups to be granted a subset of |
| 1021 | administrative capabilities without being given complete |
| 1022 | administrative control of the server. This makes it possible to |
| 1023 | keep fewer users in the administrators group, even while spreading |
| 1024 | much of the server administration burden out to more users. |
| 1025 | |
| 1026 | Below you find a list of capabilities available: |
| 1027 | |
| 1028 | |
Fredrik Luthander | 426885f | 2012-02-13 09:56:57 +0100 | [diff] [blame] | 1029 | [[capability_administrateServer]] |
| 1030 | Administrate Server |
| 1031 | ~~~~~~~~~~~~~~~~~~~ |
| 1032 | |
| 1033 | This is in effect the owner and administrator role of the Gerrit |
| 1034 | instance. Any members of a group granted this capability will be |
| 1035 | able to grant any access right to any group. They will also have all |
| 1036 | capabilities granted to them automatically. |
| 1037 | |
| 1038 | |
Fredrik Luthander | b02afca | 2012-02-13 09:59:48 +0100 | [diff] [blame] | 1039 | [[capability_createAccount]] |
| 1040 | Create Account |
| 1041 | ~~~~~~~~~~~~~~ |
| 1042 | |
Fredrik Luthander | 79d3815 | 2012-03-13 09:52:22 +0100 | [diff] [blame] | 1043 | Allow link:cmd-create-account.html[account creation over the ssh prompt]. |
Fredrik Luthander | b02afca | 2012-02-13 09:59:48 +0100 | [diff] [blame] | 1044 | This capability allows the granted group members to create non-interactive |
| 1045 | service accounts. These service accounts are generally used for automation |
| 1046 | and made to be members of the |
| 1047 | link:access-control.html#non-interactive_users['Non-Interactive users'] group. |
| 1048 | |
| 1049 | |
Fredrik Luthander | 79d3815 | 2012-03-13 09:52:22 +0100 | [diff] [blame] | 1050 | [[capability_createGroup]] |
| 1051 | Create Group |
| 1052 | ~~~~~~~~~~~~ |
| 1053 | |
| 1054 | Allow group creation. Groups are used to grant users access to different |
| 1055 | actions in projects. This capability allows the granted group members to |
| 1056 | either link:cmd-create-group.html[create new groups via ssh] or via the web UI. |
| 1057 | |
| 1058 | |
| 1059 | [[capability_createProject]] |
| 1060 | Create Project |
| 1061 | ~~~~~~~~~~~~~~ |
| 1062 | |
| 1063 | Allow project creation. This capability allows the granted group to |
| 1064 | either link:cmd-create-project.html[create new git projects via ssh] |
| 1065 | or via the web UI. |
| 1066 | |
Sasa Zivkov | 812f489 | 2012-06-21 16:25:21 +0200 | [diff] [blame] | 1067 | [[capability_emailReviewers]] |
| 1068 | Email Reviewers |
| 1069 | ~~~~~~~~~~~~~~~ |
| 1070 | |
| 1071 | Allow or deny sending email to change reviewers and watchers. This can be used |
| 1072 | to deny build bots from emailing reviewers and people who watch the change. |
| 1073 | Instead, only the authors of the change and those who starred it will be |
| 1074 | emailed. The allow rules are evaluated before deny rules, however the default |
| 1075 | is to allow emailing, if no explicit rule is matched. |
Fredrik Luthander | 79d3815 | 2012-03-13 09:52:22 +0100 | [diff] [blame] | 1076 | |
Fredrik Luthander | 74ad0d0 | 2012-03-13 13:06:30 +0100 | [diff] [blame] | 1077 | [[capability_flushCaches]] |
| 1078 | Flush Caches |
| 1079 | ~~~~~~~~~~~~ |
| 1080 | |
Fredrik Luthander | 4860300 | 2012-03-21 18:17:17 +0100 | [diff] [blame] | 1081 | Allow the flushing of Gerrit's caches. This capability allows the granted |
Fredrik Luthander | 74ad0d0 | 2012-03-13 13:06:30 +0100 | [diff] [blame] | 1082 | group to link:cmd-flush-caches.html[flush some or all Gerrit caches via ssh]. |
| 1083 | |
| 1084 | [NOTE] |
| 1085 | This capability doesn't imply permissions to the show-caches command. For that |
| 1086 | you need the <<capability_viewCaches,view caches capability>>. |
| 1087 | |
| 1088 | |
Fredrik Luthander | 4684302 | 2012-03-13 16:11:02 +0100 | [diff] [blame] | 1089 | [[capability_kill]] |
| 1090 | Kill Task |
| 1091 | ~~~~~~~~~ |
| 1092 | |
| 1093 | Allow the operation of the link:cmd-kill.html[kill command over ssh]. The |
| 1094 | kill command ends tasks that currently occupy the Gerrit server, usually |
| 1095 | a replication task or a user initiated task such as an upload-pack or |
| 1096 | recieve-pack. |
| 1097 | |
| 1098 | |
| 1099 | [[capability_priority]] |
| 1100 | Priority |
| 1101 | ~~~~~~~~ |
| 1102 | |
| 1103 | This capability allows users to use |
| 1104 | link:config-gerrit.html#sshd.batchThreads[the thread pool reserved] for |
| 1105 | link:access-control.html#non-interactive_users['Non-Interactive Users']. |
| 1106 | It's a binary value in that granted users either have access to the thread |
| 1107 | pool, or they don't. |
| 1108 | |
| 1109 | There are three modes for this capability and they're listed by rising |
| 1110 | priority: |
| 1111 | |
| 1112 | No capability configured.:: |
| 1113 | The user isn't a member of a group with any priority capability granted. By |
| 1114 | default the user is then in the 'INTERACTIVE' thread pool. |
| 1115 | |
| 1116 | 'BATCH':: |
| 1117 | If there's a thread pool configured for 'Non-Interactive Users' and a user is |
| 1118 | granted the priority capability with the 'BATCH' mode selected, the user ends |
| 1119 | up in the separate batch user thread pool. This is true unless the user is |
| 1120 | also granted the below 'INTERACTIVE' option. |
| 1121 | |
| 1122 | 'INTERACTIVE':: |
| 1123 | If a user is granted the priority capability with the 'INTERACTIVE' option, |
| 1124 | regardless if they also have the 'BATCH' option or not, they are in the |
| 1125 | 'INTERACTIVE' thread pool. |
| 1126 | |
| 1127 | |
Fredrik Luthander | 80ebf9d | 2012-02-13 09:32:43 +0100 | [diff] [blame] | 1128 | [[capability_queryLimit]] |
| 1129 | Query Limit |
| 1130 | ~~~~~~~~~~~ |
| 1131 | |
| 1132 | Allow site administrators to configure the query limit for users to |
| 1133 | be above the default hard-coded value of 500. Administrators can add |
| 1134 | a global block to `All-Projects` with group(s) that |
| 1135 | should have different limits: |
| 1136 | |
| 1137 | When applying a query limit to a user the largest value granted by |
| 1138 | any of their groups is used. |
| 1139 | |
| 1140 | This limit applies not only to the link:cmd-query.html[`gerrit query`] |
| 1141 | command, but also to the web UI results pagination size. |
| 1142 | |
| 1143 | |
Chad Horohoe | abd6d4e | 2013-02-14 16:27:34 -0500 | [diff] [blame] | 1144 | [[capability_accessDatabase]] |
| 1145 | Access Database |
| 1146 | ~~~~~~~~~~~~~~~ |
| 1147 | |
| 1148 | Allow users to access the database using the `gsql` command. |
| 1149 | |
| 1150 | |
Fredrik Luthander | 9c7da66 | 2012-03-13 17:49:27 +0100 | [diff] [blame] | 1151 | [[capability_startReplication]] |
| 1152 | Start Replication |
| 1153 | ~~~~~~~~~~~~~~~~~ |
| 1154 | |
Shawn O. Pearce | 7d2cb04 | 2012-05-10 19:12:09 -0700 | [diff] [blame] | 1155 | Allow access to execute `replication start` command, if the |
| 1156 | replication plugin is installed on the server. |
Fredrik Luthander | 9c7da66 | 2012-03-13 17:49:27 +0100 | [diff] [blame] | 1157 | |
| 1158 | |
| 1159 | [[capability_viewCaches]] |
| 1160 | View Caches |
| 1161 | ~~~~~~~~~~~ |
| 1162 | |
Fredrik Luthander | 4860300 | 2012-03-21 18:17:17 +0100 | [diff] [blame] | 1163 | Allow querying for status of Gerrit's internal caches. This capability allows |
Fredrik Luthander | 9c7da66 | 2012-03-13 17:49:27 +0100 | [diff] [blame] | 1164 | the granted group to |
| 1165 | link:cmd-show-caches.html[look at some or all Gerrit caches via ssh]. |
| 1166 | |
| 1167 | |
Fredrik Luthander | 4860300 | 2012-03-21 18:17:17 +0100 | [diff] [blame] | 1168 | [[capability_viewConnections]] |
| 1169 | View Connections |
| 1170 | ~~~~~~~~~~~~~~~~ |
| 1171 | |
| 1172 | Allow querying for status of Gerrit's current client connections. This |
| 1173 | capability allows the granted group to |
| 1174 | link:cmd-show-connections.html[look at Gerrit's current connections via ssh]. |
| 1175 | |
| 1176 | |
| 1177 | [[capability_viewQueue]] |
| 1178 | View Queue |
| 1179 | ~~~~~~~~~~ |
| 1180 | |
| 1181 | Allow querying for status of Gerrit's internal task queue. This capability |
| 1182 | allows the granted group to |
| 1183 | link:cmd-show-queue.html[look at the Gerrit task queue via ssh]. |
| 1184 | |
| 1185 | |
Shawn O. Pearce | 5500e69 | 2009-05-28 15:55:01 -0700 | [diff] [blame] | 1186 | GERRIT |
| 1187 | ------ |
| 1188 | Part of link:index.html[Gerrit Code Review] |