2000-09-20 19:29:14 -04:00
|
|
|
/* passwd.c - ldbm backend password routines */
|
1999-12-07 23:37:59 -05:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
|
/*
|
2002-01-04 16:17:25 -05:00
|
|
|
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
1999-12-07 23:37:59 -05: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-21 23:46:57 -04:00
|
|
|
const char *reqoid,
|
1999-12-07 23:37:59 -05:00
|
|
|
struct berval *reqdata,
|
2000-05-21 23:46:57 -04:00
|
|
|
char **rspoid,
|
1999-12-07 23:37:59 -05:00
|
|
|
struct berval **rspdata,
|
2000-05-21 23:46:57 -04:00
|
|
|
LDAPControl *** rspctrls,
|
|
|
|
|
const char **text,
|
2002-01-13 20:43:17 -05:00
|
|
|
BerVarray *refs
|
1999-12-07 23:37:59 -05:00
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
2002-01-29 12:49:37 -05:00
|
|
|
int rc;
|
1999-12-09 16:30:32 -05:00
|
|
|
Entry *e = NULL;
|
2002-01-02 06:00:36 -05:00
|
|
|
struct berval hash = { 0, NULL };
|
1999-12-09 16:30:32 -05:00
|
|
|
|
2002-01-02 06:00:36 -05:00
|
|
|
struct berval id = { 0, NULL };
|
|
|
|
|
struct berval new = { 0, NULL };
|
1999-12-09 16:30:32 -05:00
|
|
|
|
2001-12-27 02:13:13 -05:00
|
|
|
struct berval dn;
|
2001-12-28 23:48:00 -05:00
|
|
|
struct berval ndn;
|
1999-12-07 23:37:59 -05:00
|
|
|
|
1999-12-15 18:22:47 -05:00
|
|
|
assert( reqoid != NULL );
|
2002-01-28 15:25:30 -05:00
|
|
|
assert( strcmp( LDAP_EXOP_MODIFY_PASSWD, reqoid ) == 0 );
|
1999-12-07 23:37:59 -05:00
|
|
|
|
1999-12-09 16:30:32 -05:00
|
|
|
rc = slap_passwd_parse( reqdata,
|
|
|
|
|
&id, NULL, &new, text );
|
|
|
|
|
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
|
|
|
|
|
"ldbm_back_exop_passwd: \"%s\"\n",
|
2002-01-02 06:00:36 -05:00
|
|
|
id.bv_val ? id.bv_val : "" ));
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
1999-12-09 16:30:32 -05:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "==> ldbm_back_exop_passwd: \"%s\"\n",
|
2002-01-02 06:00:36 -05:00
|
|
|
id.bv_val ? id.bv_val : "", 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-12-07 23:37:59 -05:00
|
|
|
|
1999-12-09 16:30:32 -05:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
1999-12-07 23:37:59 -05:00
|
|
|
|
2002-01-02 06:00:36 -05:00
|
|
|
if( new.bv_len == 0 ) {
|
|
|
|
|
slap_passwd_generate(&new);
|
1999-12-09 23:52:32 -05:00
|
|
|
|
2002-01-02 06:00:36 -05:00
|
|
|
if( new.bv_len == 0 ) {
|
2000-03-03 17:37:06 -05:00
|
|
|
*text = "password generation failed.";
|
2000-04-25 09:06:22 -04:00
|
|
|
rc = LDAP_OTHER;
|
1999-12-09 23:52:32 -05:00
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-02 06:00:36 -05:00
|
|
|
*rspdata = slap_passwd_return( &new );
|
1999-12-09 16:30:32 -05:00
|
|
|
}
|
|
|
|
|
|
2002-01-02 06:00:36 -05:00
|
|
|
slap_passwd_hash( &new, &hash );
|
1999-12-09 16:30:32 -05:00
|
|
|
|
2002-01-02 06:00:36 -05:00
|
|
|
if( hash.bv_len == 0 ) {
|
2000-03-02 15:36:53 -05:00
|
|
|
*text = "password hash failed";
|
2000-04-25 09:06:22 -04:00
|
|
|
rc = LDAP_OTHER;
|
1999-12-09 16:30:32 -05:00
|
|
|
goto done;
|
1999-12-07 23:37:59 -05:00
|
|
|
}
|
|
|
|
|
|
2002-01-02 06:00:36 -05:00
|
|
|
if( id.bv_len ) {
|
|
|
|
|
dn = id;
|
2001-12-27 02:13:13 -05:00
|
|
|
} else {
|
|
|
|
|
dn = op->o_dn;
|
|
|
|
|
}
|
1999-12-07 23:37:59 -05:00
|
|
|
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
2001-12-27 02:13:13 -05:00
|
|
|
"ldbm_back_exop_passwd: \"%s\"%s\n",
|
2002-01-02 06:00:36 -05:00
|
|
|
dn.bv_val, id.bv_len ? " (proxy)" : "" ));
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
1999-12-09 16:30:32 -05:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "passwd: \"%s\"%s\n",
|
2002-01-02 06:00:36 -05:00
|
|
|
dn.bv_val, id.bv_len ? " (proxy)" : "", 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
2001-12-27 02:13:13 -05:00
|
|
|
if( dn.bv_len == 0 ) {
|
2000-03-02 15:36:53 -05:00
|
|
|
*text = "No password is associated with the Root DSE";
|
1999-12-09 16:30:32 -05:00
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
2001-12-28 23:48:00 -05:00
|
|
|
rc = dnNormalize2( NULL, &dn, &ndn );
|
2001-12-27 02:13:13 -05:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
2001-03-14 22:03:01 -05:00
|
|
|
*text = "Invalid DN";
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-01 08:31:20 -05:00
|
|
|
e = dn2entry_w( be, &ndn, NULL );
|
1999-12-07 23:37:59 -05:00
|
|
|
if( e == NULL ) {
|
2000-03-02 15:36:53 -05:00
|
|
|
*text = "could not locate authorization entry";
|
2000-10-11 00:56:08 -04:00
|
|
|
rc = LDAP_NO_SUCH_OBJECT;
|
1999-12-09 16:30:32 -05:00
|
|
|
goto done;
|
1999-12-07 23:37:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( is_entry_alias( e ) ) {
|
|
|
|
|
/* entry is an alias, don't allow operation */
|
2000-03-02 15:36:53 -05:00
|
|
|
*text = "authorization entry is alias";
|
1999-12-07 23:37:59 -05:00
|
|
|
rc = LDAP_ALIAS_PROBLEM;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-09 16:30:32 -05:00
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
|
|
|
|
|
1999-12-07 23:37:59 -05:00
|
|
|
if( is_entry_referral( e ) ) {
|
|
|
|
|
/* entry is an referral, don't allow operation */
|
2000-03-02 15:36:53 -05:00
|
|
|
*text = "authorization entry is referral";
|
1999-12-07 23:37:59 -05:00
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
2000-02-07 15:37:10 -05:00
|
|
|
Modifications ml;
|
2002-01-02 06:00:36 -05:00
|
|
|
struct berval vals[2];
|
2001-06-05 20:23:56 -04:00
|
|
|
char textbuf[SLAP_TEXT_BUFLEN]; /* non-returnable */
|
1999-12-07 23:37:59 -05:00
|
|
|
|
1999-12-09 16:30:32 -05:00
|
|
|
vals[0] = hash;
|
2002-01-02 06:00:36 -05:00
|
|
|
vals[1].bv_val = NULL;
|
1999-12-07 23:37:59 -05:00
|
|
|
|
2000-05-21 18:46:51 -04: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-07 23:37:59 -05:00
|
|
|
|
|
|
|
|
rc = ldbm_modify_internal( be,
|
2001-12-24 10:11:01 -05:00
|
|
|
conn, op, op->o_ndn.bv_val, &ml, e, text, textbuf,
|
2001-11-17 09:39:10 -05:00
|
|
|
sizeof( textbuf ) );
|
1999-12-07 23:37:59 -05:00
|
|
|
|
2001-12-27 02:13:13 -05:00
|
|
|
/* FIXME: ldbm_modify_internal may set *text = textbuf,
|
2001-08-04 11:46:08 -04:00
|
|
|
* which is BAD */
|
|
|
|
|
if ( *text == textbuf ) {
|
|
|
|
|
*text = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-05 20:23:56 -04:00
|
|
|
if( rc ) {
|
|
|
|
|
/* cannot return textbuf */
|
|
|
|
|
*text = "entry modify failed";
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
1999-12-07 23:37:59 -05:00
|
|
|
|
2001-07-13 21:26:02 -04:00
|
|
|
/* change the entry itself */
|
|
|
|
|
if( id2entry_add( be, e ) != 0 ) {
|
|
|
|
|
*text = "entry update failed";
|
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
|
}
|
|
|
|
|
|
2001-12-25 13:20:35 -05:00
|
|
|
if( rc == LDAP_SUCCESS ) {
|
|
|
|
|
replog( be, op, &e->e_name, &e->e_nname, &ml );
|
|
|
|
|
}
|
1999-12-07 23:37:59 -05:00
|
|
|
}
|
2001-12-25 13:20:35 -05:00
|
|
|
|
1999-12-07 23:37:59 -05:00
|
|
|
done:
|
1999-12-09 16:30:32 -05:00
|
|
|
if( e != NULL ) {
|
|
|
|
|
cache_return_entry_w( &li->li_cache, e );
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-02 06:00:36 -05:00
|
|
|
if( hash.bv_val != NULL ) {
|
|
|
|
|
free( hash.bv_val );
|
1999-12-07 23:37:59 -05:00
|
|
|
}
|
|
|
|
|
|
2001-12-28 23:48:00 -05:00
|
|
|
if( ndn.bv_val != NULL ) {
|
|
|
|
|
free( ndn.bv_val );
|
2001-12-27 02:13:13 -05:00
|
|
|
}
|
|
|
|
|
|
1999-12-07 23:37:59 -05:00
|
|
|
return rc;
|
|
|
|
|
}
|