All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.enterprise.security.auth.realm.ldap.LDAPRealm Maven / Gradle / Ivy

There is a newer version: 10.0-b28
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 * 
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 * 
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License. You can obtain
 * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
 * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 * 
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
 * Sun designates this particular file as subject to the "Classpath" exception
 * as provided by Sun in the GPL Version 2 section of the License file that
 * accompanied this code.  If applicable, add the following below the License
 * Header, with the fields enclosed by brackets [] replaced by your own
 * identifying information: "Portions Copyrighted [year]
 * [name of copyright owner]"
 * 
 * Contributor(s):
 * 
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

package com.sun.enterprise.security.auth.realm.ldap;

import java.util.*;
import java.util.logging.Level;
import javax.naming.CompositeName;
import javax.naming.Context;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.directory.Attribute;
import javax.naming.directory.DirContext;
import javax.naming.directory.InitialDirContext;
import javax.naming.directory.SearchControls;
import javax.naming.directory.SearchResult;
import javax.security.auth.login.LoginException;
import java.security.Principal;
// imported from the ldap booster pack
//V3:Commented till we publish ldapbp to maven
import com.sun.jndi.ldap.obj.GroupOfURLs;
import javax.security.auth.x500.X500Principal;
import com.sun.enterprise.security.auth.realm.BadRealmException;
import com.sun.enterprise.security.auth.realm.NoSuchUserException;
import com.sun.enterprise.security.auth.realm.NoSuchRealmException;
import com.sun.enterprise.security.auth.realm.InvalidOperationException;

import com.sun.enterprise.security.auth.realm.IASRealm;
import org.jvnet.hk2.annotations.Service;


