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