2002-03-23 19:04:09 +08:00
|
|
|
/* operational.c - bdb backend operational attributes function */
|
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
2002-03-23 19:04:09 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-bdb.h"
|
|
|
|
#include "proto-bdb.h"
|
|
|
|
|
|
|
|
/*
|
2002-10-27 00:18:31 +08:00
|
|
|
* sets *hasSubordinates to LDAP_COMPARE_TRUE/LDAP_COMPARE_FALSE
|
|
|
|
* if the entry has children or not.
|
2002-03-23 19:04:09 +08:00
|
|
|
*/
|
|
|
|
int
|
2002-08-29 18:50:53 +08:00
|
|
|
bdb_hasSubordinates(
|
2002-03-23 19:04:09 +08:00
|
|
|
BackendDB *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
Entry *e,
|
2002-08-29 18:50:53 +08:00
|
|
|
int *hasSubordinates )
|
2002-03-23 19:04:09 +08:00
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert( e );
|
2002-08-29 18:50:53 +08:00
|
|
|
assert( hasSubordinates );
|
2002-03-23 19:04:09 +08:00
|
|
|
|
2003-02-26 19:45:30 +08:00
|
|
|
retry:
|
|
|
|
rc = bdb_dn2id_children( be, NULL, &e->e_nname, 0 );
|
2002-03-23 19:04:09 +08:00
|
|
|
|
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
2003-02-26 19:45:30 +08:00
|
|
|
ldap_pvt_thread_yield();
|
2002-03-23 19:04:09 +08:00
|
|
|
goto retry;
|
|
|
|
|
|
|
|
case 0:
|
2002-08-29 18:50:53 +08:00
|
|
|
*hasSubordinates = LDAP_COMPARE_TRUE;
|
|
|
|
break;
|
|
|
|
|
2002-03-23 19:04:09 +08:00
|
|
|
case DB_NOTFOUND:
|
2002-08-29 18:50:53 +08:00
|
|
|
*hasSubordinates = LDAP_COMPARE_FALSE;
|
|
|
|
rc = LDAP_SUCCESS;
|
2002-03-23 19:04:09 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2002-03-27 05:34:03 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( OPERATION, ERR,
|
2002-08-29 18:50:53 +08:00
|
|
|
"=> bdb_hasSubordinates: has_children failed: %s (%d)\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
db_strerror(rc), rc, 0 );
|
2002-03-27 05:34:03 +08:00
|
|
|
#else
|
2002-03-23 19:04:09 +08:00
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
2002-08-29 18:50:53 +08:00
|
|
|
"<=- bdb_hasSubordinates: has_children failed: %s (%d)\n",
|
2002-03-23 19:04:09 +08:00
|
|
|
db_strerror(rc), rc, 0 );
|
2002-03-27 05:34:03 +08:00
|
|
|
#endif
|
2002-03-23 19:04:09 +08:00
|
|
|
rc = LDAP_OTHER;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2002-10-27 00:18:31 +08:00
|
|
|
/*
|
|
|
|
* sets the supported operational attributes (if required)
|
|
|
|
*/
|
2002-08-29 18:50:53 +08:00
|
|
|
int
|
|
|
|
bdb_operational(
|
|
|
|
BackendDB *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
Entry *e,
|
|
|
|
AttributeName *attrs,
|
|
|
|
int opattrs,
|
|
|
|
Attribute **a )
|
|
|
|
{
|
|
|
|
Attribute **aa = a;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
assert( e );
|
|
|
|
|
|
|
|
if ( opattrs || ad_inlist( slap_schema.si_ad_hasSubordinates, attrs ) ) {
|
|
|
|
int hasSubordinates;
|
|
|
|
|
|
|
|
rc = bdb_hasSubordinates( be, conn, op, e, &hasSubordinates );
|
|
|
|
if ( rc == LDAP_SUCCESS ) {
|
|
|
|
*aa = slap_operational_hasSubordinate( hasSubordinates == LDAP_COMPARE_TRUE );
|
|
|
|
if ( *aa != NULL ) {
|
|
|
|
aa = &(*aa)->a_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|