Authentication using Kerberos
Kerberos is a network authentication protocol. By using secret-key cryptography, Kerberos is designed to provide strong authentication for client applications and server applications.
In Pulsar, you can use Kerberos with SASL as a choice for authentication. And Pulsar uses the Java Authentication and Authorization Service (JAAS) for SASL configuration. You need to provide JAAS configurations for Kerberos authentication.
This document introduces how to configure Kerberos
with SASL
between Pulsar clients and brokers and how to configure Kerberos for Pulsar proxy in detail.
Configuration for Kerberos between Client and Brokerâ
Prerequisitesâ
To begin, you need to set up (or already have) a Key Distribution Center(KDC). Also you need to configure and run the Key Distribution Center(KDC)in advance.
If your organization already uses a Kerberos server (for example, by using Active Directory
), you do not have to install a new server for Pulsar. If your organization does not use a Kerberos server, you need to install one. Your Linux vendor might have packages for Kerberos
. On how to install and configure Kerberos, refer to Ubuntu,
Redhat.
Note that if you use Oracle Java, you need to download JCE policy files for your Java version and copy them to the $JAVA_HOME/jre/lib/security
directory.
Kerberos principalsâ
If you use the existing Kerberos system, ask your Kerberos administrator for a principal for each Brokers in your cluster and for every operating system user that accesses Pulsar with Kerberos authentication(via clients and tools).
If you have installed your own Kerberos system, you can create these principals with the following commands:
### add Principals for broker
sudo /usr/sbin/kadmin.local -q 'addprinc -randkey broker/{hostname}@{REALM}'
sudo /usr/sbin/kadmin.local -q "ktadd -k /etc/security/keytabs/{broker-keytabname}.keytab broker/{hostname}@{REALM}"
### add Principals for client
sudo /usr/sbin/kadmin.local -q 'addprinc -randkey client/{hostname}@{REALM}'
sudo /usr/sbin/kadmin.local -q "ktadd -k /etc/security/keytabs/{client-keytabname}.keytab client/{hostname}@{REALM}"
Note that Kerberos requires that all your hosts can be resolved with their FQDNs.
The first part of Broker principal (for example, broker
in broker/{hostname}@{REALM}
) is the serverType
of each host. The suggested values of serverType
are broker
(host machine runs service Pulsar Broker) and proxy
(host machine runs service Pulsar Proxy).
Configure how to connect to KDCâ
You need to enter the command below to specify the path to the krb5.conf
file for the client side and the broker side. The content of krb5.conf
file indicates the default Realm and KDC information. See JDKâs Kerberos Requirements for more details.
-Djava.security.krb5.conf=/etc/pulsar/krb5.conf
Here is an example of the krb5.conf file:
In the configuration file, EXAMPLE.COM
is the default realm; kdc = localhost:62037
is the kdc server url for realm EXAMPLE.COM
:
[libdefaults]
default_realm = EXAMPLE.COM
[realms]
EXAMPLE.COM = {
kdc = localhost:62037
}
Usually machines configured with kerberos already have a system wide configuration and this configuration is optional.
JAAS configuration fileâ
You need JAAS configuration file for the client side and the broker side. JAAS configuration file provides the section of information that is used to connect KDC. Here is an example named pulsar_jaas.conf
:
PulsarBroker {
com.sun.security.auth.module.Krb5LoginModule required
useKeyTab=true
storeKey=true
useTicketCache=false
keyTab="/etc/security/keytabs/pulsarbroker.keytab"
principal="broker/localhost@EXAMPLE.COM";
};
PulsarClient {
com.sun.security.auth.module.Krb5LoginModule required
useKeyTab=true
storeKey=true
useTicketCache=false
keyTab="/etc/security/keytabs/pulsarclient.keytab"
principal="client/localhost@EXAMPLE.COM";
};
You need to set the JAAS
configuration file path as JVM parameter for client and broker. For example:
-Djava.security.auth.login.config=/etc/pulsar/pulsar_jaas.conf
In the pulsar_jaas.conf
file above
PulsarBroker
is a section name in the JAAS file that each broker uses. This section tells the broker to use which principal inside Kerberos and the location of the keytab where the principal is stored.PulsarBroker
allows the broker to use the keytab specified in this section.PulsarClient
is a section name in the JASS file that each broker uses. This section tells the client to use which principal inside Kerberos and the location of the keytab where the principal is stored.PulsarClient
allows the client to use the keytab specified in this section. The following example also reuses thisPulsarClient
section in both the Pulsar internal admin configuration and in CLI command ofbin/pulsar-client
,bin/pulsar-perf
andbin/pulsar-admin
. You can also add different sections for different use cases.
You can have 2 separate JAAS configuration files:
- the file for a broker that has sections of both
PulsarBroker
andPulsarClient
; - the file for a client that only has a
PulsarClient
section.
Kerberos configuration for Brokersâ
Configure the broker.conf
fileâ
In the broker.conf
file, set Kerberos related configurations.
- Set
authenticationEnabled
totrue
; - Set
authenticationProviders
to chooseAuthenticationProviderSasl
; - Set
saslJaasClientAllowedIds
regex for principal that is allowed to connect to broker; - Set
saslJaasBrokerSectionName
that corresponds to the section in JAAS configuration file for broker;
To make Pulsar internal admin client work properly, you need to set the configuration in the broker.conf
file as below:
- Set
brokerClientAuthenticationPlugin
to client pluginAuthenticationSasl
; - Set
brokerClientAuthenticationParameters
to value in JSON string{"saslJaasClientSectionName":"PulsarClient", "serverType":"broker"}
, in whichPulsarClient
is the section name in thepulsar_jaas.conf
file, and"serverType":"broker"
indicates that the internal admin client connects to a Pulsar Broker;
Here is an example:
authenticationEnabled=true
authenticationProviders=org.apache.pulsar.broker.authentication.AuthenticationProviderSasl
saslJaasClientAllowedIds=.*client.*
saslJaasBrokerSectionName=PulsarBroker
## Authentication settings of the broker itself. Used when the broker connects to other brokers
brokerClientAuthenticationPlugin=org.apache.pulsar.client.impl.auth.AuthenticationSasl
brokerClientAuthenticationParameters={"saslJaasClientSectionName":"PulsarClient", "serverType":"broker"}
Set Broker JVM parameterâ
Set JVM parameters for JAAS configuration file and krb5 configuration file with additional options.
-Djava.security.auth.login.config=/etc/pulsar/pulsar_jaas.conf -Djava.security.krb5.conf=/etc/pulsar/krb5.conf
You can add this at the end of PULSAR_EXTRA_OPTS
in the file pulsar_env.sh
You must ensure that the operating system user who starts broker can reach the keytabs configured in the pulsar_jaas.conf
file and kdc server in the krb5.conf
file.
Kerberos configuration for clientsâ
Java Client and Java Admin Clientâ
In client application, include pulsar-client-auth-sasl
in your project dependency.
<dependency>
<groupId>org.apache.pulsar</groupId>
<artifactId>pulsar-client-auth-sasl</artifactId>
<version>${pulsar.version}</version>
</dependency>
Configure the authentication type to use AuthenticationSasl
, and also provide the authentication parameters to it.
You need 2 parameters:
saslJaasClientSectionName
. This parameter corresponds to the section in JAAS configuration file for client;serverType
. This parameter stands for whether this client connects to broker or proxy. And client uses this parameter to know which server side principal should be used.
When you authenticate between client and broker with the setting in above JAAS configuration file, we need to set saslJaasClientSectionName
to PulsarClient
and set serverType
to broker
.
The following is an example of creating a Java client:
System.setProperty("java.security.auth.login.config", "/etc/pulsar/pulsar_jaas.conf");
System.setProperty("java.security.krb5.conf", "/etc/pulsar/krb5.conf");
Map<String, String> authParams = Maps.newHashMap();
authParams.put("saslJaasClientSectionName", "PulsarClient");
authParams.put("serverType", "broker");
Authentication saslAuth = AuthenticationFactory
.create(org.apache.pulsar.client.impl.auth.AuthenticationSasl.class.getName(), authParams);
PulsarClient client = PulsarClient.builder()
.serviceUrl("pulsar://my-broker.com:6650")
.authentication(saslAuth)
.build();
The first two lines in the example above are hard coded, alternatively, you can set additional JVM parameters for JAAS and krb5 configuration file when you run the application like below:
java -cp -Djava.security.auth.login.config=/etc/pulsar/pulsar_jaas.conf -Djava.security.krb5.conf=/etc/pulsar/krb5.conf $APP-jar-with-dependencies.jar $CLASSNAME
You must ensure that the operating system user who starts pulsar client can reach the keytabs configured in the pulsar_jaas.conf
file and kdc server in the krb5.conf
file.
Configure CLI toolsâ
If you use a command-line tool (such as bin/pulsar-client
, bin/pulsar-perf
and bin/pulsar-admin
), you need to perform the following steps:
Step 1. Enter the command below to configure your client.conf
.
authPlugin=org.apache.pulsar.client.impl.auth.AuthenticationSasl
authParams={"saslJaasClientSectionName":"PulsarClient", "serverType":"broker"}
Step 2. Enter the command below to set JVM parameters for JAAS configuration file and krb5 configuration file with additional options.
-Djava.security.auth.login.config=/etc/pulsar/pulsar_jaas.conf -Djava.security.krb5.conf=/etc/pulsar/krb5.conf
You can add this at the end of PULSAR_EXTRA_OPTS
in the file pulsar_tools_env.sh
,
or add this line OPTS="$OPTS -Djava.security.auth.login.config=/etc/pulsar/pulsar_jaas.conf -Djava.security.krb5.conf=/etc/pulsar/krb5.conf "
directly to the CLI tool script.
The meaning of configurations is the same as the meaning of configurations in Java client section.
Kerberos configuration for working with Pulsar Proxyâ
With the above configuration, client and broker can do authentication using Kerberos.
A client that connects to Pulsar Proxy is a little different. Pulsar Proxy (as a SASL Server in Kerberos) authenticates Client (as a SASL client in Kerberos) first; and then Pulsar broker authenticates Pulsar Proxy.
Now in comparison with the above configuration between client and broker, we show you how to configure Pulsar Proxy as follows.
Create principal for Pulsar Proxy in Kerberosâ
You need to add new principals for Pulsar Proxy comparing with the above configuration. If you already have principals for client and broker, you only need to add the proxy principal here.
### add Principals for Pulsar Proxy
sudo /usr/sbin/kadmin.local -q 'addprinc -randkey proxy/{hostname}@{REALM}'
sudo /usr/sbin/kadmin.local -q "ktadd -k /etc/security/keytabs/{proxy-keytabname}.keytab proxy/{hostname}@{REALM}"
### add Principals for broker
sudo /usr/sbin/kadmin.local -q 'addprinc -randkey broker/{hostname}@{REALM}'
sudo /usr/sbin/kadmin.local -q "ktadd -k /etc/security/keytabs/{broker-keytabname}.keytab broker/{hostname}@{REALM}"
### add Principals for client
sudo /usr/sbin/kadmin.local -q 'addprinc -randkey client/{hostname}@{REALM}'
sudo /usr/sbin/kadmin.local -q "ktadd -k /etc/security/keytabs/{client-keytabname}.keytab client/{hostname}@{REALM}"
Add a section in JAAS configuration file for Pulsar Proxyâ
In comparison with the above configuration, add a new section for Pulsar Proxy in JAAS configuration file.
Here is an example named pulsar_jaas.conf
:
PulsarBroker {
com.sun.security.auth.module.Krb5LoginModule required
useKeyTab=true
storeKey=true
useTicketCache=false
keyTab="/etc/security/keytabs/pulsarbroker.keytab"
principal="broker/localhost@EXAMPLE.COM";
};
PulsarProxy {
com.sun.security.auth.module.Krb5LoginModule required
useKeyTab=true
storeKey=true
useTicketCache=false
keyTab="/etc/security/keytabs/pulsarproxy.keytab"
principal="proxy/localhost@EXAMPLE.COM";
};
PulsarClient {
com.sun.security.auth.module.Krb5LoginModule required
useKeyTab=true
storeKey=true
useTicketCache=false
keyTab="/etc/security/keytabs/pulsarclient.keytab"
principal="client/localhost@EXAMPLE.COM";
};
Proxy client configurationâ
Pulsar client configuration is similar with client and broker configuration, except that you need to set serverType
to proxy
instead of broker
, for the reason that you need to do the Kerberos authentication between client and proxy.
System.setProperty("java.security.auth.login.config", "/etc/pulsar/pulsar_jaas.conf");
System.setProperty("java.security.krb5.conf", "/etc/pulsar/krb5.conf");
Map<String, String> authParams = Maps.newHashMap();
authParams.put("saslJaasClientSectionName", "PulsarClient");
authParams.put("serverType", "proxy"); // ** here is the different **
Authentication saslAuth = AuthenticationFactory
.create(org.apache.pulsar.client.impl.auth.AuthenticationSasl.class.getName(), authParams);
PulsarClient client = PulsarClient.builder()
.serviceUrl("pulsar://my-broker.com:6650")
.authentication(saslAuth)
.build();
The first two lines in the example above are hard coded, alternatively, you can set additional JVM parameters for JAAS and krb5 configuration file when you run the application like below:
java -cp -Djava.security.auth.login.config=/etc/pulsar/pulsar_jaas.conf -Djava.security.krb5.conf=/etc/pulsar/krb5.conf $APP-jar-with-dependencies.jar $CLASSNAME
Kerberos configuration for Pulsar proxy serviceâ
In the proxy.conf
file, set Kerberos related configuration. Here is an example:
## related to authenticate client.
authenticationEnabled=true
authenticationProviders=org.apache.pulsar.broker.authentication.AuthenticationProviderSasl
saslJaasClientAllowedIds=.*client.*
saslJaasBrokerSectionName=PulsarProxy
## related to be authenticated by broker
brokerClientAuthenticationPlugin=org.apache.pulsar.client.impl.auth.AuthenticationSasl
brokerClientAuthenticationParameters={"saslJaasClientSectionName":"PulsarProxy", "serverType":"broker"}
forwardAuthorizationCredentials=true
The first part relates to authenticating between client and Pulsar Proxy. In this phase, client works as SASL client, while Pulsar Proxy works as SASL server.
The second part relates to authenticating between Pulsar Proxy and Pulsar Broker. In this phase, Pulsar Proxy works as SASL client, while Pulsar Broker works as SASL server.
Broker side configuration.â
The broker side configuration file is the same with the above broker.conf
, you do not need special configuration for Pulsar Proxy.
authenticationEnabled=true
authenticationProviders=org.apache.pulsar.broker.authentication.AuthenticationProviderSasl
saslJaasClientAllowedIds=.*client.*
saslJaasBrokerSectionName=PulsarBroker
Regarding authorization and role tokenâ
For Kerberos authentication, we usually use the authenticated principal as the role token for Pulsar authorization. For more information of authorization in Pulsar, see security authorization.
If you enable 'authorizationEnabled', you need to set superUserRoles
in broker.conf
that corresponds to the name registered in kdc.
For example:
superUserRoles=client/{clientIp}@EXAMPLE.COM
Regarding authentication between ZooKeeper and Brokerâ
Pulsar Broker acts as a Kerberos client when you authenticate with Zookeeper. According to ZooKeeper document, you need these settings in conf/zookeeper.conf
:
authProvider.1=org.apache.zookeeper.server.auth.SASLAuthenticationProvider
requireClientAuthScheme=sasl
Enter the following commands to add a section of Client
configurations in the file pulsar_jaas.conf
, which Pulsar Broker uses:
Client {
com.sun.security.auth.module.Krb5LoginModule required
useKeyTab=true
storeKey=true
useTicketCache=false
keyTab="/etc/security/keytabs/pulsarbroker.keytab"
principal="broker/localhost@EXAMPLE.COM";
};
In this setting, the principal of Pulsar Broker and keyTab file indicates the role of Broker when you authenticate with ZooKeeper.
Regarding authentication between BookKeeper and Brokerâ
Pulsar Broker acts as a Kerberos client when you authenticate with Bookie. According to BookKeeper document, you need to add bookkeeperClientAuthenticationPlugin
parameter in broker.conf
:
bookkeeperClientAuthenticationPlugin=org.apache.bookkeeper.sasl.SASLClientProviderFactory
In this setting, SASLClientProviderFactory
creates a BookKeeper SASL client in a Broker, and the Broker uses the created SASL client to authenticate with a Bookie node.
Enter the following commands to add a section of BookKeeper
configurations in the pulsar_jaas.conf
that Pulsar Broker uses:
BookKeeper {
com.sun.security.auth.module.Krb5LoginModule required
useKeyTab=true
storeKey=true
useTicketCache=false
keyTab="/etc/security/keytabs/pulsarbroker.keytab"
principal="broker/localhost@EXAMPLE.COM";
};
In this setting, the principal of Pulsar Broker and keyTab file indicates the role of Broker when you authenticate with Bookie.