]> git.sur5r.net Git - openldap/blob - servers/slapd/passwd.c
Zero out op2
[openldap] / servers / slapd / passwd.c
1 /* passwd.c - password extended operation routines */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2005 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20
21 #include <ac/krb.h>
22 #include <ac/socket.h>
23 #include <ac/string.h>
24 #include <ac/unistd.h>
25
26 #ifdef SLAPD_CRYPT
27 #include <ac/crypt.h>
28 #endif
29
30 #include "slap.h"
31
32 #include <lber_pvt.h>
33 #include <lutil.h>
34 #include <lutil_sha1.h>
35
36 static const char *defhash[] = {
37 #ifdef LUTIL_SHA1_BYTES
38         "{SSHA}",
39 #else
40         "{SMD5}",
41 #endif
42         NULL
43 };
44
45 int passwd_extop(
46         Operation *op,
47         SlapReply *rs )
48 {
49         struct berval id = {0, NULL}, hash, *rsp = NULL;
50         req_pwdexop_s *qpw = &op->oq_pwdexop;
51         req_extended_s qext = op->oq_extended;
52         Modifications *ml;
53         slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
54         slap_callback cb2 = { NULL, slap_replog_cb, NULL, NULL };
55         int i, nhash;
56         char **hashes;
57         int     rc;
58         BackendDB *op_be;
59
60         cb2.sc_next = &cb;
61
62         assert( ber_bvcmp( &slap_EXOP_MODIFY_PASSWD, &op->ore_reqoid ) == 0 );
63
64         if( op->o_dn.bv_len == 0 ) {
65                 Statslog( LDAP_DEBUG_STATS, "%s PASSMOD\n",
66                         op->o_log_prefix, 0, 0, 0, 0 );
67                 rs->sr_text = "only authenticated users may change passwords";
68                 return LDAP_STRONG_AUTH_REQUIRED;
69         }
70
71         qpw->rs_old.bv_val = NULL;
72         qpw->rs_new.bv_val = NULL;
73         qpw->rs_mods = NULL;
74         qpw->rs_modtail = NULL;
75
76         rs->sr_err = slap_passwd_parse( op->ore_reqdata, &id, &qpw->rs_old,
77                 &qpw->rs_new, &rs->sr_text );
78
79         if ( rs->sr_err == LDAP_SUCCESS && !BER_BVISEMPTY( &id ) ) {
80                 Statslog( LDAP_DEBUG_STATS, "%s PASSMOD id=\"%s\"%s%s\n",
81                         op->o_log_prefix, id.bv_val,
82                         qpw->rs_old.bv_val ? " old" : "",
83                         qpw->rs_new.bv_val ? " new" : "", 0 );
84         } else {
85                 Statslog( LDAP_DEBUG_STATS, "%s PASSMOD\n",
86                         op->o_log_prefix, 0, 0, 0, 0 );
87         }
88
89         if ( rs->sr_err != LDAP_SUCCESS ) {
90                 return rs->sr_err;
91         }
92
93         if ( !BER_BVISEMPTY( &id ) ) {
94                 rs->sr_err = dnPrettyNormal( NULL, &id, &op->o_req_dn,
95                                 &op->o_req_ndn, op->o_tmpmemctx );
96                 if ( rs->sr_err != LDAP_SUCCESS ) {
97                         rs->sr_text = "Invalid DN";
98                         rc = rs->sr_err;
99                         goto error_return;
100                 }
101                 op->o_bd = select_backend( &op->o_req_ndn, 0, 1 );
102
103         } else {
104                 ber_dupbv_x( &op->o_req_dn, &op->o_dn, op->o_tmpmemctx );
105                 ber_dupbv_x( &op->o_req_ndn, &op->o_ndn, op->o_tmpmemctx );
106                 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
107                 op->o_bd = op->o_conn->c_authz_backend;
108                 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
109         }
110
111         if( op->o_bd == NULL ) {
112 #ifdef HAVE_CYRUS_SASL
113                 rc = slap_sasl_setpass( op, rs );
114 #else
115                 rs->sr_text = "no authz backend";
116                 rc = LDAP_OTHER;
117 #endif
118                 goto error_return;
119         }
120
121         if ( op->o_req_ndn.bv_len == 0 ) {
122                 rs->sr_text = "no password is associated with the Root DSE";
123                 rc = LDAP_UNWILLING_TO_PERFORM;
124                 goto error_return;
125         }
126
127         /* If we've got a glued backend, check the real backend */
128         op_be = op->o_bd;
129         if ( SLAP_GLUE_INSTANCE( op->o_bd )) {
130                 op->o_bd = select_backend( &op->o_req_ndn, 0, 0 );
131         }
132
133         if (backend_check_restrictions( op, rs,
134                         (struct berval *)&slap_EXOP_MODIFY_PASSWD ) != LDAP_SUCCESS) {
135                 rc = rs->sr_err;
136                 goto error_return;
137         }
138
139         /* check for referrals */
140         if ( backend_check_referrals( op, rs ) != LDAP_SUCCESS ) {
141                 rc = rs->sr_err;
142                 goto error_return;
143         }
144
145 #ifndef SLAPD_MULTIMASTER
146         /* This does not apply to multi-master case */
147         if(!( !SLAP_SHADOW( op->o_bd ) || be_isupdate( op ))) {
148                 /* we SHOULD return a referral in this case */
149                 BerVarray defref = op->o_bd->be_update_refs
150                         ? op->o_bd->be_update_refs : default_referral; 
151
152                 if( defref != NULL ) {
153                         rs->sr_ref = referral_rewrite( op->o_bd->be_update_refs,
154                                 NULL, NULL, LDAP_SCOPE_DEFAULT );
155                         if(rs->sr_ref) {
156                                 rs->sr_flags |= REP_REF_MUSTBEFREED;
157                         } else {
158                                 rs->sr_ref = defref;
159                         }
160                         rc = LDAP_REFERRAL;
161                         goto error_return;
162
163                 }
164
165                 rs->sr_text = "shadow context; no update referral";
166                 rc = LDAP_UNWILLING_TO_PERFORM;
167                 goto error_return;
168         }
169 #endif /* !SLAPD_MULTIMASTER */
170
171         /* generate a new password if none was provided */
172         if ( qpw->rs_new.bv_len == 0 ) {
173                 slap_passwd_generate( &qpw->rs_new );
174                 if ( qpw->rs_new.bv_len ) {
175                         rsp = slap_passwd_return( &qpw->rs_new );
176                 }
177         }
178         if ( qpw->rs_new.bv_len == 0 ) {
179                 rs->sr_text = "password generation failed";
180                 rc = LDAP_OTHER;
181                 goto error_return;
182         }
183
184         op->o_bd = op_be;
185
186         /* Give the backend a chance to handle this itself */
187         if ( op->o_bd->be_extended ) {
188                 rs->sr_err = op->o_bd->be_extended( op, rs );
189                 if ( rs->sr_err != LDAP_UNWILLING_TO_PERFORM &&
190                         rs->sr_err != SLAP_CB_CONTINUE ) {
191                         rc = rs->sr_err;
192                         goto error_return;
193                 }
194         }
195
196         /* The backend didn't handle it, so try it here */
197         if( op->o_bd && !op->o_bd->be_modify ) {
198                 rs->sr_text = "operation not supported for current user";
199                 rc = LDAP_UNWILLING_TO_PERFORM;
200                 goto error_return;
201         }
202
203         ml = ch_malloc( sizeof(Modifications) );
204         if ( !qpw->rs_modtail ) qpw->rs_modtail = &ml->sml_next;
205
206         if ( default_passwd_hash ) {
207                 for ( nhash = 0; default_passwd_hash[nhash]; nhash++ );
208                 hashes = default_passwd_hash;
209         } else {
210                 nhash = 1;
211                 hashes = (char **)defhash;
212         }
213         ml->sml_values = ch_malloc( (nhash+1)*sizeof(struct berval) );
214         for ( i=0; hashes[i]; i++ ) {
215                 slap_passwd_hash_type( &qpw->rs_new, &hash, hashes[i], &rs->sr_text );
216                 if ( hash.bv_len == 0 ) {
217                         if ( !rs->sr_text ) {
218                                 rs->sr_text = "password hash failed";
219                         }
220                         break;
221                 }
222                 ml->sml_values[i] = hash;
223         }
224         ml->sml_values[i].bv_val = NULL;
225         ml->sml_nvalues = NULL;
226         ml->sml_desc = slap_schema.si_ad_userPassword;
227         ml->sml_op = LDAP_MOD_REPLACE;
228         ml->sml_flags = 0;
229         ml->sml_next = qpw->rs_mods;
230         qpw->rs_mods = ml;
231
232         if ( hashes[i] ) {
233                 rs->sr_err = LDAP_OTHER;
234
235         } else {
236                 slap_callback *sc = op->o_callback;
237
238                 op->o_tag = LDAP_REQ_MODIFY;
239                 op->o_callback = &cb2;
240                 op->orm_modlist = qpw->rs_mods;
241                 cb2.sc_private = qpw;   /* let Modify know this was pwdMod,
242                                          * if it cares... */
243
244                 rs->sr_err = slap_mods_opattrs( op, ml, qpw->rs_modtail, &rs->sr_text,
245                         NULL, 0, 1 );
246                 
247                 if ( rs->sr_err == LDAP_SUCCESS ) {
248                         rs->sr_err = op->o_bd->be_modify( op, rs );
249                 }
250                 if ( rs->sr_err == LDAP_SUCCESS ) {
251                         rs->sr_rspdata = rsp;
252                 } else if ( rsp ) {
253                         ber_bvfree( rsp );
254                 }
255                 op->o_tag = LDAP_REQ_EXTENDED;
256                 op->o_callback = sc;
257         }
258         slap_mods_free( qpw->rs_mods, 1 );
259         if ( rsp ) {
260                 free( qpw->rs_new.bv_val );
261         }
262
263         rc = rs->sr_err;
264         op->oq_extended = qext;
265
266 error_return:;
267         if ( !BER_BVISNULL( &op->o_req_dn ) ) {
268                 op->o_tmpfree( op->o_req_dn.bv_val, op->o_tmpmemctx );
269         }
270         if ( !BER_BVISNULL( &op->o_req_ndn ) ) {
271                 op->o_tmpfree( op->o_req_ndn.bv_val, op->o_tmpmemctx );
272         }
273
274         return rc;
275 }
276
277 int slap_passwd_parse( struct berval *reqdata,
278         struct berval *id,
279         struct berval *oldpass,
280         struct berval *newpass,
281         const char **text )
282 {
283         int rc = LDAP_SUCCESS;
284         ber_tag_t tag;
285         ber_len_t len = -1;
286         BerElementBuffer berbuf;
287         BerElement *ber = (BerElement *)&berbuf;
288
289         if( reqdata == NULL ) {
290                 return LDAP_SUCCESS;
291         }
292
293         if( reqdata->bv_len == 0 ) {
294                 *text = "empty request data field";
295                 return LDAP_PROTOCOL_ERROR;
296         }
297
298         /* ber_init2 uses reqdata directly, doesn't allocate new buffers */
299         ber_init2( ber, reqdata, 0 );
300
301         tag = ber_scanf( ber, "{" /*}*/ );
302
303         if( tag == LBER_ERROR ) {
304                 Debug( LDAP_DEBUG_TRACE,
305                         "slap_passwd_parse: decoding error\n", 0, 0, 0 );
306                 rc = LDAP_PROTOCOL_ERROR;
307                 goto done;
308         }
309
310         tag = ber_peek_tag( ber, &len );
311         if( tag == LDAP_TAG_EXOP_MODIFY_PASSWD_ID ) {
312                 if( id == NULL ) {
313                         Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: ID not allowed.\n",
314                                 0, 0, 0 );
315
316                         *text = "user must change own password";
317                         rc = LDAP_UNWILLING_TO_PERFORM;
318                         goto done;
319                 }
320
321                 tag = ber_scanf( ber, "m", id );
322
323                 if( tag == LBER_ERROR ) {
324                         Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: ID parse failed.\n",
325                                 0, 0, 0 );
326
327                         goto decoding_error;
328                 }
329
330                 tag = ber_peek_tag( ber, &len );
331         }
332
333         if( tag == LDAP_TAG_EXOP_MODIFY_PASSWD_OLD ) {
334                 if( oldpass == NULL ) {
335                         Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: OLD not allowed.\n",
336                                 0, 0, 0 );
337
338                         *text = "use bind to verify old password";
339                         rc = LDAP_UNWILLING_TO_PERFORM;
340                         goto done;
341                 }
342
343                 tag = ber_scanf( ber, "m", oldpass );
344
345                 if( tag == LBER_ERROR ) {
346                         Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: OLD parse failed.\n",
347                                 0, 0, 0 );
348
349                         goto decoding_error;
350                 }
351
352                 tag = ber_peek_tag( ber, &len );
353         }
354
355         if( tag == LDAP_TAG_EXOP_MODIFY_PASSWD_NEW ) {
356                 if( newpass == NULL ) {
357                         Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: NEW not allowed.\n",
358                                 0, 0, 0 );
359
360                         *text = "user specified passwords disallowed";
361                         rc = LDAP_UNWILLING_TO_PERFORM;
362                         goto done;
363                 }
364
365                 tag = ber_scanf( ber, "m", newpass );
366
367                 if( tag == LBER_ERROR ) {
368                         Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: NEW parse failed.\n",
369                                 0, 0, 0 );
370
371                         goto decoding_error;
372                 }
373
374                 tag = ber_peek_tag( ber, &len );
375         }
376
377         if( len != 0 ) {
378 decoding_error:
379                 Debug( LDAP_DEBUG_TRACE,
380                         "slap_passwd_parse: decoding error, len=%ld\n",
381                         (long) len, 0, 0 );
382
383                 *text = "data decoding error";
384                 rc = LDAP_PROTOCOL_ERROR;
385         }
386
387 done:
388         return rc;
389 }
390
391 struct berval * slap_passwd_return(
392         struct berval           *cred )
393 {
394         int rc;
395         struct berval *bv = NULL;
396         BerElementBuffer berbuf;
397         /* opaque structure, size unknown but smaller than berbuf */
398         BerElement *ber = (BerElement *)&berbuf;
399
400         assert( cred != NULL );
401
402         Debug( LDAP_DEBUG_TRACE, "slap_passwd_return: %ld\n",
403                 (long) cred->bv_len, 0, 0 );
404         
405         ber_init_w_nullc( ber, LBER_USE_DER );
406
407         rc = ber_printf( ber, "{tON}",
408                 LDAP_TAG_EXOP_MODIFY_PASSWD_GEN, cred );
409
410         if( rc >= 0 ) {
411                 (void) ber_flatten( ber, &bv );
412         }
413
414         ber_free_buf( ber );
415
416         return bv;
417 }
418
419 /*
420  * if "e" is provided, access to each value of the password is checked first
421  */
422 int
423 slap_passwd_check(
424         Operation       *op,
425         Entry           *e,
426         Attribute       *a,
427         struct berval   *cred,
428         const char      **text )
429 {
430         int                     result = 1;
431         struct berval           *bv;
432         AccessControlState      acl_state = ACL_STATE_INIT;
433
434 #ifdef SLAPD_SPASSWD
435         ldap_pvt_thread_pool_setkey( op->o_threadctx, slap_sasl_bind,
436                 op->o_conn->c_sasl_authctx, NULL );
437 #endif
438
439         for ( bv = a->a_vals; bv->bv_val != NULL; bv++ ) {
440                 /* if e is provided, check access */
441                 if ( e && access_allowed( op, e, a->a_desc, bv,
442                                         ACL_AUTH, &acl_state ) == 0 )
443                 {
444                         continue;
445                 }
446                 
447                 if ( !lutil_passwd( bv, cred, NULL, text ) ) {
448                         result = 0;
449                         break;
450                 }
451         }
452
453 #ifdef SLAPD_SPASSWD
454         ldap_pvt_thread_pool_setkey( op->o_threadctx, slap_sasl_bind,
455                 NULL, NULL );
456 #endif
457
458         return result;
459 }
460
461 void
462 slap_passwd_generate( struct berval *pass )
463 {
464         Debug( LDAP_DEBUG_TRACE, "slap_passwd_generate\n", 0, 0, 0 );
465         pass->bv_val = NULL;
466         pass->bv_len = 0;
467
468         /*
469          * generate passwords of only 8 characters as some getpass(3)
470          * implementations truncate at 8 characters.
471          */
472         lutil_passwd_generate( pass, 8 );
473 }
474
475 void
476 slap_passwd_hash_type(
477         struct berval * cred,
478         struct berval * new,
479         char *hash,
480         const char **text )
481 {
482         new->bv_len = 0;
483         new->bv_val = NULL;
484
485         assert( hash != NULL );
486
487         lutil_passwd_hash( cred , hash, new, text );
488 }
489 void
490 slap_passwd_hash(
491         struct berval * cred,
492         struct berval * new,
493         const char **text )
494 {
495         char *hash = NULL;
496         if ( default_passwd_hash ) {
497                 hash = default_passwd_hash[0];
498         }
499         if ( !hash ) {
500                 hash = (char *)defhash[0];
501         }
502
503         slap_passwd_hash_type( cred, new, hash, text );
504 }
505
506 #ifdef SLAPD_CRYPT
507 static ldap_pvt_thread_mutex_t passwd_mutex;
508 static lutil_cryptfunc slapd_crypt;
509
510 static int slapd_crypt( const char *key, const char *salt, char **hash )
511 {
512         char *cr;
513         int rc;
514
515         ldap_pvt_thread_mutex_lock( &passwd_mutex );
516
517         cr = crypt( key, salt );
518         if ( cr == NULL || cr[0] == '\0' ) {
519                 /* salt must have been invalid */
520                 rc = LUTIL_PASSWD_ERR;
521         } else {
522                 if ( hash ) {
523                         *hash = ber_strdup( cr );
524                         rc = LUTIL_PASSWD_OK;
525
526                 } else {
527                         rc = strcmp( salt, cr ) ? LUTIL_PASSWD_ERR : LUTIL_PASSWD_OK;
528                 }
529         }
530
531         ldap_pvt_thread_mutex_unlock( &passwd_mutex );
532         return rc;
533 }
534 #endif /* SLAPD_CRYPT */
535
536 void slap_passwd_init()
537 {
538 #ifdef SLAPD_CRYPT
539         ldap_pvt_thread_mutex_init( &passwd_mutex );
540         lutil_cryptptr = slapd_crypt;
541 #endif
542 }
543