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