]> git.sur5r.net Git - openldap/blob - servers/slapd/delete.c
87b320760121c137781f5569350614e2914c0702
[openldap] / servers / slapd / delete.c
1 /*
2  * Copyright (c) 1995 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 #include "portable.h"
14
15 #include <stdio.h>
16
17 #include <ac/string.h>
18 #include <ac/socket.h>
19
20 #include "slap.h"
21
22 int
23 do_delete(
24     Connection  *conn,
25     Operation   *op
26 )
27 {
28         char    *ndn;
29         Backend *be;
30         int rc;
31
32         Debug( LDAP_DEBUG_TRACE, "do_delete\n", 0, 0, 0 );
33
34         if( op->o_bind_in_progress ) {
35                 Debug( LDAP_DEBUG_ANY, "do_delete: SASL bind in progress.\n",
36                         0, 0, 0 );
37                 send_ldap_result( conn, op, LDAP_SASL_BIND_IN_PROGRESS, NULL,
38                     "SASL bind in progress" );
39                 return LDAP_SASL_BIND_IN_PROGRESS;
40         }
41
42         /*
43          * Parse the delete request.  It looks like this:
44          *
45          *      DelRequest := DistinguishedName
46          */
47
48         if ( ber_scanf( op->o_ber, "a", &ndn ) == LBER_ERROR ) {
49                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
50                 send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR, NULL, "" );
51                 return rc;
52         }
53
54         if( ( rc = get_ctrls( conn, op, 1 ) ) != LDAP_SUCCESS ) {
55                 free( ndn );
56                 Debug( LDAP_DEBUG_ANY, "do_add: get_ctrls failed\n", 0, 0, 0 );
57                 return rc;
58         } 
59
60         Debug( LDAP_DEBUG_ARGS, "do_delete: dn (%s)\n", ndn, 0, 0 );
61
62         dn_normalize_case( ndn );
63
64         Debug( LDAP_DEBUG_STATS, "DEL dn=\"%s\"\n", ndn, 0, 0 );
65
66         /*
67          * We could be serving multiple database backends.  Select the
68          * appropriate one, or send a referral to our "referral server"
69          * if we don't hold it.
70          */
71         if ( (be = select_backend( ndn )) == NULL ) {
72                 free( ndn );
73                 send_ldap_result( conn, op, rc = LDAP_PARTIAL_RESULTS, NULL,
74                     default_referral );
75                 return rc;
76         }
77
78         /* alias suffix if approp */
79         ndn = suffixAlias( ndn, op, be );
80
81         /*
82          * do the delete if 1 && (2 || 3)
83          * 1) there is a delete function implemented in this backend;
84          * 2) this backend is master for what it holds;
85          * 3) it's a replica and the dn supplied is the update_ndn.
86          */
87         if ( be->be_delete ) {
88                 /* do the update here */
89                 if ( be->be_update_ndn == NULL ||
90                         strcmp( be->be_update_ndn, op->o_ndn ) == 0 )
91                 {
92                         if ( (*be->be_delete)( be, conn, op, ndn ) == 0 ) {
93                                 replog( be, LDAP_REQ_DELETE, ndn, NULL, 0 );
94                         }
95                 } else {
96                         send_ldap_result( conn, op, rc = LDAP_PARTIAL_RESULTS, NULL,
97                             default_referral );
98                 }
99         } else {
100                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM, NULL,
101                     "Function not implemented" );
102         }
103
104         free( ndn );
105         return rc;
106 }