Faster implementation of wcstombs that handles overlapping buffers
[wine/wine-kai.git] / dlls / wldap32 / bind.c
blobd9ad8e68d40eea0faf54bb3d85c5c8bbbf6a24b8
1 /*
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
23 #include "wine/port.h"
24 #include "wine/debug.h"
26 #include <stdarg.h>
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winnls.h"
32 #ifdef HAVE_LDAP
33 #include <ldap.h>
34 #else
35 #define LDAP_SUCCESS 0x00
36 #define LDAP_NOT_SUPPORTED 0x5c
37 #endif
39 #include "winldap_private.h"
40 #include "wldap32.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
44 ULONG ldap_bindA( WLDAP32_LDAP *ld, PCHAR dn, PCHAR cred, ULONG method )
46 ULONG ret = LDAP_NOT_SUPPORTED;
47 #ifdef HAVE_LDAP
48 WCHAR *dnW, *credW;
50 TRACE( "(%p, %s, %p, 0x%08lx)\n", ld, debugstr_a(dn), cred, method );
52 dnW = strAtoW( dn );
53 if (!dnW) return LDAP_NO_MEMORY;
55 credW = strAtoW( cred );
56 if (!credW) return LDAP_NO_MEMORY;
58 ret = ldap_bindW( ld, dnW, credW, method );
60 strfreeW( dnW );
61 strfreeW( credW );
63 #endif
64 return ret;
67 ULONG ldap_bindW( WLDAP32_LDAP *ld, PWCHAR dn, PWCHAR cred, ULONG method )
69 ULONG ret = LDAP_NOT_SUPPORTED;
70 #ifdef HAVE_LDAP
71 char *dnU, *credU;
73 TRACE( "(%p, %s, %p, 0x%08lx)\n", ld, debugstr_w(dn), cred, method );
75 dnU = strWtoU( dn );
76 if (!dnU) return LDAP_NO_MEMORY;
78 credU = strWtoU( cred );
79 if (!credU) return LDAP_NO_MEMORY;
81 ret = ldap_bind( ld, dnU, credU, method );
83 strfreeU( dnU );
84 strfreeU( credU );
86 #endif
87 return ret;
90 ULONG ldap_bind_sA( WLDAP32_LDAP *ld, PCHAR dn, PCHAR cred, ULONG method )
92 ULONG ret = LDAP_NOT_SUPPORTED;
93 #ifdef HAVE_LDAP
94 WCHAR *dnW, *credW;
96 TRACE( "(%p, %s, %p, 0x%08lx)\n", ld, debugstr_a(dn), cred, method );
98 dnW = strAtoW( dn );
99 if (!dnW) return LDAP_NO_MEMORY;
101 credW = strAtoW( cred );
102 if (!credW) return LDAP_NO_MEMORY;
104 ret = ldap_bind_sW( ld, dnW, credW, method );
106 strfreeW( dnW );
107 strfreeW( credW );
109 #endif
110 return ret;
113 ULONG ldap_bind_sW( WLDAP32_LDAP *ld, PWCHAR dn, PWCHAR cred, ULONG method )
115 ULONG ret = LDAP_NOT_SUPPORTED;
116 #ifdef HAVE_LDAP
117 char *dnU, *credU;
119 TRACE( "(%p, %s, %p, 0x%08lx)\n", ld, debugstr_w(dn), cred, method );
121 dnU = strWtoU( dn );
122 if (!dnU) return LDAP_NO_MEMORY;
124 credU = strWtoU( cred );
125 if (!credU) return LDAP_NO_MEMORY;
127 ret = ldap_bind_s( ld, dnU, credU, method );
129 strfreeU( dnU );
130 strfreeU( credU );
132 #endif
133 return ret;
136 ULONG ldap_simple_bindA( WLDAP32_LDAP *ld, PCHAR dn, PCHAR passwd )
138 ULONG ret = LDAP_NOT_SUPPORTED;
139 #ifdef HAVE_LDAP
140 WCHAR *dnW, *passwdW;
142 TRACE( "(%p, %s, %p)\n", ld, debugstr_a(dn), passwd );
144 dnW = strAtoW( dn );
145 if (!dnW) return LDAP_NO_MEMORY;
147 passwdW = strAtoW( passwd );
148 if (!passwdW) return LDAP_NO_MEMORY;
150 ret = ldap_simple_bindW( ld, dnW, passwdW );
152 strfreeW( dnW );
153 strfreeW( passwdW );
155 #endif
156 return ret;
159 ULONG ldap_simple_bindW( WLDAP32_LDAP *ld, PWCHAR dn, PWCHAR passwd )
161 ULONG ret = LDAP_NOT_SUPPORTED;
162 #ifdef HAVE_LDAP
163 char *dnU, *passwdU;
165 TRACE( "(%p, %s, %p)\n", ld, debugstr_w(dn), passwd );
167 dnU = strWtoU( dn );
168 if (!dnU) return LDAP_NO_MEMORY;
170 passwdU = strWtoU( passwd );
171 if (!passwdU) return LDAP_NO_MEMORY;
173 ret = ldap_simple_bind( ld, dnU, passwdU );
175 strfreeU( dnU );
176 strfreeU( passwdU );
178 #endif
179 return ret;
182 ULONG ldap_simple_bind_sA( WLDAP32_LDAP *ld, PCHAR dn, PCHAR passwd )
184 ULONG ret = LDAP_NOT_SUPPORTED;
185 #ifdef HAVE_LDAP
186 WCHAR *dnW, *passwdW;
188 TRACE( "(%p, %s, %p)\n", ld, debugstr_a(dn), passwd );
190 dnW = strAtoW( dn );
191 if (!dnW) return LDAP_NO_MEMORY;
193 passwdW = strAtoW( passwd );
194 if (!passwdW) return LDAP_NO_MEMORY;
196 ret = ldap_simple_bind_sW( ld, dnW, passwdW );
198 strfreeW( dnW );
199 strfreeW( passwdW );
201 #endif
202 return ret;
205 ULONG ldap_simple_bind_sW( WLDAP32_LDAP *ld, PWCHAR dn, PWCHAR passwd )
207 ULONG ret = LDAP_NOT_SUPPORTED;
208 #ifdef HAVE_LDAP
209 char *dnU, *passwdU;
211 TRACE( "(%p, %s, %p)\n", ld, debugstr_w(dn), passwd );
213 dnU = strWtoU( dn );
214 if (!dnU) return LDAP_NO_MEMORY;
216 passwdU = strWtoU( passwd );
217 if (!passwdU) return LDAP_NO_MEMORY;
219 ret = ldap_simple_bind_s( ld, dnU, passwdU );
221 strfreeU( dnU );
222 strfreeU( passwdU );
224 #endif
225 return ret;
228 ULONG WLDAP32_ldap_unbind( WLDAP32_LDAP *ld )
230 ULONG ret = LDAP_NOT_SUPPORTED;
231 #ifdef HAVE_LDAP
233 TRACE( "(%p)\n", ld );
234 ret = ldap_unbind( ld );
236 #endif
237 return ret;
240 ULONG WLDAP32_ldap_unbind_s( WLDAP32_LDAP *ld )
242 ULONG ret = LDAP_NOT_SUPPORTED;
243 #ifdef HAVE_LDAP
245 TRACE( "(%p)\n", ld );
246 ret = ldap_unbind_s( ld );
248 #endif
249 return ret;