openldap/servers/slapd/back-bdb/passwd.c

285 lines
5.5 KiB
C
Raw Normal View History

/* passwd.c - bdb backend password routines */
/* $OpenLDAP$ */
/*
2003-01-04 04:20:47 +08:00
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include "portable.h"
#include <stdio.h>
#include <ac/string.h>
#include "back-bdb.h"
2000-09-26 13:33:37 +08:00
#include "external.h"
#include "lber_pvt.h"
int
bdb_exop_passwd(
Backend *be,
Connection *conn,
Operation *op,
struct berval *reqoid,
struct berval *reqdata,
char **rspoid,
struct berval **rspdata,
LDAPControl *** rspctrls,
const char **text,
BerVarray *refs )
{
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
int rc;
Entry *e = NULL;
2002-01-02 19:00:36 +08:00
struct berval hash = { 0, NULL };
DB_TXN *ltid = NULL;
struct bdb_op_info opinfo;
2001-06-15 15:08:37 +08:00
char textbuf[SLAP_TEXT_BUFLEN];
size_t textlen = sizeof textbuf;
2002-01-02 19:00:36 +08:00
struct berval id = { 0, NULL };
struct berval new = { 0, NULL };
2002-03-13 06:46:13 +08:00
struct berval dn;
struct berval ndn;
u_int32_t locker = 0;
DB_LOCK lock;
assert( reqoid != NULL );
assert( ber_bvcmp( &slap_EXOP_MODIFY_PASSWD, reqoid ) == 0 );
rc = slap_passwd_parse( reqdata,
&id, NULL, &new, text );
#ifdef NEW_LOGGING
LDAP_LOG ( ACL, ENTRY,
"==>bdb_exop_passwd: \"%s\"\n", id.bv_val ? id.bv_val : "", 0, 0 );
#else
Debug( LDAP_DEBUG_ARGS, "==> bdb_exop_passwd: \"%s\"\n",
2002-01-02 19:00:36 +08:00
id.bv_val ? id.bv_val : "", 0, 0 );
#endif
if( rc != LDAP_SUCCESS ) {
goto done;
}
2002-01-02 19:00:36 +08:00
if( new.bv_len == 0 ) {
slap_passwd_generate(&new);
2002-01-02 19:00:36 +08:00
if( new.bv_len == 0 ) {
*text = "password generation failed.";
rc = LDAP_OTHER;
goto done;
}
2002-01-02 19:00:36 +08:00
*rspdata = slap_passwd_return( &new );
}
2002-01-02 19:00:36 +08:00
slap_passwd_hash( &new, &hash );
2002-01-02 19:00:36 +08:00
if( hash.bv_len == 0 ) {
*text = "password hash failed";
rc = LDAP_OTHER;
goto done;
}
2002-03-13 06:46:13 +08:00
if( id.bv_len ) {
dn = id;
} else {
dn = op->o_dn;
}
#ifdef NEW_LOGGING
LDAP_LOG ( ACL, DETAIL1, "bdb_exop_passwd: \"%s\"%s\"\n",
dn.bv_val, id.bv_len ? " (proxy)" : "", 0 );
#else
2000-09-28 10:27:49 +08:00
Debug( LDAP_DEBUG_TRACE, "bdb_exop_passwd: \"%s\"%s\n",
2002-03-13 06:46:13 +08:00
dn.bv_val, id.bv_len ? " (proxy)" : "", 0 );
#endif
2002-03-13 06:46:13 +08:00
if( dn.bv_len == 0 ) {
*text = "No password is associated with the Root DSE";
rc = LDAP_UNWILLING_TO_PERFORM;
goto done;
}
2002-03-13 06:46:13 +08:00
rc = dnNormalize2( NULL, &dn, &ndn );
if( rc != LDAP_SUCCESS ) {
*text = "Invalid DN";
goto done;
}
if( 0 ) {
2000-09-28 10:27:49 +08:00
retry: /* transaction retry */
if ( e != NULL ) {
bdb_cache_delete_entry(&bdb->bi_cache, e);
bdb_unlocked_cache_return_entry_w(&bdb->bi_cache, e);
}
#ifdef NEW_LOGGING
LDAP_LOG ( ACL, DETAIL1, "bdb_exop_passwd: retrying...\n", 0, 0, 0 );
#else
2000-09-28 10:27:49 +08:00
Debug( LDAP_DEBUG_TRACE, "bdb_exop_passwd: retrying...\n", 0, 0, 0 );
#endif
rc = TXN_ABORT( ltid );
ltid = NULL;
op->o_private = NULL;
if( rc != 0 ) {
rc = LDAP_OTHER;
*text = "internal error";
goto done;
}
ldap_pvt_thread_yield();
}
2002-01-29 06:57:50 +08:00
/* begin transaction */
rc = TXN_BEGIN( bdb->bi_dbenv, NULL, &ltid,
2002-01-29 06:57:50 +08:00
bdb->bi_db_opflags );
*text = NULL;
if( rc != 0 ) {
#ifdef NEW_LOGGING
LDAP_LOG ( ACL, ERR,
"bdb_exop_passwd: txn_begin failed: %s (%d)\n",
db_strerror(rc), rc, 0 );
#else
2002-01-29 06:57:50 +08:00
Debug( LDAP_DEBUG_TRACE,
"bdb_exop_passwd: txn_begin failed: %s (%d)\n",
db_strerror(rc), rc, 0 );
#endif
2002-01-29 06:57:50 +08:00
rc = LDAP_OTHER;
*text = "internal error";
goto done;
}
locker = TXN_ID ( ltid );
opinfo.boi_bdb = be;
opinfo.boi_txn = ltid;
opinfo.boi_locker = locker;
opinfo.boi_err = 0;
op->o_private = &opinfo;
/* get entry */
rc = bdb_dn2entry_w( be, ltid, &ndn, &e, NULL, 0 , locker, &lock);
switch(rc) {
case DB_LOCK_DEADLOCK:
case DB_LOCK_NOTGRANTED:
goto retry;
case DB_NOTFOUND:
case 0:
break;
2002-04-20 05:41:32 +08:00
case LDAP_BUSY:
*text = "ldap server busy";
goto done;
default:
rc = LDAP_OTHER;
*text = "internal error";
goto done;
}
if( e == NULL ) {
*text = "could not locate authorization entry";
rc = LDAP_NO_SUCH_OBJECT;
goto done;
}
2002-01-29 12:53:47 +08:00
#ifdef BDB_SUBENTRIES
2002-04-05 14:28:52 +08:00
if( is_entry_subentry( e ) ) {
2002-01-29 12:53:47 +08:00
/* entry is an alias, don't allow operation */
*text = "authorization entry is subentry";
rc = LDAP_OTHER;
goto done;
}
#endif
#ifdef BDB_ALIASES
if( is_entry_alias( e ) ) {
/* entry is an alias, don't allow operation */
*text = "authorization entry is alias";
rc = LDAP_ALIAS_PROBLEM;
goto done;
}
2002-01-29 12:53:47 +08:00
#endif
if( is_entry_referral( e ) ) {
/* entry is an referral, don't allow operation */
*text = "authorization entry is referral";
2002-01-29 12:53:47 +08:00
rc = LDAP_OTHER;
goto done;
}
{
Modifications ml;
2002-01-02 19:00:36 +08:00
struct berval vals[2];
vals[0] = hash;
2002-01-02 19:00:36 +08:00
vals[1].bv_val = NULL;
ml.sml_desc = slap_schema.si_ad_userPassword;
2003-02-26 06:49:41 +08:00
ml.sml_values = vals;
#ifdef SLAP_NVALUES
2003-02-26 06:49:41 +08:00
ml.sml_nvalues = vals;
#endif
ml.sml_op = LDAP_MOD_REPLACE;
ml.sml_next = NULL;
rc = bdb_modify_internal( be, conn, op, ltid,
2001-06-15 15:08:37 +08:00
&ml, e, text, textbuf, textlen );
switch(rc) {
case DB_LOCK_DEADLOCK:
case DB_LOCK_NOTGRANTED:
2001-06-15 15:08:37 +08:00
*text = NULL;
goto retry;
case 0:
*text = NULL;
break;
default:
rc = LDAP_OTHER;
*text = "entry modify failed";
goto done;
}
/* change the entry itself */
rc = bdb_id2entry_update( be, ltid, e );
if( rc != 0 ) {
switch(rc) {
case DB_LOCK_DEADLOCK:
case DB_LOCK_NOTGRANTED:
goto retry;
}
*text = "entry update failed";
rc = LDAP_OTHER;
}
2002-01-29 06:57:50 +08:00
if( rc == 0 ) {
if( op->o_noop ) {
rc = TXN_ABORT( ltid );
} else {
rc = TXN_COMMIT( ltid, 0 );
}
ltid = NULL;
}
op->o_private = NULL;
2001-11-27 11:41:03 +08:00
if( rc == LDAP_SUCCESS ) {
replog( be, op, &e->e_name, &e->e_nname, &ml );
}
}
done:
if( e != NULL ) {
bdb_unlocked_cache_return_entry_w( &bdb->bi_cache, e );
}
2002-01-02 19:00:36 +08:00
if( hash.bv_val != NULL ) {
free( hash.bv_val );
}
if( ltid != NULL ) {
TXN_ABORT( ltid );
op->o_private = NULL;
}
return rc;
}