Skip to end of metadata
Go to start of metadata

Zend_Auth_Adapter_Ldap Operator's Guide

This page describes the Zend_Auth_Adapter_Ldap class for performaing LDAP based authentication. Also described is the zf-ldap demo application used to exercise the adapter. The Zend_Ldap and Zend_Ldap_Exception classes will also be referenced as they perform the bulk of the work including binding and username canonicalization.

The Zend_Auth_Adapter_Ldap Proposal
This work has been submitted for inclusion in Zend Framework. See the Zend_Auth_Adapter_Ldap proposal page for details (not to be confused with the old proposal).

Installation

This adapter is available in the incubator subdirectory in SVN. See the Anonymous Checkout and Using the Zend Framework Incubator Components sections at the below link for details:

http://framework.zend.com/wiki/display/ZFDEV/Subversion+Standards

This guide also references a demo application in the zf-ldap package available at http://www.ioplex.com/code/. The simple Zend_Controller based application provides a login form and index page that prints the authenticated user's identity and any result messages. The zf-ldap package also contains the aforementioned LDAP classes although they are not current compared to SVN and will not be updated regularly.

To install the zf-ldap package, unpack it, export the html directory through your web server and adjust html/.htaccess or do what is necessary for your web server to execute a Zend_Controller based application. See the Zend_Controller documentation for details regarding setting up and running a Zend_Controller application.

Usage

To incorporate Zend_Auth_Adapter_Ldap authentication into your application quickly, just copy the demo application's application/controllers/UserController.php code. Even if you're not using Zend_Controller, the meat of your code should look something like the following:

$username = $this->_request->getParam('username');
$password = $this->_request->getParam('password');

$auth = Zend_Auth::getInstance();

require_once('Zend/Config/Ini.php');
$config = new Zend_Config_Ini('../application/config/config.ini', 'production');
$log_path = $config->ldap->log_path;
$options = $config->ldap->toArray();
unset($options['log_path']);

require_once 'Zend/Auth/Adapter/Ldap.php';
$adapter = new Zend_Auth_Adapter_Ldap($options, $username, $password);

$result = $auth->authenticate($adapter);

if ($log_path) {
    $messages = $result->getMessages();

    require_once 'Zend/Log.php';
    require_once 'Zend/Log/Writer/Stream.php';
    require_once 'Zend/Log/Filter/Priority.php';
    $logger = new Zend_Log();
    $logger->addWriter(new Zend_Log_Writer_Stream($log_path));
    $filter = new Zend_Log_Filter_Priority(Zend_Log::DEBUG);
    $logger->addFilter($filter);

    foreach ($messages as $i => $message) {
        if ($i-- > 1) { // $messages[2] and up are log messages
            $message = str_replace("\n", "\n  ", $message);
            $logger->log("Ldap: $i: $message", Zend_Log::DEBUG);
        }
    }
}

Of course the logging code is optional but it is highly recommended that you use a logger. Zend_Auth_Adapter_Ldap will record just about every bit of information anyone could want in $messages (more below) which is a nice feature in itself for something that has a history of being notoriously difficult to debug.

The Zend_Config_Ini code is used above to load the adapter options. It is also optional. A regular array would work equally well. The following is an example application/config/config.ini file that has options for two separate servers. With multiple sets of server options the adapter will try each in-order until the credentials are successfully authenticated. The names of the servers (e.g. server1 and server2) are largely arbitrary. For details regarding the options array, see the Server Options section below. Note that Zend_Config_Ini requires that any values with equals characters (=) will need to be quoted (like the DNs shown below).

[production]

ldap.log_path = /tmp/ldap.log

; Typical options for OpenLDAP
ldap.server1.host = s0.foo.net
ldap.server1.accountDomainName = foo.net 
ldap.server1.accountDomainNameShort = FOO
ldap.server1.accountCanonicalForm = 3
ldap.server1.username = "CN=user1,DC=foo,DC=net"
ldap.server1.password = pass1 
ldap.server1.baseDn = "OU=Sales,DC=foo,DC=net"
ldap.server1.bindRequiresDn = true

; Typical options for Active Directory
ldap.server2.host = dc1.w.net
ldap.server2.useSsl = true
ldap.server2.accountDomainName = w.net 
ldap.server2.accountDomainNameShort = W
ldap.server2.accountCanonicalForm = 3
ldap.server2.baseDn = "CN=Users,DC=w,DC=net"

The above configuration will instruct Zend_Auth_Adapter_Ldap to attempt to authenticate users with the OpenLDAP server s0.foo.net first. If the authentication fails for any reason, the AD server dc1.w.net will be tried.

