]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-17232 improve SAML Documentation
authorMatteo Mara <matteo.mara@sonarsource.com>
Fri, 26 Aug 2022 13:31:26 +0000 (15:31 +0200)
committersonartech <sonartech@sonarsource.com>
Mon, 29 Aug 2022 20:02:53 +0000 (20:02 +0000)
server/sonar-docs/src/images/saml_authentication_flow.png [new file with mode: 0644]
server/sonar-docs/src/pages/instance-administration/authentication/saml.md

diff --git a/server/sonar-docs/src/images/saml_authentication_flow.png b/server/sonar-docs/src/images/saml_authentication_flow.png
new file mode 100644 (file)
index 0000000..15aefd9
Binary files /dev/null and b/server/sonar-docs/src/images/saml_authentication_flow.png differ
index 6556d82369466970c3eb63d20662036c090b6ab2..4e0ee12cd1ca29ae41a0ad897311e393bf860efb 100644 (file)
@@ -5,6 +5,39 @@ url: /instance-administration/authentication/saml/
 
 You can delegate authentication to a SAML 2.0 Identity Provider using SAML Authentication.
 
+### SAML authentication flow
+
+1. When a user requests a SonarQube web page and is not already authenticated, SonarQube will start a SAML authentication process.
+2. SonarQube creates a SAML request for the configured Identity Provider and sends it back to the user.
+3. The user's browser automatically relays the SAML request to the Identity Provider.
+4. The Identity Provider authenticates the user and creates a SAML assertion containing the user information and privilege. Optionally, it can encrypt this assertion with the SonarQube certificate.
+5. The Identity Provider sends a SAML assertion back to the web browser
+6. The user's browser then relays the SAML assertion to SonarQube to authenticate and authorize the user.
+7. SonarQube responds with the originally requested resource.
+
+![SAML Authentication flow](/images/saml_authentication_flow.png)
+
+During the process, certificates are used to authenticate the Identity Provider and, optionally, SonarQube.
+The Identity Provider public certificate is necessary to ensure that the SAML assertion is genuine.
+The SonarQube certificate is optional, but ensures that only SonarQube can use the assertion provided.
+### Setup
+
+Property| Description                                                                                                                        | Default value | Required                                                                 
+---|------------------------------------------------------------------------------------------------------------------------------------|-----------|--------------------------------------------------------------------------
+`sonar.auth.saml.enabled`| Is SAML authentication enabled on SonarQube?                                                                                       |           | Yes                                                                      
+`sonar.auth.saml.applicationId`| The ID under which SonarQube is known by the Identity Provider.                                                                    | sonarqube | Yes                                                                      
+`sonar.auth.saml.providerName`| Name of the Identity Provider displayed in the login page when SAML authentication is active.                                                                                                 | SAML      | Yes                                                                      
+`sonar.auth.saml.providerId`| The ID of the Identity Provider.                                                                                                   |           | Yes                                                                      
+`sonar.auth.saml.loginUrl`| The Url where the Identity Provider expect to receive SAML requests.                                                               |           | Yes                                                                      
+`sonar.auth.saml.certificate.secured`| The public X.509 certificate used by the Identity Provider to authenticate SAML messages.                                          |           | Yes                                                                      
+`sonar.auth.saml.user.login`| The name of the attribute where the Identity Provider will put the authenticated user login.                                       |           | Yes                                                                      
+`sonar.auth.saml.user.name`| The name of the attribute where the Identity Provider will put the authenticated user name.                                        |           | Yes                                                                      
+`sonar.auth.saml.user.email`| The name of the attribute where the Identity Provider will put the authenticated user email.                                       |           | No                                                                       
+`sonar.auth.saml.group.name`| The attribute defining the user group in SAML. Users are associated to the default group if this attribute is not defined.         |           | No                                                                       
+`sonar.auth.saml.signature.enabled`| Is SonarQube expected to sign the SAML requests? If enabled both the service provider private key and certificate must be provided. |           | No                                                                       
+`sonar.auth.saml.sp.privateKey.secured`| The PKCS8 private key without password used by SonarQube to sign SAML messages and to decrypt encrypted SAML responses.            |           | Only if SonarQube requests signature or responses encryption is enabled. 
+`sonar.auth.saml.sp.certificate.secured`| The public key part of the previously provided private key.                                                                        |           | Only if SonarQube requests signature is enabled.                         
+
 ### Example: Using Keycloak as a SAML Identity Provider
 The following example may be useful if you're using Keycloak as a SAML Identity Provider. If you're not using Keycloak, your settings are likely to be different.
 
