2002-03-10 00:29:33 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2000 Juergen Schmied
|
|
|
|
*
|
|
|
|
* 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
|
2002-03-10 00:29:33 +01:00
|
|
|
*/
|
|
|
|
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
#ifndef __WINE_NTDLL_MISC_H
|
|
|
|
#define __WINE_NTDLL_MISC_H
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2007-01-12 20:15:52 +01:00
|
|
|
#include <signal.h>
|
2007-10-20 16:56:44 +02:00
|
|
|
#include <sys/types.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
|
|
|
|
#include "windef.h"
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
#include "winnt.h"
|
2002-09-13 00:07:02 +02:00
|
|
|
#include "winternl.h"
|
2003-04-03 00:48:59 +02:00
|
|
|
#include "wine/server.h"
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2005-07-14 14:33:30 +02:00
|
|
|
#define MAX_NT_PATH_LENGTH 277
|
|
|
|
|
2007-10-18 15:16:07 +02:00
|
|
|
#define MAX_DOS_DRIVES 26
|
|
|
|
|
|
|
|
struct drive_info
|
|
|
|
{
|
|
|
|
dev_t dev;
|
|
|
|
ino_t ino;
|
|
|
|
};
|
|
|
|
|
2005-11-02 21:54:12 +01:00
|
|
|
/* exceptions */
|
|
|
|
extern void wait_suspend( CONTEXT *context );
|
2005-05-07 20:10:30 +02:00
|
|
|
extern void WINAPI __regs_RtlRaiseException( PEXCEPTION_RECORD, PCONTEXT );
|
2006-04-20 15:40:28 +02:00
|
|
|
extern void get_cpu_context( CONTEXT *context );
|
2006-01-11 20:20:32 +01:00
|
|
|
extern void set_cpu_context( const CONTEXT *context );
|
2005-05-07 20:10:30 +02:00
|
|
|
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
/* debug helper */
|
2000-08-26 23:16:36 +02:00
|
|
|
extern LPCSTR debugstr_us( const UNICODE_STRING *str );
|
2000-10-15 02:39:11 +02:00
|
|
|
extern void dump_ObjectAttributes (const OBJECT_ATTRIBUTES *ObjectAttributes);
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2007-01-15 22:26:32 +01:00
|
|
|
extern NTSTATUS NTDLL_queue_process_apc( HANDLE process, const apc_call_t *call, apc_result_t *result );
|
2003-06-30 23:00:15 +02:00
|
|
|
extern NTSTATUS NTDLL_wait_for_multiple_objects( UINT count, const HANDLE *handles, UINT flags,
|
2005-04-24 19:35:52 +02:00
|
|
|
const LARGE_INTEGER *timeout, HANDLE signal_object );
|
2003-11-04 05:50:18 +01:00
|
|
|
|
|
|
|
/* init routines */
|
2008-07-03 20:18:23 +02:00
|
|
|
extern void signal_init_thread(void);
|
|
|
|
extern void signal_init_process(void);
|
2005-09-14 12:36:58 +02:00
|
|
|
extern size_t get_signal_stack_total_size(void);
|
2005-08-10 15:12:27 +02:00
|
|
|
extern void version_init( const WCHAR *appname );
|
2004-01-07 05:50:11 +01:00
|
|
|
extern void debug_init(void);
|
2006-02-22 09:57:19 +01:00
|
|
|
extern HANDLE thread_init(void);
|
2007-07-25 16:48:40 +02:00
|
|
|
extern void actctx_init(void);
|
2006-07-24 15:19:32 +02:00
|
|
|
extern void virtual_init(void);
|
|
|
|
extern void virtual_init_threading(void);
|
2003-03-31 03:37:04 +02:00
|
|
|
|
2003-11-06 01:08:05 +01:00
|
|
|
/* server support */
|
2007-04-17 20:08:59 +02:00
|
|
|
extern timeout_t server_start_time;
|
2003-11-06 01:08:05 +01:00
|
|
|
extern void server_init_process(void);
|
2007-01-18 12:23:04 +01:00
|
|
|
extern NTSTATUS server_init_process_done(void);
|
2005-07-13 21:43:35 +02:00
|
|
|
extern size_t server_init_thread( int unix_pid, int unix_tid, void *entry_point );
|
2003-11-06 01:08:05 +01:00
|
|
|
extern void DECLSPEC_NORETURN server_protocol_error( const char *err, ... );
|
|
|
|
extern void DECLSPEC_NORETURN server_protocol_perror( const char *err );
|
2005-08-02 11:55:40 +02:00
|
|
|
extern void DECLSPEC_NORETURN server_exit_thread( int status );
|
2003-11-06 01:08:05 +01:00
|
|
|
extern void DECLSPEC_NORETURN server_abort_thread( int status );
|
2007-01-18 12:20:56 +01:00
|
|
|
extern sigset_t server_block_set;
|
|
|
|
extern void server_enter_uninterrupted_section( RTL_CRITICAL_SECTION *cs, sigset_t *sigset );
|
|
|
|
extern void server_leave_uninterrupted_section( RTL_CRITICAL_SECTION *cs, sigset_t *sigset );
|
2006-11-02 20:48:19 +01:00
|
|
|
extern int server_remove_fd_from_cache( obj_handle_t handle );
|
2006-11-03 11:38:44 +01:00
|
|
|
extern int server_get_unix_fd( obj_handle_t handle, unsigned int access, int *unix_fd,
|
2007-04-10 22:32:46 +02:00
|
|
|
int *needs_close, enum server_fd_type *type, unsigned int *options );
|
2003-11-06 01:08:05 +01:00
|
|
|
|
2007-10-25 20:09:54 +02:00
|
|
|
/* security descriptors */
|
|
|
|
NTSTATUS NTDLL_create_struct_sd(PSECURITY_DESCRIPTOR nt_sd, struct security_descriptor **server_sd,
|
|
|
|
data_size_t *server_sd_len);
|
|
|
|
void NTDLL_free_struct_sd(struct security_descriptor *server_sd);
|
|
|
|
|
2003-03-07 00:41:37 +01:00
|
|
|
/* module handling */
|
2006-03-14 15:35:21 +01:00
|
|
|
extern NTSTATUS MODULE_DllThreadAttach( LPVOID lpReserved );
|
2004-06-15 02:47:00 +02:00
|
|
|
extern FARPROC RELAY_GetProcAddress( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
|
2005-12-18 10:45:01 +01:00
|
|
|
DWORD exp_size, FARPROC proc, DWORD ordinal, const WCHAR *user );
|
2004-06-15 02:47:00 +02:00
|
|
|
extern FARPROC SNOOP_GetProcAddress( HMODULE hmod, const IMAGE_EXPORT_DIRECTORY *exports, DWORD exp_size,
|
2004-03-16 04:10:07 +01:00
|
|
|
FARPROC origfun, DWORD ordinal, const WCHAR *user );
|
2003-09-19 06:32:39 +02:00
|
|
|
extern void RELAY_SetupDLL( HMODULE hmod );
|
2003-09-19 06:04:57 +02:00
|
|
|
extern void SNOOP_SetupDLL( HMODULE hmod );
|
2007-07-19 18:05:59 +02:00
|
|
|
extern UNICODE_STRING windows_dir;
|
2004-07-16 00:07:21 +02:00
|
|
|
extern UNICODE_STRING system_dir;
|
2003-04-08 01:27:54 +02:00
|
|
|
|
2008-02-12 22:39:19 +01:00
|
|
|
typedef LONG (WINAPI *PUNHANDLED_EXCEPTION_FILTER)(PEXCEPTION_POINTERS);
|
|
|
|
extern PUNHANDLED_EXCEPTION_FILTER unhandled_exception_filter;
|
|
|
|
|
2003-10-08 05:51:31 +02:00
|
|
|
/* redefine these to make sure we don't reference kernel symbols */
|
|
|
|
#define GetProcessHeap() (NtCurrentTeb()->Peb->ProcessHeap)
|
2007-05-23 09:36:29 +02:00
|
|
|
#define GetCurrentProcessId() (HandleToULong(NtCurrentTeb()->ClientId.UniqueProcess))
|
|
|
|
#define GetCurrentThreadId() (HandleToULong(NtCurrentTeb()->ClientId.UniqueThread))
|
2003-05-08 05:47:00 +02:00
|
|
|
|
2003-06-24 21:28:21 +02:00
|
|
|
/* Device IO */
|
2004-03-05 00:00:18 +01:00
|
|
|
extern NTSTATUS CDROM_DeviceIoControl(HANDLE hDevice,
|
2003-06-24 21:28:21 +02:00
|
|
|
HANDLE hEvent, PIO_APC_ROUTINE UserApcRoutine,
|
|
|
|
PVOID UserApcContext,
|
|
|
|
PIO_STATUS_BLOCK piosb,
|
|
|
|
ULONG IoControlCode,
|
|
|
|
LPVOID lpInBuffer, DWORD nInBufferSize,
|
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize);
|
2006-01-12 13:32:51 +01:00
|
|
|
extern NTSTATUS COMM_DeviceIoControl(HANDLE hDevice,
|
|
|
|
HANDLE hEvent, PIO_APC_ROUTINE UserApcRoutine,
|
|
|
|
PVOID UserApcContext,
|
|
|
|
PIO_STATUS_BLOCK piosb,
|
|
|
|
ULONG IoControlCode,
|
|
|
|
LPVOID lpInBuffer, DWORD nInBufferSize,
|
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize);
|
2006-01-26 13:23:08 +01:00
|
|
|
extern NTSTATUS TAPE_DeviceIoControl(HANDLE hDevice,
|
|
|
|
HANDLE hEvent, PIO_APC_ROUTINE UserApcRoutine,
|
|
|
|
PVOID UserApcContext,
|
|
|
|
PIO_STATUS_BLOCK piosb,
|
|
|
|
ULONG IoControlCode,
|
|
|
|
LPVOID lpInBuffer, DWORD nInBufferSize,
|
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize);
|
2003-06-24 21:28:21 +02:00
|
|
|
|
2004-03-16 02:32:02 +01:00
|
|
|
/* file I/O */
|
|
|
|
extern NTSTATUS FILE_GetNtStatus(void);
|
2004-04-20 02:36:29 +02:00
|
|
|
extern BOOL DIR_is_hidden_file( const UNICODE_STRING *name );
|
2005-10-28 18:45:24 +02:00
|
|
|
extern NTSTATUS DIR_unmount_device( HANDLE handle );
|
2005-08-11 12:41:26 +02:00
|
|
|
extern NTSTATUS DIR_get_unix_cwd( char **cwd );
|
2007-10-18 15:16:07 +02:00
|
|
|
extern unsigned int DIR_get_drives_info( struct drive_info info[MAX_DOS_DRIVES] );
|
2004-03-16 02:32:02 +01:00
|
|
|
|
|
|
|
/* virtual memory */
|
2008-04-01 14:11:44 +02:00
|
|
|
extern NTSTATUS virtual_alloc_thread_stack( void *base, SIZE_T stack_size );
|
2008-06-26 21:10:57 +02:00
|
|
|
extern void virtual_clear_thread_stack(void);
|
2008-04-01 17:37:17 +02:00
|
|
|
extern BOOL virtual_handle_stack_fault( void *addr );
|
2005-07-15 13:43:09 +02:00
|
|
|
extern NTSTATUS VIRTUAL_HandleFault(LPCVOID addr);
|
2006-12-05 15:42:29 +01:00
|
|
|
extern void VIRTUAL_SetForceExec( BOOL enable );
|
2004-06-18 02:26:57 +02:00
|
|
|
extern void VIRTUAL_UseLargeAddressSpace(void);
|
2007-05-18 18:09:03 +02:00
|
|
|
extern struct _KUSER_SHARED_DATA *user_shared_data;
|
2003-12-08 22:58:55 +01:00
|
|
|
|
2004-01-18 23:11:52 +01:00
|
|
|
/* code pages */
|
|
|
|
extern int ntdll_umbstowcs(DWORD flags, const char* src, int srclen, WCHAR* dst, int dstlen);
|
|
|
|
extern int ntdll_wcstoumbs(DWORD flags, const WCHAR* src, int srclen, char* dst, int dstlen,
|
|
|
|
const char* defchar, int *used );
|
|
|
|
|
2006-02-22 16:30:05 +01:00
|
|
|
/* load order */
|
|
|
|
|
|
|
|
enum loadorder
|
|
|
|
{
|
|
|
|
LO_INVALID,
|
|
|
|
LO_DISABLED,
|
|
|
|
LO_NATIVE,
|
|
|
|
LO_BUILTIN,
|
|
|
|
LO_NATIVE_BUILTIN, /* native then builtin */
|
|
|
|
LO_BUILTIN_NATIVE, /* builtin then native */
|
|
|
|
LO_DEFAULT /* nothing specified, use default strategy */
|
|
|
|
};
|
|
|
|
|
|
|
|
extern enum loadorder get_load_order( const WCHAR *app_name, const WCHAR *path );
|
|
|
|
|
2005-06-06 22:04:33 +02:00
|
|
|
struct debug_info
|
|
|
|
{
|
|
|
|
char *str_pos; /* current position in strings buffer */
|
|
|
|
char *out_pos; /* current position in output buffer */
|
|
|
|
char strings[1024]; /* buffer for temporary strings */
|
|
|
|
char output[1024]; /* current output line */
|
|
|
|
};
|
|
|
|
|
2007-07-19 16:56:10 +02:00
|
|
|
/* thread private data, stored in NtCurrentTeb()->SystemReserved2 */
|
2005-06-06 22:04:33 +02:00
|
|
|
struct ntdll_thread_data
|
|
|
|
{
|
2007-07-19 16:56:10 +02:00
|
|
|
DWORD fs; /* 1d4 TEB selector */
|
|
|
|
DWORD gs; /* 1d8 libc selector; update winebuild if you move this! */
|
|
|
|
struct debug_info *debug_info; /* 1dc info for debugstr functions */
|
|
|
|
int request_fd; /* 1e0 fd for sending server requests */
|
|
|
|
int reply_fd; /* 1e4 fd for receiving server replies */
|
|
|
|
int wait_fd[2]; /* 1e8 fd for sleeping server requests */
|
|
|
|
void *vm86_ptr; /* 1f0 data for vm86 mode */
|
|
|
|
|
|
|
|
void *pad[2]; /* 1f4 change this if you add fields! */
|
2005-06-06 22:04:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct ntdll_thread_data *ntdll_get_thread_data(void)
|
|
|
|
{
|
|
|
|
return (struct ntdll_thread_data *)NtCurrentTeb()->SystemReserved2;
|
|
|
|
}
|
|
|
|
|
2007-07-19 16:56:10 +02:00
|
|
|
/* thread debug_registers, stored in NtCurrentTeb()->SpareBytes1 */
|
2006-01-13 13:58:14 +01:00
|
|
|
struct ntdll_thread_regs
|
|
|
|
{
|
2007-07-19 16:56:10 +02:00
|
|
|
DWORD dr0;
|
|
|
|
DWORD dr1;
|
|
|
|
DWORD dr2;
|
|
|
|
DWORD dr3;
|
|
|
|
DWORD dr6;
|
|
|
|
DWORD dr7;
|
2006-01-13 13:58:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct ntdll_thread_regs *ntdll_get_thread_regs(void)
|
|
|
|
{
|
|
|
|
return (struct ntdll_thread_regs *)NtCurrentTeb()->SpareBytes1;
|
|
|
|
}
|
|
|
|
|
2007-11-09 23:12:07 +01:00
|
|
|
/* Completion */
|
|
|
|
extern NTSTATUS NTDLL_AddCompletion( HANDLE hFile, ULONG_PTR CompletionValue, NTSTATUS CompletionStatus, ULONG_PTR Information );
|
|
|
|
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
#endif
|