2008-04-21 14:46:58 +02:00
|
|
|
/* kernel32.cc: Win32 replacement functions.
|
|
|
|
|
Drop NT4 support.
* autoload.cc (DnsQuery_A): Fatal if not available.
(DnsRecordListFree): Ditto.
(DsGetDcNameW): Ditto.
(NetGetAnyDCName): Remove.
(NetGetDCName): Remove.
(EnumProcessModules): Fatal if not available.
(GetModuleFileNameExW): Ditto.
(GetModuleInformation): Ditto.
(GetProcessMemoryInfo): Ditto.
(QueryWorkingSet): Ditto.
(LsaRegisterLogonProcess): Ditto.
* fenv.cc (_feinitialise): Drop supports_sse condition.
* fhandler_disk_file.cc (path_conv::isgood_inode): Fix comment.
(fhandler_base::fstat_by_name): Drop has_fileid_dirinfo condition.
(fhandler_disk_file::opendir): Ditto.
* fhandler_netdrive.cc (fhandler_netdrive::readdir): Fix comment.
* fhandler_proc.cc (format_proc_partitions): Drop NT4-only code.
* fhandler_process.cc (get_process_state): Ditto.
* kernel32.cc (GetWindowsDirectoryW): Remove.
(GetWindowsDirectoryA): Remove.
* miscfuncs.cc (nice_to_winprio): Drop NT4-only code.
* mount.cc (fs_info::update): Fix comments.
* net.cc (get_2k_ifs): Drop NT4-only code.
* sec_auth.cc (get_logon_server): Ditto.
(lsaauth): Drop NT4-specific error handling.
* security.cc (alloc_sd): Set SE_DACL_PROTECTED unconditionally.
* select.cc (select_stuff::wait): Always use MWMO_INPUTAVAILABLE.
(peek_windows): Drop NT4-only condition in call to PeekMessage.
* syscalls.cc (gethostid): Remove NT4-only workaround.
* wincap.cc: Througout, drop has_dacl_protect,
has_broken_if_oper_status, has_process_io_counters,
has_terminal_services, has_extended_priority_class, has_guid_volumes,
has_fileid_dirinfo, has_mwmo_inputavailable and supports_sse from
wincaps.
(wincap_nt4sp4): Remove.
(wincap_minimal): Set to wincap_2000.
(wincapc::init): Rely on availability of OSVERSIONINFOEX structure.
Treat error from GetVersionEx as fatal. Treat NT4 as fatal.
* wincap.h (struct wincaps): Drop has_dacl_protect,
has_broken_if_oper_status, has_process_io_counters,
has_terminal_services, has_extended_priority_class, has_guid_volumes,
has_fileid_dirinfo, has_mwmo_inputavailable and supports_sse flags
and methods.
* winlean.h (GetWindowsDirectoryW) Define as GetSystemWindowsDirectoryW.
(GetWindowsDirectoryA): Define as GetSystemWindowsDirectoryA.
2011-04-04 14:23:36 +02:00
|
|
|
Copyright 2008, 2010, 2011 Red Hat, Inc.
|
2008-04-21 14:46:58 +02:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include "winsup.h"
|
|
|
|
#include "shared_info.h"
|
|
|
|
#include "ntdll.h"
|
2008-10-22 15:30:42 +02:00
|
|
|
#include <wchar.h>
|
2008-04-21 14:46:58 +02:00
|
|
|
|
|
|
|
/* Implement CreateEvent/OpenEvent so that named objects are always created in
|
|
|
|
Cygwin shared object namespace. */
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
CreateEventW (LPSECURITY_ATTRIBUTES lpEventAttributes, BOOL bManualReset,
|
|
|
|
BOOL bInitialState, LPCWSTR lpName)
|
|
|
|
{
|
|
|
|
HANDLE evt;
|
|
|
|
UNICODE_STRING uname;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
NTSTATUS status;
|
|
|
|
ULONG flags = 0;
|
|
|
|
|
|
|
|
if (lpEventAttributes && lpEventAttributes->bInheritHandle)
|
|
|
|
flags |= OBJ_INHERIT;
|
|
|
|
if (lpName)
|
|
|
|
{
|
|
|
|
RtlInitUnicodeString (&uname, lpName);
|
|
|
|
flags |= OBJ_OPENIF | OBJ_CASE_INSENSITIVE;
|
|
|
|
}
|
|
|
|
InitializeObjectAttributes (&attr, lpName ? &uname : NULL, flags,
|
|
|
|
lpName ? get_shared_parent_dir () : NULL,
|
|
|
|
lpEventAttributes
|
|
|
|
? lpEventAttributes->lpSecurityDescriptor : NULL);
|
2010-04-15 19:20:59 +02:00
|
|
|
status = NtCreateEvent (&evt, EVENT_ALL_ACCESS, &attr,
|
2008-04-21 14:46:58 +02:00
|
|
|
bManualReset ? NotificationEvent
|
|
|
|
: SynchronizationEvent,
|
|
|
|
bInitialState);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
{
|
|
|
|
SetLastError (RtlNtStatusToDosError (status));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
SetLastError (status == STATUS_OBJECT_NAME_EXISTS
|
|
|
|
? ERROR_ALREADY_EXISTS : ERROR_SUCCESS);
|
|
|
|
return evt;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
CreateEventA (LPSECURITY_ATTRIBUTES lpEventAttributes, BOOL bManualReset,
|
|
|
|
BOOL bInitialState, LPCSTR lpName)
|
|
|
|
{
|
|
|
|
WCHAR name[MAX_PATH];
|
|
|
|
|
|
|
|
if (lpName && !sys_mbstowcs (name, MAX_PATH, lpName))
|
|
|
|
{
|
|
|
|
SetLastError (ERROR_FILENAME_EXCED_RANGE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return CreateEventW (lpEventAttributes, bManualReset, bInitialState,
|
|
|
|
lpName ? name : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
OpenEventW (DWORD dwDesiredAccess, BOOL bInheritHandle, LPCWSTR lpName)
|
|
|
|
{
|
|
|
|
HANDLE evt;
|
|
|
|
UNICODE_STRING uname;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
NTSTATUS status;
|
|
|
|
ULONG flags = 0;
|
2008-11-26 18:21:04 +01:00
|
|
|
|
2008-04-21 14:46:58 +02:00
|
|
|
if (bInheritHandle)
|
|
|
|
flags |= OBJ_INHERIT;
|
|
|
|
if (lpName)
|
|
|
|
{
|
|
|
|
RtlInitUnicodeString (&uname, lpName);
|
|
|
|
flags |= OBJ_CASE_INSENSITIVE;
|
|
|
|
}
|
|
|
|
InitializeObjectAttributes (&attr, lpName ? &uname : NULL, flags,
|
|
|
|
lpName ? get_shared_parent_dir () : NULL,
|
|
|
|
NULL);
|
|
|
|
status = NtOpenEvent (&evt, dwDesiredAccess, &attr);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
{
|
|
|
|
SetLastError (RtlNtStatusToDosError (status));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return evt;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
OpenEventA (DWORD dwDesiredAccess, BOOL bInheritHandle, LPCSTR lpName)
|
|
|
|
{
|
|
|
|
WCHAR name[MAX_PATH];
|
|
|
|
|
|
|
|
if (lpName && !sys_mbstowcs (name, MAX_PATH, lpName))
|
|
|
|
{
|
|
|
|
SetLastError (ERROR_FILENAME_EXCED_RANGE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return OpenEventW (dwDesiredAccess, bInheritHandle, lpName ? name : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement CreateMutex/OpenMutex so that named objects are always created in
|
|
|
|
Cygwin shared object namespace. */
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
CreateMutexW (LPSECURITY_ATTRIBUTES lpMutexAttributes, BOOL bInitialOwner,
|
|
|
|
LPCWSTR lpName)
|
|
|
|
{
|
|
|
|
HANDLE mtx;
|
|
|
|
UNICODE_STRING uname;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
NTSTATUS status;
|
|
|
|
ULONG flags = 0;
|
|
|
|
|
|
|
|
if (lpMutexAttributes && lpMutexAttributes->bInheritHandle)
|
|
|
|
flags |= OBJ_INHERIT;
|
|
|
|
if (lpName)
|
|
|
|
{
|
|
|
|
RtlInitUnicodeString (&uname, lpName);
|
|
|
|
flags |= OBJ_OPENIF | OBJ_CASE_INSENSITIVE;
|
|
|
|
}
|
|
|
|
InitializeObjectAttributes (&attr, lpName ? &uname : NULL, flags,
|
|
|
|
lpName ? get_shared_parent_dir () : NULL,
|
|
|
|
lpMutexAttributes
|
|
|
|
? lpMutexAttributes->lpSecurityDescriptor : NULL);
|
2010-04-15 19:20:59 +02:00
|
|
|
status = NtCreateMutant (&mtx, MUTEX_ALL_ACCESS, &attr, bInitialOwner);
|
2008-04-21 14:46:58 +02:00
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
{
|
|
|
|
SetLastError (RtlNtStatusToDosError (status));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
SetLastError (status == STATUS_OBJECT_NAME_EXISTS
|
|
|
|
? ERROR_ALREADY_EXISTS : ERROR_SUCCESS);
|
|
|
|
return mtx;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
CreateMutexA (LPSECURITY_ATTRIBUTES lpMutexAttributes, BOOL bInitialOwner,
|
|
|
|
LPCSTR lpName)
|
|
|
|
{
|
|
|
|
WCHAR name[MAX_PATH];
|
|
|
|
|
|
|
|
if (lpName && !sys_mbstowcs (name, MAX_PATH, lpName))
|
|
|
|
{
|
|
|
|
SetLastError (ERROR_FILENAME_EXCED_RANGE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return CreateMutexW (lpMutexAttributes, bInitialOwner, lpName ? name : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
OpenMutexW (DWORD dwDesiredAccess, BOOL bInheritHandle, LPCWSTR lpName)
|
|
|
|
{
|
|
|
|
HANDLE mtx;
|
|
|
|
UNICODE_STRING uname;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
NTSTATUS status;
|
|
|
|
ULONG flags = 0;
|
|
|
|
|
|
|
|
if (bInheritHandle)
|
|
|
|
flags |= OBJ_INHERIT;
|
|
|
|
if (lpName)
|
|
|
|
{
|
|
|
|
RtlInitUnicodeString (&uname, lpName);
|
|
|
|
flags |= OBJ_CASE_INSENSITIVE;
|
|
|
|
}
|
|
|
|
InitializeObjectAttributes (&attr, lpName ? &uname : NULL, flags,
|
|
|
|
lpName ? get_shared_parent_dir () : NULL,
|
|
|
|
NULL);
|
|
|
|
status = NtOpenMutant (&mtx, dwDesiredAccess, &attr);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
{
|
|
|
|
SetLastError (RtlNtStatusToDosError (status));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return mtx;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
OpenMutexA (DWORD dwDesiredAccess, BOOL bInheritHandle, LPCSTR lpName)
|
|
|
|
{
|
|
|
|
WCHAR name[MAX_PATH];
|
|
|
|
|
|
|
|
if (lpName && !sys_mbstowcs (name, MAX_PATH, lpName))
|
|
|
|
{
|
|
|
|
SetLastError (ERROR_FILENAME_EXCED_RANGE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return OpenMutexW (dwDesiredAccess, bInheritHandle, lpName ? name : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement CreateSemaphore/OpenSemaphore so that named objects are always
|
|
|
|
created in Cygwin shared object namespace. */
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
CreateSemaphoreW (LPSECURITY_ATTRIBUTES lpSemaphoreAttributes,
|
|
|
|
LONG lInitialCount, LONG lMaximumCount, LPCWSTR lpName)
|
|
|
|
{
|
|
|
|
HANDLE sem;
|
|
|
|
UNICODE_STRING uname;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
NTSTATUS status;
|
|
|
|
ULONG flags = 0;
|
|
|
|
|
|
|
|
if (lpSemaphoreAttributes && lpSemaphoreAttributes->bInheritHandle)
|
|
|
|
flags |= OBJ_INHERIT;
|
|
|
|
if (lpName)
|
|
|
|
{
|
|
|
|
RtlInitUnicodeString (&uname, lpName);
|
|
|
|
flags |= OBJ_OPENIF | OBJ_CASE_INSENSITIVE;
|
|
|
|
}
|
|
|
|
InitializeObjectAttributes (&attr, lpName ? &uname : NULL, flags,
|
|
|
|
lpName ? get_shared_parent_dir () : NULL,
|
|
|
|
lpSemaphoreAttributes
|
|
|
|
? lpSemaphoreAttributes->lpSecurityDescriptor
|
|
|
|
: NULL);
|
2010-04-15 19:20:59 +02:00
|
|
|
status = NtCreateSemaphore (&sem, SEMAPHORE_ALL_ACCESS, &attr,
|
2008-04-21 14:46:58 +02:00
|
|
|
lInitialCount, lMaximumCount);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
{
|
|
|
|
SetLastError (RtlNtStatusToDosError (status));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
SetLastError (status == STATUS_OBJECT_NAME_EXISTS
|
|
|
|
? ERROR_ALREADY_EXISTS : ERROR_SUCCESS);
|
|
|
|
return sem;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
CreateSemaphoreA (LPSECURITY_ATTRIBUTES lpSemaphoreAttributes,
|
|
|
|
LONG lInitialCount, LONG lMaximumCount, LPCSTR lpName)
|
|
|
|
{
|
|
|
|
WCHAR name[MAX_PATH];
|
|
|
|
|
|
|
|
if (lpName && !sys_mbstowcs (name, MAX_PATH, lpName))
|
|
|
|
{
|
|
|
|
SetLastError (ERROR_FILENAME_EXCED_RANGE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return CreateSemaphoreW (lpSemaphoreAttributes, lInitialCount, lMaximumCount,
|
|
|
|
lpName ? name : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
OpenSemaphoreW (DWORD dwDesiredAccess, BOOL bInheritHandle, LPCWSTR lpName)
|
|
|
|
{
|
|
|
|
HANDLE sem;
|
|
|
|
UNICODE_STRING uname;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
NTSTATUS status;
|
|
|
|
ULONG flags = 0;
|
|
|
|
|
|
|
|
if (bInheritHandle)
|
|
|
|
flags |= OBJ_INHERIT;
|
|
|
|
if (lpName)
|
|
|
|
{
|
|
|
|
RtlInitUnicodeString (&uname, lpName);
|
|
|
|
flags |= OBJ_CASE_INSENSITIVE;
|
|
|
|
}
|
|
|
|
InitializeObjectAttributes (&attr, lpName ? &uname : NULL, flags,
|
|
|
|
lpName ? get_shared_parent_dir () : NULL,
|
|
|
|
NULL);
|
|
|
|
status = NtOpenSemaphore (&sem, dwDesiredAccess, &attr);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
{
|
|
|
|
SetLastError (RtlNtStatusToDosError (status));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return sem;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
OpenSemaphoreA (DWORD dwDesiredAccess, BOOL bInheritHandle, LPCSTR lpName)
|
|
|
|
{
|
|
|
|
WCHAR name[MAX_PATH];
|
|
|
|
|
|
|
|
if (lpName && !sys_mbstowcs (name, MAX_PATH, lpName))
|
|
|
|
{
|
|
|
|
SetLastError (ERROR_FILENAME_EXCED_RANGE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return OpenSemaphoreW (dwDesiredAccess, bInheritHandle, lpName ? name : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement CreateFileMapping/OpenFileMapping so that named objects are always
|
|
|
|
created in Cygwin shared object namespace. */
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
CreateFileMappingW (HANDLE hFile, LPSECURITY_ATTRIBUTES lpAttributes,
|
|
|
|
DWORD flProtect, DWORD dwMaximumSizeHigh,
|
|
|
|
DWORD dwMaximumSizeLow, LPCWSTR lpName)
|
|
|
|
{
|
|
|
|
HANDLE sect;
|
|
|
|
UNICODE_STRING uname;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
NTSTATUS status;
|
|
|
|
ULONG flags = 0;
|
|
|
|
ACCESS_MASK access = READ_CONTROL | SECTION_QUERY | SECTION_MAP_READ;
|
|
|
|
ULONG prot = flProtect & (PAGE_NOACCESS | PAGE_READONLY | PAGE_READWRITE
|
|
|
|
| PAGE_WRITECOPY | PAGE_EXECUTE
|
|
|
|
| PAGE_EXECUTE_READ | PAGE_EXECUTE_READWRITE
|
|
|
|
| PAGE_EXECUTE_WRITECOPY);
|
|
|
|
ULONG attribs = flProtect & (SEC_BASED | SEC_NO_CHANGE | SEC_IMAGE | SEC_VLM
|
|
|
|
| SEC_RESERVE | SEC_COMMIT | SEC_NOCACHE);
|
|
|
|
LARGE_INTEGER size = {{ LowPart : dwMaximumSizeLow,
|
|
|
|
HighPart : dwMaximumSizeHigh }};
|
|
|
|
PLARGE_INTEGER psize = size.QuadPart ? &size : NULL;
|
|
|
|
|
|
|
|
if (prot & (PAGE_READWRITE | PAGE_WRITECOPY
|
|
|
|
| PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_WRITECOPY))
|
|
|
|
access |= SECTION_MAP_WRITE;
|
|
|
|
if (prot & (PAGE_EXECUTE | PAGE_EXECUTE_READ
|
|
|
|
| PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_WRITECOPY))
|
|
|
|
access |= SECTION_MAP_EXECUTE;
|
|
|
|
if (lpAttributes && lpAttributes->bInheritHandle)
|
|
|
|
flags |= OBJ_INHERIT;
|
|
|
|
if (lpName)
|
|
|
|
{
|
|
|
|
RtlInitUnicodeString (&uname, lpName);
|
|
|
|
flags |= OBJ_OPENIF | OBJ_CASE_INSENSITIVE;
|
|
|
|
}
|
|
|
|
InitializeObjectAttributes (&attr, lpName ? &uname : NULL, flags,
|
|
|
|
lpName ? get_shared_parent_dir () : NULL,
|
|
|
|
lpAttributes
|
|
|
|
? lpAttributes->lpSecurityDescriptor
|
|
|
|
: NULL);
|
2008-04-21 15:17:36 +02:00
|
|
|
if (!(attribs & (SEC_RESERVE | SEC_COMMIT)))
|
|
|
|
attribs |= SEC_COMMIT;
|
2008-04-21 14:46:58 +02:00
|
|
|
if (hFile == INVALID_HANDLE_VALUE)
|
|
|
|
hFile = NULL;
|
|
|
|
status = NtCreateSection (§, access, &attr, psize, prot, attribs, hFile);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
{
|
|
|
|
SetLastError (RtlNtStatusToDosError (status));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
SetLastError (status == STATUS_OBJECT_NAME_EXISTS
|
|
|
|
? ERROR_ALREADY_EXISTS : ERROR_SUCCESS);
|
|
|
|
return sect;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
CreateFileMappingA (HANDLE hFile, LPSECURITY_ATTRIBUTES lpAttributes,
|
|
|
|
DWORD flProtect, DWORD dwMaximumSizeHigh,
|
|
|
|
DWORD dwMaximumSizeLow, LPCSTR lpName)
|
|
|
|
{
|
|
|
|
WCHAR name[MAX_PATH];
|
|
|
|
|
|
|
|
if (lpName && !sys_mbstowcs (name, MAX_PATH, lpName))
|
|
|
|
{
|
|
|
|
SetLastError (ERROR_FILENAME_EXCED_RANGE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return CreateFileMappingW (hFile, lpAttributes, flProtect, dwMaximumSizeHigh,
|
|
|
|
dwMaximumSizeLow, lpName ? name : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
OpenFileMappingW (DWORD dwDesiredAccess, BOOL bInheritHandle, LPCWSTR lpName)
|
|
|
|
{
|
|
|
|
HANDLE sect;
|
|
|
|
UNICODE_STRING uname;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
NTSTATUS status;
|
|
|
|
ULONG flags = 0;
|
|
|
|
|
|
|
|
if (bInheritHandle)
|
|
|
|
flags |= OBJ_INHERIT;
|
|
|
|
if (lpName)
|
|
|
|
{
|
|
|
|
RtlInitUnicodeString (&uname, lpName);
|
|
|
|
flags |= OBJ_CASE_INSENSITIVE;
|
|
|
|
}
|
|
|
|
InitializeObjectAttributes (&attr, lpName ? &uname : NULL, flags,
|
|
|
|
lpName ? get_shared_parent_dir () : NULL,
|
|
|
|
NULL);
|
|
|
|
status = NtOpenSection (§, dwDesiredAccess, &attr);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
{
|
|
|
|
SetLastError (RtlNtStatusToDosError (status));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return sect;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI
|
|
|
|
OpenFileMappingA (DWORD dwDesiredAccess, BOOL bInheritHandle, LPCSTR lpName)
|
|
|
|
{
|
|
|
|
WCHAR name[MAX_PATH];
|
|
|
|
|
|
|
|
if (lpName && !sys_mbstowcs (name, MAX_PATH, lpName))
|
|
|
|
{
|
|
|
|
SetLastError (ERROR_FILENAME_EXCED_RANGE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return OpenFileMappingW (dwDesiredAccess, bInheritHandle, lpName ? name : NULL);
|
|
|
|
}
|