plugin/auth_gssapi/README.md
This article gives instructions on configuring GSSAPI authentication plugin for MariaDB for passwordless login.
On Unix systems, GSSAPI is usually synonymous with Kerberos authentication. Windows has slightly different but very similar API called SSPI, that along with Kerberos, also supports NTLM authentication.
This plugin includes support for Kerberos on Unix, but also can be used as for Windows authentication with or without domain environment.
To use the plugin, some preparation need to be done on the server side on Unixes. MariaDB server will need read access to the Kerberos keytab file, that contains service principal name for the MariaDB server.
If you are using Unix Kerberos KDC (MIT,Heimdal)
kadmin -q "addprinc -randkey mariadb/host.domain.com"
(replace host.domain.com with fully qualified DNS name for the server host)
kadmin -q "ktadd -k /path/to/mariadb.keytab mariadb/host.domain.com"
More details can be found here and here
If you are using Windows Active Directory KDC you can need to create keytab using ktpass.exe tool on Windows, map principal user to an existing domain user like this
ktpass.exe /princ mariadb/[email protected] /mapuser someuser /pass MyPas$w0rd /out mariadb.keytab /crypto all /ptype KRB5_NT_PRINCIPAL /mapop set
and then transfer the keytab file to the Unix server. See Microsoft documentation for details.
Usually nothing need to be done. MariaDB server should to run on a domain joined machine, either as NetworkService account (which is default if it runs as service) or run under any other domain account credentials. Creating service principal is not required here (but you can still do it using setspn tool)
Start the server
On Unix, edit my the my.cnf/my.ini configuration file, set the parameter gssapi-keytab-path to point to previously created keytab path.
gssapi-keytab-path=/path/to/mariadb.keytab
gssapi-principal-name=alternative/principalname@REALM
INSTALL SONAME 'auth_gssapi'
Now, you can create a user for GSSAPI/SSPI authentication. CREATE USER command, for Kerberos user would be like this (long form, see below for short one)
CREATE USER usr1 IDENTIFIED WITH gssapi AS '[email protected]';
(replace with real username and realm)
The part after AS is mechanism specific, and needs to be machine\\usr1 for Windows users identified with NTLM.
You may also use alternative short form of CREATE USER
CREATE USER usr1 IDENTIFIED WITH gssapi;
If this syntax is used, realm part is not used for comparison thus '[email protected]', '[email protected]' and 'mymachine\usr1' will all identify as 'usr1'.
Using command line client, do
mysql --plugin-dir=/path/to/plugin-dir -u usr1
Overview of the protocol between client and server
Server : Construct gssapi-principal-name if not set in my.cnf. On Unixes defaults to hostbased name for service "mariadb". On Windows to user's or machine's domain names.
Acquire credentials for gssapi-principal-name with gss_acquire_cred() / AcquireSecurityCredentials().
Send packet with principal name and mech "gssapi-principal-name\0gssapi-mech-name\0" to client ( on Unix, empty string used for gssapi-mech)
Client: execute gss_init_sec_context() / InitializeSecurityContext() passing gssapi-principal-name / gssapi-mech-name parameters.
Send resulting GSSAPI blob to server.
Server : receive blob from client, execute gss_accept_sec_context()/ AcceptSecurityContext(), send resulting blob back to client
Perform 2. and 3. can until both client and server decide that authentication is done, or until some error occurred. If authentication was successful, GSSAPI context (an opaque structure) is generated on both client and server sides.
Server : Client name is extracted from the context, and compared to the name provided by client(with or without realm). If name matches, plugin returns success.