1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2018 */
6 /* Copyright (c) The Exim Maintainers 2020 */
7 /* See the file NOTICE for conditions of use and distribution. */
9 /* Many thanks to Stuart Lynne for contributing the original code for this
10 driver. Further contributions from Michael Haardt, Brian Candler, Barry
11 Pederson, Peter Savitch and Christian Kellner. Particular thanks to Brian for
12 researching how to handle the different kinds of error. */
16 #include "lf_functions.h"
19 /* Include LDAP headers. The code below uses some "old" LDAP interfaces that
20 are deprecated in OpenLDAP. I don't know their status in other LDAP
21 implementations. LDAP_DEPRECATED causes their prototypes to be defined in
24 #define LDAP_DEPRECATED 1
30 /* Annoyingly, the different LDAP libraries handle errors in different ways,
31 and some other things too. There doesn't seem to be an automatic way of
32 distinguishing between them. Local/Makefile should contain a setting of
33 LDAP_LIB_TYPE, which in turn causes appropriate macros to be defined for the
34 different kinds. Those that matter are:
37 LDAP_LIB_SOLARIS with synonym LDAP_LIB_SOLARIS7
40 These others may be defined, but are in fact the default, so are not tested:
46 #if defined(LDAP_LIB_SOLARIS7) && ! defined(LDAP_LIB_SOLARIS)
47 #define LDAP_LIB_SOLARIS
51 /* Just in case LDAP_NO_LIMIT is not defined by some of these libraries. */
54 #define LDAP_NO_LIMIT 0
58 /* Just in case LDAP_DEREF_NEVER is not defined */
60 #ifndef LDAP_DEREF_NEVER
61 #define LDAP_DEREF_NEVER 0
65 /* Four types of LDAP search are implemented */
67 #define SEARCH_LDAP_MULTIPLE 0 /* Get attributes from multiple entries */
68 #define SEARCH_LDAP_SINGLE 1 /* Get attributes from one entry only */
69 #define SEARCH_LDAP_DN 2 /* Get just the DN from one entry */
70 #define SEARCH_LDAP_AUTH 3 /* Just checking for authentication */
72 /* In all 4 cases, the DN is left in $ldap_dn (which post-dates the
73 SEARCH_LDAP_DN lookup). */
76 /* Structure and anchor for caching connections. */
78 typedef struct ldap_connection {
79 struct ldap_connection *next;
85 BOOL is_start_tls_called;
89 static LDAP_CONNECTION *ldap_connections = NULL;
93 /*************************************************
94 * Internal search function *
95 *************************************************/
97 /* This is the function that actually does the work. It is called (indirectly
98 via control_ldap_search) from eldap_find(), eldapauth_find(), eldapdn_find(),
99 and eldapm_find(), with a difference in the "search_type" argument.
101 The case of eldapauth_find() is special in that all it does is do
102 authentication, returning OK or FAIL as appropriate. This isn't used as a
103 lookup. Instead, it is called from expand.c as an expansion condition test.
105 The DN from a successful lookup is placed in $ldap_dn. This feature postdates
106 the provision of the SEARCH_LDAP_DN facility for returning just the DN as the
110 ldap_url the URL to be looked up
111 server server host name, when URL contains none
112 s_port server port, used when URL contains no name
113 search_type SEARCH_LDAP_MULTIPLE allows values from multiple entries
114 SEARCH_LDAP_SINGLE allows values from one entry only
115 SEARCH_LDAP_DN gets the DN from one entry
116 res set to point at the result (not used for ldapauth)
117 errmsg set to point a message if result is not OK
118 defer_break set TRUE if no more servers to be tried after a DEFER
119 user user name for authentication, or NULL
120 password password for authentication, or NULL
121 sizelimit max number of entries returned, or 0 for no limit
122 timelimit max time to wait, or 0 for no limit
123 tcplimit max time for network activity, e.g. connect, or 0 for OS default
124 deference the dereference option, which is one of
125 LDAP_DEREF_{NEVER,SEARCHING,FINDING,ALWAYS}
126 referrals the referral option, which is LDAP_OPT_ON or LDAP_OPT_OFF
128 Returns: OK or FAIL or DEFER
129 FAIL is given only if a lookup was performed successfully, but
134 perform_ldap_search(const uschar *ldap_url, uschar *server, int s_port,
135 int search_type, uschar **res, uschar **errmsg, BOOL *defer_break,
136 uschar *user, uschar *password, int sizelimit, int timelimit, int tcplimit,
137 int dereference, void *referrals)
139 LDAPURLDesc *ludp = NULL;
140 LDAPMessage *result = NULL;
142 LDAP_CONNECTION *lcp;
144 struct timeval timeout;
145 struct timeval *timeoutptr = NULL;
147 gstring * data = NULL;
154 uschar *error1 = NULL; /* string representation of errcode (static) */
155 uschar *error2 = NULL; /* error message from the server */
156 uschar *matched = NULL; /* partially matched DN */
158 int attrs_requested = 0;
159 int error_yield = DEFER;
161 int rc, ldap_rc, ldap_parse_rc;
164 BOOL attribute_found = FALSE;
167 DEBUG(D_lookup) debug_printf_indent("perform_ldap_search:"
168 " ldap%s URL = \"%s\" server=%s port=%d "
169 "sizelimit=%d timelimit=%d tcplimit=%d\n",
170 search_type == SEARCH_LDAP_MULTIPLE ? "m" :
171 search_type == SEARCH_LDAP_DN ? "dn" :
172 search_type == SEARCH_LDAP_AUTH ? "auth" : "",
173 ldap_url, server, s_port, sizelimit, timelimit, tcplimit);
175 /* Check if LDAP thinks the URL is a valid LDAP URL. We assume that if the LDAP
176 library that is in use doesn't recognize, say, "ldapi", it will barf here. */
178 if (!ldap_is_ldap_url(CS ldap_url))
180 *errmsg = string_sprintf("ldap_is_ldap_url: not an LDAP url \"%s\"\n",
182 goto RETURN_ERROR_BREAK;
187 if ((rc = ldap_url_parse(CS ldap_url, &ludp)) != 0)
189 *errmsg = string_sprintf("ldap_url_parse: (error %d) parsing \"%s\"\n", rc,
191 goto RETURN_ERROR_BREAK;
194 /* If the host name is empty, take it from the separate argument, if one is
195 given. OpenLDAP 2.0.6 sets an unset hostname to "" rather than empty, but
196 expects NULL later in ldap_init() to mean "default", annoyingly. In OpenLDAP
197 2.0.11 this has changed (it uses NULL). */
199 if ((!ludp->lud_host || !ludp->lud_host[0]) && server)
206 host = US ludp->lud_host;
207 if (host && !host[0]) host = NULL;
208 port = ludp->lud_port;
211 DEBUG(D_lookup) debug_printf_indent("after ldap_url_parse: host=%s port=%d\n",
214 if (port == 0) port = LDAP_PORT; /* Default if none given */
215 sprintf(CS porttext, ":%d", port); /* For messages */
217 /* If the "host name" is actually a path, we are going to connect using a Unix
218 socket, regardless of whether "ldapi" was actually specified or not. This means
219 that a Unix socket can be declared in eldap_default_servers, and "traditional"
220 LDAP queries using just "ldap" can be used ("ldaps" is similarly overridden).
221 The path may start with "/" or it may already be escaped as "%2F" if it was
222 actually declared that way in eldap_default_servers. (I did it that way the
223 first time.) If the host name is not a path, the use of "ldapi" causes an
224 error, except in the default case. (But lud_scheme doesn't seem to exist in
229 if ((host[0] == '/' || Ustrncmp(host, "%2F", 3) == 0))
232 porttext[0] = 0; /* Remove port from messages */
235 #if defined LDAP_LIB_OPENLDAP2
236 else if (strncmp(ludp->lud_scheme, "ldapi", 5) == 0)
238 *errmsg = string_sprintf("ldapi requires an absolute path (\"%s\" given)",
245 /* Count the attributes; we need this later to tell us how to format results */
247 for (uschar ** attrp = USS ludp->lud_attrs; attrp && *attrp; attrp++)
250 /* See if we can find a cached connection to this host. The port is not
251 relevant for ldapi. The host name pointer is set to NULL if no host was given
252 (implying the library default), rather than to the empty string. Note that in
253 this case, there is no difference between ldap and ldapi. */
255 for (lcp = ldap_connections; lcp; lcp = lcp->next)
257 if ((host == NULL) != (lcp->host == NULL) ||
258 (host != NULL && strcmpic(lcp->host, host) != 0))
260 if (ldapi || port == lcp->port) break;
263 /* Use this network timeout in any requests. */
267 timeout.tv_sec = tcplimit;
269 timeoutptr = &timeout;
272 /* If no cached connection found, we must open a connection to the server. If
273 the server name is actually an absolute path, we set ldapi=TRUE above. This
274 requests connection via a Unix socket. However, as far as I know, only OpenLDAP
275 supports the use of sockets, and the use of ldap_initialize(). */
281 #ifdef LDAP_OPT_X_TLS_NEWCTX
285 LDAP *ldsetctx = NULL;
289 /* --------------------------- OpenLDAP ------------------------ */
291 /* There seems to be a preference under OpenLDAP for ldap_initialize()
292 instead of ldap_init(), though I have as yet been unable to find
293 documentation that says this. (OpenLDAP documentation is sparse to
294 non-existent). So we handle OpenLDAP differently here. Also, support for
295 ldapi seems to be OpenLDAP-only at present. */
297 #ifdef LDAP_LIB_OPENLDAP2
299 /* We now need an empty string for the default host. Get some store in which
300 to build a URL for ldap_initialize(). In the ldapi case, it can't be bigger
301 than (9 + 3*Ustrlen(shost)), whereas in the other cases it can't be bigger
302 than the host name + "ldaps:///" plus : and a port number, say 20 + the
303 length of the host name. What we get should accommodate both, easily. */
305 uschar * shost = host ? host : US"";
306 rmark reset_point = store_mark();
309 /* Handle connection via Unix socket ("ldapi"). We build a basic LDAP URI to
310 contain the path name, with slashes escaped as %2F. */
314 g = string_catn(NULL, US"ldapi://", 8);
315 for (uschar ch; (ch = *shost); shost++)
316 g = ch == '/' ? string_catn(g, US"%2F", 3) : string_catn(g, shost, 1);
319 /* This is not an ldapi call. Just build a URI with the protocol type, host
324 uschar * init_ptr = Ustrchr(ldap_url, '/');
325 g = string_catn(NULL, ldap_url, init_ptr - ldap_url);
326 g = string_fmt_append(g, "//%s:%d/", shost, port);
328 string_from_gstring(g);
330 /* Call ldap_initialize() and check the result */
332 DEBUG(D_lookup) debug_printf_indent("ldap_initialize with URL %s\n", g->s);
333 if ((rc = ldap_initialize(&ld, CS g->s)) != LDAP_SUCCESS)
335 *errmsg = string_sprintf("ldap_initialize: (error %d) URL \"%s\"\n",
339 store_reset(reset_point); /* Might as well save memory when we can */
342 /* ------------------------- Not OpenLDAP ---------------------- */
344 /* For libraries other than OpenLDAP, use ldap_init(). */
346 #else /* LDAP_LIB_OPENLDAP2 */
347 ld = ldap_init(CS host, port);
348 #endif /* LDAP_LIB_OPENLDAP2 */
350 /* -------------------------------------------------------------- */
353 /* Handle failure to initialize */
357 *errmsg = string_sprintf("failed to initialize for LDAP server %s%s - %s",
358 host, porttext, strerror(errno));
362 #ifdef LDAP_OPT_X_TLS_NEWCTX
366 /* Set the TCP connect time limit if available. This is something that is
367 in Netscape SDK v4.1; I don't know about other libraries. */
369 #ifdef LDAP_X_OPT_CONNECT_TIMEOUT
372 int timeout1000 = tcplimit*1000;
373 ldap_set_option(ld, LDAP_X_OPT_CONNECT_TIMEOUT, (void *)&timeout1000);
377 int notimeout = LDAP_X_IO_TIMEOUT_NO_TIMEOUT;
378 ldap_set_option(ld, LDAP_X_OPT_CONNECT_TIMEOUT, (void *)¬imeout);
382 /* Set the TCP connect timeout. This works with OpenLDAP 2.2.14. */
384 #ifdef LDAP_OPT_NETWORK_TIMEOUT
386 ldap_set_option(ld, LDAP_OPT_NETWORK_TIMEOUT, (void *)timeoutptr);
389 /* I could not get TLS to work until I set the version to 3. That version
390 seems to be the default nowadays. The RFC is dated 1997, so I would hope
391 that all the LDAP libraries support it. Therefore, if eldap_version hasn't
392 been set, go for v3 if we can. */
394 if (eldap_version < 0)
397 eldap_version = LDAP_VERSION3;
403 #ifdef LDAP_OPT_PROTOCOL_VERSION
404 ldap_set_option(ld, LDAP_OPT_PROTOCOL_VERSION, (void *)&eldap_version);
407 DEBUG(D_lookup) debug_printf_indent("initialized for LDAP (v%d) server %s%s\n",
408 eldap_version, host, porttext);
410 /* If not using ldapi and TLS is available, set appropriate TLS options: hard
411 for "ldaps" and soft otherwise. */
413 #ifdef LDAP_OPT_X_TLS
417 # ifdef LDAP_OPT_X_TLS_REQUIRE_CERT
418 if (eldap_require_cert)
421 Ustrcmp(eldap_require_cert, "hard") == 0 ? LDAP_OPT_X_TLS_HARD
422 : Ustrcmp(eldap_require_cert, "demand") == 0 ? LDAP_OPT_X_TLS_DEMAND
423 : Ustrcmp(eldap_require_cert, "allow") == 0 ? LDAP_OPT_X_TLS_ALLOW
424 : Ustrcmp(eldap_require_cert, "try") == 0 ? LDAP_OPT_X_TLS_TRY
425 : LDAP_OPT_X_TLS_NEVER;
427 DEBUG(D_lookup) debug_printf_indent(
428 "Require certificate overrides LDAP_OPT_X_TLS option (%d)\n",
432 # endif /* LDAP_OPT_X_TLS_REQUIRE_CERT */
433 if (strncmp(ludp->lud_scheme, "ldaps", 5) == 0)
435 tls_option = LDAP_OPT_X_TLS_HARD;
437 debug_printf_indent("LDAP_OPT_X_TLS_HARD set due to ldaps:// URI\n");
441 tls_option = LDAP_OPT_X_TLS_TRY;
443 debug_printf_indent("LDAP_OPT_X_TLS_TRY set due to ldap:// URI\n");
445 ldap_set_option(ld, LDAP_OPT_X_TLS, (void *)&tls_option);
447 #endif /* LDAP_OPT_X_TLS */
449 #ifdef LDAP_OPT_X_TLS_CACERTFILE
450 if (eldap_ca_cert_file)
451 ldap_set_option(ldsetctx, LDAP_OPT_X_TLS_CACERTFILE, eldap_ca_cert_file);
453 #ifdef LDAP_OPT_X_TLS_CACERTDIR
454 if (eldap_ca_cert_dir)
455 ldap_set_option(ldsetctx, LDAP_OPT_X_TLS_CACERTDIR, eldap_ca_cert_dir);
457 #ifdef LDAP_OPT_X_TLS_CERTFILE
459 ldap_set_option(ldsetctx, LDAP_OPT_X_TLS_CERTFILE, eldap_cert_file);
461 #ifdef LDAP_OPT_X_TLS_KEYFILE
463 ldap_set_option(ldsetctx, LDAP_OPT_X_TLS_KEYFILE, eldap_cert_key);
465 #ifdef LDAP_OPT_X_TLS_CIPHER_SUITE
466 if (eldap_cipher_suite)
467 ldap_set_option(ldsetctx, LDAP_OPT_X_TLS_CIPHER_SUITE, eldap_cipher_suite);
469 #ifdef LDAP_OPT_X_TLS_REQUIRE_CERT
470 if (eldap_require_cert)
473 Ustrcmp(eldap_require_cert, "hard") == 0 ? LDAP_OPT_X_TLS_HARD
474 : Ustrcmp(eldap_require_cert, "demand") == 0 ? LDAP_OPT_X_TLS_DEMAND
475 : Ustrcmp(eldap_require_cert, "allow") == 0 ? LDAP_OPT_X_TLS_ALLOW
476 : Ustrcmp(eldap_require_cert, "try") == 0 ? LDAP_OPT_X_TLS_TRY
477 : LDAP_OPT_X_TLS_NEVER;
479 /* This ldap handle is set at compile time based on client libs. Older
480 * versions want it to be global and newer versions can force a reload
481 * of the TLS context (to reload these settings we are changing from the
482 * default that loaded at instantiation). */
483 rc = ldap_set_option(ldsetctx, LDAP_OPT_X_TLS_REQUIRE_CERT, &cert_option);
486 debug_printf_indent("Unable to set TLS require cert_option(%d) globally: %s\n",
487 cert_option, ldap_err2string(rc));
490 #ifdef LDAP_OPT_X_TLS_NEWCTX
491 if ((rc = ldap_set_option(ldsetctx, LDAP_OPT_X_TLS_NEWCTX, &am_server)))
493 debug_printf_indent("Unable to reload TLS context %d: %s\n",
494 rc, ldap_err2string(rc));
497 /* Now add this connection to the chain of cached connections */
499 lcp = store_get(sizeof(LDAP_CONNECTION), FALSE);
500 lcp->host = host ? string_copy(host) : NULL;
503 lcp->password = NULL;
506 lcp->next = ldap_connections;
507 lcp->is_start_tls_called = FALSE;
508 ldap_connections = lcp;
511 /* Found cached connection */
515 debug_printf_indent("re-using cached connection to LDAP server %s%s\n",
518 /* Bind with the user/password supplied, or an anonymous bind if these values
519 are NULL, unless a cached connection is already bound with the same values. */
522 || !lcp->user && user
523 || lcp->user && !user
524 || lcp->user && user && Ustrcmp(lcp->user, user) != 0
525 || !lcp->password && password
526 || lcp->password && !password
527 || lcp->password && password && Ustrcmp(lcp->password, password) != 0
530 DEBUG(D_lookup) debug_printf_indent("%sbinding with user=%s password=%s\n",
531 lcp->bound ? "re-" : "", user, password);
533 if (eldap_start_tls && !lcp->is_start_tls_called && !ldapi)
535 #if defined(LDAP_OPT_X_TLS) && !defined(LDAP_LIB_SOLARIS)
536 /* The Oracle LDAP libraries (LDAP_LIB_TYPE=SOLARIS) don't support this.
537 * Note: moreover, they appear to now define LDAP_OPT_X_TLS and still not
538 * export an ldap_start_tls_s symbol.
540 if ( (rc = ldap_start_tls_s(lcp->ld, NULL, NULL)) != LDAP_SUCCESS)
542 *errmsg = string_sprintf("failed to initiate TLS processing on an "
543 "LDAP session to server %s%s - ldap_start_tls_s() returned %d:"
544 " %s", host, porttext, rc, ldap_err2string(rc));
547 lcp->is_start_tls_called = TRUE;
549 DEBUG(D_lookup) debug_printf_indent("TLS initiation not supported with this Exim"
550 " and your LDAP library.\n");
553 if ((msgid = ldap_bind(lcp->ld, CS user, CS password, LDAP_AUTH_SIMPLE))
556 *errmsg = string_sprintf("failed to bind the LDAP connection to server "
557 "%s%s - ldap_bind() returned -1", host, porttext);
561 if ((rc = ldap_result(lcp->ld, msgid, 1, timeoutptr, &result)) <= 0)
563 *errmsg = string_sprintf("failed to bind the LDAP connection to server "
564 "%s%s - LDAP error: %s", host, porttext,
565 rc == -1 ? "result retrieval failed" : "timeout" );
570 rc = ldap_result2error(lcp->ld, result, 0);
572 /* Invalid credentials when just checking credentials returns FAIL. This
573 stops any further servers being tried. */
575 if (search_type == SEARCH_LDAP_AUTH && rc == LDAP_INVALID_CREDENTIALS)
578 debug_printf_indent("Invalid credentials: ldapauth returns FAIL\n");
580 goto RETURN_ERROR_NOMSG;
583 /* Otherwise we have a problem that doesn't stop further servers from being
586 if (rc != LDAP_SUCCESS)
588 *errmsg = string_sprintf("failed to bind the LDAP connection to server "
589 "%s%s - LDAP error %d: %s", host, porttext, rc, ldap_err2string(rc));
593 /* Successful bind */
596 lcp->user = !user ? NULL : string_copy(user);
597 lcp->password = !password ? NULL : string_copy(password);
599 ldap_msgfree(result);
603 /* If we are just checking credentials, return OK. */
605 if (search_type == SEARCH_LDAP_AUTH)
607 DEBUG(D_lookup) debug_printf_indent("Bind succeeded: ldapauth returns OK\n");
611 /* Before doing the search, set the time and size limits (if given). Here again
612 the different implementations of LDAP have chosen to do things differently. */
614 #if defined(LDAP_OPT_SIZELIMIT)
615 ldap_set_option(lcp->ld, LDAP_OPT_SIZELIMIT, (void *)&sizelimit);
616 ldap_set_option(lcp->ld, LDAP_OPT_TIMELIMIT, (void *)&timelimit);
618 lcp->ld->ld_sizelimit = sizelimit;
619 lcp->ld->ld_timelimit = timelimit;
622 /* Similarly for dereferencing aliases. Don't know if this is possible on
623 an LDAP library without LDAP_OPT_DEREF. */
625 #if defined(LDAP_OPT_DEREF)
626 ldap_set_option(lcp->ld, LDAP_OPT_DEREF, (void *)&dereference);
629 /* Similarly for the referral setting; should the library follow referrals that
630 the LDAP server returns? The conditional is just in case someone uses a library
633 #if defined(LDAP_OPT_REFERRALS)
634 ldap_set_option(lcp->ld, LDAP_OPT_REFERRALS, referrals);
637 /* Start the search on the server. */
639 DEBUG(D_lookup) debug_printf_indent("Start search\n");
641 msgid = ldap_search(lcp->ld, ludp->lud_dn, ludp->lud_scope, ludp->lud_filter,
646 #if defined LDAP_LIB_SOLARIS || defined LDAP_LIB_OPENLDAP2
648 ldap_get_option(lcp->ld, LDAP_OPT_ERROR_NUMBER, &err);
649 *errmsg = string_sprintf("ldap_search failed: %d, %s", err,
650 ldap_err2string(err));
652 *errmsg = string_sprintf("ldap_search failed");
658 /* Loop to pick up results as they come in, setting a timeout if one was
661 while ((rc = ldap_result(lcp->ld, msgid, 0, timeoutptr, &result)) ==
662 LDAP_RES_SEARCH_ENTRY)
665 int valuecount; /* We can see an attr spread across several
666 entries. If B is derived from A and we request
667 A and the directory contains both, A and B,
668 then we get two entries, one for A and one for B.
669 Here we just count the values per entry */
671 DEBUG(D_lookup) debug_printf_indent("LDAP result loop\n");
673 for(e = ldap_first_entry(lcp->ld, result), valuecount = 0;
675 e = ldap_next_entry(lcp->ld, e))
678 BOOL insert_space = FALSE;
680 DEBUG(D_lookup) debug_printf_indent("LDAP entry loop\n");
682 rescount++; /* Count results */
684 /* Results for multiple entries values are separated by newlines. */
686 if (data) data = string_catn(data, US"\n", 1);
688 /* Get the DN from the last result. */
690 if ((new_dn = US ldap_get_dn(lcp->ld, e)))
694 #if defined LDAP_LIB_NETSCAPE || defined LDAP_LIB_OPENLDAP2
696 #else /* OPENLDAP 1, UMich, Solaris */
704 /* If the data we want is actually the DN rather than any attribute values,
705 (an "ldapdn" search) add it to the data string. If there are multiple
706 entries, the DNs will be concatenated, but we test for this case below, as
707 for SEARCH_LDAP_SINGLE, and give an error. */
709 if (search_type == SEARCH_LDAP_DN) /* Do not amalgamate these into one */
710 { /* condition, because of the else */
711 if (new_dn) /* below, that's for the first only */
713 data = string_cat(data, new_dn);
714 (void) string_from_gstring(data);
715 attribute_found = TRUE;
719 /* Otherwise, loop through the entry, grabbing attribute values. If there's
720 only one attribute being retrieved, no attribute name is given, and the
721 result is not quoted. Multiple values are separated by (comma).
722 If more than one attribute is being retrieved, the data is given as a
723 sequence of name=value pairs, separated by (space), with the value always in quotes.
724 If there are multiple values, they are given within the quotes, comma separated. */
726 else for (uschar * attr = US ldap_first_attribute(lcp->ld, e, &ber);
727 attr; attr = US ldap_next_attribute(lcp->ld, e, ber))
729 DEBUG(D_lookup) debug_printf_indent("LDAP attr loop\n");
731 /* In case of attrs_requested == 1 we just count the values, in all other cases
732 (0, >1) we count the values per attribute */
733 if (attrs_requested != 1) valuecount = 0;
737 /* Get array of values for this attribute. */
739 if ((firstval = values = USS ldap_get_values(lcp->ld, e, CS attr)))
741 if (attrs_requested != 1)
744 data = string_catn(data, US" ", 1);
747 data = string_cat(data, attr);
748 data = string_catn(data, US"=\"", 2);
753 uschar *value = *values;
754 int len = Ustrlen(value);
757 DEBUG(D_lookup) debug_printf_indent("LDAP value loop %s:%s\n", attr, value);
759 /* In case we requested one attribute only but got several times
760 into that attr loop, we need to append the additional values.
761 (This may happen if you derive attributeTypes B and C from A and
762 then query for A.) In all other cases we detect the different
763 attribute and append only every non first value. */
765 if (data && valuecount > 1)
766 data = string_catn(data, US",", 1);
768 /* For multiple attributes, the data is in quotes. We must escape
769 internal quotes, backslashes, newlines, and must double commas. */
771 if (attrs_requested != 1)
772 for (int j = 0; j < len; j++)
774 if (value[j] == '\n')
775 data = string_catn(data, US"\\n", 2);
776 else if (value[j] == ',')
777 data = string_catn(data, US",,", 2);
780 if (value[j] == '\"' || value[j] == '\\')
781 data = string_catn(data, US"\\", 1);
782 data = string_catn(data, value+j, 1);
786 /* For single attributes, just double commas */
789 for (int j = 0; j < len; j++)
791 data = string_catn(data, US",,", 2);
793 data = string_catn(data, value+j, 1);
796 /* Move on to the next value */
799 attribute_found = TRUE;
802 /* Closing quote at the end of the data for a named attribute. */
804 if (attrs_requested != 1)
805 data = string_catn(data, US"\"", 1);
807 /* Free the values */
809 ldap_value_free(CSS firstval);
813 #if defined LDAP_LIB_NETSCAPE || defined LDAP_LIB_OPENLDAP2
815 /* Netscape and OpenLDAP2 LDAP's attrs are dynamically allocated and need
816 to be freed. UMich LDAP stores them in static storage and does not require
821 } /* End "for" loop for extracting attributes from an entry */
822 } /* End "for" loop for extracting entries from a result */
824 /* Free the result */
826 ldap_msgfree(result);
828 } /* End "while" loop for multiple results */
830 /* Terminate the dynamic string that we have built and reclaim unused store.
831 In the odd case of a single attribute with zero-length value, allocate
834 if (!data) data = string_get(1);
835 (void) string_from_gstring(data);
836 gstring_release_unused(data);
838 /* Copy the last dn into eldap_dn */
842 eldap_dn = string_copy(dn);
843 #if defined LDAP_LIB_NETSCAPE || defined LDAP_LIB_OPENLDAP2
845 #else /* OPENLDAP 1, UMich, Solaris */
850 DEBUG(D_lookup) debug_printf_indent("search ended by ldap_result yielding %d\n",rc);
854 *errmsg = US"ldap_result timed out";
858 /* A return code of -1 seems to mean "ldap_result failed internally or couldn't
859 provide you with a message". Other error states seem to exist where
860 ldap_result() didn't give us any message from the server at all, leaving result
861 set to NULL. Apparently, "the error parameters of the LDAP session handle will
862 be set accordingly". That's the best we can do to retrieve an error status; we
863 can't use functions like ldap_result2error because they parse a message from
864 the server, which we didn't get.
866 Annoyingly, the different implementations of LDAP have gone for different
867 methods of handling error codes and generating error messages. */
869 if (rc == -1 || !result)
872 DEBUG(D_lookup) debug_printf_indent("ldap_result failed\n");
874 #if defined LDAP_LIB_SOLARIS || defined LDAP_LIB_OPENLDAP2
875 ldap_get_option(lcp->ld, LDAP_OPT_ERROR_NUMBER, &err);
876 *errmsg = string_sprintf("ldap_result failed: %d, %s",
877 err, ldap_err2string(err));
879 #elif defined LDAP_LIB_NETSCAPE
880 /* Dubious (surely 'matched' is spurious here?) */
881 (void)ldap_get_lderrno(lcp->ld, &matched, &error1);
882 *errmsg = string_sprintf("ldap_result failed: %s (%s)", error1, matched);
884 #else /* UMich LDAP aka OpenLDAP 1.x */
885 *errmsg = string_sprintf("ldap_result failed: %d, %s",
886 lcp->ld->ld_errno, ldap_err2string(lcp->ld->ld_errno));
892 /* A return code that isn't -1 doesn't necessarily mean there were no problems
893 with the search. The message must be an LDAP_RES_SEARCH_RESULT or
894 LDAP_RES_SEARCH_REFERENCE or else it's something we can't handle. Some versions
895 of LDAP do not define LDAP_RES_SEARCH_REFERENCE (LDAP v1 is one, it seems). So
896 we don't provide that functionality when we can't. :-) */
898 if (rc != LDAP_RES_SEARCH_RESULT
899 #ifdef LDAP_RES_SEARCH_REFERENCE
900 && rc != LDAP_RES_SEARCH_REFERENCE
904 *errmsg = string_sprintf("ldap_result returned unexpected code %d", rc);
908 /* We have a result message from the server. This doesn't yet mean all is well.
909 We need to parse the message to find out exactly what's happened. */
911 #if defined LDAP_LIB_SOLARIS || defined LDAP_LIB_OPENLDAP2
913 ldap_parse_rc = ldap_parse_result(lcp->ld, result, &rc, CSS &matched,
914 CSS &error2, NULL, NULL, 0);
915 DEBUG(D_lookup) debug_printf_indent("ldap_parse_result: %d\n", ldap_parse_rc);
916 if (ldap_parse_rc < 0 &&
917 (ldap_parse_rc != LDAP_NO_RESULTS_RETURNED
918 #ifdef LDAP_RES_SEARCH_REFERENCE
919 || ldap_rc != LDAP_RES_SEARCH_REFERENCE
923 *errmsg = string_sprintf("ldap_parse_result failed %d", ldap_parse_rc);
926 error1 = US ldap_err2string(rc);
928 #elif defined LDAP_LIB_NETSCAPE
929 /* Dubious (it doesn't reference 'result' at all!) */
930 rc = ldap_get_lderrno(lcp->ld, &matched, &error1);
932 #else /* UMich LDAP aka OpenLDAP 1.x */
933 rc = ldap_result2error(lcp->ld, result, 0);
934 error1 = ldap_err2string(rc);
935 error2 = lcp->ld->ld_error;
936 matched = lcp->ld->ld_matched;
939 /* Process the status as follows:
941 (1) If we get LDAP_SIZELIMIT_EXCEEDED, just carry on, to return the
942 truncated result list.
944 (2) If we get LDAP_RES_SEARCH_REFERENCE, also just carry on. This was a
945 submitted patch that is reported to "do the right thing" with Solaris
946 LDAP libraries. (The problem it addresses apparently does not occur with
949 (3) The range of errors defined by LDAP_NAME_ERROR generally mean "that
950 object does not, or cannot, exist in the database". For those cases we
953 (4) All other non-successes here are treated as some kind of problem with
954 the lookup, so return DEFER (which is the default in error_yield).
957 DEBUG(D_lookup) debug_printf_indent("ldap_parse_result yielded %d: %s\n",
958 rc, ldap_err2string(rc));
960 if (rc != LDAP_SUCCESS && rc != LDAP_SIZELIMIT_EXCEEDED
961 #ifdef LDAP_RES_SEARCH_REFERENCE
962 && rc != LDAP_RES_SEARCH_REFERENCE
966 *errmsg = string_sprintf("LDAP search failed - error %d: %s%s%s%s%s",
968 error1 ? error1 : US"",
969 error2 && error2[0] ? US"/" : US"",
970 error2 ? error2 : US"",
971 matched && matched[0] ? US"/" : US"",
972 matched ? matched : US"");
974 #if defined LDAP_NAME_ERROR
975 if (LDAP_NAME_ERROR(rc))
976 #elif defined NAME_ERROR /* OPENLDAP1 calls it this */
979 if (rc == LDAP_NO_SUCH_OBJECT)
983 DEBUG(D_lookup) debug_printf_indent("lookup failure forced\n");
989 /* The search succeeded. Check if we have too many results */
991 if (search_type != SEARCH_LDAP_MULTIPLE && rescount > 1)
993 *errmsg = string_sprintf("LDAP search: more than one entry (%d) was returned "
994 "(filter not specific enough?)", rescount);
995 goto RETURN_ERROR_BREAK;
998 /* Check if we have too few (zero) entries */
1002 *errmsg = US"LDAP search: no results";
1004 goto RETURN_ERROR_BREAK;
1007 /* If an entry was found, but it had no attributes, we behave as if no entries
1008 were found, that is, the lookup failed. */
1010 if (!attribute_found)
1012 *errmsg = US"LDAP search: found no attributes";
1017 /* Otherwise, it's all worked */
1019 DEBUG(D_lookup) debug_printf_indent("LDAP search: returning: %s\n", data->s);
1023 if (result) ldap_msgfree(result);
1024 ldap_free_urldesc(ludp);
1030 *defer_break = TRUE;
1033 DEBUG(D_lookup) debug_printf_indent("%s\n", *errmsg);
1036 if (result) ldap_msgfree(result);
1037 if (ludp) ldap_free_urldesc(ludp);
1039 #if defined LDAP_LIB_OPENLDAP2
1040 if (error2) ldap_memfree(error2);
1041 if (matched) ldap_memfree(matched);
1049 /*************************************************
1050 * Internal search control function *
1051 *************************************************/
1053 /* This function is called from eldap_find(), eldapauth_find(), eldapdn_find(),
1054 and eldapm_find() with a difference in the "search_type" argument. It controls
1055 calls to perform_ldap_search() which actually does the work. We call that
1056 repeatedly for certain types of defer in the case when the URL contains no host
1057 name and eldap_default_servers is set to a list of servers to try. This gives
1058 more control than just passing over a list of hosts to ldap_open() because it
1059 handles other kinds of defer as well as just a failure to open. Note that the
1060 URL is defined to contain either zero or one "hostport" only.
1062 Parameter data in addition to the URL can be passed as preceding text in the
1063 string, as items of the form XXX=yyy. The URL itself can be detected because it
1064 must begin "ldapx://", where x is empty, s, or i.
1067 ldap_url the URL to be looked up, optionally preceded by other parameter
1069 search_type SEARCH_LDAP_MULTIPLE allows values from multiple entries
1070 SEARCH_LDAP_SINGLE allows values from one entry only
1071 SEARCH_LDAP_DN gets the DN from one entry
1072 res set to point at the result
1073 errmsg set to point a message if result is not OK
1075 Returns: OK or FAIL or DEFER
1079 control_ldap_search(const uschar *ldap_url, int search_type, uschar **res,
1082 BOOL defer_break = FALSE;
1083 int timelimit = LDAP_NO_LIMIT;
1084 int sizelimit = LDAP_NO_LIMIT;
1087 int dereference = LDAP_DEREF_NEVER;
1088 void* referrals = LDAP_OPT_ON;
1089 const uschar *url = ldap_url;
1091 uschar *user = NULL;
1092 uschar *password = NULL;
1093 uschar *local_servers = NULL;
1098 while (isspace(*url)) url++;
1100 /* Until the string begins "ldap", search for the other parameter settings that
1101 are recognized. They are of the form NAME=VALUE, with the value being
1102 optionally double-quoted. There must still be a space after it, however. No
1103 NAME has the value "ldap". */
1105 while (strncmpic(url, US"ldap", 4) != 0)
1107 const uschar *name = url;
1108 while (*url && *url != '=') url++;
1113 namelen = ++url - name;
1114 value = string_dequote(&url);
1117 if (strncmpic(name, US"USER=", namelen) == 0) user = value;
1118 else if (strncmpic(name, US"PASS=", namelen) == 0) password = value;
1119 else if (strncmpic(name, US"SIZE=", namelen) == 0) sizelimit = Uatoi(value);
1120 else if (strncmpic(name, US"TIME=", namelen) == 0) timelimit = Uatoi(value);
1121 else if (strncmpic(name, US"CONNECT=", namelen) == 0) tcplimit = Uatoi(value);
1122 else if (strncmpic(name, US"NETTIME=", namelen) == 0) tcplimit = Uatoi(value);
1123 else if (strncmpic(name, US"SERVERS=", namelen) == 0) local_servers = value;
1125 /* Don't know if all LDAP libraries have LDAP_OPT_DEREF */
1127 #ifdef LDAP_OPT_DEREF
1128 else if (strncmpic(name, US"DEREFERENCE=", namelen) == 0)
1130 if (strcmpic(value, US"never") == 0) dereference = LDAP_DEREF_NEVER;
1131 else if (strcmpic(value, US"searching") == 0)
1132 dereference = LDAP_DEREF_SEARCHING;
1133 else if (strcmpic(value, US"finding") == 0)
1134 dereference = LDAP_DEREF_FINDING;
1135 if (strcmpic(value, US"always") == 0) dereference = LDAP_DEREF_ALWAYS;
1138 else if (strncmpic(name, US"DEREFERENCE=", namelen) == 0)
1140 *errmsg = string_sprintf("LDAP_OP_DEREF not defined in this LDAP "
1141 "library - cannot use \"dereference\"");
1142 DEBUG(D_lookup) debug_printf_indent("%s\n", *errmsg);
1147 #ifdef LDAP_OPT_REFERRALS
1148 else if (strncmpic(name, US"REFERRALS=", namelen) == 0)
1150 if (strcmpic(value, US"follow") == 0) referrals = LDAP_OPT_ON;
1151 else if (strcmpic(value, US"nofollow") == 0) referrals = LDAP_OPT_OFF;
1154 *errmsg = US"LDAP option REFERRALS is not \"follow\" or \"nofollow\"";
1155 DEBUG(D_lookup) debug_printf_indent("%s\n", *errmsg);
1160 else if (strncmpic(name, US"REFERRALS=", namelen) == 0)
1162 *errmsg = string_sprintf("LDAP_OP_REFERRALS not defined in this LDAP "
1163 "library - cannot use \"referrals\"");
1164 DEBUG(D_lookup) debug_printf_indent("%s\n", *errmsg);
1172 string_sprintf("unknown parameter \"%.*s\" precedes LDAP URL",
1174 DEBUG(D_lookup) debug_printf_indent("LDAP query error: %s\n", *errmsg);
1177 while (isspace(*url)) url++;
1181 *errmsg = US"malformed parameter setting precedes LDAP URL";
1182 DEBUG(D_lookup) debug_printf_indent("LDAP query error: %s\n", *errmsg);
1186 /* If user is set, de-URL-quote it. Some LDAP libraries do this for themselves,
1187 but it seems that not all behave like this. The DN for the user is often the
1188 result of ${quote_ldap_dn:...} quoting, which does apply URL quoting, because
1189 that is needed when the DN is used as a base DN in a query. Sigh. This is all
1190 far too complicated. */
1195 for (uschar * s = user; *s != 0; s++)
1198 if (*s == '%' && isxdigit(c=s[1]) && isxdigit(d=s[2]))
1203 (((c >= 'a')? (10 + c - 'a') : c - '0') << 4) |
1204 ((d >= 'a')? (10 + d - 'a') : d - '0');
1213 debug_printf_indent("LDAP parameters: user=%s pass=%s size=%d time=%d connect=%d "
1214 "dereference=%d referrals=%s\n", user, password, sizelimit, timelimit,
1215 tcplimit, dereference, referrals == LDAP_OPT_ON ? "on" : "off");
1217 /* If the request is just to check authentication, some credentials must
1218 be given. The password must not be empty because LDAP binds with an empty
1219 password are considered anonymous, and will succeed on most installations. */
1221 if (search_type == SEARCH_LDAP_AUTH)
1223 if (!user || !password)
1225 *errmsg = US"ldapauth lookups must specify the username and password";
1230 DEBUG(D_lookup) debug_printf_indent("Empty password: ldapauth returns FAIL\n");
1235 /* Check for valid ldap url starters */
1238 if (tolower(*p) == 's' || tolower(*p) == 'i') p++;
1239 if (Ustrncmp(p, "://", 3) != 0)
1241 *errmsg = string_sprintf("LDAP URL does not start with \"ldap://\", "
1242 "\"ldaps://\", or \"ldapi://\" (it starts with \"%.16s...\")", url);
1243 DEBUG(D_lookup) debug_printf_indent("LDAP query error: %s\n", *errmsg);
1247 /* No default servers, or URL contains a server name: just one attempt */
1249 if (!eldap_default_servers && !local_servers || p[3] != '/')
1250 return perform_ldap_search(url, NULL, 0, search_type, res, errmsg,
1251 &defer_break, user, password, sizelimit, timelimit, tcplimit, dereference,
1254 /* Loop through the default servers until OK or FAIL. Use local_servers list
1255 * if defined in the lookup, otherwise use the global default list */
1256 list = !local_servers ? eldap_default_servers : local_servers;
1257 while ((server = string_nextinlist(&list, &sep, buffer, sizeof(buffer))))
1261 uschar *colon = Ustrchr(server, ':');
1265 port = Uatoi(colon+1);
1267 rc = perform_ldap_search(url, server, port, search_type, res, errmsg,
1268 &defer_break, user, password, sizelimit, timelimit, tcplimit, dereference,
1270 if (rc != DEFER || defer_break) return rc;
1278 /*************************************************
1279 * Find entry point *
1280 *************************************************/
1282 /* See local README for interface description. The different kinds of search
1283 are handled by a common function, with a flag to differentiate between them.
1284 The handle and filename arguments are not used. */
1287 eldap_find(void * handle, const uschar * filename, const uschar * ldap_url,
1288 int length, uschar ** result, uschar ** errmsg, uint * do_cache,
1289 const uschar * opts)
1291 /* Keep picky compilers happy */
1292 do_cache = do_cache;
1293 return(control_ldap_search(ldap_url, SEARCH_LDAP_SINGLE, result, errmsg));
1297 eldapm_find(void * handle, const uschar * filename, const uschar * ldap_url,
1298 int length, uschar ** result, uschar ** errmsg, uint * do_cache,
1299 const uschar * opts)
1301 /* Keep picky compilers happy */
1302 do_cache = do_cache;
1303 return(control_ldap_search(ldap_url, SEARCH_LDAP_MULTIPLE, result, errmsg));
1307 eldapdn_find(void * handle, const uschar * filename, const uschar * ldap_url,
1308 int length, uschar ** result, uschar ** errmsg, uint * do_cache,
1309 const uschar * opts)
1311 /* Keep picky compilers happy */
1312 do_cache = do_cache;
1313 return(control_ldap_search(ldap_url, SEARCH_LDAP_DN, result, errmsg));
1317 eldapauth_find(void * handle, const uschar * filename, const uschar * ldap_url,
1318 int length, uschar ** result, uschar ** errmsg, uint * do_cache)
1320 /* Keep picky compilers happy */
1321 do_cache = do_cache;
1322 return(control_ldap_search(ldap_url, SEARCH_LDAP_AUTH, result, errmsg));
1327 /*************************************************
1328 * Open entry point *
1329 *************************************************/
1331 /* See local README for interface description. */
1334 eldap_open(const uschar * filename, uschar ** errmsg)
1336 return (void *)(1); /* Just return something non-null */
1341 /*************************************************
1342 * Tidy entry point *
1343 *************************************************/
1345 /* See local README for interface description.
1346 Make sure that eldap_dn does not refer to reclaimed or worse, freed store */
1351 LDAP_CONNECTION *lcp = NULL;
1354 while ((lcp = ldap_connections) != NULL)
1356 DEBUG(D_lookup) debug_printf_indent("unbind LDAP connection to %s:%d\n", lcp->host,
1358 if(lcp->bound == TRUE)
1359 ldap_unbind(lcp->ld);
1360 ldap_connections = lcp->next;
1366 /*************************************************
1367 * Quote entry point *
1368 *************************************************/
1370 /* LDAP quoting is unbelievably messy. For a start, two different levels of
1371 quoting have to be done: LDAP quoting, and URL quoting. The current
1372 specification is the result of a suggestion by Brian Candler. It recognizes
1375 (1) For text that appears in a search filter, the following escapes are
1376 required (see RFC 2254):
1384 Then the entire filter text must be URL-escaped. This kind of quoting is
1385 implemented by ${quote_ldap:....}. Note that we can never have a NULL
1386 in the input string, because that's a terminator.
1388 (2) For a DN that is part of a URL (i.e. the base DN), the characters
1392 must be quoted by backslashing. See RFC 2253. Leading and trailing spaces
1393 must be escaped, as must a leading #. Then the string must be URL-quoted.
1394 This type of quoting is implemented by ${quote_ldap_dn:....}.
1396 For URL quoting, the only characters that need not be quoted are the
1401 All the others must be hexified and preceded by %. This includes the
1402 backslashes used for LDAP quoting.
1404 For a DN that is given in the USER parameter for authentication, we need the
1405 same initial quoting as (2) but in this case, the result must NOT be
1406 URL-escaped, because it isn't a URL. The way this is handled is by
1407 de-URL-quoting the text when processing the USER parameter in
1408 control_ldap_search() above. That means that the same quote operator can be
1409 used. This has the additional advantage that spaces in the DN won't cause
1410 parsing problems. For example:
1412 USER=cn=${quote_ldap_dn:$1},%20dc=example,%20dc=com
1414 should be safe if there are spaces in $1.
1418 s the string to be quoted
1419 opt additional option text or NULL if none
1420 only "dn" is recognized
1422 Returns: the processed string or NULL for a bad option
1427 /* The characters in this string, together with alphanumerics, never need
1428 quoting in any way. */
1430 #define ALWAYS_LITERAL "!$'-._"
1432 /* The special characters in this string do not need to be URL-quoted. The set
1433 is a bit larger than the general literals. */
1435 #define URL_NONQUOTE ALWAYS_LITERAL "()*+"
1437 /* The following macros define the characters that are quoted by quote_ldap and
1438 quote_ldap_dn, respectively. */
1440 #define LDAP_QUOTE "*()\\"
1441 #define LDAP_DN_QUOTE ",+\"\\<>;"
1446 eldap_quote(uschar *s, uschar *opt)
1455 /* Test for a DN quotation. */
1459 if (Ustrcmp(opt, "dn") != 0) return NULL; /* No others recognized */
1463 /* Compute how much extra store we need for the string. This doesn't have to be
1464 exact as long as it isn't an underestimate. The worst case is the addition of 5
1465 extra bytes for a single character. This occurs for certain characters in DNs,
1466 where, for example, < turns into %5C%3C. For simplicity, we just add 5 for each
1467 possibly escaped character. The really fast way would be just to test for
1468 non-alphanumerics, but it is probably better to spot a few others that are
1469 never escaped, because if there are no specials at all, we can avoid copying
1472 while ((c = *t++) != 0)
1475 if (!isalnum(c) && Ustrchr(ALWAYS_LITERAL, c) == NULL) count += 5;
1477 if (count == 0) return s;
1479 /* Get sufficient store to hold the quoted string */
1481 t = quoted = store_get(len + count + 1, is_tainted(s));
1483 /* Handle plain quote_ldap */
1487 while ((c = *s++) != 0)
1491 if (Ustrchr(LDAP_QUOTE, c) != NULL)
1493 sprintf(CS t, "%%5C%02X", c); /* e.g. * => %5C2A */
1497 if (Ustrchr(URL_NONQUOTE, c) == NULL) /* e.g. ] => %5D */
1499 sprintf(CS t, "%%%02X", c);
1504 *t++ = c; /* unquoted character */
1508 /* Handle quote_ldap_dn */
1512 uschar *ss = s + len;
1514 /* Find the last char before any trailing spaces */
1516 while (ss > s && ss[-1] == ' ') ss--;
1518 /* Quote leading spaces and sharps */
1522 if (*s != ' ' && *s != '#') break;
1523 sprintf(CS t, "%%5C%%%02X", *s);
1527 /* Handle the rest of the string, up to the trailing spaces */
1534 if (Ustrchr(LDAP_DN_QUOTE, c) != NULL)
1536 Ustrncpy(t, US"%5C", 3); /* insert \ where needed */
1537 t += 3; /* fall through to check URL */
1539 if (Ustrchr(URL_NONQUOTE, c) == NULL) /* e.g. ] => %5D */
1541 sprintf(CS t, "%%%02X", c);
1546 *t++ = c; /* unquoted character, or non-URL quoted after %5C */
1549 /* Handle the trailing spaces */
1553 Ustrncpy(t, US"%5C%20", 6);
1558 /* Terminate the new string and return */
1566 /*************************************************
1567 * Version reporting entry point *
1568 *************************************************/
1570 /* See local README for interface description. */
1572 #include "../version.h"
1575 ldap_version_report(FILE *f)
1578 fprintf(f, "Library version: LDAP: Exim version %s\n", EXIM_VERSION_STR);
1583 static lookup_info ldap_lookup_info = {
1584 .name = US"ldap", /* lookup name */
1585 .type = lookup_querystyle, /* query-style lookup */
1586 .open = eldap_open, /* open function */
1587 .check = NULL, /* check function */
1588 .find = eldap_find, /* find function */
1589 .close = NULL, /* no close function */
1590 .tidy = eldap_tidy, /* tidy function */
1591 .quote = eldap_quote, /* quoting function */
1592 .version_report = ldap_version_report /* version reporting */
1595 static lookup_info ldapdn_lookup_info = {
1596 .name = US"ldapdn", /* lookup name */
1597 .type = lookup_querystyle, /* query-style lookup */
1598 .open = eldap_open, /* sic */ /* open function */
1599 .check = NULL, /* check function */
1600 .find = eldapdn_find, /* find function */
1601 .close = NULL, /* no close function */
1602 .tidy = eldap_tidy, /* sic */ /* tidy function */
1603 .quote = eldap_quote, /* sic */ /* quoting function */
1604 .version_report = NULL /* no version reporting (redundant) */
1607 static lookup_info ldapm_lookup_info = {
1608 .name = US"ldapm", /* lookup name */
1609 .type = lookup_querystyle, /* query-style lookup */
1610 .open = eldap_open, /* sic */ /* open function */
1611 .check = NULL, /* check function */
1612 .find = eldapm_find, /* find function */
1613 .close = NULL, /* no close function */
1614 .tidy = eldap_tidy, /* sic */ /* tidy function */
1615 .quote = eldap_quote, /* sic */ /* quoting function */
1616 .version_report = NULL /* no version reporting (redundant) */
1620 #define ldap_lookup_module_info _lookup_module_info
1623 static lookup_info *_lookup_list[] = { &ldap_lookup_info, &ldapdn_lookup_info, &ldapm_lookup_info };
1624 lookup_module_info ldap_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 3 };
1626 /* End of lookups/ldap.c */