]> git.sur5r.net Git - openldap/blob - libraries/libldap/cyrus.c
5f9362e83c60bf705b3bd97f0d3cc8c055fd3af7
[openldap] / libraries / libldap / cyrus.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1999-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6
7 #include "portable.h"
8
9 #include <stdlib.h>
10 #include <stdio.h>
11
12 #include <ac/socket.h>
13 #include <ac/string.h>
14 #include <ac/time.h>
15 #include <ac/errno.h>
16
17 #include "ldap-int.h"
18 #ifdef LDAP_R_COMPILE
19 #include "ldap_pvt_thread.h"
20 #endif
21
22 #ifdef HAVE_CYRUS_SASL
23 #include <sasl.h>
24
25 /*
26 * Various Cyrus SASL related stuff.
27 */
28
29 #define SASL_MAX_BUFF_SIZE      65536
30 #define SASL_MIN_BUFF_SIZE      4096
31
32 int ldap_int_sasl_init( void )
33 {
34         /* XXX not threadsafe */
35         static int sasl_initialized = 0;
36
37         static sasl_callback_t client_callbacks[] = {
38 #ifdef SASL_CB_GETREALM
39                 { SASL_CB_GETREALM, NULL, NULL },
40 #endif
41                 { SASL_CB_USER, NULL, NULL },
42                 { SASL_CB_AUTHNAME, NULL, NULL },
43                 { SASL_CB_PASS, NULL, NULL },
44                 { SASL_CB_ECHOPROMPT, NULL, NULL },
45                 { SASL_CB_NOECHOPROMPT, NULL, NULL },
46                 { SASL_CB_LIST_END, NULL, NULL }
47         };
48
49         if ( sasl_initialized ) {
50                 return 0;
51         }
52
53 #ifndef CSRIMALLOC
54         sasl_set_alloc(
55                 ber_memalloc,
56                 ber_memcalloc,
57                 ber_memrealloc,
58                 ber_memfree );
59 #endif /* CSRIMALLOC */
60
61 #ifdef LDAP_R_COMPILE
62         sasl_set_mutex(
63                 ldap_pvt_sasl_mutex_new,
64                 ldap_pvt_sasl_mutex_lock,
65                 ldap_pvt_sasl_mutex_unlock,    
66                 ldap_pvt_sasl_mutex_dispose );    
67 #endif
68
69         if ( sasl_client_init( client_callbacks ) == SASL_OK ) {
70                 sasl_initialized = 1;
71                 return 0;
72         }
73
74         return -1;
75 }
76
77 /*
78  * SASL encryption support for LBER Sockbufs
79  */
80
81 struct sb_sasl_data {
82         sasl_conn_t             *sasl_context;
83         Sockbuf_Buf             sec_buf_in;
84         Sockbuf_Buf             buf_in;
85         Sockbuf_Buf             buf_out;
86 };
87
88 static int
89 sb_sasl_setup( Sockbuf_IO_Desc *sbiod, void *arg )
90 {
91         struct sb_sasl_data     *p;
92
93         assert( sbiod != NULL );
94
95         p = LBER_MALLOC( sizeof( *p ) );
96         if ( p == NULL )
97                 return -1;
98         p->sasl_context = (sasl_conn_t *)arg;
99         ber_pvt_sb_buf_init( &p->sec_buf_in );
100         ber_pvt_sb_buf_init( &p->buf_in );
101         ber_pvt_sb_buf_init( &p->buf_out );
102         if ( ber_pvt_sb_grow_buffer( &p->sec_buf_in, SASL_MIN_BUFF_SIZE ) < 0 ) {
103                 errno = ENOMEM;
104                 return -1;
105         }
106
107         sbiod->sbiod_pvt = p;
108
109         return 0;
110 }
111
112 static int
113 sb_sasl_remove( Sockbuf_IO_Desc *sbiod )
114 {
115         struct sb_sasl_data     *p;
116
117         assert( sbiod != NULL );
118         
119         p = (struct sb_sasl_data *)sbiod->sbiod_pvt;
120         ber_pvt_sb_buf_destroy( &p->sec_buf_in );
121         ber_pvt_sb_buf_destroy( &p->buf_in );
122         ber_pvt_sb_buf_destroy( &p->buf_out );
123         LBER_FREE( p );
124         sbiod->sbiod_pvt = NULL;
125         return 0;
126 }
127
128 static ber_len_t
129 sb_sasl_pkt_length( const char *buf, int debuglevel )
130 {
131         ber_len_t               size;
132         long                    tmp;
133
134         assert( buf != NULL );
135
136         tmp = *((long *)buf);
137         size = ntohl( tmp );
138    
139         if ( size > SASL_MAX_BUFF_SIZE ) {
140                 /* somebody is trying to mess me up. */
141                 ber_log_printf( LDAP_DEBUG_ANY, debuglevel,
142                         "sb_sasl_pkt_length: received illegal packet length "
143                         "of %lu bytes\n", (unsigned long)size );      
144                 size = 16; /* this should lead to an error. */
145 }
146
147         return size + 4; /* include the size !!! */
148 }
149
150 /* Drop a processed packet from the input buffer */
151 static void
152 sb_sasl_drop_packet ( Sockbuf_Buf *sec_buf_in, int debuglevel )
153 {
154         ber_slen_t                      len;
155
156         len = sec_buf_in->buf_ptr - sec_buf_in->buf_end;
157         if ( len > 0 )
158                 memmove( sec_buf_in->buf_base, sec_buf_in->buf_base +
159                         sec_buf_in->buf_end, len );
160    
161         if ( len >= 4 ) {
162                 sec_buf_in->buf_end = sb_sasl_pkt_length( sec_buf_in->buf_base,
163                         debuglevel);
164         }
165         else {
166                 sec_buf_in->buf_end = 0;
167         }
168         sec_buf_in->buf_ptr = len;
169 }
170
171 static ber_slen_t
172 sb_sasl_read( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
173 {
174         struct sb_sasl_data     *p;
175         ber_slen_t              ret, bufptr;
176    
177         assert( sbiod != NULL );
178         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
179
180         p = (struct sb_sasl_data *)sbiod->sbiod_pvt;
181
182         /* Are there anything left in the buffer? */
183         ret = ber_pvt_sb_copy_out( &p->buf_in, buf, len );
184         bufptr = ret;
185         len -= ret;
186
187         if ( len == 0 )
188                 return bufptr;
189
190         ber_pvt_sb_buf_destroy( &p->buf_in );
191
192         /* Read the length of the packet */
193         while ( p->sec_buf_in.buf_ptr < 4 ) {
194                 ret = LBER_SBIOD_READ_NEXT( sbiod, p->sec_buf_in.buf_base,
195                         4 - p->sec_buf_in.buf_ptr );
196 #ifdef EINTR
197                 if ( ( ret < 0 ) && ( errno == EINTR ) )
198                         continue;
199 #endif
200                 if ( ret <= 0 )
201                         return ret;
202
203                 p->sec_buf_in.buf_ptr += ret;
204         }
205
206         /* The new packet always starts at p->sec_buf_in.buf_base */
207         ret = sb_sasl_pkt_length( p->sec_buf_in.buf_base,
208                 sbiod->sbiod_sb->sb_debug );
209
210         /* Grow the packet buffer if neccessary */
211         if ( ( p->sec_buf_in.buf_size < ret ) && 
212                         ber_pvt_sb_grow_buffer( &p->sec_buf_in, ret ) < 0 ) {
213                 errno = ENOMEM;
214                 return -1;
215         }
216         p->sec_buf_in.buf_end = ret;
217
218         /* Did we read the whole encrypted packet? */
219         while ( p->sec_buf_in.buf_ptr < p->sec_buf_in.buf_end ) {
220                 /* No, we have got only a part of it */
221                 ret = p->sec_buf_in.buf_end - p->sec_buf_in.buf_ptr;
222
223                 ret = LBER_SBIOD_READ_NEXT( sbiod, p->sec_buf_in.buf_base +
224                         p->sec_buf_in.buf_ptr, ret );
225 #ifdef EINTR
226                 if ( ( ret < 0 ) && ( errno == EINTR ) )
227                         continue;
228 #endif
229                 if ( ret <= 0 )
230                         return ret;
231
232                 p->sec_buf_in.buf_ptr += ret;
233         }
234
235         /* Decode the packet */
236         ret = sasl_decode( p->sasl_context, p->sec_buf_in.buf_base,
237                 p->sec_buf_in.buf_end, &p->buf_in.buf_base,
238                 (unsigned *)&p->buf_in.buf_end );
239         if ( ret != SASL_OK ) {
240                 ber_log_printf( LDAP_DEBUG_ANY, sbiod->sbiod_sb->sb_debug,
241                         "sb_sasl_read: failed to decode packet: %s\n",
242                         sasl_errstring( ret, NULL, NULL ) );
243                 sb_sasl_drop_packet( &p->sec_buf_in,
244                         sbiod->sbiod_sb->sb_debug );
245                 errno = EIO;
246                 return -1;
247         }
248         
249         /* Drop the packet from the input buffer */
250         sb_sasl_drop_packet( &p->sec_buf_in, sbiod->sbiod_sb->sb_debug );
251
252         p->buf_in.buf_size = p->buf_in.buf_end;
253
254         bufptr += ber_pvt_sb_copy_out( &p->buf_in, (char*) buf + bufptr, len );
255
256         return bufptr;
257 }
258
259 static ber_slen_t
260 sb_sasl_write( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
261 {
262         struct sb_sasl_data     *p;
263         int                     ret;
264
265         assert( sbiod != NULL );
266         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
267
268         p = (struct sb_sasl_data *)sbiod->sbiod_pvt;
269
270         /* Are there anything left in the buffer? */
271         if ( p->buf_out.buf_ptr != p->buf_out.buf_end ) {
272                 ret = ber_pvt_sb_do_write( sbiod, &p->buf_out );
273                 if ( ret <= 0 )
274                         return ret;
275         }
276
277         /* now encode the next packet. */
278         ber_pvt_sb_buf_destroy( &p->buf_out );
279         ret = sasl_encode( p->sasl_context, buf, len, &p->buf_out.buf_base,
280                 (unsigned *)&p->buf_out.buf_size );
281         if ( ret != SASL_OK ) {
282                 ber_log_printf( LDAP_DEBUG_ANY, sbiod->sbiod_sb->sb_debug,
283                         "sb_sasl_write: failed to encode packet: %s\n",
284                         sasl_errstring( ret, NULL, NULL ) );
285                 return -1;
286         }
287         p->buf_out.buf_end = p->buf_out.buf_size;
288
289         ret = ber_pvt_sb_do_write( sbiod, &p->buf_out );
290         if ( ret <= 0 )
291                 return ret;
292         return len;
293 }
294
295 static int
296 sb_sasl_ctrl( Sockbuf_IO_Desc *sbiod, int opt, void *arg )
297 {
298         struct sb_sasl_data     *p;
299
300         p = (struct sb_sasl_data *)sbiod->sbiod_pvt;
301
302         if ( opt == LBER_SB_OPT_DATA_READY ) {
303                 if ( p->buf_in.buf_ptr != p->buf_in.buf_end )
304                         return 1;
305         }
306         
307         return LBER_SBIOD_CTRL_NEXT( sbiod, opt, arg );
308 }
309
310 Sockbuf_IO ldap_pvt_sockbuf_io_sasl = {
311         sb_sasl_setup,          /* sbi_setup */
312         sb_sasl_remove,         /* sbi_remove */
313         sb_sasl_ctrl,           /* sbi_ctrl */
314         sb_sasl_read,           /* sbi_read */
315         sb_sasl_write,          /* sbi_write */
316         NULL                    /* sbi_close */
317 };
318
319 int ldap_pvt_sasl_install( Sockbuf *sb, void *ctx_arg )
320 {
321         Debug( LDAP_DEBUG_TRACE, "ldap_pvt_sasl_install\n",
322                 0, 0, 0 );
323
324         /* don't install the stuff unless security has been negotiated */
325
326         if ( !ber_sockbuf_ctrl( sb, LBER_SB_OPT_HAS_IO,
327                         &ldap_pvt_sockbuf_io_sasl ) )
328                 ber_sockbuf_add_io( sb, &ldap_pvt_sockbuf_io_sasl,
329                         LBER_SBIOD_LEVEL_APPLICATION, ctx_arg );
330
331         return LDAP_SUCCESS;
332 }
333
334 static int
335 sasl_err2ldap( int saslerr )
336 {
337         int rc;
338
339         switch (saslerr) {
340                 case SASL_CONTINUE:
341                         rc = LDAP_MORE_RESULTS_TO_RETURN;
342                         break;
343                 case SASL_OK:
344                         rc = LDAP_SUCCESS;
345                         break;
346                 case SASL_FAIL:
347                         rc = LDAP_LOCAL_ERROR;
348                         break;
349                 case SASL_NOMEM:
350                         rc = LDAP_NO_MEMORY;
351                         break;
352                 case SASL_NOMECH:
353                         rc = LDAP_AUTH_UNKNOWN;
354                         break;
355                 case SASL_BADAUTH:
356                         rc = LDAP_AUTH_UNKNOWN;
357                         break;
358                 case SASL_NOAUTHZ:
359                         rc = LDAP_PARAM_ERROR;
360                         break;
361                 case SASL_TOOWEAK:
362                 case SASL_ENCRYPT:
363                         rc = LDAP_AUTH_UNKNOWN;
364                         break;
365                 default:
366                         rc = LDAP_LOCAL_ERROR;
367                         break;
368         }
369
370         assert( rc == LDAP_SUCCESS || LDAP_API_ERROR( rc ) );
371         return rc;
372 }
373
374 int
375 ldap_int_sasl_open(
376         LDAP *ld, 
377         LDAPConn *lc,
378         const char * host,
379         ber_len_t ssf )
380 {
381         int rc;
382         sasl_conn_t *ctx;
383
384         sasl_callback_t *session_callbacks =
385                 ber_memcalloc( 2, sizeof( sasl_callback_t ) );
386
387         if( session_callbacks == NULL ) return LDAP_NO_MEMORY;
388
389         session_callbacks[0].id = SASL_CB_USER;
390         session_callbacks[0].proc = NULL;
391         session_callbacks[0].context = ld;
392
393         session_callbacks[1].id = SASL_CB_LIST_END;
394         session_callbacks[1].proc = NULL;
395         session_callbacks[1].context = NULL;
396
397         assert( lc->lconn_sasl_ctx == NULL );
398
399         if ( host == NULL ) {
400                 ld->ld_errno = LDAP_UNAVAILABLE;
401                 return ld->ld_errno;
402         }
403
404         rc = sasl_client_new( "ldap", host,
405                 session_callbacks,
406 #ifdef LDAP_SASL_SECURITY_LAYER
407                 SASL_SECURITY_LAYER,
408 #else
409                 0,
410 #endif
411                 &ctx );
412
413         if ( rc != SASL_OK ) {
414                 ld->ld_errno = sasl_err2ldap( rc );
415                 return ld->ld_errno;
416         }
417
418         Debug( LDAP_DEBUG_TRACE, "ldap_int_sasl_open: %s\n",
419                 host, 0, 0 );
420
421         lc->lconn_sasl_ctx = ctx;
422
423         if( ssf ) {
424                 sasl_external_properties_t extprops;
425                 memset(&extprops, 0L, sizeof(extprops));
426                 extprops.ssf = ssf;
427
428                 (void) sasl_setprop( ctx, SASL_SSF_EXTERNAL,
429                         (void *) &extprops );
430
431                 Debug( LDAP_DEBUG_TRACE, "ldap_int_sasl_open: ssf=%ld\n",
432                         (long) ssf, 0, 0 );
433         }
434
435         return LDAP_SUCCESS;
436 }
437
438 int ldap_int_sasl_close( LDAP *ld, LDAPConn *lc )
439 {
440         sasl_conn_t *ctx = lc->lconn_sasl_ctx;
441         assert( ctx != NULL );
442
443         if( ctx ) {
444                 sasl_dispose( &ctx );
445                 lc->lconn_sasl_ctx = NULL;
446         }
447
448         return LDAP_SUCCESS;
449 }
450
451 int
452 ldap_int_sasl_bind(
453         LDAP                    *ld,
454         const char              *dn,
455         const char              *mechs,
456         LDAPControl             **sctrls,
457         LDAPControl             **cctrls )
458 {
459         char *data;
460         const char *mech = NULL;
461         const char *pmech = NULL;
462         int                     saslrc, rc;
463         sasl_ssf_t              *ssf = NULL;
464         sasl_conn_t     *ctx;
465         sasl_interact_t *prompts = NULL;
466         unsigned credlen;
467         struct berval ccred, *scred;
468         ber_socket_t            sd;
469
470         Debug( LDAP_DEBUG_TRACE, "ldap_int_sasl_bind: %s\n",
471                 mechs ? mechs : "<null>", 0, 0 );
472
473         /* do a quick !LDAPv3 check... ldap_sasl_bind will do the rest. */
474         if (ld->ld_version < LDAP_VERSION3) {
475                 ld->ld_errno = LDAP_NOT_SUPPORTED;
476                 return ld->ld_errno;
477         }
478
479         ber_sockbuf_ctrl( ld->ld_sb, LBER_SB_OPT_GET_FD, &sd );
480
481         if ( sd == AC_SOCKET_INVALID ) {
482                 /* not connected yet */
483                 int rc = ldap_open_defconn( ld );
484   
485                 if( rc < 0 ) return ld->ld_errno;
486                 ber_sockbuf_ctrl( ld->ld_sb, LBER_SB_OPT_GET_FD, &sd );
487
488                 if( sd == AC_SOCKET_INVALID ) {
489                         ld->ld_errno = LDAP_UNAVAILABLE;
490                         return ld->ld_errno;
491                 }
492         }   
493
494         ctx = ld->ld_defconn->lconn_sasl_ctx;
495
496         if( ctx == NULL ) {
497                 ld->ld_errno = LDAP_UNAVAILABLE;
498                 return ld->ld_errno;
499         }
500
501         /* (re)set security properties */
502         sasl_setprop( ctx, SASL_SEC_PROPS,
503                 &ld->ld_options.ldo_sasl_secprops );
504
505         ccred.bv_val = NULL;
506         ccred.bv_len = 0;
507
508         do {
509                 saslrc = sasl_client_start( ctx,
510                         mechs,
511                         NULL,
512                         &prompts,
513                         &ccred.bv_val,
514                         &credlen,
515                         &mech );
516
517                 if( pmech == NULL && mech != NULL ) {
518                         pmech = mech;
519
520                         fprintf(stderr,
521                                 "SASL/%s authentication started\n",
522                                 pmech );
523                 }
524
525                 if( saslrc == SASL_INTERACT ) {
526                         if( !ld->ld_options.ldo_sasl_interact ) break;
527                         rc = (ld->ld_options.ldo_sasl_interact)( ld, prompts );
528                         if( rc != LDAP_SUCCESS ) {
529                                 break;
530                         }
531                 }
532         } while ( saslrc == SASL_INTERACT );
533
534         ccred.bv_len = credlen;
535
536         if ( (saslrc != SASL_OK) && (saslrc != SASL_CONTINUE) ) {
537                 ld->ld_errno = sasl_err2ldap( saslrc );
538                 return ld->ld_errno;
539         }
540
541         scred = NULL;
542
543         do {
544                 unsigned credlen;
545
546                 rc = ldap_sasl_bind_s( ld, dn, mech, &ccred, sctrls, cctrls, &scred );
547
548                 if ( rc == LDAP_SUCCESS ) {
549                         break;
550                 } else if ( rc != LDAP_SASL_BIND_IN_PROGRESS ) {
551                         if ( ccred.bv_val != NULL ) {
552                                 LDAP_FREE( ccred.bv_val );
553                         }
554                         return ld->ld_errno;
555                 }
556
557                 if ( ccred.bv_val != NULL ) {
558                         LDAP_FREE( ccred.bv_val );
559                         ccred.bv_val = NULL;
560                 }
561
562                 do {
563                         saslrc = sasl_client_step( ctx,
564                                 (scred == NULL) ? NULL : scred->bv_val,
565                                 (scred == NULL) ? 0 : scred->bv_len,
566                                 &prompts,
567                                 &ccred.bv_val,
568                                 &credlen );
569
570                         Debug( LDAP_DEBUG_TRACE, "sasl_client_start: %d\n",
571                                 saslrc, 0, 0 );
572
573                         if( saslrc == SASL_INTERACT ) {
574                                 int res;
575                                 if( !ld->ld_options.ldo_sasl_interact ) break;
576                                 res = (ld->ld_options.ldo_sasl_interact)( ld, prompts );
577                                 if( res != LDAP_SUCCESS ) {
578                                         break;
579                                 }
580                         }
581                 } while ( saslrc == SASL_INTERACT );
582
583                 ccred.bv_len = credlen;
584                 ber_bvfree( scred );
585
586                 if ( (saslrc != SASL_OK) && (saslrc != SASL_CONTINUE) ) {
587                         ld->ld_errno = sasl_err2ldap( saslrc );
588                         return ld->ld_errno;
589                 }
590         } while ( rc == LDAP_SASL_BIND_IN_PROGRESS );
591
592         assert ( rc == LDAP_SUCCESS );
593
594         /* likely should add a quiet option */
595
596         saslrc = sasl_getprop( ctx, SASL_USERNAME, (void **) &data );
597         if( saslrc == SASL_OK ) {
598                 fprintf( stderr, "SASL username: %s\n", data );
599         }
600
601         saslrc = sasl_getprop( ctx, SASL_REALM, (void **) &data );
602         if( saslrc == SASL_OK ) {
603                 fprintf( stderr, "SASL realm: %s\n", data );
604         }
605
606         saslrc = sasl_getprop( ctx, SASL_SSF, (void **) &ssf );
607         if( saslrc == SASL_OK ) {
608                 fprintf( stderr, "SASL SSF: %lu\n",
609                         (unsigned long) *ssf );
610
611 #ifdef LDAP_SASL_SECURITY_LAYER
612                 if( ssf && *ssf ) {
613                         fprintf( stderr, "SASL installing layers\n" );
614                         ldap_pvt_sasl_install( ld->ld_sb, ctx );
615                 }
616 #endif
617         }
618
619         return rc;
620 }
621
622 int ldap_pvt_sasl_secprops(
623         const char *in,
624         sasl_security_properties_t *secprops )
625 {
626         int i;
627         char **props = ldap_str2charray( in, "," );
628         unsigned sflags = 0;
629         int got_sflags = 0;
630         sasl_ssf_t max_ssf;
631         int got_max_ssf = 0;
632         sasl_ssf_t min_ssf;
633         int got_min_ssf = 0;
634         unsigned maxbufsize;
635         int got_maxbufsize = 0;
636
637         if( props == NULL || secprops == NULL ) {
638                 return LDAP_PARAM_ERROR;
639         }
640
641         for( i=0; props[i]; i++ ) {
642                 if( !strcasecmp(props[i], "none") ) {
643                         got_sflags++;
644
645                 } else if( !strcasecmp(props[i], "noplain") ) {
646                         got_sflags++;
647                         sflags |= SASL_SEC_NOPLAINTEXT;
648
649                 } else if( !strcasecmp(props[i], "noactive") ) {
650                         got_sflags++;
651                         sflags |= SASL_SEC_NOACTIVE;
652
653                 } else if( !strcasecmp(props[i], "nodict") ) {
654                         got_sflags++;
655                         sflags |= SASL_SEC_NODICTIONARY;
656
657                 } else if( !strcasecmp(props[i], "forwardsec") ) {
658                         got_sflags++;
659                         sflags |= SASL_SEC_FORWARD_SECRECY;
660
661                 } else if( !strcasecmp(props[i], "noanonymous")) {
662                         got_sflags++;
663                         sflags |= SASL_SEC_NOANONYMOUS;
664
665                 } else if( !strcasecmp(props[i], "passcred") ) {
666                         got_sflags++;
667                         sflags |= SASL_SEC_PASS_CREDENTIALS;
668
669                 } else if( !strncasecmp(props[i],
670                         "minssf=", sizeof("minssf")) )
671                 {
672                         if( isdigit( props[i][sizeof("minssf")] ) ) {
673                                 got_max_ssf++;
674                                 min_ssf = atoi( &props[i][sizeof("minssf")] );
675                         } else {
676                                 return LDAP_NOT_SUPPORTED;
677                         }
678
679                 } else if( !strncasecmp(props[i],
680                         "maxssf=", sizeof("maxssf")) )
681                 {
682                         if( isdigit( props[i][sizeof("maxssf")] ) ) {
683                                 got_max_ssf++;
684                                 max_ssf = atoi( &props[i][sizeof("maxssf")] );
685                         } else {
686                                 return LDAP_NOT_SUPPORTED;
687                         }
688
689                 } else if( !strncasecmp(props[i],
690                         "maxbufsize=", sizeof("maxbufsize")) )
691                 {
692                         if( isdigit( props[i][sizeof("maxbufsize")] ) ) {
693                                 got_maxbufsize++;
694                                 maxbufsize = atoi( &props[i][sizeof("maxbufsize")] );
695                         } else {
696                                 return LDAP_NOT_SUPPORTED;
697                         }
698
699                 } else {
700                         return LDAP_NOT_SUPPORTED;
701                 }
702         }
703
704         if(got_sflags) {
705                 secprops->security_flags = sflags;
706         }
707         if(got_min_ssf) {
708                 secprops->min_ssf = min_ssf;
709         }
710         if(got_max_ssf) {
711                 secprops->max_ssf = max_ssf;
712         }
713         if(got_maxbufsize) {
714                 secprops->maxbufsize = maxbufsize;
715         }
716
717         ldap_charray_free( props );
718         return LDAP_SUCCESS;
719 }
720
721 int
722 ldap_int_sasl_config( struct ldapoptions *lo, int option, const char *arg )
723 {
724         int rc;
725
726         switch( option ) {
727         case LDAP_OPT_X_SASL_SECPROPS:
728                 rc = ldap_pvt_sasl_secprops( arg, &lo->ldo_sasl_secprops );
729                 if( rc == LDAP_SUCCESS ) return 0;
730         }
731
732         return -1;
733 }
734
735 int
736 ldap_int_sasl_get_option( LDAP *ld, int option, void *arg )
737 {
738         if ( ld == NULL )
739                 return -1;
740
741         switch ( option ) {
742                 case LDAP_OPT_X_SASL_SSF: {
743                         int sc;
744                         sasl_ssf_t      *ssf;
745                         sasl_conn_t *ctx;
746
747                         if( ld->ld_defconn == NULL ) {
748                                 return -1;
749                         }
750
751                         ctx = ld->ld_defconn->lconn_sasl_ctx;
752
753                         if ( ctx == NULL ) {
754                                 return -1;
755                         }
756
757                         sc = sasl_getprop( ctx, SASL_SSF,
758                                 (void **) &ssf );
759
760                         if ( sc != SASL_OK ) {
761                                 return -1;
762                         }
763
764                         *(ber_len_t *)arg = *ssf;
765                 } break;
766
767                 case LDAP_OPT_X_SASL_SSF_EXTERNAL:
768                         /* this option is write only */
769                         return -1;
770
771                 case LDAP_OPT_X_SASL_SSF_MIN:
772                         *(ber_len_t *)arg = ld->ld_options.ldo_sasl_secprops.min_ssf;
773                         break;
774                 case LDAP_OPT_X_SASL_SSF_MAX:
775                         *(ber_len_t *)arg = ld->ld_options.ldo_sasl_secprops.max_ssf;
776                         break;
777                 case LDAP_OPT_X_SASL_MAXBUFSIZE:
778                         *(ber_len_t *)arg = ld->ld_options.ldo_sasl_secprops.maxbufsize;
779                         break;
780
781                 case LDAP_OPT_X_SASL_SECPROPS:
782                         /* this option is write only */
783                         return -1;
784
785                 default:
786                         return -1;
787         }
788         return 0;
789 }
790
791 int
792 ldap_int_sasl_set_option( LDAP *ld, int option, void *arg )
793 {
794         if ( ld == NULL )
795                 return -1;
796
797         switch ( option ) {
798         case LDAP_OPT_X_SASL_SSF:
799                 /* This option is read-only */
800                 return -1;
801
802         case LDAP_OPT_X_SASL_SSF_EXTERNAL: {
803                 int sc;
804                 sasl_external_properties_t extprops;
805                 sasl_conn_t *ctx;
806
807                 if( ld->ld_defconn == NULL ) {
808                         return -1;
809                 }
810
811                 ctx = ld->ld_defconn->lconn_sasl_ctx;
812
813                 if ( ctx == NULL ) {
814                         return -1;
815                 }
816
817                 memset(&extprops, 0L, sizeof(extprops));
818
819                 extprops.ssf = * (ber_len_t *) arg;
820
821                 sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL,
822                         (void *) &extprops );
823
824                 if ( sc != SASL_OK ) {
825                         return -1;
826                 }
827                 } break;
828
829         case LDAP_OPT_X_SASL_SSF_MIN:
830                 ld->ld_options.ldo_sasl_secprops.min_ssf = *(ber_len_t *)arg;
831                 break;
832         case LDAP_OPT_X_SASL_SSF_MAX:
833                 ld->ld_options.ldo_sasl_secprops.max_ssf = *(ber_len_t *)arg;
834                 break;
835         case LDAP_OPT_X_SASL_MAXBUFSIZE:
836                 ld->ld_options.ldo_sasl_secprops.maxbufsize = *(ber_len_t *)arg;
837                 break;
838
839         case LDAP_OPT_X_SASL_SECPROPS: {
840                 int sc;
841                 sc = ldap_pvt_sasl_secprops( (char *) arg,
842                         &ld->ld_options.ldo_sasl_secprops );
843
844                 return sc == LDAP_SUCCESS ? 0 : -1;
845                 }
846
847         default:
848                 return -1;
849         }
850         return 0;
851 }
852
853 #ifdef LDAP_R_COMPILE
854 void *ldap_pvt_sasl_mutex_new(void)
855 {
856         ldap_pvt_thread_mutex_t *mutex;
857
858         mutex = (ldap_pvt_thread_mutex_t *) LDAP_MALLOC(
859                 sizeof(ldap_pvt_thread_mutex_t) );
860
861         if ( ldap_pvt_thread_mutex_init( mutex ) == 0 ) {
862                 return mutex;
863         }
864         return NULL;
865 }
866
867 int ldap_pvt_sasl_mutex_lock(void *mutex)
868 {
869         return ldap_pvt_thread_mutex_lock( (ldap_pvt_thread_mutex_t *)mutex )
870                 ? SASL_FAIL : SASL_OK;
871 }
872
873 int ldap_pvt_sasl_mutex_unlock(void *mutex)
874 {
875         return ldap_pvt_thread_mutex_unlock( (ldap_pvt_thread_mutex_t *)mutex )
876                 ? SASL_FAIL : SASL_OK;
877 }
878
879 void ldap_pvt_sasl_mutex_dispose(void *mutex)
880 {
881         (void) ldap_pvt_thread_mutex_destroy( (ldap_pvt_thread_mutex_t *)mutex );
882         LDAP_FREE( mutex );
883 }
884 #endif
885
886 #else
887 int ldap_int_sasl_init( void )
888 { return LDAP_SUCCESS; }
889
890 int ldap_int_sasl_close( LDAP *ld, LDAPConn *lc )
891 { return LDAP_SUCCESS; }
892
893 int
894 ldap_int_sasl_bind(
895         LDAP                    *ld,
896         const char              *dn,
897         const char              *mechs,
898         LDAPControl             **sctrls,
899         LDAPControl             **cctrls )
900 { return LDAP_NOT_SUPPORTED; }
901 #endif /* HAVE_CYRUS_SASL */