]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/attribute.c
Cancel exop updates
[openldap] / servers / slapd / back-bdb / attribute.c
1 /* attribute.c - bdb backend acl attribute routine */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/socket.h>
13 #include <ac/string.h>
14
15 #include "slap.h"
16 #include "back-bdb.h"
17 #include "proto-bdb.h"
18
19 /* return LDAP_SUCCESS IFF we can retrieve the attributes
20  * of entry with e_ndn
21  */
22 int
23 bdb_attribute(
24         Backend *be,
25         Connection *conn,
26         Operation *op,
27         Entry *target,
28         struct berval *entry_ndn,
29         AttributeDescription *entry_at,
30         BerVarray *vals )
31 {
32         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
33         struct bdb_op_info *boi = NULL;
34         DB_TXN *txn = NULL;
35         Entry *e;
36         int     i, j = 0, rc;
37         Attribute *attr;
38         BerVarray v;
39         const char *entry_at_name = entry_at->ad_cname.bv_val;
40         AccessControlState acl_state = ACL_STATE_INIT;
41
42         u_int32_t       locker = 0;
43         DB_LOCK         lock;
44         int             free_lock_id = 0;
45
46 #ifdef NEW_LOGGING
47         LDAP_LOG( BACK_BDB, ARGS, 
48                 "bdb_attribute: gr ndn: \"%s\"\n", entry_ndn->bv_val, 0, 0 );
49         LDAP_LOG( BACK_BDB, ARGS, 
50                 "bdb_attribute: at: \"%s\"\n", entry_at_name, 0, 0);
51         LDAP_LOG( BACK_BDB, ARGS, "bdb_attribute: tr ndn: \"%s\"\n",
52                 target ? target->e_ndn : "", 0, 0 );
53 #else
54         Debug( LDAP_DEBUG_ARGS,
55                 "=> bdb_attribute: gr ndn: \"%s\"\n",
56                 entry_ndn->bv_val, 0, 0 ); 
57         Debug( LDAP_DEBUG_ARGS,
58                 "=> bdb_attribute: at: \"%s\"\n", 
59                 entry_at_name, 0, 0 ); 
60
61         Debug( LDAP_DEBUG_ARGS,
62                 "=> bdb_attribute: tr ndn: \"%s\"\n",
63                 target ? target->e_ndn : "", 0, 0 ); 
64 #endif
65
66         if( op ) boi = (struct bdb_op_info *) op->o_private;
67         if( boi != NULL && be == boi->boi_bdb ) {
68                 txn = boi->boi_txn;
69                 locker = boi->boi_locker;
70         }
71
72         if ( txn != NULL ) {
73                 locker = TXN_ID ( txn );
74         } else if ( !locker ) {
75                 rc = LOCK_ID ( bdb->bi_dbenv, &locker );
76                 free_lock_id = 1;
77                 switch(rc) {
78                 case 0:
79                         break;
80                 default:
81                         return LDAP_OTHER;
82                 }
83         }
84
85         if (target != NULL && dn_match(&target->e_nname, entry_ndn)) {
86                 /* we already have a LOCKED copy of the entry */
87                 e = target;
88 #ifdef NEW_LOGGING
89                 LDAP_LOG( BACK_BDB, DETAIL1, 
90                         "bdb_attribute: target is LOCKED (%s)\n", entry_ndn->bv_val, 0, 0 );
91 #else
92                 Debug( LDAP_DEBUG_ARGS,
93                         "=> bdb_attribute: target is entry: \"%s\"\n",
94                         entry_ndn->bv_val, 0, 0 );
95 #endif
96
97         } else {
98 dn2entry_retry:
99                 /* can we find entry */
100                 rc = bdb_dn2entry_r( be, NULL, entry_ndn, &e, NULL, 0, locker, &lock );
101                 switch( rc ) {
102                 case DB_NOTFOUND:
103                 case 0:
104                         break;
105                 case DB_LOCK_DEADLOCK:
106                 case DB_LOCK_NOTGRANTED:
107                         goto dn2entry_retry;
108                 default:
109                         boi->boi_err = rc;
110                         if ( free_lock_id ) {
111                                 LOCK_ID_FREE( bdb->bi_dbenv, locker );
112                         }
113                         return (rc != LDAP_BUSY) ? LDAP_OTHER : LDAP_BUSY;
114                 }
115                 if (e == NULL) {
116 #ifdef NEW_LOGGING
117                         LDAP_LOG( BACK_BDB, INFO, 
118                                 "bdb_attribute: cannot find entry (%s)\n", 
119                                 entry_ndn->bv_val, 0, 0 );
120 #else
121                         Debug( LDAP_DEBUG_ACL,
122                                 "=> bdb_attribute: cannot find entry: \"%s\"\n",
123                                         entry_ndn->bv_val, 0, 0 ); 
124 #endif
125                         if ( free_lock_id ) {
126                                 LOCK_ID_FREE( bdb->bi_dbenv, locker );
127                         }
128                         return LDAP_NO_SUCH_OBJECT; 
129                 }
130                 
131 #ifdef NEW_LOGGING
132                 LDAP_LOG( BACK_BDB, DETAIL1, "bdb_attribute: found entry (%s)\n",
133                         entry_ndn->bv_val, 0, 0 );
134 #else
135                 Debug( LDAP_DEBUG_ACL,
136                         "=> bdb_attribute: found entry: \"%s\"\n",
137                         entry_ndn->bv_val, 0, 0 ); 
138 #endif
139         }
140
141 #ifdef BDB_ALIASES
142         /* find attribute values */
143         if( is_entry_alias( e ) ) {
144 #ifdef NEW_LOGGING
145                 LDAP_LOG( BACK_BDB, INFO, 
146                         "bdb_attribute: entry (%s) is an alias\n", e->e_dn, 0, 0 );
147 #else
148                 Debug( LDAP_DEBUG_ACL,
149                         "<= bdb_attribute: entry is an alias\n", 0, 0, 0 );
150 #endif
151                 rc = LDAP_ALIAS_PROBLEM;
152                 goto return_results;
153         }
154 #endif
155
156         if( is_entry_referral( e ) ) {
157 #ifdef NEW_LOGGING
158                 LDAP_LOG( BACK_BDB, INFO, 
159                         "bdb_attribute: entry (%s) is a referral.\n", e->e_dn, 0, 0);
160 #else
161                 Debug( LDAP_DEBUG_ACL,
162                         "<= bdb_attribute: entry is a referral\n", 0, 0, 0 );
163 #endif
164                 rc = LDAP_REFERRAL;
165                 goto return_results;
166         }
167
168         if ((attr = attr_find(e->e_attrs, entry_at)) == NULL) {
169 #ifdef NEW_LOGGING
170                 LDAP_LOG( BACK_BDB, INFO, 
171                         "bdb_attribute: failed to find %s.\n", entry_at_name, 0, 0 );
172 #else
173                 Debug( LDAP_DEBUG_ACL,
174                         "<= bdb_attribute: failed to find %s\n",
175                         entry_at_name, 0, 0 ); 
176 #endif
177                 rc = LDAP_NO_SUCH_ATTRIBUTE;
178                 goto return_results;
179         }
180
181         if (conn != NULL && op != NULL
182                 && access_allowed( be, conn, op, e, entry_at, NULL,
183                         ACL_AUTH, &acl_state ) == 0 )
184         {
185                 rc = LDAP_INSUFFICIENT_ACCESS;
186                 goto return_results;
187         }
188
189         for ( i = 0; attr->a_vals[i].bv_val != NULL; i++ ) {
190                 /* count them */
191         }
192
193         v = (BerVarray) ch_malloc( sizeof(struct berval) * (i+1) );
194
195         for ( i=0, j=0; attr->a_vals[i].bv_val != NULL; i++ ) {
196                 if( conn != NULL
197                         && op != NULL
198                         && access_allowed(be, conn, op, e, entry_at,
199                                 &attr->a_vals[i], ACL_AUTH, &acl_state ) == 0)
200                 {
201                         continue;
202                 }
203                 ber_dupbv( &v[j], &attr->a_vals[i] );
204
205                 if( v[j].bv_val != NULL ) j++;
206         }
207
208         if( j == 0 ) {
209                 ch_free( v );
210                 *vals = NULL;
211                 rc = LDAP_INSUFFICIENT_ACCESS;
212         } else {
213                 v[j].bv_val = NULL;
214                 v[j].bv_len = 0;
215                 *vals = v;
216                 rc = LDAP_SUCCESS;
217         }
218
219 return_results:
220         if( target != e ) {
221                 /* free entry */
222                 bdb_cache_return_entry_r(bdb->bi_dbenv, &bdb->bi_cache, e, &lock);
223         }
224
225         if ( free_lock_id ) {
226                 LOCK_ID_FREE( bdb->bi_dbenv, locker );
227         }
228
229 #ifdef NEW_LOGGING
230         LDAP_LOG( BACK_BDB, ENTRY, "bdb_attribute: rc=%d nvals=%d.\n", rc, j, 0 );
231 #else
232         Debug( LDAP_DEBUG_TRACE,
233                 "bdb_attribute: rc=%d nvals=%d\n",
234                 rc, j, 0 ); 
235 #endif
236         return(rc);
237 }