]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/add.c
Preliminary ldapAdd support
[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         int             isupdate;
42         Attribute       *a;
43         LDAPMod         **attrs;
44         struct berval   mdn = BER_BVNULL, mapped;
45         dncookie        dc;
46
47         Debug(LDAP_DEBUG_ARGS, "==> meta_back_add: %s\n",
48                         op->o_req_dn.bv_val, 0, 0 );
49
50         /*
51          * get the current connection
52          */
53         lc = meta_back_getconn( op, rs, META_OP_REQUIRE_SINGLE,
54                         &op->o_req_ndn, &candidate, LDAP_BACK_SENDERR );
55         if ( !lc || !meta_back_dobind( lc, op, LDAP_BACK_SENDERR ) ) {
56                 return rs->sr_err;
57         }
58
59         if ( !meta_back_is_valid( lc, candidate ) ) {
60                 rs->sr_err = LDAP_UNAVAILABLE;
61                 send_ldap_result( op, rs );
62                 return rs->sr_err;
63         }
64
65         /*
66          * Rewrite the add dn, if needed
67          */
68         dc.rwmap = &li->targets[ candidate ]->mt_rwmap;
69         dc.conn = op->o_conn;
70         dc.rs = rs;
71         dc.ctx = "addDN";
72
73         if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
74                 send_ldap_result( op, rs );
75                 return rs->sr_err;
76         }
77
78         /* Count number of attributes in entry */
79         for ( i = 1, a = op->ora_e->e_attrs; a; i++, a = a->a_next );
80         
81         /* Create array of LDAPMods for ldap_add() */
82         attrs = ch_malloc( sizeof( LDAPMod * )*i );
83
84         dc.ctx = "addAttrDN";
85         isupdate = be_shadow_update( op );
86         for ( i = 0, a = op->ora_e->e_attrs; a; a = a->a_next ) {
87                 int                     j, is_oc = 0;
88
89                 if ( !isupdate && a->a_desc->ad_type->sat_no_user_mod  ) {
90                         continue;
91                 }
92
93                 if ( a->a_desc == slap_schema.si_ad_objectClass 
94                                 || a->a_desc == slap_schema.si_ad_structuralObjectClass )
95                 {
96                         is_oc = 1;
97                         mapped = a->a_desc->ad_cname;
98
99                 } else {
100                         ldap_back_map( &li->targets[ candidate ]->mt_rwmap.rwm_at,
101                                         &a->a_desc->ad_cname, &mapped, BACKLDAP_MAP );
102                         if ( BER_BVISNULL( &mapped ) || BER_BVISEMPTY( &mapped ) ) {
103                                 continue;
104                         }
105                 }
106
107                 attrs[ i ] = ch_malloc( sizeof( LDAPMod ) );
108                 if ( attrs[ i ] == NULL ) {
109                         continue;
110                 }
111                 attrs[ i ]->mod_op = LDAP_MOD_BVALUES;
112                 attrs[ i ]->mod_type = mapped.bv_val;
113
114                 if ( is_oc ) {
115                         for ( j = 0; !BER_BVISNULL( &a->a_vals[ j ] ); j++ )
116                                 ;
117
118                         attrs[ i ]->mod_bvalues =
119                                 (struct berval **)ch_malloc( ( j + 1 ) *
120                                 sizeof( struct berval * ) );
121
122                         for ( j = 0; !BER_BVISNULL( &a->a_vals[ j ] ); ) {
123                                 struct ldapmapping      *mapping;
124
125                                 ldap_back_mapping( &li->targets[ candidate ]->mt_rwmap.rwm_oc,
126                                                 &a->a_vals[ j ], &mapping, BACKLDAP_MAP );
127
128                                 if ( mapping == NULL ) {
129                                         if ( li->targets[ candidate ]->mt_rwmap.rwm_oc.drop_missing ) {
130                                                 continue;
131                                         }
132                                         attrs[ i ]->mod_bvalues[ j ] = &a->a_vals[ j ];
133
134                                 } else {
135                                         attrs[ i ]->mod_bvalues[ j ] = &mapping->dst;
136                                 }
137                                 j++;
138                         }
139                         attrs[ i ]->mod_bvalues[ j ] = NULL;
140
141                 } else {
142                         /*
143                          * FIXME: dn-valued attrs should be rewritten
144                          * to allow their use in ACLs at the back-ldap
145                          * level.
146                          */
147                         if ( a->a_desc->ad_type->sat_syntax ==
148                                 slap_schema.si_syn_distinguishedName )
149                         {
150                                 (void)ldap_dnattr_rewrite( &dc, a->a_vals );
151                                 if ( a->a_vals == NULL ) {
152                                         continue;
153                                 }
154                         }
155
156                         for ( j = 0; !BER_BVISNULL( &a->a_vals[ j ] ); j++ )
157                                 ;
158                         
159                         attrs[ i ]->mod_bvalues = ch_malloc( ( j + 1 ) * sizeof( struct berval * ) );
160                         for ( j = 0; !BER_BVISNULL( &a->a_vals[ j ] ); j++ ) {
161                                 attrs[ i ]->mod_bvalues[ j ] = &a->a_vals[ j ];
162                         }
163                         attrs[ i ]->mod_bvalues[ j ] = NULL;
164                 }
165                 i++;
166         }
167         attrs[ i ] = NULL;
168
169         rs->sr_err = ldap_add_ext_s( lc->mc_conns[ candidate ].msc_ld, mdn.bv_val,
170                               attrs, op->o_ctrls, NULL );
171         for ( --i; i >= 0; --i ) {
172                 free( attrs[ i ]->mod_bvalues );
173                 free( attrs[ i ] );
174         }
175         free( attrs );
176         if ( mdn.bv_val != op->ora_e->e_dn ) {
177                 free( mdn.bv_val );
178                 BER_BVZERO( &mdn );
179         }
180
181         return meta_back_op_result( lc, op, rs );
182 }
183