@@ -26,18 +59,18 @@ The following example may be useful if you're using Keycloak as a SAML Identity
 |     1. (Optional) **Signing Key**: Add the service provider private key and the certificate if the signature of the requests is enabled on the SonarQube side (Keycloak generated keys can be used). This private key will have to be provided in PKCS8 format in SonarQube.
 |     1. (Optional) **Encryption Key**: Add the service provider certificate if you want to activate the encryption of Keycloak responses. If request signature is used, you must use the same certificate for the encryption.
 | 1. In **Client Scopes > Default Client Scopes**, remove "role_list" from "Assigned Default Client Scopes" (to prevent the error `com.onelogin.saml2.exception.ValidationError: Found an Attribute element with duplicated Name` during authentication)
-| 1. Under *Mappers*, create a mapper for each user attribute: 
+| 1. Under *Mappers*, create a mapper for each user attribute:
 |     1. Create a mapper for the login:
 |         1. **Name**: "Login"
 |         1. **Mapper Type**: *User Property*
 |         1. **Property**: "Username" (note that the login should not contain any special characters other than `.-_@` to meet SonarQube restrictions)
 |         1. **SAML Attribute Name**: "login"
-|     1. Create a mapper for the name: 
+|     1. Create a mapper for the name:
 |         1. **Name**: "Name"
 |         1. **Mapper Type**: *User Property*
 |         1. **Property**: "Username" (it can also be another attribute you would previously have specified for the users)
 |         1. **SAML Attribute Name**: "name"
-|     1. (Optional) Create a mapper for the email: 
+|     1. (Optional) Create a mapper for the email:
 |         1. **Name**: "Email"
 |         1. **Mapper Type**: *User Property*
 |         1. **Property**: "Email"
@@ -57,7 +90,7 @@ The following example may be useful if you're using Keycloak as a SAML Identity
 
 [[collapse]]
 | ## In SonarQube, Configure SAML authentication
-| Go to **[Administration > Configuration > General Settings > Security > SAML](/#sonarqube-admin#/admin/settings?category=security)**
+| Go to **[Administration > Configuration > General Settings > Authentication > SAML](/#sonarqube-admin#/admin/settings?category=authentication)**
 | * **Enabled**: *true*
 | * **Application ID**: The value of the "Client ID" you set in Keycloak (for example "sonarqube")
 | * **Provider ID**: The value of the `EntityDescriptor > entityID` attribute in the XML configuration file (e.g., "http://keycloak:8080/auth/realms/sonarqube")
@@ -68,12 +101,16 @@ The following example may be useful if you're using Keycloak as a SAML Identity
 | * (Optional) **SAML user email attribute**: "email" (or whatever you configured above when doing the mapping)
 | * (Optional) **SAML group attribute** "groups" (or whatever you configured above when doing the mapping)
 | * **Sign requests**: Set to true to activate the signature of the SAML requests. It needs both the service provider private key and certificate to be set.
-| * **Service provider private key**: The service provider private key shared with the identity provider. This key is required for both request signature and response encryption, which can be activated individually. The key should be provided for SonarQube in PKCS8 format without password protection. 
-| * **Service provider certificate**: The service provider certificate shared with the identity provider in order to activate the requests signature. 
-| 
+| * **Service provider private key**: The service provider private key shared with the identity provider. This key is required for both request signature and response encryption, which can be activated individually. The key should be provided for SonarQube in PKCS8 format without password protection.
+| * **Service provider certificate**: The service provider certificate shared with the identity provider in order to activate the requests signature.
+|
 | You can find [here](https://manpages.ubuntu.com/manpages/focal/man1/pkcs8.1ssl.html) some instructions to convert different key formats.
 |
 | In the login form, the new button "Log in with SAML" allows users to connect with their SAML account.
 
-### SAML and reverse proxy configuration
-When using SAML, make sure your reverse proxy is properly configured. See [Operating the Server](/setup/operate-server/) for more information.
\ No newline at end of file
+### SAML configuration related information and limitations
+
+* **SAML and reverse proxy configuration**: When using SAML, make sure your reverse proxy is properly configured. See [Operating the Server](/setup/operate-server/) for more information.
+* **Migrating from LDAP to SAML as Identity Provider**: A guide on how to perform this migration is available [here](https://community.sonarsource.com/t/migrating-sonarqube-users-between-identity-providers-with-a-focus-on-ldap-saml/48653).
+* **Identity Provider initiated authentication is not supported**: This is a known limitation of SonarQube only Service Provider authentication is supported. 
+* **SAML Single Sign Out is not supported**: Logging off from SonarQube when SAML authentication is enabled, will not result in a disconnection from the other services linked to the same Identity Provider.