]> git.sur5r.net Git - openldap/blob - servers/slapd/delete.c
Major API change - (SLAP_OP_BLOCKS) All request parameters are
[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
28 #ifdef LDAP_SLAPI
29 #include "slapi.h"
30 #endif
31
32 int
33 do_delete(
34     Operation   *op,
35     SlapReply   *rs
36 )
37 {
38         struct berval dn = { 0, NULL };
39         int manageDSAit;
40
41 #ifdef LDAP_SLAPI
42         Slapi_PBlock *pb = op->o_pb;
43 #endif
44
45 #ifdef NEW_LOGGING
46         LDAP_LOG( OPERATION, ENTRY, 
47                 "do_delete: conn %d\n", op->o_connid, 0, 0 );
48 #else
49         Debug( LDAP_DEBUG_TRACE, "do_delete\n", 0, 0, 0 );
50 #endif
51
52         /*
53          * Parse the delete request.  It looks like this:
54          *
55          *      DelRequest := DistinguishedName
56          */
57
58         if ( ber_scanf( op->o_ber, "m", &dn ) == LBER_ERROR ) {
59 #ifdef NEW_LOGGING
60                 LDAP_LOG( OPERATION, ERR, 
61                         "do_delete: conn: %d  ber_scanf failed\n", op->o_connid, 0, 0 );
62 #else
63                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
64 #endif
65                 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
66                 return SLAPD_DISCONNECT;
67         }
68
69         if( get_ctrls( op, rs, 1 ) != LDAP_SUCCESS ) {
70 #ifdef NEW_LOGGING
71                 LDAP_LOG( OPERATION, ERR, 
72                         "do_delete: conn %d  get_ctrls failed\n", op->o_connid, 0, 0 );
73 #else
74                 Debug( LDAP_DEBUG_ANY, "do_delete: get_ctrls failed\n", 0, 0, 0 );
75 #endif
76                 goto cleanup;
77         } 
78
79         rs->sr_err = dnPrettyNormal( NULL, &dn, &op->o_req_dn, &op->o_req_ndn );
80         if( rs->sr_err != LDAP_SUCCESS ) {
81 #ifdef NEW_LOGGING
82                 LDAP_LOG( OPERATION, INFO, 
83                         "do_delete: conn %d  invalid dn (%s)\n",
84                         op->o_connid, dn.bv_val, 0 );
85 #else
86                 Debug( LDAP_DEBUG_ANY,
87                         "do_delete: invalid dn (%s)\n", dn.bv_val, 0, 0 );
88 #endif
89                 send_ldap_error( op, rs, LDAP_INVALID_DN_SYNTAX, "invalid DN" );
90                 goto cleanup;
91         }
92
93         if( op->o_req_ndn.bv_len == 0 ) {
94 #ifdef NEW_LOGGING
95                 LDAP_LOG( OPERATION, INFO, 
96                         "do_delete: conn %d: Attempt to delete root DSE.\n", 
97                         op->o_connid, 0, 0 );
98 #else
99                 Debug( LDAP_DEBUG_ANY, "do_delete: root dse!\n", 0, 0, 0 );
100 #endif
101                 /* protocolError would likely be a more appropriate error */
102                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
103                         "cannot delete the root DSE" );
104                 goto cleanup;
105
106         } else if ( bvmatch( &op->o_req_ndn, &global_schemandn ) ) {
107 #ifdef NEW_LOGGING
108                 LDAP_LOG( OPERATION, INFO, "do_delete: conn %d: "
109                         "Attempt to delete subschema subentry.\n", op->o_connid, 0, 0 );
110 #else
111                 Debug( LDAP_DEBUG_ANY, "do_delete: subschema subentry!\n", 0, 0, 0 );
112 #endif
113                 /* protocolError would likely be a more appropriate error */
114                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
115                         "cannot delete the root DSE" );
116                 goto cleanup;
117         }
118
119         Statslog( LDAP_DEBUG_STATS, "conn=%lu op=%lu DEL dn=\"%s\"\n",
120                 op->o_connid, op->o_opid, op->o_req_dn.bv_val, 0, 0 );
121
122         manageDSAit = get_manageDSAit( op );
123
124         /*
125          * We could be serving multiple database backends.  Select the
126          * appropriate one, or send a referral to our "referral server"
127          * if we don't hold it.
128          */
129         if ( (op->o_bd = select_backend( &op->o_req_ndn, manageDSAit, 0 )) == NULL ) {
130                 rs->sr_ref = referral_rewrite( default_referral,
131                         NULL, &op->o_req_dn, LDAP_SCOPE_DEFAULT );
132
133                 if (!rs->sr_ref) rs->sr_ref = default_referral;
134                 rs->sr_err = LDAP_REFERRAL;
135
136                 send_ldap_result( op, rs );
137
138                 if (rs->sr_ref!= default_referral) ber_bvarray_free( rs->sr_ref );
139                 goto cleanup;
140         }
141
142         /* check restrictions */
143         if( backend_check_restrictions( op, rs, NULL ) != LDAP_SUCCESS ) {
144                 send_ldap_result( op, rs );
145                 goto cleanup;
146         }
147
148         /* check for referrals */
149         if( backend_check_referrals( op, rs ) != LDAP_SUCCESS ) {
150                 goto cleanup;
151         }
152
153 #if defined( LDAP_SLAPI )
154         slapi_x_backend_set_pb( pb, op->o_bd );
155         slapi_x_connection_set_pb( pb, op->o_conn );
156         slapi_x_operation_set_pb( pb, op );
157         slapi_pblock_set( pb, SLAPI_DELETE_TARGET, (void *)dn.bv_val );
158         slapi_pblock_set( pb, SLAPI_MANAGEDSAIT, (void *)manageDSAit );
159
160         rs->sr_err = doPluginFNs( op->o_bd, SLAPI_PLUGIN_PRE_DELETE_FN, pb );
161         if ( rs->sr_err != 0 ) {
162                 /*
163                  * A preoperation plugin failure will abort the
164                  * entire operation.
165                  */
166 #ifdef NEW_LOGGING
167                 LDAP_LOG( OPERATION, INFO, "do_delete: delete preoperation plugin "
168                                 "failed\n", 0, 0, 0 );
169 #else
170                 Debug (LDAP_DEBUG_TRACE, "do_delete: delete preoperation plugin failed.\n",
171                                 0, 0, 0);
172 #endif
173                 if ( slapi_pblock_get( pb, SLAPI_RESULT_CODE, (void *)&rs->sr_err ) != 0 )
174                         rs->sr_err = LDAP_OTHER;
175                 goto cleanup;
176         }
177 #endif /* defined( LDAP_SLAPI ) */
178
179         /*
180          * do the delete if 1 && (2 || 3)
181          * 1) there is a delete function implemented in this backend;
182          * 2) this backend is master for what it holds;
183          * 3) it's a replica and the dn supplied is the update_ndn.
184          */
185         if ( op->o_bd->be_delete ) {
186                 /* do the update here */
187                 int repl_user = be_isupdate( op->o_bd, &op->o_ndn );
188 #ifndef SLAPD_MULTIMASTER
189                 if ( !op->o_bd->be_update_ndn.bv_len || repl_user )
190 #endif
191                 {
192                         if ( (op->o_bd->be_delete)( op, rs ) == 0 ) {
193 #ifdef SLAPD_MULTIMASTER
194                                 if ( !op->o_bd->be_update_ndn.bv_len || !repl_user )
195 #endif
196                                 {
197                                         replog( op );
198                                 }
199                         }
200 #ifndef SLAPD_MULTIMASTER
201                 } else {
202                         BerVarray defref = op->o_bd->be_update_refs
203                                 ? op->o_bd->be_update_refs : default_referral;
204                         rs->sr_ref = referral_rewrite( default_referral,
205                                 NULL, &op->o_req_dn, LDAP_SCOPE_DEFAULT );
206
207                         if (!rs->sr_ref) rs->sr_ref = defref;
208                         rs->sr_err = LDAP_REFERRAL;
209                         send_ldap_result( op, rs );
210
211                         if (rs->sr_ref != defref) ber_bvarray_free( rs->sr_ref );
212 #endif
213                 }
214
215         } else {
216                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
217                         "operation not supported within namingContext" );
218         }
219
220 #if defined( LDAP_SLAPI )
221         if ( doPluginFNs( op->o_bd, SLAPI_PLUGIN_POST_DELETE_FN, pb ) != 0) {
222 #ifdef NEW_LOGGING
223                 LDAP_LOG( OPERATION, INFO, "do_delete: delete postoperation plugins "
224                                 "failed\n", 0, 0, 0 );
225 #else
226                 Debug(LDAP_DEBUG_TRACE, "do_delete: delete postoperation plugins "
227                                 "failed.\n", 0, 0, 0);
228 #endif
229         }
230 #endif /* defined( LDAP_SLAPI ) */
231
232 cleanup:
233         free( op->o_req_dn.bv_val );
234         free( op->o_req_ndn.bv_val );
235         return rs->sr_err;
236 }