]> git.sur5r.net Git - openldap/blob - libraries/libldap/sasl.c
eb8867af0df0a1d503bd2032c1bd4eaad680c086
[openldap] / libraries / libldap / sasl.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6
7 /*
8  *      BindRequest ::= SEQUENCE {
9  *              version         INTEGER,
10  *              name            DistinguishedName,       -- who
11  *              authentication  CHOICE {
12  *                      simple          [0] OCTET STRING -- passwd
13 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
14  *                      krbv42ldap      [1] OCTET STRING
15  *                      krbv42dsa       [2] OCTET STRING
16 #endif
17  *                      sasl            [3] SaslCredentials     -- LDAPv3
18  *              }
19  *      }
20  *
21  *      BindResponse ::= SEQUENCE {
22  *              COMPONENTS OF LDAPResult,
23  *              serverSaslCreds         OCTET STRING OPTIONAL -- LDAPv3
24  *      }
25  *
26  */
27
28 #include "portable.h"
29
30 #include <stdio.h>
31
32 #include <ac/socket.h>
33 #include <ac/stdlib.h>
34 #include <ac/string.h>
35 #include <ac/time.h>
36 #include <ac/errno.h>
37
38 #include "ldap-int.h"
39
40 /*
41  * ldap_sasl_bind - bind to the ldap server (and X.500).
42  * The dn (usually NULL), mechanism, and credentials are provided.
43  * The message id of the request initiated is provided upon successful
44  * (LDAP_SUCCESS) return.
45  *
46  * Example:
47  *      ldap_sasl_bind( ld, NULL, "mechanism",
48  *              cred, NULL, NULL, &msgid )
49  */
50
51 int
52 ldap_sasl_bind(
53         LDAP                    *ld,
54         LDAP_CONST char *dn,
55         LDAP_CONST char *mechanism,
56         struct berval   *cred,
57         LDAPControl             **sctrls,
58         LDAPControl             **cctrls,
59         int                             *msgidp )
60 {
61         BerElement      *ber;
62         int rc;
63
64         Debug( LDAP_DEBUG_TRACE, "ldap_sasl_bind\n", 0, 0, 0 );
65
66         assert( ld != NULL );
67         assert( LDAP_VALID( ld ) );
68         assert( msgidp != NULL );
69
70         /* check client controls */
71         rc = ldap_int_client_controls( ld, cctrls );
72         if( rc != LDAP_SUCCESS ) return rc;
73
74         if( msgidp == NULL ) {
75                 ld->ld_errno = LDAP_PARAM_ERROR;
76                 return ld->ld_errno;
77         }
78
79         if( mechanism == LDAP_SASL_SIMPLE ) {
80                 if( dn == NULL && cred != NULL ) {
81                         /* use default binddn */
82                         dn = ld->ld_defbinddn;
83                 }
84
85         } else if( ld->ld_version < LDAP_VERSION3 ) {
86                 ld->ld_errno = LDAP_NOT_SUPPORTED;
87                 return ld->ld_errno;
88         }
89
90         if ( dn == NULL ) {
91                 dn = "";
92         }
93
94         /* create a message to send */
95         if ( (ber = ldap_alloc_ber_with_options( ld )) == NULL ) {
96                 ld->ld_errno = LDAP_NO_MEMORY;
97                 return ld->ld_errno;
98         }
99
100         assert( LBER_VALID( ber ) );
101
102         if( mechanism == LDAP_SASL_SIMPLE ) {
103                 /* simple bind */
104                 rc = ber_printf( ber, "{it{istON}" /*}*/,
105                         ++ld->ld_msgid, LDAP_REQ_BIND,
106                         ld->ld_version, dn, LDAP_AUTH_SIMPLE,
107                         cred );
108                 
109         } else if ( cred == NULL || !cred->bv_len ) {
110                 /* SASL bind w/o creditials */
111                 rc = ber_printf( ber, "{it{ist{sN}N}" /*}*/,
112                         ++ld->ld_msgid, LDAP_REQ_BIND,
113                         ld->ld_version, dn, LDAP_AUTH_SASL,
114                         mechanism );
115
116         } else {
117                 /* SASL bind w/ creditials */
118                 rc = ber_printf( ber, "{it{ist{sON}N}" /*}*/,
119                         ++ld->ld_msgid, LDAP_REQ_BIND,
120                         ld->ld_version, dn, LDAP_AUTH_SASL,
121                         mechanism, cred );
122         }
123
124         if( rc == -1 ) {
125                 ld->ld_errno = LDAP_ENCODING_ERROR;
126                 ber_free( ber, 1 );
127                 return( -1 );
128         }
129
130         /* Put Server Controls */
131         if( ldap_int_put_controls( ld, sctrls, ber ) != LDAP_SUCCESS ) {
132                 ber_free( ber, 1 );
133                 return ld->ld_errno;
134         }
135
136         if ( ber_printf( ber, /*{*/ "N}" ) == -1 ) {
137                 ld->ld_errno = LDAP_ENCODING_ERROR;
138                 ber_free( ber, 1 );
139                 return ld->ld_errno;
140         }
141
142 #ifndef LDAP_NOCACHE
143         if ( ld->ld_cache != NULL ) {
144                 ldap_flush_cache( ld );
145         }
146 #endif /* !LDAP_NOCACHE */
147
148         /* send the message */
149         *msgidp = ldap_send_initial_request( ld, LDAP_REQ_BIND, dn, ber );
150
151         if(*msgidp < 0)
152                 return ld->ld_errno;
153
154         return LDAP_SUCCESS;
155 }
156
157
158 int
159 ldap_sasl_bind_s(
160         LDAP                    *ld,
161         LDAP_CONST char *dn,
162         LDAP_CONST char *mechanism,
163         struct berval   *cred,
164         LDAPControl             **sctrls,
165         LDAPControl             **cctrls,
166         struct berval   **servercredp )
167 {
168         int     rc, msgid;
169         LDAPMessage     *result;
170         struct berval   *scredp = NULL;
171
172         Debug( LDAP_DEBUG_TRACE, "ldap_sasl_bind_s\n", 0, 0, 0 );
173
174         /* do a quick !LDAPv3 check... ldap_sasl_bind will do the rest. */
175         if( servercredp != NULL ) {
176                 if (ld->ld_version < LDAP_VERSION3) {
177                         ld->ld_errno = LDAP_NOT_SUPPORTED;
178                         return ld->ld_errno;
179                 }
180                 *servercredp = NULL;
181         }
182
183         rc = ldap_sasl_bind( ld, dn, mechanism, cred, sctrls, cctrls, &msgid );
184
185         if ( rc != LDAP_SUCCESS ) {
186                 return( rc );
187         }
188
189 #ifdef LDAP_CONNECTIONLESS
190         if (LDAP_IS_UDP(ld)) {
191                 return( rc );
192         }
193 #endif
194
195         if ( ldap_result( ld, msgid, 1, NULL, &result ) == -1 ) {
196                 return( ld->ld_errno ); /* ldap_result sets ld_errno */
197         }
198
199         /* parse the results */
200         scredp = NULL;
201         if( servercredp != NULL ) {
202                 rc = ldap_parse_sasl_bind_result( ld, result, &scredp, 0 );
203         }
204
205         if ( rc != LDAP_SUCCESS && rc != LDAP_SASL_BIND_IN_PROGRESS ) {
206                 ldap_msgfree( result );
207                 return( rc );
208         }
209
210         rc = ldap_result2error( ld, result, 1 );
211
212         if ( rc == LDAP_SUCCESS || rc == LDAP_SASL_BIND_IN_PROGRESS ) {
213                 if( servercredp != NULL ) {
214                         *servercredp = scredp;
215                         scredp = NULL;
216                 }
217         }
218
219         if ( scredp != NULL ) {
220                 ber_bvfree(scredp);
221         }
222
223         return rc;
224 }
225
226
227 /*
228 * Parse BindResponse:
229 *
230 *   BindResponse ::= [APPLICATION 1] SEQUENCE {
231 *     COMPONENTS OF LDAPResult,
232 *     serverSaslCreds  [7] OCTET STRING OPTIONAL }
233 *
234 *   LDAPResult ::= SEQUENCE {
235 *     resultCode      ENUMERATED,
236 *     matchedDN       LDAPDN,
237 *     errorMessage    LDAPString,
238 *     referral        [3] Referral OPTIONAL }
239 */
240
241 int
242 ldap_parse_sasl_bind_result(
243         LDAP                    *ld,
244         LDAPMessage             *res,
245         struct berval   **servercredp,
246         int                             freeit )
247 {
248         ber_int_t errcode;
249         struct berval* scred;
250
251         ber_tag_t tag;
252         BerElement      *ber;
253
254         Debug( LDAP_DEBUG_TRACE, "ldap_parse_sasl_bind_result\n", 0, 0, 0 );
255
256         assert( ld != NULL );
257         assert( LDAP_VALID( ld ) );
258         assert( res != NULL );
259
260         if ( ld == NULL || res == NULL ) {
261                 return LDAP_PARAM_ERROR;
262         }
263
264         if( servercredp != NULL ) {
265                 if( ld->ld_version < LDAP_VERSION2 ) {
266                         return LDAP_NOT_SUPPORTED;
267                 }
268                 *servercredp = NULL;
269         }
270
271         if( res->lm_msgtype != LDAP_RES_BIND ) {
272                 ld->ld_errno = LDAP_PARAM_ERROR;
273                 return ld->ld_errno;
274         }
275
276         scred = NULL;
277
278         if ( ld->ld_error ) {
279                 LDAP_FREE( ld->ld_error );
280                 ld->ld_error = NULL;
281         }
282         if ( ld->ld_matched ) {
283                 LDAP_FREE( ld->ld_matched );
284                 ld->ld_matched = NULL;
285         }
286
287         /* parse results */
288
289         ber = ber_dup( res->lm_ber );
290
291         if( ber == NULL ) {
292                 ld->ld_errno = LDAP_NO_MEMORY;
293                 return ld->ld_errno;
294         }
295
296         if ( ld->ld_version < LDAP_VERSION2 ) {
297                 tag = ber_scanf( ber, "{ia}",
298                         &errcode, &ld->ld_error );
299
300                 if( tag == LBER_ERROR ) {
301                         ber_free( ber, 0 );
302                         ld->ld_errno = LDAP_DECODING_ERROR;
303                         return ld->ld_errno;
304                 }
305
306         } else {
307                 ber_len_t len;
308
309                 tag = ber_scanf( ber, "{iaa" /*}*/,
310                         &errcode, &ld->ld_matched, &ld->ld_error );
311
312                 if( tag == LBER_ERROR ) {
313                         ber_free( ber, 0 );
314                         ld->ld_errno = LDAP_DECODING_ERROR;
315                         return ld->ld_errno;
316                 }
317
318                 tag = ber_peek_tag(ber, &len);
319
320                 if( tag == LDAP_TAG_REFERRAL ) {
321                         /* skip 'em */
322                         if( ber_scanf( ber, "x" ) == LBER_ERROR ) {
323                                 ber_free( ber, 0 );
324                                 ld->ld_errno = LDAP_DECODING_ERROR;
325                                 return ld->ld_errno;
326                         }
327
328                         tag = ber_peek_tag(ber, &len);
329                 }
330
331                 if( tag == LDAP_TAG_SASL_RES_CREDS ) {
332                         if( ber_scanf( ber, "O", &scred ) == LBER_ERROR ) {
333                                 ber_free( ber, 0 );
334                                 ld->ld_errno = LDAP_DECODING_ERROR;
335                                 return ld->ld_errno;
336                         }
337                 }
338         }
339
340         ber_free( ber, 0 );
341
342         if ( servercredp != NULL ) {
343                 *servercredp = scred;
344
345         } else if ( scred != NULL ) {
346                 ber_bvfree( scred );
347         }
348
349         ld->ld_errno = errcode;
350
351         if ( freeit ) {
352                 ldap_msgfree( res );
353         }
354
355         return( ld->ld_errno );
356 }
357
358 int
359 ldap_pvt_sasl_getmechs ( LDAP *ld, char **pmechlist )
360 {
361         /* we need to query the server for supported mechs anyway */
362         LDAPMessage *res, *e;
363         char *attrs[] = { "supportedSASLMechanisms", NULL };
364         char **values, *mechlist;
365         int rc;
366
367         Debug( LDAP_DEBUG_TRACE, "ldap_pvt_sasl_getmech\n", 0, 0, 0 );
368
369         rc = ldap_search_s( ld, "", LDAP_SCOPE_BASE,
370                 NULL, attrs, 0, &res );
371
372         if ( rc != LDAP_SUCCESS ) {
373                 return ld->ld_errno;
374         }
375                 
376         e = ldap_first_entry( ld, res );
377         if ( e == NULL ) {
378                 ldap_msgfree( res );
379                 if ( ld->ld_errno == LDAP_SUCCESS ) {
380                         ld->ld_errno = LDAP_NO_SUCH_OBJECT;
381                 }
382                 return ld->ld_errno;
383         }
384
385         values = ldap_get_values( ld, e, "supportedSASLMechanisms" );
386         if ( values == NULL ) {
387                 ldap_msgfree( res );
388                 ld->ld_errno = LDAP_NO_SUCH_ATTRIBUTE;
389                 return ld->ld_errno;
390         }
391
392         mechlist = ldap_charray2str( values, " " );
393         if ( mechlist == NULL ) {
394                 LDAP_VFREE( values );
395                 ldap_msgfree( res );
396                 ld->ld_errno = LDAP_NO_MEMORY;
397                 return ld->ld_errno;
398         } 
399
400         LDAP_VFREE( values );
401         ldap_msgfree( res );
402
403         *pmechlist = mechlist;
404
405         return LDAP_SUCCESS;
406 }
407
408 /*
409  * ldap_sasl_interactive_bind_s - interactive SASL authentication
410  *
411  * This routine uses interactive callbacks.
412  *
413  * LDAP_SUCCESS is returned upon success, the ldap error code
414  * otherwise.
415  */
416 int
417 ldap_sasl_interactive_bind_s(
418         LDAP *ld,
419         LDAP_CONST char *dn, /* usually NULL */
420         LDAP_CONST char *mechs,
421         LDAPControl **serverControls,
422         LDAPControl **clientControls,
423         unsigned flags,
424         LDAP_SASL_INTERACT_PROC *interact,
425         void *defaults )
426 {
427         int rc;
428
429 #if defined( LDAP_R_COMPILE ) && defined( HAVE_CYRUS_SASL )
430         ldap_pvt_thread_mutex_lock( &ldap_int_sasl_mutex );
431 #endif
432 #ifdef LDAP_CONNECTIONLESS
433         if( LDAP_IS_UDP(ld) ) {
434                 /* Just force it to simple bind, silly to make the user
435                  * ask all the time. No, we don't ever actually bind, but I'll
436                  * let the final bind handler take care of saving the cdn.
437                  */
438                 rc = ldap_simple_bind(ld, dn, NULL);
439                 return rc < 0 ? rc : 0;
440         } else
441 #endif
442         if( mechs == NULL || *mechs == '\0' ) {
443                 char *smechs;
444
445                 rc = ldap_pvt_sasl_getmechs( ld, &smechs );
446
447                 if( rc != LDAP_SUCCESS ) {
448                         goto done;
449                 }
450
451                 Debug( LDAP_DEBUG_TRACE,
452                         "ldap_interactive_sasl_bind_s: server supports: %s\n",
453                         smechs, 0, 0 );
454
455                 mechs = smechs;
456
457         } else {
458                 Debug( LDAP_DEBUG_TRACE,
459                         "ldap_interactive_sasl_bind_s: user selected: %s\n",
460                         mechs, 0, 0 );
461         }
462
463         rc = ldap_int_sasl_bind( ld, dn, mechs,
464                 serverControls, clientControls,
465                 flags, interact, defaults );
466
467 done:
468 #if defined( LDAP_R_COMPILE ) && defined( HAVE_CYRUS_SASL )
469         ldap_pvt_thread_mutex_unlock( &ldap_int_sasl_mutex );
470 #endif
471
472         return rc;
473 }