]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/add.c
Add LDAPsubentry (without OID).
[openldap] / servers / slapd / back-ldap / add.c
1 /* add.c - ldap backend add function */
2
3 /*
4  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
5  * 
6  * Permission is granted to anyone to use this software for any purpose
7  * on any computer system, and to alter it and redistribute it, subject
8  * to the following restrictions:
9  * 
10  * 1. The author is not responsible for the consequences of use of this
11  *    software, no matter how awful, even if they arise from flaws in it.
12  * 
13  * 2. The origin of this software must not be misrepresented, either by
14  *    explicit claim or by omission.  Since few users ever read sources,
15  *    credits should appear in the documentation.
16  * 
17  * 3. Altered versions must be plainly marked as such, and must not be
18  *    misrepresented as being the original software.  Since few users
19  *    ever read sources, credits should appear in the documentation.
20  * 
21  * 4. This notice may not be removed or altered.
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.h"
33
34 int
35 ldap_back_add(
36     Backend     *be,
37     Connection  *conn,
38     Operation   *op,
39     Entry       *e
40 )
41 {
42         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
43         struct ldapconn *lc;
44         int i;
45         Attribute *a;
46         LDAPMod **attrs;
47
48         lc = ldap_back_getconn(li, conn, op);
49         if (!lc)
50                 return( -1 );
51
52         if (!lc->bound) {
53                 ldap_back_dobind(lc, op);
54                 if (!lc->bound)
55                         return( -1 );
56         }
57
58         /* Count number of attributes in entry */
59         for (i=1, a=e->e_attrs; a; i++, a=a->a_next)
60                 ;
61         
62         /* Create array of LDAPMods for ldap_add() */
63         attrs = (LDAPMod **)ch_malloc(sizeof(LDAPMod *)*i);
64         attrs[i-1] = 0;
65
66         for (i=0, a=e->e_attrs; a; i++, a=a->a_next) {
67                 attrs[i] = (LDAPMod *)ch_malloc(sizeof(LDAPMod));
68                 attrs[i]->mod_op = LDAP_MOD_BVALUES;
69                 attrs[i]->mod_type = a->a_type;
70                 attrs[i]->mod_vals.modv_bvals = a->a_vals;
71         }
72
73         ldap_add_s(lc->ld, e->e_dn, attrs);
74         for (--i; i>= 0; --i)
75                 free(attrs[i]);
76         free(attrs);
77         return( ldap_back_op_result( lc, op ));
78 }