]> git.sur5r.net Git - openldap/blob - servers/slapd/sasl.c
Change slap_sasl_authorized to take an Operation instead of a Connection,
[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, &rs->sr_text ) ) {
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->c_sasl_bindop, &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_authctx, 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->c_sasl_bindop, &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_OK:
919                         rc = LDAP_SUCCESS;
920                         break;
921                 case SASL_CONTINUE:
922                         rc = LDAP_SASL_BIND_IN_PROGRESS;
923                         break;
924                 case SASL_FAIL:
925                         rc = LDAP_OTHER;
926                         break;
927                 case SASL_NOMEM:
928                         rc = LDAP_OTHER;
929                         break;
930                 case SASL_NOMECH:
931                         rc = LDAP_AUTH_METHOD_NOT_SUPPORTED;
932                         break;
933                 case SASL_BADAUTH:
934                         rc = LDAP_INVALID_CREDENTIALS;
935                         break;
936                 case SASL_NOAUTHZ:
937                         rc = LDAP_INSUFFICIENT_ACCESS;
938                         break;
939                 case SASL_TOOWEAK:
940                 case SASL_ENCRYPT:
941                         rc = LDAP_INAPPROPRIATE_AUTH;
942                         break;
943                 default:
944                         rc = LDAP_OTHER;
945                         break;
946         }
947
948         return rc;
949 }
950 #endif
951
952 int slap_sasl_init( void )
953 {
954 #ifdef HAVE_CYRUS_SASL
955         int rc;
956         static sasl_callback_t server_callbacks[] = {
957                 { SASL_CB_LOG, &slap_sasl_log, NULL },
958                 { SASL_CB_LIST_END, NULL, NULL }
959         };
960
961 #ifdef HAVE_SASL_VERSION
962 #define SASL_BUILD_VERSION ((SASL_VERSION_MAJOR << 24) |\
963         (SASL_VERSION_MINOR << 16) | SASL_VERSION_STEP)
964
965         sasl_version( NULL, &rc );
966         if ( ((rc >> 16) != ((SASL_VERSION_MAJOR << 8)|SASL_VERSION_MINOR)) ||
967                 (rc & 0xffff) < SASL_VERSION_STEP) {
968
969 #ifdef NEW_LOGGING
970                 LDAP_LOG( TRANSPORT, INFO,
971                 "slap_sasl_init: SASL version mismatch, got %x, wanted %x.\n",
972                         rc, SASL_BUILD_VERSION, 0 );
973 #else
974                 Debug( LDAP_DEBUG_ANY,
975                 "slap_sasl_init: SASL version mismatch, got %x, wanted %x.\n",
976                         rc, SASL_BUILD_VERSION, 0 );
977 #endif
978                 return -1;
979         }
980 #endif
981
982         /* SASL 2 does its own memory management internally */
983 #if SASL_VERSION_MAJOR < 2
984         sasl_set_alloc(
985                 ber_memalloc,
986                 ber_memcalloc,
987                 ber_memrealloc,
988                 ber_memfree ); 
989 #endif
990
991         sasl_set_mutex(
992                 ldap_pvt_sasl_mutex_new,
993                 ldap_pvt_sasl_mutex_lock,
994                 ldap_pvt_sasl_mutex_unlock,
995                 ldap_pvt_sasl_mutex_dispose );
996
997 #if SASL_VERSION_MAJOR >= 2
998         generic_filter.f_desc = slap_schema.si_ad_objectClass;
999
1000         sasl_auxprop_add_plugin( "slapd", slap_auxprop_init );
1001 #endif
1002         /* should provide callbacks for logging */
1003         /* server name should be configurable */
1004         rc = sasl_server_init( server_callbacks, "slapd" );
1005
1006         if( rc != SASL_OK ) {
1007 #ifdef NEW_LOGGING
1008                 LDAP_LOG( TRANSPORT, INFO, "slap_sasl_init: init failed.\n", 0, 0, 0 );
1009 #else
1010                 Debug( LDAP_DEBUG_ANY, "sasl_server_init failed\n",
1011                         0, 0, 0 );
1012 #endif
1013 #if SASL_VERSION_MAJOR < 2
1014                 /* A no-op used to make sure we linked with Cyrus 1.5 */
1015                 sasl_client_auth( NULL, NULL, NULL, 0, NULL, NULL );
1016 #endif
1017
1018                 return -1;
1019         }
1020
1021 #ifdef NEW_LOGGING
1022         LDAP_LOG( TRANSPORT, INFO, "slap_sasl_init: initialized!\n", 0, 0, 0 );
1023 #else
1024         Debug( LDAP_DEBUG_TRACE, "slap_sasl_init: initialized!\n",
1025                 0, 0, 0 );
1026 #endif
1027
1028
1029         /* default security properties */
1030         memset( &sasl_secprops, '\0', sizeof(sasl_secprops) );
1031         sasl_secprops.max_ssf = INT_MAX;
1032         sasl_secprops.maxbufsize = 65536;
1033         sasl_secprops.security_flags = SASL_SEC_NOPLAINTEXT|SASL_SEC_NOANONYMOUS;
1034 #endif
1035
1036         return 0;
1037 }
1038
1039 int slap_sasl_destroy( void )
1040 {
1041 #ifdef HAVE_CYRUS_SASL
1042         sasl_done();
1043 #endif
1044         free( global_host );
1045         global_host = NULL;
1046
1047         return 0;
1048 }
1049
1050 int slap_sasl_open( Connection *conn, int reopen )
1051 {
1052         int cb, sc = LDAP_SUCCESS;
1053 #if SASL_VERSION_MAJOR >= 2
1054         char *ipremoteport = NULL, *iplocalport = NULL;
1055 #endif
1056
1057 #ifdef HAVE_CYRUS_SASL
1058         sasl_conn_t *ctx = NULL;
1059         sasl_callback_t *session_callbacks;
1060
1061         assert( conn->c_sasl_authctx == NULL );
1062
1063         if ( !reopen ) {
1064                 assert( conn->c_sasl_extra == NULL );
1065
1066                 session_callbacks =
1067 #if SASL_VERSION_MAJOR >= 2
1068                         SLAP_CALLOC( 5, sizeof(sasl_callback_t));
1069 #else
1070                         SLAP_CALLOC( 3, sizeof(sasl_callback_t));
1071 #endif
1072                 if( session_callbacks == NULL ) {
1073 #ifdef NEW_LOGGING
1074                         LDAP_LOG( TRANSPORT, ERR, 
1075                                 "slap_sasl_open: SLAP_MALLOC failed", 0, 0, 0 );
1076 #else
1077                         Debug( LDAP_DEBUG_ANY, 
1078                                 "slap_sasl_open: SLAP_MALLOC failed", 0, 0, 0 );
1079 #endif
1080                         return -1;
1081                 }
1082                 conn->c_sasl_extra = session_callbacks;
1083
1084                 session_callbacks[cb=0].id = SASL_CB_LOG;
1085                 session_callbacks[cb].proc = &slap_sasl_log;
1086                 session_callbacks[cb++].context = conn;
1087
1088                 session_callbacks[cb].id = SASL_CB_PROXY_POLICY;
1089                 session_callbacks[cb].proc = &slap_sasl_authorize;
1090                 session_callbacks[cb++].context = conn;
1091
1092 #if SASL_VERSION_MAJOR >= 2
1093                 session_callbacks[cb].id = SASL_CB_CANON_USER;
1094                 session_callbacks[cb].proc = &slap_sasl_canonicalize;
1095                 session_callbacks[cb++].context = conn;
1096
1097                 /* XXXX: this should be conditional */
1098                 session_callbacks[cb].id = SASL_CB_SERVER_USERDB_CHECKPASS;
1099                 session_callbacks[cb].proc = &slap_sasl_checkpass;
1100                 session_callbacks[cb++].context = conn;
1101 #endif
1102
1103                 session_callbacks[cb].id = SASL_CB_LIST_END;
1104                 session_callbacks[cb].proc = NULL;
1105                 session_callbacks[cb++].context = NULL;
1106         } else {
1107                 session_callbacks = conn->c_sasl_extra;
1108         }
1109
1110         conn->c_sasl_layers = 0;
1111
1112         if( global_host == NULL ) {
1113                 global_host = ldap_pvt_get_fqdn( NULL );
1114         }
1115
1116         /* create new SASL context */
1117 #if SASL_VERSION_MAJOR >= 2
1118         if ( conn->c_sock_name.bv_len != 0 &&
1119              strncmp( conn->c_sock_name.bv_val, "IP=", 3 ) == 0) {
1120                 char *p;
1121
1122                 iplocalport = ch_strdup( conn->c_sock_name.bv_val + 3 );
1123                 /* Convert IPv6 addresses to address;port syntax. */
1124                 p = strrchr( iplocalport, ' ' );
1125                 /* Convert IPv4 addresses to address;port syntax. */
1126                 if ( p == NULL ) p = strchr( iplocalport, ':' );
1127                 if ( p != NULL ) {
1128                         *p = ';';
1129                 }
1130         }
1131         if ( conn->c_peer_name.bv_len != 0 &&
1132              strncmp( conn->c_peer_name.bv_val, "IP=", 3 ) == 0) {
1133                 char *p;
1134
1135                 ipremoteport = ch_strdup( conn->c_peer_name.bv_val + 3 );
1136                 /* Convert IPv6 addresses to address;port syntax. */
1137                 p = strrchr( ipremoteport, ' ' );
1138                 /* Convert IPv4 addresses to address;port syntax. */
1139                 if ( p == NULL ) p = strchr( ipremoteport, ':' );
1140                 if ( p != NULL ) {
1141                         *p = ';';
1142                 }
1143         }
1144         sc = sasl_server_new( "ldap", global_host, global_realm,
1145                 iplocalport, ipremoteport, session_callbacks, SASL_SUCCESS_DATA, &ctx );
1146         if ( iplocalport != NULL ) {
1147                 ch_free( iplocalport );
1148         }
1149         if ( ipremoteport != NULL ) {
1150                 ch_free( ipremoteport );
1151         }
1152 #else
1153         sc = sasl_server_new( "ldap", global_host, global_realm,
1154                 session_callbacks, SASL_SECURITY_LAYER, &ctx );
1155 #endif
1156
1157         if( sc != SASL_OK ) {
1158 #ifdef NEW_LOGGING
1159                 LDAP_LOG( TRANSPORT, ERR, 
1160                         "slap_sasl_open: sasl_server_new failed: %d\n", sc, 0, 0 );
1161 #else
1162                 Debug( LDAP_DEBUG_ANY, "sasl_server_new failed: %d\n",
1163                         sc, 0, 0 );
1164 #endif
1165
1166                 return -1;
1167         }
1168
1169         conn->c_sasl_authctx = ctx;
1170
1171         if( sc == SASL_OK ) {
1172                 sc = sasl_setprop( ctx,
1173                         SASL_SEC_PROPS, &sasl_secprops );
1174
1175                 if( sc != SASL_OK ) {
1176 #ifdef NEW_LOGGING
1177                         LDAP_LOG( TRANSPORT, ERR, 
1178                                 "slap_sasl_open: sasl_setprop failed: %d \n", sc, 0, 0 );
1179 #else
1180                         Debug( LDAP_DEBUG_ANY, "sasl_setprop failed: %d\n",
1181                                 sc, 0, 0 );
1182 #endif
1183
1184                         slap_sasl_close( conn );
1185                         return -1;
1186                 }
1187         }
1188
1189         sc = slap_sasl_err2ldap( sc );
1190 #endif
1191         return sc;
1192 }
1193
1194 int slap_sasl_external(
1195         Connection *conn,
1196         slap_ssf_t ssf,
1197         const char *auth_id )
1198 {
1199 #if SASL_VERSION_MAJOR >= 2
1200         int sc;
1201         sasl_conn_t *ctx = conn->c_sasl_authctx;
1202
1203         if ( ctx == NULL ) {
1204                 return LDAP_UNAVAILABLE;
1205         }
1206
1207         sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL, &ssf );
1208
1209         if ( sc != SASL_OK ) {
1210                 return LDAP_OTHER;
1211         }
1212
1213         sc = sasl_setprop( ctx, SASL_AUTH_EXTERNAL, auth_id );
1214
1215         if ( sc != SASL_OK ) {
1216                 return LDAP_OTHER;
1217         }
1218
1219 #elif defined(HAVE_CYRUS_SASL)
1220         int sc;
1221         sasl_conn_t *ctx = conn->c_sasl_authctx;
1222         sasl_external_properties_t extprops;
1223
1224         if ( ctx == NULL ) {
1225                 return LDAP_UNAVAILABLE;
1226         }
1227
1228         memset( &extprops, '\0', sizeof(extprops) );
1229         extprops.ssf = ssf;
1230         extprops.auth_id = (char *) auth_id;
1231
1232         sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL,
1233                 (void *) &extprops );
1234
1235         if ( sc != SASL_OK ) {
1236                 return LDAP_OTHER;
1237         }
1238 #endif
1239
1240         return LDAP_SUCCESS;
1241 }
1242
1243 int slap_sasl_reset( Connection *conn )
1244 {
1245         return LDAP_SUCCESS;
1246 }
1247
1248 char ** slap_sasl_mechs( Connection *conn )
1249 {
1250         char **mechs = NULL;
1251
1252 #ifdef HAVE_CYRUS_SASL
1253         sasl_conn_t *ctx = conn->c_sasl_authctx;
1254
1255         if( ctx == NULL ) ctx = conn->c_sasl_sockctx;
1256
1257         if( ctx != NULL ) {
1258                 int sc;
1259                 SASL_CONST char *mechstr;
1260
1261                 sc = sasl_listmech( ctx,
1262                         NULL, NULL, ",", NULL,
1263                         &mechstr, NULL, NULL );
1264
1265                 if( sc != SASL_OK ) {
1266 #ifdef NEW_LOGGING
1267                         LDAP_LOG( TRANSPORT, ERR, 
1268                                 "slap_sasl_mechs: sasl_listmech failed: %d\n", sc, 0, 0 );
1269 #else
1270                         Debug( LDAP_DEBUG_ANY, "slap_sasl_listmech failed: %d\n",
1271                                 sc, 0, 0 );
1272 #endif
1273
1274                         return NULL;
1275                 }
1276
1277                 mechs = ldap_str2charray( mechstr, "," );
1278
1279 #if SASL_VERSION_MAJOR < 2
1280                 ch_free( mechstr );
1281 #endif
1282         }
1283 #endif
1284
1285         return mechs;
1286 }
1287
1288 int slap_sasl_close( Connection *conn )
1289 {
1290 #ifdef HAVE_CYRUS_SASL
1291         sasl_conn_t *ctx = conn->c_sasl_authctx;
1292
1293         if( ctx != NULL ) {
1294                 sasl_dispose( &ctx );
1295         }
1296         if ( conn->c_sasl_sockctx && conn->c_sasl_authctx != conn->c_sasl_sockctx ) {
1297                 ctx = conn->c_sasl_sockctx;
1298                 sasl_dispose( &ctx );
1299         }
1300
1301         conn->c_sasl_authctx = NULL;
1302         conn->c_sasl_sockctx = NULL;
1303         conn->c_sasl_done = 0;
1304
1305         free( conn->c_sasl_extra );
1306         conn->c_sasl_extra = NULL;
1307 #endif
1308
1309         return LDAP_SUCCESS;
1310 }
1311
1312 int slap_sasl_bind( Operation *op, SlapReply *rs )
1313 {
1314 #ifdef HAVE_CYRUS_SASL
1315         sasl_conn_t *ctx = op->o_conn->c_sasl_authctx;
1316         struct berval response;
1317         unsigned reslen = 0;
1318         int sc;
1319
1320 #ifdef NEW_LOGGING
1321         LDAP_LOG( TRANSPORT, ENTRY, 
1322                 "sasl_bind: dn=\"%s\" mech=%s datalen=%ld\n",
1323                 op->o_req_dn.bv_len ? op->o_req_dn.bv_val : "",
1324                 op->o_conn->c_sasl_bind_in_progress ? "<continuing>" : 
1325                 op->o_conn->c_sasl_bind_mech.bv_val,
1326                 op->orb_cred.bv_len );
1327 #else
1328         Debug(LDAP_DEBUG_ARGS,
1329                 "==> sasl_bind: dn=\"%s\" mech=%s datalen=%ld\n",
1330                 op->o_req_dn.bv_len ? op->o_req_dn.bv_val : "",
1331                 op->o_conn->c_sasl_bind_in_progress ? "<continuing>" : 
1332                 op->o_conn->c_sasl_bind_mech.bv_val,
1333                 op->orb_cred.bv_len );
1334 #endif
1335
1336
1337         if( ctx == NULL ) {
1338                 send_ldap_error( op, rs, LDAP_UNAVAILABLE,
1339                         "SASL unavailable on this session" );
1340                 return rs->sr_err;
1341         }
1342
1343 #if SASL_VERSION_MAJOR >= 2
1344 #define START( ctx, mech, cred, clen, resp, rlen, err ) \
1345         sasl_server_start( ctx, mech, cred, clen, resp, rlen )
1346 #define STEP( ctx, cred, clen, resp, rlen, err ) \
1347         sasl_server_step( ctx, cred, clen, resp, rlen )
1348 #else
1349 #define START( ctx, mech, cred, clen, resp, rlen, err ) \
1350         sasl_server_start( ctx, mech, cred, clen, resp, rlen, err )
1351 #define STEP( ctx, cred, clen, resp, rlen, err ) \
1352         sasl_server_step( ctx, cred, clen, resp, rlen, err )
1353 #endif
1354
1355         if ( !op->o_conn->c_sasl_bind_in_progress ) {
1356                 /* If we already authenticated once, must use a new context */
1357                 if ( op->o_conn->c_sasl_done ) {
1358                         slap_ssf_t ssf = 0;
1359                         const char *authid = NULL;
1360 #if SASL_VERSION_MAJOR >= 2
1361                         sasl_getprop( ctx, SASL_SSF_EXTERNAL, (void *)&ssf );
1362                         sasl_getprop( ctx, SASL_AUTH_EXTERNAL, (void *)&authid );
1363                         if ( authid ) authid = ch_strdup( authid );
1364 #endif
1365                         if ( ctx != op->o_conn->c_sasl_sockctx ) {
1366                                 sasl_dispose( &ctx );
1367                         }
1368                         op->o_conn->c_sasl_authctx = NULL;
1369                                 
1370                         slap_sasl_open( op->o_conn, 1 );
1371                         ctx = op->o_conn->c_sasl_authctx;
1372 #if SASL_VERSION_MAJOR >= 2
1373                         if ( authid ) {
1374                                 sasl_setprop( ctx, SASL_SSF_EXTERNAL, &ssf );
1375                                 sasl_setprop( ctx, SASL_AUTH_EXTERNAL, authid );
1376                                 ch_free( (char *)authid );
1377                         }
1378 #endif
1379                 }
1380                 sc = START( ctx,
1381                         op->o_conn->c_sasl_bind_mech.bv_val,
1382                         op->orb_cred.bv_val, op->orb_cred.bv_len,
1383                         (SASL_CONST char **)&response.bv_val, &reslen, &rs->sr_text );
1384
1385         } else {
1386                 sc = STEP( ctx,
1387                         op->orb_cred.bv_val, op->orb_cred.bv_len,
1388                         (SASL_CONST char **)&response.bv_val, &reslen, &rs->sr_text );
1389         }
1390
1391         response.bv_len = reslen;
1392
1393         if ( sc == SASL_OK ) {
1394                 sasl_ssf_t *ssf = NULL;
1395
1396                 op->orb_edn = op->o_conn->c_sasl_dn;
1397                 op->o_conn->c_sasl_dn.bv_val = NULL;
1398                 op->o_conn->c_sasl_dn.bv_len = 0;
1399                 op->o_conn->c_sasl_done = 1;
1400
1401                 rs->sr_err = LDAP_SUCCESS;
1402
1403                 (void) sasl_getprop( ctx, SASL_SSF, (void *)&ssf );
1404                 op->orb_ssf = ssf ? *ssf : 0;
1405
1406                 ctx = NULL;
1407                 if( op->orb_ssf ) {
1408                         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1409                         op->o_conn->c_sasl_layers++;
1410
1411                         /* If there's an old layer, set sockctx to NULL to
1412                          * tell connection_read() to wait for us to finish.
1413                          * Otherwise there is a race condition: we have to
1414                          * send the Bind response using the old security
1415                          * context and then remove it before reading any
1416                          * new messages.
1417                          */
1418                         if ( op->o_conn->c_sasl_sockctx ) {
1419                                 ctx = op->o_conn->c_sasl_sockctx;
1420                                 op->o_conn->c_sasl_sockctx = NULL;
1421                         } else {
1422                                 op->o_conn->c_sasl_sockctx = op->o_conn->c_sasl_authctx;
1423                         }
1424                         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1425                 }
1426
1427                 /* Must send response using old security layer */
1428                 if (response.bv_len) rs->sr_sasldata = &response;
1429                 send_ldap_sasl( op, rs );
1430                 
1431                 /* Now dispose of the old security layer.
1432                  */
1433                 if ( ctx ) {
1434                         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1435                         ldap_pvt_sasl_remove( op->o_conn->c_sb );
1436                         op->o_conn->c_sasl_sockctx = op->o_conn->c_sasl_authctx;
1437                         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1438                         sasl_dispose( &ctx );
1439                 }
1440         } else if ( sc == SASL_CONTINUE ) {
1441                 rs->sr_err = LDAP_SASL_BIND_IN_PROGRESS,
1442                 rs->sr_sasldata = &response;
1443                 send_ldap_sasl( op, rs );
1444
1445         } else {
1446 #if SASL_VERSION_MAJOR >= 2
1447                 rs->sr_text = sasl_errdetail( ctx );
1448 #endif
1449                 rs->sr_err = slap_sasl_err2ldap( sc ),
1450                 send_ldap_result( op, rs );
1451         }
1452
1453 #if SASL_VERSION_MAJOR < 2
1454         if( response.bv_len ) {
1455                 ch_free( response.bv_val );
1456         }
1457 #endif
1458
1459 #ifdef NEW_LOGGING
1460         LDAP_LOG( TRANSPORT, RESULTS, "slap_sasl_bind: rc=%d\n", rs->sr_err, 0, 0 );
1461 #else
1462         Debug(LDAP_DEBUG_TRACE, "<== slap_sasl_bind: rc=%d\n", rs->sr_err, 0, 0);
1463 #endif
1464
1465
1466 #else
1467         send_ldap_error( op, rs, LDAP_UNAVAILABLE,
1468                 "SASL not supported" );
1469 #endif
1470
1471         return rs->sr_err;
1472 }
1473
1474 char* slap_sasl_secprops( const char *in )
1475 {
1476 #ifdef HAVE_CYRUS_SASL
1477         int rc = ldap_pvt_sasl_secprops( in, &sasl_secprops );
1478
1479         return rc == LDAP_SUCCESS ? NULL : "Invalid security properties";
1480 #else
1481         return "SASL not supported";
1482 #endif
1483 }
1484
1485 #ifdef HAVE_CYRUS_SASL
1486 int
1487 slap_sasl_setpass( Operation *op, SlapReply *rs )
1488 {
1489         struct berval id = { 0, NULL }; /* needs to come from connection */
1490         struct berval new = { 0, NULL };
1491         struct berval old = { 0, NULL };
1492
1493         assert( ber_bvcmp( &slap_EXOP_MODIFY_PASSWD, &op->ore_reqoid ) == 0 );
1494
1495         rs->sr_err = sasl_getprop( op->o_conn->c_sasl_authctx, SASL_USERNAME,
1496                 (SASL_CONST void **)&id.bv_val );
1497
1498         if( rs->sr_err != SASL_OK ) {
1499                 rs->sr_text = "unable to retrieve SASL username";
1500                 rs->sr_err = LDAP_OTHER;
1501                 goto done;
1502         }
1503
1504 #ifdef NEW_LOGGING
1505         LDAP_LOG( BACKEND, ENTRY,
1506                 "slap_sasl_setpass: \"%s\"\n",
1507                 id.bv_val ? id.bv_val : "", 0, 0);
1508 #else
1509         Debug( LDAP_DEBUG_ARGS, "==> slap_sasl_setpass: \"%s\"\n",
1510                 id.bv_val ? id.bv_val : "", 0, 0 );
1511 #endif
1512
1513         rs->sr_err = slap_passwd_parse( op->ore_reqdata,
1514                 NULL, &old, &new, &rs->sr_text );
1515
1516         if( rs->sr_err != LDAP_SUCCESS ) {
1517                 goto done;
1518         }
1519
1520         if( new.bv_len == 0 ) {
1521                 slap_passwd_generate(&new);
1522
1523                 if( new.bv_len == 0 ) {
1524                         rs->sr_text = "password generation failed.";
1525                         rs->sr_err = LDAP_OTHER;
1526                         goto done;
1527                 }
1528                 
1529                 rs->sr_rspdata = slap_passwd_return( &new );
1530         }
1531
1532 #if SASL_VERSION_MAJOR < 2
1533         rs->sr_err = sasl_setpass( op->o_conn->c_sasl_authctx,
1534                 id.bv_val, new.bv_val, new.bv_len, 0, &rs->sr_text );
1535 #else
1536         rs->sr_err = sasl_setpass( op->o_conn->c_sasl_authctx, id.bv_val,
1537                 new.bv_val, new.bv_len, old.bv_val, old.bv_len, 0 );
1538         if( rs->sr_err != SASL_OK ) {
1539                 rs->sr_text = sasl_errdetail( op->o_conn->c_sasl_authctx );
1540         }
1541 #endif
1542         switch(rs->sr_err) {
1543                 case SASL_OK:
1544                         rs->sr_err = LDAP_SUCCESS;
1545                         break;
1546
1547                 case SASL_NOCHANGE:
1548                 case SASL_NOMECH:
1549                 case SASL_DISABLED:
1550                 case SASL_PWLOCK:
1551                 case SASL_FAIL:
1552                 case SASL_BADPARAM:
1553                 default:
1554                         rs->sr_err = LDAP_OTHER;
1555         }
1556
1557 done:
1558         return rs->sr_err;
1559 }
1560 #endif /* HAVE_CYRUS_SASL */
1561
1562 /* Take any sort of identity string and return a DN with the "dn:" prefix. The
1563    string returned in *dn is in its own allocated memory, and must be free'd 
1564    by the calling process.
1565    -Mark Adamson, Carnegie Mellon
1566
1567    The "dn:" prefix is no longer used anywhere inside slapd. It is only used
1568    on strings passed in directly from SASL.
1569    -Howard Chu, Symas Corp.
1570 */
1571
1572 #define SET_NONE        0
1573 #define SET_DN          1
1574 #define SET_U           2
1575
1576 static struct berval ext_bv = BER_BVC( "EXTERNAL" );
1577
1578 int slap_sasl_getdn( Connection *conn, Operation *op, char *id, int len,
1579         char *user_realm, struct berval *dn, int flags )
1580 {
1581         char *c1;
1582         int rc, is_dn = SET_NONE, do_norm = 1;
1583         struct berval dn2;
1584
1585 #ifdef NEW_LOGGING
1586         LDAP_LOG( TRANSPORT, ENTRY, 
1587                 "slap_sasl_getdn: conn %d id=%s [len=%d]\n",
1588                 conn ? conn->c_connid : -1, id ? (*id ? id : "<empty>") : "NULL", len );
1589 #else
1590         Debug( LDAP_DEBUG_ARGS, "slap_sasl_getdn: id=%s [len=%d]\n", 
1591                 id ? ( *id ? id : "<empty>" ) : "NULL", len, 0 );
1592 #endif
1593
1594         if ( !op ) {
1595                 op = conn->c_sasl_bindop;
1596         }
1597
1598         dn->bv_val = NULL;
1599         dn->bv_len = 0;
1600
1601         if ( id ) {
1602                 if ( len == 0 ) len = strlen( id );
1603
1604                 /* Blatantly anonymous ID */
1605                 if ( len == sizeof("anonymous") - 1 &&
1606                         !strcasecmp( id, "anonymous" ) ) {
1607                         return( LDAP_SUCCESS );
1608                 }
1609         } else {
1610                 len = 0;
1611         }
1612
1613         /* An authcID needs to be converted to authzID form. Set the
1614          * values directly into *dn; they will be normalized later. (and
1615          * normalizing always makes a new copy.) An ID from a TLS certificate
1616          * is already normalized, so copy it and skip normalization.
1617          */
1618         if( flags & SLAP_GETDN_AUTHCID ) {
1619                 if( conn->c_sasl_bind_mech.bv_len == ext_bv.bv_len &&
1620                         strcasecmp( ext_bv.bv_val, conn->c_sasl_bind_mech.bv_val ) == 0 )
1621                 {
1622                         /* EXTERNAL DNs are already normalized */
1623                         do_norm = 0;
1624                         is_dn = SET_DN;
1625                         ber_str2bv_x( id, len, 1, dn, op->o_tmpmemctx );
1626
1627                 } else {
1628                         /* convert to u:<username> form */
1629                         is_dn = SET_U;
1630                         dn->bv_val = id;
1631                         dn->bv_len = len;
1632                 }
1633         }
1634         if( is_dn == SET_NONE ) {
1635                 if( !strncasecmp( id, "u:", sizeof("u:")-1 )) {
1636                         is_dn = SET_U;
1637                         dn->bv_val = id+2;
1638                         dn->bv_len = len-2;
1639                 } else if ( !strncasecmp( id, "dn:", sizeof("dn:")-1) ) {
1640                         is_dn = SET_DN;
1641                         dn->bv_val = id+3;
1642                         dn->bv_len = len-3;
1643                 }
1644         }
1645
1646         /* No other possibilities from here */
1647         if( is_dn == SET_NONE ) {
1648                 dn->bv_val = NULL;
1649                 dn->bv_len = 0;
1650                 return( LDAP_INAPPROPRIATE_AUTH );
1651         }
1652
1653         /* Username strings */
1654         if( is_dn == SET_U ) {
1655                 char *p, *realm;
1656                 len = dn->bv_len + sizeof("uid=")-1 + sizeof(",cn=auth")-1;
1657
1658                 /* username may have embedded realm name */
1659                 if( ( realm = strchr( dn->bv_val, '@') ) ) {
1660                         *realm++ = '\0';
1661                         len += sizeof(",cn=")-2;
1662                 } else if( user_realm && *user_realm ) {
1663                         len += strlen( user_realm ) + sizeof(",cn=")-1;
1664                 }
1665
1666                 if( conn->c_sasl_bind_mech.bv_len ) {
1667                         len += conn->c_sasl_bind_mech.bv_len + sizeof(",cn=")-1;
1668                 }
1669
1670                 /* Build the new dn */
1671                 c1 = dn->bv_val;
1672                 dn->bv_val = sl_malloc( len+1, op->o_tmpmemctx );
1673                 if( dn->bv_val == NULL ) {
1674 #ifdef NEW_LOGGING
1675                         LDAP_LOG( TRANSPORT, ERR, 
1676                                 "slap_sasl_getdn: SLAP_MALLOC failed", 0, 0, 0 );
1677 #else
1678                         Debug( LDAP_DEBUG_ANY, 
1679                                 "slap_sasl_getdn: SLAP_MALLOC failed", 0, 0, 0 );
1680 #endif
1681                         return LDAP_OTHER;
1682                 }
1683                 p = lutil_strcopy( dn->bv_val, "uid=" );
1684                 p = lutil_strncopy( p, c1, dn->bv_len );
1685
1686                 if( realm ) {
1687                         int rlen = dn->bv_len - ( realm - c1 );
1688                         p = lutil_strcopy( p, ",cn=" );
1689                         p = lutil_strncopy( p, realm, rlen );
1690                         realm[-1] = '@';
1691                 } else if( user_realm && *user_realm ) {
1692                         p = lutil_strcopy( p, ",cn=" );
1693                         p = lutil_strcopy( p, user_realm );
1694                 }
1695
1696                 if( conn->c_sasl_bind_mech.bv_len ) {
1697                         p = lutil_strcopy( p, ",cn=" );
1698                         p = lutil_strcopy( p, conn->c_sasl_bind_mech.bv_val );
1699                 }
1700                 p = lutil_strcopy( p, ",cn=auth" );
1701                 dn->bv_len = p - dn->bv_val;
1702
1703 #ifdef NEW_LOGGING
1704                 LDAP_LOG( TRANSPORT, ENTRY, 
1705                         "slap_sasl_getdn: u:id converted to %s.\n", dn->bv_val, 0, 0 );
1706 #else
1707                 Debug( LDAP_DEBUG_TRACE, "getdn: u:id converted to %s\n", dn->bv_val,0,0 );
1708 #endif
1709         } else {
1710                 
1711                 /* Dup the DN in any case, so we don't risk 
1712                  * leaks or dangling pointers later,
1713                  * and the DN value is '\0' terminated */
1714                 ber_dupbv_x( &dn2, dn, op->o_tmpmemctx );
1715                 dn->bv_val = dn2.bv_val;
1716         }
1717
1718         /* All strings are in DN form now. Normalize if needed. */
1719         if ( do_norm ) {
1720                 rc = dnNormalize( 0, NULL, NULL, dn, &dn2, op->o_tmpmemctx );
1721
1722                 /* User DNs were constructed above and must be freed now */
1723                 sl_free( dn->bv_val, op->o_tmpmemctx );
1724
1725                 if ( rc != LDAP_SUCCESS ) {
1726                         dn->bv_val = NULL;
1727                         dn->bv_len = 0;
1728                         return rc;
1729                 }
1730                 *dn = dn2;
1731         }
1732
1733         /* Run thru regexp */
1734         slap_sasl2dn( op, dn, &dn2 );
1735         if( dn2.bv_val ) {
1736                 sl_free( dn->bv_val, op->o_tmpmemctx );
1737                 *dn = dn2;
1738 #ifdef NEW_LOGGING
1739                 LDAP_LOG( TRANSPORT, ENTRY, 
1740                         "slap_sasl_getdn: dn:id converted to %s.\n", dn->bv_val, 0, 0 );
1741 #else
1742                 Debug( LDAP_DEBUG_TRACE, "getdn: dn:id converted to %s\n",
1743                         dn->bv_val, 0, 0 );
1744 #endif
1745         }
1746
1747         return( LDAP_SUCCESS );
1748 }