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