mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
cde6339155
[NETAPI32] NetpNtStatusToApiStatus: Update accordingly This fixes net command output in PR #4096.
325 lines
7.6 KiB
C
325 lines
7.6 KiB
C
/*
|
|
* PROJECT: NetAPI DLL
|
|
* LICENSE: GPL-2.0 (https://spdx.org/licenses/GPL-2.0)
|
|
* PURPOSE: Miscellaneous functions
|
|
* COPYRIGHT: Copyright 2017 Eric Kohl (eric.kohl@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include "netapi32.h"
|
|
|
|
#include <rpc.h>
|
|
#include "srvsvc_c.h"
|
|
#include "wkssvc_c.h"
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
NET_API_STATUS
|
|
WINAPI
|
|
NetRegisterDomainNameChangeNotification(
|
|
_Out_ PHANDLE NotificationEventHandle)
|
|
{
|
|
HANDLE EventHandle;
|
|
NTSTATUS Status;
|
|
|
|
TRACE("NetRegisterDomainNameChangeNotification(%p)\n",
|
|
NotificationEventHandle);
|
|
|
|
if (NotificationEventHandle == NULL)
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
EventHandle = CreateEventW(NULL, FALSE, FALSE, NULL);
|
|
if (EventHandle == NULL)
|
|
return GetLastError();
|
|
|
|
Status = LsaRegisterPolicyChangeNotification(PolicyNotifyDnsDomainInformation,
|
|
NotificationEventHandle);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
CloseHandle(EventHandle);
|
|
return NetpNtStatusToApiStatus(Status);
|
|
}
|
|
|
|
*NotificationEventHandle = EventHandle;
|
|
|
|
return NERR_Success;
|
|
}
|
|
|
|
|
|
NET_API_STATUS
|
|
WINAPI
|
|
NetStatisticsGet(
|
|
_In_ LPWSTR server,
|
|
_In_ LPWSTR service,
|
|
_In_ DWORD level,
|
|
_In_ DWORD options,
|
|
_Out_ LPBYTE *bufptr)
|
|
{
|
|
NET_API_STATUS status = ERROR_NOT_SUPPORTED;
|
|
|
|
TRACE("NetStatisticsGet(%s %s %lu %lu %p)\n",
|
|
debugstr_w(server), debugstr_w(service), level, options, bufptr);
|
|
|
|
*bufptr = NULL;
|
|
|
|
if (_wcsicmp(service, L"LanmanWorkstation") == 0)
|
|
{
|
|
if (level != 0)
|
|
return ERROR_INVALID_LEVEL;
|
|
|
|
if (options != 0)
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
RpcTryExcept
|
|
{
|
|
status = NetrWorkstationStatisticsGet(server,
|
|
L"LanmanWorkstation",
|
|
level,
|
|
options,
|
|
(LPSTAT_WORKSTATION_0*)bufptr);
|
|
}
|
|
RpcExcept(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
status = I_RpcMapWin32Status(RpcExceptionCode());
|
|
}
|
|
RpcEndExcept;
|
|
}
|
|
else if (_wcsicmp(service, L"LanmanServer") == 0)
|
|
{
|
|
if (level != 0)
|
|
return ERROR_INVALID_LEVEL;
|
|
|
|
if (options != 0)
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
RpcTryExcept
|
|
{
|
|
status = NetrServerStatisticsGet(server,
|
|
L"LanmanServer",
|
|
level,
|
|
options,
|
|
(LPSTAT_SERVER_0 *)bufptr);
|
|
}
|
|
RpcExcept(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
status = I_RpcMapWin32Status(RpcExceptionCode());
|
|
}
|
|
RpcEndExcept;
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
|
|
NET_API_STATUS
|
|
WINAPI
|
|
NetUnregisterDomainNameChangeNotification(
|
|
_In_ HANDLE NotificationEventHandle)
|
|
{
|
|
NTSTATUS Status;
|
|
|
|
TRACE("NetUnregisterDomainNameChangeNotification(%p)\n",
|
|
NotificationEventHandle);
|
|
|
|
if (NotificationEventHandle == NULL)
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
Status = LsaUnregisterPolicyChangeNotification(PolicyNotifyDnsDomainInformation,
|
|
NotificationEventHandle);
|
|
|
|
return NetpNtStatusToApiStatus(Status);
|
|
}
|
|
|
|
|
|
PSTR
|
|
WINAPI
|
|
NetpAllocAnsiStrFromWStr(
|
|
_In_ PWSTR InString)
|
|
{
|
|
UNICODE_STRING UnicodeString;
|
|
ANSI_STRING AnsiString;
|
|
ULONG Size;
|
|
NET_API_STATUS NetStatus;
|
|
NTSTATUS Status;
|
|
|
|
RtlInitUnicodeString(&UnicodeString, InString);
|
|
|
|
Size = RtlUnicodeStringToAnsiSize(&UnicodeString);
|
|
NetStatus = NetApiBufferAllocate(Size,
|
|
(PVOID*)&AnsiString.Buffer);
|
|
if (NetStatus != NERR_Success)
|
|
return NULL;
|
|
|
|
Status = RtlUnicodeStringToAnsiString(&AnsiString,
|
|
&UnicodeString,
|
|
FALSE);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
NetApiBufferFree(AnsiString.Buffer);
|
|
return NULL;
|
|
}
|
|
|
|
return AnsiString.Buffer;
|
|
}
|
|
|
|
|
|
PSTR
|
|
WINAPI
|
|
NetpAllocStrFromWStr(
|
|
_In_ PWSTR InString)
|
|
{
|
|
UNICODE_STRING UnicodeString;
|
|
OEM_STRING OemString;
|
|
ULONG Size;
|
|
NET_API_STATUS NetStatus;
|
|
NTSTATUS Status;
|
|
|
|
RtlInitUnicodeString(&UnicodeString, InString);
|
|
|
|
Size = RtlUnicodeStringToOemSize(&UnicodeString);
|
|
NetStatus = NetApiBufferAllocate(Size,
|
|
(PVOID*)&OemString.Buffer);
|
|
if (NetStatus != NERR_Success)
|
|
return NULL;
|
|
|
|
Status = RtlUnicodeStringToOemString(&OemString,
|
|
&UnicodeString,
|
|
FALSE);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
NetApiBufferFree(OemString.Buffer);
|
|
return NULL;
|
|
}
|
|
|
|
return OemString.Buffer;
|
|
}
|
|
|
|
|
|
PWSTR
|
|
WINAPI
|
|
NetpAllocWStrFromAnsiStr(
|
|
_In_ PSTR InString)
|
|
{
|
|
ANSI_STRING AnsiString;
|
|
UNICODE_STRING UnicodeString;
|
|
ULONG Size;
|
|
NET_API_STATUS NetStatus;
|
|
NTSTATUS Status;
|
|
|
|
RtlInitAnsiString(&AnsiString, InString);
|
|
|
|
Size = RtlAnsiStringToUnicodeSize(&AnsiString);
|
|
NetStatus = NetApiBufferAllocate(Size,
|
|
(PVOID*)&UnicodeString.Buffer);
|
|
if (NetStatus != NERR_Success)
|
|
return NULL;
|
|
|
|
Status = RtlAnsiStringToUnicodeString(&UnicodeString,
|
|
&AnsiString,
|
|
FALSE);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
NetApiBufferFree(UnicodeString.Buffer);
|
|
return NULL;
|
|
}
|
|
|
|
return UnicodeString.Buffer;
|
|
}
|
|
|
|
|
|
PWSTR
|
|
WINAPI
|
|
NetpAllocWStrFromStr(
|
|
_In_ PSTR InString)
|
|
{
|
|
OEM_STRING OemString;
|
|
UNICODE_STRING UnicodeString;
|
|
ULONG Size;
|
|
NET_API_STATUS NetStatus;
|
|
NTSTATUS Status;
|
|
|
|
RtlInitAnsiString((PANSI_STRING)&OemString, InString);
|
|
|
|
Size = RtlOemStringToUnicodeSize(&OemString);
|
|
NetStatus = NetApiBufferAllocate(Size,
|
|
(PVOID*)&UnicodeString.Buffer);
|
|
if (NetStatus != NERR_Success)
|
|
return NULL;
|
|
|
|
Status = RtlOemStringToUnicodeString(&UnicodeString,
|
|
&OemString,
|
|
FALSE);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
NetApiBufferFree(UnicodeString.Buffer);
|
|
return NULL;
|
|
}
|
|
|
|
return UnicodeString.Buffer;
|
|
}
|
|
|
|
|
|
PWSTR
|
|
WINAPI
|
|
NetpAllocWStrFromWStr(
|
|
_In_ PWSTR InString)
|
|
{
|
|
PWSTR OutString;
|
|
ULONG Size;
|
|
NET_API_STATUS Status;
|
|
|
|
Size = (wcslen(InString) + 1) * sizeof(WCHAR);
|
|
Status = NetApiBufferAllocate(Size,
|
|
(PVOID*)&OutString);
|
|
if (Status != NERR_Success)
|
|
return NULL;
|
|
|
|
wcscpy(OutString, InString);
|
|
|
|
return OutString;
|
|
}
|
|
|
|
|
|
NET_API_STATUS
|
|
WINAPI
|
|
NetpNtStatusToApiStatus(
|
|
_In_ NTSTATUS Status)
|
|
{
|
|
NET_API_STATUS ApiStatus;
|
|
|
|
switch (Status)
|
|
{
|
|
case STATUS_SUCCESS:
|
|
ApiStatus = NERR_Success;
|
|
break;
|
|
|
|
case STATUS_INVALID_ACCOUNT_NAME:
|
|
ApiStatus = NERR_BadUsername;
|
|
break;
|
|
|
|
case STATUS_USER_EXISTS:
|
|
ApiStatus = NERR_UserExists;
|
|
break;
|
|
|
|
case STATUS_GROUP_EXISTS:
|
|
ApiStatus = NERR_GroupExists;
|
|
break;
|
|
|
|
case STATUS_PASSWORD_RESTRICTION:
|
|
ApiStatus = NERR_PasswordTooShort;
|
|
break;
|
|
|
|
default:
|
|
ApiStatus = RtlNtStatusToDosError(Status);
|
|
break;
|
|
}
|
|
|
|
return ApiStatus;
|
|
}
|
|
|
|
/* EOF */
|