1 /* $OpenLDAP: pkg/ldap/libraries/libldap/modify.c,v 1.25.2.3 2008/02/11 23:26:41 kurt Exp $ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2008 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
11 * A copy of this license is available in the file LICENSE in the
12 * top-level directory of the distribution or, alternatively, at
13 * <http://www.OpenLDAP.org/license.html>.
15 /* Portions Copyright (c) 1990 Regents of the University of Michigan.
16 * All rights reserved.
23 #include <ac/socket.h>
24 #include <ac/string.h>
29 /* A modify request/response looks like this:
30 * ModifyRequest ::= [APPLICATION 6] SEQUENCE {
32 * changes SEQUENCE OF change SEQUENCE {
33 * operation ENUMERATED {
38 * modification PartialAttribute } }
40 * PartialAttribute ::= SEQUENCE {
41 * type AttributeDescription,
42 * vals SET OF value AttributeValue }
44 * AttributeDescription ::= LDAPString
45 * -- Constrained to <attributedescription> [RFC4512]
47 * AttributeValue ::= OCTET STRING
49 * ModifyResponse ::= [APPLICATION 7] LDAPResult
56 * ldap_modify_ext - initiate an ldap extended modify operation.
61 * dn DN of the object to modify
62 * mods List of modifications to make. This is null-terminated
63 * array of struct ldapmod's, specifying the modifications
65 * sctrls Server Controls
66 * cctrls Client Controls
67 * msgidp Message ID pointer
71 * { LDAP_MOD_ADD, "cn", { "babs jensen", "babs", 0 } },
72 * { LDAP_MOD_REPLACE, "sn", { "babs jensen", "babs", 0 } },
73 * { LDAP_MOD_DELETE, "ou", 0 },
74 * { LDAP_MOD_INCREMENT, "uidNumber, { "1", 0 } }
77 * rc= ldap_modify_ext( ld, dn, mods, sctrls, cctrls, &msgid );
80 ldap_modify_ext( LDAP
*ld
,
91 Debug( LDAP_DEBUG_TRACE
, "ldap_modify_ext\n", 0, 0, 0 );
93 /* check client controls */
94 rc
= ldap_int_client_controls( ld
, cctrls
);
95 if( rc
!= LDAP_SUCCESS
) return rc
;
97 /* create a message to send */
98 if ( (ber
= ldap_alloc_ber_with_options( ld
)) == NULL
) {
99 return( LDAP_NO_MEMORY
);
102 LDAP_NEXT_MSGID( ld
, id
);
103 rc
= ber_printf( ber
, "{it{s{" /*}}}*/, id
, LDAP_REQ_MODIFY
, dn
);
105 ld
->ld_errno
= LDAP_ENCODING_ERROR
;
107 return( ld
->ld_errno
);
110 /* allow mods to be NULL ("touch") */
112 /* for each modification to be performed... */
113 for ( i
= 0; mods
[i
] != NULL
; i
++ ) {
114 if (( mods
[i
]->mod_op
& LDAP_MOD_BVALUES
) != 0 ) {
115 rc
= ber_printf( ber
, "{e{s[V]N}N}",
116 (ber_int_t
) ( mods
[i
]->mod_op
& ~LDAP_MOD_BVALUES
),
117 mods
[i
]->mod_type
, mods
[i
]->mod_bvalues
);
119 rc
= ber_printf( ber
, "{e{s[v]N}N}",
120 (ber_int_t
) mods
[i
]->mod_op
,
121 mods
[i
]->mod_type
, mods
[i
]->mod_values
);
125 ld
->ld_errno
= LDAP_ENCODING_ERROR
;
127 return( ld
->ld_errno
);
132 if ( ber_printf( ber
, /*{{*/ "N}N}" ) == -1 ) {
133 ld
->ld_errno
= LDAP_ENCODING_ERROR
;
135 return( ld
->ld_errno
);
138 /* Put Server Controls */
139 if( ldap_int_put_controls( ld
, sctrls
, ber
) != LDAP_SUCCESS
) {
144 if ( ber_printf( ber
, /*{*/ "N}" ) == -1 ) {
145 ld
->ld_errno
= LDAP_ENCODING_ERROR
;
147 return( ld
->ld_errno
);
150 /* send the message */
151 *msgidp
= ldap_send_initial_request( ld
, LDAP_REQ_MODIFY
, dn
, ber
, id
);
152 return( *msgidp
< 0 ? ld
->ld_errno
: LDAP_SUCCESS
);
156 * ldap_modify - initiate an ldap modify operation.
161 * dn DN of the object to modify
162 * mods List of modifications to make. This is null-terminated
163 * array of struct ldapmod's, specifying the modifications
167 * LDAPMod *mods[] = {
168 * { LDAP_MOD_ADD, "cn", { "babs jensen", "babs", 0 } },
169 * { LDAP_MOD_REPLACE, "sn", { "babs jensen", "babs", 0 } },
170 * { LDAP_MOD_DELETE, "ou", 0 },
171 * { LDAP_MOD_INCREMENT, "uidNumber, { "1", 0 } }
174 * msgid = ldap_modify( ld, dn, mods );
177 ldap_modify( LDAP
*ld
, LDAP_CONST
char *dn
, LDAPMod
**mods
)
181 Debug( LDAP_DEBUG_TRACE
, "ldap_modify\n", 0, 0, 0 );
183 rc
= ldap_modify_ext( ld
, dn
, mods
, NULL
, NULL
, &msgid
);
185 if ( rc
!= LDAP_SUCCESS
)
192 ldap_modify_ext_s( LDAP
*ld
, LDAP_CONST
char *dn
,
193 LDAPMod
**mods
, LDAPControl
**sctrl
, LDAPControl
**cctrl
)
199 rc
= ldap_modify_ext( ld
, dn
, mods
, sctrl
, cctrl
, &msgid
);
201 if ( rc
!= LDAP_SUCCESS
)
204 if ( ldap_result( ld
, msgid
, LDAP_MSG_ALL
, (struct timeval
*) NULL
, &res
) == -1 || !res
)
205 return( ld
->ld_errno
);
207 return( ldap_result2error( ld
, res
, 1 ) );
211 ldap_modify_s( LDAP
*ld
, LDAP_CONST
char *dn
, LDAPMod
**mods
)
213 return ldap_modify_ext_s( ld
, dn
, mods
, NULL
, NULL
);