Overview
Clients connected to MongooseIM may authenticate with their TLS certificates.
This method uses the SASL EXTERNAL
mechanism.
Server-side prerequisites
Properly configure ejabberd_c2s
listener
A server must request the certificate from a client, so you'll need to enable verify_peer
option and provide a path to CA chain that may be used for client's certificate check (cafile
option).
Please check Listener modules page for more information or simply follow the examples at the end of this section.
Properly configure ejabberd_cowboy
listener
SASL EXTERNAL authentication is also possible for WebSocketSecure and BOSH connections over HTTPS.
Similarly as in ejabberd_c2s
case, the server must request the certificate from the client.
In this case it's enabled by adding the following options to ssl
option of ejabberd_cowboy
:
{verify, verify_peer}
- this is to tell Erlang's SSL to request the cert from the client{cacertfile, "/path/to/ca.pem"}
- this is to tell Erlang's SSL where the CA cert file is in order to check if the cert is correctly signed
Please check Listener modules for more details regarding ejabberd_cowboy
configuration.
Enable SASL EXTERNAL
method
A SASL EXTERNAL
authentication method is disabled by default.
In order to enable it, please add sasl_mechanisms
option to MongooseIM config file.
Its value must include a cyrsasl_external
item.
Obviously the list may be longer, if the system should support both the certificate and password based authentication.
The SASL EXTERNAL
authentication method requires a digital client certificate.
This digital certificate should contain xmppAddr
field(s), which is always checked first.
If there is more than one JID specified in the xmppAddr
fields, the client must include the authorisation entity which corresponds to the one of the specified JIDs.
When no xmppAddr
is specified, the cn
(common name) field might be used to provide client's username, but it is optional (not enabled by default).
There are three possible ways of using the SASL EXTERNAL
authentication
method. It can be configured by adding one of the following options to
the list of auth_opts
in MongooseIM config file:
{cyrsasl_external, standard}
- do not accept a certificate with noxmpp_addrs
field (default);{cyrsasl_external, use_common_name}
- use thecommon_name
field if it is provided in the certificate;{cyrsasl_external, allow_just_user_identity}
- accept a certificate if there are noxmpp_addrs
provided and use the user identity from the authentication request.
If the client certificate does not contain a JID, the client must provide one in authorisation entity.
For the details please refer to XEP-0178 Best Practices for Use of SASL EXTERNAL with Certificates.
Enable compatible authentication backend
You need to enable one of the following authentication backends by using the auth_method
option in the MongooseIM configuration file.
pki
- accepts user credentials,http
- accepts user credentials if the provided certificate is known and validldap
- accepts user credentials if a corresponding user account exists in LDAP.
Self-signed certificates
By default MongooseIM doesn't accept self-signed certs for the SASL-EXTERNAL authentication. For development purposes, it is possible to tell MongooseIM to accept them.
Self-signed certificates for regular TCP/TLS connections
In order to tell MongooseIM to accept self-signed certs, the ssl_options
list needs to be added to ejabberd_c2s
listener config like below:
{ssl_options, [{verify_fun, {selfsigned_peer, DisconnectOnVerificationFailure}}]}
where the DisconnectOnVerificationFailure
is a boolean with the following meaning only for just_tls
:
true
- the connection is closed if a certificate is invalid,false
- the connection isn't closed, but the certificate is not returned if it's invalid. This leads to an authentication failure but allows the client to choose a different auth method if available.
For fast_tls
backend, the configuration is the same, only the DisconnectOnVerificationFailure
is ignored.
Self-signed certificates for WS or BOSH
In order to accept self-signed certs for WS or BOSH connections, the ssl
option list of ejabberd_cowboy
must contain the following pair:
{verify_mode, selfsigned_peer}
Examples
Certificate authentication only.
{listen, [
(...)
{5222, ejabberd_c2s, [
(...)
{cafile, "/path/to/ca.pem"},
verify_peer,
(...)
]},
(...)
{5285, ejabberd_cowboy, [
{ssl, [(...),
{verify, verify_peer},
{cacertfile, "/path/to/ca.pem"}
]},
{modules, [{mod_websockets, []},
{mod_bosh, []}]},
(...)
]},
(...)
]}.
{auth_method, [pki]}.
{sasl_mechanisms, [cyrsasl_external]}.
Authentication with a client certificate (validated with provided CA chain) or password (validated with data stored in RDBMS).
{listen, [
(...)
{5222, ejabberd_c2s, [
(...)
{cafile, "/path/to/ca.pem"},
verify_peer,
(...)
]},
(...)
]}.
{auth_method, [rdbms, pki]}.
{sasl_mechanisms, [cyrsasl_scram_sha1, cyrsasl_external]}.
Client certificate prerequisites
SASL EXTERNAL
will be offered by the server only when a client provides a valid certificate.
Please check documentation of a specific authentication backend you're going to use.
Usage example - Gajim
Verified with Gajim 0.16.8, installed from package gajim-0.16.8-1.fc25.noarch
.
Generate client certificate
openssl genrsa -des3 -out rootCA.key 4096
openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 1024 -out rootCA.crt
openssl genrsa -out client.key 2048
openssl req -new -key client.key -out client.csr # Remember to provide username as Common Name!
openssl x509 -req -in client.csr -CA rootCA.crt -CAkey rootCA.key -CAcreateserial -out client.crt -days 500 -sha256
openssl pkcs12 -export -inkey client.key -in client.crt -out client.p12
Configure MongooseIM
See examples in the section above. We recommend using the first snippet for simplicity.
You don't need to pre-create a user account in order to log in with a certificate.
Add an account in Gajim
- Edit -> Accounts -> Add.
- Pick "I already have an account I want to use".
- Jabber ID is
[Common Name from certificate]@localhost
(domain is different if you've changed it inhosts
option). Press "Next". - Untick "Connect when I press Finish" and press "Advanced".
- Unfold "Client certificate" and choose the
.p12
you've created earlier. Tick "Certificate is encrypted". - Click "Close" and set status to "Available". Tell Gajim to ingnore the unverified server certificate (by default it's self-signed).
If Gajim fails to connect, try to restart it. Version 0.16.8 sometimes "forgets" to ask for the client certificate password.