With servers in different domains, this configuration illustrates multi-domain authentication. You can also have multiple servers in the same domain to provide redundancy.

Note that in this case, even though OpenLDAP has no need for the short NetBIOS style domain name used by Windows we provide it here for name canonicalization purposes (described in the Username Canonicalization section below).

The API

The Zend_Auth_Adapter_Ldap constructor accepts three parameters.

The $options parameter is required and must be an array containing one or more sets of options. Note that it is an array of arrays of Zend_Ldap options. Even if you will be using only one LDAP server, the options must still be within another array.

Below is print_r output of an example options parameter containing two sets of server options for LDAP servers s0.foo.net and dc1.w.net (same options as the above INI representation):

Array
(
    [server2] => Array
        (
            [host] => dc1.w.net
            [useSsl] => 1
            [accountDomainName] => w.net
            [accountDomainNameShort] => W
            [accountCanonicalForm] => 3
            [baseDn] => CN=Users,DC=w,DC=net
        )

    [server1] => Array
        (
            [host] => s0.foo.net
            [accountDomainName] => foo.net
            [accountDomainNameShort] => FOO
            [accountCanonicalForm] => 3
            [username] => CN=user1,DC=foo,DC=net
            [password] => pass1
            [baseDn] => OU=Sales,DC=foo,DC=net
            [bindRequiresDn] => 1
        )

)

The information provided in each set of options above is different mainly because AD does not require a username be in DN form when binding (see the bindRequiresDn option in the Server Options section below) which means we can omit the a number of options associated with retrieving the DN for a username being authenticated.

What is a DN?
A DN or "distinguished name" is a string that represents the path to an object within the LDAP directory. Each comma separated component is an attribute and value representing a node. The components are evaluated in reverse. For example, the user account CN=Bob Carter,CN=Users,DC=w,DC=net is located directly within the CN=Users,DC=w,DC=net container. This structure is best explored with an LDAP browser like the ADSI Edit MMC snap-in for Active Directory or phpLDAPadmin.

The names of servers (e.g. 'server1' and 'server2' shown above) are largely arbitrary but for the sake of using Zend_Config the identifiers should be present (as opposed to being numeric indexes) and should not contain any special characters used by the associated file formats (e.g. the '.' INI property separator, '&' for XML entity references, etc).

With multiple sets of server options, the adapter can authenticate users in multiple domains and provide failover so that if one server is not available, another will be queried.

The Gory Details - What exactly happens in the authenticate method?
When the authenticate() method is called, the adapter iterates over each set of server options, sets them on the internal Zend_Ldap instance and calls the Zend_Ldap::bind() method with the username and password being authenticated. The Zend_Ldap class checks to see if the username is qualified with a domain (e.g. has a domain component like alice@foo.net or FOO\alice). If a domain is present but it does not match either of the server's domain names (foo.net or FOO), a special exception is thrown and caught by Zend_Auth_Adapter_Ldap that causes that server to be ignored and the next set of server options is selected. If a domain does match, or if the user did not supply a qualified username, Zend_Ldap proceeds to try to bind with the supplied credentials. If the bind is not successful, Zend_Ldap throws a Zend_Ldap_Exception which is caught by Zend_Auth_Adapter_Ldap and the next set of server options is tried. If the bind is successful, the iteration stops and the adapter's authenticate() method returns success. If all server options have been tried without success, the authentication fails and authenticate() returns a failure result with error messages from the last iteration.

The username and password parameters of the Zend_Auth_Adapter_Ldap constructor represent the credentials being authenticated (i.e. the credentials supplied by the user through your HTML login form). Alternatively they may also be set with the setUsername() and setPassword() methods.

Server Options

Each set of server options in the context of Zend_Auth_Adapter_Ldap must consist of the following. Options are passed largely unmodifed to Zend_Ldap::setOptions().

