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