]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/modify.c
5cb19e5175acf2a71b6f738bb7afb7904fb017f5
[openldap] / servers / slapd / back-ldap / modify.c
1 /* modify.c - ldap backend modify function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 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_modify(
50     Backend     *be,
51     Connection  *conn,
52     Operation   *op,
53     struct berval       *dn,
54     struct berval       *ndn,
55     Modifications       *modlist
56 )
57 {
58         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
59         struct ldapconn *lc;
60         LDAPMod **modv = NULL;
61         LDAPMod *mods;
62         Modifications *ml;
63         int i, j;
64         struct berval mapped;
65         struct berval mdn = { 0, NULL };
66
67         lc = ldap_back_getconn(li, conn, op);
68         if ( !lc || !ldap_back_dobind( lc, op ) ) {
69                 return( -1 );
70         }
71
72         /*
73          * Rewrite the modify dn, if needed
74          */
75 #ifdef ENABLE_REWRITE
76         switch ( rewrite_session( li->rwinfo, "modifyDn", dn->bv_val, conn, &mdn.bv_val ) ) {
77         case REWRITE_REGEXEC_OK:
78                 if ( mdn.bv_val == NULL ) {
79                         mdn.bv_val = ( char * )dn->bv_val;
80                 }
81 #ifdef NEW_LOGGING
82                 LDAP_LOG( BACK_LDAP, DETAIL1, 
83                         "[rw] modifyDn: \"%s\" -> \"%s\"\n", dn->bv_val, mdn.bv_val, 0 );
84 #else /* !NEW_LOGGING */
85                 Debug( LDAP_DEBUG_ARGS, "rw> modifyDn: \"%s\" -> \"%s\"\n%s",
86                                 dn->bv_val, mdn.bv_val, "" );
87 #endif /* !NEW_LOGGING */
88                 break;
89                 
90         case REWRITE_REGEXEC_UNWILLING:
91                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
92                                 NULL, "Operation not allowed", NULL, NULL );
93                 return( -1 );
94
95         case REWRITE_REGEXEC_ERR:
96                 send_ldap_result( conn, op, LDAP_OTHER,
97                                 NULL, "Rewrite error", NULL, NULL );
98                 return( -1 );
99         }
100 #else /* !ENABLE_REWRITE */
101         ldap_back_dn_massage( li, dn, &mdn, 0, 1 );
102 #endif /* !ENABLE_REWRITE */
103
104         for (i=0, ml=modlist; ml; i++,ml=ml->sml_next)
105                 ;
106
107         mods = (LDAPMod *)ch_malloc(i*sizeof(LDAPMod));
108         if (mods == NULL) {
109                 goto cleanup;
110         }
111         modv = (LDAPMod **)ch_malloc((i+1)*sizeof(LDAPMod *));
112         if (modv == NULL) {
113                 goto cleanup;
114         }
115
116         for (i=0, ml=modlist; ml; ml=ml->sml_next) {
117                 if ( ml->sml_desc->ad_type->sat_no_user_mod  ) {
118                         continue;
119                 }
120
121                 ldap_back_map(&li->at_map, &ml->sml_desc->ad_cname, &mapped,
122                                 BACKLDAP_MAP);
123                 if (mapped.bv_val == NULL || mapped.bv_val[0] == '\0') {
124                         continue;
125                 }
126
127                 modv[i] = &mods[i];
128                 mods[i].mod_op = ml->sml_op | LDAP_MOD_BVALUES;
129                 mods[i].mod_type = mapped.bv_val;
130
131 #ifdef ENABLE_REWRITE
132                 /*
133                  * FIXME: dn-valued attrs should be rewritten
134                  * to allow their use in ACLs at the back-ldap
135                  * level.
136                  */
137                 if ( strcmp( ml->sml_desc->ad_type->sat_syntax->ssyn_oid,
138                                         SLAPD_DN_SYNTAX ) == 0 ) {
139                         ldap_dnattr_rewrite( li->rwinfo,
140                                         ml->sml_bvalues, conn );
141                 }
142 #endif /* ENABLE_REWRITE */
143
144                 if ( ml->sml_bvalues != NULL ) {        
145                         for (j = 0; ml->sml_bvalues[j].bv_val; j++);
146                         mods[i].mod_bvalues = (struct berval **)ch_malloc((j+1) *
147                                 sizeof(struct berval *));
148                         for (j = 0; ml->sml_bvalues[j].bv_val; j++)
149                                 mods[i].mod_bvalues[j] = &ml->sml_bvalues[j];
150                         mods[i].mod_bvalues[j] = NULL;
151                 } else {
152                         mods[i].mod_bvalues = NULL;
153                 }
154
155                 i++;
156         }
157         modv[i] = 0;
158
159         ldap_modify_s( lc->ld, mdn.bv_val, modv );
160
161 cleanup:;
162 #ifdef ENABLE_REWRITE
163         if ( mdn.bv_val != dn->bv_val ) {
164 #endif /* ENABLE_REWRITE */
165                 free( mdn.bv_val );
166 #ifdef ENABLE_REWRITE
167         }
168 #endif /* ENABLE_REWRITE */
169         for (i=0; modv[i]; i++)
170                 ch_free(modv[i]->mod_bvalues);
171         ch_free(mods);
172         ch_free(modv);
173         return( ldap_back_op_result( lc, op ));
174 }
175