2 * WLDAP32 - LDAP support for Wine
4 * Copyright 2005 Hans Leidekker
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "wine/debug.h"
28 #include "winldap_private.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(wldap32
);
32 /***********************************************************************
33 * ldap_modifyA (WLDAP32.@)
37 ULONG CDECL
ldap_modifyA( LDAP
*ld
, char *dn
, LDAPModA
**mods
)
39 ULONG ret
= LDAP_NO_MEMORY
;
41 LDAPModW
**modsW
= NULL
;
43 TRACE( "(%p, %s, %p)\n", ld
, debugstr_a(dn
), mods
);
47 if (dn
&& !(dnW
= strAtoW( dn
))) goto exit
;
48 if (mods
&& !(modsW
= modarrayAtoW( mods
))) goto exit
;
50 ret
= ldap_modifyW( ld
, dnW
, modsW
);
54 modarrayfreeW( modsW
);
58 /***********************************************************************
59 * ldap_modifyW (WLDAP32.@)
61 * Change an entry in a directory tree (asynchronous operation).
64 * ld [I] Pointer to an LDAP context.
65 * dn [I] DN of the entry to change.
66 * mods [I] Pointer to an array of LDAPModW structures, each
67 * specifying an attribute and its values to change.
70 * Success: Message ID of the modify operation.
71 * Failure: An LDAP error code.
74 * Call ldap_result with the message ID to get the result of
75 * the operation. Cancel the operation by calling ldap_abandon
76 * with the message ID.
78 ULONG CDECL
ldap_modifyW( LDAP
*ld
, WCHAR
*dn
, LDAPModW
**mods
)
82 TRACE( "(%p, %s, %p)\n", ld
, debugstr_w(dn
), mods
);
84 ret
= ldap_modify_extW( ld
, dn
, mods
, NULL
, NULL
, &msg
);
85 if (ret
== LDAP_SUCCESS
) return msg
;
89 /***********************************************************************
90 * ldap_modify_extA (WLDAP32.@)
92 * See ldap_modify_extW.
94 ULONG CDECL
ldap_modify_extA( LDAP
*ld
, char *dn
, LDAPModA
**mods
, LDAPControlA
**serverctrls
,
95 LDAPControlA
**clientctrls
, ULONG
*message
)
97 ULONG ret
= LDAP_NO_MEMORY
;
99 LDAPModW
**modsW
= NULL
;
100 LDAPControlW
**serverctrlsW
= NULL
, **clientctrlsW
= NULL
;
102 TRACE( "(%p, %s, %p, %p, %p, %p)\n", ld
, debugstr_a(dn
), mods
, serverctrls
, clientctrls
, message
);
106 if (dn
&& !(dnW
= strAtoW( dn
))) goto exit
;
107 if (mods
&& !(modsW
= modarrayAtoW( mods
))) goto exit
;
108 if (serverctrls
&& !(serverctrlsW
= controlarrayAtoW( serverctrls
))) goto exit
;
109 if (clientctrls
&& !(clientctrlsW
= controlarrayAtoW( clientctrls
))) goto exit
;
111 ret
= ldap_modify_extW( ld
, dnW
, modsW
, serverctrlsW
, clientctrlsW
, message
);
115 modarrayfreeW( modsW
);
116 controlarrayfreeW( serverctrlsW
);
117 controlarrayfreeW( clientctrlsW
);
121 /***********************************************************************
122 * ldap_modify_extW (WLDAP32.@)
124 * Change an entry in a directory tree (asynchronous operation).
127 * ld [I] Pointer to an LDAP context.
128 * dn [I] DN of the entry to change.
129 * mods [I] Pointer to an array of LDAPModW structures, each
130 * specifying an attribute and its values to change.
131 * serverctrls [I] Array of LDAP server controls.
132 * clientctrls [I] Array of LDAP client controls.
133 * message [O] Message ID of the modify operation.
136 * Success: LDAP_SUCCESS
137 * Failure: An LDAP error code.
140 * Call ldap_result with the message ID to get the result of
141 * the operation. The serverctrls and clientctrls parameters are
142 * optional and should be set to NULL if not used.
144 ULONG CDECL
ldap_modify_extW( LDAP
*ld
, WCHAR
*dn
, LDAPModW
**mods
, LDAPControlW
**serverctrls
,
145 LDAPControlW
**clientctrls
, ULONG
*message
)
147 ULONG ret
= LDAP_NO_MEMORY
;
149 LDAPModU
**modsU
= NULL
;
150 LDAPControlU
**serverctrlsU
= NULL
, **clientctrlsU
= NULL
;
152 TRACE( "(%p, %s, %p, %p, %p, %p)\n", ld
, debugstr_w(dn
), mods
, serverctrls
, clientctrls
, message
);
156 if (dn
&& !(dnU
= strWtoU( dn
))) goto exit
;
157 if (mods
&& !(modsU
= modarrayWtoU( mods
))) goto exit
;
158 if (serverctrls
&& !(serverctrlsU
= controlarrayWtoU( serverctrls
))) goto exit
;
159 if (clientctrls
&& !(clientctrlsU
= controlarrayWtoU( clientctrls
))) goto exit
;
161 ret
= map_error( ldap_funcs
->fn_ldap_modify_ext( CTX(ld
), dnU
, modsU
, serverctrlsU
, clientctrlsU
, message
) );
165 modarrayfreeU( modsU
);
166 controlarrayfreeU( serverctrlsU
);
167 controlarrayfreeU( clientctrlsU
);
171 /***********************************************************************
172 * ldap_modify_ext_sA (WLDAP32.@)
174 * See ldap_modify_ext_sW.
176 ULONG CDECL
ldap_modify_ext_sA( LDAP
*ld
, char *dn
, LDAPModA
**mods
, LDAPControlA
**serverctrls
,
177 LDAPControlA
**clientctrls
)
179 ULONG ret
= LDAP_NO_MEMORY
;
181 LDAPModW
**modsW
= NULL
;
182 LDAPControlW
**serverctrlsW
= NULL
, **clientctrlsW
= NULL
;
184 TRACE( "(%p, %s, %p, %p, %p)\n", ld
, debugstr_a(dn
), mods
, serverctrls
, clientctrls
);
186 if (!ld
) return LDAP_PARAM_ERROR
;
188 if (dn
&& !(dnW
= strAtoW( dn
))) goto exit
;
189 if (mods
&& !(modsW
= modarrayAtoW( mods
))) goto exit
;
190 if (serverctrls
&& !(serverctrlsW
= controlarrayAtoW( serverctrls
))) goto exit
;
191 if (clientctrls
&& !(clientctrlsW
= controlarrayAtoW( clientctrls
))) goto exit
;
193 ret
= ldap_modify_ext_sW( ld
, dnW
, modsW
, serverctrlsW
, clientctrlsW
);
197 modarrayfreeW( modsW
);
198 controlarrayfreeW( serverctrlsW
);
199 controlarrayfreeW( clientctrlsW
);
203 /***********************************************************************
204 * ldap_modify_ext_sW (WLDAP32.@)
206 * Change an entry in a directory tree (synchronous operation).
209 * ld [I] Pointer to an LDAP context.
210 * dn [I] DN of the entry to change.
211 * mods [I] Pointer to an array of LDAPModW structures, each
212 * specifying an attribute and its values to change.
213 * serverctrls [I] Array of LDAP server controls.
214 * clientctrls [I] Array of LDAP client controls.
217 * Success: LDAP_SUCCESS
218 * Failure: An LDAP error code.
221 * The serverctrls and clientctrls parameters are optional and
222 * should be set to NULL if not used.
224 ULONG CDECL
ldap_modify_ext_sW( LDAP
*ld
, WCHAR
*dn
, LDAPModW
**mods
, LDAPControlW
**serverctrls
,
225 LDAPControlW
**clientctrls
)
227 ULONG ret
= LDAP_NO_MEMORY
;
229 LDAPModU
**modsU
= NULL
;
230 LDAPControlU
**serverctrlsU
= NULL
, **clientctrlsU
= NULL
;
232 TRACE( "(%p, %s, %p, %p, %p)\n", ld
, debugstr_w(dn
), mods
, serverctrls
, clientctrls
);
234 if (!ld
) return LDAP_PARAM_ERROR
;
236 if (dn
&& !(dnU
= strWtoU( dn
))) goto exit
;
237 if (mods
&& !(modsU
= modarrayWtoU( mods
))) goto exit
;
238 if (serverctrls
&& !(serverctrlsU
= controlarrayWtoU( serverctrls
))) goto exit
;
239 if (clientctrls
&& !(clientctrlsU
= controlarrayWtoU( clientctrls
))) goto exit
;
241 ret
= map_error( ldap_funcs
->fn_ldap_modify_ext_s( CTX(ld
), dnU
, modsU
, serverctrlsU
, clientctrlsU
) );
245 modarrayfreeU( modsU
);
246 controlarrayfreeU( serverctrlsU
);
247 controlarrayfreeU( clientctrlsU
);
251 /***********************************************************************
252 * ldap_modify_sA (WLDAP32.@)
254 * See ldap_modify_sW.
256 ULONG CDECL
ldap_modify_sA( LDAP
*ld
, char *dn
, LDAPModA
**mods
)
258 ULONG ret
= LDAP_NO_MEMORY
;
260 LDAPModW
**modsW
= NULL
;
262 TRACE( "(%p, %s, %p)\n", ld
, debugstr_a(dn
), mods
);
264 if (!ld
) return LDAP_PARAM_ERROR
;
266 if (dn
&& !(dnW
= strAtoW( dn
))) goto exit
;
267 if (mods
&& !(modsW
= modarrayAtoW( mods
))) goto exit
;
269 ret
= ldap_modify_sW( ld
, dnW
, modsW
);
273 modarrayfreeW( modsW
);
277 /***********************************************************************
278 * ldap_modify_sW (WLDAP32.@)
280 * Change an entry in a directory tree (synchronous operation).
283 * ld [I] Pointer to an LDAP context.
284 * dn [I] DN of the entry to change.
285 * attrs [I] Pointer to an array of LDAPModW structures, each
286 * specifying an attribute and its values to change.
289 * Success: LDAP_SUCCESS
290 * Failure: An LDAP error code.
292 ULONG CDECL
ldap_modify_sW( LDAP
*ld
, WCHAR
*dn
, LDAPModW
**mods
)
294 TRACE( "(%p, %s, %p)\n", ld
, debugstr_w(dn
), mods
);
295 return ldap_modify_ext_sW( ld
, dn
, mods
, NULL
, NULL
);