]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/modify.c
bfb1d5ca3e9e51d42597caa9bd67cc95586557a8
[openldap] / servers / slapd / back-meta / modify.c
1 /*
2  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  *
5  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
6  *
7  * This work has been developed to fulfill the requirements
8  * of SysNet s.n.c. <http:www.sys-net.it> and it has been donated
9  * to the OpenLDAP Foundation in the hope that it may be useful
10  * to the Open Source community, but WITHOUT ANY WARRANTY.
11  *
12  * Permission is granted to anyone to use this software for any purpose
13  * on any computer system, and to alter it and redistribute it, subject
14  * to the following restrictions:
15  *
16  * 1. The author and SysNet s.n.c. are not responsible for the consequences
17  *    of use of this software, no matter how awful, even if they arise from 
18  *    flaws in it.
19  *
20  * 2. The origin of this software must not be misrepresented, either by
21  *    explicit claim or by omission.  Since few users ever read sources,
22  *    credits should appear in the documentation.
23  *
24  * 3. Altered versions must be plainly marked as such, and must not be
25  *    misrepresented as being the original software.  Since few users
26  *    ever read sources, credits should appear in the documentation.
27  *    SysNet s.n.c. cannot be responsible for the consequences of the
28  *    alterations.
29  *
30  * 4. This notice may not be removed or altered.
31  *
32  *
33  * This software is based on the backend back-ldap, implemented
34  * by Howard Chu <hyc@highlandsun.com>, and modified by Mark Valence
35  * <kurash@sassafras.com>, Pierangelo Masarati <ando@sys-net.it> and other
36  * contributors. The contribution of the original software to the present
37  * implementation is acknowledged in this copyright statement.
38  *
39  * A special acknowledgement goes to Howard for the overall architecture
40  * (and for borrowing large pieces of code), and to Mark, who implemented
41  * from scratch the attribute/objectclass mapping.
42  *
43  * The original copyright statement follows.
44  *
45  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
46  *
47  * Permission is granted to anyone to use this software for any purpose
48  * on any computer system, and to alter it and redistribute it, subject
49  * to the following restrictions:
50  *
51  * 1. The author is not responsible for the consequences of use of this
52  *    software, no matter how awful, even if they arise from flaws in it.
53  *
54  * 2. The origin of this software must not be misrepresented, either by
55  *    explicit claim or by omission.  Since few users ever read sources,
56  *    credits should appear in the documentation.
57  *
58  * 3. Altered versions must be plainly marked as such, and must not be
59  *    misrepresented as being the original software.  Since few users
60  *    ever read sources, credits should appear in the
61  *    documentation.
62  *
63  * 4. This notice may not be removed or altered.
64  *
65  */
66
67 #include "portable.h"
68
69 #include <stdio.h>
70
71 #include <ac/string.h>
72 #include <ac/socket.h>
73
74 #include "slap.h"
75 #include "../back-ldap/back-ldap.h"
76 #include "back-meta.h"
77
78 int
79 meta_back_modify( Operation *op, SlapReply *rs )
80 {
81         struct metainfo         *li = ( struct metainfo * )op->o_bd->be_private;
82         struct metaconn         *lc;
83         int                     rc = 0;
84         LDAPMod                 **modv = NULL;
85         LDAPMod                 *mods = NULL;
86         Modifications           *ml;
87         int                     candidate = -1, i;
88         struct berval           mdn = { 0, NULL };
89         struct berval           mapped;
90         dncookie                dc;
91
92         lc = meta_back_getconn( op, rs, META_OP_REQUIRE_SINGLE,
93                         &op->o_req_ndn, &candidate );
94         if ( !lc ) {
95                 rc = -1;
96                 goto cleanup;
97         }
98         
99         if ( !meta_back_dobind( lc, op )
100                         || !meta_back_is_valid( lc, candidate ) ) {
101                 rs->sr_err = LDAP_OTHER;
102                 rc = -1;
103                 goto cleanup;
104         }
105
106         /*
107          * Rewrite the modify dn, if needed
108          */
109         dc.rwmap = &li->targets[ candidate ]->rwmap;
110         dc.conn = op->o_conn;
111         dc.rs = rs;
112         dc.ctx = "modifyDn";
113
114         if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
115                 rc = -1;
116                 goto cleanup;
117         }
118
119         for ( i = 0, ml = op->oq_modify.rs_modlist; ml; i++ ,ml = ml->sml_next )
120                 ;
121
122         mods = ch_malloc( sizeof( LDAPMod )*i );
123         if ( mods == NULL ) {
124                 rs->sr_err = LDAP_NO_MEMORY;
125                 rc = -1;
126                 goto cleanup;
127         }
128         modv = ( LDAPMod ** )ch_malloc( ( i + 1 )*sizeof( LDAPMod * ) );
129         if ( modv == NULL ) {
130                 rs->sr_err = LDAP_NO_MEMORY;
131                 rc = -1;
132                 goto cleanup;
133         }
134
135         dc.ctx = "modifyAttrDN";
136         for ( i = 0, ml = op->oq_modify.rs_modlist; ml; ml = ml->sml_next ) {
137                 int j;
138
139                 if ( ml->sml_desc->ad_type->sat_no_user_mod  ) {
140                         continue;
141                 }
142
143                 ldap_back_map( &li->targets[ candidate ]->rwmap.rwm_at,
144                                 &ml->sml_desc->ad_cname, &mapped,
145                                 BACKLDAP_MAP );
146                 if ( mapped.bv_val == NULL || mapped.bv_val[0] == '\0' ) {
147                         continue;
148                 }
149
150                 modv[ i ] = &mods[ i ];
151                 mods[ i ].mod_op = ml->sml_op | LDAP_MOD_BVALUES;
152                 mods[ i ].mod_type = mapped.bv_val;
153
154                 /*
155                  * FIXME: dn-valued attrs should be rewritten
156                  * to allow their use in ACLs at the back-ldap
157                  * level.
158                  */
159                 if ( strcmp( ml->sml_desc->ad_type->sat_syntax->ssyn_oid,
160                                         SLAPD_DN_SYNTAX ) == 0 ) {
161                         ( void )ldap_dnattr_rewrite( &dc, ml->sml_bvalues );
162                 }
163
164                 if ( ml->sml_bvalues != NULL ){
165                         for (j = 0; ml->sml_bvalues[ j ].bv_val; j++);
166                         mods[ i ].mod_bvalues = (struct berval **)ch_malloc((j+1) *
167                                 sizeof(struct berval *));
168                         for (j = 0; ml->sml_bvalues[ j ].bv_val; j++)
169                                 mods[ i ].mod_bvalues[ j ] = &ml->sml_bvalues[j];
170                         mods[ i ].mod_bvalues[ j ] = NULL;
171
172                 } else {
173                         mods[ i ].mod_bvalues = NULL;
174                 }
175
176                 i++;
177         }
178         modv[ i ] = 0;
179
180         ldap_modify_s( lc->conns[ candidate ].ld, mdn.bv_val, modv );
181
182 cleanup:;
183         if ( mdn.bv_val != op->o_req_dn.bv_val ) {
184                 free( mdn.bv_val );
185         }
186         if ( modv != NULL ) {
187                 for ( i = 0; modv[ i ]; i++) {
188                         free( modv[ i ]->mod_bvalues );
189                 }
190         }
191         free( mods );
192         free( modv );
193         
194         if ( rc == 0 ) {
195                 return meta_back_op_result( lc, op, rs ) == LDAP_SUCCESS
196                         ? 0 : 1;
197         } /* else */
198
199         send_ldap_result( op, rs );
200
201         return rc;
202 }
203