2005-08-22 16:07:31 +02:00
|
|
|
/*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-08-22 16:07:31 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "winldap_private.h"
|
|
|
|
#include "wldap32.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
|
|
|
|
|
2006-07-10 22:18:30 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* ldap_rename_extA (WLDAP32.@)
|
|
|
|
*
|
|
|
|
* See ldap_rename_extW.
|
|
|
|
*/
|
2006-06-12 21:34:46 +02:00
|
|
|
ULONG CDECL ldap_rename_extA( WLDAP32_LDAP *ld, PCHAR dn, PCHAR newrdn,
|
2005-08-22 16:07:31 +02:00
|
|
|
PCHAR newparent, INT delete, PLDAPControlA *serverctrls,
|
|
|
|
PLDAPControlA *clientctrls, ULONG *message )
|
|
|
|
{
|
2007-11-08 13:11:34 +01:00
|
|
|
ULONG ret = WLDAP32_LDAP_NOT_SUPPORTED;
|
2005-08-22 16:07:31 +02:00
|
|
|
#ifdef HAVE_LDAP
|
|
|
|
WCHAR *dnW = NULL, *newrdnW = NULL, *newparentW = NULL;
|
|
|
|
LDAPControlW **serverctrlsW = NULL, **clientctrlsW = NULL;
|
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
TRACE( "(%p, %s, %s, %s, 0x%02x, %p, %p, %p)\n", ld, debugstr_a(dn),
|
|
|
|
debugstr_a(newrdn), debugstr_a(newparent), delete,
|
|
|
|
serverctrls, clientctrls, message );
|
|
|
|
|
|
|
|
if (!ld || !message) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (dn) {
|
|
|
|
dnW = strAtoW( dn );
|
|
|
|
if (!dnW) goto exit;
|
|
|
|
}
|
|
|
|
if (newrdn) {
|
|
|
|
newrdnW = strAtoW( newrdn );
|
|
|
|
if (!newrdnW) goto exit;
|
|
|
|
}
|
|
|
|
if (newparent) {
|
|
|
|
newparentW = strAtoW( newparent );
|
|
|
|
if (!newparentW) goto exit;
|
|
|
|
}
|
|
|
|
if (serverctrls) {
|
|
|
|
serverctrlsW = controlarrayAtoW( serverctrls );
|
|
|
|
if (!serverctrlsW) goto exit;
|
|
|
|
}
|
|
|
|
if (clientctrls) {
|
|
|
|
clientctrlsW = controlarrayAtoW( clientctrls );
|
|
|
|
if (!clientctrlsW) goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ldap_rename_extW( ld, dnW, newrdnW, newparentW, delete,
|
|
|
|
serverctrlsW, clientctrlsW, message );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
strfreeW( dnW );
|
|
|
|
strfreeW( newrdnW );
|
|
|
|
strfreeW( newparentW );
|
|
|
|
controlarrayfreeW( serverctrlsW );
|
|
|
|
controlarrayfreeW( clientctrlsW );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-07-10 22:18:30 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* ldap_rename_extW (WLDAP32.@)
|
|
|
|
*
|
|
|
|
* Change the DN of a directory entry (asynchronous operation).
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* ld [I] Pointer to an LDAP context.
|
|
|
|
* dn [I] DN of the entry to change.
|
|
|
|
* newrdn [I] New RDN for the entry.
|
|
|
|
* newparent [I] New parent for the entry.
|
|
|
|
* delete [I] Delete old RDN?
|
|
|
|
* serverctrls [I] Array of LDAP server controls.
|
|
|
|
* clientctrls [I] Array of LDAP client controls.
|
|
|
|
* message [O] Message ID of the operation.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: LDAP_SUCCESS
|
|
|
|
* Failure: An LDAP error code.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Call ldap_result with the message ID to get the result of
|
|
|
|
* the operation. Cancel the operation by calling ldap_abandon
|
|
|
|
* with the message ID.
|
|
|
|
*/
|
2006-06-12 21:34:46 +02:00
|
|
|
ULONG CDECL ldap_rename_extW( WLDAP32_LDAP *ld, PWCHAR dn, PWCHAR newrdn,
|
2005-08-22 16:07:31 +02:00
|
|
|
PWCHAR newparent, INT delete, PLDAPControlW *serverctrls,
|
|
|
|
PLDAPControlW *clientctrls, ULONG *message )
|
|
|
|
{
|
2007-11-08 13:11:34 +01:00
|
|
|
ULONG ret = WLDAP32_LDAP_NOT_SUPPORTED;
|
2005-08-22 16:07:31 +02:00
|
|
|
#ifdef HAVE_LDAP
|
|
|
|
char *dnU = NULL, *newrdnU = NULL, *newparentU = NULL;
|
|
|
|
LDAPControl **serverctrlsU = NULL, **clientctrlsU = NULL;
|
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
TRACE( "(%p, %s, %s, %s, 0x%02x, %p, %p, %p)\n", ld, debugstr_w(dn),
|
|
|
|
debugstr_w(newrdn), debugstr_w(newparent), delete,
|
|
|
|
serverctrls, clientctrls, message );
|
|
|
|
|
|
|
|
if (!ld || !message) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (dn) {
|
|
|
|
dnU = strWtoU( dn );
|
|
|
|
if (!dnU) goto exit;
|
|
|
|
}
|
|
|
|
if (newrdn) {
|
|
|
|
newrdnU = strWtoU( newrdn );
|
|
|
|
if (!newrdnU) goto exit;
|
|
|
|
}
|
|
|
|
if (newparent) {
|
|
|
|
newparentU = strWtoU( newparent );
|
|
|
|
if (!newparentU) goto exit;
|
|
|
|
}
|
|
|
|
if (serverctrls) {
|
|
|
|
serverctrlsU = controlarrayWtoU( serverctrls );
|
|
|
|
if (!serverctrlsU) goto exit;
|
|
|
|
}
|
|
|
|
if (clientctrls) {
|
|
|
|
clientctrlsU = controlarrayWtoU( clientctrls );
|
|
|
|
if (!clientctrlsU) goto exit;
|
|
|
|
}
|
|
|
|
|
2008-10-20 12:22:13 +02:00
|
|
|
ret = map_error( ldap_rename( ld, dn ? dnU : "", newrdn ? newrdnU : "", newparentU,
|
|
|
|
delete, serverctrlsU, clientctrlsU, (int *)message ));
|
2005-08-22 16:07:31 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
strfreeU( dnU );
|
|
|
|
strfreeU( newrdnU );
|
|
|
|
strfreeU( newparentU );
|
|
|
|
controlarrayfreeU( serverctrlsU );
|
|
|
|
controlarrayfreeU( clientctrlsU );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-07-10 22:18:30 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* ldap_rename_ext_sA (WLDAP32.@)
|
|
|
|
*
|
|
|
|
* See ldap_rename_ext_sW.
|
|
|
|
*/
|
2006-06-12 21:34:46 +02:00
|
|
|
ULONG CDECL ldap_rename_ext_sA( WLDAP32_LDAP *ld, PCHAR dn, PCHAR newrdn,
|
2005-08-22 16:07:31 +02:00
|
|
|
PCHAR newparent, INT delete, PLDAPControlA *serverctrls,
|
|
|
|
PLDAPControlA *clientctrls )
|
|
|
|
{
|
2007-11-08 13:11:34 +01:00
|
|
|
ULONG ret = WLDAP32_LDAP_NOT_SUPPORTED;
|
2005-08-22 16:07:31 +02:00
|
|
|
#ifdef HAVE_LDAP
|
|
|
|
WCHAR *dnW = NULL, *newrdnW = NULL, *newparentW = NULL;
|
|
|
|
LDAPControlW **serverctrlsW = NULL, **clientctrlsW = NULL;
|
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
TRACE( "(%p, %s, %s, %s, 0x%02x, %p, %p)\n", ld, debugstr_a(dn),
|
|
|
|
debugstr_a(newrdn), debugstr_a(newparent), delete,
|
|
|
|
serverctrls, clientctrls );
|
|
|
|
|
|
|
|
if (!ld) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (dn) {
|
|
|
|
dnW = strAtoW( dn );
|
|
|
|
if (!dnW) goto exit;
|
|
|
|
}
|
|
|
|
if (newrdn) {
|
|
|
|
newrdnW = strAtoW( newrdn );
|
|
|
|
if (!newrdnW) goto exit;
|
|
|
|
}
|
|
|
|
if (newparent) {
|
|
|
|
newparentW = strAtoW( newparent );
|
|
|
|
if (!newparentW) goto exit;
|
|
|
|
}
|
|
|
|
if (serverctrls) {
|
|
|
|
serverctrlsW = controlarrayAtoW( serverctrls );
|
|
|
|
if (!serverctrlsW) goto exit;
|
|
|
|
}
|
|
|
|
if (clientctrls) {
|
|
|
|
clientctrlsW = controlarrayAtoW( clientctrls );
|
|
|
|
if (!clientctrlsW) goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ldap_rename_ext_sW( ld, dnW, newrdnW, newparentW, delete,
|
|
|
|
serverctrlsW, clientctrlsW );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
strfreeW( dnW );
|
|
|
|
strfreeW( newrdnW );
|
|
|
|
strfreeW( newparentW );
|
|
|
|
controlarrayfreeW( serverctrlsW );
|
|
|
|
controlarrayfreeW( clientctrlsW );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
2006-07-10 22:18:30 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* ldap_rename_ext_sW (WLDAP32.@)
|
|
|
|
*
|
|
|
|
* Change the DN of a directory entry (synchronous operation).
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* ld [I] Pointer to an LDAP context.
|
|
|
|
* dn [I] DN of the entry to change.
|
|
|
|
* newrdn [I] New RDN for the entry.
|
|
|
|
* newparent [I] New parent for the entry.
|
|
|
|
* delete [I] Delete old RDN?
|
|
|
|
* serverctrls [I] Array of LDAP server controls.
|
|
|
|
* clientctrls [I] Array of LDAP client controls.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: LDAP_SUCCESS
|
|
|
|
* Failure: An LDAP error code.
|
|
|
|
*/
|
2006-06-12 21:34:46 +02:00
|
|
|
ULONG CDECL ldap_rename_ext_sW( WLDAP32_LDAP *ld, PWCHAR dn, PWCHAR newrdn,
|
2005-08-22 16:07:31 +02:00
|
|
|
PWCHAR newparent, INT delete, PLDAPControlW *serverctrls,
|
|
|
|
PLDAPControlW *clientctrls )
|
|
|
|
{
|
2007-11-08 13:11:34 +01:00
|
|
|
ULONG ret = WLDAP32_LDAP_NOT_SUPPORTED;
|
2005-08-22 16:07:31 +02:00
|
|
|
#ifdef HAVE_LDAP
|
|
|
|
char *dnU = NULL, *newrdnU = NULL, *newparentU = NULL;
|
|
|
|
LDAPControl **serverctrlsU = NULL, **clientctrlsU = NULL;
|
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
TRACE( "(%p, %s, %s, %s, 0x%02x, %p, %p)\n", ld, debugstr_w(dn),
|
|
|
|
debugstr_w(newrdn), debugstr_w(newparent), delete,
|
|
|
|
serverctrls, clientctrls );
|
|
|
|
|
|
|
|
if (!ld) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (dn) {
|
|
|
|
dnU = strWtoU( dn );
|
|
|
|
if (!dnU) goto exit;
|
|
|
|
}
|
|
|
|
if (newrdn) {
|
|
|
|
newrdnU = strWtoU( newrdn );
|
|
|
|
if (!newrdnU) goto exit;
|
|
|
|
}
|
|
|
|
if (newparent) {
|
|
|
|
newparentU = strWtoU( newparent );
|
|
|
|
if (!newparentU) goto exit;
|
|
|
|
}
|
|
|
|
if (serverctrls) {
|
|
|
|
serverctrlsU = controlarrayWtoU( serverctrls );
|
|
|
|
if (!serverctrlsU) goto exit;
|
|
|
|
}
|
|
|
|
if (clientctrls) {
|
|
|
|
clientctrlsU = controlarrayWtoU( clientctrls );
|
|
|
|
if (!clientctrlsU) goto exit;
|
|
|
|
}
|
|
|
|
|
2008-10-20 12:22:13 +02:00
|
|
|
ret = map_error( ldap_rename_s( ld, dn ? dnU : "", newrdn ? newrdnU : "", newparentU,
|
|
|
|
delete, serverctrlsU, clientctrlsU ));
|
2005-08-22 16:07:31 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
strfreeU( dnU );
|
|
|
|
strfreeU( newrdnU );
|
|
|
|
strfreeU( newparentU );
|
|
|
|
controlarrayfreeU( serverctrlsU );
|
|
|
|
controlarrayfreeU( clientctrlsU );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|