]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/add.c
implement per-target, per-operation timeouts
[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         metainfo_t      *mi = ( metainfo_t * )op->o_bd->be_private;
39         metaconn_t      *mc;
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         int             msgid;
47         int             do_retry = 1;
48
49         Debug(LDAP_DEBUG_ARGS, "==> meta_back_add: %s\n",
50                         op->o_req_dn.bv_val, 0, 0 );
51
52         /*
53          * get the current connection
54          */
55         mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR );
56         if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR ) ) {
57                 return rs->sr_err;
58         }
59
60         assert( mc->mc_conns[ candidate ].msc_ld != NULL );
61
62         /*
63          * Rewrite the add dn, if needed
64          */
65         dc.target = &mi->mi_targets[ candidate ];
66         dc.conn = op->o_conn;
67         dc.rs = rs;
68         dc.ctx = "addDN";
69
70         if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
71                 send_ldap_result( op, rs );
72                 goto done;
73         }
74
75         /* Count number of attributes in entry ( +1 ) */
76         for ( i = 1, a = op->ora_e->e_attrs; a; i++, a = a->a_next );
77         
78         /* Create array of LDAPMods for ldap_add() */
79         attrs = ch_malloc( sizeof( LDAPMod * )*i );
80
81         dc.ctx = "addAttrDN";
82         isupdate = be_shadow_update( op );
83         for ( i = 0, a = op->ora_e->e_attrs; a; a = a->a_next ) {
84                 int                     j, is_oc = 0;
85
86                 if ( !isupdate && a->a_desc->ad_type->sat_no_user_mod  ) {
87                         continue;
88                 }
89
90                 if ( a->a_desc == slap_schema.si_ad_objectClass 
91                                 || a->a_desc == slap_schema.si_ad_structuralObjectClass )
92                 {
93                         is_oc = 1;
94                         mapped = a->a_desc->ad_cname;
95
96                 } else {
97                         ldap_back_map( &mi->mi_targets[ candidate ].mt_rwmap.rwm_at,
98                                         &a->a_desc->ad_cname, &mapped, BACKLDAP_MAP );
99                         if ( BER_BVISNULL( &mapped ) || BER_BVISEMPTY( &mapped ) ) {
100                                 continue;
101                         }
102                 }
103
104                 attrs[ i ] = ch_malloc( sizeof( LDAPMod ) );
105                 if ( attrs[ i ] == NULL ) {
106                         continue;
107                 }
108                 attrs[ i ]->mod_op = LDAP_MOD_BVALUES;
109                 attrs[ i ]->mod_type = mapped.bv_val;
110
111                 if ( is_oc ) {
112                         for ( j = 0; !BER_BVISNULL( &a->a_vals[ j ] ); j++ )
113                                 ;
114
115                         attrs[ i ]->mod_bvalues =
116                                 (struct berval **)ch_malloc( ( j + 1 ) *
117                                 sizeof( struct berval * ) );
118
119                         for ( j = 0; !BER_BVISNULL( &a->a_vals[ j ] ); ) {
120                                 struct ldapmapping      *mapping;
121
122                                 ldap_back_mapping( &mi->mi_targets[ candidate ].mt_rwmap.rwm_oc,
123                                                 &a->a_vals[ j ], &mapping, BACKLDAP_MAP );
124
125                                 if ( mapping == NULL ) {
126                                         if ( mi->mi_targets[ candidate ].mt_rwmap.rwm_oc.drop_missing ) {
127                                                 continue;
128                                         }
129                                         attrs[ i ]->mod_bvalues[ j ] = &a->a_vals[ j ];
130
131                                 } else {
132                                         attrs[ i ]->mod_bvalues[ j ] = &mapping->dst;
133                                 }
134                                 j++;
135                         }
136                         attrs[ i ]->mod_bvalues[ j ] = NULL;
137
138                 } else {
139                         /*
140                          * FIXME: dn-valued attrs should be rewritten
141                          * to allow their use in ACLs at the back-ldap
142                          * level.
143                          */
144                         if ( a->a_desc->ad_type->sat_syntax ==
145                                 slap_schema.si_syn_distinguishedName )
146                         {
147                                 (void)ldap_dnattr_rewrite( &dc, a->a_vals );
148                                 if ( a->a_vals == NULL ) {
149                                         continue;
150                                 }
151                         }
152
153                         for ( j = 0; !BER_BVISNULL( &a->a_vals[ j ] ); j++ )
154                                 ;
155                         
156                         attrs[ i ]->mod_bvalues = ch_malloc( ( j + 1 ) * sizeof( struct berval * ) );
157                         for ( j = 0; !BER_BVISNULL( &a->a_vals[ j ] ); j++ ) {
158                                 attrs[ i ]->mod_bvalues[ j ] = &a->a_vals[ j ];
159                         }
160                         attrs[ i ]->mod_bvalues[ j ] = NULL;
161                 }
162                 i++;
163         }
164         attrs[ i ] = NULL;
165
166 retry:;
167         rs->sr_err = ldap_add_ext( mc->mc_conns[ candidate ].msc_ld, mdn.bv_val,
168                               attrs, op->o_ctrls, NULL, &msgid );
169         if ( rs->sr_err == LDAP_UNAVAILABLE && do_retry ) {
170                 do_retry = 0;
171                 if ( meta_back_retry( op, rs, mc, candidate, LDAP_BACK_SENDERR ) ) {
172                         goto retry;
173                 }
174
175         } else if ( rs->sr_err == LDAP_SUCCESS ) {
176                 struct timeval  tv, *tvp = NULL;
177                 LDAPMessage     *res = NULL;
178
179                 if ( mi->mi_targets[ candidate ].mt_timeout[ META_OP_ADD ] != 0 ) {
180                         tv.tv_sec = mi->mi_targets[ candidate ].mt_timeout[ META_OP_ADD ];
181                         tv.tv_usec = 0;
182                         tvp = &tv;
183                 }
184
185                 rs->sr_err = ldap_result( mc->mc_conns[ candidate ].msc_ld,
186                         msgid, LDAP_MSG_ONE, tvp, &res );
187                 switch ( rs->sr_err ) {
188                 case -1:
189                         rs->sr_err = LDAP_OTHER;
190                         send_ldap_result( op, rs );
191                         goto cleanup;
192
193                 case 0:
194                         ldap_abandon_ext( mc->mc_conns[ candidate ].msc_ld,
195                                 msgid, NULL, NULL );
196                         rs->sr_err = op->o_protocol >= LDAP_VERSION3 ?
197                                 LDAP_ADMINLIMIT_EXCEEDED : LDAP_OPERATIONS_ERROR;
198                         send_ldap_result( op, rs );
199                         goto cleanup;
200
201                 default:
202                         ldap_msgfree( res );
203                         break;
204                 }
205         }
206
207         (void)meta_back_op_result( mc, op, rs, candidate );
208
209 cleanup:;
210         for ( --i; i >= 0; --i ) {
211                 free( attrs[ i ]->mod_bvalues );
212                 free( attrs[ i ] );
213         }
214         free( attrs );
215         if ( mdn.bv_val != op->ora_e->e_dn ) {
216                 free( mdn.bv_val );
217                 BER_BVZERO( &mdn );
218         }
219
220 done:;
221         meta_back_release_conn( op, mc );
222
223         return rs->sr_err;
224 }
225