]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/modify.c
More system schema checks
[openldap] / servers / slapd / back-meta / modify.c
1 /*
2  * Copyright 1998-2002 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(
80                 Backend *be,
81                 Connection      *conn,
82                 Operation       *op,
83                 struct berval   *dn,
84                 struct berval   *ndn,
85                 Modifications   *modlist
86 )
87 {
88         struct metainfo *li = ( struct metainfo * )be->be_private;
89         struct metaconn *lc;
90         LDAPMod **modv;
91         LDAPMod *mods;
92         Modifications *ml;
93         int candidate = -1, i;
94         char *mdn;
95         struct berval mapped;
96
97         lc = meta_back_getconn( li, conn, op, META_OP_REQUIRE_SINGLE,
98                         ndn, &candidate );
99         if ( !lc || !meta_back_dobind( lc, op ) || !meta_back_is_valid( lc, candidate ) ) {
100                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
101                                 NULL, NULL, NULL, NULL );
102                 return -1;
103         }
104
105         /*
106          * Rewrite the modify dn, if needed
107          */
108         switch ( rewrite_session( li->targets[ candidate ]->rwinfo,
109                                 "modifyDn", dn->bv_val, conn, &mdn ) ) {
110         case REWRITE_REGEXEC_OK:
111                 if ( mdn == NULL ) {
112                         mdn = ( char * )dn->bv_val;
113                 }
114 #ifdef NEW_LOGGING
115                 LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
116                                 "[rw] modifyDn: \"%s\" -> \"%s\"\n",
117                                 dn->bv_val, mdn ));
118 #else /* !NEW_LOGGING */
119                 Debug( LDAP_DEBUG_ARGS, "rw> modifyDn: \"%s\" -> \"%s\"\n%s",
120                                 dn->bv_val, mdn, "" );
121 #endif /* !NEW_LOGGING */
122                 break;
123                 
124         case REWRITE_REGEXEC_UNWILLING:
125                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
126                                 NULL, NULL, NULL, NULL );
127                 return -1;
128
129         case REWRITE_REGEXEC_ERR:
130                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
131                                 NULL, NULL, NULL, NULL );
132                 return -1;
133         }
134
135         for ( i = 0, ml = modlist; ml; i++ ,ml = ml->sml_next )
136                 ;
137
138         mods = ch_malloc( sizeof( LDAPMod )*i );
139         if ( mods == NULL ) {
140                 if ( mdn != dn->bv_val ) {
141                         free( mdn );
142                 }
143                 return -1;
144         }
145         modv = ( LDAPMod ** )ch_malloc( ( i + 1 )*sizeof( LDAPMod * ) );
146         if ( modv == NULL ) {
147                 free( mods );
148                 if ( mdn != dn->bv_val ) {
149                         free( mdn );
150                 }
151                 return -1;
152         }
153
154         for ( i = 0, ml = modlist; ml; ml = ml->sml_next ) {
155                 int j;
156                 /*
157                  * lastmod should always be <off>
158                  */
159 #if 0
160                 if ( !strcasecmp( a->a_desc->ad_cname.bv_val,
161                         slap_schema.si_ad_creatorsName->ad_cname.bv_val )
162                         || !strcasecmp( a->a_desc->ad_cname.bv_val,
163                         slap_schema.si_ad_createTimestamp->ad_cname.bv_val )
164                         || !strcasecmp( a->a_desc->ad_cname.bv_val,
165                         slap_schema.si_ad_modifiersName->ad_cname.bv_val )
166                         || !strcasecmp( a->a_desc->ad_cname.bv_val,
167                         slap_schema.si_ad_modifyTimestamp->ad_cname.bv_val ) ) {
168                         continue;
169                 }
170 #endif
171
172                 ldap_back_map( &li->targets[ candidate ]->at_map,
173                                 &ml->sml_desc->ad_cname, &mapped, 0 );
174                 if ( mapped.bv_val == NULL ) {
175                         continue;
176                 }
177
178                 modv[ i ] = &mods[ i ];
179                 mods[ i ].mod_op = ml->sml_op | LDAP_MOD_BVALUES;
180                 mods[ i ].mod_type = mapped.bv_val;
181
182                 /*
183                  * FIXME: dn-valued attrs should be rewritten
184                  * to allow their use in ACLs at the back-ldap
185                  * level.
186                  */
187                 if ( strcmp( ml->sml_desc->ad_type->sat_syntax->ssyn_oid,
188                                         SLAPD_DN_SYNTAX ) == 0 ) {
189                         ldap_dnattr_rewrite(
190                                 li->targets[ candidate ]->rwinfo,
191                                 ml->sml_bvalues, conn );
192                 }
193
194                 for (j = 0; ml->sml_bvalues[ j ].bv_val; j++);
195                 mods[ i ].mod_bvalues = (struct berval **)ch_malloc((j+1) *
196                         sizeof(struct berval *));
197                 for (j = 0; ml->sml_bvalues[ j ].bv_val; j++)
198                         mods[ i ].mod_bvalues[ j ] = &ml->sml_bvalues[j];
199                 mods[ i ].mod_bvalues[ j ] = NULL;
200                 i++;
201         }
202         modv[ i ] = 0;
203
204         ldap_modify_s( lc->conns[ candidate ]->ld, mdn, modv );
205
206         if ( mdn != dn->bv_val ) {
207                 free( mdn );
208         }
209         for ( i=0; modv[ i ]; i++)
210                 free( modv[ i ]->mod_bvalues );
211         free( mods );
212         free( modv );
213         return meta_back_op_result( lc, op );
214 }
215