Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / bsd / openldap / dist / servers / slapd / back-bdb / operational.c
blob44c80ea3e1a1ccfe5dcbf3ae60dc6189f4ccb21b
1 /* operational.c - bdb backend operational attributes function */
2 /* $OpenLDAP: pkg/ldap/servers/slapd/back-bdb/operational.c,v 1.29.2.3 2008/02/11 23:26:46 kurt Exp $ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2000-2008 The OpenLDAP Foundation.
6 * All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
10 * Public License.
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
17 #include "portable.h"
19 #include <stdio.h>
21 #include <ac/string.h>
22 #include <ac/socket.h>
24 #include "slap.h"
25 #include "back-bdb.h"
28 * sets *hasSubordinates to LDAP_COMPARE_TRUE/LDAP_COMPARE_FALSE
29 * if the entry has children or not.
31 int
32 bdb_hasSubordinates(
33 Operation *op,
34 Entry *e,
35 int *hasSubordinates )
37 int rc;
39 assert( e != NULL );
41 /* NOTE: this should never happen, but it actually happens
42 * when using back-relay; until we find a better way to
43 * preserve entry's private information while rewriting it,
44 * let's disable the hasSubordinate feature for back-relay.
46 if ( BEI( e ) == NULL ) {
47 return LDAP_OTHER;
50 retry:
51 /* FIXME: we can no longer assume the entry's e_private
52 * field is correctly populated; so we need to reacquire
53 * it with reader lock */
54 rc = bdb_cache_children( op, NULL, e );
56 switch( rc ) {
57 case DB_LOCK_DEADLOCK:
58 case DB_LOCK_NOTGRANTED:
59 goto retry;
61 case 0:
62 *hasSubordinates = LDAP_COMPARE_TRUE;
63 break;
65 case DB_NOTFOUND:
66 *hasSubordinates = LDAP_COMPARE_FALSE;
67 rc = LDAP_SUCCESS;
68 break;
70 default:
71 Debug(LDAP_DEBUG_ARGS,
72 "<=- " LDAP_XSTRING(bdb_hasSubordinates)
73 ": has_children failed: %s (%d)\n",
74 db_strerror(rc), rc, 0 );
75 rc = LDAP_OTHER;
78 return rc;
82 * sets the supported operational attributes (if required)
84 int
85 bdb_operational(
86 Operation *op,
87 SlapReply *rs )
89 Attribute **ap;
91 assert( rs->sr_entry != NULL );
93 for ( ap = &rs->sr_operational_attrs; *ap; ap = &(*ap)->a_next )
94 /* just count */ ;
96 if ( SLAP_OPATTRS( rs->sr_attr_flags ) ||
97 ad_inlist( slap_schema.si_ad_hasSubordinates, rs->sr_attrs ) )
99 int hasSubordinates, rc;
101 rc = bdb_hasSubordinates( op, rs->sr_entry, &hasSubordinates );
102 if ( rc == LDAP_SUCCESS ) {
103 *ap = slap_operational_hasSubordinate( hasSubordinates == LDAP_COMPARE_TRUE );
104 assert( *ap != NULL );
106 ap = &(*ap)->a_next;
110 return LDAP_SUCCESS;