]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/add.c
fix ITS#3498; some cleanup
[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 );
55         if ( !lc ) {
56                 send_ldap_result( op, rs );
57         }
58
59         if ( !meta_back_dobind( lc, op )
60                         || !meta_back_is_valid( lc, candidate ) ) {
61                 rs->sr_err = LDAP_UNAVAILABLE;
62                 send_ldap_result( op, rs );
63                 return -1;
64         }
65
66         /*
67          * Rewrite the add dn, if needed
68          */
69         dc.rwmap = &li->targets[ candidate ]->mt_rwmap;
70         dc.conn = op->o_conn;
71         dc.rs = rs;
72         dc.ctx = "addDN";
73
74         if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
75                 send_ldap_result( op, rs );
76                 return -1;
77         }
78
79         /* Count number of attributes in entry */
80         for ( i = 1, a = op->ora_e->e_attrs; a; i++, a = a->a_next );
81         
82         /* Create array of LDAPMods for ldap_add() */
83         attrs = ch_malloc( sizeof( LDAPMod * )*i );
84
85         isupdate = be_shadow_update( op );
86         for ( i = 0, a = op->ora_e->e_attrs; a; a = a->a_next ) {
87                 int j;
88
89                 if ( !isupdate && a->a_desc->ad_type->sat_no_user_mod  ) {
90                         continue;
91                 }
92
93                 ldap_back_map( &li->targets[ candidate ]->mt_rwmap.rwm_at,
94                                 &a->a_desc->ad_cname, &mapped, BACKLDAP_MAP );
95                 if ( mapped.bv_val == NULL || mapped.bv_val[0] == '\0' ) {
96                         continue;
97                 }
98
99                 attrs[ i ] = ch_malloc( sizeof( LDAPMod ) );
100                 if ( attrs[ i ] == NULL ) {
101                         continue;
102                 }
103                 attrs[ i ]->mod_op = LDAP_MOD_BVALUES;
104                 attrs[ i ]->mod_type = mapped.bv_val;
105
106                 /*
107                  * FIXME: dn-valued attrs should be rewritten
108                  * to allow their use in ACLs at the back-ldap
109                  * level.
110                  */
111                 if ( strcmp( a->a_desc->ad_type->sat_syntax->ssyn_oid,
112                                         SLAPD_DN_SYNTAX ) == 0 )
113                 {
114                         (void)ldap_dnattr_rewrite( &dc, a->a_vals );
115                 }
116
117                 for ( j = 0; a->a_vals[ j ].bv_val; j++ );
118                 attrs[ i ]->mod_vals.modv_bvals = ch_malloc((j+1)*sizeof(struct berval *));
119                 for ( j = 0; a->a_vals[ j ].bv_val; j++ ) {
120                         attrs[ i ]->mod_vals.modv_bvals[ j ] = &a->a_vals[ j ];
121                 }
122                 attrs[ i ]->mod_vals.modv_bvals[ j ] = NULL;
123                 i++;
124         }
125         attrs[ i ] = NULL;
126
127         (void)ldap_add_ext_s( lc->mc_conns[ candidate ].msc_ld, mdn.bv_val,
128                               attrs, NULL, NULL );
129         for ( --i; i >= 0; --i ) {
130                 free( attrs[ i ]->mod_vals.modv_bvals );
131                 free( attrs[ i ] );
132         }
133         free( attrs );
134         if ( mdn.bv_val != op->ora_e->e_dn ) {
135                 free( mdn.bv_val );
136                 BER_BVZERO( &mdn );
137         }
138
139         return meta_back_op_result( lc, op, rs );
140 }
141