Kerberos Authentication Support for Hazelcast Python Client
Project description
Hazelcast Python Client Kerberos Authentication Support
Requirements
- Hazelcast Enterprise 4.1 and up,
- Hazelcast Python Client 4.2.1 and up,
- Python 3.5 or better,
- Linux with a recent Kernel (tested on Debian Stretch and Buster),
- Kerberos 5 shared library (
libkrb5-dev
package on Debian/Ubuntu systems), - C compiler is required to build the python-gssapi dependency. You may opt to use the system provided
package (
python3-gssapi
on Debian/Ubuntu systems),
Install
pip install -U git+https://github.com/hazelcast/hazelcast-python-client-kerberos.git@v1.0.0#egg=hazelcast-kerberos
Usage
Enabling Kerberos authentication for Hazelcast involves server and client configuration.
Client Configuration
On the client side, a Kerberos token provider is created and passed to Hazelcast Python Client. The token provider authenticates to KDC using the given credentials, receives and caches the Kerberos ticket and retrieves a token. The token is passed to the server-side by Hazelcast Python Client for authenticating to the server.
Using a Cached Ticket
If a Kerberos ticket was already cached, probably using the kinit
command, then token provider can be created with no parameters:
token_provider = hzkerberos.TokenProvider()
Authentication using a Keytab File
You can use a keytab file for retrieving the Kerberos ticket. In this case, the principal and full path of the keytab file must be specified:
token_provider = hzkerberos.TokenProvider(principal="jduke@EXAMPLE.COM", keytab="/etc/krb5.keytab")
Authentication using a Password
You can also use a password retrieving the Kerberos ticket. In this case, the principal and the password must be specified:
token_provider = hzkerberos.TokenProvider(principal="jduke@EXAMPLE.COM", password="s3cr3t")
Overriding the Generated Service Principal Name
A service principal name (SPN) has the following structure:
[SERVICE-NAME-PREFIX/][SERVICE-HOST][@REALM]
By default, the service principal name is generated automatically, using the following components:
- SERVICE-NAME-PREFIX:
hz/
- SERVICE-HOST: Host or IP address of the member
- REALM: Blank
You can override SPN generation by specifying one or many of spn
,prefix
and realm
parameters:
token_provider = hzkerberos.TokenProvider(spn="my-service", prefix="hz", realm="EXAMPLE.COM")
Creating the Hazelcast Python Client
Once the token provider is created, you can pass it to the Hazelcast Python Client constructor. The token provider will be used by the client during authentication to the server.
client = hazelcast.HazelcastClient(token_provider=token_provider)
Server Configuration
Server security configuration (starting with 4.1) is documented in the Security section of the main Hazelcast documentation. Kerberos authentication is documented in the Security Reams sub-section.
The Kerberos support in Hazelcast has 2 configuration parts: identity and authentication. The identity part is responsible for retrieving the service ticket from Kerberos KDC (Key Distribution Center). The authentication part verifies the service tickets.
The following XML fragment can be used as an example of a working server configuration. However, it is recommended to read the completed documentation in order to fully understand the security aspects of Kerberos.
<security enabled="true">
<member-authentication realm="kerberosRealm"/>
<client-authentication realm="kerberosRealm"/>
<realms>
<realm name="kerberosRealm">
<authentication>
<kerberos>
<relax-flags-check>true</relax-flags-check>
<use-name-without-realm>false</use-name-without-realm>
<keytab-file>/common/krb5.keytab</keytab-file>
<principal>hz/${host}@EXAMPLE.COM</principal>
</kerberos>
</authentication>
<identity>
<kerberos>
<realm>EXAMPLE.COM</realm>
<keytab-file>/common/krb5.keytab</keytab-file>
<principal>hz/${host}@EXAMPLE.COM</principal>
</kerberos>
</identity>
</realm>
</realms>
</security>
Notes
- Only the default cache is supported for storing/loading the Kerberos ticket. The default cache name is resolved using
krb5_cc_default_name
call.
Running the Tests
The Docker setup in this setup is strictly for test purposes.
Running the tests requires Docker Compose.
-
Put
hazelcast-enterprise-4.2.2.jar
,log4j-api-2.14.1.jar
andlog4j-core-2.14.1.jar
in thedocker
folder. This is a temporary step to be removed in another iteration -
Create an
.env
file with the Hazelcast Enterprise license key in the root of the project:HZ_LICENSEKEY=...
-
Run docker compose, which creates KDC/KAdmin and two Hazelcast Enterprise containers:
docker-compose up
-
Build the Docker image for tests, this is required only once:
docker build -t hazelcast-python-client-kerberos_app:latest -f app.Dockerfile .
-
Run the app container to run the tests whenever the code changes:
docker run -it --rm --name hzkerberos_test \ --env-file .env \ --network=hazelcast-python-client-kerberos_hz \ -v `pwd`:/home/hz/app \ -v hazelcast-python-client-kerberos_common:/common \ hazelcast-python-client-kerberos_app:latest test
Notes
- When a container runs, it executes the corresponding default action, e.g.,
test
for the app container. In order to get a shell instead of the default action, you can use the/bin/bash
command. - If
VERBOSE
environment variable is1
, tracing is enabled for entrypoint scripts. LOGGING_LEVEL
environment variable for Hazelcast containers controls the logging level.
Accessing KDC
When the docker compose setup is running, you can access KDC by accessing its container:
docker-compose exec kdc /bin/bash
And starting kadmin.local
:
rlwrap kadmin.local
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file hazelcast-kerberos-1.0.0.tar.gz
.
File metadata
- Download URL: hazelcast-kerberos-1.0.0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c02ecfa0fe3d348ee7b43c57070a33ef34897ab525562984fd6cfa90e6073c1 |
|
MD5 | 7b58b1a9e07166a079cb2f4e99a0081a |
|
BLAKE2b-256 | 6cff2cef71863313add510a61e1e60791bced14e2a5bc079722695011b8a24fc |
File details
Details for the file hazelcast_kerberos-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: hazelcast_kerberos-1.0.0-py3-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94d32c4f9aefdee3d9eb34f03b81edbcc9e2d98328389f315ad1f2a44027249d |
|
MD5 | e2677d9772ba00247feb501eb3c53b6a |
|
BLAKE2b-256 | b09659628368cc50679060245cff83e82e337ccfd2510f7d00a6cfa9fc49d8c4 |