]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/add.c
More struct berval DNs
[openldap] / servers / slapd / back-bdb / add.c
1 /* add.c - ldap BerkeleyDB back-end add routine */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 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 #include <ac/string.h>
12
13 #include "back-bdb.h"
14 #include "external.h"
15
16 int
17 bdb_add(
18         BackendDB       *be,
19         Connection      *conn,
20         Operation       *op,
21         Entry   *e )
22 {
23         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
24         char            *pdn = NULL;
25         Entry           *p = NULL;
26         int                     rc; 
27         const char      *text;
28         char textbuf[SLAP_TEXT_BUFLEN];
29         size_t textlen = sizeof textbuf;
30         AttributeDescription *children = slap_schema.si_ad_children;
31         DB_TXN          *ltid = NULL;
32         struct bdb_op_info opinfo;
33
34         Debug(LDAP_DEBUG_ARGS, "==> bdb_add: %s\n", e->e_dn, 0, 0);
35
36         /* check entry's schema */
37         rc = entry_schema_check( e, NULL, &text, textbuf, textlen );
38         if ( rc != LDAP_SUCCESS ) {
39                 Debug( LDAP_DEBUG_TRACE,
40                         "bdb_add: entry failed schema check: %s (%d)\n",
41                         text, rc, 0 );
42                 goto return_results;
43         }
44
45         /*
46          * acquire an ID outside of the operation transaction
47          * to avoid serializing adds.
48          */
49         rc = bdb_next_id( be, NULL, &e->e_id );
50         if( rc != 0 ) {
51                 Debug( LDAP_DEBUG_TRACE,
52                         "bdb_add: next_id failed (%d)\n",
53                         rc, 0, 0 );
54                 rc = LDAP_OTHER;
55                 text = "internal error";
56                 goto return_results;
57         }
58
59         if( 0 ) {
60                 /* transaction retry */
61 retry:  rc = txn_abort( ltid );
62                 ltid = NULL;
63                 op->o_private = NULL;
64                 if( rc != 0 ) {
65                         rc = LDAP_OTHER;
66                         text = "internal error";
67                         goto return_results;
68                 }
69         }
70
71         /* begin transaction */
72         if( bdb->bi_txn ) {
73                 rc = txn_begin( bdb->bi_dbenv, NULL, &ltid, 
74                         bdb->bi_db_opflags );
75                 text = NULL;
76                 if( rc != 0 ) {
77                         Debug( LDAP_DEBUG_TRACE,
78                                 "bdb_add: txn_begin failed: %s (%d)\n",
79                                 db_strerror(rc), rc, 0 );
80                         rc = LDAP_OTHER;
81                         text = "internal error";
82                         goto return_results;
83                 }
84         }
85
86         opinfo.boi_bdb = be;
87         opinfo.boi_txn = ltid;
88         opinfo.boi_err = 0;
89         op->o_private = &opinfo;
90         
91         /*
92          * Get the parent dn and see if the corresponding entry exists.
93          * If the parent does not exist, only allow the "root" user to
94          * add the entry.
95          */
96         pdn = dn_parent( be, e->e_ndn );
97
98         if( pdn != NULL && *pdn != '\0' ) {
99                 Entry *matched = NULL;
100
101                 /* get parent */
102                 rc = bdb_dn2entry( be, ltid, pdn, &p, &matched, 0 );
103
104                 switch( rc ) {
105                 case 0:
106                 case DB_NOTFOUND:
107                         break;
108                 case DB_LOCK_DEADLOCK:
109                 case DB_LOCK_NOTGRANTED:
110                         goto retry;
111                 default:
112                         rc = LDAP_OTHER;
113                         text = "internal error";
114                         goto return_results;
115                 }
116
117                 if ( p == NULL ) {
118                         char *matched_dn = NULL;
119                         struct berval **refs;
120
121                         if ( matched != NULL ) {
122                                 matched_dn = ch_strdup( matched->e_dn );
123                                 refs = is_entry_referral( matched )
124                                         ? get_entry_referrals( be, conn, op,
125                                         matched, e->e_dn, LDAP_SCOPE_DEFAULT )
126                                         : NULL;
127                                 bdb_entry_return( be, matched );
128                                 matched = NULL;
129
130                         } else {
131                                 refs = referral_rewrite( default_referral,
132                                         NULL, e->e_dn, LDAP_SCOPE_DEFAULT );
133                         }
134
135                         Debug( LDAP_DEBUG_TRACE, "bdb_add: parent does not exist\n",
136                                 0, 0, 0 );
137
138                         send_ldap_result( conn, op, rc = LDAP_REFERRAL,
139                                 matched_dn, NULL, refs, NULL );
140
141                         ber_bvecfree( refs );
142                         ch_free( matched_dn );
143
144                         goto done;
145                 }
146
147                 if ( ! access_allowed( be, conn, op, p,
148                         children, NULL, ACL_WRITE ) )
149                 {
150                         Debug( LDAP_DEBUG_TRACE, "bdb_add: no write access to parent\n",
151                                 0, 0, 0 );
152                         rc = LDAP_INSUFFICIENT_ACCESS;
153                         text = "no write access to parent";
154                         goto return_results;;
155                 }
156
157                 if ( is_entry_alias( p ) ) {
158                         /* parent is an alias, don't allow add */
159                         Debug( LDAP_DEBUG_TRACE, "bdb_add: parent is alias\n",
160                                 0, 0, 0 );
161                         rc = LDAP_ALIAS_PROBLEM;
162                         text = "parent is an alias";
163                         goto return_results;;
164                 }
165
166                 if ( is_entry_referral( p ) ) {
167                         /* parent is a referral, don't allow add */
168                         char *matched_dn = ch_strdup( p->e_dn );
169                         struct berval **refs = is_entry_referral( p )
170                                 ? get_entry_referrals( be, conn, op, p,
171                                         e->e_dn, LDAP_SCOPE_DEFAULT )
172                                 : NULL;
173
174                         Debug( LDAP_DEBUG_TRACE, "bdb_add: parent is referral\n",
175                                 0, 0, 0 );
176
177                         send_ldap_result( conn, op, rc = LDAP_REFERRAL,
178                                 matched_dn, NULL, refs, NULL );
179
180                         ber_bvecfree( refs );
181                         free( matched_dn );
182                         goto done;
183                 }
184
185                 /* free parent and writer lock */
186                 bdb_entry_return( be, p );
187                 p = NULL;
188
189         } else {
190                 /*
191                  * no parent!
192                  *      must be adding entry to at suffix
193                  *  or with parent ""
194                  */
195                 if ( !be_isroot( be, &op->o_ndn )) {
196                         if ( be_issuffix( be, "" ) || be_isupdate( be, &op->o_ndn ) ) {
197                                 p = (Entry *)&slap_entry_root;
198
199                                 /* check parent for "children" acl */
200                                 rc = access_allowed( be, conn, op, p,
201                                         children, NULL, ACL_WRITE );
202                                 p = NULL;
203
204                                 if ( ! rc ) {
205                                         Debug( LDAP_DEBUG_TRACE,
206                                                 "bdb_add: no write access to parent\n",
207                                                 0, 0, 0 );
208                                         rc = LDAP_INSUFFICIENT_ACCESS;
209                                         text = "no write access to parent";
210                                         goto return_results;;
211                                 }
212
213                         } else {
214                                 Debug( LDAP_DEBUG_TRACE, "bdb_add: %s denied\n",
215                                         pdn == NULL ? "suffix" : "entry at root",
216                                         0, 0 );
217                                 rc = LDAP_INSUFFICIENT_ACCESS;
218                                 goto return_results;
219                         }
220                 }
221         }
222
223         /* dn2id index */
224         rc = bdb_dn2id_add( be, ltid, pdn, e );
225         if ( rc != 0 ) {
226                 Debug( LDAP_DEBUG_TRACE, "bdb_add: dn2id_add failed: %s (%d)\n",
227                         db_strerror(rc), rc, 0 );
228
229                 switch( rc ) {
230                 case DB_LOCK_DEADLOCK:
231                 case DB_LOCK_NOTGRANTED:
232                         goto retry;
233                 case DB_KEYEXIST:
234                         rc = LDAP_ALREADY_EXISTS;
235                         break;
236                 default:
237                         rc = LDAP_OTHER;
238                 }
239                 goto return_results;
240         }
241
242         /* id2entry index */
243         rc = bdb_id2entry_add( be, ltid, e );
244         if ( rc != 0 ) {
245                 Debug( LDAP_DEBUG_TRACE, "bdb_add: id2entry_add failed\n",
246                         0, 0, 0 );
247                 switch( rc ) {
248                 case DB_LOCK_DEADLOCK:
249                 case DB_LOCK_NOTGRANTED:
250                         goto retry;
251                 default:
252                         rc = LDAP_OTHER;
253                 }
254                 text = "entry store failed";
255                 goto return_results;
256         }
257
258         /* attribute indexes */
259         rc = bdb_index_entry_add( be, ltid, e, e->e_attrs );
260         if ( rc != LDAP_SUCCESS ) {
261                 Debug( LDAP_DEBUG_TRACE, "bdb_add: index_entry_add failed\n",
262                         0, 0, 0 );
263                 switch( rc ) {
264                 case DB_LOCK_DEADLOCK:
265                 case DB_LOCK_NOTGRANTED:
266                         goto retry;
267                 default:
268                         rc = LDAP_OTHER;
269                 }
270                 text = "index generation failed";
271                 goto return_results;
272         }
273
274         if( bdb->bi_txn ) {
275                 rc = txn_commit( ltid, 0 );
276         }
277         ltid = NULL;
278         op->o_private = NULL;
279
280         if( rc != 0 ) {
281                 Debug( LDAP_DEBUG_TRACE,
282                         "bdb_add: txn_commit failed: %s (%d)\n",
283                         db_strerror(rc), rc, 0 );
284                 rc = LDAP_OTHER;
285                 text = "commit failed";
286
287         } else {
288                 Debug( LDAP_DEBUG_TRACE,
289                         "bdb_add: added id=%08lx dn=\"%s\"\n",
290                         e->e_id, e->e_dn, 0 );
291                 rc = LDAP_SUCCESS;
292                 text = NULL;
293         }
294
295 return_results:
296         send_ldap_result( conn, op, rc,
297                 NULL, text, NULL, NULL );
298
299         if( rc == LDAP_SUCCESS && bdb->bi_txn_cp ) {
300                 ldap_pvt_thread_yield();
301                 TXN_CHECKPOINT( bdb->bi_dbenv,
302                         bdb->bi_txn_cp_kbyte, bdb->bi_txn_cp_min, 0 );
303         }
304
305 done:
306         if (p != NULL) {
307                 /* free parent and writer lock */
308                 bdb_entry_return( be, p ); 
309         }
310
311         if( ltid != NULL ) {
312                 txn_abort( ltid );
313                 op->o_private = NULL;
314         }
315
316         return rc;
317 }