Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 1 | Gerrit2 - Access Controls |
| 2 | ========================= |
| 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 |
| 6 | to those groups. Groups cannot be nested, and access rights cannot |
| 7 | be granted to individual users. |
| 8 | |
| 9 | |
| 10 | System Groups |
| 11 | ------------- |
| 12 | |
| 13 | Gerrit comes with 3 system groups, with special access privileges |
| 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 | |
| 18 | Administrators |
| 19 | ~~~~~~~~~~~~~~ |
| 20 | |
| 21 | This is the Gerrit "root" identity. |
| 22 | |
| 23 | Users in the 'Administrators' group can perform any action under |
| 24 | the Admin menu, to any group or project, without further validation |
| 25 | of any other access controls. In most installations only those |
| 26 | users who have direct filesystem and database access would be |
| 27 | placed into this group. |
| 28 | |
| 29 | Membership in the 'Administrators' group does not imply any other |
| 30 | access rights. Administrators do not automatically get code review |
| 31 | approval or submit rights in projects. This is a feature designed |
| 32 | to permit adminstrative users to otherwise access Gerrit as any |
| 33 | other normal user would, without needing two different accounts. |
| 34 | |
| 35 | Anonymous Users |
| 36 | ~~~~~~~~~~~~~~~ |
| 37 | |
| 38 | All users are automatically a member of this group. Users who are |
| 39 | not signed in are a member of only this group, and no others. |
| 40 | |
| 41 | Any access rights assigned to this group are inherited by all users. |
| 42 | |
| 43 | Administrators and project owners can grant access rights to this |
| 44 | group in order to permit anonymous users to view project changes, |
| 45 | without requiring sign in first. Currently it is only worthwhile |
| 46 | to grant `Read Access` to this group as Gerrit requires an account |
| 47 | identity for all other operations. |
| 48 | |
| 49 | Registered Users |
| 50 | ~~~~~~~~~~~~~~~~ |
| 51 | |
| 52 | All signed-in users are automatically a member of this group (and |
| 53 | also 'Anonymous Users', see above). |
| 54 | |
| 55 | Any access rights assigned to this group are inherited by all |
| 56 | users as soon as they sign-in to Gerrit. If OpenID authentication |
| 57 | is being employed, moving from only 'Anonymous Users' into this |
| 58 | group is very easy. Caution should be taken when assigning any |
| 59 | permissions to this group. |
| 60 | |
| 61 | It is typical to assign `Code Review -1..+1` to this group, |
| 62 | allowing signed-in users to vote on a change, but not actually |
| 63 | cause it to become approved or rejected. |
| 64 | |
| 65 | Registered users are always permitted to make and publish comments |
| 66 | on any change in any project they have `Read Access` to. |
| 67 | |
| 68 | |
| 69 | Account Groups |
| 70 | -------------- |
| 71 | |
| 72 | Account groups contain a list of zero or more user account members, |
| 73 | added individually by a group owner. Any user account listed as |
| 74 | a group member is given any access rights granted to the group. |
| 75 | |
| 76 | To keep the schema simple to manage, groups cannot be nested. |
| 77 | Only individual user accounts can be added as a member. |
| 78 | |
| 79 | Every group has one other group designated as its owner. Users who |
| 80 | are members of the owner group can: |
| 81 | |
| 82 | * Add users to this group |
| 83 | * Remove users from this group |
| 84 | * Change the name of this group |
| 85 | * Change the description of this group |
| 86 | * Change the owner of this group, to another group |
| 87 | |
| 88 | It is permissible for a group to own itself, allowing the group |
| 89 | members to directly manage who their peers are. |
| 90 | |
| 91 | Newly created groups are automatically created as owning themselves, |
| 92 | with the creating user as the only member. This permits the group |
| 93 | creator to add additional members, and change the owner to another |
| 94 | group if desired. |
| 95 | |
| 96 | It is somewhat common to create two groups at the same time, |
| 97 | for example `Foo` and `Foo-admin`, where the latter group |
| 98 | `Foo-admin` owns both itself and also group `Foo`. Users who |
| 99 | are members of `Foo-admin` can thus control the membership of |
| 100 | `Foo`, without actually having the access rights granted to `Foo`. |
| 101 | This configuration can help prevent accidental submits when the |
| 102 | members of `Foo` have submit rights on a project, and the members of |
| 103 | `Foo-admin` typically do not need to have such rights. |
| 104 | |
| 105 | |
| 106 | Project Access Control Lists |
| 107 | ---------------------------- |
| 108 | |
| 109 | A system wide access control list affecting all projects is stored |
| 110 | in project id 0 (named "`\-- All Projects \--`" in a default |
| 111 | installation). Only the id is recognized as special by Gerrit. |
| 112 | |
| 113 | Per-project access control lists are also supported. |
| 114 | |
| 115 | Users are permitted to use the maximum range granted to any of their |
| 116 | groups in an approval category. For example, a user is a member of |
| 117 | `Foo Leads`, and the following ACLs are granted on a project: |
| 118 | |
| 119 | [grid="all"] |
| 120 | `----------------`-------------`------- |
| 121 | Group Category Range |
| 122 | --------------------------------------- |
| 123 | Anonymous Users Code Review -1..+1 |
| 124 | Registered Users Code Review -1..+2 |
| 125 | Foo Leads Code Review -2..0 |
| 126 | --------------------------------------- |
| 127 | |
| 128 | Then the effective range permitted to be used by the user is |
| 129 | `-2..+2`, as the user is a member of all three groups (see above |
| 130 | about the system groups) and the maximum range is chosen (so the |
| 131 | lowest value granted to any group, and the highest value granted |
| 132 | to any group). |
| 133 | |
Shawn O. Pearce | a229966 | 2009-02-25 14:34:40 -0800 | [diff] [blame^] | 134 | OpenID Authentication |
| 135 | ~~~~~~~~~~~~~~~~~~~~~ |
| 136 | |
| 137 | If the Gerrit instance is configured to use OpenID authentication, |
| 138 | an account's effective group membership will be restricted to only |
| 139 | the `Anonymous Users` and `Registered Users` groups, unless *all* |
| 140 | of its OpenID identities match one or more of the patterns listed |
| 141 | in the `trusted_external_ids` table. |
| 142 | |
Shawn O. Pearce | 4b122b8 | 2009-02-18 18:22:14 -0800 | [diff] [blame] | 143 | All Projects |
| 144 | ~~~~~~~~~~~~ |
| 145 | |
| 146 | Only members of the group `Administrators` may edit the access |
| 147 | control list for `\-- All Projects \--`. |
| 148 | |
| 149 | Ownership of this project cannot be delegated to another group. |
| 150 | |
| 151 | Any access right granted to a group within `\-- All Projects \--` |
| 152 | is automatically inherited by every other project in the same |
| 153 | Gerrit instance. These rights can be seen, but not modified, |
| 154 | in any other project's `Access` administration tab. |
| 155 | |
| 156 | Per-Project |
| 157 | ~~~~~~~~~~~ |
| 158 | |
| 159 | Every project has a group designated as its owner. Users who are |
| 160 | members of the owner group can: |
| 161 | |
| 162 | * Change the project description |
| 163 | * Change the owner of the project to another group |
| 164 | * Create/delete a branch through the web UI (not SSH) |
| 165 | * Grant/revoke access rights |
| 166 | |
| 167 | Note that project owners implicitly have branch creation or deletion |
| 168 | through the web UI, but not through SSH. To get SSH access project |
| 169 | owners must grant an access right to their own group, just like |
| 170 | for any other user. |
| 171 | |
| 172 | The per-project ACL is evaluated before the global |
| 173 | `\-- All Projects \--` ACL, permitting some limited override |
| 174 | capability to project owners. This behavior is generally only |
| 175 | useful on the `Read Access` category when granting `-1 No Access` |
| 176 | within a specific project to deny access to a group. |
| 177 | |
| 178 | |
| 179 | Categories |
| 180 | ---------- |
| 181 | |
| 182 | Gerrit comes pre-configured with several default categories that |
| 183 | can be granted to groups within projects, enabling functionality |
| 184 | for that group's members. |
| 185 | |
| 186 | [[category_READ]] |
| 187 | Read Access |
| 188 | ~~~~~~~~~~~ |
| 189 | |
| 190 | The `Read Access` category controls visibility to the project's |
| 191 | changes, comments, code diffs, and Git access over SSH. A user must |
| 192 | have `Read Access +1` in order to see a project or any of its data. |
| 193 | |
| 194 | This category has a special behavior, where the per-project ACL is |
| 195 | evaluated before the global all projects ACL. If the per-project |
| 196 | ACL has granted `Read Access -1`, and does not otherwise grant |
| 197 | `Read Access \+1`, then a `Read Access +1` in the all projects ACL |
| 198 | is ignored. This behavior is useful to hide a handful of projects |
| 199 | on an otherwise public server. |
| 200 | |
| 201 | For an open source, public Gerrit installation it is common to grant |
| 202 | `Read Access +1` to `Anonymous Users` in the `\-- All Projects \--` |
| 203 | ACL, enabling casual browsing of any project's changes, as well as |
| 204 | fetching any project's repository over SSH. New projects can be |
| 205 | temporarily hidden from public view by granting `Read Access -1` |
| 206 | to `Anonymous Users` and granting `Read Access +1` to the project |
| 207 | owner's group within the per-project ACL. |
| 208 | |
| 209 | For a private Gerrit installation using a trusted HTTP authentication |
| 210 | source, granting `Read Access +1` to `Registered Users` may be more |
| 211 | typical, enabling read access only to those users who have been |
| 212 | able to authenticate through the HTTP access controls. This may |
| 213 | be suitable in a corporate deployment if the HTTP access control |
| 214 | is already restricted to the correct set of users. |
| 215 | |
| 216 | [[category_pTAG]] |
| 217 | Push Annotated Tag |
| 218 | ~~~~~~~~~~~~~~~~~~ |
| 219 | |
| 220 | This category permits users to push an annotated tag object over |
| 221 | SSH into the project's repository. Typically this would be done |
| 222 | with a command line such as: |
| 223 | |
| 224 | ==== |
| 225 | git push ssh://USER@HOST:PORT/PROJECT tag v1.0 |
| 226 | ==== |
| 227 | |
| 228 | Tags must be annotated (created with `git tag -a` or `git tag -s`), |
| 229 | must exist in the `refs/tags/` namespace, and must be new. Deleting |
| 230 | and overwriting existing tags is not permitted. Lightweight tags |
| 231 | are not permitted. |
| 232 | |
| 233 | This category is intended to be used to publish tags when a project |
| 234 | reaches a stable release point worth remembering in history. |
| 235 | |
| 236 | [[category_pHD]] |
| 237 | Push Branch |
| 238 | ~~~~~~~~~~~ |
| 239 | |
| 240 | This category permits users to push directly into a branch over SSH, |
| 241 | bypassing any code review process that would otherwise be used. |
| 242 | |
| 243 | This category has several possible values: |
| 244 | |
| 245 | * Update Branch |
| 246 | + |
| 247 | Any existing branch can be fast-forwarded to a new commit. |
| 248 | Creation of new branches is rejected. Deletion of existing branches |
| 249 | is rejected. This is the safest mode as commits cannot be discarded. |
| 250 | |
| 251 | * Create Branch |
| 252 | + |
| 253 | Implies 'Update Branch', but also allows the creation of a new branch |
| 254 | if the name does not not already designate an existing branch name. |
| 255 | Like update branch, existing commits cannot be discarded. |
| 256 | |
| 257 | * Force Push Branch; Delete Branch |
| 258 | + |
| 259 | Implies both 'Update Branch' and 'Create Branch', but also allows an |
| 260 | existing branch to be deleted. Since a force push is effectively a |
| 261 | delete immediately followed by a create, but performed atomically on |
| 262 | the server and logged, this also level permits forced push updates |
| 263 | to branches. This level may allow existing commits to be discarded |
| 264 | from a project history. |
| 265 | |
| 266 | This category is primarily useful for projects that only want to |
| 267 | take advantage of Gerrit's access control features and do not need |
| 268 | its code review functionality. Projects that need to require code |
| 269 | reviews should not grant this category. |
| 270 | |
| 271 | [[category_VRIF]] |
| 272 | Verified |
| 273 | ~~~~~~~~ |
| 274 | |
| 275 | The verified category can have any meaning the project desires. |
| 276 | It was originally invented by the Android Open Source Project to |
| 277 | mean 'compiles, passes basic unit tests'. |
| 278 | |
| 279 | The range of values is: |
| 280 | |
| 281 | * -1 Fails |
| 282 | + |
| 283 | Tried to compile, but got a compile error, or tried to run tests, |
| 284 | but one or more tests did not pass. |
| 285 | + |
| 286 | *Any -1 blocks submit.* |
| 287 | |
| 288 | * 0 No score |
| 289 | + |
| 290 | Didn't try to perform the verification tasks. |
| 291 | |
| 292 | * +1 Verified |
| 293 | + |
| 294 | Compiled (and ran tests) successfully. |
| 295 | + |
| 296 | *Any +1 enables submit.* |
| 297 | |
| 298 | In order to submit a change, the change must have a `+1 Verified` in |
| 299 | this category from at least one authorized user, and no `-1 Fails` |
| 300 | from an authorized user. Thus, `-1 Fails` can block a submit, |
| 301 | while `+1 Verified` enables a submit. |
| 302 | |
| 303 | If a Gerrit installation does not wish to use this category in any |
| 304 | project, it can be deleted from the database: |
| 305 | |
| 306 | ==== |
| 307 | DELETE FROM approval_categories WHERE category_id = 'VRIF'; |
| 308 | DELETE FROM approval_category_values WHERE category_id = 'VRIF'; |
| 309 | ==== |
| 310 | |
| 311 | If a Gerrit installation wants to modify the description text |
| 312 | associated with these category values, the text can be updated |
| 313 | in the `name` column of the `category_id = \'VRIF'` rows in the |
| 314 | `approval_category_values` table. |
| 315 | |
| 316 | Additional values could also be added to this category, to allow it |
| 317 | to behave more like `Code Review` (below). Insert -2 and +2 value |
| 318 | rows into the `approval_category_values` with `category_id` set to |
| 319 | `VRIF` to get the same behavior. |
| 320 | |
| 321 | [NOTE] |
| 322 | A restart is required after making database changes. |
| 323 | See <<restart_changes,below>>. |
| 324 | |
| 325 | [[category_CVRW]] |
| 326 | Code Review |
| 327 | ~~~~~~~~~~~ |
| 328 | |
| 329 | The code review category can have any meaning the project desires. |
| 330 | It was originally invented by the Android Open Source Project to |
| 331 | mean 'I read the code and it seems reasonably correct'. |
| 332 | |
| 333 | The range of values is: |
| 334 | |
| 335 | * -2 Do not submit |
| 336 | + |
| 337 | The code is so horribly incorrect/buggy/broken that it must not be |
| 338 | submitted to this project, or to this branch. |
| 339 | + |
| 340 | *Any -2 blocks submit.* |
| 341 | |
| 342 | * -1 I would prefer that you didn't submit this |
| 343 | + |
| 344 | The code doesn't look right, or could be done differently, but |
| 345 | the reviewer is willing to live with it as-is if another reviewer |
| 346 | accepts it, perhaps because it is better than what is currently in |
| 347 | the project. Often this is also used by contributors who don't like |
| 348 | the change, but also aren't responsible for the project long-term |
| 349 | and thus don't have final say on change submission. |
| 350 | + |
| 351 | Does not block submit. |
| 352 | |
| 353 | * 0 No score |
| 354 | + |
| 355 | Didn't try to perform the code review task, or glanced over it but |
| 356 | don't have an informed opinion yet. |
| 357 | |
| 358 | * +1 Looks good to me, but someone else must approve |
| 359 | + |
| 360 | The code looks right to this reviewer, but the reviewer doesn't |
| 361 | have access to the `+2` value for this category. Often this is |
| 362 | used by contributors to a project who were able to review the change |
| 363 | and like what it is doing, but don't have final approval over what |
| 364 | gets submitted. |
| 365 | |
| 366 | * +2 Looks good to me, approved |
| 367 | + |
| 368 | Basically the same as `+1`, but for those who have final say over |
| 369 | how the project will develop. |
| 370 | + |
| 371 | *Any +2 enables submit.* |
| 372 | |
| 373 | In order to submit a change, the change must have a `+2 Looks good to |
| 374 | me, approved` in this category from at least one authorized user, |
| 375 | and no `-2 Do not submit` from an authorized user. Thus `-2` |
| 376 | can block a submit, while `+2` can enable it. |
| 377 | |
| 378 | If a Gerrit installation does not wish to use this category in any |
| 379 | project, it can be deleted from the database: |
| 380 | |
| 381 | ==== |
| 382 | DELETE FROM approval_categories WHERE category_id = 'CRVW'; |
| 383 | DELETE FROM approval_category_values WHERE category_id = 'CRVW'; |
| 384 | ==== |
| 385 | |
| 386 | If a Gerrit installation wants to modify the description text |
| 387 | associated with these category values, the text can be updated |
| 388 | in the `name` column of the `category_id = \'CRVW'` rows in the |
| 389 | `approval_category_values` table. |
| 390 | |
| 391 | Additional values could be inserted into `approval_category_values` |
| 392 | to further extend the negative and positive range, but there is |
| 393 | likely little value in doing so as this only expands the middle |
| 394 | region. This category is a `MaxWithBlock` type, which means that |
| 395 | the lowest negative value if present blocks a submit, while the |
| 396 | highest positive value is required to enable submit. |
| 397 | |
| 398 | [NOTE] |
| 399 | A restart is required after making database changes. |
| 400 | See <<restart_changes,below>>. |
| 401 | |
| 402 | [[category_SUBM]] |
| 403 | Submit |
| 404 | ~~~~~~ |
| 405 | |
| 406 | This category permits users to push the `Submit Patch Set n` button |
| 407 | on the web UI. |
| 408 | |
| 409 | Submitting a change causes it to be merged into the destination |
| 410 | branch as soon as possible, making it a permanent part of the |
| 411 | project's history. |
| 412 | |
| 413 | In order to submit, all approval categories (such as `Verified` and |
| 414 | `Code Review`, above) must enable submit, and also must not block it. |
| 415 | See above for details on each category. |
| 416 | |
| 417 | [[category_makeoneup]] |
| 418 | Your Category Here |
| 419 | ~~~~~~~~~~~~~~~~~~ |
| 420 | |
| 421 | Gerrit administrators can also make up their own categories. |
| 422 | |
| 423 | See above for descriptions of how `Verified` and `Code Review` work, |
| 424 | and insert your own category with `function_name = \'MaxWithBlock'` |
| 425 | to get the same behavior over your own range of values, in any |
| 426 | category you desire. |
| 427 | |
| 428 | Ensure `category_id` is unique within your `approval_categories` |
| 429 | table. The default values `VRIF` and `CVRF` used for the categories |
| 430 | described above are simply that, defaults, and have no special |
| 431 | meaning to Gerrit. The other standard category_id values like |
| 432 | `READ`, `SUBM`, `pTAG` and `pHD` have special meaning and should |
| 433 | not be modified or reused. |
| 434 | |
| 435 | The `position` column of `approval_categories` controls which column |
| 436 | of the 'Approvals' table the category appears in, providing some |
| 437 | layout control to the administrator. |
| 438 | |
| 439 | All `MaxWithBlock` categories must have at least one positive value |
| 440 | in the `approval_category_values` table, or else submit will never |
| 441 | be enabled. |
| 442 | |
| 443 | To permit blocking submits, ensure a negative value is defined for |
| 444 | your new category. If you do not wish to have a blocking submit |
| 445 | level for your category, do not define values less than 0. |
| 446 | |
| 447 | Keep in mind that category definitions are currently global to |
| 448 | the entire Gerrit instance, and affect all projects hosted on it. |
| 449 | Any change to a category definition affects everyone. |
| 450 | |
| 451 | For example, to define a new 3-valued category that behaves exactly |
| 452 | like `Verified`, but has different names/labels: |
| 453 | |
| 454 | ==== |
| 455 | INSERT INTO approval_categories |
| 456 | (name |
| 457 | ,position |
| 458 | ,function_name |
| 459 | ,category_id) |
| 460 | VALUES |
| 461 | ('Copyright Check' |
| 462 | ,3 |
| 463 | 'MaxWithBlock' |
| 464 | ,'copy'); |
| 465 | |
| 466 | INSERT INTO approval_category_values |
| 467 | (category_id,value,name) |
| 468 | VALUES |
| 469 | ('copy', -1, 'Do not have copyright'); |
| 470 | |
| 471 | INSERT INTO approval_category_values |
| 472 | (category_id,value,name) |
| 473 | VALUES |
| 474 | ('copy', 0, 'No score'); |
| 475 | |
| 476 | INSERT INTO approval_category_values |
| 477 | (category_id,value,name) |
| 478 | VALUES |
| 479 | ('copy', 1, 'Copyright clear'); |
| 480 | ==== |
| 481 | |
| 482 | The new column will appear at the end of the table (in position 3), |
| 483 | and `-1 Do not have copyright` will block submit, while `+1 Copyright |
| 484 | clear` is required to enable submit. |
| 485 | |
| 486 | [[restart_changes]] |
| 487 | [NOTE] |
| 488 | Restart the Gerrit web application and reload all browsers after |
| 489 | making any database changes to approval categories. Category data |
| 490 | is aggressively cached by every corner of Gerrit, as it does not |
| 491 | change often. Browser may need more than 5 minutes to flush the |
| 492 | old category data out of their local disk caches. |