2000-09-26 11:47:56 +08:00
|
|
|
/* 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"
|
2000-09-26 11:47:56 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
bdb_exop_passwd(
|
2000-09-28 06:28:59 +08:00
|
|
|
Backend *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
2000-09-26 11:47:56 +08:00
|
|
|
const char *reqoid,
|
2000-09-28 06:28:59 +08:00
|
|
|
struct berval *reqdata,
|
2000-09-26 11:47:56 +08:00
|
|
|
char **rspoid,
|
2000-09-28 06:28:59 +08:00
|
|
|
struct berval **rspdata,
|
2000-09-26 11:47:56 +08:00
|
|
|
LDAPControl *** rspctrls,
|
|
|
|
const char **text,
|
2000-09-28 06:28:59 +08:00
|
|
|
struct berval *** refs )
|
2000-09-26 11:47:56 +08:00
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
|
|
|
int rc;
|
|
|
|
Entry *e = NULL;
|
|
|
|
struct berval *hash = NULL;
|
2000-09-28 06:28:59 +08:00
|
|
|
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;
|
2000-09-26 11:47:56 +08:00
|
|
|
|
|
|
|
struct berval *id = NULL;
|
|
|
|
struct berval *new = NULL;
|
|
|
|
|
|
|
|
char *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",
|
|
|
|
id ? id->bv_val : "", 0, 0 );
|
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( new == NULL || new->bv_len == 0 ) {
|
|
|
|
new = slap_passwd_generate();
|
|
|
|
|
|
|
|
if( new == NULL || new->bv_len == 0 ) {
|
|
|
|
*text = "password generation failed.";
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
*rspdata = slap_passwd_return( new );
|
|
|
|
}
|
|
|
|
|
|
|
|
hash = slap_passwd_hash( new );
|
|
|
|
|
|
|
|
if( hash == NULL || hash->bv_len == 0 ) {
|
|
|
|
*text = "password hash failed";
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-24 23:11:01 +08:00
|
|
|
dn = id ? id->bv_val : op->o_dn.bv_val;
|
2000-09-26 11:47:56 +08:00
|
|
|
|
2000-09-28 10:27:49 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_exop_passwd: \"%s\"%s\n",
|
2000-09-26 11:47:56 +08:00
|
|
|
dn, id ? " (proxy)" : "", 0 );
|
|
|
|
|
|
|
|
if( dn == NULL || dn[0] == '\0' ) {
|
|
|
|
*text = "No password is associated with the Root DSE";
|
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-11-28 05:59:56 +08:00
|
|
|
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 );
|
2000-09-28 06:28:59 +08:00
|
|
|
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 */
|
2001-11-28 11:11:04 +08:00
|
|
|
rc = txn_begin( bdb->bi_dbenv, NULL, <id,
|
|
|
|
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;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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 );
|
2000-09-26 11:47:56 +08:00
|
|
|
|
|
|
|
switch(rc) {
|
2000-09-28 06:28:59 +08:00
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
2000-09-26 11:47:56 +08:00
|
|
|
case DB_NOTFOUND:
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
2000-09-28 06:28:59 +08:00
|
|
|
rc = LDAP_OTHER;
|
|
|
|
*text = "internal error";
|
|
|
|
goto done;
|
2000-09-26 11:47:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( e == NULL ) {
|
|
|
|
*text = "could not locate authorization entry";
|
2000-10-12 02:19:26 +08:00
|
|
|
rc = LDAP_NO_SUCH_OBJECT;
|
2000-09-26 11:47:56 +08:00
|
|
|
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";
|
2000-09-28 06:28:59 +08:00
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
2000-09-26 11:47:56 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
Modifications ml;
|
|
|
|
struct berval *vals[2];
|
|
|
|
|
|
|
|
vals[0] = hash;
|
|
|
|
vals[1] = NULL;
|
|
|
|
|
|
|
|
ml.sml_desc = slap_schema.si_ad_userPassword;
|
|
|
|
ml.sml_bvalues = vals;
|
|
|
|
ml.sml_op = LDAP_MOD_REPLACE;
|
|
|
|
ml.sml_next = NULL;
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
rc = bdb_modify_internal( be, conn, op, ltid,
|
2001-06-15 15:08:37 +08:00
|
|
|
&ml, e, text, textbuf, textlen );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
switch(rc) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
2001-06-15 15:08:37 +08:00
|
|
|
*text = NULL;
|
2000-09-28 06:28:59 +08:00
|
|
|
bdb_entry_return( be, e );
|
|
|
|
e = NULL;
|
|
|
|
goto retry;
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
*text = "entry modify failed";
|
|
|
|
goto done;
|
|
|
|
}
|
2000-09-26 11:47:56 +08:00
|
|
|
|
2001-12-26 02:20:35 +08:00
|
|
|
/* 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;
|
|
|
|
}
|
2000-09-26 11:47:56 +08:00
|
|
|
|
2001-12-26 02:20:35 +08:00
|
|
|
if( bdb->bi_txn && rc == 0 ) {
|
|
|
|
rc = txn_commit( ltid, 0 );
|
|
|
|
ltid = NULL;
|
2000-09-26 11:47:56 +08:00
|
|
|
}
|
2001-12-26 02:20:35 +08:00
|
|
|
op->o_private = NULL;
|
2001-11-27 11:41:03 +08:00
|
|
|
|
2001-12-26 02:20:35 +08:00
|
|
|
if( rc == LDAP_SUCCESS ) {
|
|
|
|
replog( be, op, &e->e_name, &e->e_nname, &ml );
|
|
|
|
}
|
2000-09-26 11:47:56 +08:00
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2000-09-26 11:47:56 +08:00
|
|
|
done:
|
|
|
|
if( e != NULL ) {
|
|
|
|
bdb_entry_return( be, e );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( id != NULL ) {
|
|
|
|
ber_bvfree( id );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( new != NULL ) {
|
|
|
|
ber_bvfree( new );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( hash != NULL ) {
|
|
|
|
ber_bvfree( hash );
|
|
|
|
}
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
if( ltid != NULL ) {
|
|
|
|
txn_abort( ltid );
|
|
|
|
op->o_private = NULL;
|
|
|
|
}
|
|
|
|
|
2000-09-26 11:47:56 +08:00
|
|
|
return rc;
|
|
|
|
}
|