1999-12-08 12:37:59 +08:00
|
|
|
/* extended.c - ldbm backend extended routines */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2000-05-13 10:47:56 +08:00
|
|
|
* Copyright 1998-2000 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"
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_exop_passwd(
|
|
|
|
Backend *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
2000-05-22 11:46:57 +08:00
|
|
|
const char *reqoid,
|
1999-12-08 12:37:59 +08:00
|
|
|
struct berval *reqdata,
|
2000-05-22 11:46:57 +08:00
|
|
|
char **rspoid,
|
1999-12-08 12:37:59 +08:00
|
|
|
struct berval **rspdata,
|
2000-05-22 11:46:57 +08:00
|
|
|
LDAPControl *** rspctrls,
|
|
|
|
const char **text,
|
1999-12-16 07:22:47 +08:00
|
|
|
struct berval *** refs
|
1999-12-08 12:37:59 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
1999-12-10 05:30:32 +08:00
|
|
|
int rc;
|
|
|
|
Entry *e = NULL;
|
|
|
|
struct berval *hash = NULL;
|
|
|
|
|
|
|
|
struct berval *id = NULL;
|
|
|
|
struct berval *new = NULL;
|
|
|
|
|
|
|
|
char *dn;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2000-05-28 09:36:03 +08:00
|
|
|
AttributeDescription *entry = slap_schema.si_ad_entry;
|
2000-02-15 04:57:34 +08:00
|
|
|
|
1999-12-16 07:22:47 +08:00
|
|
|
assert( reqoid != NULL );
|
|
|
|
assert( strcmp( LDAP_EXOP_X_MODIFY_PASSWD, reqoid ) == 0 );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
rc = slap_passwd_parse( reqdata,
|
|
|
|
&id, NULL, &new, text );
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_ARGS, "==> ldbm_back_exop_passwd: \"%s\"\n",
|
|
|
|
id ? id->bv_val : "", 0, 0 );
|
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
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
if( new == NULL || new->bv_len == 0 ) {
|
1999-12-10 12:52:32 +08:00
|
|
|
new = slap_passwd_generate();
|
|
|
|
|
|
|
|
if( new == NULL || new->bv_len == 0 ) {
|
2000-03-04 06:37:06 +08:00
|
|
|
*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;
|
|
|
|
}
|
|
|
|
|
|
|
|
*rspdata = slap_passwd_return( new );
|
1999-12-10 05:30:32 +08:00
|
|
|
}
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
hash = slap_passwd_hash( new );
|
1999-12-10 05:30:32 +08:00
|
|
|
|
|
|
|
if( hash == NULL || hash->bv_len == 0 ) {
|
2000-03-03 04:36:53 +08:00
|
|
|
*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
|
|
|
}
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
dn = id ? id->bv_val : op->o_dn;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "passwd: \"%s\"%s\n",
|
|
|
|
dn, id ? " (proxy)" : "", 0 );
|
|
|
|
|
1999-12-13 12:53:59 +08:00
|
|
|
if( dn == NULL || dn[0] == '\0' ) {
|
2000-03-03 04:36:53 +08:00
|
|
|
*text = "No password is associated with the Root DSE";
|
1999-12-10 05:30:32 +08:00
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
e = dn2entry_w( be, dn, NULL );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
|
|
|
if( e == NULL ) {
|
2000-03-03 04:36:53 +08:00
|
|
|
*text = "could not locate authorization entry";
|
1999-12-10 05:30:32 +08:00
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
|
|
|
goto done;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
2000-02-15 04:57:34 +08:00
|
|
|
if( ! access_allowed( be, conn, op, e, entry, NULL, ACL_WRITE ) ) {
|
2000-03-03 04:36:53 +08:00
|
|
|
*text = "access to authorization entry denied";
|
1999-12-08 12:37:59 +08:00
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( is_entry_alias( e ) ) {
|
|
|
|
/* entry is an alias, don't allow operation */
|
2000-03-03 04:36:53 +08:00
|
|
|
*text = "authorization entry is alias";
|
1999-12-08 12:37:59 +08:00
|
|
|
rc = LDAP_ALIAS_PROBLEM;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
if( is_entry_referral( e ) ) {
|
|
|
|
/* entry is an referral, don't allow operation */
|
2000-03-03 04:36:53 +08:00
|
|
|
*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;
|
1999-12-08 12:37:59 +08:00
|
|
|
struct berval *vals[2];
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
vals[0] = hash;
|
1999-12-08 12:37:59 +08:00
|
|
|
vals[1] = NULL;
|
|
|
|
|
2000-05-22 06:46:51 +08:00
|
|
|
ml.sml_desc = slap_schema.si_ad_userPassword;
|
|
|
|
ml.sml_bvalues = vals;
|
|
|
|
ml.sml_op = LDAP_MOD_REPLACE;
|
|
|
|
ml.sml_next = NULL;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
|
|
|
rc = ldbm_modify_internal( be,
|
2000-05-29 04:44:08 +08:00
|
|
|
conn, op, op->o_ndn, &ml, e, text );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if( rc == LDAP_SUCCESS ) {
|
|
|
|
/* change the entry itself */
|
|
|
|
if( id2entry_add( be, e ) != 0 ) {
|
2000-04-25 21:06:22 +08:00
|
|
|
*text = "entry update failed";
|
|
|
|
rc = LDAP_OTHER;
|
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 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( id != NULL ) {
|
|
|
|
ber_bvfree( id );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( new != NULL ) {
|
|
|
|
ber_bvfree( new );
|
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
if( hash != NULL ) {
|
|
|
|
ber_bvfree( hash );
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|