2000-09-21 07:29:14 +08:00
|
|
|
/* passwd.c - ldbm backend password routines */
|
1999-12-08 12:37:59 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
1999-12-08 12:37:59 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldbm.h"
|
|
|
|
#include "proto-back-ldbm.h"
|
2003-02-16 14:15:28 +08:00
|
|
|
#include "lber_pvt.h"
|
1999-12-08 12:37:59 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_exop_passwd(
|
2003-03-30 17:03:54 +08:00
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
2003-03-30 17:03:54 +08:00
|
|
|
struct ldbminfo *li = (struct ldbminfo *) op->o_bd->be_private;
|
2002-04-08 17:43:22 +08:00
|
|
|
int rc;
|
1999-12-10 05:30:32 +08:00
|
|
|
Entry *e = NULL;
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval hash = { 0, NULL };
|
1999-12-10 05:30:32 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval id = { 0, NULL };
|
|
|
|
struct berval new = { 0, NULL };
|
1999-12-10 05:30:32 +08:00
|
|
|
|
2003-03-23 00:26:38 +08:00
|
|
|
struct berval dn = { 0, NULL };
|
|
|
|
struct berval ndn = { 0, NULL };
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
assert( ber_bvcmp( &slap_EXOP_MODIFY_PASSWD, &op->oq_extended.rs_reqoid ) == 0 );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rc = slap_passwd_parse( op->oq_extended.rs_reqdata,
|
|
|
|
&id, NULL, &new, &rs->sr_text );
|
1999-12-10 05:30:32 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, ENTRY,
|
|
|
|
"ldbm_back_exop_passwd: \"%s\"\n", id.bv_val ? id.bv_val : "", 0,0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-12-10 05:30:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "==> ldbm_back_exop_passwd: \"%s\"\n",
|
2002-01-02 19:00:36 +08:00
|
|
|
id.bv_val ? id.bv_val : "", 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
goto done;
|
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
if( new.bv_len == 0 ) {
|
|
|
|
slap_passwd_generate(&new);
|
1999-12-10 12:52:32 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
if( new.bv_len == 0 ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "password generation failed.";
|
2000-04-25 21:06:22 +08:00
|
|
|
rc = LDAP_OTHER;
|
1999-12-10 12:52:32 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_rspdata = slap_passwd_return( &new );
|
1999-12-10 05:30:32 +08:00
|
|
|
}
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
slap_passwd_hash( &new, &hash );
|
1999-12-10 05:30:32 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
if( hash.bv_len == 0 ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "password hash failed";
|
2000-04-25 21:06:22 +08:00
|
|
|
rc = LDAP_OTHER;
|
1999-12-10 05:30:32 +08:00
|
|
|
goto done;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
if( id.bv_len ) {
|
|
|
|
dn = id;
|
2001-12-27 15:13:13 +08:00
|
|
|
} else {
|
|
|
|
dn = op->o_dn;
|
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, DETAIL1,
|
2001-12-27 15:13:13 +08:00
|
|
|
"ldbm_back_exop_passwd: \"%s\"%s\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
dn.bv_val, id.bv_len ? " (proxy)" : "", 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-12-10 05:30:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "passwd: \"%s\"%s\n",
|
2002-01-02 19:00:36 +08:00
|
|
|
dn.bv_val, id.bv_len ? " (proxy)" : "", 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-12-27 15:13:13 +08:00
|
|
|
if( dn.bv_len == 0 ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "No password is associated with the Root DSE";
|
2002-08-01 06:49:02 +08:00
|
|
|
rc = LDAP_UNWILLING_TO_PERFORM;
|
1999-12-10 05:30:32 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 12:48:00 +08:00
|
|
|
rc = dnNormalize2( NULL, &dn, &ndn );
|
2001-12-27 15:13:13 +08:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "Invalid DN";
|
2001-03-15 11:03:01 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2002-01-30 01:58:36 +08:00
|
|
|
/* grab giant lock for writing */
|
|
|
|
ldap_pvt_thread_rdwr_wlock(&li->li_giant_rwlock);
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
e = dn2entry_w( op->o_bd, &ndn, NULL );
|
1999-12-08 12:37:59 +08:00
|
|
|
if( e == NULL ) {
|
2002-01-30 01:58:36 +08:00
|
|
|
ldap_pvt_thread_rdwr_wunlock(&li->li_giant_rwlock);
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "could not locate authorization entry";
|
2000-10-11 12:56:08 +08:00
|
|
|
rc = LDAP_NO_SUCH_OBJECT;
|
1999-12-10 05:30:32 +08:00
|
|
|
goto done;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( is_entry_alias( e ) ) {
|
|
|
|
/* entry is an alias, don't allow operation */
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "authorization entry is alias";
|
1999-12-08 12:37:59 +08:00
|
|
|
rc = LDAP_ALIAS_PROBLEM;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2002-08-01 06:49:02 +08:00
|
|
|
rc = LDAP_OTHER;
|
1999-12-10 05:30:32 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
if( is_entry_referral( e ) ) {
|
|
|
|
/* entry is an referral, don't allow operation */
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "authorization entry is referral";
|
1999-12-08 12:37:59 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2000-02-08 04:37:10 +08:00
|
|
|
Modifications ml;
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval vals[2];
|
2001-06-06 08:23:56 +08:00
|
|
|
char textbuf[SLAP_TEXT_BUFLEN]; /* non-returnable */
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
vals[0] = hash;
|
2002-01-02 19:00:36 +08:00
|
|
|
vals[1].bv_val = NULL;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2000-05-22 06:46:51 +08:00
|
|
|
ml.sml_desc = slap_schema.si_ad_userPassword;
|
2003-02-26 06:57:53 +08:00
|
|
|
ml.sml_values = vals;
|
|
|
|
ml.sml_nvalues = vals;
|
2000-05-22 06:46:51 +08:00
|
|
|
ml.sml_op = LDAP_MOD_REPLACE;
|
|
|
|
ml.sml_next = NULL;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rc = ldbm_modify_internal( op,
|
|
|
|
&ml, e, &rs->sr_text, textbuf,
|
2001-11-17 22:39:10 +08:00
|
|
|
sizeof( textbuf ) );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2001-12-27 15:13:13 +08:00
|
|
|
/* FIXME: ldbm_modify_internal may set *text = textbuf,
|
2001-08-04 23:46:08 +08:00
|
|
|
* which is BAD */
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( rs->sr_text == textbuf ) {
|
|
|
|
rs->sr_text = NULL;
|
2001-08-04 23:46:08 +08:00
|
|
|
}
|
|
|
|
|
2001-06-06 08:23:56 +08:00
|
|
|
if( rc ) {
|
|
|
|
/* cannot return textbuf */
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "entry modify failed";
|
2001-06-06 08:23:56 +08:00
|
|
|
goto done;
|
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2001-07-14 09:26:02 +08:00
|
|
|
/* change the entry itself */
|
2003-03-30 17:03:54 +08:00
|
|
|
if( id2entry_add( op->o_bd, e ) != 0 ) {
|
|
|
|
rs->sr_text = "entry update failed";
|
2001-07-14 09:26:02 +08:00
|
|
|
rc = LDAP_OTHER;
|
|
|
|
}
|
|
|
|
|
2001-12-26 02:20:35 +08:00
|
|
|
if( rc == LDAP_SUCCESS ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
replog( op );
|
2001-12-26 02:20:35 +08:00
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
2001-12-26 02:20:35 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
done:
|
1999-12-10 05:30:32 +08:00
|
|
|
if( e != NULL ) {
|
|
|
|
cache_return_entry_w( &li->li_cache, e );
|
2002-01-30 01:58:36 +08:00
|
|
|
ldap_pvt_thread_rdwr_wunlock(&li->li_giant_rwlock);
|
1999-12-10 05:30:32 +08:00
|
|
|
}
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
if( hash.bv_val != NULL ) {
|
|
|
|
free( hash.bv_val );
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 12:48:00 +08:00
|
|
|
if( ndn.bv_val != NULL ) {
|
|
|
|
free( ndn.bv_val );
|
2001-12-27 15:13:13 +08:00
|
|
|
}
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
return rc;
|
|
|
|
}
|