]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/add.c
fix ITS#3804 (does not affect HEAD/RE23)
[openldap] / servers / slapd / back-meta / add.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2005 The OpenLDAP Foundation.
5  * Portions Copyright 2001-2003 Pierangelo Masarati.
6  * Portions Copyright 1999-2003 Howard Chu.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by the Howard Chu for inclusion
19  * in OpenLDAP Software and subsequently enhanced by Pierangelo
20  * Masarati.
21  */
22
23
24 #include "portable.h"
25
26 #include <stdio.h>
27
28 #include <ac/string.h>
29 #include <ac/socket.h>
30
31 #include "slap.h"
32 #include "../back-ldap/back-ldap.h"
33 #include "back-meta.h"
34
35 int
36 meta_back_add( Operation *op, SlapReply *rs )
37 {
38         struct metainfo *li = ( struct metainfo * )op->o_bd->be_private;
39         struct metaconn *lc;
40         int i, candidate = -1;
41         Attribute *a;
42         LDAPMod **attrs;
43         struct berval mdn = BER_BVNULL, mapped;
44         dncookie dc;
45
46 #ifdef NEW_LOGGING
47         LDAP_LOG( BACK_META, ENTRY, "meta_back_add: %s\n",
48                         op->o_req_dn.bv_val, 0, 0 );
49 #else /* !NEW_LOGGING */
50         Debug(LDAP_DEBUG_ARGS, "==> meta_back_add: %s\n",
51                         op->o_req_dn.bv_val, 0, 0 );
52 #endif /* !NEW_LOGGING */
53
54         /*
55          * get the current connection
56          */
57         lc = meta_back_getconn( op, rs, META_OP_REQUIRE_SINGLE,
58                         &op->o_req_ndn, &candidate );
59         if ( !lc ) {
60                 send_ldap_result( op, rs );
61                 return -1;
62         }
63
64         if ( !meta_back_dobind( lc, op )
65                         || !meta_back_is_valid( lc, candidate ) ) {
66                 rs->sr_err = LDAP_OTHER;
67                 send_ldap_result( op, rs );
68                 return -1;
69         }
70
71         /*
72          * Rewrite the add dn, if needed
73          */
74         dc.rwmap = &li->targets[ candidate ]->rwmap;
75         dc.conn = op->o_conn;
76         dc.rs = rs;
77         dc.ctx = "addDN";
78
79         if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
80                 send_ldap_result( op, rs );
81                 return -1;
82         }
83
84         /* Count number of attributes in entry */
85         for ( i = 1, a = op->oq_add.rs_e->e_attrs; a; i++, a = a->a_next );
86         
87         /* Create array of LDAPMods for ldap_add() */
88         attrs = ch_malloc( sizeof( LDAPMod * )*i );
89
90         for ( i = 0, a = op->oq_add.rs_e->e_attrs; a; a = a->a_next ) {
91                 int     j, is_oc = 0;
92
93                 if ( a->a_desc->ad_type->sat_no_user_mod  ) {
94                         continue;
95                 }
96
97                 if ( a->a_desc == slap_schema.si_ad_objectClass
98                                 || a->a_desc == slap_schema.si_ad_structuralObjectClass )
99                 {
100                         is_oc = 1;
101                         mapped = a->a_desc->ad_cname;
102
103                 } else {
104                         ldap_back_map( &li->targets[ candidate ]->rwmap.rwm_at,
105                                         &a->a_desc->ad_cname, &mapped, BACKLDAP_MAP );
106                         if ( mapped.bv_val == NULL || mapped.bv_val[0] == '\0' ) {
107                                 continue;
108                         }
109                 }
110
111                 attrs[ i ] = ch_malloc( sizeof( LDAPMod ) );
112                 if ( attrs[ i ] == NULL ) {
113                         continue;
114                 }
115                 attrs[ i ]->mod_op = LDAP_MOD_BVALUES;
116                 attrs[ i ]->mod_type = mapped.bv_val;
117
118                 if ( is_oc ) {
119                         for ( j = 0; !BER_BVISNULL( &a->a_vals[ j ] ); j++ )
120                                 ;
121
122                         attrs[ i ]->mod_bvalues =
123                                 (struct berval **)ch_malloc( ( j + 1 ) *
124                                 sizeof( struct berval * ) );
125
126                         for ( j = 0; !BER_BVISNULL( &a->a_vals[ j ] ); ) {
127                                 struct ldapmapping      *mapping;
128
129                                 ldap_back_mapping( &li->targets[ candidate ]->rwmap.rwm_oc,
130                                                 &a->a_vals[ j ], &mapping, BACKLDAP_MAP );
131
132                                 if ( mapping == NULL ) {
133                                         if ( li->targets[ candidate ]->rwmap.rwm_oc.drop_missing ) {
134                                                 continue;
135                                         }
136                                         attrs[ i ]->mod_bvalues[ j ] = &a->a_vals[ j ];
137
138                                 } else {
139                                         attrs[ i ]->mod_bvalues[ j ] = &mapping->dst;
140                                 }
141                                 j++;
142                         }
143
144                         if ( j == 0 ) {
145                                 ch_free( attrs[ i ]->mod_bvalues );
146                                 continue;
147                         }
148
149                         attrs[ i ]->mod_bvalues[ j ] = NULL;
150
151                 } else {
152                         /*
153                          * FIXME: dn-valued attrs should be rewritten
154                          * to allow their use in ACLs at the back-ldap
155                          * level.
156                          */
157                         if ( a->a_desc->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName ) {
158                                 (void)ldap_dnattr_rewrite( &dc, a->a_vals );
159                                 if ( a->a_vals == NULL ) {
160                                         continue;
161                                 }
162                         }
163
164                         for ( j = 0; a->a_vals[ j ].bv_val; j++ );
165                         attrs[ i ]->mod_bvalues = ch_malloc((j+1)*sizeof(struct berval *));
166                         for ( j = 0; a->a_vals[ j ].bv_val; j++ ) {
167                                 attrs[ i ]->mod_bvalues[ j ] = &a->a_vals[ j ];
168                         }
169                         attrs[ i ]->mod_bvalues[ j ] = NULL;
170                 }
171                 i++;
172         }
173         attrs[ i ] = NULL;
174
175         ldap_add_s( lc->conns[ candidate ].ld, mdn.bv_val, attrs );
176         for ( --i; i >= 0; --i ) {
177                 free( attrs[ i ]->mod_bvalues );
178                 free( attrs[ i ] );
179         }
180         free( attrs );
181         if ( mdn.bv_val != op->oq_add.rs_e->e_dn ) {
182                 free( mdn.bv_val );
183         }
184         return meta_back_op_result( lc, op, rs );
185 }
186