Security
This section is a work in progress. Want to help? Check out the (jenkinsci/docs gitter channel. For other ways to contribute to the Jenkins project, see (this page about participating and contributing. |
Security Architecture of Jenkins
Jenkins has a security mechanism in place so that the administrator of Jenkins can control who gets access to what part of Jenkins. The key components of this mechanism are the followings:
-
jenkinsdoc:Permission[], which represents an activity that requires a security privilege. This is usually a verb, like "configure", "administer", "tag", etc.
-
Authentication
, which represents the current user and roles (AKA groups) he/she has. When a thread runs in Jenkins, it always carry anAuthentication
object implicitly, which represents the user that the thread is serving. (If a thread is a part of Jenkins and not serving any user request, likeExecutor{
}s, then it carries an almighty "system"Authentication
object.) -
jenkinsdoc:ACL[], which decides whether the
Authentication
object carried by the current thread has the given permission or not. -
jenkinsdoc:AccessControlled[], which is implemented by an object who owns ACL.
So the overall picture is this; various objects in Jenkins (such as jenkinsdoc:Job[], jenkinsdoc:Jenkins[], jenkinsdoc:User[], jenkinsdoc:View[], etc.) are jenkinsdoc:AccessControlled[] objects, and therefore they own ACLs. The code is then written in such a way that before a security-sensitive operation is performed, it checks ACL.
For example, the following code is taken from the jenkinsdoc:Jenkins[] class, which lets you shut down the JVM by requesting /exit
.
You can easily imagine that in a security sensitive environment you don’t want random users to invoke this, so it makes sure that the caller has the "ADMINISTER" permission of the system before proceeding to do the work:
public void doExit( StaplerRequest req, StaplerResponse rsp ) throws IOException {
checkPermission(ADMINISTER); (1)
LOGGER.severe(String.format("Shutting down VM as requested by %s from %s",
getAuthentication().getName(), req!=null?req.getRemoteAddr():"???"));
if (rsp!=null) {
rsp.setStatus(HttpServletResponse.SC_OK);
rsp.setContentType("text/plain");
try (PrintWriter w = rsp.getWriter()) {
w.println("Shutting down");
}
}
System.exit(0);
}
1 | This throws an exception if the user accessing this URL doesn’t have Administer permission. |
If the administrator configured no security mechanism, the checkPermission method simply becomes no-op.
The administrator could configure matrix-based ACL, in which case every AccessControlled
object will share the single ACL (whose contents is controlled by the configuration done by the administrator.) In more elaborate case, each AccessControlled
object might have different ACLs.
In all cases, this is the code you need to write.
Controlling read access to AccessControlled
objects
The recommended way to control read access to AccessControlled
objects is to implement the StaplerProxy
interface.
See Restricting HTTP Access to AccessControlled
Objects for more information.
What do plugins need to do to protect web methods?
-
Identify the operations in code that can be potentially security sensitive. This includes anything that can change state in the server, have other side effects (like elaborate form validation
doCheck
methods), or potentially discloses protected information (like auto-completiondoAutoComplete
methods). These methods should performcheckPermission
. -
Identify the nearest
AccessControlled
objects to check permissions with. If your 'this' object is already access-controlled, then that’s obviously it. Otherwise, try to look for the nearest logical ancestor. If all else fails, use theJenkins
singleton. -
Identify the
Permission
object to use. If you extend from anExtensionPoint
, it might already define some permission objects as public static final fields in them. If you are defining a sub-system of a substantial size, you might want to create newPermission
objects (see the end of theView
class for this example.) If you don’t know, you can useJenkins.ADMINISTER
as a starting point.
With these three information, you can now insert:
AccessControlled ac = ... do the step 2 above ...
Permission p = ... do the step 3 above ...
ac.checkPermission(p)
See also Securely implementing form validation.
Checking permissions in Jelly files
If your entire HTML page rendered by Jelly needs to be protected, you can use the attributes of the <l:layout>
tag, like this:
<l:layout permission="${app.ADMINISTER}">
The permission is always checked against the "it" object, so that needs to be an AccessControlled
object.
This only prevents access to the view (e.g. configuration form), and does not prevent submissions to the form submission endpoints. This will still need to be done as described in the previous section. |
Disabling a part of page rendering if the user doesn’t have a permission
Sometimes you’d like to change the page rendering, based on the user’s permissions. For example, if the user cannot delete a project, it doesn’t make sense to show a link to do that. To do this, write Jelly like this:
<j:if test="${h.hasPermission(app.ADMINISTER)}">
...
</j:if>
This is not to be confused with the checkPermission invocation in your operation.
Users can still hit the URL directly, so you still need to protect the operation itself, in addition to disabling the UI rendering
|
Authentication ways
In Jenkins the security engine that is used is Spring Security. Without any special plugins to manage authentication, an instance of Jenkins is packaged with the following authentication ways:
-
Web UI
-
When you use the form on the login page, using the fields
j_username
andj_password
-
-
REST API
-
Using Basic with login / password
-
Using Basic with login / apiToken
-
-
Jenkins CLI jar
-
(deprecated) using remoting transport with login / logout command
-
(deprecated) username / password as parameters on each command
-
-auth
argument with username:password or username:apiToken that will do something like HTTP calls -
using SSH transport mode with your local keys
-
-
CLI over SSH
-
directly using the native SSH command, without Jenkins CLI
-
Authentication flow
Depending on the authentication method you use, the processing flow will differ drastically. By flow we mean the involved classes that will check your credentials for validity.
Web UI and REST API
In the diagram above, each arrow indicates a way to authenticate.
Both the Web UI and the REST API using login / password will flow in the same AbstractPasswordBasedSecurityRealm
that delegates the real check to the configured SecurityRealm
.
The credentials are retrieved for the first method by retrieving information in the POST and for the second by using the Basic Authentication (in header).
A point that is important to mention here, the Web UI is the only way (not deprecated) that use the Session to save the credentials.
For the login / apiToken calls, the BasicHeaderApiTokenAuthenticator
manages to check if the apiToken corresponds to the user with the given login.
CLI (SSH and native)
For the CLI part, the things become a bit more complicated, not by the complexity but more by the multiplicity of way to connect.
The first case (remoting) is deprecated but explained as potentially it’s still used. The principle is to create a sort of session between the login command and the logout one. The authentication is checked using the same classes that we use for the Web UI or the REST API with password. Once the authentication is verified, the credentials are stored in a local cache that will enable future calls to be authenticated automatically.
The second way put the username and the password as additional parameters of the command
(--username
and --password
).
For the third and fourth ways, we pass the parameters to connect like in an HTTP call in the header. The authentication is checked exactly the same way as for the REST API depending on the provided password or token.
Last possibility for the Jenkins CLI is using the SSH transport mode offered by SSHD module (also available for plugins). It uses normal SSH configuration using your local keys to authenticate. It shares the same verifier with the Native CLI way.
Other ways
The plugin have the possibility to propose a new SecurityRealm
or implements some ExtensionPoint
s
(like QueueItemAuthenticator)
in order to provide new ways for a user to authenticate.
Support for Locked/Disabled/Expired Accounts
Some authentication providers support additional account validity attributes such as whether or not the account is locked, disabled, or expired.
Normally, these sorts of account validity checks are performed by the underlying authentication provider itself when authenticating a user with their password.
However, until a user attempts to log in with their password, Jenkins is never notified of account status changes!
This means that without explicit support from its corresponding Jenkins authentication provider plugin, Jenkins will otherwise continue to allow the account to authenticate through the above-mentioned authentication methods (SSH keys, API tokens) until the account is also deleted or disabled in Jenkins by an administrator.
Authentication providers that can implement account validity checks through means other than attempting to log the user in should throw a subtype of org.springframework.security.authentication.AccountStatusException
in SecurityRealm.loadUserByUsername2
.