blob: a2ca985d549ef78e838e30592a7b7f8f637eeda5 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>JndiLdapContextFactory.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Shiro :: Core</a> &gt; <a href="index.source.html" class="el_package">org.apache.shiro.realm.ldap</a> &gt; <span class="el_source">JndiLdapContextFactory.java</span></div><h1>JndiLdapContextFactory.java</h1><pre class="source lang-java linenums">/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* &quot;License&quot;); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.shiro.realm.ldap;
import org.apache.shiro.util.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.naming.AuthenticationException;
import javax.naming.Context;
import javax.naming.NamingException;
import javax.naming.ldap.InitialLdapContext;
import javax.naming.ldap.LdapContext;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.Map;
/**
* {@link LdapContextFactory} implementation using the default Sun/Oracle JNDI Ldap API, utilizing JNDI
* environment properties and an {@link javax.naming.InitialContext}.
* &lt;h2&gt;Configuration&lt;/h2&gt;
* This class basically wraps a default template JNDI environment properties Map. This properties map is the base
* configuration template used to acquire JNDI {@link LdapContext} connections at runtime. The
* {@link #getLdapContext(Object, Object)} method implementation merges this default template with other properties
* accessible at runtime only (for example per-method principals and credentials). The constructed runtime map is the
* one used to acquire the {@link LdapContext}.
* &lt;p/&gt;
* The template can be configured directly via the {@link #getEnvironment()}/{@link #setEnvironment(java.util.Map)}
* properties directly if necessary, but it is usually more convenient to use the supporting wrapper get/set methods
* for various environment properties. These wrapper methods interact with the environment
* template on your behalf, leaving your configuration cleaner and easier to understand.
* &lt;p/&gt;
* For example, consider the following two identical configurations:
* &lt;pre&gt;
* [main]
* ldapRealm = org.apache.shiro.realm.ldap.DefaultLdapRealm
* ldapRealm.contextFactory.url = ldap://localhost:389
* ldapRealm.contextFactory.authenticationMechanism = DIGEST-MD5
* &lt;/pre&gt;
* and
* &lt;pre&gt;
* [main]
* ldapRealm = org.apache.shiro.realm.ldap.DefaultLdapRealm
* ldapRealm.contextFactory.environment[java.naming.provider.url] = ldap://localhost:389
* ldapRealm.contextFactory.environment[java.naming.security.authentication] = DIGEST-MD5
* &lt;/pre&gt;
* As you can see, the 2nd configuration block is a little more difficult to read and also requires knowledge
* of the underlying JNDI Context property keys. The first is easier to read and understand.
* &lt;p/&gt;
* Note that occasionally it will be necessary to use the latter configuration style to set environment properties
* where no corresponding wrapper method exists. In this case, the hybrid approach is still a little easier to read.
* For example:
* &lt;pre&gt;
* [main]
* ldapRealm = org.apache.shiro.realm.ldap.DefaultLdapRealm
* ldapRealm.contextFactory.url = ldap://localhost:389
* ldapRealm.contextFactory.authenticationMechanism = DIGEST-MD5
* ldapRealm.contextFactory.environment[some.other.obscure.jndi.key] = some value
* &lt;/pre&gt;
*
* @since 1.1
*/
public class JndiLdapContextFactory implements LdapContextFactory {
/*-------------------------------------------
| C O N S T A N T S |
===========================================*/
/**
* The Sun LDAP property used to enable connection pooling. This is used in the default implementation
* to enable LDAP connection pooling.
*/
protected static final String SUN_CONNECTION_POOLING_PROPERTY = &quot;com.sun.jndi.ldap.connect.pool&quot;;
protected static final String DEFAULT_CONTEXT_FACTORY_CLASS_NAME = &quot;com.sun.jndi.ldap.LdapCtxFactory&quot;;
protected static final String SIMPLE_AUTHENTICATION_MECHANISM_NAME = &quot;simple&quot;;
protected static final String DEFAULT_REFERRAL = &quot;follow&quot;;
<span class="fc" id="L93"> private static final Logger log = LoggerFactory.getLogger(JndiLdapContextFactory.class);</span>
/*-------------------------------------------
| I N S T A N C E V A R I A B L E S |
============================================*/
private Map&lt;String, Object&gt; environment;
private boolean poolingEnabled;
private String systemPassword;
private String systemUsername;
/*-------------------------------------------
| C O N S T R U C T O R S |
===========================================*/
/**
* Default no-argument constructor that initializes the backing {@link #getEnvironment() environment template} with
* the {@link #setContextFactoryClassName(String) contextFactoryClassName} equal to
* {@code com.sun.jndi.ldap.LdapCtxFactory} (the Sun/Oracle default) and the default
* {@link #setReferral(String) referral} behavior to {@code follow}.
*/
<span class="fc" id="L113"> public JndiLdapContextFactory() {</span>
<span class="fc" id="L114"> this.environment = new HashMap&lt;String, Object&gt;();</span>
<span class="fc" id="L115"> setContextFactoryClassName(DEFAULT_CONTEXT_FACTORY_CLASS_NAME);</span>
<span class="fc" id="L116"> setReferral(DEFAULT_REFERRAL);</span>
<span class="fc" id="L117"> poolingEnabled = true;</span>
<span class="fc" id="L118"> }</span>
/*-------------------------------------------
| A C C E S S O R S / M O D I F I E R S |
===========================================*/
/**
* Sets the type of LDAP authentication mechanism to use when connecting to the LDAP server.
* This is a wrapper method for setting the JNDI {@link #getEnvironment() environment template}'s
* {@link Context#SECURITY_AUTHENTICATION} property.
* &lt;p/&gt;
* &quot;none&quot; (i.e. anonymous) and &quot;simple&quot; authentications are supported automatically and don't need to be configured
* via this property. However, if you require a different mechanism, such as a SASL or External mechanism, you
* must configure that explicitly via this property. See the
* &lt;a href=&quot;http://download-llnw.oracle.com/javase/tutorial/jndi/ldap/auth_mechs.html&quot;&gt;JNDI LDAP
* Authentication Mechanisms&lt;/a&gt; for more information.
*
* @param authenticationMechanism the type of LDAP authentication to perform.
* @see &lt;a href=&quot;http://download-llnw.oracle.com/javase/tutorial/jndi/ldap/auth_mechs.html&quot;&gt;
* http://download-llnw.oracle.com/javase/tutorial/jndi/ldap/auth_mechs.html&lt;/a&gt;
*/
public void setAuthenticationMechanism(String authenticationMechanism) {
<span class="fc" id="L140"> setEnvironmentProperty(Context.SECURITY_AUTHENTICATION, authenticationMechanism);</span>
<span class="fc" id="L141"> }</span>
/**
* Returns the type of LDAP authentication mechanism to use when connecting to the LDAP server.
* This is a wrapper method for getting the JNDI {@link #getEnvironment() environment template}'s
* {@link Context#SECURITY_AUTHENTICATION} property.
* &lt;p/&gt;
* If this property remains un-configured (i.e. {@code null} indicating the
* {@link #setAuthenticationMechanism(String)} method wasn't used), this indicates that the default JNDI
* &quot;none&quot; (anonymous) and &quot;simple&quot; authentications are supported automatically. Any non-null value returned
* represents an explicitly configured mechanism (e.g. a SASL or external mechanism). See the
* &lt;a href=&quot;http://download-llnw.oracle.com/javase/tutorial/jndi/ldap/auth_mechs.html&quot;&gt;JNDI LDAP
* Authentication Mechanisms&lt;/a&gt; for more information.
*
* @return the type of LDAP authentication mechanism to use when connecting to the LDAP server.
* @see &lt;a href=&quot;http://download-llnw.oracle.com/javase/tutorial/jndi/ldap/auth_mechs.html&quot;&gt;
* http://download-llnw.oracle.com/javase/tutorial/jndi/ldap/auth_mechs.html&lt;/a&gt;
*/
public String getAuthenticationMechanism() {
<span class="fc" id="L160"> return (String) getEnvironmentProperty(Context.SECURITY_AUTHENTICATION);</span>
}
/**
* The name of the ContextFactory class to use. This defaults to the SUN LDAP JNDI implementation
* but can be overridden to use custom LDAP factories.
* &lt;p/&gt;
* This is a wrapper method for setting the JNDI environment's {@link Context#INITIAL_CONTEXT_FACTORY} property.
*
* @param contextFactoryClassName the context factory that should be used.
*/
public void setContextFactoryClassName(String contextFactoryClassName) {
<span class="fc" id="L172"> setEnvironmentProperty(Context.INITIAL_CONTEXT_FACTORY, contextFactoryClassName);</span>
<span class="fc" id="L173"> }</span>
/**
* Sets the name of the ContextFactory class to use. This defaults to the SUN LDAP JNDI implementation
* but can be overridden to use custom LDAP factories.
* &lt;p/&gt;
* This is a wrapper method for getting the JNDI environment's {@link Context#INITIAL_CONTEXT_FACTORY} property.
*
* @return the name of the ContextFactory class to use.
*/
public String getContextFactoryClassName() {
<span class="fc" id="L184"> return (String) getEnvironmentProperty(Context.INITIAL_CONTEXT_FACTORY);</span>
}
/**
* Returns the base JNDI environment template to use when acquiring an LDAP connection (an {@link LdapContext}).
* This property is the base configuration template to use for all connections. This template is then
* merged with appropriate runtime values as necessary in the
* {@link #getLdapContext(Object, Object)} implementation. The merged environment instance is what is used to
* acquire the {@link LdapContext} at runtime.
* &lt;p/&gt;
* Most other get/set methods in this class act as thin proxy wrappers that interact with this property. The
* benefit of using them is you have an easier-to-use configuration mechanism compared to setting map properties
* based on JNDI context keys.
*
* @return the base JNDI environment template to use when acquiring an LDAP connection (an {@link LdapContext})
*/
public Map getEnvironment() {
<span class="fc" id="L201"> return this.environment;</span>
}
/**
* Sets the base JNDI environment template to use when acquiring LDAP connections. It is typically more common
* to use the other get/set methods in this class to set individual environment settings rather than use
* this method, but it is available for advanced users that want full control over the base JNDI environment
* settings.
* &lt;p/&gt;
* Note that this template only represents the base/default environment settings. It is then merged with
* appropriate runtime values as necessary in the {@link #getLdapContext(Object, Object)} implementation.
* The merged environment instance is what is used to acquire the connection ({@link LdapContext}) at runtime.
*
* @param env the base JNDI environment template to use when acquiring LDAP connections.
*/
@SuppressWarnings({&quot;unchecked&quot;})
public void setEnvironment(Map env) {
<span class="fc" id="L218"> this.environment = env;</span>
<span class="fc" id="L219"> }</span>
/**
* Returns the environment property value bound under the specified key.
*
* @param name the name of the environment property
* @return the property value or {@code null} if the value has not been set.
*/
private Object getEnvironmentProperty(String name) {
<span class="fc" id="L228"> return this.environment.get(name);</span>
}
/**
* Will apply the value to the environment attribute if and only if the value is not null or empty. If it is
* null or empty, the corresponding environment attribute will be removed.
*
* @param name the environment property key
* @param value the environment property value. A null/empty value will trigger removal.
*/
private void setEnvironmentProperty(String name, String value) {
<span class="fc bfc" id="L239" title="All 2 branches covered."> if (StringUtils.hasText(value)) {</span>
<span class="fc" id="L240"> this.environment.put(name, value);</span>
} else {
<span class="fc" id="L242"> this.environment.remove(name);</span>
}
<span class="fc" id="L244"> }</span>
/**
* Returns whether or not connection pooling should be used when possible and appropriate. This property is NOT
* backed by the {@link #getEnvironment() environment template} like most other properties in this class. It
* is a flag to indicate that pooling is preferred. The default value is {@code true}.
* &lt;p/&gt;
* However, pooling will only actually be enabled if this property is {@code true} &lt;em&gt;and&lt;/em&gt; the connection
* being created is for the {@link #getSystemUsername() systemUsername} user. Connection pooling is not used for
* general authentication attempts by application end-users because the probability of re-use for that same
* user-specific connection after an authentication attempt is extremely low.
* &lt;p/&gt;
* If this attribute is {@code true} and it has been determined that the connection is being made with the
* {@link #getSystemUsername() systemUsername}, the
* {@link #getLdapContext(Object, Object)} implementation will set the Sun/Oracle-specific
* {@code com.sun.jndi.ldap.connect.pool} environment property to &amp;quot;{@code true}&amp;quot;. This means setting
* this property is only likely to work if using the Sun/Oracle default context factory class (i.e. not using
* a custom {@link #getContextFactoryClassName() contextFactoryClassName}).
*
* @return whether or not connection pooling should be used when possible and appropriate
*/
public boolean isPoolingEnabled() {
<span class="fc" id="L266"> return poolingEnabled;</span>
}
/**
* Sets whether or not connection pooling should be used when possible and appropriate. This property is NOT
* a wrapper to the {@link #getEnvironment() environment template} like most other properties in this class. It
* is a flag to indicate that pooling is preferred. The default value is {@code true}.
* &lt;p/&gt;
* However, pooling will only actually be enabled if this property is {@code true} &lt;em&gt;and&lt;/em&gt; the connection
* being created is for the {@link #getSystemUsername() systemUsername} user. Connection pooling is not used for
* general authentication attempts by application end-users because the probability of re-use for that same
* user-specific connection after an authentication attempt is extremely low.
* &lt;p/&gt;
* If this attribute is {@code true} and it has been determined that the connection is being made with the
* {@link #getSystemUsername() systemUsername}, the
* {@link #getLdapContext(Object, Object)} implementation will set the Sun/Oracle-specific
* {@code com.sun.jndi.ldap.connect.pool} environment property to &amp;quot;{@code true}&amp;quot;. This means setting
* this property is only likely to work if using the Sun/Oracle default context factory class (i.e. not using
* a custom {@link #getContextFactoryClassName() contextFactoryClassName}).
*
* @param poolingEnabled whether or not connection pooling should be used when possible and appropriate
*/
public void setPoolingEnabled(boolean poolingEnabled) {
<span class="fc" id="L289"> this.poolingEnabled = poolingEnabled;</span>
<span class="fc" id="L290"> }</span>
/**
* Sets the LDAP referral behavior when creating a connection. Defaults to {@code follow}. See the Sun/Oracle LDAP
* &lt;a href=&quot;http://java.sun.com/products/jndi/tutorial/ldap/referral/jndi.html&quot;&gt;referral documentation&lt;/a&gt; for more.
*
* @param referral the referral property.
* @see &lt;a href=&quot;http://java.sun.com/products/jndi/tutorial/ldap/referral/jndi.html&quot;&gt;Referrals in JNDI&lt;/a&gt;
*/
public void setReferral(String referral) {
<span class="fc" id="L300"> setEnvironmentProperty(Context.REFERRAL, referral);</span>
<span class="fc" id="L301"> }</span>
/**
* Returns the LDAP referral behavior when creating a connection. Defaults to {@code follow}.
* See the Sun/Oracle LDAP
* &lt;a href=&quot;http://java.sun.com/products/jndi/tutorial/ldap/referral/jndi.html&quot;&gt;referral documentation&lt;/a&gt; for more.
*
* @return the LDAP referral behavior when creating a connection.
* @see &lt;a href=&quot;http://java.sun.com/products/jndi/tutorial/ldap/referral/jndi.html&quot;&gt;Referrals in JNDI&lt;/a&gt;
*/
public String getReferral() {
<span class="fc" id="L312"> return (String) getEnvironmentProperty(Context.REFERRAL);</span>
}
/**
* The LDAP url to connect to. (e.g. ldap://&amp;lt;ldapDirectoryHostname&amp;gt;:&amp;lt;port&amp;gt;). This must be configured.
*
* @param url the LDAP url to connect to. (e.g. ldap://&amp;lt;ldapDirectoryHostname&amp;gt;:&amp;lt;port&amp;gt;)
*/
public void setUrl(String url) {
<span class="fc" id="L321"> setEnvironmentProperty(Context.PROVIDER_URL, url);</span>
<span class="fc" id="L322"> }</span>
/**
* Returns the LDAP url to connect to. (e.g. ldap://&amp;lt;ldapDirectoryHostname&amp;gt;:&amp;lt;port&amp;gt;).
* This must be configured.
*
* @return the LDAP url to connect to. (e.g. ldap://&amp;lt;ldapDirectoryHostname&amp;gt;:&amp;lt;port&amp;gt;)
*/
public String getUrl() {
<span class="fc" id="L331"> return (String) getEnvironmentProperty(Context.PROVIDER_URL);</span>
}
/**
* Sets the password of the {@link #setSystemUsername(String) systemUsername} that will be used when creating an
* LDAP connection used for authorization queries.
* &lt;p/&gt;
* Note that setting this property is not required if the calling LDAP Realm does not perform authorization
* checks.
*
* @param systemPassword the password of the {@link #setSystemUsername(String) systemUsername} that will be used
* when creating an LDAP connection used for authorization queries.
*/
public void setSystemPassword(String systemPassword) {
<span class="fc" id="L345"> this.systemPassword = systemPassword;</span>
<span class="fc" id="L346"> }</span>
/**
* Returns the password of the {@link #setSystemUsername(String) systemUsername} that will be used when creating an
* LDAP connection used for authorization queries.
* &lt;p/&gt;
* Note that setting this property is not required if the calling LDAP Realm does not perform authorization
* checks.
*
* @return the password of the {@link #setSystemUsername(String) systemUsername} that will be used when creating an
* LDAP connection used for authorization queries.
*/
public String getSystemPassword() {
<span class="fc" id="L359"> return this.systemPassword;</span>
}
/**
* Sets the system username that will be used when creating an LDAP connection used for authorization queries.
* The user must have the ability to query for authorization data for any application user.
* &lt;p/&gt;
* Note that setting this property is not required if the calling LDAP Realm does not perform authorization
* checks.
*
* @param systemUsername the system username that will be used when creating an LDAP connection used for
* authorization queries.
*/
public void setSystemUsername(String systemUsername) {
<span class="fc" id="L373"> this.systemUsername = systemUsername;</span>
<span class="fc" id="L374"> }</span>
/**
* Returns the system username that will be used when creating an LDAP connection used for authorization queries.
* The user must have the ability to query for authorization data for any application user.
* &lt;p/&gt;
* Note that setting this property is not required if the calling LDAP Realm does not perform authorization
* checks.
*
* @return the system username that will be used when creating an LDAP connection used for authorization queries.
*/
public String getSystemUsername() {
<span class="fc" id="L386"> return systemUsername;</span>
}
/*--------------------------------------------
| M E T H O D S |
============================================*/
/**
* This implementation delegates to {@link #getLdapContext(Object, Object)} using the
* {@link #getSystemUsername() systemUsername} and {@link #getSystemPassword() systemPassword} properties as
* arguments.
*
* @return the system LdapContext
* @throws NamingException if there is a problem connecting to the LDAP directory
*/
public LdapContext getSystemLdapContext() throws NamingException {
<span class="fc" id="L402"> return getLdapContext((Object)getSystemUsername(), getSystemPassword());</span>
}
/**
* Deprecated - use {@link #getLdapContext(Object, Object)} instead. This will be removed before Apache Shiro 2.0.
*
* @param username the username to use when creating the connection.
* @param password the password to use when creating the connection.
* @return a {@code LdapContext} bound using the given username and password.
* @throws javax.naming.NamingException if there is an error creating the context.
* @deprecated the {@link #getLdapContext(Object, Object)} method should be used in all cases to ensure more than
* String principals and credentials can be used. Shiro no longer calls this method - it will be
* removed before the 2.0 release.
*/
@Deprecated
public LdapContext getLdapContext(String username, String password) throws NamingException {
<span class="fc" id="L418"> return getLdapContext((Object) username, password);</span>
}
/**
* Returns {@code true} if LDAP connection pooling should be used when acquiring a connection based on the specified
* account principal, {@code false} otherwise.
* &lt;p/&gt;
* This implementation returns {@code true} only if {@link #isPoolingEnabled()} and the principal equals the
* {@link #getSystemUsername()}. The reasoning behind this is that connection pooling is not desirable for
* general authentication attempts by application end-users because the probability of re-use for that same
* user-specific connection after an authentication attempt is extremely low.
*
* @param principal the principal under which the connection will be made
* @return {@code true} if LDAP connection pooling should be used when acquiring a connection based on the specified
* account principal, {@code false} otherwise.
*/
protected boolean isPoolingConnections(Object principal) {
<span class="pc bpc" id="L435" title="1 of 6 branches missed."> return isPoolingEnabled() &amp;&amp; principal != null &amp;&amp; principal.equals(getSystemUsername());</span>
}
/**
* This implementation returns an LdapContext based on the configured JNDI/LDAP environment configuration.
* The environnmet (Map) used at runtime is created by merging the default/configured
* {@link #getEnvironment() environment template} with some runtime values as necessary (e.g. a principal and
* credential available at runtime only).
* &lt;p/&gt;
* After the merged Map instance is created, the LdapContext connection is
* {@link #createLdapContext(java.util.Hashtable) created} and returned.
*
* @param principal the principal to use when acquiring a connection to the LDAP directory
* @param credentials the credentials (password, X.509 certificate, etc) to use when acquiring a connection to the
* LDAP directory
* @return the acquired {@code LdapContext} connection bound using the specified principal and credentials.
* @throws NamingException
* @throws IllegalStateException
*/
public LdapContext getLdapContext(Object principal, Object credentials) throws NamingException,
IllegalStateException {
<span class="fc" id="L457"> String url = getUrl();</span>
<span class="fc bfc" id="L458" title="All 2 branches covered."> if (url == null) {</span>
<span class="fc" id="L459"> throw new IllegalStateException(&quot;An LDAP URL must be specified of the form ldap://&lt;hostname&gt;:&lt;port&gt;&quot;);</span>
}
//copy the environment template into the runtime instance that will be further edited based on
//the method arguments and other class attributes.
<span class="fc" id="L464"> Hashtable&lt;String, Object&gt; env = new Hashtable&lt;String, Object&gt;(this.environment);</span>
<span class="fc" id="L466"> Object authcMech = getAuthenticationMechanism();</span>
<span class="pc bpc" id="L467" title="4 of 6 branches missed."> if (authcMech == null &amp;&amp; (principal != null || credentials != null)) {</span>
//authenticationMechanism has not been set, but either a principal and/or credentials were
//supplied, indicating that at least a 'simple' authentication attempt is indeed occurring - the Shiro
//end-user just didn't configure it explicitly. So we set it to be 'simple' here as a convenience;
//the Sun provider implementation already does this same logic, but by repeating that logic here, we ensure
//this convenience exists regardless of provider implementation):
<span class="fc" id="L473"> env.put(Context.SECURITY_AUTHENTICATION, SIMPLE_AUTHENTICATION_MECHANISM_NAME);</span>
}
<span class="pc bpc" id="L475" title="1 of 2 branches missed."> if (principal != null) {</span>
<span class="fc" id="L476"> env.put(Context.SECURITY_PRINCIPAL, principal);</span>
}
<span class="fc bfc" id="L478" title="All 2 branches covered."> if (credentials != null) {</span>
<span class="fc" id="L479"> env.put(Context.SECURITY_CREDENTIALS, credentials);</span>
}
<span class="fc" id="L482"> boolean pooling = isPoolingConnections(principal);</span>
<span class="fc bfc" id="L483" title="All 2 branches covered."> if (pooling) {</span>
<span class="fc" id="L484"> env.put(SUN_CONNECTION_POOLING_PROPERTY, &quot;true&quot;);</span>
}
<span class="pc bpc" id="L487" title="1 of 2 branches missed."> if (log.isDebugEnabled()) {</span>
<span class="fc bfc" id="L488" title="All 2 branches covered."> log.debug(&quot;Initializing LDAP context using URL [{}] and principal [{}] with pooling {}&quot;,</span>
new Object[]{url, principal, (pooling ? &quot;enabled&quot; : &quot;disabled&quot;)});
}
// validate the config before creating the context
<span class="fc" id="L493"> validateAuthenticationInfo(env);</span>
<span class="fc" id="L495"> return createLdapContext(env);</span>
}
/**
* Creates and returns a new {@link javax.naming.ldap.InitialLdapContext} instance. This method exists primarily
* to support testing where a mock LdapContext can be returned instead of actually creating a connection, but
* subclasses are free to provide a different implementation if necessary.
*
* @param env the JNDI environment settings used to create the LDAP connection
* @return an LdapConnection
* @throws NamingException if a problem occurs creating the connection
*/
protected LdapContext createLdapContext(Hashtable env) throws NamingException {
<span class="nc" id="L508"> return new InitialLdapContext(env, null);</span>
}
/**
* Validates the configuration in the JNDI &lt;code&gt;environment&lt;/code&gt; settings and throws an exception if a problem
* exists.
* &lt;p/&gt;
* This implementation will throw a {@link AuthenticationException} if the authentication mechanism is set to
* 'simple', the principal is non-empty, and the credentials are empty (as per
* &lt;a href=&quot;http://tools.ietf.org/html/rfc4513#section-5.1.2&quot;&gt;rfc4513 section-5.1.2&lt;/a&gt;).
*
* @param environment the JNDI environment settings to be validated
* @throws AuthenticationException if a configuration problem is detected
*/
protected void validateAuthenticationInfo(Hashtable&lt;String, Object&gt; environment)
throws AuthenticationException
{
// validate when using Simple auth both principal and credentials are set
<span class="pc bpc" id="L527" title="1 of 2 branches missed."> if(SIMPLE_AUTHENTICATION_MECHANISM_NAME.equals(environment.get(Context.SECURITY_AUTHENTICATION))) {</span>
// only validate credentials if we have a non-empty principal
<span class="pc bpc" id="L530" title="1 of 2 branches missed."> if( environment.get(Context.SECURITY_PRINCIPAL) != null &amp;&amp;</span>
<span class="pc bpc" id="L531" title="1 of 2 branches missed."> StringUtils.hasText( String.valueOf( environment.get(Context.SECURITY_PRINCIPAL) ))) {</span>
<span class="fc" id="L533"> Object credentials = environment.get(Context.SECURITY_CREDENTIALS);</span>
// from the FAQ, we need to check for empty credentials:
// http://docs.oracle.com/javase/tutorial/jndi/ldap/faq.html
<span class="pc bpc" id="L537" title="2 of 10 branches missed."> if( credentials == null ||</span>
(credentials instanceof byte[] &amp;&amp; ((byte[])credentials).length &lt;= 0) || // empty byte[]
(credentials instanceof char[] &amp;&amp; ((char[])credentials).length &lt;= 0) || // empty char[]
<span class="pc bpc" id="L540" title="1 of 4 branches missed."> (String.class.isInstance(credentials) &amp;&amp; !StringUtils.hasText(String.valueOf(credentials)))) {</span>
<span class="fc" id="L542"> throw new javax.naming.AuthenticationException(&quot;LDAP Simple authentication requires both a &quot;</span>
+ &quot;principal and credentials.&quot;);
}
}
}
<span class="fc" id="L547"> }</span>
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.3.201901230119</span></div></body></html>