]> git.sur5r.net Git - openldap/blob - servers/slapd/sasl.c
ITS#4088 force cursors to use same locker
[openldap] / servers / slapd / sasl.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2005 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15
16 #include "portable.h"
17
18 #include <stdio.h>
19 #ifdef HAVE_LIMITS_H
20 #include <limits.h>
21 #endif
22
23 #include <ac/stdlib.h>
24 #include <ac/string.h>
25
26 #include <lber.h>
27 #include <ldap_log.h>
28
29 #include "slap.h"
30
31 #ifdef HAVE_CYRUS_SASL
32 # ifdef HAVE_SASL_SASL_H
33 #  include <sasl/sasl.h>
34 # else
35 #  include <sasl.h>
36 # endif
37
38 # if SASL_VERSION_MAJOR >= 2
39 # ifdef HAVE_SASL_SASL_H
40 #  include <sasl/saslplug.h>
41 # else
42 #  include <saslplug.h>
43 # endif
44 #  define       SASL_CONST const
45 # else
46 #  define       SASL_CONST
47 # endif
48
49 #define SASL_VERSION_FULL       ((SASL_VERSION_MAJOR << 16) |\
50         (SASL_VERSION_MINOR << 8) | SASL_VERSION_STEP)
51
52 static sasl_security_properties_t sasl_secprops;
53 #elif defined( SLAP_BUILTIN_SASL )
54 /*
55  * built-in SASL implementation
56  *      only supports EXTERNAL
57  */
58 typedef struct sasl_ctx {
59         slap_ssf_t sc_external_ssf;
60         struct berval sc_external_id;
61 } SASL_CTX;
62
63 #endif
64
65 #include <lutil.h>
66
67 static struct berval ext_bv = BER_BVC( "EXTERNAL" );
68
69 #ifdef HAVE_CYRUS_SASL
70
71 int
72 slap_sasl_log(
73         void *context,
74         int priority,
75         const char *message) 
76 {
77         Connection *conn = context;
78         int level;
79         const char * label;
80
81         if ( message == NULL ) {
82                 return SASL_BADPARAM;
83         }
84
85         switch (priority) {
86 #if SASL_VERSION_MAJOR >= 2
87         case SASL_LOG_NONE:
88                 level = LDAP_DEBUG_NONE;
89                 label = "None";
90                 break;
91         case SASL_LOG_ERR:
92                 level = LDAP_DEBUG_ANY;
93                 label = "Error";
94                 break;
95         case SASL_LOG_FAIL:
96                 level = LDAP_DEBUG_ANY;
97                 label = "Failure";
98                 break;
99         case SASL_LOG_WARN:
100                 level = LDAP_DEBUG_TRACE;
101                 label = "Warning";
102                 break;
103         case SASL_LOG_NOTE:
104                 level = LDAP_DEBUG_TRACE;
105                 label = "Notice";
106                 break;
107         case SASL_LOG_DEBUG:
108                 level = LDAP_DEBUG_TRACE;
109                 label = "Debug";
110                 break;
111         case SASL_LOG_TRACE:
112                 level = LDAP_DEBUG_TRACE;
113                 label = "Trace";
114                 break;
115         case SASL_LOG_PASS:
116                 level = LDAP_DEBUG_TRACE;
117                 label = "Password Trace";
118                 break;
119 #else
120         case SASL_LOG_ERR:
121                 level = LDAP_DEBUG_ANY;
122                 label = "Error";
123                 break;
124         case SASL_LOG_WARNING:
125                 level = LDAP_DEBUG_TRACE;
126                 label = "Warning";
127                 break;
128         case SASL_LOG_INFO:
129                 level = LDAP_DEBUG_TRACE;
130                 label = "Info";
131                 break;
132 #endif
133         default:
134                 return SASL_BADPARAM;
135         }
136
137         Debug( level, "SASL [conn=%ld] %s: %s\n",
138                 conn ? conn->c_connid: -1,
139                 label, message );
140
141
142         return SASL_OK;
143 }
144
145
146 #if SASL_VERSION_MAJOR >= 2
147 static const char *slap_propnames[] = {
148         "*slapConn", "*slapAuthcDN", "*slapAuthzDN", NULL };
149
150 static Filter generic_filter = { LDAP_FILTER_PRESENT, { 0 }, NULL };
151 static struct berval generic_filterstr = BER_BVC("(objectclass=*)");
152
153 #define PROP_CONN       0
154 #define PROP_AUTHC      1
155 #define PROP_AUTHZ      2
156 #define PROP_COUNT      3       /* Number of properties we used */
157
158 typedef struct lookup_info {
159         int flags;
160         const struct propval *list;
161         sasl_server_params_t *sparams;
162 } lookup_info;
163
164 static slap_response sasl_ap_lookup;
165
166 static struct berval sc_cleartext = BER_BVC("{CLEARTEXT}");
167
168 static int
169 sasl_ap_lookup( Operation *op, SlapReply *rs )
170 {
171         BerVarray bv;
172         AttributeDescription *ad;
173         Attribute *a;
174         const char *text;
175         int rc, i;
176         slap_callback *tmp = op->o_callback;
177         lookup_info *sl = tmp->sc_private;
178
179         if (rs->sr_type != REP_SEARCH) return 0;
180
181         for( i = 0; sl->list[i].name; i++ ) {
182                 const char *name = sl->list[i].name;
183
184                 if ( name[0] == '*' ) {
185                         if ( sl->flags & SASL_AUXPROP_AUTHZID ) continue;
186                         /* Skip our private properties */
187                         if ( !strcmp( name, slap_propnames[0] )) {
188                                 i += PROP_COUNT-1;
189                                 continue;
190                         }
191                         name++;
192                 } else if ( !(sl->flags & SASL_AUXPROP_AUTHZID ) )
193                         continue;
194
195                 if ( sl->list[i].values ) {
196                         if ( !(sl->flags & SASL_AUXPROP_OVERRIDE) ) continue;
197                 }
198                 ad = NULL;
199                 rc = slap_str2ad( name, &ad, &text );
200                 if ( rc != LDAP_SUCCESS ) {
201                         Debug( LDAP_DEBUG_TRACE,
202                                 "slap_ap_lookup: str2ad(%s): %s\n", name, text, 0 );
203                         continue;
204                 }
205
206                 /* If it's the rootdn and a rootpw was present, we already set
207                  * it so don't override it here.
208                  */
209                 if ( ad == slap_schema.si_ad_userPassword && sl->list[i].values && 
210                         be_isroot_dn( op->o_bd, &op->o_req_ndn ))
211                         continue;
212
213                 a = attr_find( rs->sr_entry->e_attrs, ad );
214                 if ( !a ) continue;
215                 if ( ! access_allowed( op, rs->sr_entry, ad, NULL, ACL_AUTH, NULL ) ) {
216                         continue;
217                 }
218                 if ( sl->list[i].values && ( sl->flags & SASL_AUXPROP_OVERRIDE ) ) {
219                         sl->sparams->utils->prop_erase( sl->sparams->propctx,
220                         sl->list[i].name );
221                 }
222                 for ( bv = a->a_vals; bv->bv_val; bv++ ) {
223                         /* ITS#3846 don't give hashed passwords to SASL */
224                         if ( ad == slap_schema.si_ad_userPassword &&
225                                 bv->bv_val[0] == '{' ) {
226                                 rc = lutil_passwd_scheme( bv->bv_val );
227                                 if ( rc ) {
228                                         /* If it's not a recognized scheme, just assume it's
229                                          * a cleartext password that happened to include brackets.
230                                          *
231                                          * If it's a recognized scheme, skip this value, unless the
232                                          * scheme is {CLEARTEXT}. In that case, skip over the
233                                          * scheme name and use the remainder. If there is nothing
234                                          * past the scheme name, skip this value.
235                                          */
236 #ifdef SLAPD_CLEARTEXT
237                                         if ( !strncasecmp( bv->bv_val, sc_cleartext.bv_val,
238                                                 sc_cleartext.bv_len )) {
239                                                 struct berval cbv;
240                                                 cbv.bv_len = bv->bv_len - sc_cleartext.bv_len;
241                                                 if ( cbv.bv_len ) {
242                                                         cbv.bv_val = bv->bv_val + sc_cleartext.bv_len;
243                                                         sl->sparams->utils->prop_set( sl->sparams->propctx,
244                                                                 sl->list[i].name, cbv.bv_val, cbv.bv_len );
245                                                 }
246                                         }
247 #endif
248                                         continue;
249                                 }
250                         }
251                         sl->sparams->utils->prop_set( sl->sparams->propctx,
252                                 sl->list[i].name, bv->bv_val, bv->bv_len );
253                 }
254         }
255         return LDAP_SUCCESS;
256 }
257
258 static void
259 slap_auxprop_lookup(
260         void *glob_context,
261         sasl_server_params_t *sparams,
262         unsigned flags,
263         const char *user,
264         unsigned ulen)
265 {
266         Operation op = {0};
267         int i, doit = 0;
268         Connection *conn = NULL;
269         lookup_info sl;
270
271         sl.list = sparams->utils->prop_get( sparams->propctx );
272         sl.sparams = sparams;
273         sl.flags = flags;
274
275         /* Find our DN and conn first */
276         for( i = 0; sl.list[i].name; i++ ) {
277                 if ( sl.list[i].name[0] == '*' ) {
278                         if ( !strcmp( sl.list[i].name, slap_propnames[PROP_CONN] ) ) {
279                                 if ( sl.list[i].values && sl.list[i].values[0] )
280                                         AC_MEMCPY( &conn, sl.list[i].values[0], sizeof( conn ) );
281                                 continue;
282                         }
283                         if ( (flags & SASL_AUXPROP_AUTHZID) &&
284                                 !strcmp( sl.list[i].name, slap_propnames[PROP_AUTHZ] ) ) {
285
286                                 if ( sl.list[i].values && sl.list[i].values[0] )
287                                         AC_MEMCPY( &op.o_req_ndn, sl.list[i].values[0], sizeof( struct berval ) );
288                                 break;
289                         }
290                         if ( !strcmp( sl.list[i].name, slap_propnames[PROP_AUTHC] ) ) {
291                                 if ( sl.list[i].values && sl.list[i].values[0] ) {
292                                         AC_MEMCPY( &op.o_req_ndn, sl.list[i].values[0], sizeof( struct berval ) );
293                                         if ( !(flags & SASL_AUXPROP_AUTHZID) )
294                                                 break;
295                                 }
296                         }
297                 }
298         }
299
300         /* Now see what else needs to be fetched */
301         for( i = 0; sl.list[i].name; i++ ) {
302                 const char *name = sl.list[i].name;
303
304                 if ( name[0] == '*' ) {
305                         if ( flags & SASL_AUXPROP_AUTHZID ) continue;
306                         /* Skip our private properties */
307                         if ( !strcmp( name, slap_propnames[0] )) {
308                                 i += PROP_COUNT-1;
309                                 continue;
310                         }
311                         name++;
312                 } else if ( !(flags & SASL_AUXPROP_AUTHZID ) )
313                         continue;
314
315                 if ( sl.list[i].values ) {
316                         if ( !(flags & SASL_AUXPROP_OVERRIDE) ) continue;
317                 }
318                 doit = 1;
319                 break;
320         }
321
322         if (doit) {
323                 slap_callback cb = { NULL, sasl_ap_lookup, NULL, NULL };
324
325                 cb.sc_private = &sl;
326
327                 op.o_bd = select_backend( &op.o_req_ndn, 0, 1 );
328
329                 if ( op.o_bd ) {
330                         /* For rootdn, see if we can use the rootpw */
331                         if ( be_isroot_dn( op.o_bd, &op.o_req_ndn ) &&
332                                 !BER_BVISEMPTY( &op.o_bd->be_rootpw )) {
333                                 struct berval cbv = BER_BVNULL;
334
335                                 /* If there's a recognized scheme, see if it's CLEARTEXT */
336                                 if ( lutil_passwd_scheme( op.o_bd->be_rootpw.bv_val )) {
337                                         if ( !strncasecmp( op.o_bd->be_rootpw.bv_val,
338                                                 sc_cleartext.bv_val, sc_cleartext.bv_len )) {
339
340                                                 /* If it's CLEARTEXT, skip past scheme spec */
341                                                 cbv.bv_len = op.o_bd->be_rootpw.bv_len -
342                                                         sc_cleartext.bv_len;
343                                                 if ( cbv.bv_len ) {
344                                                         cbv.bv_val = op.o_bd->be_rootpw.bv_val +
345                                                                 sc_cleartext.bv_len;
346                                                 }
347                                         }
348                                 /* No scheme, use the whole value */
349                                 } else {
350                                         cbv = op.o_bd->be_rootpw;
351                                 }
352                                 if ( !BER_BVISEMPTY( &cbv )) {
353                                         for( i = 0; sl.list[i].name; i++ ) {
354                                                 const char *name = sl.list[i].name;
355
356                                                 if ( name[0] == '*' ) {
357                                                         if ( flags & SASL_AUXPROP_AUTHZID ) continue;
358                                                                 name++;
359                                                 } else if ( !(flags & SASL_AUXPROP_AUTHZID ) )
360                                                         continue;
361
362                                                 if ( !strcasecmp(name,"userPassword") ) {
363                                                         sl.sparams->utils->prop_set( sl.sparams->propctx,
364                                                                 sl.list[i].name, cbv.bv_val, cbv.bv_len );
365                                                         break;
366                                                 }
367                                         }
368                                 }
369                         }
370
371                         if ( op.o_bd->be_search ) {
372                                 SlapReply rs = {REP_RESULT};
373                                 op.o_hdr = conn->c_sasl_bindop->o_hdr;
374                                 op.o_tag = LDAP_REQ_SEARCH;
375                                 op.o_ndn = conn->c_ndn;
376                                 op.o_callback = &cb;
377                                 slap_op_time( &op.o_time, &op.o_tincr );
378                                 op.o_do_not_cache = 1;
379                                 op.o_is_auth_check = 1;
380                                 op.o_req_dn = op.o_req_ndn;
381                                 op.ors_scope = LDAP_SCOPE_BASE;
382                                 op.ors_deref = LDAP_DEREF_NEVER;
383                                 op.ors_tlimit = SLAP_NO_LIMIT;
384                                 op.ors_slimit = 1;
385                                 op.ors_filter = &generic_filter;
386                                 op.ors_filterstr = generic_filterstr;
387                                 /* FIXME: we want all attributes, right? */
388                                 op.ors_attrs = NULL;
389
390                                 op.o_bd->be_search( &op, &rs );
391                         }
392                 }
393         }
394 }
395
396 #if SASL_VERSION_FULL >= 0x020110
397 static int
398 slap_auxprop_store(
399         void *glob_context,
400         sasl_server_params_t *sparams,
401         struct propctx *prctx,
402         const char *user,
403         unsigned ulen)
404 {
405         Operation op = {0};
406         SlapReply rs = {REP_RESULT};
407         int rc, i, j;
408         Connection *conn = NULL;
409         const struct propval *pr;
410         Modifications *modlist = NULL, **modtail = &modlist, *mod;
411         slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
412         char textbuf[SLAP_TEXT_BUFLEN];
413         const char *text;
414         size_t textlen = sizeof(textbuf);
415
416         /* just checking if we are enabled */
417         if (!prctx) return SASL_OK;
418
419         if (!sparams || !user) return SASL_BADPARAM;
420
421         pr = sparams->utils->prop_get( sparams->propctx );
422
423         /* Find our DN and conn first */
424         for( i = 0; pr[i].name; i++ ) {
425                 if ( pr[i].name[0] == '*' ) {
426                         if ( !strcmp( pr[i].name, slap_propnames[PROP_CONN] ) ) {
427                                 if ( pr[i].values && pr[i].values[0] )
428                                         AC_MEMCPY( &conn, pr[i].values[0], sizeof( conn ) );
429                                 continue;
430                         }
431                         if ( !strcmp( pr[i].name, slap_propnames[PROP_AUTHC] ) ) {
432                                 if ( pr[i].values && pr[i].values[0] ) {
433                                         AC_MEMCPY( &op.o_req_ndn, pr[i].values[0], sizeof( struct berval ) );
434                                 }
435                         }
436                 }
437         }
438         if (!conn || !op.o_req_ndn.bv_val) return SASL_BADPARAM;
439
440         op.o_bd = select_backend( &op.o_req_ndn, 0, 1 );
441
442         if ( !op.o_bd || !op.o_bd->be_modify ) return SASL_FAIL;
443                 
444         pr = sparams->utils->prop_get( prctx );
445         if (!pr) return SASL_BADPARAM;
446
447         for (i=0; pr[i].name; i++);
448         if (!i) return SASL_BADPARAM;
449
450         for (i=0; pr[i].name; i++) {
451                 mod = (Modifications *)ch_malloc( sizeof(Modifications) );
452                 mod->sml_op = LDAP_MOD_REPLACE;
453                 mod->sml_flags = 0;
454                 ber_str2bv( pr[i].name, 0, 0, &mod->sml_type );
455                 mod->sml_values = (struct berval *)ch_malloc( (pr[i].nvalues + 1) *
456                         sizeof(struct berval));
457                 for (j=0; j<pr[i].nvalues; j++) {
458                         ber_str2bv( pr[i].values[j], 0, 1, &mod->sml_values[j]);
459                 }
460                 BER_BVZERO( &mod->sml_values[j] );
461                 mod->sml_nvalues = NULL;
462                 mod->sml_desc = NULL;
463                 *modtail = mod;
464                 modtail = &mod->sml_next;
465         }
466         *modtail = NULL;
467
468         rc = slap_mods_check( modlist, &text, textbuf, textlen, NULL );
469
470         if ( rc == LDAP_SUCCESS ) {
471                 rc = slap_mods_no_user_mod_check( &op, modlist,
472                         &text, textbuf, textlen );
473
474                 if ( rc == LDAP_SUCCESS ) {
475                         op.o_hdr = conn->c_sasl_bindop->o_hdr;
476                         op.o_tag = LDAP_REQ_MODIFY;
477                         op.o_ndn = op.o_req_ndn;
478                         op.o_callback = &cb;
479                         slap_op_time( &op.o_time, &op.o_tincr );
480                         op.o_do_not_cache = 1;
481                         op.o_is_auth_check = 1;
482                         op.o_req_dn = op.o_req_ndn;
483                         op.orm_modlist = modlist;
484
485                         rc = op.o_bd->be_modify( &op, &rs );
486                 }
487         }
488         slap_mods_free( modlist, 1 );
489         return rc != LDAP_SUCCESS ? SASL_FAIL : SASL_OK;
490 }
491 #endif /* SASL_VERSION_FULL >= 2.1.16 */
492
493 static sasl_auxprop_plug_t slap_auxprop_plugin = {
494         0,      /* Features */
495         0,      /* spare */
496         NULL,   /* glob_context */
497         NULL,   /* auxprop_free */
498         slap_auxprop_lookup,
499         "slapd",        /* name */
500 #if SASL_VERSION_FULL >= 0x020110
501         slap_auxprop_store      /* the declaration of this member changed
502                                  * in cyrus SASL from 2.1.15 to 2.1.16 */
503 #else
504         NULL
505 #endif
506 };
507
508 static int
509 slap_auxprop_init(
510         const sasl_utils_t *utils,
511         int max_version,
512         int *out_version,
513         sasl_auxprop_plug_t **plug,
514         const char *plugname)
515 {
516         if ( !out_version || !plug ) return SASL_BADPARAM;
517
518         if ( max_version < SASL_AUXPROP_PLUG_VERSION ) return SASL_BADVERS;
519
520         *out_version = SASL_AUXPROP_PLUG_VERSION;
521         *plug = &slap_auxprop_plugin;
522         return SASL_OK;
523 }
524
525 /* Convert a SASL authcid or authzid into a DN. Store the DN in an
526  * auxiliary property, so that we can refer to it in sasl_authorize
527  * without interfering with anything else. Also, the SASL username
528  * buffer is constrained to 256 characters, and our DNs could be
529  * much longer (SLAP_LDAPDN_MAXLEN, currently set to 8192)
530  */
531 static int
532 slap_sasl_canonicalize(
533         sasl_conn_t *sconn,
534         void *context,
535         const char *in,
536         unsigned inlen,
537         unsigned flags,
538         const char *user_realm,
539         char *out,
540         unsigned out_max,
541         unsigned *out_len)
542 {
543         Connection *conn = (Connection *)context;
544         struct propctx *props = sasl_auxprop_getctx( sconn );
545         struct propval auxvals[3];
546         struct berval dn;
547         int rc, which;
548         const char *names[2];
549         struct berval   bvin;
550
551         *out_len = 0;
552
553         Debug( LDAP_DEBUG_ARGS, "SASL Canonicalize [conn=%ld]: %s=\"%s\"\n",
554                 conn ? conn->c_connid : -1,
555                 (flags & SASL_CU_AUTHID) ? "authcid" : "authzid",
556                 in ? in : "<empty>");
557
558         /* If name is too big, just truncate. We don't care, we're
559          * using DNs, not the usernames.
560          */
561         if ( inlen > out_max )
562                 inlen = out_max-1;
563
564         /* This is a Simple Bind using SPASSWD. That means the in-directory
565          * userPassword of the Binding user already points at SASL, so it
566          * cannot be used to actually satisfy a password comparison. Just
567          * ignore it, some other mech will process it.
568          */
569         if ( !conn->c_sasl_bindop ||
570                 conn->c_sasl_bindop->orb_method != LDAP_AUTH_SASL ) goto done;
571
572         /* See if we need to add request, can only do it once */
573         prop_getnames( props, slap_propnames, auxvals );
574         if ( !auxvals[0].name )
575                 prop_request( props, slap_propnames );
576
577         if ( flags & SASL_CU_AUTHID )
578                 which = PROP_AUTHC;
579         else
580                 which = PROP_AUTHZ;
581
582         /* Need to store the Connection for auxprop_lookup */
583         if ( !auxvals[PROP_CONN].values ) {
584                 names[0] = slap_propnames[PROP_CONN];
585                 names[1] = NULL;
586                 prop_set( props, names[0], (char *)&conn, sizeof( conn ) );
587         }
588                 
589         /* Already been here? */
590         if ( auxvals[which].values )
591                 goto done;
592
593         /* Normally we require an authzID to have a u: or dn: prefix.
594          * However, SASL frequently gives us an authzID that is just
595          * an exact copy of the authcID, without a prefix. We need to
596          * detect and allow this condition. If SASL calls canonicalize
597          * with SASL_CU_AUTHID|SASL_CU_AUTHZID this is a no-brainer.
598          * But if it's broken into two calls, we need to remember the
599          * authcID so that we can compare the authzID later. We store
600          * the authcID temporarily in conn->c_sasl_dn. We necessarily
601          * finish Canonicalizing before Authorizing, so there is no
602          * conflict with slap_sasl_authorize's use of this temp var.
603          *
604          * The SASL EXTERNAL mech is backwards from all the other mechs,
605          * it does authzID before the authcID. If we see that authzID
606          * has already been done, don't do anything special with authcID.
607          */
608         if ( flags == SASL_CU_AUTHID && !auxvals[PROP_AUTHZ].values ) {
609                 conn->c_sasl_dn.bv_val = (char *) in;
610         } else if ( flags == SASL_CU_AUTHZID && conn->c_sasl_dn.bv_val ) {
611                 rc = strcmp( in, conn->c_sasl_dn.bv_val );
612                 conn->c_sasl_dn.bv_val = NULL;
613                 /* They were equal, no work needed */
614                 if ( !rc ) goto done;
615         }
616
617         bvin.bv_val = (char *)in;
618         bvin.bv_len = inlen;
619         rc = slap_sasl_getdn( conn, NULL, &bvin, (char *)user_realm, &dn,
620                 (flags & SASL_CU_AUTHID) ? SLAP_GETDN_AUTHCID : SLAP_GETDN_AUTHZID );
621         if ( rc != LDAP_SUCCESS ) {
622                 sasl_seterror( sconn, 0, ldap_err2string( rc ) );
623                 return SASL_NOAUTHZ;
624         }               
625
626         names[0] = slap_propnames[which];
627         names[1] = NULL;
628
629         prop_set( props, names[0], (char *)&dn, sizeof( dn ) );
630                 
631         Debug( LDAP_DEBUG_ARGS, "SASL Canonicalize [conn=%ld]: %s=\"%s\"\n",
632                 conn ? conn->c_connid : -1, names[0]+1,
633                 dn.bv_val ? dn.bv_val : "<EMPTY>" );
634
635 done:
636         AC_MEMCPY( out, in, inlen );
637         out[inlen] = '\0';
638
639         *out_len = inlen;
640
641         return SASL_OK;
642 }
643
644 static int
645 slap_sasl_authorize(
646         sasl_conn_t *sconn,
647         void *context,
648         char *requested_user,
649         unsigned rlen,
650         char *auth_identity,
651         unsigned alen,
652         const char *def_realm,
653         unsigned urlen,
654         struct propctx *props)
655 {
656         Connection *conn = (Connection *)context;
657         struct propval auxvals[3];
658         struct berval authcDN, authzDN = BER_BVNULL;
659         int rc;
660
661         /* Simple Binds don't support proxy authorization, ignore it */
662         if ( !conn->c_sasl_bindop ||
663                 conn->c_sasl_bindop->orb_method != LDAP_AUTH_SASL ) return SASL_OK;
664
665         Debug( LDAP_DEBUG_ARGS, "SASL proxy authorize [conn=%ld]: "
666                 "authcid=\"%s\" authzid=\"%s\"\n",
667                 conn ? conn->c_connid : -1, auth_identity, requested_user );
668         if ( conn->c_sasl_dn.bv_val ) {
669                 ch_free( conn->c_sasl_dn.bv_val );
670                 BER_BVZERO( &conn->c_sasl_dn );
671         }
672
673         /* Skip PROP_CONN */
674         prop_getnames( props, slap_propnames+1, auxvals );
675         
676         /* Should not happen */
677         if ( !auxvals[0].values ) {
678                 sasl_seterror( sconn, 0, "invalid authcid" );
679                 return SASL_NOAUTHZ;
680         }
681
682         AC_MEMCPY( &authcDN, auxvals[0].values[0], sizeof(authcDN) );
683         conn->c_sasl_dn = authcDN;
684
685         /* Nothing to do if no authzID was given */
686         if ( !auxvals[1].name || !auxvals[1].values ) {
687                 goto ok;
688         }
689         
690         AC_MEMCPY( &authzDN, auxvals[1].values[0], sizeof(authzDN) );
691
692         rc = slap_sasl_authorized( conn->c_sasl_bindop, &authcDN, &authzDN );
693         if ( rc != LDAP_SUCCESS ) {
694                 Debug( LDAP_DEBUG_TRACE, "SASL Proxy Authorize [conn=%ld]: "
695                         "proxy authorization disallowed (%d)\n",
696                         (long) (conn ? conn->c_connid : -1), rc, 0 );
697
698                 sasl_seterror( sconn, 0, "not authorized" );
699                 ch_free( authzDN.bv_val );
700                 return SASL_NOAUTHZ;
701         }
702
703         /* FIXME: we need yet another dup because slap_sasl_getdn()
704          * is using the bind operation slab */
705         if ( conn->c_sasl_bindop ) {
706                 ber_dupbv( &conn->c_sasl_authz_dn, &authzDN );
707                 slap_sl_free( authzDN.bv_val,
708                                 conn->c_sasl_bindop->o_tmpmemctx );
709
710         } else {
711                 conn->c_sasl_authz_dn = authzDN;
712         }
713
714 ok:
715         if (conn->c_sasl_bindop) {
716                 Statslog( LDAP_DEBUG_STATS,
717                         "conn=%lu op=%lu BIND authcid=\"%s\" authzid=\"%s\"\n",
718                         conn->c_connid, conn->c_sasl_bindop->o_opid, 
719                         auth_identity, requested_user, 0);
720         }
721
722         Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
723                 " proxy authorization allowed authzDN=\"%s\"\n",
724                 (long) (conn ? conn->c_connid : -1), 
725                 authzDN.bv_val ? authzDN.bv_val : "", 0 );
726         return SASL_OK;
727
728 #else
729 static int
730 slap_sasl_authorize(
731         void *context,
732         char *authcid,
733         char *authzid,
734         const char **user,
735         const char **errstr)
736 {
737         struct berval authcDN, authzDN = BER_BVNULL;
738         int rc;
739         Connection *conn = context;
740         char *realm;
741         struct berval   bvauthcid, bvauthzid;
742
743         *user = NULL;
744         if ( conn->c_sasl_dn.bv_val ) {
745                 ch_free( conn->c_sasl_dn.bv_val );
746                 BER_BVZERO( &conn->c_sasl_dn );
747         }
748
749         Debug( LDAP_DEBUG_ARGS, "SASL Authorize [conn=%ld]: "
750                 "authcid=\"%s\" authzid=\"%s\"\n",
751                 (long) (conn ? conn->c_connid : -1),
752                 authcid ? authcid : "<empty>",
753                 authzid ? authzid : "<empty>" );
754
755         /* Figure out how much data we have for the dn */
756         rc = sasl_getprop( conn->c_sasl_authctx, SASL_REALM, (void **)&realm );
757         if( rc != SASL_OK && rc != SASL_NOTDONE ) {
758                 Debug(LDAP_DEBUG_TRACE,
759                         "authorize: getprop(REALM) failed!\n", 0,0,0);
760                 *errstr = "Could not extract realm";
761                 return SASL_NOAUTHZ;
762         }
763
764         /* Convert the identities to DN's. If no authzid was given, client will
765            be bound as the DN matching their username */
766         bvauthcid.bv_val = authcid;
767         bvauthcid.bv_len = authcid ? strlen( authcid ) : 0;
768         rc = slap_sasl_getdn( conn, NULL, &bvauthcid, realm,
769                 &authcDN, SLAP_GETDN_AUTHCID );
770         if( rc != LDAP_SUCCESS ) {
771                 *errstr = ldap_err2string( rc );
772                 return SASL_NOAUTHZ;
773         }
774         conn->c_sasl_dn = authcDN;
775         if( ( authzid == NULL ) || !strcmp( authcid, authzid ) ) {
776                 Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
777                  "Using authcDN=%s\n", (long) (conn ? conn->c_connid : -1), authcDN.bv_val,0 );
778
779                 goto ok;
780         }
781
782         bvauthzid.bv_val = authzid;
783         bvauthzid.bv_len = authzid ? strlen( authzid ) : 0;
784         rc = slap_sasl_getdn( conn, NULL, &bvauthzid, realm,
785                 &authzDN, SLAP_GETDN_AUTHZID );
786         if( rc != LDAP_SUCCESS ) {
787                 *errstr = ldap_err2string( rc );
788                 return SASL_NOAUTHZ;
789         }
790
791         rc = slap_sasl_authorized( conn->c_sasl_bindop, &authcDN, &authzDN );
792         if( rc ) {
793                 Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
794                         "proxy authorization disallowed (%d)\n",
795                         (long) (conn ? conn->c_connid : -1), rc, 0 );
796
797                 *errstr = "not authorized";
798                 ch_free( authzDN.bv_val );
799                 return SASL_NOAUTHZ;
800         }
801
802         /* FIXME: we need yet another dup because slap_sasl_getdn()
803          * is using the bind operation slab */
804         if ( conn->c_sasl_bindop ) {
805                 ber_dupbv( &conn->c_sasl_authz_dn, &authzDN );
806                 slap_sl_free( authzDN.bv_val,
807                                 conn->c_sasl_bindop->o_tmpmemctx );
808
809         } else {
810                 conn->c_sasl_authz_dn = authzDN;
811         }
812
813 ok:
814         Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
815                 " authorization allowed authzDN=\"%s\"\n",
816                 (long) (conn ? conn->c_connid : -1),
817                 authzDN.bv_val ? authzDN.bv_val : "", 0 );
818
819         if ( conn->c_sasl_bindop ) {
820                 Statslog( LDAP_DEBUG_STATS,
821                         "conn=%lu op=%lu BIND authcid=\"%s\" authzid=\"%s\"\n",
822                         conn->c_connid, conn->c_sasl_bindop->o_opid, 
823                         authcid, authzid ? authzid : "", 0);
824         }
825
826         *errstr = NULL;
827         return SASL_OK;
828 }
829 #endif /* SASL_VERSION_MAJOR >= 2 */
830
831 static int
832 slap_sasl_err2ldap( int saslerr )
833 {
834         int rc;
835
836         switch (saslerr) {
837                 case SASL_OK:
838                         rc = LDAP_SUCCESS;
839                         break;
840                 case SASL_CONTINUE:
841                         rc = LDAP_SASL_BIND_IN_PROGRESS;
842                         break;
843                 case SASL_FAIL:
844                         rc = LDAP_OTHER;
845                         break;
846                 case SASL_NOMEM:
847                         rc = LDAP_OTHER;
848                         break;
849                 case SASL_NOMECH:
850                         rc = LDAP_AUTH_METHOD_NOT_SUPPORTED;
851                         break;
852                 case SASL_BADAUTH:
853                         rc = LDAP_INVALID_CREDENTIALS;
854                         break;
855                 case SASL_NOAUTHZ:
856                         rc = LDAP_INSUFFICIENT_ACCESS;
857                         break;
858                 case SASL_TOOWEAK:
859                 case SASL_ENCRYPT:
860                         rc = LDAP_INAPPROPRIATE_AUTH;
861                         break;
862                 default:
863                         rc = LDAP_OTHER;
864                         break;
865         }
866
867         return rc;
868 }
869
870 #ifdef SLAPD_SPASSWD
871
872 static struct berval sasl_pwscheme = BER_BVC("{SASL}");
873
874 static int chk_sasl(
875         const struct berval *sc,
876         const struct berval * passwd,
877         const struct berval * cred,
878         const char **text )
879 {
880         unsigned int i;
881         int rtn;
882         void *ctx, *sconn = NULL;
883
884         for( i=0; i<cred->bv_len; i++) {
885                 if(cred->bv_val[i] == '\0') {
886                         return LUTIL_PASSWD_ERR;        /* NUL character in password */
887                 }
888         }
889
890         if( cred->bv_val[i] != '\0' ) {
891                 return LUTIL_PASSWD_ERR;        /* cred must behave like a string */
892         }
893
894         for( i=0; i<passwd->bv_len; i++) {
895                 if(passwd->bv_val[i] == '\0') {
896                         return LUTIL_PASSWD_ERR;        /* NUL character in password */
897                 }
898         }
899
900         if( passwd->bv_val[i] != '\0' ) {
901                 return LUTIL_PASSWD_ERR;        /* passwd must behave like a string */
902         }
903
904         rtn = LUTIL_PASSWD_ERR;
905
906         ctx = ldap_pvt_thread_pool_context();
907         ldap_pvt_thread_pool_getkey( ctx, slap_sasl_bind, &sconn, NULL );
908
909         if( sconn != NULL ) {
910                 int sc;
911 # if SASL_VERSION_MAJOR < 2
912                 sc = sasl_checkpass( sconn,
913                         passwd->bv_val, passwd->bv_len,
914                         cred->bv_val, cred->bv_len,
915                         text );
916 # else
917                 sc = sasl_checkpass( sconn,
918                         passwd->bv_val, passwd->bv_len,
919                         cred->bv_val, cred->bv_len );
920 # endif
921                 rtn = ( sc != SASL_OK ) ? LUTIL_PASSWD_ERR : LUTIL_PASSWD_OK;
922         }
923
924         return rtn;
925 }
926 #endif /* SLAPD_SPASSWD */
927
928 #endif /* HAVE_CYRUS_SASL */
929
930 int slap_sasl_init( void )
931 {
932 #ifdef HAVE_CYRUS_SASL
933         int rc;
934         static sasl_callback_t server_callbacks[] = {
935                 { SASL_CB_LOG, &slap_sasl_log, NULL },
936                 { SASL_CB_LIST_END, NULL, NULL }
937         };
938
939 #ifdef HAVE_SASL_VERSION
940         /* stringify the version number, sasl.h doesn't do it for us */
941 #define VSTR0(maj, min, pat)    #maj "." #min "." #pat
942 #define VSTR(maj, min, pat)     VSTR0(maj, min, pat)
943 #define SASL_VERSION_STRING     VSTR(SASL_VERSION_MAJOR, SASL_VERSION_MINOR, \
944                                 SASL_VERSION_STEP)
945
946         sasl_version( NULL, &rc );
947         if ( ((rc >> 16) != ((SASL_VERSION_MAJOR << 8)|SASL_VERSION_MINOR)) ||
948                 (rc & 0xffff) < SASL_VERSION_STEP)
949         {
950                 char version[sizeof("xxx.xxx.xxxxx")];
951                 sprintf( version, "%u.%d.%d", (unsigned)rc >> 24, (rc >> 16) & 0xff,
952                         rc & 0xffff );
953                 Debug( LDAP_DEBUG_ANY, "slap_sasl_init: SASL library version mismatch:"
954                         " expected " SASL_VERSION_STRING ","
955                         " got %s\n", version, 0, 0 );
956                 return -1;
957         }
958 #endif
959
960         /* SASL 2 does its own memory management internally */
961 #if SASL_VERSION_MAJOR < 2
962         sasl_set_alloc(
963                 ber_memalloc,
964                 ber_memcalloc,
965                 ber_memrealloc,
966                 ber_memfree ); 
967 #endif
968
969         sasl_set_mutex(
970                 ldap_pvt_sasl_mutex_new,
971                 ldap_pvt_sasl_mutex_lock,
972                 ldap_pvt_sasl_mutex_unlock,
973                 ldap_pvt_sasl_mutex_dispose );
974
975 #if SASL_VERSION_MAJOR >= 2
976         generic_filter.f_desc = slap_schema.si_ad_objectClass;
977
978         rc = sasl_auxprop_add_plugin( "slapd", slap_auxprop_init );
979         if( rc != SASL_OK ) {
980                 Debug( LDAP_DEBUG_ANY, "slap_sasl_init: auxprop add plugin failed\n",
981                         0, 0, 0 );
982                 return -1;
983         }
984 #endif
985         /* should provide callbacks for logging */
986         /* server name should be configurable */
987         rc = sasl_server_init( server_callbacks, "slapd" );
988
989         if( rc != SASL_OK ) {
990                 Debug( LDAP_DEBUG_ANY, "slap_sasl_init: server init failed\n",
991                         0, 0, 0 );
992 #if SASL_VERSION_MAJOR < 2
993                 /* A no-op used to make sure we linked with Cyrus 1.5 */
994                 sasl_client_auth( NULL, NULL, NULL, 0, NULL, NULL );
995 #endif
996
997                 return -1;
998         }
999
1000 #ifdef SLAPD_SPASSWD
1001         lutil_passwd_add( &sasl_pwscheme, chk_sasl, NULL );
1002 #endif
1003
1004         Debug( LDAP_DEBUG_TRACE, "slap_sasl_init: initialized!\n",
1005                 0, 0, 0 );
1006
1007         /* default security properties */
1008         memset( &sasl_secprops, '\0', sizeof(sasl_secprops) );
1009         sasl_secprops.max_ssf = INT_MAX;
1010         sasl_secprops.maxbufsize = 65536;
1011         sasl_secprops.security_flags = SASL_SEC_NOPLAINTEXT|SASL_SEC_NOANONYMOUS;
1012 #endif
1013
1014         return 0;
1015 }
1016
1017 int slap_sasl_destroy( void )
1018 {
1019 #ifdef HAVE_CYRUS_SASL
1020         sasl_done();
1021 #endif
1022         free( global_host );
1023         global_host = NULL;
1024
1025         return 0;
1026 }
1027
1028 int slap_sasl_open( Connection *conn, int reopen )
1029 {
1030         int sc = LDAP_SUCCESS;
1031 #ifdef HAVE_CYRUS_SASL
1032         int cb;
1033
1034         sasl_conn_t *ctx = NULL;
1035         sasl_callback_t *session_callbacks;
1036
1037 #if SASL_VERSION_MAJOR >= 2
1038         char *ipremoteport = NULL, *iplocalport = NULL;
1039 #endif
1040
1041         assert( conn->c_sasl_authctx == NULL );
1042
1043         if ( !reopen ) {
1044                 assert( conn->c_sasl_extra == NULL );
1045
1046                 session_callbacks =
1047 #if SASL_VERSION_MAJOR >= 2
1048                         SLAP_CALLOC( 5, sizeof(sasl_callback_t));
1049 #else
1050                         SLAP_CALLOC( 3, sizeof(sasl_callback_t));
1051 #endif
1052                 if( session_callbacks == NULL ) {
1053                         Debug( LDAP_DEBUG_ANY, 
1054                                 "slap_sasl_open: SLAP_MALLOC failed", 0, 0, 0 );
1055                         return -1;
1056                 }
1057                 conn->c_sasl_extra = session_callbacks;
1058
1059                 session_callbacks[cb=0].id = SASL_CB_LOG;
1060                 session_callbacks[cb].proc = &slap_sasl_log;
1061                 session_callbacks[cb++].context = conn;
1062
1063                 session_callbacks[cb].id = SASL_CB_PROXY_POLICY;
1064                 session_callbacks[cb].proc = &slap_sasl_authorize;
1065                 session_callbacks[cb++].context = conn;
1066
1067 #if SASL_VERSION_MAJOR >= 2
1068                 session_callbacks[cb].id = SASL_CB_CANON_USER;
1069                 session_callbacks[cb].proc = &slap_sasl_canonicalize;
1070                 session_callbacks[cb++].context = conn;
1071 #endif
1072
1073                 session_callbacks[cb].id = SASL_CB_LIST_END;
1074                 session_callbacks[cb].proc = NULL;
1075                 session_callbacks[cb++].context = NULL;
1076         } else {
1077                 session_callbacks = conn->c_sasl_extra;
1078         }
1079
1080         conn->c_sasl_layers = 0;
1081
1082         if( global_host == NULL ) {
1083                 global_host = ldap_pvt_get_fqdn( NULL );
1084         }
1085
1086         /* create new SASL context */
1087 #if SASL_VERSION_MAJOR >= 2
1088         if ( conn->c_sock_name.bv_len != 0 &&
1089              strncmp( conn->c_sock_name.bv_val, "IP=", 3 ) == 0) {
1090                 char *p;
1091
1092                 iplocalport = ch_strdup( conn->c_sock_name.bv_val + 3 );
1093                 /* Convert IPv6 addresses to address;port syntax. */
1094                 p = strrchr( iplocalport, ' ' );
1095                 /* Convert IPv4 addresses to address;port syntax. */
1096                 if ( p == NULL ) p = strchr( iplocalport, ':' );
1097                 if ( p != NULL ) {
1098                         *p = ';';
1099                 }
1100         }
1101         if ( conn->c_peer_name.bv_len != 0 &&
1102              strncmp( conn->c_peer_name.bv_val, "IP=", 3 ) == 0) {
1103                 char *p;
1104
1105                 ipremoteport = ch_strdup( conn->c_peer_name.bv_val + 3 );
1106                 /* Convert IPv6 addresses to address;port syntax. */
1107                 p = strrchr( ipremoteport, ' ' );
1108                 /* Convert IPv4 addresses to address;port syntax. */
1109                 if ( p == NULL ) p = strchr( ipremoteport, ':' );
1110                 if ( p != NULL ) {
1111                         *p = ';';
1112                 }
1113         }
1114         sc = sasl_server_new( "ldap", global_host, global_realm,
1115                 iplocalport, ipremoteport, session_callbacks, SASL_SUCCESS_DATA, &ctx );
1116         if ( iplocalport != NULL ) {
1117                 ch_free( iplocalport );
1118         }
1119         if ( ipremoteport != NULL ) {
1120                 ch_free( ipremoteport );
1121         }
1122 #else
1123         sc = sasl_server_new( "ldap", global_host, global_realm,
1124                 session_callbacks, SASL_SECURITY_LAYER, &ctx );
1125 #endif
1126
1127         if( sc != SASL_OK ) {
1128                 Debug( LDAP_DEBUG_ANY, "sasl_server_new failed: %d\n",
1129                         sc, 0, 0 );
1130
1131                 return -1;
1132         }
1133
1134         conn->c_sasl_authctx = ctx;
1135
1136         if( sc == SASL_OK ) {
1137                 sc = sasl_setprop( ctx,
1138                         SASL_SEC_PROPS, &sasl_secprops );
1139
1140                 if( sc != SASL_OK ) {
1141                         Debug( LDAP_DEBUG_ANY, "sasl_setprop failed: %d\n",
1142                                 sc, 0, 0 );
1143
1144                         slap_sasl_close( conn );
1145                         return -1;
1146                 }
1147         }
1148
1149         sc = slap_sasl_err2ldap( sc );
1150
1151 #elif defined(SLAP_BUILTIN_SASL)
1152         /* built-in SASL implementation */
1153         SASL_CTX *ctx = (SASL_CTX *) SLAP_MALLOC(sizeof(SASL_CTX));
1154         if( ctx == NULL ) return -1;
1155
1156         ctx->sc_external_ssf = 0;
1157         BER_BVZERO( &ctx->sc_external_id );
1158
1159         conn->c_sasl_authctx = ctx;
1160 #endif
1161
1162         return sc;
1163 }
1164
1165 int slap_sasl_external(
1166         Connection *conn,
1167         slap_ssf_t ssf,
1168         struct berval *auth_id )
1169 {
1170 #if SASL_VERSION_MAJOR >= 2
1171         int sc;
1172         sasl_conn_t *ctx = conn->c_sasl_authctx;
1173
1174         if ( ctx == NULL ) {
1175                 return LDAP_UNAVAILABLE;
1176         }
1177
1178         sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL, &ssf );
1179
1180         if ( sc != SASL_OK ) {
1181                 return LDAP_OTHER;
1182         }
1183
1184         sc = sasl_setprop( ctx, SASL_AUTH_EXTERNAL,
1185                 auth_id ? auth_id->bv_val : NULL );
1186
1187         if ( sc != SASL_OK ) {
1188                 return LDAP_OTHER;
1189         }
1190
1191 #elif defined(HAVE_CYRUS_SASL)
1192         int sc;
1193         sasl_conn_t *ctx = conn->c_sasl_authctx;
1194         sasl_external_properties_t extprops;
1195
1196         if ( ctx == NULL ) {
1197                 return LDAP_UNAVAILABLE;
1198         }
1199
1200         memset( &extprops, '\0', sizeof(extprops) );
1201         extprops.ssf = ssf;
1202         extprops.auth_id = auth_id ? auth_id->bv_val : NULL;
1203
1204         sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL,
1205                 (void *) &extprops );
1206
1207         if ( sc != SASL_OK ) {
1208                 return LDAP_OTHER;
1209         }
1210 #elif defined(SLAP_BUILTIN_SASL)
1211         /* built-in SASL implementation */
1212         SASL_CTX *ctx = conn->c_sasl_authctx;
1213         if ( ctx == NULL ) return LDAP_UNAVAILABLE;
1214
1215         ctx->sc_external_ssf = ssf;
1216         if( auth_id ) {
1217                 ctx->sc_external_id = *auth_id;
1218                 BER_BVZERO( auth_id );
1219         } else {
1220                 BER_BVZERO( &ctx->sc_external_id );
1221         }
1222 #endif
1223
1224         return LDAP_SUCCESS;
1225 }
1226
1227 int slap_sasl_reset( Connection *conn )
1228 {
1229         return LDAP_SUCCESS;
1230 }
1231
1232 char ** slap_sasl_mechs( Connection *conn )
1233 {
1234         char **mechs = NULL;
1235
1236 #ifdef HAVE_CYRUS_SASL
1237         sasl_conn_t *ctx = conn->c_sasl_authctx;
1238
1239         if( ctx == NULL ) ctx = conn->c_sasl_sockctx;
1240
1241         if( ctx != NULL ) {
1242                 int sc;
1243                 SASL_CONST char *mechstr;
1244
1245                 sc = sasl_listmech( ctx,
1246                         NULL, NULL, ",", NULL,
1247                         &mechstr, NULL, NULL );
1248
1249                 if( sc != SASL_OK ) {
1250                         Debug( LDAP_DEBUG_ANY, "slap_sasl_listmech failed: %d\n",
1251                                 sc, 0, 0 );
1252
1253                         return NULL;
1254                 }
1255
1256                 mechs = ldap_str2charray( mechstr, "," );
1257
1258 #if SASL_VERSION_MAJOR < 2
1259                 ch_free( mechstr );
1260 #endif
1261         }
1262 #elif defined(SLAP_BUILTIN_SASL)
1263         /* builtin SASL implementation */
1264         SASL_CTX *ctx = conn->c_sasl_authctx;
1265         if ( ctx != NULL && ctx->sc_external_id.bv_val ) {
1266                 /* should check ssf */
1267                 mechs = ldap_str2charray( "EXTERNAL", "," );
1268         }
1269 #endif
1270
1271         return mechs;
1272 }
1273
1274 int slap_sasl_close( Connection *conn )
1275 {
1276 #ifdef HAVE_CYRUS_SASL
1277         sasl_conn_t *ctx = conn->c_sasl_authctx;
1278
1279         if( ctx != NULL ) {
1280                 sasl_dispose( &ctx );
1281         }
1282         if ( conn->c_sasl_sockctx &&
1283                 conn->c_sasl_authctx != conn->c_sasl_sockctx )
1284         {
1285                 ctx = conn->c_sasl_sockctx;
1286                 sasl_dispose( &ctx );
1287         }
1288
1289         conn->c_sasl_authctx = NULL;
1290         conn->c_sasl_sockctx = NULL;
1291         conn->c_sasl_done = 0;
1292
1293         free( conn->c_sasl_extra );
1294         conn->c_sasl_extra = NULL;
1295
1296 #elif defined(SLAP_BUILTIN_SASL)
1297         SASL_CTX *ctx = conn->c_sasl_authctx;
1298         if( ctx ) {
1299                 if( ctx->sc_external_id.bv_val ) {
1300                         free( ctx->sc_external_id.bv_val );
1301                         BER_BVZERO( &ctx->sc_external_id );
1302                 }
1303                 free( ctx );
1304                 conn->c_sasl_authctx = NULL;
1305         }
1306 #endif
1307
1308         return LDAP_SUCCESS;
1309 }
1310
1311 int slap_sasl_bind( Operation *op, SlapReply *rs )
1312 {
1313 #ifdef HAVE_CYRUS_SASL
1314         sasl_conn_t *ctx = op->o_conn->c_sasl_authctx;
1315         struct berval response;
1316         unsigned reslen = 0;
1317         int sc;
1318
1319         Debug(LDAP_DEBUG_ARGS,
1320                 "==> sasl_bind: dn=\"%s\" mech=%s datalen=%ld\n",
1321                 op->o_req_dn.bv_len ? op->o_req_dn.bv_val : "",
1322                 op->o_conn->c_sasl_bind_in_progress ? "<continuing>" : 
1323                 op->o_conn->c_sasl_bind_mech.bv_val,
1324                 op->orb_cred.bv_len );
1325
1326         if( ctx == NULL ) {
1327                 send_ldap_error( op, rs, LDAP_UNAVAILABLE,
1328                         "SASL unavailable on this session" );
1329                 return rs->sr_err;
1330         }
1331
1332 #if SASL_VERSION_MAJOR >= 2
1333 #define START( ctx, mech, cred, clen, resp, rlen, err ) \
1334         sasl_server_start( ctx, mech, cred, clen, resp, rlen )
1335 #define STEP( ctx, cred, clen, resp, rlen, err ) \
1336         sasl_server_step( ctx, cred, clen, resp, rlen )
1337 #else
1338 #define START( ctx, mech, cred, clen, resp, rlen, err ) \
1339         sasl_server_start( ctx, mech, cred, clen, resp, rlen, err )
1340 #define STEP( ctx, cred, clen, resp, rlen, err ) \
1341         sasl_server_step( ctx, cred, clen, resp, rlen, err )
1342 #endif
1343
1344         if ( !op->o_conn->c_sasl_bind_in_progress ) {
1345                 /* If we already authenticated once, must use a new context */
1346                 if ( op->o_conn->c_sasl_done ) {
1347                         slap_ssf_t ssf = 0;
1348                         const char *authid = NULL;
1349 #if SASL_VERSION_MAJOR >= 2
1350                         sasl_getprop( ctx, SASL_SSF_EXTERNAL, (void *)&ssf );
1351                         sasl_getprop( ctx, SASL_AUTH_EXTERNAL, (void *)&authid );
1352                         if ( authid ) authid = ch_strdup( authid );
1353 #endif
1354                         if ( ctx != op->o_conn->c_sasl_sockctx ) {
1355                                 sasl_dispose( &ctx );
1356                         }
1357                         op->o_conn->c_sasl_authctx = NULL;
1358                                 
1359                         slap_sasl_open( op->o_conn, 1 );
1360                         ctx = op->o_conn->c_sasl_authctx;
1361 #if SASL_VERSION_MAJOR >= 2
1362                         if ( authid ) {
1363                                 sasl_setprop( ctx, SASL_SSF_EXTERNAL, &ssf );
1364                                 sasl_setprop( ctx, SASL_AUTH_EXTERNAL, authid );
1365                                 ch_free( (char *)authid );
1366                         }
1367 #endif
1368                 }
1369                 sc = START( ctx,
1370                         op->o_conn->c_sasl_bind_mech.bv_val,
1371                         op->orb_cred.bv_val, op->orb_cred.bv_len,
1372                         (SASL_CONST char **)&response.bv_val, &reslen, &rs->sr_text );
1373
1374         } else {
1375                 sc = STEP( ctx,
1376                         op->orb_cred.bv_val, op->orb_cred.bv_len,
1377                         (SASL_CONST char **)&response.bv_val, &reslen, &rs->sr_text );
1378         }
1379
1380         response.bv_len = reslen;
1381
1382         if ( sc == SASL_OK ) {
1383                 sasl_ssf_t *ssf = NULL;
1384
1385                 op->orb_edn = op->o_conn->c_sasl_dn;
1386                 BER_BVZERO( &op->o_conn->c_sasl_dn );
1387                 op->o_conn->c_sasl_done = 1;
1388
1389                 rs->sr_err = LDAP_SUCCESS;
1390
1391                 (void) sasl_getprop( ctx, SASL_SSF, (void *)&ssf );
1392                 op->orb_ssf = ssf ? *ssf : 0;
1393
1394                 ctx = NULL;
1395                 if( op->orb_ssf ) {
1396                         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1397                         op->o_conn->c_sasl_layers++;
1398
1399                         /* If there's an old layer, set sockctx to NULL to
1400                          * tell connection_read() to wait for us to finish.
1401                          * Otherwise there is a race condition: we have to
1402                          * send the Bind response using the old security
1403                          * context and then remove it before reading any
1404                          * new messages.
1405                          */
1406                         if ( op->o_conn->c_sasl_sockctx ) {
1407                                 ctx = op->o_conn->c_sasl_sockctx;
1408                                 op->o_conn->c_sasl_sockctx = NULL;
1409                         } else {
1410                                 op->o_conn->c_sasl_sockctx = op->o_conn->c_sasl_authctx;
1411                         }
1412                         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1413                 }
1414
1415                 /* Must send response using old security layer */
1416                 if (response.bv_len) rs->sr_sasldata = &response;
1417                 send_ldap_sasl( op, rs );
1418                 
1419                 /* Now dispose of the old security layer.
1420                  */
1421                 if ( ctx ) {
1422                         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1423                         ldap_pvt_sasl_remove( op->o_conn->c_sb );
1424                         op->o_conn->c_sasl_sockctx = op->o_conn->c_sasl_authctx;
1425                         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1426                         sasl_dispose( &ctx );
1427                 }
1428         } else if ( sc == SASL_CONTINUE ) {
1429                 rs->sr_err = LDAP_SASL_BIND_IN_PROGRESS,
1430                 rs->sr_sasldata = &response;
1431                 send_ldap_sasl( op, rs );
1432
1433         } else {
1434 #if SASL_VERSION_MAJOR >= 2
1435                 rs->sr_text = sasl_errdetail( ctx );
1436 #endif
1437                 rs->sr_err = slap_sasl_err2ldap( sc ),
1438                 send_ldap_result( op, rs );
1439         }
1440
1441 #if SASL_VERSION_MAJOR < 2
1442         if( response.bv_len ) {
1443                 ch_free( response.bv_val );
1444         }
1445 #endif
1446
1447         Debug(LDAP_DEBUG_TRACE, "<== slap_sasl_bind: rc=%d\n", rs->sr_err, 0, 0);
1448
1449 #elif defined(SLAP_BUILTIN_SASL)
1450         /* built-in SASL implementation */
1451         SASL_CTX *ctx = op->o_conn->c_sasl_authctx;
1452
1453         if ( ctx == NULL ) {
1454                 send_ldap_error( op, rs, LDAP_OTHER,
1455                         "Internal SASL Error" );
1456
1457         } else if ( bvmatch( &ext_bv, &op->o_conn->c_sasl_bind_mech ) ) {
1458                 /* EXTERNAL */
1459
1460                 if( op->orb_cred.bv_len ) {
1461                         rs->sr_text = "proxy authorization not support";
1462                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1463                         send_ldap_result( op, rs );
1464
1465                 } else {
1466                         op->orb_edn = ctx->sc_external_id;
1467                         rs->sr_err = LDAP_SUCCESS;
1468                         rs->sr_sasldata = NULL;
1469                         send_ldap_sasl( op, rs );
1470                 }
1471
1472         } else {
1473                 send_ldap_error( op, rs, LDAP_AUTH_METHOD_NOT_SUPPORTED,
1474                         "requested SASL mechanism not supported" );
1475         }
1476 #else
1477         send_ldap_error( op, rs, LDAP_AUTH_METHOD_NOT_SUPPORTED,
1478                 "SASL not supported" );
1479 #endif
1480
1481         return rs->sr_err;
1482 }
1483
1484 char* slap_sasl_secprops( const char *in )
1485 {
1486 #ifdef HAVE_CYRUS_SASL
1487         int rc = ldap_pvt_sasl_secprops( in, &sasl_secprops );
1488
1489         return rc == LDAP_SUCCESS ? NULL : "Invalid security properties";
1490 #else
1491         return "SASL not supported";
1492 #endif
1493 }
1494
1495 void slap_sasl_secprops_unparse( struct berval *bv )
1496 {
1497 #ifdef HAVE_CYRUS_SASL
1498         ldap_pvt_sasl_secprops_unparse( &sasl_secprops, bv );
1499 #endif
1500 }
1501
1502 #ifdef HAVE_CYRUS_SASL
1503 int
1504 slap_sasl_setpass( Operation *op, SlapReply *rs )
1505 {
1506         struct berval id = BER_BVNULL;  /* needs to come from connection */
1507         struct berval new = BER_BVNULL;
1508         struct berval old = BER_BVNULL;
1509
1510         assert( ber_bvcmp( &slap_EXOP_MODIFY_PASSWD, &op->ore_reqoid ) == 0 );
1511
1512         rs->sr_err = sasl_getprop( op->o_conn->c_sasl_authctx, SASL_USERNAME,
1513                 (SASL_CONST void **)&id.bv_val );
1514
1515         if( rs->sr_err != SASL_OK ) {
1516                 rs->sr_text = "unable to retrieve SASL username";
1517                 rs->sr_err = LDAP_OTHER;
1518                 goto done;
1519         }
1520
1521         Debug( LDAP_DEBUG_ARGS, "==> slap_sasl_setpass: \"%s\"\n",
1522                 id.bv_val ? id.bv_val : "", 0, 0 );
1523
1524         rs->sr_err = slap_passwd_parse( op->ore_reqdata,
1525                 NULL, &old, &new, &rs->sr_text );
1526
1527         if( rs->sr_err != LDAP_SUCCESS ) {
1528                 goto done;
1529         }
1530
1531         if( new.bv_len == 0 ) {
1532                 slap_passwd_generate(&new);
1533
1534                 if( new.bv_len == 0 ) {
1535                         rs->sr_text = "password generation failed.";
1536                         rs->sr_err = LDAP_OTHER;
1537                         goto done;
1538                 }
1539                 
1540                 rs->sr_rspdata = slap_passwd_return( &new );
1541         }
1542
1543 #if SASL_VERSION_MAJOR < 2
1544         rs->sr_err = sasl_setpass( op->o_conn->c_sasl_authctx,
1545                 id.bv_val, new.bv_val, new.bv_len, 0, &rs->sr_text );
1546 #else
1547         rs->sr_err = sasl_setpass( op->o_conn->c_sasl_authctx, id.bv_val,
1548                 new.bv_val, new.bv_len, old.bv_val, old.bv_len, 0 );
1549         if( rs->sr_err != SASL_OK ) {
1550                 rs->sr_text = sasl_errdetail( op->o_conn->c_sasl_authctx );
1551         }
1552 #endif
1553         switch(rs->sr_err) {
1554                 case SASL_OK:
1555                         rs->sr_err = LDAP_SUCCESS;
1556                         break;
1557
1558                 case SASL_NOCHANGE:
1559                 case SASL_NOMECH:
1560                 case SASL_DISABLED:
1561                 case SASL_PWLOCK:
1562                 case SASL_FAIL:
1563                 case SASL_BADPARAM:
1564                 default:
1565                         rs->sr_err = LDAP_OTHER;
1566         }
1567
1568 done:
1569         return rs->sr_err;
1570 }
1571 #endif /* HAVE_CYRUS_SASL */
1572
1573 /* Take any sort of identity string and return a DN with the "dn:" prefix. The
1574  * string returned in *dn is in its own allocated memory, and must be free'd 
1575  * by the calling process.  -Mark Adamson, Carnegie Mellon
1576  *
1577  * The "dn:" prefix is no longer used anywhere inside slapd. It is only used
1578  * on strings passed in directly from SASL.  -Howard Chu, Symas Corp.
1579  */
1580
1581 #define SET_NONE        0
1582 #define SET_DN          1
1583 #define SET_U           2
1584
1585 int slap_sasl_getdn( Connection *conn, Operation *op, struct berval *id,
1586         char *user_realm, struct berval *dn, int flags )
1587 {
1588         int rc, is_dn = SET_NONE, do_norm = 1;
1589         struct berval dn2, *mech;
1590
1591         assert( conn != NULL );
1592         assert( id != NULL );
1593
1594         Debug( LDAP_DEBUG_ARGS, "slap_sasl_getdn: conn %lu id=%s [len=%lu]\n", 
1595                 conn->c_connid,
1596                 BER_BVISNULL( id ) ? "NULL" : ( BER_BVISEMPTY( id ) ? "<empty>" : id->bv_val ),
1597                 BER_BVISNULL( id ) ? 0 : ( BER_BVISEMPTY( id ) ? 0 :
1598                                            (unsigned long) id->bv_len ) );
1599
1600         if ( !op ) {
1601                 op = conn->c_sasl_bindop;
1602         }
1603         assert( op != NULL );
1604
1605         BER_BVZERO( dn );
1606
1607         if ( !BER_BVISNULL( id ) ) {
1608                 /* Blatantly anonymous ID */
1609                 static struct berval bv_anonymous = BER_BVC( "anonymous" );
1610
1611                 if ( ber_bvstrcasecmp( id, &bv_anonymous ) == 0 ) {
1612                         return( LDAP_SUCCESS );
1613                 }
1614
1615         } else {
1616                 /* FIXME: if empty, should we stop? */
1617                 BER_BVSTR( id, "" );
1618         }
1619
1620         if ( !BER_BVISEMPTY( &conn->c_sasl_bind_mech ) ) {
1621                 mech = &conn->c_sasl_bind_mech;
1622         } else {
1623                 mech = &conn->c_authmech;
1624         }
1625
1626         /* An authcID needs to be converted to authzID form. Set the
1627          * values directly into *dn; they will be normalized later. (and
1628          * normalizing always makes a new copy.) An ID from a TLS certificate
1629          * is already normalized, so copy it and skip normalization.
1630          */
1631         if( flags & SLAP_GETDN_AUTHCID ) {
1632                 if( bvmatch( mech, &ext_bv )) {
1633                         /* EXTERNAL DNs are already normalized */
1634                         assert( !BER_BVISNULL( id ) );
1635
1636                         do_norm = 0;
1637                         is_dn = SET_DN;
1638                         ber_dupbv_x( dn, id, op->o_tmpmemctx );
1639
1640                 } else {
1641                         /* convert to u:<username> form */
1642                         is_dn = SET_U;
1643                         *dn = *id;
1644                 }
1645         }
1646
1647         if( is_dn == SET_NONE ) {
1648                 if( !strncasecmp( id->bv_val, "u:", STRLENOF( "u:" ) ) ) {
1649                         is_dn = SET_U;
1650                         dn->bv_val = id->bv_val + STRLENOF( "u:" );
1651                         dn->bv_len = id->bv_len - STRLENOF( "u:" );
1652
1653                 } else if ( !strncasecmp( id->bv_val, "dn:", STRLENOF( "dn:" ) ) ) {
1654                         is_dn = SET_DN;
1655                         dn->bv_val = id->bv_val + STRLENOF( "dn:" );
1656                         dn->bv_len = id->bv_len - STRLENOF( "dn:" );
1657                 }
1658         }
1659
1660         /* No other possibilities from here */
1661         if( is_dn == SET_NONE ) {
1662                 BER_BVZERO( dn );
1663                 return( LDAP_INAPPROPRIATE_AUTH );
1664         }
1665
1666         /* Username strings */
1667         if( is_dn == SET_U ) {
1668                 /* ITS#3419: values may need escape */
1669                 LDAPRDN         DN[ 5 ];
1670                 LDAPAVA         *RDNs[ 4 ][ 2 ];
1671                 LDAPAVA         AVAs[ 4 ];
1672                 int             irdn;
1673
1674                 irdn = 0;
1675                 DN[ irdn ] = RDNs[ irdn ];
1676                 RDNs[ irdn ][ 0 ] = &AVAs[ irdn ];
1677                 AVAs[ irdn ].la_attr = slap_schema.si_ad_uid->ad_cname;
1678                 AVAs[ irdn ].la_value = *dn;
1679                 AVAs[ irdn ].la_flags = LDAP_AVA_NULL;
1680                 AVAs[ irdn ].la_private = NULL;
1681                 RDNs[ irdn ][ 1 ] = NULL;
1682
1683                 if ( user_realm && *user_realm ) {
1684                         irdn++;
1685                         DN[ irdn ] = RDNs[ irdn ];
1686                         RDNs[ irdn ][ 0 ] = &AVAs[ irdn ];
1687                         AVAs[ irdn ].la_attr = slap_schema.si_ad_cn->ad_cname;
1688                         ber_str2bv( user_realm, 0, 0, &AVAs[ irdn ].la_value );
1689                         AVAs[ irdn ].la_flags = LDAP_AVA_NULL;
1690                         AVAs[ irdn ].la_private = NULL;
1691                         RDNs[ irdn ][ 1 ] = NULL;
1692                 }
1693
1694                 if ( !BER_BVISNULL( mech ) ) {
1695                         irdn++;
1696                         DN[ irdn ] = RDNs[ irdn ];
1697                         RDNs[ irdn ][ 0 ] = &AVAs[ irdn ];
1698                         AVAs[ irdn ].la_attr = slap_schema.si_ad_cn->ad_cname;
1699                         AVAs[ irdn ].la_value = *mech;
1700                         AVAs[ irdn ].la_flags = LDAP_AVA_NULL;
1701                         AVAs[ irdn ].la_private = NULL;
1702                         RDNs[ irdn ][ 1 ] = NULL;
1703                 }
1704
1705                 irdn++;
1706                 DN[ irdn ] = RDNs[ irdn ];
1707                 RDNs[ irdn ][ 0 ] = &AVAs[ irdn ];
1708                 AVAs[ irdn ].la_attr = slap_schema.si_ad_cn->ad_cname;
1709                 BER_BVSTR( &AVAs[ irdn ].la_value, "auth" );
1710                 AVAs[ irdn ].la_flags = LDAP_AVA_NULL;
1711                 AVAs[ irdn ].la_private = NULL;
1712                 RDNs[ irdn ][ 1 ] = NULL;
1713
1714                 irdn++;
1715                 DN[ irdn ] = NULL;
1716
1717                 rc = ldap_dn2bv_x( DN, dn, LDAP_DN_FORMAT_LDAPV3,
1718                                 op->o_tmpmemctx );
1719                 if ( rc != LDAP_SUCCESS ) {
1720                         BER_BVZERO( dn );
1721                         return rc;
1722                 }
1723
1724                 Debug( LDAP_DEBUG_TRACE,
1725                         "slap_sasl_getdn: u:id converted to %s\n",
1726                         dn->bv_val, 0, 0 );
1727
1728         } else {
1729                 
1730                 /* Dup the DN in any case, so we don't risk 
1731                  * leaks or dangling pointers later,
1732                  * and the DN value is '\0' terminated */
1733                 ber_dupbv_x( &dn2, dn, op->o_tmpmemctx );
1734                 dn->bv_val = dn2.bv_val;
1735         }
1736
1737         /* All strings are in DN form now. Normalize if needed. */
1738         if ( do_norm ) {
1739                 rc = dnNormalize( 0, NULL, NULL, dn, &dn2, op->o_tmpmemctx );
1740
1741                 /* User DNs were constructed above and must be freed now */
1742                 slap_sl_free( dn->bv_val, op->o_tmpmemctx );
1743
1744                 if ( rc != LDAP_SUCCESS ) {
1745                         BER_BVZERO( dn );
1746                         return rc;
1747                 }
1748                 *dn = dn2;
1749         }
1750
1751         /* Run thru regexp */
1752         slap_sasl2dn( op, dn, &dn2, flags );
1753         if( !BER_BVISNULL( &dn2 ) ) {
1754                 slap_sl_free( dn->bv_val, op->o_tmpmemctx );
1755                 *dn = dn2;
1756                 Debug( LDAP_DEBUG_TRACE,
1757                         "slap_sasl_getdn: dn:id converted to %s\n",
1758                         dn->bv_val, 0, 0 );
1759         }
1760
1761         return( LDAP_SUCCESS );
1762 }