Name Description
host The hostname of LDAP server that these options represent. This option is required.
port The port on which the LDAP server is listening. If useSsl is true the default port value is 636. If useSsl is false the default port value is 389.
useSsl If true, this value indicates that the LDAP client should use SSL / TLS encrypted transport. A value of true is strongly favored in production environments to prevent passwords from be transmitted in clear text. The default value is false as servers frequently require that a certificate be installed separately after installation. This value also changes the default port value (see port description above).
username The DN of the account used to perform account DN lookups. LDAP servers that require the username to be in DN form when performing the "bind" require this option. Meaning, if bindRequiresDn is true, this option is required. This account does not need to be a privileged account - a account with read-only access to objects under the baseDn is all that is necessary (and preferred based on the Principle of Least Privilege).
password The password of the account used to perform account DN lookups. If this option is not supplied, the LDAP client will attempt an "anonymous bind" when performing account DN lookups.
bindRequiresDn Some LDAP servers require that the username used to bind be in DN form like CN=Alice Baker,OU=Sales,DC=foo,DC=net (basically all servers except AD). If this option is true, this instructs Zend_Ldap to automatically retrieve the DN corresponding to the username being authenticated if it is not already in DN form and then re-bind with the proper DN. The default value is false. Currently only Microsoft Active Directory Server (ADS) is known not to require usernames to be in DN form when binding and therefore this option may be false with AD (and it should be as retrieving the DN requires an extra round trip to the server). Otherwise this option must be set to true (e.g. for OpenLDAP). This option also controls the default acountFilterFormat used when searching for accounts. See the accountFilterFormat option.
baseDn The DN under which all accounts being authenticated are located. This option is required. If you are uncertain about the correct baseDn value, it should be sufficient to derive it from the user's DNS domain using DC= components. For example, if the user's principal name is alice@foo.net, a baseDn of DC=foo,DC=net should work. A more precise location (e.g. OU=Sales,DC=foo,DC=net) will be more efficient however.
accountCanonicalForm A value of 2, 3 or 4 indicating the form account names should be canonicalized to after successful authentication. Values are as follows: 2 for traditional username style names (e.g. alice), 3 for backslash style names (e.g. FOO\alice) or 4 for principal style usernames (e.g. alice@foo.net). The default value is 4 (e.g. alice@foo.net). For example, with a value of 3, the identity returned by Zend_Result::getIdentity() (and Zend_Auth::getIdentity() if Zend_Auth was used) will always be FOO\alice regardless of what form Alice supplied whether it be alice, alice@foo.net, FOO\alice, FoO\aLicE, foo.net\alice, etc. See the Account Name Canonicalization section in the Zend_Ldap documentation for details. Note that when using multiple sets of server options it is recommended, but not required, that the same accountCanonicalForm be used with all server options so that the resulting usernames are always canonicalized to the same form (e.g. if you canonicalize to EXAMPLE\username with an AD server but username@example.com with an OpenLDAP that may be awkward for the application's higher level logic).
accountDomainName The FQDN domain name for which the target LDAP server is an authority (e.g. example.com). This option is used to canonicalize names so that the username supplied by the user can be converted as necessary for binding. It is also used to determine if the server is an authority for the supplied username (e.g. if accountDomainName is foo.net and the user supplies bob@bar.net, the server will not be queried and a failure will result). This option is not required but if it is not supplied, usernames in principal name form (e.g. alice@foo.net) are not supported. It is strongly recommended that you supply this option as there are many use-cases that require generating the principal name form.
accountDomainNameShort The 'short' domain for which the target LDAP server is an authority (e.g. FOO). Note that there is a 1:1 mapping between the accountDomainName and accountDomainNameShort. This option should be used to specify the NetBIOS domain name for Windows networks but may also be used by non-AD servers (e.g. for consistency when multiple sets of server options with the backslash style accountCanonicalForm). This option is not required but if it is not supplied, usernames in backslash form (e.g. FOO\alice) are not supported.
accountFilterFormat The LDAP search filter used to search for accounts. This string is a printf style expression that must contain one '%s' to accomodate the username. The default value is '(&(objectClass=user)(sAMAccountName=%s))' unless bindRequiresDn is set to true in which case the default is '(&(objectClass=posixAccount)(uid=%s))'. For example, if for some reason you wanted to use bindRequiresDn = true with AD you would need to set accountFilterform = '(&(objectClass=user)(sAMAccountName=%s))'.
If you enable useSsl = true you may find that the LDAP client may generate an error claiming that it cannot validate the server's certificate. Assuming the PHP LDAP extension is ultimately linked to the OpenLDAP client libraries, to resolve this issue you can set TLS_REQCERT never in the OpenLDAP client ldap.conf (and restart the web server) to indicate to the OpenLDAP client library that you trust the server. Alternatively if you are concerned that the server could be spoofed (not usually the weakest link in an IntrAnet environment) you can export the LDAP server's root certificate and put it on the web server so that the OpenLDAP client can validate the server's identity.

Collecting Debugging Messages

Zend_Auth_Adapter_Ldap collects debugging information within it's authenticate() method. This information is stored in the Zend_Auth_Result object as messages. The array returned by Zend_Auth_Result::getMessages() is described as follows.

Messages Array Index String Description
Index 0 An overall message that is suitable for displaying to users (e.g. Invalid credentials). If the authentication is successful, this string is empty.
Index 1 A more detailed error message that is not suitable to be displayed to users but should be logged for the benifit of server opterators. If the authentication is successful, this string is empty.
Indexes 2 and higher All log messages in order starting at index 2.

In practice index 0 should be displayed to the user (e.g. using the FlashMessenger helper), index 1 should be logged and, if debugging information is being collected, indexes 2 and higher could be logged as well (although the final message always includes the string from index 1).

Common Options for Specific Servers

Options for Active Directory

For ADS, the following options are noteworthy:

Name Additional Notes
host As with all servers, this option is required.
useSsl For the sake of security, this should be true if the server has the necessary certificate installed.
baseDn As with all servers, this option is required. By default AD places all user accounts are under the Users container (e.g. CN=Users,DC=foo,DC=net) but the default is not common in larger organizations. Ask your AD administrator what the best DN for accounts for your application would be.
accountCanonicalForm You almost certainly want this to be 3 for backslash style names (e.g. FOO\alice) which are most familar to Windows users. You should not use the unqualified form 2 (e.g. alice) as this may grant access to your application to users with the same username in other trusted domains (e.g. BAR\alice and FOO\alice will be treated as the same user) [1].
accountDomainName This is required with AD unless accountCanonicalForm 2 is used which, again, is discouraged.
accountDomainNameShort The NetBIOS name of the domain users are in and for which the AD server is in authority. This is required if the backslash style accountCanonicalForm is used.

[1] Technically there should be no danger of accidental cross-domain authentication with the current Zend_Auth_Adapter_Ldap implementation since server domains are explicitly checked but this may not be true of a future implementation that discovers the domain at runtime or if an alternative adapter is used (e.g. Kerberos). In general, account name ambiguity is known to be the source of security issues so always try to use qualified account names.

Options for OpenLDAP

For OpenLDAP or a generic LDAP server using a typical posixAccount style schema, the following options are noteworthy:

Name Additional Notes
host As with all servers, this option is required.
useSsl For the sake of security, this should be true if the server has the necessary certificate installed.
username Required and must be a DN as OpenLDAP requires that usernames be in DN form when performing a bind. Try to use an unprivileged account.
password The password corresponding to the username above but this may be omitted if the LDAP server supports anonymous binds.
bindRequiresDn Required and must be true as OpenLDAP requires that usernames be in DN form when performing a bind.
baseDn As with all servers this option is required and indicates the DN under which all accounts being authenticated are located.
accountCanonicalForm Optional but the default value is 4 (principal style names like alice@foo.net) which may not be ideal if your users are used to backslash style names (e.g. FOO\alice). For backslash style names use value 3.
accountDomainName Required unless you're using accountCanonicalForm 2 which is not recommended.
accountDomainNameShort If AD is not also being used, this value is not required. Otherwise, if accountCanonicalForm 3 is used, this option is required and should be a short name that corresponds adequately to the accountDomainName (e.g. if your accountDomainName is foo.net a good accountDomainNameShort value might be FOO).
accountFilterFormat If you are not using the posixAccount object class for your accounts you will need to set this option. Otherwise the default is '(&(objectClass=posixAccount)(uid=%s))'.

Obtaining a Network Packet Capture on the Web Server

This section describes how to obtain a network packet capture used by Zend_Ldap developers to diagnose failures. Note that all captures must be taken from a machine with access to LDAP traffic between the web server running the Zend_Ldap code and the directory server (e.g. the web server).

Sensitive Information
Packet captures must be obtained with useSsl=false which means passwords supplied to the authentication adapter will be captured in the capture file. You may prefer to use a temporary account or change your password before sharing the capture file with anyone. In general, network capture files can contain sensitive information about your network and users and should not be shared with people that you do not trust.

Obtaining a Packet Capture on Linux

Install the tcpdump program on the Linux web server. Make sure useSsl=false and run tcpdump as follows:

Try the operation of interest to provoke the behavior being diagnosed. Press Ctrl-C to stop the capture. Try not to run the capture for too long as it may collect unwanted traffic. This should produce an out.pcap file in the current directory.

Obtaining a Packet Capture on Windows

For a Windows web server, install the XP Support Tools from CD-ROM as described in the following KB article:

http://support.microsoft.com/kb/306794/EN-US/

Run cmd.exe and then netcap.exe /? to see if it was installed properly.

If you have multiple network interfaces look at the end of the output of netcap.exe for the list of adapters. If the one your LDAP traffic is on is not primary, you will need to specify /N:<number> where number is the numeric value for that adapter so make a note of that value.

Now run netcap.exe again as illustrated here (adding the /N:<number> if you need to specify a particular adapter):

This will start to write network packets to the named file out.cap in the current directory. Now try the Zend_Ldap authentication adapter and press the space bar in the cmd.exe window to stop the capture. Try not to allow the capture to run for too long as it may collect unwanted traffic.

The above procedure may also work for other versions of Windows. If you have NetMon installed you may use that as well.

Labels:
ldap ldap Delete
Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.
  1. Nov 05, 2007

    I think this will be a valuable addition to the framework. I will have a need for an LDAP adapter like this in my own project, in about 6 to 9 months. Thank you for contributing this!

  2. Nov 27, 2007

    As per our offline conversation some time back..

    The signature of the adapter should prob be in line with this structure:

    class Zendx_Auth_Adapter_Ldap {
    __construct($options, $username = null, $password = null) {}
    }

    This will allow a "configured adapter" that is user independent at creation time, but allows for the adapter to accept usernames and passwords via accessors.

    I think the general rule I would like to see adhered to is the "Any adapter object should be capable of authenticating multiple users from a singular configured source."

    -ralph

  3. Jan 23, 2008

    I recently attempted to upgrade from Zend_Ldap 0.3 to version 0.7. Authentication is successful in version 0.3 and fails in version 0.7 with the following error message:

    2008-01-23T10:45:39-06:00 DEBUG (7): Invalid credentials
    2008-01-23T10:45:39-06:00 DEBUG (7): 0x31: Invalid credentials:
    80090308: LdapErr: DSID-0C090334, comment: AcceptSecurityContext error,
    data 525, vece:

    The following is inside my config.ini:
    ldap.server1.host = corp.example.net
    ldap.server1.useSsl = false
    ldap.server1.accountDomainName = example.net
    ldap.server1.accountDomainNameShort = example
    ldap.server1.username = "cn=proxyuser,cn=users;dc=corp,dc=example,dc=net"
    ldap.server1.password = "password"
    ldap.server1.baseDn = "ou=Corporate Users;dc=corp,dc=example,dc=net"
    ldap.server1.accountFilterFormat = "(&(objectClass=user)(sAMAccountName=%s))"

    I also tried using proxyuser@example.net for the username with the same results. These are the same settings I use in version 0.3, updated to their version 0.7 counterparts.

    1. Jan 23, 2008

      You seem to have semicolons in your DNs where there should be commas. Is that just a typo in your post? If not, that would definitely cause an "Invalid credentials" error.

      If it is just a typo, try making accountDomainNameShort UPPERCASE. I would be surprised if that had any impact on anything but I don't recall testing the latest adapter with a lowercase value.

      Incedentally, you could remove useSsl and accountFilterFormat and it would have no impact on your config.

      1. Jan 23, 2008

        Actually it seems this is a bug. RFC 2253 says:

        Implementations MUST allow a semicolon character to be used instead
        of a comma to separate RDNs in a distinguished name, and MUST also
        allow whitespace characters to be present on either side of the comma
        or semicolon.

        Currently the _isDnString method does:

        545 protected function _isDnString($str)
        546

        Unknown macro: { 547 return $str && stristr($str, ',DC='); 548 }

        This will need to be changed to a stateful parser (which is probably more efficient anyway).

        I will create a fix and put the patch in the issue tracker.

        Mike

        1. Jan 24, 2008

          Thanks for the tips. The semi-colons are new to me as well. I had the same response you did when I first received the path.

          Can you please post the issue tracker key number for the bug when you have it?

          Thanks,
          Jacob

          1. Jan 24, 2008

            Created issue ZF-2474: Zend_Ldap::_isDnString() must allow semicolon per RFC

            Note that semicolons vs comma should have no impact on behavior. Commas should work equally well.

            1. Jan 24, 2008

              I tried using commas with the same result.

              1. Jan 24, 2008

                If you are still getting precisely the same error as before, that means that either A) the username and password supplied are in fact incorrect or B) the adapter is emitting a username and password that is incorrect. For example, regarding case A, the username must correspond to sAMAccountName@accountDomainName as per the documentation. Regarding case B, the adapter could be incorrectly canonicalizing the username or more generally submitting invalid username and password values.

                If you cannot determine which is the case, I will need a network packet capture. I have just added a section to the end of this guide describing that procedure. Please send the capture file to only me directly.

          2. Jan 24, 2008

            Created issue ZF-2474: Zend_Ldap::_isDnString() must allow semicolon per RFC

            Note that semi-colons vs. commas should have no impact on Zend_Ldap behavior. Please just use commas for now.