]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/modify.c
f76e75f7a6f5d1fa7a1be0180ac231166fc9b92e
[openldap] / servers / slapd / back-ldap / modify.c
1 /* modify.c - ldap backend modify 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_modify(
37     Backend     *be,
38     Connection  *conn,
39     Operation   *op,
40     const char  *dn,
41     const char  *ndn,
42     Modifications       *modlist
43 )
44 {
45         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
46         struct ldapconn *lc;
47         LDAPMod **modv;
48         LDAPMod *mods;
49         Modifications *ml;
50         int i;
51
52         lc = ldap_back_getconn(li, conn, op);
53         if (!lc)
54                 return( -1 );
55
56         if (!lc->bound) {
57                 ldap_back_dobind(lc, op);
58                 if (!lc->bound)
59                         return( -1 );
60         }
61
62         for (i=0, ml=modlist; ml; i++,ml=ml->sml_next)
63                 ;
64
65         mods = (LDAPMod *)ch_malloc(i*sizeof(LDAPMod));
66         if (mods == NULL)
67                 return( -1 );
68         modv = (LDAPMod **)ch_malloc((i+1)*sizeof(LDAPMod *));
69         if (modv == NULL) {
70                 free(mods);
71                 return( -1 );
72         }
73
74         modv[i] = 0;
75
76         for (i=0, ml=modlist; ml; i++, ml=ml->sml_next) {
77                 modv[i] = &mods[i];
78                 mods[i].mod_op = ml->sml_op;
79                 mods[i].mod_type = ml->sml_desc->ad_cname->bv_val;
80                 mods[i].mod_bvalues = ml->sml_bvalues;
81         }
82
83         ldap_modify_s( lc->ld, dn, modv );
84         free(mods);     
85         free(modv);     
86         return( ldap_back_op_result( lc, op ));
87 }