]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/delete.c
error message from be_entry_put tool backend function
[openldap] / servers / slapd / back-ldap / delete.c
1 /* delete.c - ldap backend delete function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /* This is an altered version */
8 /*
9  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
10  * 
11  * Permission is granted to anyone to use this software for any purpose
12  * on any computer system, and to alter it and redistribute it, subject
13  * to the following restrictions:
14  * 
15  * 1. The author is not responsible for the consequences of use of this
16  *    software, no matter how awful, even if they arise from flaws in it.
17  * 
18  * 2. The origin of this software must not be misrepresented, either by
19  *    explicit claim or by omission.  Since few users ever read sources,
20  *    credits should appear in the documentation.
21  * 
22  * 3. Altered versions must be plainly marked as such, and must not be
23  *    misrepresented as being the original software.  Since few users
24  *    ever read sources, credits should appear in the documentation.
25  * 
26  * 4. This notice may not be removed or altered.
27  *
28  *
29  *
30  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
31  * 
32  * This software is being modified by Pierangelo Masarati.
33  * The previously reported conditions apply to the modified code as well.
34  * Changes in the original code are highlighted where required.
35  * Credits for the original code go to the author, Howard Chu.
36  */
37
38 #include "portable.h"
39
40 #include <stdio.h>
41
42 #include <ac/string.h>
43 #include <ac/socket.h>
44
45 #include "slap.h"
46 #include "back-ldap.h"
47
48 int
49 ldap_back_delete(
50     Backend     *be,
51     Connection  *conn,
52     Operation   *op,
53     struct berval       *dn,
54     struct berval       *ndn
55 )
56 {
57         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
58         struct ldapconn *lc;
59
60         struct berval mdn = { 0, NULL };
61
62         lc = ldap_back_getconn( li, conn, op );
63         
64         if ( !lc || !ldap_back_dobind( lc, op ) ) {
65                 return( -1 );
66         }
67
68         /*
69          * Rewrite the compare dn, if needed
70          */
71 #ifdef ENABLE_REWRITE
72         switch ( rewrite_session( li->rwinfo, "deleteDn", dn->bv_val, conn, &mdn.bv_val ) ) {
73         case REWRITE_REGEXEC_OK:
74         if ( mdn.bv_val == NULL ) {
75                         mdn.bv_val = ( char * )dn->bv_val;
76                 }
77 #ifdef NEW_LOGGING
78         LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
79                         "[rw] deleteDn: \"%s\" -> \"%s\"\n", dn->bv_val, mdn.bv_val ));
80 #else /* !NEW_LOGGING */
81         Debug( LDAP_DEBUG_ARGS, "rw> deleteDn: \"%s\" -> \"%s\"\n%s",
82                         dn->bv_val, mdn.bv_val, "" );
83 #endif /* !NEW_LOGGING */
84         break;
85                 
86         case REWRITE_REGEXEC_UNWILLING:
87                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
88                                 NULL, "Unwilling to perform", NULL, NULL );
89                 return( -1 );
90
91         case REWRITE_REGEXEC_ERR:
92                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
93                                 NULL, "Operations error", NULL, NULL );
94                 return( -1 );
95         }
96 #else /* !ENABLE_REWRITE */
97         ldap_back_dn_massage( li, dn, &mdn, 0, 1 );
98 #endif /* !ENABLE_REWRITE */
99         
100         ldap_delete_s( lc->ld, mdn.bv_val );
101
102         if ( mdn.bv_val != dn->bv_val ) {
103                 free( mdn.bv_val );
104         }
105         
106         return( ldap_back_op_result( lc, op ) );
107 }