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