Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
02b372a7
Commit
02b372a7
authored
Aug 15, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement ldap_modify* functions.
parent
131d3f1f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
374 additions
and
12 deletions
+374
-12
Makefile.in
dlls/wldap32/Makefile.in
+1
-0
modify.c
dlls/wldap32/modify.c
+353
-0
winldap_private.h
dlls/wldap32/winldap_private.h
+8
-0
wldap32.spec
dlls/wldap32/wldap32.spec
+12
-12
No files found.
dlls/wldap32/Makefile.in
View file @
02b372a7
...
...
@@ -18,6 +18,7 @@ C_SRCS = \
init.c
\
main.c
\
misc.c
\
modify.c
\
option.c
\
search.c
...
...
dlls/wldap32/modify.c
0 → 100644
View file @
02b372a7
/*
* WLDAP32 - LDAP support for Wine
*
* Copyright 2005 Hans Leidekker
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include "wine/debug.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winnls.h"
#ifdef HAVE_LDAP_H
#include <ldap.h>
static
LDAPMod
*
nullmods
[]
=
{
NULL
};
#else
#define LDAP_NOT_SUPPORTED 0x5c
#endif
#include "winldap_private.h"
#include "wldap32.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
ULONG
ldap_modifyA
(
WLDAP32_LDAP
*
ld
,
PCHAR
dn
,
LDAPModA
*
mods
[]
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
WCHAR
*
dnW
=
NULL
;
LDAPModW
**
modsW
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %p)
\n
"
,
ld
,
debugstr_a
(
dn
),
mods
);
if
(
!
ld
)
return
~
0UL
;
if
(
dn
)
{
dnW
=
strAtoW
(
dn
);
if
(
!
dnW
)
goto
exit
;
}
if
(
mods
)
{
modsW
=
modarrayAtoW
(
mods
);
if
(
!
modsW
)
goto
exit
;
}
ret
=
ldap_modifyW
(
ld
,
dnW
,
modsW
);
exit:
strfreeW
(
dnW
);
modarrayfreeW
(
modsW
);
#endif
return
ret
;
}
ULONG
ldap_modifyW
(
WLDAP32_LDAP
*
ld
,
PWCHAR
dn
,
LDAPModW
*
mods
[]
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
char
*
dnU
=
NULL
;
LDAPMod
**
modsU
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %p)
\n
"
,
ld
,
debugstr_w
(
dn
),
mods
);
if
(
!
ld
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
dn
)
{
dnU
=
strWtoU
(
dn
);
if
(
!
dnU
)
goto
exit
;
}
if
(
mods
)
{
modsU
=
modarrayWtoU
(
mods
);
if
(
!
modsU
)
goto
exit
;
}
ret
=
ldap_modify
(
ld
,
dn
?
dnU
:
""
,
mods
?
modsU
:
nullmods
);
exit:
strfreeU
(
dnU
);
modarrayfreeU
(
modsU
);
#endif
return
ret
;
}
ULONG
ldap_modify_extA
(
WLDAP32_LDAP
*
ld
,
PCHAR
dn
,
LDAPModA
*
mods
[],
PLDAPControlA
*
serverctrls
,
PLDAPControlA
*
clientctrls
,
ULONG
*
message
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
WCHAR
*
dnW
=
NULL
;
LDAPModW
**
modsW
=
NULL
;
LDAPControlW
**
serverctrlsW
=
NULL
,
**
clientctrlsW
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %p, %p, %p, %p)
\n
"
,
ld
,
debugstr_a
(
dn
),
mods
,
serverctrls
,
clientctrls
,
message
);
if
(
!
ld
)
return
~
0UL
;
if
(
dn
)
{
dnW
=
strAtoW
(
dn
);
if
(
!
dnW
)
goto
exit
;
}
if
(
mods
)
{
modsW
=
modarrayAtoW
(
mods
);
if
(
!
modsW
)
goto
exit
;
}
if
(
serverctrls
)
{
serverctrlsW
=
controlarrayAtoW
(
serverctrls
);
if
(
!
serverctrlsW
)
goto
exit
;
}
if
(
clientctrls
)
{
clientctrlsW
=
controlarrayAtoW
(
clientctrls
);
if
(
!
clientctrlsW
)
goto
exit
;
}
ret
=
ldap_modify_extW
(
ld
,
dnW
,
modsW
,
serverctrlsW
,
clientctrlsW
,
message
);
exit:
strfreeW
(
dnW
);
modarrayfreeW
(
modsW
);
controlarrayfreeW
(
serverctrlsW
);
controlarrayfreeW
(
clientctrlsW
);
#endif
return
ret
;
}
ULONG
ldap_modify_extW
(
WLDAP32_LDAP
*
ld
,
PWCHAR
dn
,
LDAPModW
*
mods
[],
PLDAPControlW
*
serverctrls
,
PLDAPControlW
*
clientctrls
,
ULONG
*
message
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
char
*
dnU
=
NULL
;
LDAPMod
**
modsU
=
NULL
;
LDAPControl
**
serverctrlsU
=
NULL
,
**
clientctrlsU
=
NULL
;
int
dummy
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %p, %p, %p, %p)
\n
"
,
ld
,
debugstr_w
(
dn
),
mods
,
serverctrls
,
clientctrls
,
message
);
if
(
!
ld
)
return
~
0UL
;
if
(
dn
)
{
dnU
=
strWtoU
(
dn
);
if
(
!
dnU
)
goto
exit
;
}
if
(
mods
)
{
modsU
=
modarrayWtoU
(
mods
);
if
(
!
modsU
)
goto
exit
;
}
if
(
serverctrls
)
{
serverctrlsU
=
controlarrayWtoU
(
serverctrls
);
if
(
!
serverctrlsU
)
goto
exit
;
}
if
(
clientctrls
)
{
clientctrlsU
=
controlarrayWtoU
(
clientctrls
);
if
(
!
clientctrlsU
)
goto
exit
;
}
ret
=
ldap_modify_ext
(
ld
,
dn
?
dnU
:
""
,
mods
?
modsU
:
nullmods
,
serverctrlsU
,
clientctrlsU
,
message
?
(
int
*
)
message
:
&
dummy
);
exit:
strfreeU
(
dnU
);
modarrayfreeU
(
modsU
);
controlarrayfreeU
(
serverctrlsU
);
controlarrayfreeU
(
clientctrlsU
);
#endif
return
ret
;
}
ULONG
ldap_modify_ext_sA
(
WLDAP32_LDAP
*
ld
,
PCHAR
dn
,
LDAPModA
*
mods
[],
PLDAPControlA
*
serverctrls
,
PLDAPControlA
*
clientctrls
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
WCHAR
*
dnW
=
NULL
;
LDAPModW
**
modsW
=
NULL
;
LDAPControlW
**
serverctrlsW
=
NULL
,
**
clientctrlsW
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %p, %p, %p)
\n
"
,
ld
,
debugstr_a
(
dn
),
mods
,
serverctrls
,
clientctrls
);
if
(
!
ld
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
dn
)
{
dnW
=
strAtoW
(
dn
);
if
(
!
dnW
)
goto
exit
;
}
if
(
mods
)
{
modsW
=
modarrayAtoW
(
mods
);
if
(
!
modsW
)
goto
exit
;
}
if
(
serverctrls
)
{
serverctrlsW
=
controlarrayAtoW
(
serverctrls
);
if
(
!
serverctrlsW
)
goto
exit
;
}
if
(
clientctrls
)
{
clientctrlsW
=
controlarrayAtoW
(
clientctrls
);
if
(
!
clientctrlsW
)
goto
exit
;
}
ret
=
ldap_modify_ext_sW
(
ld
,
dnW
,
modsW
,
serverctrlsW
,
clientctrlsW
);
exit:
strfreeW
(
dnW
);
modarrayfreeW
(
modsW
);
controlarrayfreeW
(
serverctrlsW
);
controlarrayfreeW
(
clientctrlsW
);
#endif
return
ret
;
}
ULONG
ldap_modify_ext_sW
(
WLDAP32_LDAP
*
ld
,
PWCHAR
dn
,
LDAPModW
*
mods
[],
PLDAPControlW
*
serverctrls
,
PLDAPControlW
*
clientctrls
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
char
*
dnU
=
NULL
;
LDAPMod
**
modsU
=
NULL
;
LDAPControl
**
serverctrlsU
=
NULL
,
**
clientctrlsU
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %p, %p, %p)
\n
"
,
ld
,
debugstr_w
(
dn
),
mods
,
serverctrls
,
clientctrls
);
if
(
!
ld
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
dn
)
{
dnU
=
strWtoU
(
dn
);
if
(
!
dnU
)
goto
exit
;
}
if
(
mods
)
{
modsU
=
modarrayWtoU
(
mods
);
if
(
!
modsU
)
goto
exit
;
}
if
(
serverctrls
)
{
serverctrlsU
=
controlarrayWtoU
(
serverctrls
);
if
(
!
serverctrlsU
)
goto
exit
;
}
if
(
clientctrls
)
{
clientctrlsU
=
controlarrayWtoU
(
clientctrls
);
if
(
!
clientctrlsU
)
goto
exit
;
}
ret
=
ldap_modify_ext_s
(
ld
,
dn
?
dnU
:
""
,
mods
?
modsU
:
nullmods
,
serverctrlsU
,
clientctrlsU
);
exit:
strfreeU
(
dnU
);
modarrayfreeU
(
modsU
);
controlarrayfreeU
(
serverctrlsU
);
controlarrayfreeU
(
clientctrlsU
);
#endif
return
ret
;
}
ULONG
ldap_modify_sA
(
WLDAP32_LDAP
*
ld
,
PCHAR
dn
,
LDAPModA
*
mods
[]
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
WCHAR
*
dnW
=
NULL
;
LDAPModW
**
modsW
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %p)
\n
"
,
ld
,
debugstr_a
(
dn
),
mods
);
if
(
!
ld
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
dn
)
{
dnW
=
strAtoW
(
dn
);
if
(
!
dnW
)
goto
exit
;
}
if
(
mods
)
{
modsW
=
modarrayAtoW
(
mods
);
if
(
!
modsW
)
goto
exit
;
}
ret
=
ldap_modify_sW
(
ld
,
dnW
,
modsW
);
exit:
strfreeW
(
dnW
);
modarrayfreeW
(
modsW
);
#endif
return
ret
;
}
ULONG
ldap_modify_sW
(
WLDAP32_LDAP
*
ld
,
PWCHAR
dn
,
LDAPModW
*
mods
[]
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
char
*
dnU
=
NULL
;
LDAPMod
**
modsU
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %p)
\n
"
,
ld
,
debugstr_w
(
dn
),
mods
);
if
(
!
ld
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
dn
)
{
dnU
=
strWtoU
(
dn
);
if
(
!
dnU
)
goto
exit
;
}
if
(
mods
)
{
modsU
=
modarrayWtoU
(
mods
);
if
(
!
modsU
)
goto
exit
;
}
ret
=
ldap_modify_s
(
ld
,
dn
?
dnU
:
""
,
mods
?
modsU
:
nullmods
);
exit:
strfreeU
(
dnU
);
modarrayfreeU
(
modsU
);
#endif
return
ret
;
}
dlls/wldap32/winldap_private.h
View file @
02b372a7
...
...
@@ -274,6 +274,14 @@ WLDAP32_LDAP *ldap_initA(const PCHAR,ULONG);
WLDAP32_LDAP
*
ldap_initW
(
const
PWCHAR
,
ULONG
);
void
ldap_memfreeA
(
PCHAR
);
void
ldap_memfreeW
(
PWCHAR
);
ULONG
ldap_modifyA
(
WLDAP32_LDAP
*
,
PCHAR
,
LDAPModA
*
[]);
ULONG
ldap_modifyW
(
WLDAP32_LDAP
*
,
PWCHAR
,
LDAPModW
*
[]);
ULONG
ldap_modify_extA
(
WLDAP32_LDAP
*
,
PCHAR
,
LDAPModA
*
[],
PLDAPControlA
*
,
PLDAPControlA
*
,
ULONG
*
);
ULONG
ldap_modify_extW
(
WLDAP32_LDAP
*
,
PWCHAR
,
LDAPModW
*
[],
PLDAPControlW
*
,
PLDAPControlW
*
,
ULONG
*
);
ULONG
ldap_modify_ext_sA
(
WLDAP32_LDAP
*
,
PCHAR
,
LDAPModA
*
[],
PLDAPControlA
*
,
PLDAPControlA
*
);
ULONG
ldap_modify_ext_sW
(
WLDAP32_LDAP
*
,
PWCHAR
,
LDAPModW
*
[],
PLDAPControlW
*
,
PLDAPControlW
*
);
ULONG
ldap_modify_sA
(
WLDAP32_LDAP
*
,
PCHAR
,
LDAPModA
*
[]);
ULONG
ldap_modify_sW
(
WLDAP32_LDAP
*
,
PWCHAR
,
LDAPModW
*
[]);
WLDAP32_LDAP
*
ldap_openA
(
PCHAR
,
ULONG
);
WLDAP32_LDAP
*
ldap_openW
(
PWCHAR
,
ULONG
);
void
WLDAP32_ldap_perror
(
WLDAP32_LDAP
*
,
const
PCHAR
);
...
...
dlls/wldap32/wldap32.spec
View file @
02b372a7
...
...
@@ -135,18 +135,18 @@
@ cdecl ldap_memfree(ptr) ldap_memfreeA
@ cdecl ldap_memfreeA(ptr)
@ cdecl ldap_memfreeW(ptr)
@
stub ldap_modify
@
stub ldap_modifyA
@
stub ldap_modifyW
@
stub ldap_modify_ext
@
stub ldap_modify_extA
@
stub ldap_modify_extW
@
stub ldap_modify_ext_s
@
stub ldap_modify_ext_sA
@
stub ldap_modify_ext_sW
@
stub ldap_modify_s
@
stub ldap_modify_sA
@
stub ldap_modify_sW
@
cdecl ldap_modify(ptr str ptr) ldap_modifyA
@
cdecl ldap_modifyA(ptr str ptr)
@
cdecl ldap_modifyW(ptr wstr ptr)
@
cdecl ldap_modify_ext(ptr str ptr ptr ptr ptr) ldap_modify_extA
@
cdecl ldap_modify_extA(ptr str ptr ptr ptr ptr)
@
cdecl ldap_modify_extW(ptr wstr ptr ptr ptr ptr)
@
cdecl ldap_modify_ext_s(ptr str ptr ptr ptr) ldap_modify_ext_sA
@
cdecl ldap_modify_ext_sA(ptr str ptr ptr ptr)
@
cdecl ldap_modify_ext_sW(ptr wstr ptr ptr ptr)
@
cdecl ldap_modify_s(ptr str ptr) ldap_modify_sA
@
cdecl ldap_modify_sA(ptr str ptr)
@
cdecl ldap_modify_sW(ptr wstr ptr)
@ stub ldap_modrdn
@ stub ldap_modrdn2
@ stub ldap_modrdn2A
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment