]> git.sur5r.net Git - openldap/blob - servers/slapd/sasl.c
ITS#3864 from HEAD
[openldap] / servers / slapd / sasl.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2007 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 SLAP_SASL_PROP_CONN     0
154 #define SLAP_SASL_PROP_AUTHC    1
155 #define SLAP_SASL_PROP_AUTHZ    2
156 #define SLAP_SASL_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 += SLAP_SASL_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[SLAP_SASL_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[SLAP_SASL_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[SLAP_SASL_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 += SLAP_SASL_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[SLAP_SASL_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[SLAP_SASL_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[ SLAP_SASL_PROP_COUNT ] = { { 0 } };
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 = SLAP_SASL_PROP_AUTHC;
579         else
580                 which = SLAP_SASL_PROP_AUTHZ;
581
582         /* Need to store the Connection for auxprop_lookup */
583         if ( !auxvals[SLAP_SASL_PROP_CONN].values ) {
584                 names[0] = slap_propnames[SLAP_SASL_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[SLAP_SASL_PROP_AUTHZ].values ) {
609                 conn->c_sasl_dn.bv_val = (char *) in;
610                 conn->c_sasl_dn.bv_len = 0;
611         } else if ( flags == SASL_CU_AUTHZID && conn->c_sasl_dn.bv_val ) {
612                 rc = strcmp( in, conn->c_sasl_dn.bv_val );
613                 conn->c_sasl_dn.bv_val = NULL;
614                 /* They were equal, no work needed */
615                 if ( !rc ) goto done;
616         }
617
618         bvin.bv_val = (char *)in;
619         bvin.bv_len = inlen;
620         rc = slap_sasl_getdn( conn, NULL, &bvin, (char *)user_realm, &dn,
621                 (flags & SASL_CU_AUTHID) ? SLAP_GETDN_AUTHCID : SLAP_GETDN_AUTHZID );
622         if ( rc != LDAP_SUCCESS ) {
623                 sasl_seterror( sconn, 0, ldap_err2string( rc ) );
624                 return SASL_NOAUTHZ;
625         }
626
627         names[0] = slap_propnames[which];
628         names[1] = NULL;
629
630         prop_set( props, names[0], (char *)&dn, sizeof( dn ) );
631
632         Debug( LDAP_DEBUG_ARGS, "SASL Canonicalize [conn=%ld]: %s=\"%s\"\n",
633                 conn ? conn->c_connid : -1, names[0]+1,
634                 dn.bv_val ? dn.bv_val : "<EMPTY>" );
635
636 done:
637         AC_MEMCPY( out, in, inlen );
638         out[inlen] = '\0';
639
640         *out_len = inlen;
641
642         return SASL_OK;
643 }
644
645 static int
646 slap_sasl_authorize(
647         sasl_conn_t *sconn,
648         void *context,
649         char *requested_user,
650         unsigned rlen,
651         char *auth_identity,
652         unsigned alen,
653         const char *def_realm,
654         unsigned urlen,
655         struct propctx *props)
656 {
657         Connection *conn = (Connection *)context;
658         /* actually:
659          *      (SLAP_SASL_PROP_COUNT - 1)      because we skip "conn",
660          *      + 1                             for NULL termination?
661          */
662         struct propval auxvals[ SLAP_SASL_PROP_COUNT ] = { { 0 } };
663         struct berval authcDN, authzDN = BER_BVNULL;
664         int rc;
665
666         /* Simple Binds don't support proxy authorization, ignore it */
667         if ( !conn->c_sasl_bindop ||
668                 conn->c_sasl_bindop->orb_method != LDAP_AUTH_SASL ) return SASL_OK;
669
670         Debug( LDAP_DEBUG_ARGS, "SASL proxy authorize [conn=%ld]: "
671                 "authcid=\"%s\" authzid=\"%s\"\n",
672                 conn ? conn->c_connid : -1, auth_identity, requested_user );
673         if ( conn->c_sasl_dn.bv_val ) {
674                 ch_free( conn->c_sasl_dn.bv_val );
675                 BER_BVZERO( &conn->c_sasl_dn );
676         }
677
678         /* Skip SLAP_SASL_PROP_CONN */
679         prop_getnames( props, slap_propnames+1, auxvals );
680         
681         /* Should not happen */
682         if ( !auxvals[0].values ) {
683                 sasl_seterror( sconn, 0, "invalid authcid" );
684                 return SASL_NOAUTHZ;
685         }
686
687         AC_MEMCPY( &authcDN, auxvals[0].values[0], sizeof(authcDN) );
688         conn->c_sasl_dn = authcDN;
689
690         /* Nothing to do if no authzID was given */
691         if ( !auxvals[1].name || !auxvals[1].values ) {
692                 goto ok;
693         }
694         
695         AC_MEMCPY( &authzDN, auxvals[1].values[0], sizeof(authzDN) );
696
697         rc = slap_sasl_authorized( conn->c_sasl_bindop, &authcDN, &authzDN );
698         if ( rc != LDAP_SUCCESS ) {
699                 Debug( LDAP_DEBUG_TRACE, "SASL Proxy Authorize [conn=%ld]: "
700                         "proxy authorization disallowed (%d)\n",
701                         (long) (conn ? conn->c_connid : -1), rc, 0 );
702
703                 sasl_seterror( sconn, 0, "not authorized" );
704                 ch_free( authzDN.bv_val );
705                 return SASL_NOAUTHZ;
706         }
707
708         /* FIXME: we need yet another dup because slap_sasl_getdn()
709          * is using the bind operation slab */
710         if ( conn->c_sasl_bindop ) {
711                 ber_dupbv( &conn->c_sasl_authz_dn, &authzDN );
712                 slap_sl_free( authzDN.bv_val,
713                                 conn->c_sasl_bindop->o_tmpmemctx );
714
715         } else {
716                 conn->c_sasl_authz_dn = authzDN;
717         }
718
719 ok:
720         if (conn->c_sasl_bindop) {
721                 Statslog( LDAP_DEBUG_STATS,
722                         "conn=%lu op=%lu BIND authcid=\"%s\" authzid=\"%s\"\n",
723                         conn->c_connid, conn->c_sasl_bindop->o_opid, 
724                         auth_identity, requested_user, 0);
725         }
726
727         Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
728                 " proxy authorization allowed authzDN=\"%s\"\n",
729                 (long) (conn ? conn->c_connid : -1), 
730                 authzDN.bv_val ? authzDN.bv_val : "", 0 );
731         return SASL_OK;
732
733 #else
734 static int
735 slap_sasl_authorize(
736         void *context,
737         char *authcid,
738         char *authzid,
739         const char **user,
740         const char **errstr)
741 {
742         struct berval authcDN, authzDN = BER_BVNULL;
743         int rc;
744         Connection *conn = context;
745         char *realm;
746         struct berval   bvauthcid, bvauthzid;
747
748         *user = NULL;
749         if ( conn->c_sasl_dn.bv_val ) {
750                 ch_free( conn->c_sasl_dn.bv_val );
751                 BER_BVZERO( &conn->c_sasl_dn );
752         }
753
754         Debug( LDAP_DEBUG_ARGS, "SASL Authorize [conn=%ld]: "
755                 "authcid=\"%s\" authzid=\"%s\"\n",
756                 (long) (conn ? conn->c_connid : -1),
757                 authcid ? authcid : "<empty>",
758                 authzid ? authzid : "<empty>" );
759
760         /* Figure out how much data we have for the dn */
761         rc = sasl_getprop( conn->c_sasl_authctx, SASL_REALM, (void **)&realm );
762         if( rc != SASL_OK && rc != SASL_NOTDONE ) {
763                 Debug(LDAP_DEBUG_TRACE,
764                         "authorize: getprop(REALM) failed!\n", 0,0,0);
765                 *errstr = "Could not extract realm";
766                 return SASL_NOAUTHZ;
767         }
768
769         /* Convert the identities to DN's. If no authzid was given, client will
770            be bound as the DN matching their username */
771         bvauthcid.bv_val = authcid;
772         bvauthcid.bv_len = authcid ? strlen( authcid ) : 0;
773         rc = slap_sasl_getdn( conn, NULL, &bvauthcid, realm,
774                 &authcDN, SLAP_GETDN_AUTHCID );
775         if( rc != LDAP_SUCCESS ) {
776                 *errstr = ldap_err2string( rc );
777                 return SASL_NOAUTHZ;
778         }
779         conn->c_sasl_dn = authcDN;
780         if( ( authzid == NULL ) || !strcmp( authcid, authzid ) ) {
781                 Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
782                  "Using authcDN=%s\n", (long) (conn ? conn->c_connid : -1), authcDN.bv_val,0 );
783
784                 goto ok;
785         }
786
787         bvauthzid.bv_val = authzid;
788         bvauthzid.bv_len = authzid ? strlen( authzid ) : 0;
789         rc = slap_sasl_getdn( conn, NULL, &bvauthzid, realm,
790                 &authzDN, SLAP_GETDN_AUTHZID );
791         if( rc != LDAP_SUCCESS ) {
792                 *errstr = ldap_err2string( rc );
793                 return SASL_NOAUTHZ;
794         }
795
796         rc = slap_sasl_authorized( conn->c_sasl_bindop, &authcDN, &authzDN );
797         if( rc ) {
798                 Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
799                         "proxy authorization disallowed (%d)\n",
800                         (long) (conn ? conn->c_connid : -1), rc, 0 );
801
802                 *errstr = "not authorized";
803                 ch_free( authzDN.bv_val );
804                 return SASL_NOAUTHZ;
805         }
806
807         /* FIXME: we need yet another dup because slap_sasl_getdn()
808          * is using the bind operation slab */
809         if ( conn->c_sasl_bindop ) {
810                 ber_dupbv( &conn->c_sasl_authz_dn, &authzDN );
811                 slap_sl_free( authzDN.bv_val,
812                                 conn->c_sasl_bindop->o_tmpmemctx );
813
814         } else {
815                 conn->c_sasl_authz_dn = authzDN;
816         }
817
818 ok:
819         Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
820                 " authorization allowed authzDN=\"%s\"\n",
821                 (long) (conn ? conn->c_connid : -1),
822                 authzDN.bv_val ? authzDN.bv_val : "", 0 );
823
824         if ( conn->c_sasl_bindop ) {
825                 Statslog( LDAP_DEBUG_STATS,
826                         "conn=%lu op=%lu BIND authcid=\"%s\" authzid=\"%s\"\n",
827                         conn->c_connid, conn->c_sasl_bindop->o_opid, 
828                         authcid, authzid ? authzid : "", 0);
829         }
830
831         *errstr = NULL;
832         return SASL_OK;
833 }
834 #endif /* SASL_VERSION_MAJOR >= 2 */
835
836 static int
837 slap_sasl_err2ldap( int saslerr )
838 {
839         int rc;
840
841         /* map SASL errors to LDAP resultCode returned by:
842          *      sasl_server_new()
843          *              SASL_OK, SASL_NOMEM
844          *      sasl_server_step()
845          *              SASL_OK, SASL_CONTINUE, SASL_TRANS, SASL_BADPARAM, SASL_BADPROT,
846          *      ...
847          *      sasl_server_start()
848          *      + SASL_NOMECH
849          *      sasl_setprop()
850          *              SASL_OK, SASL_BADPARAM
851          */
852
853         switch (saslerr) {
854                 case SASL_OK:
855                         rc = LDAP_SUCCESS;
856                         break;
857                 case SASL_CONTINUE:
858                         rc = LDAP_SASL_BIND_IN_PROGRESS;
859                         break;
860                 case SASL_FAIL:
861                 case SASL_NOMEM:
862                         rc = LDAP_OTHER;
863                         break;
864                 case SASL_NOMECH:
865                         rc = LDAP_AUTH_METHOD_NOT_SUPPORTED;
866                         break;
867                 case SASL_BADAUTH:
868                 case SASL_NOUSER:
869                 case SASL_TRANS:
870                 case SASL_EXPIRED:
871                         rc = LDAP_INVALID_CREDENTIALS;
872                         break;
873                 case SASL_NOAUTHZ:
874                         rc = LDAP_INSUFFICIENT_ACCESS;
875                         break;
876                 case SASL_TOOWEAK:
877                 case SASL_ENCRYPT:
878                         rc = LDAP_INAPPROPRIATE_AUTH;
879                         break;
880                 case SASL_UNAVAIL:
881                 case SASL_TRYAGAIN:
882                         rc = LDAP_UNAVAILABLE;
883                         break;
884                 case SASL_DISABLED:
885                         rc = LDAP_UNWILLING_TO_PERFORM;
886                         break;
887                 default:
888                         rc = LDAP_OTHER;
889                         break;
890         }
891
892         return rc;
893 }
894
895 #ifdef SLAPD_SPASSWD
896
897 static struct berval sasl_pwscheme = BER_BVC("{SASL}");
898
899 static int chk_sasl(
900         const struct berval *sc,
901         const struct berval * passwd,
902         const struct berval * cred,
903         const char **text )
904 {
905         unsigned int i;
906         int rtn;
907         void *ctx, *sconn = NULL;
908
909         for( i=0; i<cred->bv_len; i++) {
910                 if(cred->bv_val[i] == '\0') {
911                         return LUTIL_PASSWD_ERR;        /* NUL character in password */
912                 }
913         }
914
915         if( cred->bv_val[i] != '\0' ) {
916                 return LUTIL_PASSWD_ERR;        /* cred must behave like a string */
917         }
918
919         for( i=0; i<passwd->bv_len; i++) {
920                 if(passwd->bv_val[i] == '\0') {
921                         return LUTIL_PASSWD_ERR;        /* NUL character in password */
922                 }
923         }
924
925         if( passwd->bv_val[i] != '\0' ) {
926                 return LUTIL_PASSWD_ERR;        /* passwd must behave like a string */
927         }
928
929         rtn = LUTIL_PASSWD_ERR;
930
931         ctx = ldap_pvt_thread_pool_context();
932         ldap_pvt_thread_pool_getkey( ctx, slap_sasl_bind, &sconn, NULL );
933
934         if( sconn != NULL ) {
935                 int sc;
936 # if SASL_VERSION_MAJOR < 2
937                 sc = sasl_checkpass( sconn,
938                         passwd->bv_val, passwd->bv_len,
939                         cred->bv_val, cred->bv_len,
940                         text );
941 # else
942                 sc = sasl_checkpass( sconn,
943                         passwd->bv_val, passwd->bv_len,
944                         cred->bv_val, cred->bv_len );
945 # endif
946                 rtn = ( sc != SASL_OK ) ? LUTIL_PASSWD_ERR : LUTIL_PASSWD_OK;
947         }
948
949         return rtn;
950 }
951 #endif /* SLAPD_SPASSWD */
952
953 #endif /* HAVE_CYRUS_SASL */
954
955 int slap_sasl_init( void )
956 {
957 #ifdef HAVE_CYRUS_SASL
958         int rc;
959         static sasl_callback_t server_callbacks[] = {
960                 { SASL_CB_LOG, &slap_sasl_log, NULL },
961                 { SASL_CB_LIST_END, NULL, NULL }
962         };
963
964 #ifdef HAVE_SASL_VERSION
965         /* stringify the version number, sasl.h doesn't do it for us */
966 #define VSTR0(maj, min, pat)    #maj "." #min "." #pat
967 #define VSTR(maj, min, pat)     VSTR0(maj, min, pat)
968 #define SASL_VERSION_STRING     VSTR(SASL_VERSION_MAJOR, SASL_VERSION_MINOR, \
969                                 SASL_VERSION_STEP)
970
971         sasl_version( NULL, &rc );
972         if ( ((rc >> 16) != ((SASL_VERSION_MAJOR << 8)|SASL_VERSION_MINOR)) ||
973                 (rc & 0xffff) < SASL_VERSION_STEP)
974         {
975                 char version[sizeof("xxx.xxx.xxxxx")];
976                 sprintf( version, "%u.%d.%d", (unsigned)rc >> 24, (rc >> 16) & 0xff,
977                         rc & 0xffff );
978                 Debug( LDAP_DEBUG_ANY, "slap_sasl_init: SASL library version mismatch:"
979                         " expected " SASL_VERSION_STRING ","
980                         " got %s\n", version, 0, 0 );
981                 return -1;
982         }
983 #endif
984
985         /* SASL 2 does its own memory management internally */
986 #if SASL_VERSION_MAJOR < 2
987         sasl_set_alloc(
988                 ber_memalloc,
989                 ber_memcalloc,
990                 ber_memrealloc,
991                 ber_memfree ); 
992 #endif
993
994         sasl_set_mutex(
995                 ldap_pvt_sasl_mutex_new,
996                 ldap_pvt_sasl_mutex_lock,
997                 ldap_pvt_sasl_mutex_unlock,
998                 ldap_pvt_sasl_mutex_dispose );
999
1000 #if SASL_VERSION_MAJOR >= 2
1001         generic_filter.f_desc = slap_schema.si_ad_objectClass;
1002
1003         rc = sasl_auxprop_add_plugin( "slapd", slap_auxprop_init );
1004         if( rc != SASL_OK ) {
1005                 Debug( LDAP_DEBUG_ANY, "slap_sasl_init: auxprop add plugin failed\n",
1006                         0, 0, 0 );
1007                 return -1;
1008         }
1009 #endif
1010         /* should provide callbacks for logging */
1011         /* server name should be configurable */
1012         rc = sasl_server_init( server_callbacks, "slapd" );
1013
1014         if( rc != SASL_OK ) {
1015                 Debug( LDAP_DEBUG_ANY, "slap_sasl_init: server init failed\n",
1016                         0, 0, 0 );
1017 #if SASL_VERSION_MAJOR < 2
1018                 /* A no-op used to make sure we linked with Cyrus 1.5 */
1019                 sasl_client_auth( NULL, NULL, NULL, 0, NULL, NULL );
1020 #endif
1021
1022                 return -1;
1023         }
1024
1025 #ifdef SLAPD_SPASSWD
1026         lutil_passwd_add( &sasl_pwscheme, chk_sasl, NULL );
1027 #endif
1028
1029         Debug( LDAP_DEBUG_TRACE, "slap_sasl_init: initialized!\n",
1030                 0, 0, 0 );
1031
1032         /* default security properties */
1033         memset( &sasl_secprops, '\0', sizeof(sasl_secprops) );
1034         sasl_secprops.max_ssf = INT_MAX;
1035         sasl_secprops.maxbufsize = 65536;
1036         sasl_secprops.security_flags = SASL_SEC_NOPLAINTEXT|SASL_SEC_NOANONYMOUS;
1037 #endif
1038
1039         return 0;
1040 }
1041
1042 int slap_sasl_destroy( void )
1043 {
1044 #ifdef HAVE_CYRUS_SASL
1045         sasl_done();
1046 #endif
1047         free( global_host );
1048         global_host = NULL;
1049
1050         return 0;
1051 }
1052
1053 int slap_sasl_open( Connection *conn, int reopen )
1054 {
1055         int sc = LDAP_SUCCESS;
1056 #ifdef HAVE_CYRUS_SASL
1057         int cb;
1058
1059         sasl_conn_t *ctx = NULL;
1060         sasl_callback_t *session_callbacks;
1061
1062 #if SASL_VERSION_MAJOR >= 2
1063         char *ipremoteport = NULL, *iplocalport = NULL;
1064 #endif
1065
1066         assert( conn->c_sasl_authctx == NULL );
1067
1068         if ( !reopen ) {
1069                 assert( conn->c_sasl_extra == NULL );
1070
1071                 session_callbacks =
1072 #if SASL_VERSION_MAJOR >= 2
1073                         SLAP_CALLOC( 5, sizeof(sasl_callback_t));
1074 #else
1075                         SLAP_CALLOC( 3, sizeof(sasl_callback_t));
1076 #endif
1077                 if( session_callbacks == NULL ) {
1078                         Debug( LDAP_DEBUG_ANY, 
1079                                 "slap_sasl_open: SLAP_MALLOC failed", 0, 0, 0 );
1080                         return -1;
1081                 }
1082                 conn->c_sasl_extra = session_callbacks;
1083
1084                 session_callbacks[cb=0].id = SASL_CB_LOG;
1085                 session_callbacks[cb].proc = &slap_sasl_log;
1086                 session_callbacks[cb++].context = conn;
1087
1088                 session_callbacks[cb].id = SASL_CB_PROXY_POLICY;
1089                 session_callbacks[cb].proc = &slap_sasl_authorize;
1090                 session_callbacks[cb++].context = conn;
1091
1092 #if SASL_VERSION_MAJOR >= 2
1093                 session_callbacks[cb].id = SASL_CB_CANON_USER;
1094                 session_callbacks[cb].proc = &slap_sasl_canonicalize;
1095                 session_callbacks[cb++].context = conn;
1096 #endif
1097
1098                 session_callbacks[cb].id = SASL_CB_LIST_END;
1099                 session_callbacks[cb].proc = NULL;
1100                 session_callbacks[cb++].context = NULL;
1101         } else {
1102                 session_callbacks = conn->c_sasl_extra;
1103         }
1104
1105         conn->c_sasl_layers = 0;
1106
1107         /* create new SASL context */
1108 #if SASL_VERSION_MAJOR >= 2
1109         if ( conn->c_sock_name.bv_len != 0 &&
1110              strncmp( conn->c_sock_name.bv_val, "IP=", 3 ) == 0) {
1111                 char *p;
1112
1113                 iplocalport = ch_strdup( conn->c_sock_name.bv_val + 3 );
1114                 /* Convert IPv6 addresses to address;port syntax. */
1115                 p = strrchr( iplocalport, ' ' );
1116                 /* Convert IPv4 addresses to address;port syntax. */
1117                 if ( p == NULL ) p = strchr( iplocalport, ':' );
1118                 if ( p != NULL ) {
1119                         *p = ';';
1120                 }
1121         }
1122         if ( conn->c_peer_name.bv_len != 0 &&
1123              strncmp( conn->c_peer_name.bv_val, "IP=", 3 ) == 0) {
1124                 char *p;
1125
1126                 ipremoteport = ch_strdup( conn->c_peer_name.bv_val + 3 );
1127                 /* Convert IPv6 addresses to address;port syntax. */
1128                 p = strrchr( ipremoteport, ' ' );
1129                 /* Convert IPv4 addresses to address;port syntax. */
1130                 if ( p == NULL ) p = strchr( ipremoteport, ':' );
1131                 if ( p != NULL ) {
1132                         *p = ';';
1133                 }
1134         }
1135         sc = sasl_server_new( "ldap", global_host, global_realm,
1136                 iplocalport, ipremoteport, session_callbacks, SASL_SUCCESS_DATA, &ctx );
1137         if ( iplocalport != NULL ) {
1138                 ch_free( iplocalport );
1139         }
1140         if ( ipremoteport != NULL ) {
1141                 ch_free( ipremoteport );
1142         }
1143 #else
1144         sc = sasl_server_new( "ldap", global_host, global_realm,
1145                 session_callbacks, SASL_SECURITY_LAYER, &ctx );
1146 #endif
1147
1148         if( sc != SASL_OK ) {
1149                 Debug( LDAP_DEBUG_ANY, "sasl_server_new failed: %d\n",
1150                         sc, 0, 0 );
1151
1152                 return -1;
1153         }
1154
1155         conn->c_sasl_authctx = ctx;
1156
1157         if( sc == SASL_OK ) {
1158                 sc = sasl_setprop( ctx,
1159                         SASL_SEC_PROPS, &sasl_secprops );
1160
1161                 if( sc != SASL_OK ) {
1162                         Debug( LDAP_DEBUG_ANY, "sasl_setprop failed: %d\n",
1163                                 sc, 0, 0 );
1164
1165                         slap_sasl_close( conn );
1166                         return -1;
1167                 }
1168         }
1169
1170         sc = slap_sasl_err2ldap( sc );
1171
1172 #elif defined(SLAP_BUILTIN_SASL)
1173         /* built-in SASL implementation */
1174         SASL_CTX *ctx = (SASL_CTX *) SLAP_MALLOC(sizeof(SASL_CTX));
1175         if( ctx == NULL ) return -1;
1176
1177         ctx->sc_external_ssf = 0;
1178         BER_BVZERO( &ctx->sc_external_id );
1179
1180         conn->c_sasl_authctx = ctx;
1181 #endif
1182
1183         return sc;
1184 }
1185
1186 int slap_sasl_external(
1187         Connection *conn,
1188         slap_ssf_t ssf,
1189         struct berval *auth_id )
1190 {
1191 #if SASL_VERSION_MAJOR >= 2
1192         int sc;
1193         sasl_conn_t *ctx = conn->c_sasl_authctx;
1194         sasl_ssf_t sasl_ssf = ssf;
1195
1196         if ( ctx == NULL ) {
1197                 return LDAP_UNAVAILABLE;
1198         }
1199
1200         sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL, &sasl_ssf );
1201
1202         if ( sc != SASL_OK ) {
1203                 return LDAP_OTHER;
1204         }
1205
1206         sc = sasl_setprop( ctx, SASL_AUTH_EXTERNAL,
1207                 auth_id ? auth_id->bv_val : NULL );
1208
1209         if ( sc != SASL_OK ) {
1210                 return LDAP_OTHER;
1211         }
1212
1213 #elif defined(HAVE_CYRUS_SASL)
1214         int sc;
1215         sasl_conn_t *ctx = conn->c_sasl_authctx;
1216         sasl_external_properties_t extprops;
1217
1218         if ( ctx == NULL ) {
1219                 return LDAP_UNAVAILABLE;
1220         }
1221
1222         memset( &extprops, '\0', sizeof(extprops) );
1223         extprops.ssf = ssf;
1224         extprops.auth_id = auth_id ? auth_id->bv_val : NULL;
1225
1226         sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL,
1227                 (void *) &extprops );
1228
1229         if ( sc != SASL_OK ) {
1230                 return LDAP_OTHER;
1231         }
1232 #elif defined(SLAP_BUILTIN_SASL)
1233         /* built-in SASL implementation */
1234         SASL_CTX *ctx = conn->c_sasl_authctx;
1235         if ( ctx == NULL ) return LDAP_UNAVAILABLE;
1236
1237         ctx->sc_external_ssf = ssf;
1238         if( auth_id ) {
1239                 ctx->sc_external_id = *auth_id;
1240                 BER_BVZERO( auth_id );
1241         } else {
1242                 BER_BVZERO( &ctx->sc_external_id );
1243         }
1244 #endif
1245
1246         return LDAP_SUCCESS;
1247 }
1248
1249 int slap_sasl_reset( Connection *conn )
1250 {
1251         return LDAP_SUCCESS;
1252 }
1253
1254 char ** slap_sasl_mechs( Connection *conn )
1255 {
1256         char **mechs = NULL;
1257
1258 #ifdef HAVE_CYRUS_SASL
1259         sasl_conn_t *ctx = conn->c_sasl_authctx;
1260
1261         if( ctx == NULL ) ctx = conn->c_sasl_sockctx;
1262
1263         if( ctx != NULL ) {
1264                 int sc;
1265                 SASL_CONST char *mechstr;
1266
1267                 sc = sasl_listmech( ctx,
1268                         NULL, NULL, ",", NULL,
1269                         &mechstr, NULL, NULL );
1270
1271                 if( sc != SASL_OK ) {
1272                         Debug( LDAP_DEBUG_ANY, "slap_sasl_listmech failed: %d\n",
1273                                 sc, 0, 0 );
1274
1275                         return NULL;
1276                 }
1277
1278                 mechs = ldap_str2charray( mechstr, "," );
1279
1280 #if SASL_VERSION_MAJOR < 2
1281                 ch_free( mechstr );
1282 #endif
1283         }
1284 #elif defined(SLAP_BUILTIN_SASL)
1285         /* builtin SASL implementation */
1286         SASL_CTX *ctx = conn->c_sasl_authctx;
1287         if ( ctx != NULL && ctx->sc_external_id.bv_val ) {
1288                 /* should check ssf */
1289                 mechs = ldap_str2charray( "EXTERNAL", "," );
1290         }
1291 #endif
1292
1293         return mechs;
1294 }
1295
1296 int slap_sasl_close( Connection *conn )
1297 {
1298 #ifdef HAVE_CYRUS_SASL
1299         sasl_conn_t *ctx = conn->c_sasl_authctx;
1300
1301         if( ctx != NULL ) {
1302                 sasl_dispose( &ctx );
1303         }
1304         if ( conn->c_sasl_sockctx &&
1305                 conn->c_sasl_authctx != conn->c_sasl_sockctx )
1306         {
1307                 ctx = conn->c_sasl_sockctx;
1308                 sasl_dispose( &ctx );
1309         }
1310
1311         conn->c_sasl_authctx = NULL;
1312         conn->c_sasl_sockctx = NULL;
1313         conn->c_sasl_done = 0;
1314
1315         free( conn->c_sasl_extra );
1316         conn->c_sasl_extra = NULL;
1317
1318 #elif defined(SLAP_BUILTIN_SASL)
1319         SASL_CTX *ctx = conn->c_sasl_authctx;
1320         if( ctx ) {
1321                 if( ctx->sc_external_id.bv_val ) {
1322                         free( ctx->sc_external_id.bv_val );
1323                         BER_BVZERO( &ctx->sc_external_id );
1324                 }
1325                 free( ctx );
1326                 conn->c_sasl_authctx = NULL;
1327         }
1328 #endif
1329
1330         return LDAP_SUCCESS;
1331 }
1332
1333 int slap_sasl_bind( Operation *op, SlapReply *rs )
1334 {
1335 #ifdef HAVE_CYRUS_SASL
1336         sasl_conn_t *ctx = op->o_conn->c_sasl_authctx;
1337         struct berval response;
1338         unsigned reslen = 0;
1339         int sc;
1340
1341         Debug(LDAP_DEBUG_ARGS,
1342                 "==> sasl_bind: dn=\"%s\" mech=%s datalen=%ld\n",
1343                 op->o_req_dn.bv_len ? op->o_req_dn.bv_val : "",
1344                 op->o_conn->c_sasl_bind_in_progress ? "<continuing>" : 
1345                 op->o_conn->c_sasl_bind_mech.bv_val,
1346                 op->orb_cred.bv_len );
1347
1348         if( ctx == NULL ) {
1349                 send_ldap_error( op, rs, LDAP_UNAVAILABLE,
1350                         "SASL unavailable on this session" );
1351                 return rs->sr_err;
1352         }
1353
1354 #if SASL_VERSION_MAJOR >= 2
1355 #define START( ctx, mech, cred, clen, resp, rlen, err ) \
1356         sasl_server_start( ctx, mech, cred, clen, resp, rlen )
1357 #define STEP( ctx, cred, clen, resp, rlen, err ) \
1358         sasl_server_step( ctx, cred, clen, resp, rlen )
1359 #else
1360 #define START( ctx, mech, cred, clen, resp, rlen, err ) \
1361         sasl_server_start( ctx, mech, cred, clen, resp, rlen, err )
1362 #define STEP( ctx, cred, clen, resp, rlen, err ) \
1363         sasl_server_step( ctx, cred, clen, resp, rlen, err )
1364 #endif
1365
1366         if ( !op->o_conn->c_sasl_bind_in_progress ) {
1367                 /* If we already authenticated once, must use a new context */
1368                 if ( op->o_conn->c_sasl_done ) {
1369                         sasl_ssf_t ssf = 0;
1370                         const char *authid = NULL;
1371 #if SASL_VERSION_MAJOR >= 2
1372                         sasl_getprop( ctx, SASL_SSF_EXTERNAL, (void *)&ssf );
1373                         sasl_getprop( ctx, SASL_AUTH_EXTERNAL, (void *)&authid );
1374                         if ( authid ) authid = ch_strdup( authid );
1375 #endif
1376                         if ( ctx != op->o_conn->c_sasl_sockctx ) {
1377                                 sasl_dispose( &ctx );
1378                         }
1379                         op->o_conn->c_sasl_authctx = NULL;
1380                                 
1381                         slap_sasl_open( op->o_conn, 1 );
1382                         ctx = op->o_conn->c_sasl_authctx;
1383 #if SASL_VERSION_MAJOR >= 2
1384                         if ( authid ) {
1385                                 sasl_setprop( ctx, SASL_SSF_EXTERNAL, &ssf );
1386                                 sasl_setprop( ctx, SASL_AUTH_EXTERNAL, authid );
1387                                 ch_free( (char *)authid );
1388                         }
1389 #endif
1390                 }
1391                 sc = START( ctx,
1392                         op->o_conn->c_sasl_bind_mech.bv_val,
1393                         op->orb_cred.bv_val, op->orb_cred.bv_len,
1394                         (SASL_CONST char **)&response.bv_val, &reslen, &rs->sr_text );
1395
1396         } else {
1397                 sc = STEP( ctx,
1398                         op->orb_cred.bv_val, op->orb_cred.bv_len,
1399                         (SASL_CONST char **)&response.bv_val, &reslen, &rs->sr_text );
1400         }
1401
1402         response.bv_len = reslen;
1403
1404         if ( sc == SASL_OK ) {
1405                 sasl_ssf_t *ssf = NULL;
1406
1407                 op->orb_edn = op->o_conn->c_sasl_dn;
1408                 BER_BVZERO( &op->o_conn->c_sasl_dn );
1409                 op->o_conn->c_sasl_done = 1;
1410
1411                 rs->sr_err = LDAP_SUCCESS;
1412
1413                 (void) sasl_getprop( ctx, SASL_SSF, (void *)&ssf );
1414                 op->orb_ssf = ssf ? *ssf : 0;
1415
1416                 ctx = NULL;
1417                 if( op->orb_ssf ) {
1418                         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1419                         op->o_conn->c_sasl_layers++;
1420
1421                         /* If there's an old layer, set sockctx to NULL to
1422                          * tell connection_read() to wait for us to finish.
1423                          * Otherwise there is a race condition: we have to
1424                          * send the Bind response using the old security
1425                          * context and then remove it before reading any
1426                          * new messages.
1427                          */
1428                         if ( op->o_conn->c_sasl_sockctx ) {
1429                                 ctx = op->o_conn->c_sasl_sockctx;
1430                                 op->o_conn->c_sasl_sockctx = NULL;
1431                         } else {
1432                                 op->o_conn->c_sasl_sockctx = op->o_conn->c_sasl_authctx;
1433                         }
1434                         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1435                 }
1436
1437                 /* Must send response using old security layer */
1438                 if (response.bv_len) rs->sr_sasldata = &response;
1439                 send_ldap_sasl( op, rs );
1440                 
1441                 /* Now dispose of the old security layer.
1442                  */
1443                 if ( ctx ) {
1444                         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1445                         ldap_pvt_sasl_remove( op->o_conn->c_sb );
1446                         op->o_conn->c_sasl_sockctx = op->o_conn->c_sasl_authctx;
1447                         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1448                         sasl_dispose( &ctx );
1449                 }
1450         } else if ( sc == SASL_CONTINUE ) {
1451                 rs->sr_err = LDAP_SASL_BIND_IN_PROGRESS,
1452                 rs->sr_sasldata = &response;
1453                 send_ldap_sasl( op, rs );
1454
1455         } else {
1456                 if ( op->o_conn->c_sasl_dn.bv_len )
1457                         ch_free( op->o_conn->c_sasl_dn.bv_val );
1458                 BER_BVZERO( &op->o_conn->c_sasl_dn );
1459 #if SASL_VERSION_MAJOR >= 2
1460                 rs->sr_text = sasl_errdetail( ctx );
1461 #endif
1462                 rs->sr_err = slap_sasl_err2ldap( sc ),
1463                 send_ldap_result( op, rs );
1464         }
1465
1466 #if SASL_VERSION_MAJOR < 2
1467         if( response.bv_len ) {
1468                 ch_free( response.bv_val );
1469         }
1470 #endif
1471
1472         Debug(LDAP_DEBUG_TRACE, "<== slap_sasl_bind: rc=%d\n", rs->sr_err, 0, 0);
1473
1474 #elif defined(SLAP_BUILTIN_SASL)
1475         /* built-in SASL implementation */
1476         SASL_CTX *ctx = op->o_conn->c_sasl_authctx;
1477
1478         if ( ctx == NULL ) {
1479                 send_ldap_error( op, rs, LDAP_OTHER,
1480                         "Internal SASL Error" );
1481
1482         } else if ( bvmatch( &ext_bv, &op->o_conn->c_sasl_bind_mech ) ) {
1483                 /* EXTERNAL */
1484
1485                 if( op->orb_cred.bv_len ) {
1486                         rs->sr_text = "proxy authorization not support";
1487                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1488                         send_ldap_result( op, rs );
1489
1490                 } else {
1491                         op->orb_edn = ctx->sc_external_id;
1492                         rs->sr_err = LDAP_SUCCESS;
1493                         rs->sr_sasldata = NULL;
1494                         send_ldap_sasl( op, rs );
1495                 }
1496
1497         } else {
1498                 send_ldap_error( op, rs, LDAP_AUTH_METHOD_NOT_SUPPORTED,
1499                         "requested SASL mechanism not supported" );
1500         }
1501 #else
1502         send_ldap_error( op, rs, LDAP_AUTH_METHOD_NOT_SUPPORTED,
1503                 "SASL not supported" );
1504 #endif
1505
1506         return rs->sr_err;
1507 }
1508
1509 char* slap_sasl_secprops( const char *in )
1510 {
1511 #ifdef HAVE_CYRUS_SASL
1512         int rc = ldap_pvt_sasl_secprops( in, &sasl_secprops );
1513
1514         return rc == LDAP_SUCCESS ? NULL : "Invalid security properties";
1515 #else
1516         return "SASL not supported";
1517 #endif
1518 }
1519
1520 void slap_sasl_secprops_unparse( struct berval *bv )
1521 {
1522 #ifdef HAVE_CYRUS_SASL
1523         ldap_pvt_sasl_secprops_unparse( &sasl_secprops, bv );
1524 #endif
1525 }
1526
1527 #ifdef HAVE_CYRUS_SASL
1528 int
1529 slap_sasl_setpass( Operation *op, SlapReply *rs )
1530 {
1531         struct berval id = BER_BVNULL;  /* needs to come from connection */
1532         struct berval new = BER_BVNULL;
1533         struct berval old = BER_BVNULL;
1534
1535         assert( ber_bvcmp( &slap_EXOP_MODIFY_PASSWD, &op->ore_reqoid ) == 0 );
1536
1537         rs->sr_err = sasl_getprop( op->o_conn->c_sasl_authctx, SASL_USERNAME,
1538                 (SASL_CONST void **)&id.bv_val );
1539
1540         if( rs->sr_err != SASL_OK ) {
1541                 rs->sr_text = "unable to retrieve SASL username";
1542                 rs->sr_err = LDAP_OTHER;
1543                 goto done;
1544         }
1545
1546         Debug( LDAP_DEBUG_ARGS, "==> slap_sasl_setpass: \"%s\"\n",
1547                 id.bv_val ? id.bv_val : "", 0, 0 );
1548
1549         rs->sr_err = slap_passwd_parse( op->ore_reqdata,
1550                 NULL, &old, &new, &rs->sr_text );
1551
1552         if( rs->sr_err != LDAP_SUCCESS ) {
1553                 goto done;
1554         }
1555
1556         if( new.bv_len == 0 ) {
1557                 slap_passwd_generate(&new);
1558
1559                 if( new.bv_len == 0 ) {
1560                         rs->sr_text = "password generation failed.";
1561                         rs->sr_err = LDAP_OTHER;
1562                         goto done;
1563                 }
1564                 
1565                 rs->sr_rspdata = slap_passwd_return( &new );
1566         }
1567
1568 #if SASL_VERSION_MAJOR < 2
1569         rs->sr_err = sasl_setpass( op->o_conn->c_sasl_authctx,
1570                 id.bv_val, new.bv_val, new.bv_len, 0, &rs->sr_text );
1571 #else
1572         rs->sr_err = sasl_setpass( op->o_conn->c_sasl_authctx, id.bv_val,
1573                 new.bv_val, new.bv_len, old.bv_val, old.bv_len, 0 );
1574         if( rs->sr_err != SASL_OK ) {
1575                 rs->sr_text = sasl_errdetail( op->o_conn->c_sasl_authctx );
1576         }
1577 #endif
1578         switch(rs->sr_err) {
1579                 case SASL_OK:
1580                         rs->sr_err = LDAP_SUCCESS;
1581                         break;
1582
1583                 case SASL_NOCHANGE:
1584                 case SASL_NOMECH:
1585                 case SASL_DISABLED:
1586                 case SASL_PWLOCK:
1587                 case SASL_FAIL:
1588                 case SASL_BADPARAM:
1589                 default:
1590                         rs->sr_err = LDAP_OTHER;
1591         }
1592
1593 done:
1594         return rs->sr_err;
1595 }
1596 #endif /* HAVE_CYRUS_SASL */
1597
1598 /* Take any sort of identity string and return a DN with the "dn:" prefix. The
1599  * string returned in *dn is in its own allocated memory, and must be free'd 
1600  * by the calling process.  -Mark Adamson, Carnegie Mellon
1601  *
1602  * The "dn:" prefix is no longer used anywhere inside slapd. It is only used
1603  * on strings passed in directly from SASL.  -Howard Chu, Symas Corp.
1604  */
1605
1606 #define SET_NONE        0
1607 #define SET_DN          1
1608 #define SET_U           2
1609
1610 int slap_sasl_getdn( Connection *conn, Operation *op, struct berval *id,
1611         char *user_realm, struct berval *dn, int flags )
1612 {
1613         int rc, is_dn = SET_NONE, do_norm = 1;
1614         struct berval dn2, *mech;
1615
1616         assert( conn != NULL );
1617         assert( id != NULL );
1618
1619         Debug( LDAP_DEBUG_ARGS, "slap_sasl_getdn: conn %lu id=%s [len=%lu]\n", 
1620                 conn->c_connid,
1621                 BER_BVISNULL( id ) ? "NULL" : ( BER_BVISEMPTY( id ) ? "<empty>" : id->bv_val ),
1622                 BER_BVISNULL( id ) ? 0 : ( BER_BVISEMPTY( id ) ? 0 :
1623                                            (unsigned long) id->bv_len ) );
1624
1625         if ( !op ) {
1626                 op = conn->c_sasl_bindop;
1627         }
1628         assert( op != NULL );
1629
1630         BER_BVZERO( dn );
1631
1632         if ( !BER_BVISNULL( id ) ) {
1633                 /* Blatantly anonymous ID */
1634                 static struct berval bv_anonymous = BER_BVC( "anonymous" );
1635
1636                 if ( ber_bvstrcasecmp( id, &bv_anonymous ) == 0 ) {
1637                         return( LDAP_SUCCESS );
1638                 }
1639
1640         } else {
1641                 /* FIXME: if empty, should we stop? */
1642                 BER_BVSTR( id, "" );
1643         }
1644
1645         if ( !BER_BVISEMPTY( &conn->c_sasl_bind_mech ) ) {
1646                 mech = &conn->c_sasl_bind_mech;
1647         } else {
1648                 mech = &conn->c_authmech;
1649         }
1650
1651         /* An authcID needs to be converted to authzID form. Set the
1652          * values directly into *dn; they will be normalized later. (and
1653          * normalizing always makes a new copy.) An ID from a TLS certificate
1654          * is already normalized, so copy it and skip normalization.
1655          */
1656         if( flags & SLAP_GETDN_AUTHCID ) {
1657                 if( bvmatch( mech, &ext_bv )) {
1658                         /* EXTERNAL DNs are already normalized */
1659                         assert( !BER_BVISNULL( id ) );
1660
1661                         do_norm = 0;
1662                         is_dn = SET_DN;
1663                         ber_dupbv_x( dn, id, op->o_tmpmemctx );
1664
1665                 } else {
1666                         /* convert to u:<username> form */
1667                         is_dn = SET_U;
1668                         *dn = *id;
1669                 }
1670         }
1671
1672         if( is_dn == SET_NONE ) {
1673                 if( !strncasecmp( id->bv_val, "u:", STRLENOF( "u:" ) ) ) {
1674                         is_dn = SET_U;
1675                         dn->bv_val = id->bv_val + STRLENOF( "u:" );
1676                         dn->bv_len = id->bv_len - STRLENOF( "u:" );
1677
1678                 } else if ( !strncasecmp( id->bv_val, "dn:", STRLENOF( "dn:" ) ) ) {
1679                         is_dn = SET_DN;
1680                         dn->bv_val = id->bv_val + STRLENOF( "dn:" );
1681                         dn->bv_len = id->bv_len - STRLENOF( "dn:" );
1682                 }
1683         }
1684
1685         /* No other possibilities from here */
1686         if( is_dn == SET_NONE ) {
1687                 BER_BVZERO( dn );
1688                 return( LDAP_INAPPROPRIATE_AUTH );
1689         }
1690
1691         /* Username strings */
1692         if( is_dn == SET_U ) {
1693                 /* ITS#3419: values may need escape */
1694                 LDAPRDN         DN[ 5 ];
1695                 LDAPAVA         *RDNs[ 4 ][ 2 ];
1696                 LDAPAVA         AVAs[ 4 ];
1697                 int             irdn;
1698
1699                 irdn = 0;
1700                 DN[ irdn ] = RDNs[ irdn ];
1701                 RDNs[ irdn ][ 0 ] = &AVAs[ irdn ];
1702                 AVAs[ irdn ].la_attr = slap_schema.si_ad_uid->ad_cname;
1703                 AVAs[ irdn ].la_value = *dn;
1704                 AVAs[ irdn ].la_flags = LDAP_AVA_NULL;
1705                 AVAs[ irdn ].la_private = NULL;
1706                 RDNs[ irdn ][ 1 ] = NULL;
1707
1708                 if ( user_realm && *user_realm ) {
1709                         irdn++;
1710                         DN[ irdn ] = RDNs[ irdn ];
1711                         RDNs[ irdn ][ 0 ] = &AVAs[ irdn ];
1712                         AVAs[ irdn ].la_attr = slap_schema.si_ad_cn->ad_cname;
1713                         ber_str2bv( user_realm, 0, 0, &AVAs[ irdn ].la_value );
1714                         AVAs[ irdn ].la_flags = LDAP_AVA_NULL;
1715                         AVAs[ irdn ].la_private = NULL;
1716                         RDNs[ irdn ][ 1 ] = NULL;
1717                 }
1718
1719                 if ( !BER_BVISNULL( mech ) ) {
1720                         irdn++;
1721                         DN[ irdn ] = RDNs[ irdn ];
1722                         RDNs[ irdn ][ 0 ] = &AVAs[ irdn ];
1723                         AVAs[ irdn ].la_attr = slap_schema.si_ad_cn->ad_cname;
1724                         AVAs[ irdn ].la_value = *mech;
1725                         AVAs[ irdn ].la_flags = LDAP_AVA_NULL;
1726                         AVAs[ irdn ].la_private = NULL;
1727                         RDNs[ irdn ][ 1 ] = NULL;
1728                 }
1729
1730                 irdn++;
1731                 DN[ irdn ] = RDNs[ irdn ];
1732                 RDNs[ irdn ][ 0 ] = &AVAs[ irdn ];
1733                 AVAs[ irdn ].la_attr = slap_schema.si_ad_cn->ad_cname;
1734                 BER_BVSTR( &AVAs[ irdn ].la_value, "auth" );
1735                 AVAs[ irdn ].la_flags = LDAP_AVA_NULL;
1736                 AVAs[ irdn ].la_private = NULL;
1737                 RDNs[ irdn ][ 1 ] = NULL;
1738
1739                 irdn++;
1740                 DN[ irdn ] = NULL;
1741
1742                 rc = ldap_dn2bv_x( DN, dn, LDAP_DN_FORMAT_LDAPV3,
1743                                 op->o_tmpmemctx );
1744                 if ( rc != LDAP_SUCCESS ) {
1745                         BER_BVZERO( dn );
1746                         return rc;
1747                 }
1748
1749                 Debug( LDAP_DEBUG_TRACE,
1750                         "slap_sasl_getdn: u:id converted to %s\n",
1751                         dn->bv_val, 0, 0 );
1752
1753         } else {
1754                 
1755                 /* Dup the DN in any case, so we don't risk 
1756                  * leaks or dangling pointers later,
1757                  * and the DN value is '\0' terminated */
1758                 ber_dupbv_x( &dn2, dn, op->o_tmpmemctx );
1759                 dn->bv_val = dn2.bv_val;
1760         }
1761
1762         /* All strings are in DN form now. Normalize if needed. */
1763         if ( do_norm ) {
1764                 rc = dnNormalize( 0, NULL, NULL, dn, &dn2, op->o_tmpmemctx );
1765
1766                 /* User DNs were constructed above and must be freed now */
1767                 slap_sl_free( dn->bv_val, op->o_tmpmemctx );
1768
1769                 if ( rc != LDAP_SUCCESS ) {
1770                         BER_BVZERO( dn );
1771                         return rc;
1772                 }
1773                 *dn = dn2;
1774         }
1775
1776         /* Run thru regexp */
1777         slap_sasl2dn( op, dn, &dn2, flags );
1778         if( !BER_BVISNULL( &dn2 ) ) {
1779                 slap_sl_free( dn->bv_val, op->o_tmpmemctx );
1780                 *dn = dn2;
1781                 Debug( LDAP_DEBUG_TRACE,
1782                         "slap_sasl_getdn: dn:id converted to %s\n",
1783                         dn->bv_val, 0, 0 );
1784         }
1785
1786         return( LDAP_SUCCESS );
1787 }