4 * Copyright 1996, 2003 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
26 #include <sys/types.h>
27 #ifdef HAVE_SYS_MMAN_H
30 #ifdef HAVE_SYS_TIMES_H
31 #include <sys/times.h>
34 #define NONAMELESSUNION
36 #define WIN32_NO_STATUS
38 #include "wine/library.h"
39 #include "wine/server.h"
40 #include "wine/pthread.h"
41 #include "wine/debug.h"
42 #include "ntdll_misc.h"
44 #include "wine/exception.h"
46 WINE_DEFAULT_DEBUG_CHANNEL(thread);
47 WINE_DECLARE_DEBUG_CHANNEL(relay);
49 struct _KUSER_SHARED_DATA *user_shared_data = NULL;
51 PUNHANDLED_EXCEPTION_FILTER unhandled_exception_filter = NULL;
53 /* info passed to a starting thread */
56 struct wine_pthread_thread_info pthread_info;
57 PRTL_THREAD_START_ROUTINE entry_point;
61 static PEB_LDR_DATA ldr;
62 static RTL_USER_PROCESS_PARAMETERS params; /* default parameters if no parent */
63 static WCHAR current_dir[MAX_NT_PATH_LENGTH];
64 static RTL_BITMAP tls_bitmap;
65 static RTL_BITMAP tls_expansion_bitmap;
66 static RTL_BITMAP fls_bitmap;
67 static LIST_ENTRY tls_links;
68 static size_t sigstack_total_size;
69 static ULONG sigstack_zero_bits;
71 struct wine_pthread_functions pthread_functions = { NULL };
74 static RTL_CRITICAL_SECTION ldt_section;
75 static RTL_CRITICAL_SECTION_DEBUG critsect_debug =
78 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
79 0, 0, { (DWORD_PTR)(__FILE__ ": ldt_section") }
81 static RTL_CRITICAL_SECTION ldt_section = { &critsect_debug, -1, 0, 0, 0, 0 };
82 static sigset_t ldt_sigset;
84 /***********************************************************************
85 * locking for LDT routines
87 static void ldt_lock(void)
91 pthread_functions.sigprocmask( SIG_BLOCK, &server_block_set, &sigset );
92 RtlEnterCriticalSection( &ldt_section );
93 if (ldt_section.RecursionCount == 1) ldt_sigset = sigset;
96 static void ldt_unlock(void)
98 if (ldt_section.RecursionCount == 1)
100 sigset_t sigset = ldt_sigset;
101 RtlLeaveCriticalSection( &ldt_section );
102 pthread_functions.sigprocmask( SIG_SETMASK, &sigset, NULL );
104 else RtlLeaveCriticalSection( &ldt_section );
108 /***********************************************************************
111 static inline NTSTATUS init_teb( TEB *teb )
113 struct ntdll_thread_data *thread_data = (struct ntdll_thread_data *)teb->SystemReserved2;
115 teb->Tib.ExceptionList = (void *)~0UL;
116 teb->Tib.StackBase = (void *)~0UL;
117 teb->Tib.Self = &teb->Tib;
118 teb->StaticUnicodeString.Buffer = teb->StaticUnicodeBuffer;
119 teb->StaticUnicodeString.MaximumLength = sizeof(teb->StaticUnicodeBuffer);
121 if (!(thread_data->fs = wine_ldt_alloc_fs())) return STATUS_TOO_MANY_THREADS;
122 thread_data->request_fd = -1;
123 thread_data->reply_fd = -1;
124 thread_data->wait_fd[0] = -1;
125 thread_data->wait_fd[1] = -1;
127 return STATUS_SUCCESS;
131 /***********************************************************************
134 * Make sure the unicode string doesn't point beyond the end pointer
136 static inline void fix_unicode_string( UNICODE_STRING *str, const char *end_ptr )
138 if ((char *)str->Buffer >= end_ptr)
140 str->Length = str->MaximumLength = 0;
144 if ((char *)str->Buffer + str->MaximumLength > end_ptr)
146 str->MaximumLength = (end_ptr - (char *)str->Buffer) & ~(sizeof(WCHAR) - 1);
148 if (str->Length >= str->MaximumLength)
150 if (str->MaximumLength >= sizeof(WCHAR))
151 str->Length = str->MaximumLength - sizeof(WCHAR);
153 str->Length = str->MaximumLength = 0;
158 /***********************************************************************
159 * init_user_process_params
161 * Fill the RTL_USER_PROCESS_PARAMETERS structure from the server.
163 static NTSTATUS init_user_process_params( SIZE_T info_size, HANDLE *exe_file )
168 RTL_USER_PROCESS_PARAMETERS *params = NULL;
170 status = NtAllocateVirtualMemory( NtCurrentProcess(), (void **)¶ms, 0, &info_size,
171 MEM_COMMIT, PAGE_READWRITE );
172 if (status != STATUS_SUCCESS) return status;
174 params->AllocationSize = info_size;
175 NtCurrentTeb()->Peb->ProcessParameters = params;
177 SERVER_START_REQ( get_startup_info )
179 wine_server_set_reply( req, params, info_size );
180 if (!(status = wine_server_call( req )))
182 info_size = wine_server_reply_size( reply );
183 *exe_file = reply->exe_file;
184 params->hStdInput = reply->hstdin;
185 params->hStdOutput = reply->hstdout;
186 params->hStdError = reply->hstderr;
190 if (status != STATUS_SUCCESS) return status;
192 if (params->Size > info_size) params->Size = info_size;
194 /* make sure the strings are valid */
195 fix_unicode_string( ¶ms->CurrentDirectory.DosPath, (char *)info_size );
196 fix_unicode_string( ¶ms->DllPath, (char *)info_size );
197 fix_unicode_string( ¶ms->ImagePathName, (char *)info_size );
198 fix_unicode_string( ¶ms->CommandLine, (char *)info_size );
199 fix_unicode_string( ¶ms->WindowTitle, (char *)info_size );
200 fix_unicode_string( ¶ms->Desktop, (char *)info_size );
201 fix_unicode_string( ¶ms->ShellInfo, (char *)info_size );
202 fix_unicode_string( ¶ms->RuntimeInfo, (char *)info_size );
204 /* environment needs to be a separate memory block */
205 env_size = info_size - params->Size;
206 if (!env_size) env_size = 1;
208 status = NtAllocateVirtualMemory( NtCurrentProcess(), &ptr, 0, &env_size,
209 MEM_COMMIT, PAGE_READWRITE );
210 if (status != STATUS_SUCCESS) return status;
211 memcpy( ptr, (char *)params + params->Size, info_size - params->Size );
212 params->Environment = ptr;
214 RtlNormalizeProcessParams( params );
219 /***********************************************************************
222 * Setup the initial thread.
224 * NOTES: The first allocated TEB on NT is at 0x7ffde000.
226 HANDLE thread_init(void)
231 SIZE_T size, info_size;
234 struct ntdll_thread_data *thread_data;
235 struct wine_pthread_thread_info thread_info;
236 static struct debug_info debug_info; /* debug info for initial thread */
240 /* reserve space for shared user data */
242 addr = (void *)0x7ffe0000;
244 NtAllocateVirtualMemory( NtCurrentProcess(), &addr, 0, &size, MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE );
245 user_shared_data = addr;
247 /* allocate and initialize the PEB */
251 NtAllocateVirtualMemory( NtCurrentProcess(), &addr, 1, &size,
252 MEM_COMMIT | MEM_TOP_DOWN, PAGE_READWRITE );
255 peb->NumberOfProcessors = 1;
256 peb->ProcessParameters = ¶ms;
257 peb->TlsBitmap = &tls_bitmap;
258 peb->TlsExpansionBitmap = &tls_expansion_bitmap;
259 peb->FlsBitmap = &fls_bitmap;
261 params.CurrentDirectory.DosPath.Buffer = current_dir;
262 params.CurrentDirectory.DosPath.MaximumLength = sizeof(current_dir);
263 params.wShowWindow = 1; /* SW_SHOWNORMAL */
264 RtlInitializeBitMap( &tls_bitmap, peb->TlsBitmapBits, sizeof(peb->TlsBitmapBits) * 8 );
265 RtlInitializeBitMap( &tls_expansion_bitmap, peb->TlsExpansionBitmapBits,
266 sizeof(peb->TlsExpansionBitmapBits) * 8 );
267 RtlInitializeBitMap( &fls_bitmap, peb->FlsBitmapBits, sizeof(peb->FlsBitmapBits) * 8 );
268 InitializeListHead( &peb->FlsListHead );
269 InitializeListHead( &ldr.InLoadOrderModuleList );
270 InitializeListHead( &ldr.InMemoryOrderModuleList );
271 InitializeListHead( &ldr.InInitializationOrderModuleList );
272 InitializeListHead( &tls_links );
274 /* allocate and initialize the initial TEB */
276 sigstack_total_size = get_signal_stack_total_size();
277 while (1 << sigstack_zero_bits < sigstack_total_size) sigstack_zero_bits++;
278 assert( 1 << sigstack_zero_bits == sigstack_total_size ); /* must be a power of 2 */
279 assert( sigstack_total_size >= sizeof(TEB) + sizeof(struct startup_info) );
280 thread_info.teb_size = sigstack_total_size;
283 size = sigstack_total_size;
284 NtAllocateVirtualMemory( NtCurrentProcess(), &addr, sigstack_zero_bits,
285 &size, MEM_COMMIT | MEM_TOP_DOWN, PAGE_READWRITE );
288 thread_info.teb_size = size;
290 thread_data = (struct ntdll_thread_data *)teb->SystemReserved2;
291 thread_data->debug_info = &debug_info;
292 InsertHeadList( &tls_links, &teb->TlsLinks );
294 thread_info.stack_base = NULL;
295 thread_info.stack_size = 0;
296 thread_info.teb_base = teb;
297 thread_info.teb_sel = thread_data->fs;
298 wine_pthread_get_functions( &pthread_functions, sizeof(pthread_functions) );
299 pthread_functions.init_current_teb( &thread_info );
300 pthread_functions.init_thread( &thread_info );
301 virtual_init_threading();
303 debug_info.str_pos = debug_info.strings;
304 debug_info.out_pos = debug_info.output;
307 /* setup the server connection */
308 server_init_process();
309 info_size = server_init_thread( thread_info.pid, thread_info.tid, NULL );
311 /* create the process heap */
312 if (!(peb->ProcessHeap = RtlCreateHeap( HEAP_GROWABLE, NULL, 0, 0, NULL, NULL )))
314 MESSAGE( "wine: failed to create the process heap\n" );
318 /* allocate user parameters */
321 init_user_process_params( info_size, &exe_file );
325 /* This is wine specific: we have no parent (we're started from unix)
326 * so, create a simple console with bare handles to unix stdio
328 wine_server_fd_to_handle( 0, GENERIC_READ|SYNCHRONIZE, OBJ_INHERIT, ¶ms.hStdInput );
329 wine_server_fd_to_handle( 1, GENERIC_WRITE|SYNCHRONIZE, OBJ_INHERIT, ¶ms.hStdOutput );
330 wine_server_fd_to_handle( 2, GENERIC_WRITE|SYNCHRONIZE, OBJ_INHERIT, ¶ms.hStdError );
333 /* initialize LDT locking */
334 wine_ldt_init_locking( ldt_lock, ldt_unlock );
336 /* initialize time values in user_shared_data */
337 NtQuerySystemTime( &now );
338 user_shared_data->SystemTime.LowPart = now.u.LowPart;
339 user_shared_data->SystemTime.High1Time = user_shared_data->SystemTime.High2Time = now.u.HighPart;
340 user_shared_data->u.TickCountQuad = (now.QuadPart - server_start_time) / 10000;
341 user_shared_data->u.TickCount.High2Time = user_shared_data->u.TickCount.High1Time;
342 user_shared_data->TickCountLowDeprecated = user_shared_data->u.TickCount.LowPart;
343 user_shared_data->TickCountMultiplier = 1 << 24;
349 /* wrapper for apps that don't declare the thread function correctly */
350 extern DWORD call_thread_entry_point( PRTL_THREAD_START_ROUTINE entry, void *arg );
351 __ASM_GLOBAL_FUNC(call_thread_entry_point,
356 "movl 8(%ebp),%eax\n\t"
361 static inline DWORD call_thread_entry_point( PRTL_THREAD_START_ROUTINE entry, void *arg )
363 LPTHREAD_START_ROUTINE func = (LPTHREAD_START_ROUTINE)entry;
368 /***********************************************************************
371 * Hack to make things compatible with the thread procedures used by kernel32.CreateThread.
373 static void DECLSPEC_NORETURN call_thread_func( PRTL_THREAD_START_ROUTINE rtl_func, void *arg )
378 MODULE_DllThreadAttach( NULL );
381 DPRINTF( "%04x:Starting thread proc %p (arg=%p)\n", GetCurrentThreadId(), rtl_func, arg );
383 exit_code = call_thread_entry_point( rtl_func, arg );
385 /* send the exit code to the server */
386 SERVER_START_REQ( terminate_thread )
388 req->handle = GetCurrentThread();
389 req->exit_code = exit_code;
390 wine_server_call( req );
397 LdrShutdownProcess();
403 server_exit_thread( exit_code );
408 /***********************************************************************
411 * Startup routine for a newly created thread.
413 static void start_thread( struct wine_pthread_thread_info *info )
415 TEB *teb = info->teb_base;
416 struct ntdll_thread_data *thread_data = (struct ntdll_thread_data *)teb->SystemReserved2;
417 struct startup_info *startup_info = (struct startup_info *)info;
418 PRTL_THREAD_START_ROUTINE func = startup_info->entry_point;
419 void *arg = startup_info->entry_arg;
420 struct debug_info debug_info;
422 debug_info.str_pos = debug_info.strings;
423 debug_info.out_pos = debug_info.output;
424 thread_data->debug_info = &debug_info;
426 pthread_functions.init_current_teb( info );
427 signal_init_thread();
428 server_init_thread( info->pid, info->tid, func );
429 pthread_functions.init_thread( info );
430 virtual_alloc_thread_stack( info->stack_base, info->stack_size );
431 pthread_functions.sigprocmask( SIG_UNBLOCK, &server_block_set, NULL );
434 InsertHeadList( &tls_links, &teb->TlsLinks );
437 /* NOTE: Windows does not have an exception handler around the call to
438 * the thread attach. We do for ease of debugging */
439 if (unhandled_exception_filter)
443 call_thread_func( func, arg );
445 __EXCEPT(unhandled_exception_filter)
447 NtTerminateThread( GetCurrentThread(), GetExceptionCode() );
452 call_thread_func( func, arg );
456 /***********************************************************************
457 * RtlCreateUserThread (NTDLL.@)
459 NTSTATUS WINAPI RtlCreateUserThread( HANDLE process, const SECURITY_DESCRIPTOR *descr,
460 BOOLEAN suspended, PVOID stack_addr,
461 SIZE_T stack_reserve, SIZE_T stack_commit,
462 PRTL_THREAD_START_ROUTINE start, void *param,
463 HANDLE *handle_ptr, CLIENT_ID *id )
466 struct ntdll_thread_data *thread_data = NULL;
467 struct ntdll_thread_regs *thread_regs;
468 struct startup_info *info = NULL;
475 SIZE_T size, page_size = getpagesize();
477 if (process != NtCurrentProcess())
482 memset( &call, 0, sizeof(call) );
484 call.create_thread.type = APC_CREATE_THREAD;
485 call.create_thread.func = start;
486 call.create_thread.arg = param;
487 call.create_thread.reserve = stack_reserve;
488 call.create_thread.commit = stack_commit;
489 call.create_thread.suspend = suspended;
490 status = NTDLL_queue_process_apc( process, &call, &result );
491 if (status != STATUS_SUCCESS) return status;
493 if (result.create_thread.status == STATUS_SUCCESS)
495 if (id) id->UniqueThread = ULongToHandle(result.create_thread.tid);
496 if (handle_ptr) *handle_ptr = result.create_thread.handle;
497 else NtClose( result.create_thread.handle );
499 return result.create_thread.status;
502 if (pipe( request_pipe ) == -1) return STATUS_TOO_MANY_OPENED_FILES;
503 fcntl( request_pipe[1], F_SETFD, 1 ); /* set close on exec flag */
504 wine_server_send_fd( request_pipe[0] );
506 SERVER_START_REQ( new_thread )
508 req->access = THREAD_ALL_ACCESS;
509 req->attributes = 0; /* FIXME */
510 req->suspend = suspended;
511 req->request_fd = request_pipe[0];
512 if (!(status = wine_server_call( req )))
514 handle = reply->handle;
517 close( request_pipe[0] );
523 close( request_pipe[1] );
527 pthread_functions.sigprocmask( SIG_BLOCK, &server_block_set, &sigset );
530 size = sigstack_total_size;
531 if ((status = NtAllocateVirtualMemory( NtCurrentProcess(), &addr, sigstack_zero_bits,
532 &size, MEM_COMMIT | MEM_TOP_DOWN, PAGE_READWRITE )))
535 teb->Peb = NtCurrentTeb()->Peb;
536 info = (struct startup_info *)(teb + 1);
537 info->pthread_info.teb_size = size;
538 if ((status = init_teb( teb ))) goto error;
540 teb->ClientId.UniqueProcess = ULongToHandle(GetCurrentProcessId());
541 teb->ClientId.UniqueThread = ULongToHandle(tid);
543 thread_data = (struct ntdll_thread_data *)teb->SystemReserved2;
544 thread_regs = (struct ntdll_thread_regs *)teb->SpareBytes1;
545 thread_data->request_fd = request_pipe[1];
547 info->pthread_info.teb_base = teb;
548 info->pthread_info.teb_sel = thread_data->fs;
550 /* inherit debug registers from parent thread */
551 thread_regs->dr0 = ntdll_get_thread_regs()->dr0;
552 thread_regs->dr1 = ntdll_get_thread_regs()->dr1;
553 thread_regs->dr2 = ntdll_get_thread_regs()->dr2;
554 thread_regs->dr3 = ntdll_get_thread_regs()->dr3;
555 thread_regs->dr6 = ntdll_get_thread_regs()->dr6;
556 thread_regs->dr7 = ntdll_get_thread_regs()->dr7;
558 if (!stack_reserve || !stack_commit)
560 IMAGE_NT_HEADERS *nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress );
561 if (!stack_reserve) stack_reserve = nt->OptionalHeader.SizeOfStackReserve;
562 if (!stack_commit) stack_commit = nt->OptionalHeader.SizeOfStackCommit;
564 if (stack_reserve < stack_commit) stack_reserve = stack_commit;
565 stack_reserve += page_size; /* for the guard page */
566 stack_reserve = (stack_reserve + 0xffff) & ~0xffff; /* round to 64K boundary */
567 if (stack_reserve < 1024 * 1024) stack_reserve = 1024 * 1024; /* Xlib needs a large stack */
569 info->pthread_info.stack_base = NULL;
570 info->pthread_info.stack_size = stack_reserve;
571 info->pthread_info.entry = start_thread;
572 info->entry_point = start;
573 info->entry_arg = param;
575 if (pthread_functions.create_thread( &info->pthread_info ) == -1)
577 status = STATUS_NO_MEMORY;
580 pthread_functions.sigprocmask( SIG_SETMASK, &sigset, NULL );
582 if (id) id->UniqueThread = ULongToHandle(tid);
583 if (handle_ptr) *handle_ptr = handle;
584 else NtClose( handle );
586 return STATUS_SUCCESS;
589 if (thread_data) wine_ldt_free_fs( thread_data->fs );
593 NtFreeVirtualMemory( NtCurrentProcess(), &addr, &size, MEM_RELEASE );
595 if (handle) NtClose( handle );
596 pthread_functions.sigprocmask( SIG_SETMASK, &sigset, NULL );
597 close( request_pipe[1] );
602 /***********************************************************************
603 * RtlExitUserThread (NTDLL.@)
605 void WINAPI RtlExitUserThread( ULONG status )
608 server_exit_thread( status );
612 /***********************************************************************
613 * NtOpenThread (NTDLL.@)
614 * ZwOpenThread (NTDLL.@)
616 NTSTATUS WINAPI NtOpenThread( HANDLE *handle, ACCESS_MASK access,
617 const OBJECT_ATTRIBUTES *attr, const CLIENT_ID *id )
621 SERVER_START_REQ( open_thread )
623 req->tid = HandleToULong(id->UniqueThread);
624 req->access = access;
625 req->attributes = attr ? attr->Attributes : 0;
626 ret = wine_server_call( req );
627 *handle = reply->handle;
634 /******************************************************************************
635 * NtSuspendThread (NTDLL.@)
636 * ZwSuspendThread (NTDLL.@)
638 NTSTATUS WINAPI NtSuspendThread( HANDLE handle, PULONG count )
642 SERVER_START_REQ( suspend_thread )
644 req->handle = handle;
645 if (!(ret = wine_server_call( req ))) *count = reply->count;
652 /******************************************************************************
653 * NtResumeThread (NTDLL.@)
654 * ZwResumeThread (NTDLL.@)
656 NTSTATUS WINAPI NtResumeThread( HANDLE handle, PULONG count )
660 SERVER_START_REQ( resume_thread )
662 req->handle = handle;
663 if (!(ret = wine_server_call( req ))) *count = reply->count;
670 /******************************************************************************
671 * NtAlertResumeThread (NTDLL.@)
672 * ZwAlertResumeThread (NTDLL.@)
674 NTSTATUS WINAPI NtAlertResumeThread( HANDLE handle, PULONG count )
676 FIXME( "stub: should alert thread %p\n", handle );
677 return NtResumeThread( handle, count );
681 /******************************************************************************
682 * NtAlertThread (NTDLL.@)
683 * ZwAlertThread (NTDLL.@)
685 NTSTATUS WINAPI NtAlertThread( HANDLE handle )
687 FIXME( "stub: %p\n", handle );
688 return STATUS_NOT_IMPLEMENTED;
692 /******************************************************************************
693 * NtTerminateThread (NTDLL.@)
694 * ZwTerminateThread (NTDLL.@)
696 NTSTATUS WINAPI NtTerminateThread( HANDLE handle, LONG exit_code )
701 SERVER_START_REQ( terminate_thread )
703 req->handle = handle;
704 req->exit_code = exit_code;
705 ret = wine_server_call( req );
706 self = !ret && reply->self;
713 if (last) exit( exit_code );
714 else server_abort_thread( exit_code );
720 /******************************************************************************
721 * NtQueueApcThread (NTDLL.@)
723 NTSTATUS WINAPI NtQueueApcThread( HANDLE handle, PNTAPCFUNC func, ULONG_PTR arg1,
724 ULONG_PTR arg2, ULONG_PTR arg3 )
727 SERVER_START_REQ( queue_apc )
729 req->thread = handle;
732 req->call.type = APC_USER;
733 req->call.user.func = func;
734 req->call.user.args[0] = arg1;
735 req->call.user.args[1] = arg2;
736 req->call.user.args[2] = arg3;
738 else req->call.type = APC_NONE; /* wake up only */
739 ret = wine_server_call( req );
746 /***********************************************************************
747 * NtSetContextThread (NTDLL.@)
748 * ZwSetContextThread (NTDLL.@)
750 NTSTATUS WINAPI NtSetContextThread( HANDLE handle, const CONTEXT *context )
757 /* on i386 debug registers always require a server call */
758 self = (handle == GetCurrentThread());
759 if (self && (context->ContextFlags & (CONTEXT_DEBUG_REGISTERS & ~CONTEXT_i386)))
761 struct ntdll_thread_regs * const regs = ntdll_get_thread_regs();
762 self = (regs->dr0 == context->Dr0 && regs->dr1 == context->Dr1 &&
763 regs->dr2 == context->Dr2 && regs->dr3 == context->Dr3 &&
764 regs->dr6 == context->Dr6 && regs->dr7 == context->Dr7);
770 SERVER_START_REQ( set_thread_context )
772 req->handle = handle;
773 req->flags = context->ContextFlags;
775 wine_server_add_data( req, context, sizeof(*context) );
776 ret = wine_server_call( req );
781 if (ret == STATUS_PENDING)
783 if (NtSuspendThread( handle, &dummy ) == STATUS_SUCCESS)
785 for (i = 0; i < 100; i++)
787 SERVER_START_REQ( set_thread_context )
789 req->handle = handle;
790 req->flags = context->ContextFlags;
792 wine_server_add_data( req, context, sizeof(*context) );
793 ret = wine_server_call( req );
796 if (ret == STATUS_PENDING)
798 LARGE_INTEGER timeout;
799 timeout.QuadPart = -10000;
800 NtDelayExecution( FALSE, &timeout );
804 NtResumeThread( handle, &dummy );
806 if (ret == STATUS_PENDING) ret = STATUS_ACCESS_DENIED;
812 if (self) set_cpu_context( context );
813 return STATUS_SUCCESS;
817 /* copy a context structure according to the flags */
818 static inline void copy_context( CONTEXT *to, const CONTEXT *from, DWORD flags )
821 flags &= ~CONTEXT_i386; /* get rid of CPU id */
822 if (flags & CONTEXT_INTEGER)
831 if (flags & CONTEXT_CONTROL)
836 to->SegCs = from->SegCs;
837 to->SegSs = from->SegSs;
838 to->EFlags = from->EFlags;
840 if (flags & CONTEXT_SEGMENTS)
842 to->SegDs = from->SegDs;
843 to->SegEs = from->SegEs;
844 to->SegFs = from->SegFs;
845 to->SegGs = from->SegGs;
847 if (flags & CONTEXT_DEBUG_REGISTERS)
856 if (flags & CONTEXT_FLOATING_POINT)
858 to->FloatSave = from->FloatSave;
860 if (flags & CONTEXT_EXTENDED_REGISTERS)
862 memcpy( to->ExtendedRegisters, from->ExtendedRegisters, sizeof(to->ExtendedRegisters) );
864 #elif defined(__x86_64__)
865 flags &= ~CONTEXT_AMD64; /* get rid of CPU id */
866 if (flags & CONTEXT_CONTROL)
871 to->SegCs = from->SegCs;
872 to->SegSs = from->SegSs;
873 to->EFlags = from->EFlags;
874 to->MxCsr = from->MxCsr;
876 if (flags & CONTEXT_INTEGER)
893 if (flags & CONTEXT_SEGMENTS)
895 to->SegDs = from->SegDs;
896 to->SegEs = from->SegEs;
897 to->SegFs = from->SegFs;
898 to->SegGs = from->SegGs;
900 if (flags & CONTEXT_FLOATING_POINT)
902 to->u.FltSave = from->u.FltSave;
904 if (flags & CONTEXT_DEBUG_REGISTERS)
913 #elif defined(__sparc__)
914 flags &= ~CONTEXT_SPARC; /* get rid of CPU id */
915 if (flags & CONTEXT_CONTROL)
924 if (flags & CONTEXT_INTEGER)
959 if (flags & CONTEXT_FLOATING_POINT)
963 #elif defined(__powerpc__)
965 if (flags & CONTEXT_CONTROL)
971 if (flags & CONTEXT_INTEGER)
973 to->Gpr0 = from->Gpr0;
974 to->Gpr1 = from->Gpr1;
975 to->Gpr2 = from->Gpr2;
976 to->Gpr3 = from->Gpr3;
977 to->Gpr4 = from->Gpr4;
978 to->Gpr5 = from->Gpr5;
979 to->Gpr6 = from->Gpr6;
980 to->Gpr7 = from->Gpr7;
981 to->Gpr8 = from->Gpr8;
982 to->Gpr9 = from->Gpr9;
983 to->Gpr10 = from->Gpr10;
984 to->Gpr11 = from->Gpr11;
985 to->Gpr12 = from->Gpr12;
986 to->Gpr13 = from->Gpr13;
987 to->Gpr14 = from->Gpr14;
988 to->Gpr15 = from->Gpr15;
989 to->Gpr16 = from->Gpr16;
990 to->Gpr17 = from->Gpr17;
991 to->Gpr18 = from->Gpr18;
992 to->Gpr19 = from->Gpr19;
993 to->Gpr20 = from->Gpr20;
994 to->Gpr21 = from->Gpr21;
995 to->Gpr22 = from->Gpr22;
996 to->Gpr23 = from->Gpr23;
997 to->Gpr24 = from->Gpr24;
998 to->Gpr25 = from->Gpr25;
999 to->Gpr26 = from->Gpr26;
1000 to->Gpr27 = from->Gpr27;
1001 to->Gpr28 = from->Gpr28;
1002 to->Gpr29 = from->Gpr29;
1003 to->Gpr30 = from->Gpr30;
1004 to->Gpr31 = from->Gpr31;
1005 to->Xer = from->Xer;
1008 if (flags & CONTEXT_FLOATING_POINT)
1010 to->Fpr0 = from->Fpr0;
1011 to->Fpr1 = from->Fpr1;
1012 to->Fpr2 = from->Fpr2;
1013 to->Fpr3 = from->Fpr3;
1014 to->Fpr4 = from->Fpr4;
1015 to->Fpr5 = from->Fpr5;
1016 to->Fpr6 = from->Fpr6;
1017 to->Fpr7 = from->Fpr7;
1018 to->Fpr8 = from->Fpr8;
1019 to->Fpr9 = from->Fpr9;
1020 to->Fpr10 = from->Fpr10;
1021 to->Fpr11 = from->Fpr11;
1022 to->Fpr12 = from->Fpr12;
1023 to->Fpr13 = from->Fpr13;
1024 to->Fpr14 = from->Fpr14;
1025 to->Fpr15 = from->Fpr15;
1026 to->Fpr16 = from->Fpr16;
1027 to->Fpr17 = from->Fpr17;
1028 to->Fpr18 = from->Fpr18;
1029 to->Fpr19 = from->Fpr19;
1030 to->Fpr20 = from->Fpr20;
1031 to->Fpr21 = from->Fpr21;
1032 to->Fpr22 = from->Fpr22;
1033 to->Fpr23 = from->Fpr23;
1034 to->Fpr24 = from->Fpr24;
1035 to->Fpr25 = from->Fpr25;
1036 to->Fpr26 = from->Fpr26;
1037 to->Fpr27 = from->Fpr27;
1038 to->Fpr28 = from->Fpr28;
1039 to->Fpr29 = from->Fpr29;
1040 to->Fpr30 = from->Fpr30;
1041 to->Fpr31 = from->Fpr31;
1042 to->Fpscr = from->Fpscr;
1045 #error You must implement context copying for your CPU
1050 /***********************************************************************
1051 * NtGetContextThread (NTDLL.@)
1052 * ZwGetContextThread (NTDLL.@)
1054 NTSTATUS WINAPI NtGetContextThread( HANDLE handle, CONTEXT *context )
1059 DWORD needed_flags = context->ContextFlags;
1060 BOOL self = (handle == GetCurrentThread());
1063 /* on i386 debug registers always require a server call */
1064 if (context->ContextFlags & (CONTEXT_DEBUG_REGISTERS & ~CONTEXT_i386)) self = FALSE;
1069 SERVER_START_REQ( get_thread_context )
1071 req->handle = handle;
1072 req->flags = context->ContextFlags;
1074 wine_server_set_reply( req, &ctx, sizeof(ctx) );
1075 ret = wine_server_call( req );
1080 if (ret == STATUS_PENDING)
1082 if (NtSuspendThread( handle, &dummy ) == STATUS_SUCCESS)
1084 for (i = 0; i < 100; i++)
1086 SERVER_START_REQ( get_thread_context )
1088 req->handle = handle;
1089 req->flags = context->ContextFlags;
1091 wine_server_set_reply( req, &ctx, sizeof(ctx) );
1092 ret = wine_server_call( req );
1095 if (ret == STATUS_PENDING)
1097 LARGE_INTEGER timeout;
1098 timeout.QuadPart = -10000;
1099 NtDelayExecution( FALSE, &timeout );
1103 NtResumeThread( handle, &dummy );
1105 if (ret == STATUS_PENDING) ret = STATUS_ACCESS_DENIED;
1107 if (ret) return ret;
1108 copy_context( context, &ctx, context->ContextFlags & ctx.ContextFlags );
1109 needed_flags &= ~ctx.ContextFlags;
1116 get_cpu_context( &ctx );
1117 copy_context( context, &ctx, ctx.ContextFlags & needed_flags );
1120 /* update the cached version of the debug registers */
1121 if (context->ContextFlags & (CONTEXT_DEBUG_REGISTERS & ~CONTEXT_i386))
1123 struct ntdll_thread_regs * const regs = ntdll_get_thread_regs();
1124 regs->dr0 = context->Dr0;
1125 regs->dr1 = context->Dr1;
1126 regs->dr2 = context->Dr2;
1127 regs->dr3 = context->Dr3;
1128 regs->dr6 = context->Dr6;
1129 regs->dr7 = context->Dr7;
1133 return STATUS_SUCCESS;
1137 /******************************************************************************
1138 * NtQueryInformationThread (NTDLL.@)
1139 * ZwQueryInformationThread (NTDLL.@)
1141 NTSTATUS WINAPI NtQueryInformationThread( HANDLE handle, THREADINFOCLASS class,
1142 void *data, ULONG length, ULONG *ret_len )
1148 case ThreadBasicInformation:
1150 THREAD_BASIC_INFORMATION info;
1151 const unsigned int affinity_mask = (1 << NtCurrentTeb()->Peb->NumberOfProcessors) - 1;
1153 SERVER_START_REQ( get_thread_info )
1155 req->handle = handle;
1157 if (!(status = wine_server_call( req )))
1159 info.ExitStatus = reply->exit_code;
1160 info.TebBaseAddress = reply->teb;
1161 info.ClientId.UniqueProcess = ULongToHandle(reply->pid);
1162 info.ClientId.UniqueThread = ULongToHandle(reply->tid);
1163 info.AffinityMask = reply->affinity & affinity_mask;
1164 info.Priority = reply->priority;
1165 info.BasePriority = reply->priority; /* FIXME */
1169 if (status == STATUS_SUCCESS)
1171 if (data) memcpy( data, &info, min( length, sizeof(info) ));
1172 if (ret_len) *ret_len = min( length, sizeof(info) );
1178 KERNEL_USER_TIMES kusrt;
1179 /* We need to do a server call to get the creation time or exit time */
1180 /* This works on any thread */
1181 SERVER_START_REQ( get_thread_info )
1183 req->handle = handle;
1185 status = wine_server_call( req );
1186 if (status == STATUS_SUCCESS)
1188 kusrt.CreateTime.QuadPart = reply->creation_time;
1189 kusrt.ExitTime.QuadPart = reply->exit_time;
1193 if (status == STATUS_SUCCESS)
1195 /* We call times(2) for kernel time or user time */
1196 /* We can only (portably) do this for the current thread */
1197 if (handle == GetCurrentThread())
1199 struct tms time_buf;
1200 long clocks_per_sec = sysconf(_SC_CLK_TCK);
1203 kusrt.KernelTime.QuadPart = (ULONGLONG)time_buf.tms_stime * 10000000 / clocks_per_sec;
1204 kusrt.UserTime.QuadPart = (ULONGLONG)time_buf.tms_utime * 10000000 / clocks_per_sec;
1208 static BOOL reported = FALSE;
1210 kusrt.KernelTime.QuadPart = 0;
1211 kusrt.UserTime.QuadPart = 0;
1213 TRACE("Cannot get kerneltime or usertime of other threads\n");
1216 FIXME("Cannot get kerneltime or usertime of other threads\n");
1220 if (data) memcpy( data, &kusrt, min( length, sizeof(kusrt) ));
1221 if (ret_len) *ret_len = min( length, sizeof(kusrt) );
1225 case ThreadDescriptorTableEntry:
1228 THREAD_DESCRIPTOR_INFORMATION* tdi = data;
1229 if (length < sizeof(*tdi))
1230 status = STATUS_INFO_LENGTH_MISMATCH;
1231 else if (!(tdi->Selector & 4)) /* GDT selector */
1233 unsigned sel = tdi->Selector & ~3; /* ignore RPL */
1234 status = STATUS_SUCCESS;
1235 if (!sel) /* null selector */
1236 memset( &tdi->Entry, 0, sizeof(tdi->Entry) );
1239 tdi->Entry.BaseLow = 0;
1240 tdi->Entry.HighWord.Bits.BaseMid = 0;
1241 tdi->Entry.HighWord.Bits.BaseHi = 0;
1242 tdi->Entry.LimitLow = 0xffff;
1243 tdi->Entry.HighWord.Bits.LimitHi = 0xf;
1244 tdi->Entry.HighWord.Bits.Dpl = 3;
1245 tdi->Entry.HighWord.Bits.Sys = 0;
1246 tdi->Entry.HighWord.Bits.Pres = 1;
1247 tdi->Entry.HighWord.Bits.Granularity = 1;
1248 tdi->Entry.HighWord.Bits.Default_Big = 1;
1249 tdi->Entry.HighWord.Bits.Type = 0x12;
1250 /* it has to be one of the system GDT selectors */
1251 if (sel != (wine_get_ds() & ~3) && sel != (wine_get_ss() & ~3))
1253 if (sel == (wine_get_cs() & ~3))
1254 tdi->Entry.HighWord.Bits.Type |= 8; /* code segment */
1255 else status = STATUS_ACCESS_DENIED;
1261 SERVER_START_REQ( get_selector_entry )
1263 req->handle = handle;
1264 req->entry = tdi->Selector >> 3;
1265 status = wine_server_call( req );
1268 if (!(reply->flags & WINE_LDT_FLAGS_ALLOCATED))
1269 status = STATUS_ACCESS_VIOLATION;
1272 wine_ldt_set_base ( &tdi->Entry, (void *)reply->base );
1273 wine_ldt_set_limit( &tdi->Entry, reply->limit );
1274 wine_ldt_set_flags( &tdi->Entry, reply->flags );
1280 if (status == STATUS_SUCCESS && ret_len)
1281 /* yes, that's a bit strange, but it's the way it is */
1282 *ret_len = sizeof(LDT_ENTRY);
1284 status = STATUS_NOT_IMPLEMENTED;
1288 case ThreadAmILastThread:
1290 SERVER_START_REQ(get_thread_info)
1292 req->handle = handle;
1294 status = wine_server_call( req );
1295 if (status == STATUS_SUCCESS)
1297 BOOLEAN last = reply->last;
1298 if (data) memcpy( data, &last, min( length, sizeof(last) ));
1299 if (ret_len) *ret_len = min( length, sizeof(last) );
1305 case ThreadPriority:
1306 case ThreadBasePriority:
1307 case ThreadAffinityMask:
1308 case ThreadImpersonationToken:
1309 case ThreadEnableAlignmentFaultFixup:
1310 case ThreadEventPair_Reusable:
1311 case ThreadQuerySetWin32StartAddress:
1312 case ThreadZeroTlsCell:
1313 case ThreadPerformanceCount:
1314 case ThreadIdealProcessor:
1315 case ThreadPriorityBoost:
1316 case ThreadSetTlsArrayAddress:
1317 case ThreadIsIoPending:
1319 FIXME( "info class %d not supported yet\n", class );
1320 return STATUS_NOT_IMPLEMENTED;
1325 /******************************************************************************
1326 * NtSetInformationThread (NTDLL.@)
1327 * ZwSetInformationThread (NTDLL.@)
1329 NTSTATUS WINAPI NtSetInformationThread( HANDLE handle, THREADINFOCLASS class,
1330 LPCVOID data, ULONG length )
1335 case ThreadZeroTlsCell:
1336 if (handle == GetCurrentThread())
1341 if (length != sizeof(DWORD)) return STATUS_INVALID_PARAMETER;
1342 index = *(const DWORD *)data;
1343 if (index < TLS_MINIMUM_AVAILABLE)
1345 RtlAcquirePebLock();
1346 for (entry = tls_links.Flink; entry != &tls_links; entry = entry->Flink)
1348 TEB *teb = CONTAINING_RECORD(entry, TEB, TlsLinks);
1349 teb->TlsSlots[index] = 0;
1351 RtlReleasePebLock();
1355 index -= TLS_MINIMUM_AVAILABLE;
1356 if (index >= 8 * sizeof(NtCurrentTeb()->Peb->TlsExpansionBitmapBits))
1357 return STATUS_INVALID_PARAMETER;
1358 RtlAcquirePebLock();
1359 for (entry = tls_links.Flink; entry != &tls_links; entry = entry->Flink)
1361 TEB *teb = CONTAINING_RECORD(entry, TEB, TlsLinks);
1362 if (teb->TlsExpansionSlots) teb->TlsExpansionSlots[index] = 0;
1364 RtlReleasePebLock();
1366 return STATUS_SUCCESS;
1368 FIXME( "ZeroTlsCell not supported on other threads\n" );
1369 return STATUS_NOT_IMPLEMENTED;
1371 case ThreadImpersonationToken:
1373 const HANDLE *phToken = data;
1374 if (length != sizeof(HANDLE)) return STATUS_INVALID_PARAMETER;
1375 TRACE("Setting ThreadImpersonationToken handle to %p\n", *phToken );
1376 SERVER_START_REQ( set_thread_info )
1378 req->handle = handle;
1379 req->token = *phToken;
1380 req->mask = SET_THREAD_INFO_TOKEN;
1381 status = wine_server_call( req );
1386 case ThreadBasePriority:
1388 const DWORD *pprio = data;
1389 if (length != sizeof(DWORD)) return STATUS_INVALID_PARAMETER;
1390 SERVER_START_REQ( set_thread_info )
1392 req->handle = handle;
1393 req->priority = *pprio;
1394 req->mask = SET_THREAD_INFO_PRIORITY;
1395 status = wine_server_call( req );
1400 case ThreadAffinityMask:
1402 const DWORD affinity_mask = (1 << NtCurrentTeb()->Peb->NumberOfProcessors) - 1;
1403 const DWORD *paff = data;
1404 if (length != sizeof(DWORD)) return STATUS_INVALID_PARAMETER;
1405 if (*paff & ~affinity_mask) return STATUS_INVALID_PARAMETER;
1406 SERVER_START_REQ( set_thread_info )
1408 req->handle = handle;
1409 req->affinity = *paff;
1410 req->mask = SET_THREAD_INFO_AFFINITY;
1411 status = wine_server_call( req );
1416 case ThreadBasicInformation:
1418 case ThreadPriority:
1419 case ThreadDescriptorTableEntry:
1420 case ThreadEnableAlignmentFaultFixup:
1421 case ThreadEventPair_Reusable:
1422 case ThreadQuerySetWin32StartAddress:
1423 case ThreadPerformanceCount:
1424 case ThreadAmILastThread:
1425 case ThreadIdealProcessor:
1426 case ThreadPriorityBoost:
1427 case ThreadSetTlsArrayAddress:
1428 case ThreadIsIoPending:
1430 FIXME( "info class %d not supported yet\n", class );
1431 return STATUS_NOT_IMPLEMENTED;
1436 /**********************************************************************
1437 * NtCurrentTeb (NTDLL.@)
1439 #if defined(__i386__) && defined(__GNUC__)
1441 __ASM_GLOBAL_FUNC( NtCurrentTeb, ".byte 0x64\n\tmovl 0x18,%eax\n\tret" )
1443 #elif defined(__i386__) && defined(_MSC_VER)
1445 /* Nothing needs to be done. MS C "magically" exports the inline version from winnt.h */
1449 /**********************************************************************/
1451 TEB * WINAPI NtCurrentTeb(void)
1453 return pthread_functions.get_current_teb();
1456 #endif /* __i386__ */