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>
33 #ifdef HAVE_SYS_SYSCALL_H
34 #include <sys/syscall.h>
37 #define NONAMELESSUNION
39 #define WIN32_NO_STATUS
41 #include "wine/library.h"
42 #include "wine/server.h"
43 #include "wine/debug.h"
44 #include "ntdll_misc.h"
46 #include "wine/exception.h"
48 WINE_DEFAULT_DEBUG_CHANNEL(thread
);
49 WINE_DECLARE_DEBUG_CHANNEL(relay
);
51 struct _KUSER_SHARED_DATA
*user_shared_data
= NULL
;
53 PUNHANDLED_EXCEPTION_FILTER unhandled_exception_filter
= NULL
;
55 /* info passed to a starting thread */
59 PRTL_THREAD_START_ROUTINE entry_point
;
64 static PEB_LDR_DATA ldr
;
65 static RTL_USER_PROCESS_PARAMETERS params
; /* default parameters if no parent */
66 static WCHAR current_dir
[MAX_NT_PATH_LENGTH
];
67 static RTL_BITMAP tls_bitmap
;
68 static RTL_BITMAP tls_expansion_bitmap
;
69 static RTL_BITMAP fls_bitmap
;
70 static int nb_threads
= 1;
72 /***********************************************************************
75 * Copy a unicode string from the startup info.
77 static inline void get_unicode_string( UNICODE_STRING
*str
, WCHAR
**src
, WCHAR
**dst
, UINT len
)
81 str
->MaximumLength
= len
+ sizeof(WCHAR
);
82 memcpy( str
->Buffer
, *src
, len
);
83 str
->Buffer
[len
/ sizeof(WCHAR
)] = 0;
84 *src
+= len
/ sizeof(WCHAR
);
85 *dst
+= len
/ sizeof(WCHAR
) + 1;
88 /***********************************************************************
89 * init_user_process_params
91 * Fill the RTL_USER_PROCESS_PARAMETERS structure from the server.
93 static NTSTATUS
init_user_process_params( SIZE_T data_size
, HANDLE
*exe_file
)
97 SIZE_T info_size
, env_size
, size
, alloc_size
;
100 RTL_USER_PROCESS_PARAMETERS
*params
= NULL
;
102 if (!(info
= RtlAllocateHeap( GetProcessHeap(), 0, data_size
)))
103 return STATUS_NO_MEMORY
;
105 SERVER_START_REQ( get_startup_info
)
107 wine_server_set_reply( req
, info
, data_size
);
108 if (!(status
= wine_server_call( req
)))
110 data_size
= wine_server_reply_size( reply
);
111 info_size
= reply
->info_size
;
112 env_size
= data_size
- info_size
;
113 *exe_file
= wine_server_ptr_handle( reply
->exe_file
);
117 if (status
!= STATUS_SUCCESS
) goto done
;
119 size
= sizeof(*params
);
120 size
+= MAX_NT_PATH_LENGTH
* sizeof(WCHAR
);
121 size
+= info
->dllpath_len
+ sizeof(WCHAR
);
122 size
+= info
->imagepath_len
+ sizeof(WCHAR
);
123 size
+= info
->cmdline_len
+ sizeof(WCHAR
);
124 size
+= info
->title_len
+ sizeof(WCHAR
);
125 size
+= info
->desktop_len
+ sizeof(WCHAR
);
126 size
+= info
->shellinfo_len
+ sizeof(WCHAR
);
127 size
+= info
->runtime_len
+ sizeof(WCHAR
);
130 status
= NtAllocateVirtualMemory( NtCurrentProcess(), (void **)¶ms
, 0, &alloc_size
,
131 MEM_COMMIT
, PAGE_READWRITE
);
132 if (status
!= STATUS_SUCCESS
) goto done
;
134 NtCurrentTeb()->Peb
->ProcessParameters
= params
;
135 params
->AllocationSize
= alloc_size
;
137 params
->Flags
= PROCESS_PARAMS_FLAG_NORMALIZED
;
138 params
->DebugFlags
= info
->debug_flags
;
139 params
->ConsoleHandle
= wine_server_ptr_handle( info
->console
);
140 params
->ConsoleFlags
= info
->console_flags
;
141 params
->hStdInput
= wine_server_ptr_handle( info
->hstdin
);
142 params
->hStdOutput
= wine_server_ptr_handle( info
->hstdout
);
143 params
->hStdError
= wine_server_ptr_handle( info
->hstderr
);
144 params
->dwX
= info
->x
;
145 params
->dwY
= info
->y
;
146 params
->dwXSize
= info
->xsize
;
147 params
->dwYSize
= info
->ysize
;
148 params
->dwXCountChars
= info
->xchars
;
149 params
->dwYCountChars
= info
->ychars
;
150 params
->dwFillAttribute
= info
->attribute
;
151 params
->dwFlags
= info
->flags
;
152 params
->wShowWindow
= info
->show
;
154 src
= (WCHAR
*)(info
+ 1);
155 dst
= (WCHAR
*)(params
+ 1);
157 /* current directory needs more space */
158 get_unicode_string( ¶ms
->CurrentDirectory
.DosPath
, &src
, &dst
, info
->curdir_len
);
159 params
->CurrentDirectory
.DosPath
.MaximumLength
= MAX_NT_PATH_LENGTH
* sizeof(WCHAR
);
160 dst
= (WCHAR
*)(params
+ 1) + MAX_NT_PATH_LENGTH
;
162 get_unicode_string( ¶ms
->DllPath
, &src
, &dst
, info
->dllpath_len
);
163 get_unicode_string( ¶ms
->ImagePathName
, &src
, &dst
, info
->imagepath_len
);
164 get_unicode_string( ¶ms
->CommandLine
, &src
, &dst
, info
->cmdline_len
);
165 get_unicode_string( ¶ms
->WindowTitle
, &src
, &dst
, info
->title_len
);
166 get_unicode_string( ¶ms
->Desktop
, &src
, &dst
, info
->desktop_len
);
167 get_unicode_string( ¶ms
->ShellInfo
, &src
, &dst
, info
->shellinfo_len
);
169 /* runtime info isn't a real string */
170 params
->RuntimeInfo
.Buffer
= dst
;
171 params
->RuntimeInfo
.Length
= params
->RuntimeInfo
.MaximumLength
= info
->runtime_len
;
172 memcpy( dst
, src
, info
->runtime_len
);
174 /* environment needs to be a separate memory block */
176 alloc_size
= max( 1, env_size
);
177 status
= NtAllocateVirtualMemory( NtCurrentProcess(), &ptr
, 0, &alloc_size
,
178 MEM_COMMIT
, PAGE_READWRITE
);
179 if (status
!= STATUS_SUCCESS
) goto done
;
180 memcpy( ptr
, (char *)info
+ info_size
, env_size
);
181 params
->Environment
= ptr
;
184 RtlFreeHeap( GetProcessHeap(), 0, info
);
189 #include <mach/mach.h>
190 #include <mach/mach_error.h>
192 static ULONG
get_dyld_image_info_addr(void)
195 #ifdef TASK_DYLD_INFO
196 struct task_dyld_info dyld_info
;
197 mach_msg_type_number_t size
= TASK_DYLD_INFO_COUNT
;
198 if (task_info(mach_task_self(), TASK_DYLD_INFO
, (task_info_t
)&dyld_info
, &size
) == KERN_SUCCESS
)
199 ret
= dyld_info
.all_image_info_addr
;
203 #endif /* __APPLE__ */
205 /***********************************************************************
208 * Setup the initial thread.
210 * NOTES: The first allocated TEB on NT is at 0x7ffde000.
212 HANDLE
thread_init(void)
216 SIZE_T size
, info_size
;
220 struct ntdll_thread_data
*thread_data
;
221 static struct debug_info debug_info
; /* debug info for initial thread */
225 /* reserve space for shared user data */
227 addr
= (void *)0x7ffe0000;
229 status
= NtAllocateVirtualMemory( NtCurrentProcess(), &addr
, 0, &size
,
230 MEM_RESERVE
|MEM_COMMIT
, PAGE_READWRITE
);
233 MESSAGE( "wine: failed to map the shared user data: %08x\n", status
);
236 user_shared_data
= addr
;
238 /* allocate and initialize the PEB */
242 NtAllocateVirtualMemory( NtCurrentProcess(), &addr
, 1, &size
,
243 MEM_COMMIT
| MEM_TOP_DOWN
, PAGE_READWRITE
);
246 peb
->ProcessParameters
= ¶ms
;
247 peb
->TlsBitmap
= &tls_bitmap
;
248 peb
->TlsExpansionBitmap
= &tls_expansion_bitmap
;
249 peb
->FlsBitmap
= &fls_bitmap
;
251 params
.CurrentDirectory
.DosPath
.Buffer
= current_dir
;
252 params
.CurrentDirectory
.DosPath
.MaximumLength
= sizeof(current_dir
);
253 params
.wShowWindow
= 1; /* SW_SHOWNORMAL */
254 ldr
.Length
= sizeof(ldr
);
255 RtlInitializeBitMap( &tls_bitmap
, peb
->TlsBitmapBits
, sizeof(peb
->TlsBitmapBits
) * 8 );
256 RtlInitializeBitMap( &tls_expansion_bitmap
, peb
->TlsExpansionBitmapBits
,
257 sizeof(peb
->TlsExpansionBitmapBits
) * 8 );
258 RtlInitializeBitMap( &fls_bitmap
, peb
->FlsBitmapBits
, sizeof(peb
->FlsBitmapBits
) * 8 );
259 RtlSetBits( peb
->TlsBitmap
, 0, 1 ); /* TLS index 0 is reserved and should be initialized to NULL. */
260 RtlSetBits( peb
->FlsBitmap
, 0, 1 );
261 InitializeListHead( &peb
->FlsListHead
);
262 InitializeListHead( &ldr
.InLoadOrderModuleList
);
263 InitializeListHead( &ldr
.InMemoryOrderModuleList
);
264 InitializeListHead( &ldr
.InInitializationOrderModuleList
);
266 peb
->Reserved
[0] = get_dyld_image_info_addr();
269 /* allocate and initialize the initial TEB */
271 signal_alloc_thread( &teb
);
273 teb
->Tib
.StackBase
= (void *)~0UL;
274 teb
->StaticUnicodeString
.Buffer
= teb
->StaticUnicodeBuffer
;
275 teb
->StaticUnicodeString
.MaximumLength
= sizeof(teb
->StaticUnicodeBuffer
);
277 thread_data
= (struct ntdll_thread_data
*)teb
->SpareBytes1
;
278 thread_data
->request_fd
= -1;
279 thread_data
->reply_fd
= -1;
280 thread_data
->wait_fd
[0] = -1;
281 thread_data
->wait_fd
[1] = -1;
282 thread_data
->debug_info
= &debug_info
;
283 InsertHeadList( &tls_links
, &teb
->TlsLinks
);
285 signal_init_thread( teb
);
286 virtual_init_threading();
288 debug_info
.str_pos
= debug_info
.strings
;
289 debug_info
.out_pos
= debug_info
.output
;
292 /* setup the server connection */
293 server_init_process();
294 info_size
= server_init_thread( peb
);
296 /* create the process heap */
297 if (!(peb
->ProcessHeap
= RtlCreateHeap( HEAP_GROWABLE
, NULL
, 0, 0, NULL
, NULL
)))
299 MESSAGE( "wine: failed to create the process heap\n" );
303 /* allocate user parameters */
306 init_user_process_params( info_size
, &exe_file
);
310 if (isatty(0) || isatty(1) || isatty(2))
311 params
.ConsoleHandle
= (HANDLE
)2; /* see kernel32/kernel_private.h */
313 wine_server_fd_to_handle( 0, GENERIC_READ
|SYNCHRONIZE
, OBJ_INHERIT
, ¶ms
.hStdInput
);
315 wine_server_fd_to_handle( 1, GENERIC_WRITE
|SYNCHRONIZE
, OBJ_INHERIT
, ¶ms
.hStdOutput
);
317 wine_server_fd_to_handle( 2, GENERIC_WRITE
|SYNCHRONIZE
, OBJ_INHERIT
, ¶ms
.hStdError
);
320 /* initialize time values in user_shared_data */
321 NtQuerySystemTime( &now
);
322 user_shared_data
->SystemTime
.LowPart
= now
.u
.LowPart
;
323 user_shared_data
->SystemTime
.High1Time
= user_shared_data
->SystemTime
.High2Time
= now
.u
.HighPart
;
324 user_shared_data
->u
.TickCountQuad
= (now
.QuadPart
- server_start_time
) / 10000;
325 user_shared_data
->u
.TickCount
.High2Time
= user_shared_data
->u
.TickCount
.High1Time
;
326 user_shared_data
->TickCountLowDeprecated
= user_shared_data
->u
.TickCount
.LowPart
;
327 user_shared_data
->TickCountMultiplier
= 1 << 24;
331 NtCreateKeyedEvent( &keyed_event
, GENERIC_READ
| GENERIC_WRITE
, NULL
, 0 );
337 /***********************************************************************
340 void terminate_thread( int status
)
342 pthread_sigmask( SIG_BLOCK
, &server_block_set
, NULL
);
343 if (interlocked_xchg_add( &nb_threads
, -1 ) <= 1) _exit( status
);
345 close( ntdll_get_thread_data()->wait_fd
[0] );
346 close( ntdll_get_thread_data()->wait_fd
[1] );
347 close( ntdll_get_thread_data()->reply_fd
);
348 close( ntdll_get_thread_data()->request_fd
);
349 pthread_exit( UIntToPtr(status
) );
353 /***********************************************************************
356 void exit_thread( int status
)
358 static void *prev_teb
;
361 if (status
) /* send the exit code to the server (0 is already the default) */
363 SERVER_START_REQ( terminate_thread
)
365 req
->handle
= wine_server_obj_handle( GetCurrentThread() );
366 req
->exit_code
= status
;
367 wine_server_call( req
);
372 if (interlocked_xchg_add( &nb_threads
, -1 ) <= 1)
374 LdrShutdownProcess();
379 RtlFreeThreadActivationContextStack();
381 pthread_sigmask( SIG_BLOCK
, &server_block_set
, NULL
);
383 if ((teb
= interlocked_xchg_ptr( &prev_teb
, NtCurrentTeb() )))
385 struct ntdll_thread_data
*thread_data
= (struct ntdll_thread_data
*)teb
->SpareBytes1
;
387 if (thread_data
->pthread_id
)
389 pthread_join( thread_data
->pthread_id
, NULL
);
390 signal_free_thread( teb
);
394 close( ntdll_get_thread_data()->wait_fd
[0] );
395 close( ntdll_get_thread_data()->wait_fd
[1] );
396 close( ntdll_get_thread_data()->reply_fd
);
397 close( ntdll_get_thread_data()->request_fd
);
398 pthread_exit( UIntToPtr(status
) );
402 /***********************************************************************
405 * Startup routine for a newly created thread.
407 static void start_thread( struct startup_info
*info
)
409 TEB
*teb
= info
->teb
;
410 struct ntdll_thread_data
*thread_data
= (struct ntdll_thread_data
*)teb
->SpareBytes1
;
411 PRTL_THREAD_START_ROUTINE func
= info
->entry_point
;
412 void *arg
= info
->entry_arg
;
413 struct debug_info debug_info
;
415 debug_info
.str_pos
= debug_info
.strings
;
416 debug_info
.out_pos
= debug_info
.output
;
417 thread_data
->debug_info
= &debug_info
;
418 thread_data
->pthread_id
= pthread_self();
420 signal_init_thread( teb
);
421 server_init_thread( func
);
422 pthread_sigmask( SIG_UNBLOCK
, &server_block_set
, NULL
);
424 MODULE_DllThreadAttach( NULL
);
427 DPRINTF( "%04x:Starting thread proc %p (arg=%p)\n", GetCurrentThreadId(), func
, arg
);
429 call_thread_entry_point( (LPTHREAD_START_ROUTINE
)func
, arg
);
433 /***********************************************************************
434 * RtlCreateUserThread (NTDLL.@)
436 NTSTATUS WINAPI
RtlCreateUserThread( HANDLE process
, const SECURITY_DESCRIPTOR
*descr
,
437 BOOLEAN suspended
, PVOID stack_addr
,
438 SIZE_T stack_reserve
, SIZE_T stack_commit
,
439 PRTL_THREAD_START_ROUTINE start
, void *param
,
440 HANDLE
*handle_ptr
, CLIENT_ID
*id
)
443 pthread_t pthread_id
;
445 struct ntdll_thread_data
*thread_data
;
446 struct startup_info
*info
= NULL
;
447 HANDLE handle
= 0, actctx
= 0;
453 if (process
!= NtCurrentProcess())
458 memset( &call
, 0, sizeof(call
) );
460 call
.create_thread
.type
= APC_CREATE_THREAD
;
461 call
.create_thread
.func
= wine_server_client_ptr( start
);
462 call
.create_thread
.arg
= wine_server_client_ptr( param
);
463 call
.create_thread
.reserve
= stack_reserve
;
464 call
.create_thread
.commit
= stack_commit
;
465 call
.create_thread
.suspend
= suspended
;
466 status
= server_queue_process_apc( process
, &call
, &result
);
467 if (status
!= STATUS_SUCCESS
) return status
;
469 if (result
.create_thread
.status
== STATUS_SUCCESS
)
471 if (id
) id
->UniqueThread
= ULongToHandle(result
.create_thread
.tid
);
472 if (handle_ptr
) *handle_ptr
= wine_server_ptr_handle( result
.create_thread
.handle
);
473 else NtClose( wine_server_ptr_handle( result
.create_thread
.handle
));
475 return result
.create_thread
.status
;
478 if (server_pipe( request_pipe
) == -1) return STATUS_TOO_MANY_OPENED_FILES
;
479 wine_server_send_fd( request_pipe
[0] );
481 SERVER_START_REQ( new_thread
)
483 req
->access
= THREAD_ALL_ACCESS
;
484 req
->attributes
= 0; /* FIXME */
485 req
->suspend
= suspended
;
486 req
->request_fd
= request_pipe
[0];
487 if (!(status
= wine_server_call( req
)))
489 handle
= wine_server_ptr_handle( reply
->handle
);
492 close( request_pipe
[0] );
498 close( request_pipe
[1] );
502 pthread_sigmask( SIG_BLOCK
, &server_block_set
, &sigset
);
504 if ((status
= signal_alloc_thread( &teb
))) goto error
;
506 teb
->Peb
= NtCurrentTeb()->Peb
;
507 teb
->ClientId
.UniqueProcess
= ULongToHandle(GetCurrentProcessId());
508 teb
->ClientId
.UniqueThread
= ULongToHandle(tid
);
509 teb
->StaticUnicodeString
.Buffer
= teb
->StaticUnicodeBuffer
;
510 teb
->StaticUnicodeString
.MaximumLength
= sizeof(teb
->StaticUnicodeBuffer
);
512 /* create default activation context frame for new thread */
513 RtlGetActiveActivationContext(&actctx
);
516 RTL_ACTIVATION_CONTEXT_STACK_FRAME
*frame
;
518 frame
= RtlAllocateHeap(GetProcessHeap(), 0, sizeof(*frame
));
519 frame
->Previous
= NULL
;
520 frame
->ActivationContext
= actctx
;
522 teb
->ActivationContextStack
.ActiveFrame
= frame
;
525 info
= (struct startup_info
*)(teb
+ 1);
527 info
->entry_point
= start
;
528 info
->entry_arg
= param
;
530 thread_data
= (struct ntdll_thread_data
*)teb
->SpareBytes1
;
531 thread_data
->request_fd
= request_pipe
[1];
532 thread_data
->reply_fd
= -1;
533 thread_data
->wait_fd
[0] = -1;
534 thread_data
->wait_fd
[1] = -1;
536 if ((status
= virtual_alloc_thread_stack( teb
, stack_reserve
, stack_commit
))) goto error
;
538 pthread_attr_init( &attr
);
539 pthread_attr_setstack( &attr
, teb
->DeallocationStack
,
540 (char *)teb
->Tib
.StackBase
- (char *)teb
->DeallocationStack
);
541 pthread_attr_setscope( &attr
, PTHREAD_SCOPE_SYSTEM
); /* force creating a kernel thread */
542 interlocked_xchg_add( &nb_threads
, 1 );
543 if (pthread_create( &pthread_id
, &attr
, (void * (*)(void *))start_thread
, info
))
545 interlocked_xchg_add( &nb_threads
, -1 );
546 pthread_attr_destroy( &attr
);
547 status
= STATUS_NO_MEMORY
;
550 pthread_attr_destroy( &attr
);
551 pthread_sigmask( SIG_SETMASK
, &sigset
, NULL
);
553 if (id
) id
->UniqueThread
= ULongToHandle(tid
);
554 if (handle_ptr
) *handle_ptr
= handle
;
555 else NtClose( handle
);
557 return STATUS_SUCCESS
;
560 if (teb
) signal_free_thread( teb
);
561 if (handle
) NtClose( handle
);
562 pthread_sigmask( SIG_SETMASK
, &sigset
, NULL
);
563 close( request_pipe
[1] );
568 /******************************************************************************
569 * RtlGetNtGlobalFlags (NTDLL.@)
571 ULONG WINAPI
RtlGetNtGlobalFlags(void)
573 if (!peb
) return 0; /* init not done yet */
574 return peb
->NtGlobalFlag
;
578 /***********************************************************************
579 * NtOpenThread (NTDLL.@)
580 * ZwOpenThread (NTDLL.@)
582 NTSTATUS WINAPI
NtOpenThread( HANDLE
*handle
, ACCESS_MASK access
,
583 const OBJECT_ATTRIBUTES
*attr
, const CLIENT_ID
*id
)
587 SERVER_START_REQ( open_thread
)
589 req
->tid
= HandleToULong(id
->UniqueThread
);
590 req
->access
= access
;
591 req
->attributes
= attr
? attr
->Attributes
: 0;
592 ret
= wine_server_call( req
);
593 *handle
= wine_server_ptr_handle( reply
->handle
);
600 /******************************************************************************
601 * NtSuspendThread (NTDLL.@)
602 * ZwSuspendThread (NTDLL.@)
604 NTSTATUS WINAPI
NtSuspendThread( HANDLE handle
, PULONG count
)
608 SERVER_START_REQ( suspend_thread
)
610 req
->handle
= wine_server_obj_handle( handle
);
611 if (!(ret
= wine_server_call( req
))) *count
= reply
->count
;
618 /******************************************************************************
619 * NtResumeThread (NTDLL.@)
620 * ZwResumeThread (NTDLL.@)
622 NTSTATUS WINAPI
NtResumeThread( HANDLE handle
, PULONG count
)
626 SERVER_START_REQ( resume_thread
)
628 req
->handle
= wine_server_obj_handle( handle
);
629 if (!(ret
= wine_server_call( req
))) *count
= reply
->count
;
636 /******************************************************************************
637 * NtAlertResumeThread (NTDLL.@)
638 * ZwAlertResumeThread (NTDLL.@)
640 NTSTATUS WINAPI
NtAlertResumeThread( HANDLE handle
, PULONG count
)
642 FIXME( "stub: should alert thread %p\n", handle
);
643 return NtResumeThread( handle
, count
);
647 /******************************************************************************
648 * NtAlertThread (NTDLL.@)
649 * ZwAlertThread (NTDLL.@)
651 NTSTATUS WINAPI
NtAlertThread( HANDLE handle
)
653 FIXME( "stub: %p\n", handle
);
654 return STATUS_NOT_IMPLEMENTED
;
658 /******************************************************************************
659 * NtTerminateThread (NTDLL.@)
660 * ZwTerminateThread (NTDLL.@)
662 NTSTATUS WINAPI
NtTerminateThread( HANDLE handle
, LONG exit_code
)
667 SERVER_START_REQ( terminate_thread
)
669 req
->handle
= wine_server_obj_handle( handle
);
670 req
->exit_code
= exit_code
;
671 ret
= wine_server_call( req
);
672 self
= !ret
&& reply
->self
;
676 if (self
) abort_thread( exit_code
);
681 /******************************************************************************
682 * NtQueueApcThread (NTDLL.@)
684 NTSTATUS WINAPI
NtQueueApcThread( HANDLE handle
, PNTAPCFUNC func
, ULONG_PTR arg1
,
685 ULONG_PTR arg2
, ULONG_PTR arg3
)
688 SERVER_START_REQ( queue_apc
)
690 req
->handle
= wine_server_obj_handle( handle
);
693 req
->call
.type
= APC_USER
;
694 req
->call
.user
.func
= wine_server_client_ptr( func
);
695 req
->call
.user
.args
[0] = arg1
;
696 req
->call
.user
.args
[1] = arg2
;
697 req
->call
.user
.args
[2] = arg3
;
699 else req
->call
.type
= APC_NONE
; /* wake up only */
700 ret
= wine_server_call( req
);
707 /***********************************************************************
708 * NtSetContextThread (NTDLL.@)
709 * ZwSetContextThread (NTDLL.@)
711 NTSTATUS WINAPI
NtSetContextThread( HANDLE handle
, const CONTEXT
*context
)
718 /* on i386 debug registers always require a server call */
719 self
= (handle
== GetCurrentThread());
720 if (self
&& (context
->ContextFlags
& (CONTEXT_DEBUG_REGISTERS
& ~CONTEXT_i386
)))
722 self
= (ntdll_get_thread_data()->dr0
== context
->Dr0
&&
723 ntdll_get_thread_data()->dr1
== context
->Dr1
&&
724 ntdll_get_thread_data()->dr2
== context
->Dr2
&&
725 ntdll_get_thread_data()->dr3
== context
->Dr3
&&
726 ntdll_get_thread_data()->dr6
== context
->Dr6
&&
727 ntdll_get_thread_data()->dr7
== context
->Dr7
);
733 context_t server_context
;
735 context_to_server( &server_context
, context
);
737 SERVER_START_REQ( set_thread_context
)
739 req
->handle
= wine_server_obj_handle( handle
);
741 wine_server_add_data( req
, &server_context
, sizeof(server_context
) );
742 ret
= wine_server_call( req
);
747 if (ret
== STATUS_PENDING
)
749 for (i
= 0; i
< 100; i
++)
751 SERVER_START_REQ( set_thread_context
)
753 req
->handle
= wine_server_obj_handle( handle
);
755 wine_server_add_data( req
, &server_context
, sizeof(server_context
) );
756 ret
= wine_server_call( req
);
759 if (ret
== STATUS_PENDING
)
761 LARGE_INTEGER timeout
;
762 timeout
.QuadPart
= -10000;
763 NtDelayExecution( FALSE
, &timeout
);
767 NtResumeThread( handle
, &dummy
);
768 if (ret
== STATUS_PENDING
) ret
= STATUS_ACCESS_DENIED
;
774 if (self
) set_cpu_context( context
);
775 return STATUS_SUCCESS
;
779 /* convert CPU-specific flags to generic server flags */
780 static inline unsigned int get_server_context_flags( DWORD flags
)
782 unsigned int ret
= 0;
784 flags
&= 0x3f; /* mask CPU id flags */
785 if (flags
& CONTEXT_CONTROL
) ret
|= SERVER_CTX_CONTROL
;
786 if (flags
& CONTEXT_INTEGER
) ret
|= SERVER_CTX_INTEGER
;
787 #ifdef CONTEXT_SEGMENTS
788 if (flags
& CONTEXT_SEGMENTS
) ret
|= SERVER_CTX_SEGMENTS
;
790 #ifdef CONTEXT_FLOATING_POINT
791 if (flags
& CONTEXT_FLOATING_POINT
) ret
|= SERVER_CTX_FLOATING_POINT
;
793 #ifdef CONTEXT_DEBUG_REGISTERS
794 if (flags
& CONTEXT_DEBUG_REGISTERS
) ret
|= SERVER_CTX_DEBUG_REGISTERS
;
796 #ifdef CONTEXT_EXTENDED_REGISTERS
797 if (flags
& CONTEXT_EXTENDED_REGISTERS
) ret
|= SERVER_CTX_EXTENDED_REGISTERS
;
802 /***********************************************************************
803 * NtGetContextThread (NTDLL.@)
804 * ZwGetContextThread (NTDLL.@)
806 NTSTATUS WINAPI
NtGetContextThread( HANDLE handle
, CONTEXT
*context
)
810 DWORD needed_flags
= context
->ContextFlags
;
811 BOOL self
= (handle
== GetCurrentThread());
814 /* on i386 debug registers always require a server call */
815 if (context
->ContextFlags
& (CONTEXT_DEBUG_REGISTERS
& ~CONTEXT_i386
)) self
= FALSE
;
820 unsigned int server_flags
= get_server_context_flags( context
->ContextFlags
);
821 context_t server_context
;
823 SERVER_START_REQ( get_thread_context
)
825 req
->handle
= wine_server_obj_handle( handle
);
826 req
->flags
= server_flags
;
828 wine_server_set_reply( req
, &server_context
, sizeof(server_context
) );
829 ret
= wine_server_call( req
);
834 if (ret
== STATUS_PENDING
)
836 for (i
= 0; i
< 100; i
++)
838 SERVER_START_REQ( get_thread_context
)
840 req
->handle
= wine_server_obj_handle( handle
);
841 req
->flags
= server_flags
;
843 wine_server_set_reply( req
, &server_context
, sizeof(server_context
) );
844 ret
= wine_server_call( req
);
847 if (ret
== STATUS_PENDING
)
849 LARGE_INTEGER timeout
;
850 timeout
.QuadPart
= -10000;
851 NtDelayExecution( FALSE
, &timeout
);
855 NtResumeThread( handle
, &dummy
);
856 if (ret
== STATUS_PENDING
) ret
= STATUS_ACCESS_DENIED
;
858 if (!ret
) ret
= context_from_server( context
, &server_context
);
860 needed_flags
&= ~context
->ContextFlags
;
868 RtlCaptureContext( &ctx
);
869 copy_context( context
, &ctx
, ctx
.ContextFlags
& needed_flags
);
870 context
->ContextFlags
|= ctx
.ContextFlags
& needed_flags
;
873 /* update the cached version of the debug registers */
874 if (context
->ContextFlags
& (CONTEXT_DEBUG_REGISTERS
& ~CONTEXT_i386
))
876 ntdll_get_thread_data()->dr0
= context
->Dr0
;
877 ntdll_get_thread_data()->dr1
= context
->Dr1
;
878 ntdll_get_thread_data()->dr2
= context
->Dr2
;
879 ntdll_get_thread_data()->dr3
= context
->Dr3
;
880 ntdll_get_thread_data()->dr6
= context
->Dr6
;
881 ntdll_get_thread_data()->dr7
= context
->Dr7
;
885 return STATUS_SUCCESS
;
889 /******************************************************************************
890 * NtQueryInformationThread (NTDLL.@)
891 * ZwQueryInformationThread (NTDLL.@)
893 NTSTATUS WINAPI
NtQueryInformationThread( HANDLE handle
, THREADINFOCLASS
class,
894 void *data
, ULONG length
, ULONG
*ret_len
)
900 case ThreadBasicInformation
:
902 THREAD_BASIC_INFORMATION info
;
903 const ULONG_PTR affinity_mask
= ((ULONG_PTR
)1 << NtCurrentTeb()->Peb
->NumberOfProcessors
) - 1;
905 SERVER_START_REQ( get_thread_info
)
907 req
->handle
= wine_server_obj_handle( handle
);
909 if (!(status
= wine_server_call( req
)))
911 info
.ExitStatus
= reply
->exit_code
;
912 info
.TebBaseAddress
= wine_server_get_ptr( reply
->teb
);
913 info
.ClientId
.UniqueProcess
= ULongToHandle(reply
->pid
);
914 info
.ClientId
.UniqueThread
= ULongToHandle(reply
->tid
);
915 info
.AffinityMask
= reply
->affinity
& affinity_mask
;
916 info
.Priority
= reply
->priority
;
917 info
.BasePriority
= reply
->priority
; /* FIXME */
921 if (status
== STATUS_SUCCESS
)
923 if (data
) memcpy( data
, &info
, min( length
, sizeof(info
) ));
924 if (ret_len
) *ret_len
= min( length
, sizeof(info
) );
928 case ThreadAffinityMask
:
930 const ULONG_PTR affinity_mask
= ((ULONG_PTR
)1 << NtCurrentTeb()->Peb
->NumberOfProcessors
) - 1;
931 ULONG_PTR affinity
= 0;
933 SERVER_START_REQ( get_thread_info
)
935 req
->handle
= wine_server_obj_handle( handle
);
937 if (!(status
= wine_server_call( req
)))
938 affinity
= reply
->affinity
& affinity_mask
;
941 if (status
== STATUS_SUCCESS
)
943 if (data
) memcpy( data
, &affinity
, min( length
, sizeof(affinity
) ));
944 if (ret_len
) *ret_len
= min( length
, sizeof(affinity
) );
950 KERNEL_USER_TIMES kusrt
;
951 /* We need to do a server call to get the creation time or exit time */
952 /* This works on any thread */
953 SERVER_START_REQ( get_thread_info
)
955 req
->handle
= wine_server_obj_handle( handle
);
957 status
= wine_server_call( req
);
958 if (status
== STATUS_SUCCESS
)
960 kusrt
.CreateTime
.QuadPart
= reply
->creation_time
;
961 kusrt
.ExitTime
.QuadPart
= reply
->exit_time
;
965 if (status
== STATUS_SUCCESS
)
967 /* We call times(2) for kernel time or user time */
968 /* We can only (portably) do this for the current thread */
969 if (handle
== GetCurrentThread())
972 long clocks_per_sec
= sysconf(_SC_CLK_TCK
);
975 kusrt
.KernelTime
.QuadPart
= (ULONGLONG
)time_buf
.tms_stime
* 10000000 / clocks_per_sec
;
976 kusrt
.UserTime
.QuadPart
= (ULONGLONG
)time_buf
.tms_utime
* 10000000 / clocks_per_sec
;
980 static BOOL reported
= FALSE
;
982 kusrt
.KernelTime
.QuadPart
= 0;
983 kusrt
.UserTime
.QuadPart
= 0;
985 TRACE("Cannot get kerneltime or usertime of other threads\n");
988 FIXME("Cannot get kerneltime or usertime of other threads\n");
992 if (data
) memcpy( data
, &kusrt
, min( length
, sizeof(kusrt
) ));
993 if (ret_len
) *ret_len
= min( length
, sizeof(kusrt
) );
997 case ThreadDescriptorTableEntry
:
1000 THREAD_DESCRIPTOR_INFORMATION
* tdi
= data
;
1001 if (length
< sizeof(*tdi
))
1002 status
= STATUS_INFO_LENGTH_MISMATCH
;
1003 else if (!(tdi
->Selector
& 4)) /* GDT selector */
1005 unsigned sel
= tdi
->Selector
& ~3; /* ignore RPL */
1006 status
= STATUS_SUCCESS
;
1007 if (!sel
) /* null selector */
1008 memset( &tdi
->Entry
, 0, sizeof(tdi
->Entry
) );
1011 tdi
->Entry
.BaseLow
= 0;
1012 tdi
->Entry
.HighWord
.Bits
.BaseMid
= 0;
1013 tdi
->Entry
.HighWord
.Bits
.BaseHi
= 0;
1014 tdi
->Entry
.LimitLow
= 0xffff;
1015 tdi
->Entry
.HighWord
.Bits
.LimitHi
= 0xf;
1016 tdi
->Entry
.HighWord
.Bits
.Dpl
= 3;
1017 tdi
->Entry
.HighWord
.Bits
.Sys
= 0;
1018 tdi
->Entry
.HighWord
.Bits
.Pres
= 1;
1019 tdi
->Entry
.HighWord
.Bits
.Granularity
= 1;
1020 tdi
->Entry
.HighWord
.Bits
.Default_Big
= 1;
1021 tdi
->Entry
.HighWord
.Bits
.Type
= 0x12;
1022 /* it has to be one of the system GDT selectors */
1023 if (sel
!= (wine_get_ds() & ~3) && sel
!= (wine_get_ss() & ~3))
1025 if (sel
== (wine_get_cs() & ~3))
1026 tdi
->Entry
.HighWord
.Bits
.Type
|= 8; /* code segment */
1027 else status
= STATUS_ACCESS_DENIED
;
1033 SERVER_START_REQ( get_selector_entry
)
1035 req
->handle
= wine_server_obj_handle( handle
);
1036 req
->entry
= tdi
->Selector
>> 3;
1037 status
= wine_server_call( req
);
1040 if (!(reply
->flags
& WINE_LDT_FLAGS_ALLOCATED
))
1041 status
= STATUS_ACCESS_VIOLATION
;
1044 wine_ldt_set_base ( &tdi
->Entry
, (void *)reply
->base
);
1045 wine_ldt_set_limit( &tdi
->Entry
, reply
->limit
);
1046 wine_ldt_set_flags( &tdi
->Entry
, reply
->flags
);
1052 if (status
== STATUS_SUCCESS
&& ret_len
)
1053 /* yes, that's a bit strange, but it's the way it is */
1054 *ret_len
= sizeof(LDT_ENTRY
);
1056 status
= STATUS_NOT_IMPLEMENTED
;
1060 case ThreadAmILastThread
:
1062 SERVER_START_REQ(get_thread_info
)
1064 req
->handle
= wine_server_obj_handle( handle
);
1066 status
= wine_server_call( req
);
1067 if (status
== STATUS_SUCCESS
)
1069 BOOLEAN last
= reply
->last
;
1070 if (data
) memcpy( data
, &last
, min( length
, sizeof(last
) ));
1071 if (ret_len
) *ret_len
= min( length
, sizeof(last
) );
1077 case ThreadPriority
:
1078 case ThreadBasePriority
:
1079 case ThreadImpersonationToken
:
1080 case ThreadEnableAlignmentFaultFixup
:
1081 case ThreadEventPair_Reusable
:
1082 case ThreadQuerySetWin32StartAddress
:
1083 case ThreadZeroTlsCell
:
1084 case ThreadPerformanceCount
:
1085 case ThreadIdealProcessor
:
1086 case ThreadPriorityBoost
:
1087 case ThreadSetTlsArrayAddress
:
1088 case ThreadIsIoPending
:
1090 FIXME( "info class %d not supported yet\n", class );
1091 return STATUS_NOT_IMPLEMENTED
;
1096 /******************************************************************************
1097 * NtSetInformationThread (NTDLL.@)
1098 * ZwSetInformationThread (NTDLL.@)
1100 NTSTATUS WINAPI
NtSetInformationThread( HANDLE handle
, THREADINFOCLASS
class,
1101 LPCVOID data
, ULONG length
)
1106 case ThreadZeroTlsCell
:
1107 if (handle
== GetCurrentThread())
1112 if (length
!= sizeof(DWORD
)) return STATUS_INVALID_PARAMETER
;
1113 index
= *(const DWORD
*)data
;
1114 if (index
< TLS_MINIMUM_AVAILABLE
)
1116 RtlAcquirePebLock();
1117 for (entry
= tls_links
.Flink
; entry
!= &tls_links
; entry
= entry
->Flink
)
1119 TEB
*teb
= CONTAINING_RECORD(entry
, TEB
, TlsLinks
);
1120 teb
->TlsSlots
[index
] = 0;
1122 RtlReleasePebLock();
1126 index
-= TLS_MINIMUM_AVAILABLE
;
1127 if (index
>= 8 * sizeof(NtCurrentTeb()->Peb
->TlsExpansionBitmapBits
))
1128 return STATUS_INVALID_PARAMETER
;
1129 RtlAcquirePebLock();
1130 for (entry
= tls_links
.Flink
; entry
!= &tls_links
; entry
= entry
->Flink
)
1132 TEB
*teb
= CONTAINING_RECORD(entry
, TEB
, TlsLinks
);
1133 if (teb
->TlsExpansionSlots
) teb
->TlsExpansionSlots
[index
] = 0;
1135 RtlReleasePebLock();
1137 return STATUS_SUCCESS
;
1139 FIXME( "ZeroTlsCell not supported on other threads\n" );
1140 return STATUS_NOT_IMPLEMENTED
;
1142 case ThreadImpersonationToken
:
1144 const HANDLE
*phToken
= data
;
1145 if (length
!= sizeof(HANDLE
)) return STATUS_INVALID_PARAMETER
;
1146 TRACE("Setting ThreadImpersonationToken handle to %p\n", *phToken
);
1147 SERVER_START_REQ( set_thread_info
)
1149 req
->handle
= wine_server_obj_handle( handle
);
1150 req
->token
= wine_server_obj_handle( *phToken
);
1151 req
->mask
= SET_THREAD_INFO_TOKEN
;
1152 status
= wine_server_call( req
);
1157 case ThreadBasePriority
:
1159 const DWORD
*pprio
= data
;
1160 if (length
!= sizeof(DWORD
)) return STATUS_INVALID_PARAMETER
;
1161 SERVER_START_REQ( set_thread_info
)
1163 req
->handle
= wine_server_obj_handle( handle
);
1164 req
->priority
= *pprio
;
1165 req
->mask
= SET_THREAD_INFO_PRIORITY
;
1166 status
= wine_server_call( req
);
1171 case ThreadAffinityMask
:
1173 const ULONG_PTR affinity_mask
= ((ULONG_PTR
)1 << NtCurrentTeb()->Peb
->NumberOfProcessors
) - 1;
1176 if (length
!= sizeof(ULONG_PTR
)) return STATUS_INVALID_PARAMETER
;
1177 req_aff
= *(const ULONG_PTR
*)data
;
1178 if ((ULONG
)req_aff
== ~0u) req_aff
= affinity_mask
;
1179 else if (req_aff
& ~affinity_mask
) return STATUS_INVALID_PARAMETER
;
1180 else if (!req_aff
) return STATUS_INVALID_PARAMETER
;
1181 SERVER_START_REQ( set_thread_info
)
1183 req
->handle
= wine_server_obj_handle( handle
);
1184 req
->affinity
= req_aff
;
1185 req
->mask
= SET_THREAD_INFO_AFFINITY
;
1186 status
= wine_server_call( req
);
1191 case ThreadHideFromDebugger
:
1192 /* pretend the call succeeded to satisfy some code protectors */
1193 return STATUS_SUCCESS
;
1195 case ThreadBasicInformation
:
1197 case ThreadPriority
:
1198 case ThreadDescriptorTableEntry
:
1199 case ThreadEnableAlignmentFaultFixup
:
1200 case ThreadEventPair_Reusable
:
1201 case ThreadQuerySetWin32StartAddress
:
1202 case ThreadPerformanceCount
:
1203 case ThreadAmILastThread
:
1204 case ThreadIdealProcessor
:
1205 case ThreadPriorityBoost
:
1206 case ThreadSetTlsArrayAddress
:
1207 case ThreadIsIoPending
:
1209 FIXME( "info class %d not supported yet\n", class );
1210 return STATUS_NOT_IMPLEMENTED
;
1214 /******************************************************************************
1215 * NtGetCurrentProcessorNumber (NTDLL.@)
1217 * Return the processor, on which the thread is running
1220 ULONG WINAPI
NtGetCurrentProcessorNumber(void)
1224 #if defined(__linux__) && defined(__NR_getcpu)
1225 int res
= syscall(__NR_getcpu
, &processor
, NULL
, NULL
);
1226 if (res
!= -1) return processor
;
1229 if (NtCurrentTeb()->Peb
->NumberOfProcessors
> 1)
1231 ULONG_PTR thread_mask
, processor_mask
;
1234 status
= NtQueryInformationThread(GetCurrentThread(), ThreadAffinityMask
,
1235 &thread_mask
, sizeof(thread_mask
), NULL
);
1236 if (status
== STATUS_SUCCESS
)
1238 for (processor
= 0; processor
< NtCurrentTeb()->Peb
->NumberOfProcessors
; processor
++)
1240 processor_mask
= (1 << processor
);
1241 if (thread_mask
& processor_mask
)
1243 if (thread_mask
!= processor_mask
)
1244 FIXME("need multicore support (%d processors)\n",
1245 NtCurrentTeb()->Peb
->NumberOfProcessors
);
1252 /* fallback to the first processor */