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.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
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>.
21 #include <ac/string.h>
22 #include <ac/socket.h>
28 * sets *hasSubordinates to LDAP_COMPARE_TRUE/LDAP_COMPARE_FALSE
29 * if the entry has children or not.
35 int *hasSubordinates
)
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
) {
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
);
57 case DB_LOCK_DEADLOCK
:
58 case DB_LOCK_NOTGRANTED
:
62 *hasSubordinates
= LDAP_COMPARE_TRUE
;
66 *hasSubordinates
= LDAP_COMPARE_FALSE
;
71 Debug(LDAP_DEBUG_ARGS
,
72 "<=- " LDAP_XSTRING(bdb_hasSubordinates
)
73 ": has_children failed: %s (%d)\n",
74 db_strerror(rc
), rc
, 0 );
82 * sets the supported operational attributes (if required)
91 assert( rs
->sr_entry
!= NULL
);
93 for ( ap
= &rs
->sr_operational_attrs
; *ap
; ap
= &(*ap
)->a_next
)
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
);