1 /* add.c - ldap backend add function */
4 * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
5 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
7 /* This is an altered version */
9 * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
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:
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.
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.
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.
26 * 4. This notice may not be removed or altered.
30 * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
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.
42 #include <ac/string.h>
43 #include <ac/socket.h>
46 #include "back-ldap.h"
56 struct ldapinfo *li = (struct ldapinfo *) be->be_private;
62 struct berval mdn = { 0, NULL };
65 LDAP_LOG( BACK_LDAP, ENTRY, "ldap_back_add: %s\n", e->e_dn, 0, 0 );
66 #else /* !NEW_LOGGING */
67 Debug(LDAP_DEBUG_ARGS, "==> ldap_back_add: %s\n", e->e_dn, 0, 0);
68 #endif /* !NEW_LOGGING */
70 lc = ldap_back_getconn(li, conn, op);
71 if ( !lc || !ldap_back_dobind( lc, op ) ) {
76 * Rewrite the add dn, if needed
79 switch (rewrite_session( li->rwinfo, "addDn", e->e_dn, conn,
81 case REWRITE_REGEXEC_OK:
82 if ( mdn.bv_val != NULL && mdn.bv_val[ 0 ] != '\0' ) {
83 mdn.bv_len = strlen( mdn.bv_val );
88 LDAP_LOG( BACK_LDAP, DETAIL1,
89 "[rw] addDn: \"%s\" -> \"%s\"\n", e->e_dn, mdn.bv_val, 0 );
90 #else /* !NEW_LOGGING */
91 Debug( LDAP_DEBUG_ARGS, "rw> addDn: \"%s\" -> \"%s\"\n%s",
92 e->e_dn, mdn.bv_val, "" );
93 #endif /* !NEW_LOGGING */
96 case REWRITE_REGEXEC_UNWILLING:
97 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
98 NULL, "Unwilling to perform", NULL, NULL );
101 case REWRITE_REGEXEC_ERR:
102 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
103 NULL, "Operations error", NULL, NULL );
106 #else /* !ENABLE_REWRITE */
107 ldap_back_dn_massage( li, &e->e_name, &mdn, 0, 1 );
108 #endif /* !ENABLE_REWRITE */
110 /* Count number of attributes in entry */
111 for (i = 1, a = e->e_attrs; a; i++, a = a->a_next)
114 /* Create array of LDAPMods for ldap_add() */
115 attrs = (LDAPMod **)ch_malloc(sizeof(LDAPMod *)*i);
117 for (i=0, a=e->e_attrs; a; a=a->a_next) {
119 * lastmod should always be <off>, so that
120 * creation/modification operational attrs
121 * of the target directory are used, if available
124 if ( !strcasecmp( a->a_desc->ad_cname.bv_val,
125 slap_schema.si_ad_creatorsName->ad_cname.bv_val )
126 || !strcasecmp( a->a_desc->ad_cname.bv_val,
127 slap_schema.si_ad_createTimestamp->ad_cname.bv_val )
128 || !strcasecmp( a->a_desc->ad_cname.bv_val,
129 slap_schema.si_ad_modifiersName->ad_cname.bv_val )
130 || !strcasecmp( a->a_desc->ad_cname.bv_val,
131 slap_schema.si_ad_modifyTimestamp->ad_cname.bv_val )
137 ldap_back_map(&li->at_map, &a->a_desc->ad_cname, &mapped, 0);
138 if (mapped.bv_val == NULL) {
142 attrs[i] = (LDAPMod *)ch_malloc(sizeof(LDAPMod));
143 if (attrs[i] == NULL) {
147 attrs[i]->mod_op = LDAP_MOD_BVALUES;
148 attrs[i]->mod_type = mapped.bv_val;
150 #ifdef ENABLE_REWRITE
152 * FIXME: dn-valued attrs should be rewritten
153 * to allow their use in ACLs at the back-ldap
156 if ( strcmp( a->a_desc->ad_type->sat_syntax->ssyn_oid,
157 SLAPD_DN_SYNTAX ) == 0 ) {
158 ldap_dnattr_rewrite( li->rwinfo, a->a_vals, conn );
160 #endif /* ENABLE_REWRITE */
162 for (j=0; a->a_vals[j].bv_val; j++);
163 attrs[i]->mod_vals.modv_bvals = ch_malloc((j+1)*sizeof(struct berval *));
164 for (j=0; a->a_vals[j].bv_val; j++)
165 attrs[i]->mod_vals.modv_bvals[j] = &a->a_vals[j];
166 attrs[i]->mod_vals.modv_bvals[j] = NULL;
171 ldap_add_s(lc->ld, mdn.bv_val, attrs);
172 for (--i; i>= 0; --i) {
173 ch_free(attrs[i]->mod_vals.modv_bvals);
177 if ( mdn.bv_val != e->e_dn ) {
181 return( ldap_back_op_result( lc, op ) );
184 #ifdef ENABLE_REWRITE
187 struct rewrite_info *rwinfo,
194 for ( ; a_vals->bv_val != NULL; a_vals++ ) {
195 switch ( rewrite_session( rwinfo, "bindDn", a_vals->bv_val,
197 case REWRITE_REGEXEC_OK:
198 if ( mattr == NULL ) {
199 /* no substitution */
203 LDAP_LOG( BACK_LDAP, DETAIL1,
204 "[rw] bindDn (in add of dn-valued"
205 " attr): \"%s\" -> \"%s\"\n", a_vals->bv_val, mattr, 0 );
206 #else /* !NEW_LOGGING */
207 Debug( LDAP_DEBUG_ARGS,
208 "rw> bindDn (in add of dn-valued attr):"
209 " \"%s\" -> \"%s\"\n%s",
210 a_vals->bv_val, mattr, "" );
211 #endif /* !NEW_LOGGING */
214 * FIXME: replacing server-allocated memory
215 * (ch_malloc) with librewrite allocated memory
218 ch_free( a_vals->bv_val );
219 a_vals->bv_val = mattr;
220 a_vals->bv_len = strlen( mattr );
224 case REWRITE_REGEXEC_UNWILLING:
226 case REWRITE_REGEXEC_ERR:
228 * FIXME: better give up,
230 * or leave it untouched?
238 #endif /* ENABLE_REWRITE */