]> git.sur5r.net Git - openldap/blob - servers/slapd/delete.c
daade821c01217927de76e0857b3846d150fa7e7
[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_pblock_set_operation( pb, op );
155         slapi_pblock_set( pb, SLAPI_DELETE_TARGET, (void *)dn.bv_val );
156         slapi_pblock_set( pb, SLAPI_MANAGEDSAIT, (void *)manageDSAit );
157
158         rs->sr_err = doPluginFNs( op->o_bd, SLAPI_PLUGIN_PRE_DELETE_FN, pb );
159         if ( rs->sr_err != 0 ) {
160                 /*
161                  * A preoperation plugin failure will abort the
162                  * entire operation.
163                  */
164 #ifdef NEW_LOGGING
165                 LDAP_LOG( OPERATION, INFO, "do_delete: delete preoperation plugin "
166                                 "failed\n", 0, 0, 0 );
167 #else
168                 Debug (LDAP_DEBUG_TRACE, "do_delete: delete preoperation plugin failed.\n",
169                                 0, 0, 0);
170 #endif
171                 if ( slapi_pblock_get( pb, SLAPI_RESULT_CODE, (void *)&rs->sr_err ) != 0 )
172                         rs->sr_err = LDAP_OTHER;
173                 goto cleanup;
174         }
175 #endif /* defined( LDAP_SLAPI ) */
176
177         /*
178          * do the delete if 1 && (2 || 3)
179          * 1) there is a delete function implemented in this backend;
180          * 2) this backend is master for what it holds;
181          * 3) it's a replica and the dn supplied is the update_ndn.
182          */
183         if ( op->o_bd->be_delete ) {
184                 /* do the update here */
185                 int repl_user = be_isupdate( op->o_bd, &op->o_ndn );
186 #ifndef SLAPD_MULTIMASTER
187                 if ( !op->o_bd->be_update_ndn.bv_len || repl_user )
188 #endif
189                 {
190                         if ( (op->o_bd->be_delete)( op, rs ) == 0 ) {
191 #ifdef SLAPD_MULTIMASTER
192                                 if ( !op->o_bd->be_update_ndn.bv_len || !repl_user )
193 #endif
194                                 {
195                                         replog( op );
196                                 }
197                         }
198 #ifndef SLAPD_MULTIMASTER
199                 } else {
200                         BerVarray defref = op->o_bd->be_update_refs
201                                 ? op->o_bd->be_update_refs : default_referral;
202                         rs->sr_ref = referral_rewrite( default_referral,
203                                 NULL, &op->o_req_dn, LDAP_SCOPE_DEFAULT );
204
205                         if (!rs->sr_ref) rs->sr_ref = defref;
206                         rs->sr_err = LDAP_REFERRAL;
207                         send_ldap_result( op, rs );
208
209                         if (rs->sr_ref != defref) ber_bvarray_free( rs->sr_ref );
210 #endif
211                 }
212
213         } else {
214                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
215                         "operation not supported within namingContext" );
216         }
217
218 #if defined( LDAP_SLAPI )
219         if ( doPluginFNs( op->o_bd, SLAPI_PLUGIN_POST_DELETE_FN, pb ) != 0) {
220 #ifdef NEW_LOGGING
221                 LDAP_LOG( OPERATION, INFO, "do_delete: delete postoperation plugins "
222                                 "failed\n", 0, 0, 0 );
223 #else
224                 Debug(LDAP_DEBUG_TRACE, "do_delete: delete postoperation plugins "
225                                 "failed.\n", 0, 0, 0);
226 #endif
227         }
228 #endif /* defined( LDAP_SLAPI ) */
229
230 cleanup:
231         free( op->o_req_dn.bv_val );
232         free( op->o_req_ndn.bv_val );
233         return rs->sr_err;
234 }