]> git.sur5r.net Git - openldap/blob - servers/slapd/operational.c
#unifdef -DSLAP_NVALUES_ON_DISK
[openldap] / servers / slapd / operational.c
1 /* operational.c - routines to deal with on-the-fly operational attrs */
2 /*
3  * Copyright 2001-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6
7 #include "portable.h"
8
9 #include "slap.h"
10
11 /*
12  * helpers for on-the-fly operational attribute generation
13  */
14
15 Attribute *
16 slap_operational_subschemaSubentry( Backend *be )
17 {
18         Attribute       *a;
19
20         /* The backend wants to take care of it */
21         if ( be && be->be_schemadn.bv_val ) return NULL;
22
23         a = ch_malloc( sizeof( Attribute ) );
24         a->a_desc = slap_schema.si_ad_subschemaSubentry;
25
26         a->a_vals = ch_malloc( 2 * sizeof( struct berval ) );
27         ber_dupbv( a->a_vals, &global_schemadn );
28         a->a_vals[1].bv_len = 0;
29         a->a_vals[1].bv_val = NULL;
30
31 #ifdef SLAP_NVALUES
32         a->a_nvals = ch_malloc( 2 * sizeof( struct berval ) );
33         ber_dupbv( a->a_nvals, &global_schemandn );
34         a->a_nvals[1].bv_len = 0;
35         a->a_nvals[1].bv_val = NULL;
36 #endif
37
38         a->a_next = NULL;
39         a->a_flags = 0;
40
41         return a;
42 }
43
44 Attribute *
45 slap_operational_hasSubordinate( int hs )
46 {
47         Attribute       *a;
48         char            *val;
49         ber_len_t       len;
50
51         if ( hs ) {
52                 val = "TRUE";
53                 len = sizeof( "TRUE" ) - 1;
54
55         } else {
56                 val = "FALSE";
57                 len = sizeof( "FALSE" ) - 1;
58
59         }
60
61         a = ch_malloc( sizeof( Attribute ) );
62         a->a_desc = slap_schema.si_ad_hasSubordinates;
63         a->a_vals = ch_malloc( 2 * sizeof( struct berval ) );
64
65         ber_str2bv( val, len, 1, a->a_vals );
66         a->a_vals[1].bv_val = NULL;
67
68 #ifdef SLAP_NVALUES
69         a->a_nvals = a->a_vals;
70 #endif
71
72         a->a_next = NULL;
73         a->a_flags = 0;
74
75         return a;
76 }
77