]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/add.c
656a6e6cbfad6e91e6c34da5110f93ed901acc35
[openldap] / servers / slapd / back-ldap / add.c
1 /* add.c - ldap backend add function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /* This is an altered version */
8 /*
9  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
10  * 
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:
14  * 
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.
17  * 
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.
21  * 
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.
25  * 
26  * 4. This notice may not be removed or altered.
27  */
28
29 #include "portable.h"
30
31 #include <stdio.h>
32
33 #include <ac/string.h>
34 #include <ac/socket.h>
35
36 #include "slap.h"
37 #include "back-ldap.h"
38
39 int
40 ldap_back_add(
41     Backend     *be,
42     Connection  *conn,
43     Operation   *op,
44     Entry       *e
45 )
46 {
47         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
48         struct ldapconn *lc;
49         int i;
50         Attribute *a;
51         LDAPMod **attrs;
52
53         lc = ldap_back_getconn(li, conn, op);
54         if (!lc)
55                 return( -1 );
56
57         if (!lc->bound) {
58                 ldap_back_dobind(lc, op);
59                 if (!lc->bound)
60                         return( -1 );
61         }
62
63         /* Count number of attributes in entry */
64         for (i=1, a=e->e_attrs; a; i++, a=a->a_next)
65                 ;
66         
67         /* Create array of LDAPMods for ldap_add() */
68         attrs = (LDAPMod **)ch_malloc(sizeof(LDAPMod *)*i);
69         attrs[i-1] = 0;
70
71         for (i=0, a=e->e_attrs; a; i++, a=a->a_next) {
72                 attrs[i] = (LDAPMod *)ch_malloc(sizeof(LDAPMod));
73                 attrs[i]->mod_op = LDAP_MOD_BVALUES;
74                 attrs[i]->mod_type = a->a_desc->ad_cname->bv_val;
75                 attrs[i]->mod_vals.modv_bvals = a->a_vals;
76         }
77
78         ldap_add_s(lc->ld, e->e_dn, attrs);
79         for (--i; i>= 0; --i)
80                 free(attrs[i]);
81         free(attrs);
82         return( ldap_back_op_result( lc, op ));
83 }