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

236 lines
4.4 KiB
C
Raw Normal View History

/* passwd.c - bdb backend password routines */
/* $OpenLDAP$ */
/*
* Copyright 1998-2000 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"
int
bdb_exop_passwd(
Backend *be,
Connection *conn,
Operation *op,
const char *reqoid,
struct berval *reqdata,
char **rspoid,
struct berval **rspdata,
LDAPControl *** rspctrls,
const char **text,
2002-01-02 19:00:36 +08:00
BVarray *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 };
struct berval *dn;
assert( reqoid != NULL );
assert( strcmp( LDAP_EXOP_X_MODIFY_PASSWD, reqoid ) == 0 );
rc = slap_passwd_parse( reqdata,
&id, NULL, &new, text );
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 );
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-01-02 19:00:36 +08:00
dn = id.bv_val ? &id : &op->o_dn;
2000-09-28 10:27:49 +08:00
Debug( LDAP_DEBUG_TRACE, "bdb_exop_passwd: \"%s\"%s\n",
2002-01-02 19:00:36 +08:00
dn->bv_val, id.bv_val ? " (proxy)" : "", 0 );
if( dn->bv_len == 0 ) {
*text = "No password is associated with the Root DSE";
rc = LDAP_OPERATIONS_ERROR;
goto done;
}
if( 0 ) {
2000-09-28 10:27:49 +08:00
retry: /* transaction retry */
Debug( LDAP_DEBUG_TRACE, "bdb_exop_passwd: retrying...\n", 0, 0, 0 );
rc = txn_abort( ltid );
ltid = NULL;
op->o_private = NULL;
if( rc != 0 ) {
rc = LDAP_OTHER;
*text = "internal error";
goto done;
}
}
2001-11-27 11:41:03 +08:00
if( bdb->bi_txn ) {
/* begin transaction */
rc = txn_begin( bdb->bi_dbenv, NULL, &ltid,
bdb->bi_db_opflags );
2001-11-27 11:41:03 +08:00
*text = NULL;
if( rc != 0 ) {
Debug( LDAP_DEBUG_TRACE,
"bdb_exop_passwd: txn_begin failed: %s (%d)\n",
db_strerror(rc), rc, 0 );
rc = LDAP_OTHER;
*text = "internal error";
goto done;
}
}
opinfo.boi_bdb = be;
opinfo.boi_txn = ltid;
opinfo.boi_err = 0;
op->o_private = &opinfo;
/* get entry */
rc = bdb_dn2entry( be, ltid, dn, &e, NULL, 0 );
switch(rc) {
case DB_LOCK_DEADLOCK:
case DB_LOCK_NOTGRANTED:
goto retry;
case DB_NOTFOUND:
case 0:
break;
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;
}
if( is_entry_alias( e ) ) {
/* entry is an alias, don't allow operation */
*text = "authorization entry is alias";
rc = LDAP_ALIAS_PROBLEM;
goto done;
}
if( is_entry_referral( e ) ) {
/* entry is an referral, don't allow operation */
*text = "authorization entry is referral";
rc = LDAP_OPERATIONS_ERROR;
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;
ml.sml_bvalues = vals;
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;
bdb_entry_return( be, e );
e = NULL;
goto retry;
case 0:
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:
bdb_entry_return( be, e );
e = NULL;
goto retry;
}
*text = "entry update failed";
rc = LDAP_OTHER;
}
if( bdb->bi_txn && rc == 0 ) {
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_entry_return( be, e );
}
2002-01-02 19:00:36 +08:00
if( id.bv_val != NULL ) {
free( id.bv_val );
}
2002-01-02 19:00:36 +08:00
if( new.bv_val != NULL ) {
free( new.bv_val );
}
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;
}