]> git.sur5r.net Git - openldap/blob - libraries/libldap/cyrus.c
8bdfc40fd033dff2408b0085651f1d768ebd1e54
[openldap] / libraries / libldap / cyrus.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2004 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15
16 #include "portable.h"
17
18 #include <stdio.h>
19
20 #include <ac/socket.h>
21 #include <ac/stdlib.h>
22 #include <ac/string.h>
23 #include <ac/time.h>
24 #include <ac/errno.h>
25 #include <ac/ctype.h>
26 #include <ac/unistd.h>
27
28 #include "ldap-int.h"
29
30 #ifdef HAVE_CYRUS_SASL
31
32 #ifdef LDAP_R_COMPILE
33 ldap_pvt_thread_mutex_t ldap_int_sasl_mutex;
34 #endif
35
36 #ifdef HAVE_SASL_SASL_H
37 #include <sasl/sasl.h>
38 #else
39 #include <sasl.h>
40 #endif
41
42 #if SASL_VERSION_MAJOR >= 2
43 #define SASL_CONST const
44 #else
45 #define SASL_CONST
46 #endif
47
48 /*
49 * Various Cyrus SASL related stuff.
50 */
51
52 static const sasl_callback_t client_callbacks[] = {
53 #ifdef SASL_CB_GETREALM
54         { SASL_CB_GETREALM, NULL, NULL },
55 #endif
56         { SASL_CB_USER, NULL, NULL },
57         { SASL_CB_AUTHNAME, NULL, NULL },
58         { SASL_CB_PASS, NULL, NULL },
59         { SASL_CB_ECHOPROMPT, NULL, NULL },
60         { SASL_CB_NOECHOPROMPT, NULL, NULL },
61         { SASL_CB_LIST_END, NULL, NULL }
62 };
63
64 int ldap_int_sasl_init( void )
65 {
66         /* XXX not threadsafe */
67         static int sasl_initialized = 0;
68
69 #ifdef HAVE_SASL_VERSION
70         /* stringify the version number, sasl.h doesn't do it for us */
71 #define VSTR0(maj, min, pat)    #maj "." #min "." #pat
72 #define VSTR(maj, min, pat)     VSTR0(maj, min, pat)
73 #define SASL_VERSION_STRING     VSTR(SASL_VERSION_MAJOR, SASL_VERSION_MINOR, \
74                                 SASL_VERSION_STEP)
75         { int rc;
76         sasl_version( NULL, &rc );
77         if ( ((rc >> 16) != ((SASL_VERSION_MAJOR << 8)|SASL_VERSION_MINOR)) ||
78                 (rc & 0xffff) < SASL_VERSION_STEP) {
79                 char version[sizeof("xxx.xxx.xxxxx")];
80                 sprintf( version, "%u.%d.%d", (unsigned)rc >> 24, (rc >> 16) & 0xff,
81                         rc & 0xffff );
82
83 #ifdef NEW_LOGGING
84                 LDAP_LOG( TRANSPORT, INFO,
85                 "ldap_int_sasl_init: SASL library version mismatch:"
86                 " expected " SASL_VERSION_STRING ","
87                 " got %s\n", version, 0, 0 );
88 #else
89                 Debug( LDAP_DEBUG_ANY,
90                 "ldap_int_sasl_init: SASL library version mismatch:"
91                 " expected " SASL_VERSION_STRING ","
92                 " got %s\n", version, 0, 0 );
93 #endif
94                 return -1;
95         }
96         }
97 #endif
98         if ( sasl_initialized ) {
99                 return 0;
100         }
101
102 /* SASL 2 takes care of its own memory completely internally */
103 #if SASL_VERSION_MAJOR < 2 && !defined(CSRIMALLOC)
104         sasl_set_alloc(
105                 ber_memalloc,
106                 ber_memcalloc,
107                 ber_memrealloc,
108                 ber_memfree );
109 #endif /* CSRIMALLOC */
110
111 #ifdef LDAP_R_COMPILE
112         sasl_set_mutex(
113                 ldap_pvt_sasl_mutex_new,
114                 ldap_pvt_sasl_mutex_lock,
115                 ldap_pvt_sasl_mutex_unlock,    
116                 ldap_pvt_sasl_mutex_dispose );    
117
118         ldap_pvt_thread_mutex_init( &ldap_int_sasl_mutex );
119 #endif
120
121         if ( sasl_client_init( NULL ) == SASL_OK ) {
122                 sasl_initialized = 1;
123                 return 0;
124         }
125
126 #if SASL_VERSION_MAJOR < 2
127         /* A no-op to make sure we link with Cyrus 1.5 */
128         sasl_client_auth( NULL, NULL, NULL, 0, NULL, NULL );
129 #endif
130         return -1;
131 }
132
133 /*
134  * SASL encryption support for LBER Sockbufs
135  */
136
137 struct sb_sasl_data {
138         sasl_conn_t             *sasl_context;
139         unsigned                *sasl_maxbuf;
140         Sockbuf_Buf             sec_buf_in;
141         Sockbuf_Buf             buf_in;
142         Sockbuf_Buf             buf_out;
143 };
144
145 static int
146 sb_sasl_setup( Sockbuf_IO_Desc *sbiod, void *arg )
147 {
148         struct sb_sasl_data     *p;
149
150         assert( sbiod != NULL );
151
152         p = LBER_MALLOC( sizeof( *p ) );
153         if ( p == NULL )
154                 return -1;
155         p->sasl_context = (sasl_conn_t *)arg;
156         ber_pvt_sb_buf_init( &p->sec_buf_in );
157         ber_pvt_sb_buf_init( &p->buf_in );
158         ber_pvt_sb_buf_init( &p->buf_out );
159         if ( ber_pvt_sb_grow_buffer( &p->sec_buf_in, SASL_MIN_BUFF_SIZE ) < 0 ) {
160                 LBER_FREE( p );
161                 errno = ENOMEM;
162                 return -1;
163         }
164         sasl_getprop( p->sasl_context, SASL_MAXOUTBUF,
165                 (SASL_CONST void **) &p->sasl_maxbuf );
166             
167         sbiod->sbiod_pvt = p;
168
169         return 0;
170 }
171
172 static int
173 sb_sasl_remove( Sockbuf_IO_Desc *sbiod )
174 {
175         struct sb_sasl_data     *p;
176
177         assert( sbiod != NULL );
178         
179         p = (struct sb_sasl_data *)sbiod->sbiod_pvt;
180 #if SASL_VERSION_MAJOR >= 2
181         /*
182          * SASLv2 encode/decode buffers are managed by
183          * libsasl2. Ensure they are not freed by liblber.
184          */
185         p->buf_in.buf_base = NULL;
186         p->buf_out.buf_base = NULL;
187 #endif
188         ber_pvt_sb_buf_destroy( &p->sec_buf_in );
189         ber_pvt_sb_buf_destroy( &p->buf_in );
190         ber_pvt_sb_buf_destroy( &p->buf_out );
191         LBER_FREE( p );
192         sbiod->sbiod_pvt = NULL;
193         return 0;
194 }
195
196 static ber_len_t
197 sb_sasl_pkt_length( const unsigned char *buf, int debuglevel )
198 {
199         ber_len_t               size;
200
201         assert( buf != NULL );
202
203         size = buf[0] << 24
204                 | buf[1] << 16
205                 | buf[2] << 8
206                 | buf[3];
207    
208         if ( size > SASL_MAX_BUFF_SIZE ) {
209                 /* somebody is trying to mess me up. */
210                 ber_log_printf( LDAP_DEBUG_ANY, debuglevel,
211                         "sb_sasl_pkt_length: received illegal packet length "
212                         "of %lu bytes\n", (unsigned long)size );      
213                 size = 16; /* this should lead to an error. */
214         }
215
216         return size + 4; /* include the size !!! */
217 }
218
219 /* Drop a processed packet from the input buffer */
220 static void
221 sb_sasl_drop_packet ( Sockbuf_Buf *sec_buf_in, int debuglevel )
222 {
223         ber_slen_t                      len;
224
225         len = sec_buf_in->buf_ptr - sec_buf_in->buf_end;
226         if ( len > 0 )
227                 AC_MEMCPY( sec_buf_in->buf_base, sec_buf_in->buf_base +
228                         sec_buf_in->buf_end, len );
229    
230         if ( len >= 4 ) {
231                 sec_buf_in->buf_end = sb_sasl_pkt_length(
232                         (unsigned char *) sec_buf_in->buf_base, debuglevel);
233         }
234         else {
235                 sec_buf_in->buf_end = 0;
236         }
237         sec_buf_in->buf_ptr = len;
238 }
239
240 static ber_slen_t
241 sb_sasl_read( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
242 {
243         struct sb_sasl_data     *p;
244         ber_slen_t              ret, bufptr;
245    
246         assert( sbiod != NULL );
247         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
248
249         p = (struct sb_sasl_data *)sbiod->sbiod_pvt;
250
251         /* Are there anything left in the buffer? */
252         ret = ber_pvt_sb_copy_out( &p->buf_in, buf, len );
253         bufptr = ret;
254         len -= ret;
255
256         if ( len == 0 )
257                 return bufptr;
258
259 #if SASL_VERSION_MAJOR >= 2
260         ber_pvt_sb_buf_init( &p->buf_in );
261 #else
262         ber_pvt_sb_buf_destroy( &p->buf_in );
263 #endif
264
265         /* Read the length of the packet */
266         while ( p->sec_buf_in.buf_ptr < 4 ) {
267                 ret = LBER_SBIOD_READ_NEXT( sbiod, p->sec_buf_in.buf_base,
268                         4 - p->sec_buf_in.buf_ptr );
269 #ifdef EINTR
270                 if ( ( ret < 0 ) && ( errno == EINTR ) )
271                         continue;
272 #endif
273                 if ( ret <= 0 )
274                         return bufptr ? bufptr : ret;
275
276                 p->sec_buf_in.buf_ptr += ret;
277         }
278
279         /* The new packet always starts at p->sec_buf_in.buf_base */
280         ret = sb_sasl_pkt_length( (unsigned char *) p->sec_buf_in.buf_base,
281                 sbiod->sbiod_sb->sb_debug );
282
283         /* Grow the packet buffer if neccessary */
284         if ( ( p->sec_buf_in.buf_size < (ber_len_t) ret ) && 
285                 ber_pvt_sb_grow_buffer( &p->sec_buf_in, ret ) < 0 )
286         {
287                 errno = ENOMEM;
288                 return -1;
289         }
290         p->sec_buf_in.buf_end = ret;
291
292         /* Did we read the whole encrypted packet? */
293         while ( p->sec_buf_in.buf_ptr < p->sec_buf_in.buf_end ) {
294                 /* No, we have got only a part of it */
295                 ret = p->sec_buf_in.buf_end - p->sec_buf_in.buf_ptr;
296
297                 ret = LBER_SBIOD_READ_NEXT( sbiod, p->sec_buf_in.buf_base +
298                         p->sec_buf_in.buf_ptr, ret );
299 #ifdef EINTR
300                 if ( ( ret < 0 ) && ( errno == EINTR ) )
301                         continue;
302 #endif
303                 if ( ret <= 0 )
304                         return bufptr ? bufptr : ret;
305
306                 p->sec_buf_in.buf_ptr += ret;
307         }
308
309         /* Decode the packet */
310         ret = sasl_decode( p->sasl_context, p->sec_buf_in.buf_base,
311                 p->sec_buf_in.buf_end,
312                 (SASL_CONST char **)&p->buf_in.buf_base,
313                 (unsigned *)&p->buf_in.buf_end );
314
315         /* Drop the packet from the input buffer */
316         sb_sasl_drop_packet( &p->sec_buf_in, sbiod->sbiod_sb->sb_debug );
317
318         if ( ret != SASL_OK ) {
319                 ber_log_printf( LDAP_DEBUG_ANY, sbiod->sbiod_sb->sb_debug,
320                         "sb_sasl_read: failed to decode packet: %s\n",
321                         sasl_errstring( ret, NULL, NULL ) );
322                 errno = EIO;
323                 return -1;
324         }
325         
326         p->buf_in.buf_size = p->buf_in.buf_end;
327
328         bufptr += ber_pvt_sb_copy_out( &p->buf_in, (char*) buf + bufptr, len );
329
330         return bufptr;
331 }
332
333 static ber_slen_t
334 sb_sasl_write( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
335 {
336         struct sb_sasl_data     *p;
337         int                     ret;
338
339         assert( sbiod != NULL );
340         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
341
342         p = (struct sb_sasl_data *)sbiod->sbiod_pvt;
343
344         /* Are there anything left in the buffer? */
345         if ( p->buf_out.buf_ptr != p->buf_out.buf_end ) {
346                 ret = ber_pvt_sb_do_write( sbiod, &p->buf_out );
347                 if ( ret < 0 )
348                         return ret;
349                 /* Still have something left?? */
350                 if ( p->buf_out.buf_ptr != p->buf_out.buf_end ) {
351                         errno = EAGAIN;
352                         return 0;
353                 }
354         }
355
356         /* now encode the next packet. */
357 #if SASL_VERSION_MAJOR >= 2
358         ber_pvt_sb_buf_init( &p->buf_out );
359 #else
360         ber_pvt_sb_buf_destroy( &p->buf_out );
361 #endif
362         if ( len > *p->sasl_maxbuf - 100 )
363                 len = *p->sasl_maxbuf - 100;    /* For safety margin */
364         ret = sasl_encode( p->sasl_context, buf, len,
365                 (SASL_CONST char **)&p->buf_out.buf_base,
366                 (unsigned *)&p->buf_out.buf_size );
367         if ( ret != SASL_OK ) {
368                 ber_log_printf( LDAP_DEBUG_ANY, sbiod->sbiod_sb->sb_debug,
369                         "sb_sasl_write: failed to encode packet: %s\n",
370                         sasl_errstring( ret, NULL, NULL ) );
371                 return -1;
372         }
373         p->buf_out.buf_end = p->buf_out.buf_size;
374
375         ret = ber_pvt_sb_do_write( sbiod, &p->buf_out );
376         if ( ret <= 0 )
377                 return ret;
378         return len;
379 }
380
381 static int
382 sb_sasl_ctrl( Sockbuf_IO_Desc *sbiod, int opt, void *arg )
383 {
384         struct sb_sasl_data     *p;
385
386         p = (struct sb_sasl_data *)sbiod->sbiod_pvt;
387
388         if ( opt == LBER_SB_OPT_DATA_READY ) {
389                 if ( p->buf_in.buf_ptr != p->buf_in.buf_end )
390                         return 1;
391         }
392         
393         return LBER_SBIOD_CTRL_NEXT( sbiod, opt, arg );
394 }
395
396 Sockbuf_IO ldap_pvt_sockbuf_io_sasl = {
397         sb_sasl_setup,          /* sbi_setup */
398         sb_sasl_remove,         /* sbi_remove */
399         sb_sasl_ctrl,           /* sbi_ctrl */
400         sb_sasl_read,           /* sbi_read */
401         sb_sasl_write,          /* sbi_write */
402         NULL                    /* sbi_close */
403 };
404
405 int ldap_pvt_sasl_install( Sockbuf *sb, void *ctx_arg )
406 {
407 #ifdef NEW_LOGGING
408         LDAP_LOG ( TRANSPORT, ENTRY, "ldap_pvt_sasl_install\n", 0, 0, 0 );
409 #else
410         Debug( LDAP_DEBUG_TRACE, "ldap_pvt_sasl_install\n",
411                 0, 0, 0 );
412 #endif
413
414         /* don't install the stuff unless security has been negotiated */
415
416         if ( !ber_sockbuf_ctrl( sb, LBER_SB_OPT_HAS_IO,
417                         &ldap_pvt_sockbuf_io_sasl ) )
418         {
419 #ifdef LDAP_DEBUG
420                 ber_sockbuf_add_io( sb, &ber_sockbuf_io_debug,
421                         LBER_SBIOD_LEVEL_APPLICATION, (void *)"sasl_" );
422 #endif
423                 ber_sockbuf_add_io( sb, &ldap_pvt_sockbuf_io_sasl,
424                         LBER_SBIOD_LEVEL_APPLICATION, ctx_arg );
425         }
426
427         return LDAP_SUCCESS;
428 }
429
430 void ldap_pvt_sasl_remove( Sockbuf *sb )
431 {
432         ber_sockbuf_remove_io( sb, &ldap_pvt_sockbuf_io_sasl,
433                 LBER_SBIOD_LEVEL_APPLICATION );
434 #ifdef LDAP_DEBUG
435         ber_sockbuf_remove_io( sb, &ber_sockbuf_io_debug,
436                 LBER_SBIOD_LEVEL_APPLICATION );
437 #endif
438 }
439
440 static int
441 sasl_err2ldap( int saslerr )
442 {
443         int rc;
444
445         switch (saslerr) {
446                 case SASL_CONTINUE:
447                         rc = LDAP_MORE_RESULTS_TO_RETURN;
448                         break;
449                 case SASL_INTERACT:
450                         rc = LDAP_LOCAL_ERROR;
451                         break;
452                 case SASL_OK:
453                         rc = LDAP_SUCCESS;
454                         break;
455                 case SASL_FAIL:
456                         rc = LDAP_LOCAL_ERROR;
457                         break;
458                 case SASL_NOMEM:
459                         rc = LDAP_NO_MEMORY;
460                         break;
461                 case SASL_NOMECH:
462                         rc = LDAP_AUTH_UNKNOWN;
463                         break;
464                 case SASL_BADAUTH:
465                         rc = LDAP_AUTH_UNKNOWN;
466                         break;
467                 case SASL_NOAUTHZ:
468                         rc = LDAP_PARAM_ERROR;
469                         break;
470                 case SASL_TOOWEAK:
471                 case SASL_ENCRYPT:
472                         rc = LDAP_AUTH_UNKNOWN;
473                         break;
474                 default:
475                         rc = LDAP_LOCAL_ERROR;
476                         break;
477         }
478
479         assert( rc == LDAP_SUCCESS || LDAP_API_ERROR( rc ) );
480         return rc;
481 }
482
483 int
484 ldap_int_sasl_open(
485         LDAP *ld, 
486         LDAPConn *lc,
487         const char * host )
488 {
489         int rc;
490         sasl_conn_t *ctx;
491
492         assert( lc->lconn_sasl_authctx == NULL );
493
494         if ( host == NULL ) {
495                 ld->ld_errno = LDAP_LOCAL_ERROR;
496                 return ld->ld_errno;
497         }
498
499         if ( ldap_int_sasl_init() ) {
500                 ld->ld_errno = LDAP_LOCAL_ERROR;
501                 return ld->ld_errno;
502         }
503
504 #if SASL_VERSION_MAJOR >= 2
505         rc = sasl_client_new( "ldap", host, NULL, NULL,
506                 client_callbacks, 0, &ctx );
507 #else
508         rc = sasl_client_new( "ldap", host, client_callbacks,
509                 SASL_SECURITY_LAYER, &ctx );
510 #endif
511
512         if ( rc != SASL_OK ) {
513                 ld->ld_errno = sasl_err2ldap( rc );
514                 return ld->ld_errno;
515         }
516
517 #ifdef NEW_LOGGING
518         LDAP_LOG ( TRANSPORT, DETAIL1, "ldap_int_sasl_open: host=%s\n", 
519                 host, 0, 0 );
520 #else
521         Debug( LDAP_DEBUG_TRACE, "ldap_int_sasl_open: host=%s\n",
522                 host, 0, 0 );
523 #endif
524
525         lc->lconn_sasl_authctx = ctx;
526
527         return LDAP_SUCCESS;
528 }
529
530 int ldap_int_sasl_close( LDAP *ld, LDAPConn *lc )
531 {
532         sasl_conn_t *ctx = lc->lconn_sasl_authctx;
533
534         if( ctx != NULL ) {
535                 sasl_dispose( &ctx );
536                 if ( lc->lconn_sasl_sockctx &&
537                         lc->lconn_sasl_authctx != lc->lconn_sasl_sockctx ) {
538                         ctx = lc->lconn_sasl_sockctx;
539                         sasl_dispose( &ctx );
540                 }
541                 lc->lconn_sasl_sockctx = NULL;
542                 lc->lconn_sasl_authctx = NULL;
543         }
544
545         return LDAP_SUCCESS;
546 }
547
548 int
549 ldap_int_sasl_bind(
550         LDAP                    *ld,
551         const char              *dn,
552         const char              *mechs,
553         LDAPControl             **sctrls,
554         LDAPControl             **cctrls,
555         unsigned                flags,
556         LDAP_SASL_INTERACT_PROC *interact,
557         void * defaults )
558 {
559         char *data;
560         const char *mech = NULL;
561         const char *pmech = NULL;
562         int                     saslrc, rc;
563         sasl_ssf_t              *ssf = NULL;
564         sasl_conn_t     *ctx, *oldctx = NULL;
565         sasl_interact_t *prompts = NULL;
566         unsigned credlen;
567         struct berval ccred;
568         ber_socket_t            sd;
569         void    *ssl;
570
571 #ifdef NEW_LOGGING
572         LDAP_LOG ( TRANSPORT, ARGS, "ldap_int_sasl_bind: %s\n", 
573                 mechs ? mechs : "<null>", 0, 0 );
574 #else
575         Debug( LDAP_DEBUG_TRACE, "ldap_int_sasl_bind: %s\n",
576                 mechs ? mechs : "<null>", 0, 0 );
577 #endif
578
579         /* do a quick !LDAPv3 check... ldap_sasl_bind will do the rest. */
580         if (ld->ld_version < LDAP_VERSION3) {
581                 ld->ld_errno = LDAP_NOT_SUPPORTED;
582                 return ld->ld_errno;
583         }
584
585         ber_sockbuf_ctrl( ld->ld_sb, LBER_SB_OPT_GET_FD, &sd );
586
587         if ( sd == AC_SOCKET_INVALID ) {
588                 /* not connected yet */
589                 int rc;
590
591                 rc = ldap_open_defconn( ld );
592                 if( rc < 0 ) return ld->ld_errno;
593
594                 ber_sockbuf_ctrl( ld->ld_sb, LBER_SB_OPT_GET_FD, &sd );
595
596                 if( sd == AC_SOCKET_INVALID ) {
597                         ld->ld_errno = LDAP_LOCAL_ERROR;
598                         return ld->ld_errno;
599                 }
600         }   
601
602         oldctx = ld->ld_defconn->lconn_sasl_authctx;
603
604         /* If we already have an authentication context, clear it out */
605         if( oldctx ) {
606                 if ( oldctx != ld->ld_defconn->lconn_sasl_sockctx ) {
607                         sasl_dispose( &oldctx );
608                 }
609                 ld->ld_defconn->lconn_sasl_authctx = NULL;
610         }
611
612         { char *saslhost = ldap_host_connected_to( ld->ld_sb, "localhost" );
613         rc = ldap_int_sasl_open( ld, ld->ld_defconn, saslhost );
614         LDAP_FREE( saslhost );
615         }
616
617         if ( rc != LDAP_SUCCESS ) return rc;
618
619         ctx = ld->ld_defconn->lconn_sasl_authctx;
620
621         /* Check for TLS */
622         ssl = ldap_pvt_tls_sb_ctx( ld->ld_sb );
623         if ( ssl ) {
624                 struct berval authid = { 0, NULL };
625                 ber_len_t fac;
626
627                 fac = ldap_pvt_tls_get_strength( ssl );
628                 /* failure is OK, we just can't use SASL EXTERNAL */
629                 (void) ldap_pvt_tls_get_my_dn( ssl, &authid, NULL, 0 );
630
631                 (void) ldap_int_sasl_external( ld, ld->ld_defconn, authid.bv_val, fac );
632                 LDAP_FREE( authid.bv_val );
633         }
634
635         /* Check for local */
636         if ( ldap_pvt_url_scheme2proto( ld->ld_defconn->lconn_server->lud_scheme ) == LDAP_PROTO_IPC ) {
637                 char authid[sizeof("uidNumber=4294967295+gidNumber=4294967295,"
638                         "cn=peercred,cn=external,cn=auth")];
639                 sprintf( authid, "uidNumber=%d+gidNumber=%d,"
640                         "cn=peercred,cn=external,cn=auth",
641                         (int) geteuid(), (int) getegid() );
642                 (void) ldap_int_sasl_external( ld, ld->ld_defconn, authid, LDAP_PVT_SASL_LOCAL_SSF );
643         }
644
645         /* (re)set security properties */
646         sasl_setprop( ctx, SASL_SEC_PROPS,
647                 &ld->ld_options.ldo_sasl_secprops );
648
649         ccred.bv_val = NULL;
650         ccred.bv_len = 0;
651
652         do {
653                 saslrc = sasl_client_start( ctx,
654                         mechs,
655 #if SASL_VERSION_MAJOR < 2
656                         NULL,
657 #endif
658                         &prompts,
659                         (SASL_CONST char **)&ccred.bv_val,
660                         &credlen,
661                         &mech );
662
663                 if( pmech == NULL && mech != NULL ) {
664                         pmech = mech;
665
666                         if( flags != LDAP_SASL_QUIET ) {
667                                 fprintf(stderr,
668                                         "SASL/%s authentication started\n",
669                                         pmech );
670                         }
671                 }
672
673                 if( saslrc == SASL_INTERACT ) {
674                         int res;
675                         if( !interact ) break;
676                         res = (interact)( ld, flags, defaults, prompts );
677
678                         if( res != LDAP_SUCCESS ) break;
679                 }
680         } while ( saslrc == SASL_INTERACT );
681
682         ccred.bv_len = credlen;
683
684         if ( (saslrc != SASL_OK) && (saslrc != SASL_CONTINUE) ) {
685                 rc = ld->ld_errno = sasl_err2ldap( saslrc );
686 #if SASL_VERSION_MAJOR >= 2
687                 ld->ld_error = LDAP_STRDUP( sasl_errdetail( ctx ) );
688 #endif
689                 goto done;
690         }
691
692         do {
693                 struct berval *scred;
694                 unsigned credlen;
695
696                 scred = NULL;
697
698                 rc = ldap_sasl_bind_s( ld, dn, mech, &ccred, sctrls, cctrls, &scred );
699
700                 if ( ccred.bv_val != NULL ) {
701 #if SASL_VERSION_MAJOR < 2
702                         LDAP_FREE( ccred.bv_val );
703 #endif
704                         ccred.bv_val = NULL;
705                 }
706
707                 if ( rc != LDAP_SUCCESS && rc != LDAP_SASL_BIND_IN_PROGRESS ) {
708                         if( scred && scred->bv_len ) {
709                                 /* and server provided us with data? */
710 #ifdef NEW_LOGGING
711                                 LDAP_LOG ( TRANSPORT, DETAIL1, 
712                                         "ldap_int_sasl_bind: rc=%d sasl=%d len=%ld\n", 
713                                         rc, saslrc, scred->bv_len );
714 #else
715                                 Debug( LDAP_DEBUG_TRACE,
716                                         "ldap_int_sasl_bind: rc=%d sasl=%d len=%ld\n",
717                                         rc, saslrc, scred->bv_len );
718 #endif
719                                 ber_bvfree( scred );
720                         }
721                         rc = ld->ld_errno;
722                         goto done;
723                 }
724
725                 if( rc == LDAP_SUCCESS && saslrc == SASL_OK ) {
726                         /* we're done, no need to step */
727                         if( scred && scred->bv_len ) {
728                                 /* but server provided us with data! */
729 #ifdef NEW_LOGGING
730                                 LDAP_LOG ( TRANSPORT, DETAIL1, 
731                                         "ldap_int_sasl_bind: rc=%d sasl=%d len=%ld\n", 
732                                         rc, saslrc, scred->bv_len );
733 #else
734                                 Debug( LDAP_DEBUG_TRACE,
735                                         "ldap_int_sasl_bind: rc=%d sasl=%d len=%ld\n",
736                                         rc, saslrc, scred->bv_len );
737 #endif
738                                 ber_bvfree( scred );
739                                 rc = ld->ld_errno = LDAP_LOCAL_ERROR;
740                                 goto done;
741                         }
742                         break;
743                 }
744
745                 do {
746                         saslrc = sasl_client_step( ctx,
747                                 (scred == NULL) ? NULL : scred->bv_val,
748                                 (scred == NULL) ? 0 : scred->bv_len,
749                                 &prompts,
750                                 (SASL_CONST char **)&ccred.bv_val,
751                                 &credlen );
752
753 #ifdef NEW_LOGGING
754                                 LDAP_LOG ( TRANSPORT, DETAIL1, 
755                                         "ldap_int_sasl_bind: sasl_client_step: %d\n", saslrc,0,0 );
756 #else
757                         Debug( LDAP_DEBUG_TRACE, "sasl_client_step: %d\n",
758                                 saslrc, 0, 0 );
759 #endif
760
761                         if( saslrc == SASL_INTERACT ) {
762                                 int res;
763                                 if( !interact ) break;
764                                 res = (interact)( ld, flags, defaults, prompts );
765                                 if( res != LDAP_SUCCESS ) break;
766                         }
767                 } while ( saslrc == SASL_INTERACT );
768
769                 ccred.bv_len = credlen;
770                 ber_bvfree( scred );
771
772                 if ( (saslrc != SASL_OK) && (saslrc != SASL_CONTINUE) ) {
773                         ld->ld_errno = sasl_err2ldap( saslrc );
774 #if SASL_VERSION_MAJOR >= 2
775                         ld->ld_error = LDAP_STRDUP( sasl_errdetail( ctx ) );
776 #endif
777                         rc = ld->ld_errno;
778                         goto done;
779                 }
780         } while ( rc == LDAP_SASL_BIND_IN_PROGRESS );
781
782         if ( rc != LDAP_SUCCESS ) goto done;
783
784         if ( saslrc != SASL_OK ) {
785 #if SASL_VERSION_MAJOR >= 2
786                 ld->ld_error = LDAP_STRDUP( sasl_errdetail( ctx ) );
787 #endif
788                 rc = ld->ld_errno = sasl_err2ldap( saslrc );
789                 goto done;
790         }
791
792         if( flags != LDAP_SASL_QUIET ) {
793                 saslrc = sasl_getprop( ctx, SASL_USERNAME, (SASL_CONST void **) &data );
794                 if( saslrc == SASL_OK && data && *data ) {
795                         fprintf( stderr, "SASL username: %s\n", data );
796                 }
797
798 #if SASL_VERSION_MAJOR < 2
799                 saslrc = sasl_getprop( ctx, SASL_REALM, (SASL_CONST void **) &data );
800                 if( saslrc == SASL_OK && data && *data ) {
801                         fprintf( stderr, "SASL realm: %s\n", data );
802                 }
803 #endif
804         }
805
806         saslrc = sasl_getprop( ctx, SASL_SSF, (SASL_CONST void **) &ssf );
807         if( saslrc == SASL_OK ) {
808                 if( flags != LDAP_SASL_QUIET ) {
809                         fprintf( stderr, "SASL SSF: %lu\n",
810                                 (unsigned long) *ssf );
811                 }
812
813                 if( ssf && *ssf ) {
814                         if( flags != LDAP_SASL_QUIET ) {
815                                 fprintf( stderr, "SASL installing layers\n" );
816                         }
817                         if ( ld->ld_defconn->lconn_sasl_sockctx ) {
818                                 oldctx = ld->ld_defconn->lconn_sasl_sockctx;
819                                 sasl_dispose( &oldctx );
820                                 ldap_pvt_sasl_remove( ld->ld_sb );
821                         }
822                         ldap_pvt_sasl_install( ld->ld_conns->lconn_sb, ctx );
823                         ld->ld_defconn->lconn_sasl_sockctx = ctx;
824                 }
825         }
826         ld->ld_defconn->lconn_sasl_authctx = ctx;
827
828 done:
829         return rc;
830 }
831
832 int
833 ldap_int_sasl_external(
834         LDAP *ld,
835         LDAPConn *conn,
836         const char * authid,
837         ber_len_t ssf )
838 {
839         int sc;
840         sasl_conn_t *ctx;
841 #if SASL_VERSION_MAJOR < 2
842         sasl_external_properties_t extprops;
843 #endif
844
845         ctx = conn->lconn_sasl_authctx;
846
847         if ( ctx == NULL ) {
848                 return LDAP_LOCAL_ERROR;
849         }
850    
851 #if SASL_VERSION_MAJOR >= 2
852         sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL, &ssf );
853         if ( sc == SASL_OK )
854                 sc = sasl_setprop( ctx, SASL_AUTH_EXTERNAL, authid );
855 #else
856         memset( &extprops, '\0', sizeof(extprops) );
857         extprops.ssf = ssf;
858         extprops.auth_id = (char *) authid;
859
860         sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL,
861                 (void *) &extprops );
862 #endif
863
864         if ( sc != SASL_OK ) {
865                 return LDAP_LOCAL_ERROR;
866         }
867
868         return LDAP_SUCCESS;
869 }
870
871
872 int ldap_pvt_sasl_secprops(
873         const char *in,
874         sasl_security_properties_t *secprops )
875 {
876         int i;
877         char **props = ldap_str2charray( in, "," );
878         unsigned sflags = 0;
879         int got_sflags = 0;
880         sasl_ssf_t max_ssf = 0;
881         int got_max_ssf = 0;
882         sasl_ssf_t min_ssf = 0;
883         int got_min_ssf = 0;
884         unsigned maxbufsize = 0;
885         int got_maxbufsize = 0;
886
887         if( props == NULL || secprops == NULL ) {
888                 return LDAP_PARAM_ERROR;
889         }
890
891         for( i=0; props[i]; i++ ) {
892                 if( !strcasecmp(props[i], "none") ) {
893                         got_sflags++;
894
895                 } else if( !strcasecmp(props[i], "noplain") ) {
896                         got_sflags++;
897                         sflags |= SASL_SEC_NOPLAINTEXT;
898
899                 } else if( !strcasecmp(props[i], "noactive") ) {
900                         got_sflags++;
901                         sflags |= SASL_SEC_NOACTIVE;
902
903                 } else if( !strcasecmp(props[i], "nodict") ) {
904                         got_sflags++;
905                         sflags |= SASL_SEC_NODICTIONARY;
906
907                 } else if( !strcasecmp(props[i], "forwardsec") ) {
908                         got_sflags++;
909                         sflags |= SASL_SEC_FORWARD_SECRECY;
910
911                 } else if( !strcasecmp(props[i], "noanonymous")) {
912                         got_sflags++;
913                         sflags |= SASL_SEC_NOANONYMOUS;
914
915                 } else if( !strcasecmp(props[i], "passcred") ) {
916                         got_sflags++;
917                         sflags |= SASL_SEC_PASS_CREDENTIALS;
918
919                 } else if( !strncasecmp(props[i],
920                         "minssf=", sizeof("minssf")) )
921                 {
922                         if( isdigit( (unsigned char) props[i][sizeof("minssf")] ) ) {
923                                 got_min_ssf++;
924                                 min_ssf = atoi( &props[i][sizeof("minssf")] );
925                         } else {
926                                 return LDAP_NOT_SUPPORTED;
927                         }
928
929                 } else if( !strncasecmp(props[i],
930                         "maxssf=", sizeof("maxssf")) )
931                 {
932                         if( isdigit( (unsigned char) props[i][sizeof("maxssf")] ) ) {
933                                 got_max_ssf++;
934                                 max_ssf = atoi( &props[i][sizeof("maxssf")] );
935                         } else {
936                                 return LDAP_NOT_SUPPORTED;
937                         }
938
939                 } else if( !strncasecmp(props[i],
940                         "maxbufsize=", sizeof("maxbufsize")) )
941                 {
942                         if( isdigit( (unsigned char) props[i][sizeof("maxbufsize")] ) ) {
943                                 got_maxbufsize++;
944                                 maxbufsize = atoi( &props[i][sizeof("maxbufsize")] );
945                         } else {
946                                 return LDAP_NOT_SUPPORTED;
947                         }
948
949                         if( maxbufsize && (( maxbufsize < SASL_MIN_BUFF_SIZE )
950                                 || (maxbufsize > SASL_MAX_BUFF_SIZE )))
951                         {
952                                 /* bad maxbufsize */
953                                 return LDAP_PARAM_ERROR;
954                         }
955
956                 } else {
957                         return LDAP_NOT_SUPPORTED;
958                 }
959         }
960
961         if(got_sflags) {
962                 secprops->security_flags = sflags;
963         }
964         if(got_min_ssf) {
965                 secprops->min_ssf = min_ssf;
966         }
967         if(got_max_ssf) {
968                 secprops->max_ssf = max_ssf;
969         }
970         if(got_maxbufsize) {
971                 secprops->maxbufsize = maxbufsize;
972         }
973
974         ldap_charray_free( props );
975         return LDAP_SUCCESS;
976 }
977
978 int
979 ldap_int_sasl_config( struct ldapoptions *lo, int option, const char *arg )
980 {
981         int rc;
982
983         switch( option ) {
984         case LDAP_OPT_X_SASL_SECPROPS:
985                 rc = ldap_pvt_sasl_secprops( arg, &lo->ldo_sasl_secprops );
986                 if( rc == LDAP_SUCCESS ) return 0;
987         }
988
989         return -1;
990 }
991
992 int
993 ldap_int_sasl_get_option( LDAP *ld, int option, void *arg )
994 {
995         if ( ld == NULL )
996                 return -1;
997
998         switch ( option ) {
999                 case LDAP_OPT_X_SASL_MECH: {
1000                         *(char **)arg = ld->ld_options.ldo_def_sasl_mech
1001                                 ? LDAP_STRDUP( ld->ld_options.ldo_def_sasl_mech ) : NULL;
1002                 } break;
1003                 case LDAP_OPT_X_SASL_REALM: {
1004                         *(char **)arg = ld->ld_options.ldo_def_sasl_realm
1005                                 ? LDAP_STRDUP( ld->ld_options.ldo_def_sasl_realm ) : NULL;
1006                 } break;
1007                 case LDAP_OPT_X_SASL_AUTHCID: {
1008                         *(char **)arg = ld->ld_options.ldo_def_sasl_authcid
1009                                 ? LDAP_STRDUP( ld->ld_options.ldo_def_sasl_authcid ) : NULL;
1010                 } break;
1011                 case LDAP_OPT_X_SASL_AUTHZID: {
1012                         *(char **)arg = ld->ld_options.ldo_def_sasl_authzid
1013                                 ? LDAP_STRDUP( ld->ld_options.ldo_def_sasl_authzid ) : NULL;
1014                 } break;
1015
1016                 case LDAP_OPT_X_SASL_SSF: {
1017                         int sc;
1018                         sasl_ssf_t      *ssf;
1019                         sasl_conn_t *ctx;
1020
1021                         if( ld->ld_defconn == NULL ) {
1022                                 return -1;
1023                         }
1024
1025                         ctx = ld->ld_defconn->lconn_sasl_sockctx;
1026
1027                         if ( ctx == NULL ) {
1028                                 return -1;
1029                         }
1030
1031                         sc = sasl_getprop( ctx, SASL_SSF,
1032                                 (SASL_CONST void **) &ssf );
1033
1034                         if ( sc != SASL_OK ) {
1035                                 return -1;
1036                         }
1037
1038                         *(ber_len_t *)arg = *ssf;
1039                 } break;
1040
1041                 case LDAP_OPT_X_SASL_SSF_EXTERNAL:
1042                         /* this option is write only */
1043                         return -1;
1044
1045                 case LDAP_OPT_X_SASL_SSF_MIN:
1046                         *(ber_len_t *)arg = ld->ld_options.ldo_sasl_secprops.min_ssf;
1047                         break;
1048                 case LDAP_OPT_X_SASL_SSF_MAX:
1049                         *(ber_len_t *)arg = ld->ld_options.ldo_sasl_secprops.max_ssf;
1050                         break;
1051                 case LDAP_OPT_X_SASL_MAXBUFSIZE:
1052                         *(ber_len_t *)arg = ld->ld_options.ldo_sasl_secprops.maxbufsize;
1053                         break;
1054
1055                 case LDAP_OPT_X_SASL_SECPROPS:
1056                         /* this option is write only */
1057                         return -1;
1058
1059                 default:
1060                         return -1;
1061         }
1062         return 0;
1063 }
1064
1065 int
1066 ldap_int_sasl_set_option( LDAP *ld, int option, void *arg )
1067 {
1068         if ( ld == NULL )
1069                 return -1;
1070
1071         switch ( option ) {
1072         case LDAP_OPT_X_SASL_SSF:
1073                 /* This option is read-only */
1074                 return -1;
1075
1076         case LDAP_OPT_X_SASL_SSF_EXTERNAL: {
1077                 int sc;
1078 #if SASL_VERSION_MAJOR < 2
1079                 sasl_external_properties_t extprops;
1080 #endif
1081                 sasl_conn_t *ctx;
1082
1083                 if( ld->ld_defconn == NULL ) {
1084                         return -1;
1085                 }
1086
1087                 ctx = ld->ld_defconn->lconn_sasl_authctx;
1088
1089                 if ( ctx == NULL ) {
1090                         return -1;
1091                 }
1092
1093 #if SASL_VERSION_MAJOR >= 2
1094                 sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL, arg);
1095 #else
1096                 memset(&extprops, 0L, sizeof(extprops));
1097
1098                 extprops.ssf = * (ber_len_t *) arg;
1099
1100                 sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL,
1101                         (void *) &extprops );
1102 #endif
1103
1104                 if ( sc != SASL_OK ) {
1105                         return -1;
1106                 }
1107                 } break;
1108
1109         case LDAP_OPT_X_SASL_SSF_MIN:
1110                 ld->ld_options.ldo_sasl_secprops.min_ssf = *(ber_len_t *)arg;
1111                 break;
1112         case LDAP_OPT_X_SASL_SSF_MAX:
1113                 ld->ld_options.ldo_sasl_secprops.max_ssf = *(ber_len_t *)arg;
1114                 break;
1115         case LDAP_OPT_X_SASL_MAXBUFSIZE:
1116                 ld->ld_options.ldo_sasl_secprops.maxbufsize = *(ber_len_t *)arg;
1117                 break;
1118
1119         case LDAP_OPT_X_SASL_SECPROPS: {
1120                 int sc;
1121                 sc = ldap_pvt_sasl_secprops( (char *) arg,
1122                         &ld->ld_options.ldo_sasl_secprops );
1123
1124                 return sc == LDAP_SUCCESS ? 0 : -1;
1125                 }
1126
1127         default:
1128                 return -1;
1129         }
1130         return 0;
1131 }
1132
1133 #ifdef LDAP_R_COMPILE
1134 #define LDAP_DEBUG_R_SASL
1135 void *ldap_pvt_sasl_mutex_new(void)
1136 {
1137         ldap_pvt_thread_mutex_t *mutex;
1138
1139         mutex = (ldap_pvt_thread_mutex_t *) LDAP_MALLOC(
1140                 sizeof(ldap_pvt_thread_mutex_t) );
1141
1142         if ( ldap_pvt_thread_mutex_init( mutex ) == 0 ) {
1143                 return mutex;
1144         }
1145 #ifndef LDAP_DEBUG_R_SASL
1146         assert( 0 );
1147 #endif /* !LDAP_DEBUG_R_SASL */
1148         return NULL;
1149 }
1150
1151 int ldap_pvt_sasl_mutex_lock(void *mutex)
1152 {
1153 #ifdef LDAP_DEBUG_R_SASL
1154         if ( mutex == NULL ) {
1155                 return SASL_OK;
1156         }
1157 #else /* !LDAP_DEBUG_R_SASL */
1158         assert( mutex );
1159 #endif /* !LDAP_DEBUG_R_SASL */
1160         return ldap_pvt_thread_mutex_lock( (ldap_pvt_thread_mutex_t *)mutex )
1161                 ? SASL_FAIL : SASL_OK;
1162 }
1163
1164 int ldap_pvt_sasl_mutex_unlock(void *mutex)
1165 {
1166 #ifdef LDAP_DEBUG_R_SASL
1167         if ( mutex == NULL ) {
1168                 return SASL_OK;
1169         }
1170 #else /* !LDAP_DEBUG_R_SASL */
1171         assert( mutex );
1172 #endif /* !LDAP_DEBUG_R_SASL */
1173         return ldap_pvt_thread_mutex_unlock( (ldap_pvt_thread_mutex_t *)mutex )
1174                 ? SASL_FAIL : SASL_OK;
1175 }
1176
1177 void ldap_pvt_sasl_mutex_dispose(void *mutex)
1178 {
1179 #ifdef LDAP_DEBUG_R_SASL
1180         if ( mutex == NULL ) {
1181                 return;
1182         }
1183 #else /* !LDAP_DEBUG_R_SASL */
1184         assert( mutex );
1185 #endif /* !LDAP_DEBUG_R_SASL */
1186         (void) ldap_pvt_thread_mutex_destroy( (ldap_pvt_thread_mutex_t *)mutex );
1187         LDAP_FREE( mutex );
1188 }
1189 #endif
1190
1191 #else
1192 int ldap_int_sasl_init( void )
1193 { return LDAP_SUCCESS; }
1194
1195 int ldap_int_sasl_close( LDAP *ld, LDAPConn *lc )
1196 { return LDAP_SUCCESS; }
1197
1198 int
1199 ldap_int_sasl_bind(
1200         LDAP                    *ld,
1201         const char              *dn,
1202         const char              *mechs,
1203         LDAPControl             **sctrls,
1204         LDAPControl             **cctrls,
1205         unsigned                flags,
1206         LDAP_SASL_INTERACT_PROC *interact,
1207         void * defaults )
1208 { return LDAP_NOT_SUPPORTED; }
1209
1210 int
1211 ldap_int_sasl_external(
1212         LDAP *ld,
1213         LDAPConn *conn,
1214         const char * authid,
1215         ber_len_t ssf )
1216 { return LDAP_SUCCESS; }
1217
1218 #endif /* HAVE_CYRUS_SASL */