]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/delete.c
b3f6dcca4ceabf18c1da1fb9cd6acb5323933799
[openldap] / servers / slapd / back-meta / delete.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2003 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* ACKNOWLEDGEMENTS:
16  * This work was initially developed by the Howard Chu for inclusion
17  * in OpenLDAP Software and subsequently enhanced by Pierangelo
18  * Masarati.
19  */
20 /* This is an altered version */
21 /*
22  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
23  *
24  * This work has been developed to fulfill the requirements
25  * of SysNet s.n.c. <http:www.sys-net.it> and it has been donated
26  * to the OpenLDAP Foundation in the hope that it may be useful
27  * to the Open Source community, but WITHOUT ANY WARRANTY.
28  *
29  * Permission is granted to anyone to use this software for any purpose
30  * on any computer system, and to alter it and redistribute it, subject
31  * to the following restrictions:
32  *
33  * 1. The author and SysNet s.n.c. are not responsible for the consequences
34  *    of use of this software, no matter how awful, even if they arise from 
35  *    flaws in it.
36  *
37  * 2. The origin of this software must not be misrepresented, either by
38  *    explicit claim or by omission.  Since few users ever read sources,
39  *    credits should appear in the documentation.
40  *
41  * 3. Altered versions must be plainly marked as such, and must not be
42  *    misrepresented as being the original software.  Since few users
43  *    ever read sources, credits should appear in the documentation.
44  *    SysNet s.n.c. cannot be responsible for the consequences of the
45  *    alterations.
46  *
47  * 4. This notice may not be removed or altered.
48  *
49  *
50  * This software is based on the backend back-ldap, implemented
51  * by Howard Chu <hyc@highlandsun.com>, and modified by Mark Valence
52  * <kurash@sassafras.com>, Pierangelo Masarati <ando@sys-net.it> and other
53  * contributors. The contribution of the original software to the present
54  * implementation is acknowledged in this copyright statement.
55  *
56  * A special acknowledgement goes to Howard for the overall architecture
57  * (and for borrowing large pieces of code), and to Mark, who implemented
58  * from scratch the attribute/objectclass mapping.
59  *
60  * The original copyright statement follows.
61  *
62  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
63  *
64  * Permission is granted to anyone to use this software for any purpose
65  * on any computer system, and to alter it and redistribute it, subject
66  * to the following restrictions:
67  *
68  * 1. The author is not responsible for the consequences of use of this
69  *    software, no matter how awful, even if they arise from flaws in it.
70  *
71  * 2. The origin of this software must not be misrepresented, either by
72  *    explicit claim or by omission.  Since few users ever read sources,
73  *    credits should appear in the documentation.
74  *
75  * 3. Altered versions must be plainly marked as such, and must not be
76  *    misrepresented as being the original software.  Since few users
77  *    ever read sources, credits should appear in the
78  *    documentation.
79  *
80  * 4. This notice may not be removed or altered.
81  *
82  */
83
84 #include "portable.h"
85
86 #include <stdio.h>
87
88 #include <ac/string.h>
89 #include <ac/socket.h>
90
91 #include "slap.h"
92 #include "../back-ldap/back-ldap.h"
93 #include "back-meta.h"
94
95 int
96 meta_back_delete( Operation *op, SlapReply *rs )
97 {
98         struct metainfo *li = ( struct metainfo * )op->o_bd->be_private;
99         struct metaconn *lc;
100         int candidate = -1;
101         struct berval mdn = { 0, NULL };
102         dncookie dc;
103
104         lc = meta_back_getconn( op, rs, META_OP_REQUIRE_SINGLE,
105                         &op->o_req_ndn, &candidate );
106         if ( !lc ) {
107                 send_ldap_result( op, rs );
108                 return -1;
109         }
110         
111         if ( !meta_back_dobind( lc, op )
112                         || !meta_back_is_valid( lc, candidate ) ) {
113                 rs->sr_err = LDAP_OTHER;
114                 send_ldap_result( op, rs );
115                 return -1;
116         }
117
118         /*
119          * Rewrite the compare dn, if needed
120          */
121         dc.rwmap = &li->targets[ candidate ]->rwmap;
122         dc.conn = op->o_conn;
123         dc.rs = rs;
124         dc.ctx = "deleteDn";
125
126         if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
127                 send_ldap_result( op, rs );
128                 return -1;
129         }
130
131         ldap_delete_s( lc->conns[ candidate ].ld, mdn.bv_val );
132
133         if ( mdn.bv_val != op->o_req_dn.bv_val ) {
134                 free( mdn.bv_val );
135         }
136         
137         return meta_back_op_result( lc, op, rs );
138 }
139