/**
 * Realm wrapper for supporting LDAP authentication.
 *
 * 

See LDAPLoginModule documentation for more details on the operation * of the LDAP realm and login module. * *

The ldap realm needs the following properties in its configuration: *

    *
  • directory - URL of LDAP directory to use *
  • base-dn - The base DN to use for user searches. *
  • jaas-ctx - JAAS context name used to access LoginModule for * authentication. *
* *

Besides JDK Context properties start with java.naming, javax.security, * one can also set connection pool related properties starting with * com.sun.jndi.ldap.connect.pool. * See http://java.sun.com/products/jndi/tutorial/ldap/connect/config.html * for details. * Also, the following optional attributes can also be specified: *

    *
  • search-filter - LDAP filter to use for searching for the user * entry based on username given to iAS. The default value is * uid=%s where %s is expanded to the username. *
  • group-base-dn - The base DN to use for group searches. By default * its value is the same as base-dn. *
  • group-search-filter - The LDAP filter to use for searching group * membership of a given user. The default value is * uniquemember=%d where %d is expanded to the DN of the * user found by the user search. *
  • group-target - The attribute which value(s) are interpreted as * group membership names of the user. Default value is cn. *
  • search-bind-dn - The dn of ldap user. optional and no default value. *
  • search-bind-password - The password of search-bind-dn.optional and * no default value. *
  • pool-size - The JNDI ldap connection pool size. *
* * @see com.sun.enterprise.security.auth.login.LDAPLoginModule * */ @Service public final class LDAPRealm extends IASRealm { // Descriptive string of the authentication type of this realm. public static final String AUTH_TYPE = "ldap"; // These are property names which should be in auth-realm in server.xml public static final String PARAM_DIRURL="directory"; public static final String PARAM_USERDN="base-dn"; // These are optional, defaults are provided // %s = subject name // %d = DN of user search result public static final String PARAM_SEARCH_FILTER="search-filter"; public static final String PARAM_GRPDN="group-base-dn"; public static final String PARAM_GRP_SEARCH_FILTER="group-search-filter"; public static final String PARAM_GRP_TARGET="group-target"; public static final String PARAM_MODE="mode"; public static final String PARAM_JNDICF="jndiCtxFactory"; public static final String PARAM_POOLSIZE="pool-size"; // These are optional, no default values are provided public static final String PARAM_BINDDN="search-bind-dn"; public static final String PARAM_BINDPWD="search-bind-password"; // Only find-bind mode is supported so mode attribute is not exposed yet public static final String MODE_FIND_BIND="find-bind"; // Expansion strings public static final String SUBST_SUBJECT_NAME="%s"; public static final String SUBST_SUBJECT_DN="%d"; // Defaults private static final String SEARCH_FILTER_DEFAULT= "uid="+SUBST_SUBJECT_NAME; private static final String GRP_SEARCH_FILTER_DEFAULT= "uniquemember="+SUBST_SUBJECT_DN; private static final String GRP_TARGET_DEFAULT="cn"; private static final String MODE_DEFAULT=MODE_FIND_BIND; private static final String JNDICF_DEFAULT= "com.sun.jndi.ldap.LdapCtxFactory"; private static final int POOLSIZE_DEFAULT=5; private final String[] _dnOnly = {"dn"}; private static final String SUN_JNDI_POOL = "com.sun.jndi.ldap.connect.pool"; private static final String SUN_JNDI_POOL_ = "com.sun.jndi.ldap.connect.pool."; private static final String SUN_JNDI_POOL_PROTOCOL = "com.sun.jndi.ldap.connect.pool.protocol"; private static final String SUN_JNDI_POOL_MAXSIZE = "com.sun.jndi.ldap.connect.pool.maxsize"; // dynamic group related properties. private static final String DYNAMIC_GROUP_OBJECT_FACTORY = "com.sun.jndi.ldap.obj.LdapGroupFactory"; public static final String DYNAMIC_GROUP_FACTORY_OBJECT_PROPERTY = "java.naming.factory.object"; private static final String DYNAMIC_GROUP_STATE_FACTORY = "com.sun.jndi.ldap.obj.LdapGroupFactory"; public static final String DYNAMIC_GROUP_STATE_FACTORY_PROPERTY = "java.naming.factory.state"; public static final String LDAP_SOCKET_FACTORY = "java.naming.ldap.factory.socket"; public static final String DEFAULT_SSL_LDAP_SOCKET_FACTORY = "com.sun.enterprise.security.auth.realm.ldap.CustomSocketFactory"; public static final String LDAPS_URL = "ldaps://"; public static final String DEFAULT_POOL_PROTOCOL = "plain ssl"; public static final String DYNAMIC_GROUP_FILTER = "(&(objectclass=groupofuniquenames)(objectclass=*groupofurls*))"; public static final String SSL = "SSL"; private HashMap groupCache; private Vector emptyVector; private Properties ldapBindProps = new Properties(); /** * Initialize a realm with some properties. This can be used * when instantiating realms from their descriptions. This * method may only be called a single time. * * @param props Initialization parameters used by this realm. * @exception BadRealmException If the configuration parameters * identify a corrupt realm. * @exception NoSuchRealmException If the configuration parameters * specify a realm which doesn't exist. * */ public synchronized void init(Properties props) throws BadRealmException, NoSuchRealmException { super.init(props); String url = props.getProperty(PARAM_DIRURL); String dn = props.getProperty(PARAM_USERDN); String jaasCtx = props.getProperty(IASRealm.JAAS_CONTEXT_PARAM); if (url==null || dn==null || jaasCtx==null) { String msg = sm.getString("ldaprealm.badconfig", url, dn, jaasCtx); throw new BadRealmException(msg); } this.setProperty(PARAM_DIRURL, url); ldapBindProps.setProperty(Context.PROVIDER_URL, url); this.setProperty(PARAM_USERDN, dn); this.setProperty(IASRealm.JAAS_CONTEXT_PARAM, jaasCtx); String mode = props.getProperty(PARAM_MODE, MODE_DEFAULT); if (!MODE_DEFAULT.equals(mode)) { String msg = sm.getString("ldaprealm.badmode", mode); throw new BadRealmException(msg); } this.setProperty(PARAM_MODE, mode); String ctxF = props.getProperty(PARAM_JNDICF, JNDICF_DEFAULT); this.setProperty(PARAM_JNDICF, ctxF); ldapBindProps.setProperty(Context.INITIAL_CONTEXT_FACTORY, ctxF); String searchFilter = props.getProperty( PARAM_SEARCH_FILTER, SEARCH_FILTER_DEFAULT); this.setProperty(PARAM_SEARCH_FILTER,searchFilter); String grpDN = props.getProperty(PARAM_GRPDN, dn); this.setProperty(PARAM_GRPDN, grpDN); String grpSearchFilter = props.getProperty( PARAM_GRP_SEARCH_FILTER, GRP_SEARCH_FILTER_DEFAULT); this.setProperty(PARAM_GRP_SEARCH_FILTER, grpSearchFilter); String grpTarget = props.getProperty( PARAM_GRP_TARGET, GRP_TARGET_DEFAULT); this.setProperty(PARAM_GRP_TARGET, grpTarget); String objectFactory = props.getProperty( DYNAMIC_GROUP_FACTORY_OBJECT_PROPERTY, DYNAMIC_GROUP_OBJECT_FACTORY); this.setProperty(DYNAMIC_GROUP_FACTORY_OBJECT_PROPERTY, objectFactory); ldapBindProps.setProperty(DYNAMIC_GROUP_FACTORY_OBJECT_PROPERTY, objectFactory); String stateFactory = props.getProperty( DYNAMIC_GROUP_STATE_FACTORY_PROPERTY, DYNAMIC_GROUP_STATE_FACTORY); this.setProperty(DYNAMIC_GROUP_STATE_FACTORY_PROPERTY, stateFactory); ldapBindProps.setProperty(DYNAMIC_GROUP_STATE_FACTORY_PROPERTY, stateFactory); String bindDN = props.getProperty(PARAM_BINDDN); if (bindDN != null) { this.setProperty(PARAM_BINDDN, bindDN); ldapBindProps.setProperty(Context.SECURITY_PRINCIPAL, bindDN); } String bindPWD = props.getProperty(PARAM_BINDPWD); if (bindPWD != null) { this.setProperty(PARAM_BINDPWD, bindPWD); ldapBindProps.setProperty(Context.SECURITY_CREDENTIALS, bindPWD); } Enumeration penum = props.propertyNames(); while (penum.hasMoreElements()) { String propName = (String)penum.nextElement(); if (propName.startsWith("java.naming.") || propName.startsWith("javax.security.")) { ldapBindProps.setProperty(propName, props.getProperty(propName)); } else if (propName.startsWith(SUN_JNDI_POOL_) && !SUN_JNDI_POOL_MAXSIZE.equals(propName)) { if (System.getProperty(propName) == null) { System.setProperty(propName, props.getProperty(propName)); } } } String poolSize = Integer.getInteger(PARAM_POOLSIZE,POOLSIZE_DEFAULT).toString(); String sunPoolSizeStr = props.getProperty(SUN_JNDI_POOL_MAXSIZE, poolSize); //Precedence rule: SUN_JNDI_POOL_MAXSIZE > PARAM_POOLSIZE > POOLSIZE_DEFAULT try { sunPoolSizeStr = Integer.valueOf(sunPoolSizeStr).toString(); } catch(Exception ex) { sunPoolSizeStr = poolSize; } if (System.getProperty(SUN_JNDI_POOL_MAXSIZE) == null) { System.setProperty(SUN_JNDI_POOL_MAXSIZE, sunPoolSizeStr); } this.setProperty(PARAM_POOLSIZE, sunPoolSizeStr); String usePool = props.getProperty(SUN_JNDI_POOL, "true"); ldapBindProps.setProperty(SUN_JNDI_POOL, usePool); if(url != null && url.startsWith(LDAPS_URL)) { ldapBindProps.setProperty(LDAP_SOCKET_FACTORY, DEFAULT_SSL_LDAP_SOCKET_FACTORY); if (System.getProperty(SUN_JNDI_POOL_PROTOCOL) == null) { System.setProperty(SUN_JNDI_POOL_PROTOCOL,DEFAULT_POOL_PROTOCOL); } if (_logger.isLoggable(Level.FINE)) { _logger.log(Level.FINE, "LDAPRealm : Using custom socket factory for SSL with pooling"); } } if (_logger.isLoggable(Level.FINE)) { Properties tempProps = (Properties)ldapBindProps.clone(); tempProps.remove(Context.SECURITY_CREDENTIALS); _logger.log(Level.FINE, "LDAPRealm : " + tempProps); } groupCache = new HashMap(); emptyVector = new Vector(); } /** * Returns a short (preferably less than fifteen characters) description * of the kind of authentication which is supported by this realm. * * @return Description of the kind of authentication that is directly * supported by this realm. */ public String getAuthType() { return AUTH_TYPE; } /** * Get binding properties defined in server.xml for LDAP server. * */ private Properties getLdapBindProps() { return (Properties)ldapBindProps.clone(); } /** * Returns the name of all the groups that this user belongs to. * Note that this information is only known after the user has * logged in. This is called from web path role verification, though * it should not be. * * @param username Name of the user in this realm whose group listing * is needed. * @return Enumeration of group names (strings). * @exception InvalidOperationException thrown if the realm does not * support this operation - e.g. Certificate realm does not support * this operation. */ public Enumeration getGroupNames (String username) throws InvalidOperationException, NoSuchUserException { Vector v = (Vector)groupCache.get(username); if (v == null) { if (_logger.isLoggable(Level.FINE)) { _logger.log(Level.FINE, "No groups available for: "+username); } // we don't load group here as we need to bind ctx to user with // password before doing that and password is not available here return emptyVector.elements(); } else { return v.elements(); } } /** * Set group membership info for a user. * *

See bugs 4646133,4646270 on why this is here. * */ private void setGroupNames(String username, String[] groups) { Vector v = new Vector(groups.length); for (int i=0; i= 0) { sb.replace(i, i+target.length(), value); i = sb.indexOf(target); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy