Concede the war on known good vs reference passwords
[freeradius.git] / src / modules / rlm_ldap / ldap.c
1 /*
2  *   This program is is free software; you can redistribute it and/or modify
3  *   it under the terms of the GNU General Public License, version 2 if the
4  *   License as published by the Free Software Foundation.
5  *
6  *   This program is distributed in the hope that it will be useful,
7  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
8  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9  *   GNU General Public License for more details.
10  *
11  *   You should have received a copy of the GNU General Public License
12  *   along with this program; if not, write to the Free Software
13  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
14  */
15
16 /**
17  * $Id$
18  * @file ldap.c
19  * @brief LDAP module library functions.
20  *
21  * @author Arran Cudbard-Bell <a.cudbardb@freeradius.org>
22  * @copyright 2013 Network RADIUS SARL <info@networkradius.com>
23  * @copyright 2013 The FreeRADIUS Server Project.
24  */
25 #include        <freeradius-devel/radiusd.h>
26 #include        <freeradius-devel/modules.h>
27 #include        <freeradius-devel/rad_assert.h>
28
29 #include        <stdarg.h>
30 #include        <ctype.h>
31
32 #include        <lber.h>
33 #include        <ldap.h>
34 #include        "ldap.h"
35
36
37
38 /** Converts "bad" strings into ones which are safe for LDAP
39  *
40  * This is a callback for xlat operations.
41  *
42  * Will escape any characters in input strings that would cause the string to be interpreted as part of a DN and or
43  * filter. Escape sequence is @verbatim \<hex><hex> @endverbatim
44  *
45  * @param request The current request.
46  * @param out Pointer to output buffer.
47  * @param outlen Size of the output buffer.
48  * @param in Raw unescaped string.
49  * @param arg Any additional arguments (unused).
50  */
51 size_t rlm_ldap_escape_func(UNUSED REQUEST *request, char *out, size_t outlen, char const *in, UNUSED void *arg)
52 {
53         static char const encode[] = ",+\"\\<>;*=()";
54         static char const hextab[] = "0123456789abcdef";
55         size_t left = outlen;
56
57         if (*in && ((*in == ' ') || (*in == '#'))) {
58                 goto encode;
59         }
60
61         while (*in) {
62                 /*
63                  *      Encode unsafe characters.
64                  */
65                 if (memchr(encode, *in, sizeof(encode) - 1)) {
66                         encode:
67
68                         /*
69                          *      Only 3 or less bytes available.
70                          */
71                         if (left <= 3) break;
72
73                         *out++ = '\\';
74                         *out++ = hextab[(*in >> 4) & 0x0f];
75                         *out++ = hextab[*in & 0x0f];
76                         in++;
77                         left -= 3;
78
79                         continue;
80                 }
81
82                 if (left <= 1) break;
83
84                 /*
85                  *      Doesn't need encoding
86                  */
87                 *out++ = *in++;
88                 left--;
89         }
90
91         *out = '\0';
92
93         return outlen - left;
94 }
95
96 /** Check whether a string is a DN
97  *
98  * @param str to check.
99  * @return true if string is a DN, else false.
100  */
101 int rlm_ldap_is_dn(char const *str)
102 {
103         return strrchr(str, ',') == NULL ? false : true;
104 }
105
106 /** Find the place at which the two DN strings diverge
107  *
108  * Returns the length of the non matching string in full.
109  *
110  * @param full DN.
111  * @param part Partial DN as returned by ldap_parse_result.
112  * @return the length of the portion of full which wasn't matched or -1 on error.
113  */
114 static size_t rlm_ldap_common_dn(char const *full, char const *part)
115 {
116         size_t f_len, p_len, i;
117
118         if (!full) {
119                 return -1;
120         }
121
122         f_len = strlen(full);
123
124         if (!part) {
125                 return -1;
126         }
127
128         p_len = strlen(part);
129         if (!p_len) {
130                 return f_len;
131         }
132
133         if ((f_len < p_len) || !f_len) {
134                 return -1;
135         }
136
137         for (i = 0; i < p_len; i++) {
138                 if (part[p_len - i] != full[f_len - i]) {
139                         return -1;
140                 }
141         }
142
143         return f_len - p_len;
144 }
145
146 /** Combine and expand filters
147  *
148  * @param request Current request.
149  * @param out Where to write the expanded string.
150  * @param outlen Length of output buffer.
151  * @param sub Array of subfilters (may contain NULLs).
152  * @param sublen Number of potential subfilters in array.
153  * @return length of expanded data.
154  */
155 ssize_t rlm_ldap_xlat_filter(REQUEST *request, char const **sub, size_t sublen, char *out, size_t outlen)
156 {
157         char buffer[LDAP_MAX_FILTER_STR_LEN + 1];
158         char const *in = NULL;
159         char *p = buffer;
160
161         ssize_t len = 0;
162
163         unsigned int i;
164         int cnt = 0;
165
166         /*
167          *      Figure out how many filter elements we need to integrate
168          */
169         for (i = 0; i < sublen; i++) {
170                 if (sub[i] && *sub[i]) {
171                         in = sub[i];
172                         cnt++;
173                 }
174         }
175
176         if (!cnt) {
177                 out[0] = '\0';
178                 return 0;
179         }
180
181         if (cnt > 1) {
182                 if (outlen < 3) {
183                         goto oob;
184                 }
185
186                 p[len++] = '(';
187                 p[len++] = '&';
188
189                 for (i = 0; i < sublen; i++) {
190                         if (sub[i] && (*sub[i] != '\0')) {
191                                 len += strlcpy(p + len, sub[i], outlen - len);
192
193                                 if ((size_t) len >= outlen) {
194                                         oob:
195                                         REDEBUG("Out of buffer space creating filter");
196
197                                         return -1;
198                                 }
199                         }
200                 }
201
202                 if ((outlen - len) < 2) {
203                         goto oob;
204                 }
205
206                 p[len++] = ')';
207                 p[len] = '\0';
208
209                 in = buffer;
210         }
211
212         len = radius_xlat(out, outlen, request, in, rlm_ldap_escape_func, NULL);
213         if (len < 0) {
214                 REDEBUG("Failed creating filter");
215
216                 return -1;
217         }
218
219         return len;
220 }
221
222 /** Return the error string associated with a handle
223  *
224  * @param conn to retrieve error from.
225  * @return error string.
226  */
227 char const *rlm_ldap_error_str(ldap_handle_t const *conn)
228 {
229         int lib_errno;
230         ldap_get_option(conn->handle, LDAP_OPT_ERROR_NUMBER, &lib_errno);
231         if (lib_errno == LDAP_SUCCESS) {
232                 return "unknown";
233         }
234
235         return ldap_err2string(lib_errno);
236 }
237
238 /** Parse response from LDAP server dealing with any errors
239  *
240  * Should be called after an LDAP operation. Will check result of operation and if it was successful, then attempt
241  * to retrieve and parse the result.
242  *
243  * Will also produce extended error output including any messages the server sent, and information about partial
244  * DN matches.
245  *
246  * @param[in] inst of LDAP module.
247  * @param[in] conn Current connection.
248  * @param[in] msgid returned from last operation.
249  * @param[in] dn Last search or bind DN.
250  * @param[out] result Where to write result, if NULL result will be freed.
251  * @param[out] error Where to write the error string, may be NULL, must not be freed.
252  * @param[out] extra Where to write additional error string to, may be NULL (faster) or must be freed
253  *      (with talloc_free).
254  * @return One of the LDAP_PROC_* codes.
255  */
256 static ldap_rcode_t rlm_ldap_result(ldap_instance_t const *inst, ldap_handle_t const *conn, int msgid, char const *dn,
257                                     LDAPMessage **result, char const **error, char **extra)
258 {
259         ldap_rcode_t status = LDAP_PROC_SUCCESS;
260
261         int lib_errno = LDAP_SUCCESS;   // errno returned by the library.
262         int srv_errno = LDAP_SUCCESS;   // errno in the result message.
263
264         char *part_dn = NULL;           // Partial DN match.
265         char *our_err = NULL;           // Our extended error message.
266         char *srv_err = NULL;           // Server's extended error message.
267         char *p, *a;
268
269         bool freeit = false;            // Whether the message should be freed after being processed.
270         int len;
271
272         struct timeval tv;              // Holds timeout values.
273
274         LDAPMessage *tmp_msg;           // Temporary message pointer storage if we weren't provided with one.
275
276         char const *tmp_err;            // Temporary error pointer storage if we weren't provided with one.
277
278         if (!error) {
279                 error = &tmp_err;
280         }
281         *error = NULL;
282
283         if (extra) {
284                 *extra = NULL;
285         }
286
287         /*
288          *      We always need the result, but our caller may not
289          */
290         if (!result) {
291                 result = &tmp_msg;
292                 freeit = true;
293         }
294
295         *result = NULL;
296
297         /*
298          *      Check if there was an error sending the request
299          */
300         ldap_get_option(conn->handle, LDAP_OPT_ERROR_NUMBER,
301                         &lib_errno);
302         if (lib_errno != LDAP_SUCCESS) {
303                 goto process_error;
304         }
305
306         memset(&tv, 0, sizeof(tv));
307         tv.tv_sec = inst->res_timeout;
308
309         /*
310          *      Now retrieve the result and check for errors
311          *      ldap_result returns -1 on error, and 0 on timeout
312          */
313         lib_errno = ldap_result(conn->handle, msgid, 1, &tv, result);
314         if (lib_errno == 0) {
315                 lib_errno = LDAP_TIMEOUT;
316
317                 goto process_error;
318         }
319
320         if (lib_errno == -1) {
321                 ldap_get_option(conn->handle, LDAP_OPT_ERROR_NUMBER,
322                                 &lib_errno);
323                 goto process_error;
324         }
325
326         /*
327          *      Parse the result and check for errors sent by the server
328          */
329         lib_errno = ldap_parse_result(conn->handle, *result,
330                                       &srv_errno,
331                                       extra ? &part_dn : NULL,
332                                       extra ? &srv_err : NULL,
333                                       NULL, NULL, freeit);
334         if (freeit) {
335                 *result = NULL;
336         }
337
338         if (lib_errno != LDAP_SUCCESS) {
339                 ldap_get_option(conn->handle, LDAP_OPT_ERROR_NUMBER,
340                                 &lib_errno);
341                 goto process_error;
342         }
343
344         process_error:
345
346         if ((lib_errno == LDAP_SUCCESS) && (srv_errno != LDAP_SUCCESS)) {
347                 lib_errno = srv_errno;
348         } else if ((lib_errno != LDAP_SUCCESS) && (srv_errno == LDAP_SUCCESS)) {
349                 srv_errno = lib_errno;
350         }
351
352         switch (lib_errno) {
353         case LDAP_SUCCESS:
354                 *error = "Success";
355
356                 break;
357
358         case LDAP_NO_SUCH_OBJECT:
359                 *error = "The specified DN wasn't found, check base_dn and identity";
360
361                 status = LDAP_PROC_BAD_DN;
362
363                 if (!extra) break;
364
365                 /*
366                  *      Build our own internal diagnostic string
367                  */
368                 len = rlm_ldap_common_dn(dn, part_dn);
369                 if (len < 0) break;
370
371                 our_err = talloc_asprintf(conn, "Match stopped here: [%.*s]%s", len, dn, part_dn ? part_dn : "");
372
373                 goto error_string;
374
375         case LDAP_INSUFFICIENT_ACCESS:
376                 *error = "Insufficient access. Check the identity and password configuration directives";
377
378                 status = LDAP_PROC_NOT_PERMITTED;
379                 break;
380
381         case LDAP_UNWILLING_TO_PERFORM:
382                 *error = "Server was unwilling to perform";
383
384                 status = LDAP_PROC_NOT_PERMITTED;
385                 break;
386
387         case LDAP_TIMEOUT:
388                 exec_trigger(NULL, inst->cs, "modules.ldap.timeout", true);
389
390                 *error = "Timed out while waiting for server to respond";
391
392                 status = LDAP_PROC_ERROR;
393                 break;
394
395         case LDAP_FILTER_ERROR:
396                 *error = "Bad search filter";
397
398                 status = LDAP_PROC_ERROR;
399                 break;
400
401         case LDAP_TIMELIMIT_EXCEEDED:
402                 exec_trigger(NULL, inst->cs, "modules.ldap.timeout", true);
403
404                 *error = "Time limit exceeded";
405                 /* FALL-THROUGH */
406
407         case LDAP_BUSY:
408         case LDAP_UNAVAILABLE:
409         case LDAP_SERVER_DOWN:
410                 status = LDAP_PROC_RETRY;
411
412                 goto error_string;
413
414         case LDAP_INVALID_CREDENTIALS:
415         case LDAP_CONSTRAINT_VIOLATION:
416                 status = LDAP_PROC_REJECT;
417
418                 goto error_string;
419
420         case LDAP_OPERATIONS_ERROR:
421                 *error = "Please set 'chase_referrals=yes' and 'rebind=yes'. See the ldap module configuration "
422                          "for details.";
423
424                 /* FALL-THROUGH */
425         default:
426                 status = LDAP_PROC_ERROR;
427
428                 error_string:
429
430                 if (!*error) {
431                         *error = ldap_err2string(lib_errno);
432                 }
433
434                 if (!extra || ((lib_errno == srv_errno) && !our_err && !srv_err)) {
435                         break;
436                 }
437
438                 /*
439                  *      Output the error codes from the library and server
440                  */
441                 p = talloc_zero_array(conn, char, 1);
442                 if (!p) break;
443
444                 if (lib_errno != srv_errno) {
445                         a = talloc_asprintf_append(p, "LDAP lib error: %s (%u), srv error: %s (%u). ",
446                                                    ldap_err2string(lib_errno), lib_errno,
447                                                    ldap_err2string(srv_errno), srv_errno);
448                         if (!a) {
449                                 talloc_free(p);
450                                 break;
451                         }
452
453                         p = a;
454                 }
455
456                 if (our_err) {
457                         a = talloc_asprintf_append_buffer(p, "%s. ", our_err);
458                         if (!a) {
459                                 talloc_free(p);
460                                 break;
461                         }
462
463                         p = a;
464                 }
465
466                 if (srv_err) {
467                         a = talloc_asprintf_append_buffer(p, "Server said: %s. ", srv_err);
468                         if (!a) {
469                                 talloc_free(p);
470                                 break;
471                         }
472
473                         p = a;
474                 }
475
476                 *extra = p;
477
478                 break;
479         }
480
481         /*
482          *      Cleanup memory
483          */
484         if (srv_err) {
485                 ldap_memfree(srv_err);
486         }
487
488         if (part_dn) {
489                 ldap_memfree(part_dn);
490         }
491
492         if (our_err) {
493                 talloc_free(our_err);
494         }
495
496         if ((lib_errno || srv_errno) && *result) {
497                 ldap_msgfree(*result);
498                 *result = NULL;
499         }
500
501         return status;
502 }
503
504 /** Bind to the LDAP directory as a user
505  *
506  * Performs a simple bind to the LDAP directory, and handles any errors that occur.
507  *
508  * @param[in] inst rlm_ldap configuration.
509  * @param[in] request Current request, this may be NULL, in which case all debug logging is done with radlog.
510  * @param[in,out] pconn to use. May change as this function calls functions which auto re-connect.
511  * @param[in] dn of the user, may be NULL to bind anonymously.
512  * @param[in] password of the user, may be NULL if no password is specified.
513  * @param[in] retry if the server is down.
514  * @return one of the LDAP_PROC_* values.
515  */
516 ldap_rcode_t rlm_ldap_bind(ldap_instance_t const *inst, REQUEST *request, ldap_handle_t **pconn, char const *dn,
517                            char const *password, int retry)
518 {
519         ldap_rcode_t    status;
520
521         int             msgid;
522
523         char const      *error = NULL;
524         char            *extra = NULL;
525
526         rad_assert(*pconn && (*pconn)->handle);
527
528         /*
529          *      Bind as anonymous user
530          */
531         if (!dn) dn = "";
532
533 retry:
534         msgid = ldap_bind((*pconn)->handle, dn, password, LDAP_AUTH_SIMPLE);
535         /* We got a valid message ID */
536         if (msgid >= 0) {
537                 if (request) {
538                         RDEBUG2("Waiting for bind result...");
539                 } else {
540                         DEBUG2("rlm_ldap (%s): Waiting for bind result...", inst->xlat_name);
541                 }
542         }
543
544         status = rlm_ldap_result(inst, *pconn, msgid, dn, NULL, &error, &extra);
545         switch (status) {
546         case LDAP_PROC_SUCCESS:
547                 LDAP_DBG_REQ("Bind successful");
548                 break;
549         case LDAP_PROC_NOT_PERMITTED:
550                 LDAP_ERR_REQ("Bind was not permitted: %s", error);
551                 LDAP_EXT_REQ();
552
553                 break;
554
555         case LDAP_PROC_REJECT:
556                 LDAP_ERR_REQ("Bind credentials incorrect: %s", error);
557                 LDAP_EXT_REQ();
558
559                 break;
560
561         case LDAP_PROC_RETRY:
562                 if (retry) {
563                         *pconn = fr_connection_reconnect(inst->pool, *pconn);
564                         if (*pconn) {
565                                 LDAP_DBGW_REQ("Bind with %s to %s:%d failed: %s. Got new socket, retrying...",
566                                               dn, inst->server, inst->port, error);
567
568                                 talloc_free(extra); /* don't leak debug info */
569
570                                 goto retry;
571                         }
572                 };
573
574                 status = LDAP_PROC_ERROR;
575
576                 /*
577                  *      Were not allowed to retry, or there are no more
578                  *      sockets, treat this as a hard failure.
579                  */
580                 /* FALL-THROUGH */
581         default:
582 #ifdef HAVE_LDAP_INITIALIZE
583                 if (inst->is_url) {
584                         LDAP_ERR_REQ("Bind with %s to %s failed: %s", dn, inst->server, error);
585                 } else
586 #endif
587                 {
588                         LDAP_ERR_REQ("Bind with %s to %s:%d failed: %s", dn, inst->server,
589                                      inst->port, error);
590                 }
591                 LDAP_EXT_REQ();
592
593                 break;
594         }
595
596         if (extra) {
597                 talloc_free(extra);
598         }
599
600         return status; /* caller closes the connection */
601 }
602
603
604 /** Search for something in the LDAP directory
605  *
606  * Binds as the administrative user and performs a search, dealing with any errors.
607  *
608  * @param[in] inst rlm_ldap configuration.
609  * @param[in] request Current request.
610  * @param[in,out] pconn to use. May change as this function calls functions which auto re-connect.
611  * @param[in] dn to use as base for the search.
612  * @param[in] scope to use (LDAP_SCOPE_BASE, LDAP_SCOPE_ONE, LDAP_SCOPE_SUB).
613  * @param[in] filter to use, should be pre-escaped.
614  * @param[in] attrs to retrieve.
615  * @param[out] result Where to store the result. Must be freed with ldap_msgfree if LDAP_PROC_SUCCESS is returned.
616  *      May be NULL in which case result will be automatically freed after use.
617  * @return One of the LDAP_PROC_* values.
618  */
619 ldap_rcode_t rlm_ldap_search(ldap_instance_t const *inst, REQUEST *request, ldap_handle_t **pconn,
620                              char const *dn, int scope, char const *filter, char const * const *attrs,
621                              LDAPMessage **result)
622 {
623         ldap_rcode_t    status;
624         LDAPMessage     *our_result = NULL;
625
626         int             msgid;          // Message id returned by
627                                         // ldap_search_ext.
628
629         int             count = 0;      // Number of results we got.
630
631         struct timeval  tv;             // Holds timeout values.
632
633         char const      *error = NULL;
634         char            *extra = NULL;
635
636         rad_assert(*pconn && (*pconn)->handle);
637
638         /*
639          *      OpenLDAP library doesn't declare attrs array as const, but
640          *      it really should be *sigh*.
641          */
642         char **search_attrs;
643         memcpy(&search_attrs, &attrs, sizeof(attrs));
644
645         /*
646          *      Do all searches as the admin user.
647          */
648         if ((*pconn)->rebound) {
649                 status = rlm_ldap_bind(inst, request, pconn, inst->admin_dn, inst->password, true);
650                 if (status != LDAP_PROC_SUCCESS) {
651                         return LDAP_PROC_ERROR;
652                 }
653
654                 rad_assert(*pconn);
655
656                 (*pconn)->rebound = false;
657         }
658
659         if (filter) {
660                 LDAP_DBG_REQ("Performing search in '%s' with filter '%s', scope '%s'", dn, filter,
661                              fr_int2str(ldap_scope, scope, "<INVALID>"));
662         } else {
663                 LDAP_DBG_REQ("Performing unfiltered search in '%s', scope '%s'", dn,
664                              fr_int2str(ldap_scope, scope, "<INVALID>"));
665         }
666         /*
667          *      If LDAP search produced an error it should also be logged
668          *      to the ld. result should pick it up without us
669          *      having to pass it explicitly.
670          */
671         memset(&tv, 0, sizeof(tv));
672         tv.tv_sec = inst->res_timeout;
673 retry:
674         (void) ldap_search_ext((*pconn)->handle, dn, scope, filter, search_attrs, 0, NULL, NULL, &tv, 0, &msgid);
675
676         LDAP_DBG_REQ("Waiting for search result...");
677         status = rlm_ldap_result(inst, *pconn, msgid, dn, &our_result, &error, &extra);
678         switch (status) {
679                 case LDAP_PROC_SUCCESS:
680                         break;
681                 case LDAP_PROC_RETRY:
682                         *pconn = fr_connection_reconnect(inst->pool, *pconn);
683                         if (*pconn) {
684                                 LDAP_DBGW_REQ("Search failed: %s. Got new socket, retrying...", error);
685
686                                 talloc_free(extra); /* don't leak debug info */
687
688                                 goto retry;
689                         }
690
691                         status = LDAP_PROC_ERROR;
692
693                         /* FALL-THROUGH */
694                 default:
695                         LDAP_ERR_REQ("Failed performing search: %s", error);
696                         if (extra) LDAP_ERR_REQ("%s", extra);
697
698                         goto finish;
699         }
700
701         count = ldap_count_entries((*pconn)->handle, our_result);
702         if (count < 0) {
703                 LDAP_ERR_REQ("Error counting results: %s", rlm_ldap_error_str(*pconn));
704                 status = LDAP_PROC_ERROR;
705
706                 ldap_msgfree(our_result);
707                 our_result = NULL;
708         } else if (count == 0) {
709                 LDAP_DBG_REQ("Search returned no results");
710                 status = LDAP_PROC_NO_RESULT;
711
712                 ldap_msgfree(our_result);
713                 our_result = NULL;
714         }
715
716         finish:
717         if (extra) {
718                 talloc_free(extra);
719         }
720
721         /*
722          *      We always need to get the result to count entries, but the caller
723          *      may not of requested one. If that's the case, free it, else write
724          *      it to where our caller said.
725          */
726         if (!result) {
727                 if (our_result) {
728                         ldap_msgfree(our_result);
729                 }
730         } else {
731                 *result = our_result;
732         }
733
734         return status;
735 }
736
737 /** Modify something in the LDAP directory
738  *
739  * Binds as the administrative user and attempts to modify an LDAP object.
740  *
741  * @param[in] inst rlm_ldap configuration.
742  * @param[in] request Current request.
743  * @param[in,out] pconn to use. May change as this function calls functions which auto re-connect.
744  * @param[in] dn of the object to modify.
745  * @param[in] mods to make, see 'man ldap_modify' for more information.
746  * @return One of the LDAP_PROC_* values.
747  */
748 ldap_rcode_t rlm_ldap_modify(ldap_instance_t const *inst, REQUEST *request, ldap_handle_t **pconn,
749                              char const *dn, LDAPMod *mods[])
750 {
751         ldap_rcode_t    status;
752
753         int             msgid;          // Message id returned by ldap_search_ext.
754
755         char const      *error = NULL;
756         char            *extra = NULL;
757
758         rad_assert(*pconn && (*pconn)->handle);
759
760         /*
761          *      Perform all modifications as the admin user.
762          */
763         if ((*pconn)->rebound) {
764                 status = rlm_ldap_bind(inst, request, pconn, inst->admin_dn, inst->password, true);
765                 if (status != LDAP_PROC_SUCCESS) {
766                         return LDAP_PROC_ERROR;
767                 }
768
769                 rad_assert(*pconn);
770
771                 (*pconn)->rebound = false;
772         }
773
774         RDEBUG2("Modifying object with DN \"%s\"", dn);
775         retry:
776         (void) ldap_modify_ext((*pconn)->handle, dn, mods, NULL, NULL, &msgid);
777
778         RDEBUG2("Waiting for modify result...");
779         status = rlm_ldap_result(inst, *pconn, msgid, dn, NULL, &error, &extra);
780         switch (status) {
781                 case LDAP_PROC_SUCCESS:
782                         break;
783                 case LDAP_PROC_RETRY:
784                         *pconn = fr_connection_reconnect(inst->pool, *pconn);
785                         if (*pconn) {
786                                 RWDEBUG("Modify failed: %s. Got new socket, retrying...", error);
787
788                                 talloc_free(extra); /* don't leak debug info */
789
790                                 goto retry;
791                         }
792
793                         status = LDAP_PROC_ERROR;
794
795                         /* FALL-THROUGH */
796                 default:
797                         REDEBUG("Failed modifying object: %s", error);
798                         REDEBUG("%s", extra);
799
800                         goto finish;
801         }
802
803         finish:
804         if (extra) {
805                 talloc_free(extra);
806         }
807
808         return status;
809 }
810
811 /** Retrieve the DN of a user object
812  *
813  * Retrieves the DN of a user and adds it to the control list as LDAP-UserDN. Will also retrieve any attributes
814  * passed and return the result in *result.
815  *
816  * This potentially allows for all authorization and authentication checks to be performed in one ldap search
817  * operation, which is a big bonus given the number of crappy, slow *cough*AD*cough* LDAP directory servers out there.
818  *
819  * @param[in] inst rlm_ldap configuration.
820  * @param[in] request Current request.
821  * @param[in,out] pconn to use. May change as this function calls functions which auto re-connect.
822  * @param[in] attrs Additional attributes to retrieve, may be NULL.
823  * @param[in] force Query even if the User-DN already exists.
824  * @param[out] result Where to write the result, may be NULL in which case result is discarded.
825  * @param[out] rcode The status of the operation, one of the RLM_MODULE_* codes.
826  * @return The user's DN or NULL on error.
827  */
828 char const *rlm_ldap_find_user(ldap_instance_t const *inst, REQUEST *request, ldap_handle_t **pconn,
829                                char const *attrs[], int force, LDAPMessage **result, rlm_rcode_t *rcode)
830 {
831         static char const *tmp_attrs[] = { NULL };
832
833         ldap_rcode_t    status;
834         VALUE_PAIR      *vp = NULL;
835         LDAPMessage     *tmp_msg = NULL, *entry = NULL;
836         int             ldap_errno;
837         char            *dn = NULL;
838         char            filter[LDAP_MAX_FILTER_STR_LEN];
839         char            base_dn[LDAP_MAX_DN_STR_LEN];
840
841         bool freeit = false;                                    //!< Whether the message should
842                                                                 //!< be freed after being processed.
843
844         *rcode = RLM_MODULE_FAIL;
845
846         if (!result) {
847                 result = &tmp_msg;
848                 freeit = true;
849         }
850         *result = NULL;
851
852         if (!attrs) {
853                 memset(&attrs, 0, sizeof(tmp_attrs));
854         }
855
856         /*
857          *      If the caller isn't looking for the result we can just return the current userdn value.
858          */
859         if (!force) {
860                 vp = pairfind(request->config_items, PW_LDAP_USERDN, 0, TAG_ANY);
861                 if (vp) {
862                         RDEBUG("Using user DN from request \"%s\"", vp->vp_strvalue);
863                         *rcode = RLM_MODULE_OK;
864                         return vp->vp_strvalue;
865                 }
866         }
867
868         /*
869          *      Perform all searches as the admin user.
870          */
871         if ((*pconn)->rebound) {
872                 status = rlm_ldap_bind(inst, request, pconn, inst->admin_dn, inst->password, true);
873                 if (status != LDAP_PROC_SUCCESS) {
874                         *rcode = RLM_MODULE_FAIL;
875                         return NULL;
876                 }
877
878                 rad_assert(*pconn);
879
880                 (*pconn)->rebound = false;
881         }
882
883         if (radius_xlat(filter, sizeof(filter), request, inst->userobj_filter, rlm_ldap_escape_func, NULL) < 0) {
884                 REDEBUG("Unable to create filter");
885
886                 *rcode = RLM_MODULE_INVALID;
887                 return NULL;
888         }
889
890         if (radius_xlat(base_dn, sizeof(base_dn), request, inst->userobj_base_dn, rlm_ldap_escape_func, NULL) < 0) {
891                 REDEBUG("Unable to create base_dn");
892
893                 *rcode = RLM_MODULE_INVALID;
894                 return NULL;
895         }
896
897         status = rlm_ldap_search(inst, request, pconn, base_dn, inst->userobj_scope, filter, attrs, result);
898         switch (status) {
899                 case LDAP_PROC_SUCCESS:
900                         break;
901                 case LDAP_PROC_NO_RESULT:
902                         *rcode = RLM_MODULE_NOTFOUND;
903                         return NULL;
904                 default:
905                         *rcode = RLM_MODULE_FAIL;
906                         return NULL;
907         }
908
909         rad_assert(*pconn);
910
911         entry = ldap_first_entry((*pconn)->handle, *result);
912         if (!entry) {
913                 ldap_get_option((*pconn)->handle, LDAP_OPT_RESULT_CODE, &ldap_errno);
914                 REDEBUG("Failed retrieving entry: %s",
915                         ldap_err2string(ldap_errno));
916
917                 goto finish;
918         }
919
920         dn = ldap_get_dn((*pconn)->handle, entry);
921         if (!dn) {
922                 ldap_get_option((*pconn)->handle, LDAP_OPT_RESULT_CODE, &ldap_errno);
923
924                 REDEBUG("Retrieving object DN from entry failed: %s",
925                         ldap_err2string(ldap_errno));
926
927                 goto finish;
928         }
929
930         RDEBUG("User object found at DN \"%s\"", dn);
931         vp = pairmake(request, &request->config_items, "LDAP-UserDN", dn, T_OP_EQ);
932         if (vp) {
933                 *rcode = RLM_MODULE_OK;
934         }
935
936         finish:
937         ldap_memfree(dn);
938
939         if ((freeit || (*rcode != RLM_MODULE_OK)) && *result) {
940                 ldap_msgfree(*result);
941                 *result = NULL;
942         }
943
944         return vp ? vp->vp_strvalue : NULL;
945 }
946
947 /** Check for presence of access attribute in result
948  *
949  * @param[in] inst rlm_ldap configuration.
950  * @param[in] request Current request.
951  * @param[in] conn used to retrieve access attributes.
952  * @param[in] entry retrieved by rlm_ldap_find_user or rlm_ldap_search.
953  * @return RLM_MODULE_USERLOCK if the user was denied access, else RLM_MODULE_OK.
954  */
955 rlm_rcode_t rlm_ldap_check_access(ldap_instance_t const *inst, REQUEST *request,
956                                   ldap_handle_t const *conn, LDAPMessage *entry)
957 {
958         rlm_rcode_t rcode = RLM_MODULE_OK;
959         char **vals = NULL;
960
961         vals = ldap_get_values(conn->handle, entry, inst->userobj_access_attr);
962         if (vals) {
963                 if (inst->access_positive) {
964                         if (strncasecmp(vals[0], "false", 5) == 0) {
965                                 RDEBUG("\"%s\" attribute exists but is set to 'false' - user locked out",
966                                        inst->userobj_access_attr);
967                                 rcode = RLM_MODULE_USERLOCK;
968                         }
969                         /* RLM_MODULE_OK set above... */
970                 } else if (strncasecmp(vals[0], "false", 5) != 0) {
971                         RDEBUG("\"%s\" attribute exists - user locked out", inst->userobj_access_attr);
972                         rcode = RLM_MODULE_USERLOCK;
973                 }
974
975                 ldap_value_free(vals);
976         } else if (inst->access_positive) {
977                 RDEBUG("No \"%s\" attribute - user locked out", inst->userobj_access_attr);
978                 rcode = RLM_MODULE_USERLOCK;
979         }
980
981         return rcode;
982 }
983
984 /** Verify we got a password from the search
985  *
986  * Checks to see if after the LDAP to RADIUS mapping has been completed that a reference password.
987  *
988  * @param inst rlm_ldap configuration.
989  * @param request Current request.
990  */
991 void rlm_ldap_check_reply(ldap_instance_t const *inst, REQUEST *request)
992 {
993        /*
994         *       More warning messages for people who can't be bothered to read the documentation.
995         *
996         *       Expect_password is set when we process the mapping, and is only true if there was a mapping between
997         *       an LDAP attribute and a password reference attribute in the control list.
998         */
999         if (inst->expect_password && (debug_flag > 1)) {
1000                 if (!pairfind(request->config_items, PW_CLEARTEXT_PASSWORD, 0, TAG_ANY) &&
1001                     !pairfind(request->config_items, PW_NT_PASSWORD, 0, TAG_ANY) &&
1002                     !pairfind(request->config_items, PW_USER_PASSWORD, 0, TAG_ANY) &&
1003                     !pairfind(request->config_items, PW_PASSWORD_WITH_HEADER, 0, TAG_ANY) &&
1004                     !pairfind(request->config_items, PW_CRYPT_PASSWORD, 0, TAG_ANY)) {
1005                         RWDEBUG("No \"known good\" password added. Ensure the admin user has permission to "
1006                                 "read the password attribute");
1007                         RWDEBUG("PAP authentication will *NOT* work with Active Directory (if that is what you "
1008                                 "were trying to configure)");
1009                 }
1010        }
1011 }
1012
1013 #if LDAP_SET_REBIND_PROC_ARGS == 3
1014 /** Callback for OpenLDAP to rebind and chase referrals
1015  *
1016  * Called by OpenLDAP when it receives a referral and has to rebind.
1017  *
1018  * @param handle to rebind.
1019  * @param url to bind to.
1020  * @param request that triggered the rebind.
1021  * @param msgid that triggered the rebind.
1022  * @param ctx rlm_ldap configuration.
1023  */
1024 static int rlm_ldap_rebind(LDAP *handle, LDAP_CONST char *url, UNUSED ber_tag_t request, UNUSED ber_int_t msgid,
1025                            void *ctx)
1026 {
1027         ldap_rcode_t status;
1028         ldap_handle_t *conn = talloc_get_type_abort(ctx, ldap_handle_t);
1029
1030         int ldap_errno;
1031
1032         conn->referred = true;
1033         conn->rebound = true;   /* not really, but oh well... */
1034         rad_assert(handle == conn->handle);
1035
1036         DEBUG("rlm_ldap (%s): Rebinding to URL %s", conn->inst->xlat_name, url);
1037
1038         status = rlm_ldap_bind(conn->inst, NULL, &conn, conn->inst->admin_dn, conn->inst->password, false);
1039         if (status != LDAP_PROC_SUCCESS) {
1040                 ldap_get_option(handle, LDAP_OPT_ERROR_NUMBER, &ldap_errno);
1041
1042                 return ldap_errno;
1043         }
1044
1045
1046         return LDAP_SUCCESS;
1047 }
1048 #endif
1049
1050 /** Create and return a new connection
1051  *
1052  * Create a new ldap connection and allocate memory for a new rlm_handle_t
1053  *
1054  * @param instance rlm_ldap instance.
1055  * @return A new connection handle or NULL on error.
1056  */
1057 void *mod_conn_create(void *instance)
1058 {
1059         ldap_rcode_t status;
1060
1061         int ldap_errno, ldap_version;
1062         struct timeval tv;
1063
1064         ldap_instance_t *inst = instance;
1065         ldap_handle_t *conn;
1066
1067         /*
1068          *      Allocate memory for the handle.
1069          */
1070         conn = talloc_zero(instance, ldap_handle_t);
1071         if (!conn) return NULL;
1072
1073         conn->inst = inst;
1074         conn->rebound = false;
1075         conn->referred = false;
1076
1077 #ifdef HAVE_LDAP_INITIALIZE
1078         if (inst->is_url) {
1079                 DEBUG("rlm_ldap (%s): Connecting to %s", inst->xlat_name, inst->server);
1080
1081                 ldap_errno = ldap_initialize(&conn->handle, inst->server);
1082                 if (ldap_errno != LDAP_SUCCESS) {
1083                         LDAP_ERR("ldap_initialize failed: %s", ldap_err2string(ldap_errno));
1084                         goto error;
1085                 }
1086         } else
1087 #endif
1088         {
1089                 DEBUG("rlm_ldap (%s): Connecting to %s:%d", inst->xlat_name, inst->server, inst->port);
1090
1091                 conn->handle = ldap_init(inst->server, inst->port);
1092                 if (!conn->handle) {
1093                         LDAP_ERR("ldap_init() failed");
1094                         goto error;
1095                 }
1096         }
1097
1098         /*
1099          *      We now have a connection structure, but no actual TCP connection.
1100          *
1101          *      Set a bunch of LDAP options, using common code.
1102          */
1103 #define do_ldap_option(_option, _name, _value) \
1104         if (ldap_set_option(conn->handle, _option, _value) != LDAP_OPT_SUCCESS) { \
1105                 ldap_get_option(conn->handle, LDAP_OPT_ERROR_NUMBER, &ldap_errno); \
1106                 LDAP_ERR("Could not set %s: %s", _name, ldap_err2string(ldap_errno)); \
1107         }
1108
1109 #define do_ldap_global_option(_option, _name, _value) \
1110         if (ldap_set_option(NULL, _option, _value) != LDAP_OPT_SUCCESS) { \
1111                 ldap_get_option(conn->handle, LDAP_OPT_ERROR_NUMBER, &ldap_errno); \
1112                 LDAP_ERR("Could not set %s: %s", _name, ldap_err2string(ldap_errno)); \
1113         }
1114
1115
1116         if (inst->ldap_debug) {
1117                 do_ldap_global_option(LDAP_OPT_DEBUG_LEVEL, "ldap_debug", &(inst->ldap_debug));
1118         }
1119
1120         /*
1121          *      Leave "chase_referrals" unset to use the OpenLDAP default.
1122          */
1123         if (!inst->chase_referrals_unset) {
1124                 if (inst->chase_referrals) {
1125                         do_ldap_option(LDAP_OPT_REFERRALS, "chase_referrals", LDAP_OPT_ON);
1126
1127                         if (inst->rebind == true) {
1128 #if LDAP_SET_REBIND_PROC_ARGS == 3
1129                                 ldap_set_rebind_proc(conn->handle, rlm_ldap_rebind, conn);
1130 #endif
1131                         }
1132                 } else {
1133                         do_ldap_option(LDAP_OPT_REFERRALS, "chase_referrals", LDAP_OPT_OFF);
1134                 }
1135         }
1136
1137         memset(&tv, 0, sizeof(tv));
1138         tv.tv_sec = inst->net_timeout;
1139
1140         do_ldap_option(LDAP_OPT_NETWORK_TIMEOUT, "net_timeout", &tv);
1141
1142         do_ldap_option(LDAP_OPT_TIMELIMIT, "srv_timelimit", &(inst->srv_timelimit));
1143
1144         ldap_version = LDAP_VERSION3;
1145         do_ldap_option(LDAP_OPT_PROTOCOL_VERSION, "ldap_version", &ldap_version);
1146
1147 #ifdef LDAP_OPT_X_KEEPALIVE_IDLE
1148         do_ldap_option(LDAP_OPT_X_KEEPALIVE_IDLE, "keepalive idle", &(inst->keepalive_idle));
1149 #endif
1150
1151 #ifdef LDAP_OPT_X_KEEPALIVE_PROBES
1152         do_ldap_option(LDAP_OPT_X_KEEPALIVE_PROBES, "keepalive probes", &(inst->keepalive_probes));
1153 #endif
1154
1155 #ifdef LDAP_OPT_X_KEEPALIVE_INTERVAL
1156         do_ldap_option(LDAP_OPT_X_KEEPALIVE_INTERVAL, "keepalive interval", &(inst->keepalive_interval));
1157 #endif
1158
1159 #ifdef HAVE_LDAP_START_TLS
1160         /*
1161          *      Set all of the TLS options
1162          */
1163         if (inst->tls_mode) {
1164                 do_ldap_option(LDAP_OPT_X_TLS, "tls_mode", &(inst->tls_mode));
1165         }
1166
1167 #  define maybe_ldap_option(_option, _name, _value) \
1168         if (_value) do_ldap_option(_option, _name, _value)
1169
1170         maybe_ldap_option(LDAP_OPT_X_TLS_CACERTFILE, "ca_file", inst->tls_ca_file);
1171         maybe_ldap_option(LDAP_OPT_X_TLS_CACERTDIR, "ca_path", inst->tls_ca_path);
1172
1173
1174         /*
1175          *      Set certificate options
1176          */
1177         maybe_ldap_option(LDAP_OPT_X_TLS_CERTFILE, "certificate_file", inst->tls_certificate_file);
1178         maybe_ldap_option(LDAP_OPT_X_TLS_KEYFILE, "private_key_file", inst->tls_private_key_file);
1179         maybe_ldap_option(LDAP_OPT_X_TLS_RANDOM_FILE, "random_file", inst->tls_random_file);
1180
1181 #  ifdef LDAP_OPT_X_TLS_NEVER
1182         if (inst->tls_require_cert_str) {
1183                 do_ldap_option(LDAP_OPT_X_TLS_REQUIRE_CERT, "require_cert", &inst->tls_require_cert);
1184         }
1185 #  endif
1186
1187         /*
1188          *      Counter intuitively the TLS context appears to need to be initialised
1189          *      after all the TLS options are set on the handle.
1190          */
1191 #  ifdef LDAP_OPT_X_TLS_NEWCTX
1192         {
1193                 /* Always use the new TLS configuration context */
1194                 int is_server = 0;
1195                 do_ldap_option(LDAP_OPT_X_TLS_NEWCTX, "new TLS context", &is_server);
1196
1197         }
1198 #  endif
1199
1200         /*
1201          *      And finally start the TLS code.
1202          */
1203         if (inst->start_tls) {
1204                 if (inst->port == 636) {
1205                         WDEBUG("Told to Start TLS on LDAPS port this will probably fail, please correct the "
1206                                "configuration");
1207                 }
1208
1209                 if (ldap_start_tls_s(conn->handle, NULL, NULL) != LDAP_SUCCESS) {
1210                         ldap_get_option(conn->handle, LDAP_OPT_ERROR_NUMBER, &ldap_errno);
1211
1212                         LDAP_ERR("Could not start TLS: %s", ldap_err2string(ldap_errno));
1213                         goto error;
1214                 }
1215         }
1216 #endif /* HAVE_LDAP_START_TLS */
1217
1218         status = rlm_ldap_bind(inst, NULL, &conn, inst->admin_dn, inst->password, false);
1219         if (status != LDAP_PROC_SUCCESS) {
1220                 goto error;
1221         }
1222
1223         return conn;
1224
1225         error:
1226         if (conn->handle) ldap_unbind_s(conn->handle);
1227         talloc_free(conn);
1228
1229         return NULL;
1230 }
1231
1232
1233 /** Close and delete a connection
1234  *
1235  * Unbinds the LDAP connection, informing the server and freeing any memory, then releases the memory used by the
1236  * connection handle.
1237  *
1238  * @param instance rlm_ldap instance.
1239  * @param handle to destroy.
1240  * @return always indicates success.
1241  */
1242 int mod_conn_delete(UNUSED void *instance, void *handle)
1243 {
1244         ldap_handle_t *conn = handle;
1245
1246         ldap_unbind_s(conn->handle);
1247         talloc_free(conn);
1248
1249         return 0;
1250 }
1251
1252
1253 /** Gets an LDAP socket from the connection pool
1254  *
1255  * Retrieve a socket from the connection pool, or NULL on error (of if no sockets are available).
1256  *
1257  * @param inst rlm_ldap configuration.
1258  * @param request Current request (may be NULL).
1259  */
1260 ldap_handle_t *rlm_ldap_get_socket(ldap_instance_t const *inst, REQUEST *request)
1261 {
1262         ldap_handle_t *conn;
1263
1264         conn = fr_connection_get(inst->pool);
1265         if (!conn) {
1266                 REDEBUG("All ldap connections are in use");
1267
1268                 return NULL;
1269         }
1270
1271         return conn;
1272 }
1273
1274
1275 /** Frees an LDAP socket back to the connection pool
1276  *
1277  * If the socket was rebound chasing a referral onto another server then we destroy it.
1278  * If the socket was rebound to another user on the same server, we let the next caller rebind it.
1279  *
1280  * @param inst rlm_ldap configuration.
1281  * @param conn to release.
1282  */
1283 void rlm_ldap_release_socket(ldap_instance_t const *inst, ldap_handle_t *conn)
1284 {
1285         /*
1286          *      Could have already been free'd due to a previous error.
1287          */
1288         if (!conn) return;
1289
1290         /*
1291          *      We chased a referral to another server.
1292          *
1293          *      This connection is no longer part of the pool which is connected to and bound to the configured server.
1294          *      Close it.
1295          *
1296          *      Note that we do NOT close it if it was bound to another user.  Instead, we let the next caller do the
1297          *      rebind.
1298          */
1299         if (conn->referred) {
1300                 fr_connection_del(inst->pool, conn);
1301                 return;
1302         }
1303
1304         fr_connection_release(inst->pool, conn);
1305         return;
1306 }