]> git.sur5r.net Git - openldap/blob - servers/slapd/delete.c
4d14b040ec516cb6c107f4a14d5966a52c657339
[openldap] / servers / slapd / delete.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright (c) 1995 Regents of the University of Michigan.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms are permitted
11  * provided that this notice is preserved and that due credit is given
12  * to the University of Michigan at Ann Arbor. The name of the University
13  * may not be used to endorse or promote products derived from this
14  * software without specific prior written permission. This software
15  * is provided ``as is'' without express or implied warranty.
16  */
17
18 #include "portable.h"
19
20 #include <stdio.h>
21
22 #include <ac/string.h>
23 #include <ac/socket.h>
24
25 #include "ldap_pvt.h"
26 #include "slap.h"
27 #include "slapi.h"
28
29 int
30 do_delete(
31     Connection  *conn,
32     Operation   *op
33 )
34 {
35         struct berval dn = { 0, NULL };
36         struct berval pdn = { 0, NULL };
37         struct berval ndn = { 0, NULL };
38         const char *text;
39         Backend *be;
40         int rc;
41         int manageDSAit;
42
43 #ifdef LDAP_SLAPI
44         Slapi_PBlock *pb = op->o_pb;
45 #endif
46
47 #ifdef NEW_LOGGING
48         LDAP_LOG( OPERATION, ENTRY, 
49                 "do_delete: conn %d\n", conn->c_connid, 0, 0 );
50 #else
51         Debug( LDAP_DEBUG_TRACE, "do_delete\n", 0, 0, 0 );
52 #endif
53
54         /*
55          * Parse the delete request.  It looks like this:
56          *
57          *      DelRequest := DistinguishedName
58          */
59
60         if ( ber_scanf( op->o_ber, "m", &dn ) == LBER_ERROR ) {
61 #ifdef NEW_LOGGING
62                 LDAP_LOG( OPERATION, ERR, 
63                         "do_delete: conn: %d  ber_scanf failed\n", conn->c_connid, 0, 0 );
64 #else
65                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
66 #endif
67                 send_ldap_disconnect( conn, op,
68                         LDAP_PROTOCOL_ERROR, "decoding error" );
69                 return SLAPD_DISCONNECT;
70         }
71
72         if( ( rc = get_ctrls( conn, op, 1 ) ) != LDAP_SUCCESS ) {
73 #ifdef NEW_LOGGING
74                 LDAP_LOG( OPERATION, ERR, 
75                         "do_delete: conn %d  get_ctrls failed\n", conn->c_connid, 0, 0 );
76 #else
77                 Debug( LDAP_DEBUG_ANY, "do_delete: get_ctrls failed\n", 0, 0, 0 );
78 #endif
79                 goto cleanup;
80         } 
81
82         rc = dnPrettyNormal( NULL, &dn, &pdn, &ndn );
83         if( rc != LDAP_SUCCESS ) {
84 #ifdef NEW_LOGGING
85                 LDAP_LOG( OPERATION, INFO, 
86                         "do_delete: conn %d  invalid dn (%s)\n",
87                         conn->c_connid, dn.bv_val, 0 );
88 #else
89                 Debug( LDAP_DEBUG_ANY,
90                         "do_delete: invalid dn (%s)\n", dn.bv_val, 0, 0 );
91 #endif
92                 send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
93                     "invalid DN", NULL, NULL );
94                 goto cleanup;
95         }
96
97         if( ndn.bv_len == 0 ) {
98 #ifdef NEW_LOGGING
99                 LDAP_LOG( OPERATION, INFO, 
100                         "do_delete: conn %d: Attempt to delete root DSE.\n", 
101                         conn->c_connid, 0, 0 );
102 #else
103                 Debug( LDAP_DEBUG_ANY, "do_delete: root dse!\n", 0, 0, 0 );
104 #endif
105                 /* protocolError would likely be a more appropriate error */
106                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
107                         NULL, "cannot delete the root DSE", NULL, NULL );
108                 goto cleanup;
109
110         } else if ( bvmatch( &ndn, &global_schemandn ) ) {
111 #ifdef NEW_LOGGING
112                 LDAP_LOG( OPERATION, INFO, "do_delete: conn %d: "
113                         "Attempt to delete subschema subentry.\n", conn->c_connid, 0, 0 );
114 #else
115                 Debug( LDAP_DEBUG_ANY, "do_delete: subschema subentry!\n", 0, 0, 0 );
116 #endif
117                 /* protocolError would likely be a more appropriate error */
118                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
119                         NULL, "cannot delete the root DSE", NULL, NULL );
120                 goto cleanup;
121         }
122
123         Statslog( LDAP_DEBUG_STATS, "conn=%lu op=%lu DEL dn=\"%s\"\n",
124                 op->o_connid, op->o_opid, pdn.bv_val, 0, 0 );
125
126         manageDSAit = get_manageDSAit( op );
127
128         /*
129          * We could be serving multiple database backends.  Select the
130          * appropriate one, or send a referral to our "referral server"
131          * if we don't hold it.
132          */
133         if ( (be = select_backend( &ndn, manageDSAit, 0 )) == NULL ) {
134                 BerVarray ref = referral_rewrite( default_referral,
135                         NULL, &pdn, LDAP_SCOPE_DEFAULT );
136
137                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
138                         NULL, NULL, ref ? ref : default_referral, NULL );
139
140                 ber_bvarray_free( ref );
141                 goto cleanup;
142         }
143
144         /* check restrictions */
145         rc = backend_check_restrictions( be, conn, op, NULL, &text ) ;
146         if( rc != LDAP_SUCCESS ) {
147                 send_ldap_result( conn, op, rc,
148                         NULL, text, NULL, NULL );
149                 goto cleanup;
150         }
151
152         /* check for referrals */
153         rc = backend_check_referrals( be, conn, op, &pdn, &ndn );
154         if ( rc != LDAP_SUCCESS ) {
155                 goto cleanup;
156         }
157
158         /* deref suffix alias if appropriate */
159         suffix_alias( be, &ndn );
160
161 #if defined( LDAP_SLAPI )
162         slapi_x_backend_set_pb( pb, be );
163         slapi_x_connection_set_pb( pb, conn );
164         slapi_x_operation_set_pb( pb, op );
165         slapi_pblock_set( pb, SLAPI_DELETE_TARGET, (void *)dn.bv_val );
166         slapi_pblock_set( pb, SLAPI_MANAGEDSAIT, (void *)manageDSAit );
167
168         rc = doPluginFNs( be, SLAPI_PLUGIN_PRE_DELETE_FN, pb );
169         if ( rc != 0 ) {
170                 /*
171                  * A preoperation plugin failure will abort the
172                  * entire operation.
173                  */
174 #ifdef NEW_LOGGING
175                 LDAP_LOG( OPERATION, INFO, "do_delete: delete preoperation plugin "
176                                 "failed\n", 0, 0, 0 );
177 #else
178                 Debug (LDAP_DEBUG_TRACE, "do_delete: delete preoperation plugin failed.\n",
179                                 0, 0, 0);
180 #endif
181                 if ( slapi_pblock_get( pb, SLAPI_RESULT_CODE, (void *)&rc ) != 0 )
182                         rc = LDAP_OTHER;
183                 goto cleanup;
184         }
185 #endif /* defined( LDAP_SLAPI ) */
186
187         /*
188          * do the delete if 1 && (2 || 3)
189          * 1) there is a delete function implemented in this backend;
190          * 2) this backend is master for what it holds;
191          * 3) it's a replica and the dn supplied is the update_ndn.
192          */
193         if ( be->be_delete ) {
194                 /* do the update here */
195                 int repl_user = be_isupdate( be, &op->o_ndn );
196 #ifndef SLAPD_MULTIMASTER
197                 if ( !be->be_update_ndn.bv_len || repl_user )
198 #endif
199                 {
200                         if ( (*be->be_delete)( be, conn, op, &pdn, &ndn ) == 0 ) {
201 #ifdef SLAPD_MULTIMASTER
202                                 if ( !be->be_update_ndn.bv_len || !repl_user )
203 #endif
204                                 {
205                                         replog( be, op, &pdn, &ndn, NULL );
206                                 }
207                         }
208 #ifndef SLAPD_MULTIMASTER
209                 } else {
210                         BerVarray defref = be->be_update_refs
211                                 ? be->be_update_refs : default_referral;
212                         BerVarray ref = referral_rewrite( default_referral,
213                                 NULL, &pdn, LDAP_SCOPE_DEFAULT );
214
215                         send_ldap_result( conn, op, rc = LDAP_REFERRAL, NULL, NULL,
216                                 ref ? ref : defref, NULL );
217
218                         ber_bvarray_free( ref );
219 #endif
220                 }
221
222         } else {
223                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
224                         NULL, "operation not supported within namingContext", NULL, NULL );
225         }
226
227 #if defined( LDAP_SLAPI )
228         if ( doPluginFNs( be, SLAPI_PLUGIN_POST_DELETE_FN, pb ) != 0) {
229 #ifdef NEW_LOGGING
230                 LDAP_LOG( OPERATION, INFO, "do_delete: delete postoperation plugins "
231                                 "failed\n", 0, 0, 0 );
232 #else
233                 Debug(LDAP_DEBUG_TRACE, "do_delete: delete postoperation plugins "
234                                 "failed.\n", 0, 0, 0);
235 #endif
236         }
237 #endif /* defined( LDAP_SLAPI ) */
238
239 cleanup:
240         free( pdn.bv_val );
241         free( ndn.bv_val );
242         return rc;
243 }