Allocate the correct nr of bytes for lpszCookies in HTTP_HttpOpenRequestA.
[wine.git] / dlls / kernel / thread.c
blob3c5bbd90fd16af34c3e4ffad14bab415df51db31
1 /*
2 * Win32 threads
4 * Copyright 1996 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <fcntl.h>
26 #include <stdarg.h>
27 #include <signal.h>
28 #include <sys/types.h>
29 #ifdef HAVE_SYS_TIMES_H
30 #include <sys/times.h>
31 #endif
32 #ifdef HAVE_UNISTD_H
33 # include <unistd.h>
34 #endif
36 #include "ntstatus.h"
37 #include "windef.h"
38 #include "winbase.h"
39 #include "winerror.h"
40 #include "winnls.h"
41 #include "module.h"
42 #include "thread.h"
43 #include "wine/winbase16.h"
44 #include "wine/exception.h"
45 #include "wine/library.h"
46 #include "wine/pthread.h"
47 #include "wine/server.h"
48 #include "wine/debug.h"
50 WINE_DEFAULT_DEBUG_CHANNEL(thread);
51 WINE_DECLARE_DEBUG_CHANNEL(relay);
54 /***********************************************************************
55 * THREAD_InitStack
57 * Allocate the stack of a thread.
59 TEB *THREAD_InitStack( TEB *teb, DWORD stack_size )
61 DWORD old_prot;
62 DWORD page_size = getpagesize();
63 void *base;
65 stack_size = (stack_size + (page_size - 1)) & ~(page_size - 1);
66 if (stack_size < 1024 * 1024) stack_size = 1024 * 1024; /* Xlib needs a large stack */
68 if (!(base = VirtualAlloc( NULL, stack_size, MEM_COMMIT, PAGE_EXECUTE_READWRITE )))
69 return NULL;
71 teb->DeallocationStack = base;
72 teb->Tib.StackBase = (char *)base + stack_size;
73 teb->Tib.StackLimit = base; /* note: limit is lower than base since the stack grows down */
75 /* Setup guard pages */
77 VirtualProtect( base, 1, PAGE_EXECUTE_READWRITE | PAGE_GUARD, &old_prot );
78 return teb;
82 struct new_thread_info
84 LPTHREAD_START_ROUTINE func;
85 void *arg;
88 /***********************************************************************
89 * THREAD_Start
91 * Start execution of a newly created thread. Does not return.
93 static void CALLBACK THREAD_Start( void *ptr )
95 struct new_thread_info *info = ptr;
96 LPTHREAD_START_ROUTINE func = info->func;
97 void *arg = info->arg;
99 RtlFreeHeap( GetProcessHeap(), 0, info );
101 if (TRACE_ON(relay))
102 DPRINTF("%04lx:Starting thread (entryproc=%p)\n", GetCurrentThreadId(), func );
104 __TRY
106 MODULE_DllThreadAttach( NULL );
107 ExitThread( func( arg ) );
109 __EXCEPT(UnhandledExceptionFilter)
111 TerminateThread( GetCurrentThread(), GetExceptionCode() );
113 __ENDTRY
117 /***********************************************************************
118 * CreateThread (KERNEL32.@)
120 HANDLE WINAPI CreateThread( SECURITY_ATTRIBUTES *sa, SIZE_T stack,
121 LPTHREAD_START_ROUTINE start, LPVOID param,
122 DWORD flags, LPDWORD id )
124 HANDLE handle;
125 CLIENT_ID client_id;
126 NTSTATUS status;
127 SIZE_T stack_reserve = 0, stack_commit = 0;
128 struct new_thread_info *info;
130 if (!(info = RtlAllocateHeap( GetProcessHeap(), 0, sizeof(*info) )))
132 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
133 return 0;
135 info->func = start;
136 info->arg = param;
138 if (flags & STACK_SIZE_PARAM_IS_A_RESERVATION) stack_reserve = stack;
139 else stack_commit = stack;
141 status = RtlCreateUserThread( GetCurrentProcess(), NULL, (flags & CREATE_SUSPENDED) != 0,
142 NULL, stack_reserve, stack_commit,
143 THREAD_Start, info, &handle, &client_id );
144 if (status == STATUS_SUCCESS)
146 if (id) *id = (DWORD)client_id.UniqueThread;
147 if (sa && (sa->nLength >= sizeof(*sa)) && sa->bInheritHandle)
148 SetHandleInformation( handle, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT );
150 else
152 RtlFreeHeap( GetProcessHeap(), 0, info );
153 SetLastError( RtlNtStatusToDosError(status) );
154 handle = 0;
156 return handle;
160 /***********************************************************************
161 * OpenThread [KERNEL32.@] Retrieves a handle to a thread from its thread id
163 HANDLE WINAPI OpenThread( DWORD dwDesiredAccess, BOOL bInheritHandle, DWORD dwThreadId )
165 HANDLE ret = 0;
166 SERVER_START_REQ( open_thread )
168 req->tid = dwThreadId;
169 req->access = dwDesiredAccess;
170 req->inherit = bInheritHandle;
171 if (!wine_server_call_err( req )) ret = reply->handle;
173 SERVER_END_REQ;
174 return ret;
178 /***********************************************************************
179 * ExitThread [KERNEL32.@] Ends a thread
181 * RETURNS
182 * None
184 void WINAPI ExitThread( DWORD code ) /* [in] Exit code for this thread */
186 BOOL last;
187 SERVER_START_REQ( terminate_thread )
189 /* send the exit code to the server */
190 req->handle = GetCurrentThread();
191 req->exit_code = code;
192 wine_server_call( req );
193 last = reply->last;
195 SERVER_END_REQ;
197 if (last)
199 LdrShutdownProcess();
200 exit( code );
202 else
204 struct wine_pthread_thread_info info;
205 sigset_t block_set;
206 ULONG size;
208 LdrShutdownThread();
209 RtlAcquirePebLock();
210 RemoveEntryList( &NtCurrentTeb()->TlsLinks );
211 RtlReleasePebLock();
213 info.stack_base = NtCurrentTeb()->DeallocationStack;
214 info.teb_base = NtCurrentTeb();
215 info.teb_sel = wine_get_fs();
216 info.exit_status = code;
218 size = 0;
219 NtFreeVirtualMemory( GetCurrentProcess(), &info.stack_base, &size, MEM_RELEASE | MEM_SYSTEM );
220 info.stack_size = size;
222 size = 0;
223 NtFreeVirtualMemory( GetCurrentProcess(), &info.teb_base, &size, MEM_RELEASE | MEM_SYSTEM );
224 info.teb_size = size;
226 /* block the async signals */
227 sigemptyset( &block_set );
228 sigaddset( &block_set, SIGALRM );
229 sigaddset( &block_set, SIGIO );
230 sigaddset( &block_set, SIGINT );
231 sigaddset( &block_set, SIGHUP );
232 sigaddset( &block_set, SIGUSR1 );
233 sigaddset( &block_set, SIGUSR2 );
234 sigaddset( &block_set, SIGTERM );
235 sigprocmask( SIG_BLOCK, &block_set, NULL );
237 close( NtCurrentTeb()->wait_fd[0] );
238 close( NtCurrentTeb()->wait_fd[1] );
239 close( NtCurrentTeb()->reply_fd );
240 close( NtCurrentTeb()->request_fd );
242 wine_pthread_exit_thread( &info );
247 /**********************************************************************
248 * TerminateThread [KERNEL32.@] Terminates a thread
250 * RETURNS
251 * Success: TRUE
252 * Failure: FALSE
254 BOOL WINAPI TerminateThread( HANDLE handle, /* [in] Handle to thread */
255 DWORD exit_code) /* [in] Exit code for thread */
257 NTSTATUS status = NtTerminateThread( handle, exit_code );
258 if (status) SetLastError( RtlNtStatusToDosError(status) );
259 return !status;
263 /***********************************************************************
264 * FreeLibraryAndExitThread (KERNEL32.@)
266 void WINAPI FreeLibraryAndExitThread(HINSTANCE hLibModule, DWORD dwExitCode)
268 FreeLibrary(hLibModule);
269 ExitThread(dwExitCode);
273 /**********************************************************************
274 * GetExitCodeThread (KERNEL32.@)
276 * Gets termination status of thread.
278 * RETURNS
279 * Success: TRUE
280 * Failure: FALSE
282 BOOL WINAPI GetExitCodeThread(
283 HANDLE hthread, /* [in] Handle to thread */
284 LPDWORD exitcode) /* [out] Address to receive termination status */
286 THREAD_BASIC_INFORMATION info;
287 NTSTATUS status = NtQueryInformationThread( hthread, ThreadBasicInformation,
288 &info, sizeof(info), NULL );
290 if (status)
292 SetLastError( RtlNtStatusToDosError(status) );
293 return FALSE;
295 if (exitcode) *exitcode = info.ExitStatus;
296 return TRUE;
300 /***********************************************************************
301 * SetThreadContext [KERNEL32.@] Sets context of thread.
303 * RETURNS
304 * Success: TRUE
305 * Failure: FALSE
307 BOOL WINAPI SetThreadContext( HANDLE handle, /* [in] Handle to thread with context */
308 const CONTEXT *context ) /* [in] Address of context structure */
310 NTSTATUS status = NtSetContextThread( handle, context );
311 if (status) SetLastError( RtlNtStatusToDosError(status) );
312 return !status;
316 /***********************************************************************
317 * GetThreadContext [KERNEL32.@] Retrieves context of thread.
319 * RETURNS
320 * Success: TRUE
321 * Failure: FALSE
323 BOOL WINAPI GetThreadContext( HANDLE handle, /* [in] Handle to thread with context */
324 CONTEXT *context ) /* [out] Address of context structure */
326 NTSTATUS status = NtGetContextThread( handle, context );
327 if (status) SetLastError( RtlNtStatusToDosError(status) );
328 return !status;
332 /**********************************************************************
333 * SuspendThread [KERNEL32.@] Suspends a thread.
335 * RETURNS
336 * Success: Previous suspend count
337 * Failure: 0xFFFFFFFF
339 DWORD WINAPI SuspendThread( HANDLE hthread ) /* [in] Handle to the thread */
341 DWORD ret;
342 NTSTATUS status = NtSuspendThread( hthread, &ret );
344 if (status)
346 ret = ~0U;
347 SetLastError( RtlNtStatusToDosError(status) );
349 return ret;
353 /**********************************************************************
354 * ResumeThread [KERNEL32.@] Resumes a thread.
356 * Decrements a thread's suspend count. When count is zero, the
357 * execution of the thread is resumed.
359 * RETURNS
360 * Success: Previous suspend count
361 * Failure: 0xFFFFFFFF
362 * Already running: 0
364 DWORD WINAPI ResumeThread( HANDLE hthread ) /* [in] Identifies thread to restart */
366 DWORD ret;
367 NTSTATUS status = NtResumeThread( hthread, &ret );
369 if (status)
371 ret = ~0U;
372 SetLastError( RtlNtStatusToDosError(status) );
374 return ret;
378 /**********************************************************************
379 * GetThreadPriority [KERNEL32.@] Returns priority for thread.
381 * RETURNS
382 * Success: Thread's priority level.
383 * Failure: THREAD_PRIORITY_ERROR_RETURN
385 INT WINAPI GetThreadPriority(
386 HANDLE hthread) /* [in] Handle to thread */
388 THREAD_BASIC_INFORMATION info;
389 NTSTATUS status = NtQueryInformationThread( hthread, ThreadBasicInformation,
390 &info, sizeof(info), NULL );
392 if (status)
394 SetLastError( RtlNtStatusToDosError(status) );
395 return THREAD_PRIORITY_ERROR_RETURN;
397 return info.Priority;
401 /**********************************************************************
402 * SetThreadPriority [KERNEL32.@] Sets priority for thread.
404 * RETURNS
405 * Success: TRUE
406 * Failure: FALSE
408 BOOL WINAPI SetThreadPriority(
409 HANDLE hthread, /* [in] Handle to thread */
410 INT priority) /* [in] Thread priority level */
412 BOOL ret;
413 SERVER_START_REQ( set_thread_info )
415 req->handle = hthread;
416 req->priority = priority;
417 req->mask = SET_THREAD_INFO_PRIORITY;
418 ret = !wine_server_call_err( req );
420 SERVER_END_REQ;
421 return ret;
425 /**********************************************************************
426 * GetThreadPriorityBoost [KERNEL32.@] Returns priority boost for thread.
428 * Always reports that priority boost is disabled.
430 * RETURNS
431 * Success: TRUE.
432 * Failure: FALSE
434 BOOL WINAPI GetThreadPriorityBoost(
435 HANDLE hthread, /* [in] Handle to thread */
436 PBOOL pstate) /* [out] pointer to var that receives the boost state */
438 if (pstate) *pstate = FALSE;
439 return NO_ERROR;
443 /**********************************************************************
444 * SetThreadPriorityBoost [KERNEL32.@] Sets priority boost for thread.
446 * Priority boost is not implemented. Thsi function always returns
447 * FALSE and sets last error to ERROR_CALL_NOT_IMPLEMENTED
449 * RETURNS
450 * Always returns FALSE to indicate a failure
452 BOOL WINAPI SetThreadPriorityBoost(
453 HANDLE hthread, /* [in] Handle to thread */
454 BOOL disable) /* [in] TRUE to disable priority boost */
456 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
457 return FALSE;
461 /**********************************************************************
462 * SetThreadAffinityMask (KERNEL32.@)
464 DWORD WINAPI SetThreadAffinityMask( HANDLE hThread, DWORD dwThreadAffinityMask )
466 DWORD ret;
467 SERVER_START_REQ( set_thread_info )
469 req->handle = hThread;
470 req->affinity = dwThreadAffinityMask;
471 req->mask = SET_THREAD_INFO_AFFINITY;
472 ret = !wine_server_call_err( req );
473 /* FIXME: should return previous value */
475 SERVER_END_REQ;
476 return ret;
480 /**********************************************************************
481 * SetThreadIdealProcessor [KERNEL32.@] Obtains timing information.
483 * RETURNS
484 * Success: Value of last call to SetThreadIdealProcessor
485 * Failure: -1
487 DWORD WINAPI SetThreadIdealProcessor(
488 HANDLE hThread, /* [in] Specifies the thread of interest */
489 DWORD dwIdealProcessor) /* [in] Specifies the new preferred processor */
491 FIXME("(%p): stub\n",hThread);
492 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
493 return -1L;
497 /* callback for QueueUserAPC */
498 static void CALLBACK call_user_apc( ULONG_PTR arg1, ULONG_PTR arg2, ULONG_PTR arg3 )
500 PAPCFUNC func = (PAPCFUNC)arg1;
501 func( arg2 );
504 /***********************************************************************
505 * QueueUserAPC (KERNEL32.@)
507 DWORD WINAPI QueueUserAPC( PAPCFUNC func, HANDLE hthread, ULONG_PTR data )
509 NTSTATUS status = NtQueueApcThread( hthread, call_user_apc, (ULONG_PTR)func, data, 0 );
511 if (status) SetLastError( RtlNtStatusToDosError(status) );
512 return !status;
516 /**********************************************************************
517 * GetThreadTimes [KERNEL32.@] Obtains timing information.
519 * RETURNS
520 * Success: TRUE
521 * Failure: FALSE
523 BOOL WINAPI GetThreadTimes(
524 HANDLE thread, /* [in] Specifies the thread of interest */
525 LPFILETIME creationtime, /* [out] When the thread was created */
526 LPFILETIME exittime, /* [out] When the thread was destroyed */
527 LPFILETIME kerneltime, /* [out] Time thread spent in kernel mode */
528 LPFILETIME usertime) /* [out] Time thread spent in user mode */
530 BOOL ret = TRUE;
532 if (creationtime || exittime)
534 /* We need to do a server call to get the creation time or exit time */
535 /* This works on any thread */
537 SERVER_START_REQ( get_thread_info )
539 req->handle = thread;
540 req->tid_in = 0;
541 if ((ret = !wine_server_call_err( req )))
543 if (creationtime)
544 RtlSecondsSince1970ToTime( reply->creation_time, (LARGE_INTEGER*)creationtime );
545 if (exittime)
546 RtlSecondsSince1970ToTime( reply->exit_time, (LARGE_INTEGER*)exittime );
549 SERVER_END_REQ;
551 if (ret && (kerneltime || usertime))
553 /* We call times(2) for kernel time or user time */
554 /* We can only (portably) do this for the current thread */
555 if (thread == GetCurrentThread())
557 ULONGLONG time;
558 struct tms time_buf;
559 long clocks_per_sec = sysconf(_SC_CLK_TCK);
561 times(&time_buf);
562 if (kerneltime)
564 time = (ULONGLONG)time_buf.tms_stime * 10000000 / clocks_per_sec;
565 kerneltime->dwHighDateTime = time >> 32;
566 kerneltime->dwLowDateTime = (DWORD)time;
568 if (usertime)
570 time = (ULONGLONG)time_buf.tms_utime * 10000000 / clocks_per_sec;
571 usertime->dwHighDateTime = time >> 32;
572 usertime->dwLowDateTime = (DWORD)time;
575 else
577 if (kerneltime) kerneltime->dwHighDateTime = kerneltime->dwLowDateTime = 0;
578 if (usertime) usertime->dwHighDateTime = usertime->dwLowDateTime = 0;
579 FIXME("Cannot get kerneltime or usertime of other threads\n");
582 return ret;
586 /**********************************************************************
587 * VWin32_BoostThreadGroup [KERNEL.535]
589 VOID WINAPI VWin32_BoostThreadGroup( DWORD threadId, INT boost )
591 FIXME("(0x%08lx,%d): stub\n", threadId, boost);
595 /**********************************************************************
596 * VWin32_BoostThreadStatic [KERNEL.536]
598 VOID WINAPI VWin32_BoostThreadStatic( DWORD threadId, INT boost )
600 FIXME("(0x%08lx,%d): stub\n", threadId, boost);
604 /***********************************************************************
605 * GetCurrentThread [KERNEL32.@] Gets pseudohandle for current thread
607 * RETURNS
608 * Pseudohandle for the current thread
610 #undef GetCurrentThread
611 HANDLE WINAPI GetCurrentThread(void)
613 return (HANDLE)0xfffffffe;
617 #ifdef __i386__
619 /***********************************************************************
620 * SetLastError (KERNEL.147)
621 * SetLastError (KERNEL32.@)
623 /* void WINAPI SetLastError( DWORD error ); */
624 __ASM_GLOBAL_FUNC( SetLastError,
625 "movl 4(%esp),%eax\n\t"
626 ".byte 0x64\n\t"
627 "movl %eax,0x34\n\t"
628 "ret $4" );
630 /***********************************************************************
631 * GetLastError (KERNEL.148)
632 * GetLastError (KERNEL32.@)
634 /* DWORD WINAPI GetLastError(void); */
635 __ASM_GLOBAL_FUNC( GetLastError, ".byte 0x64\n\tmovl 0x34,%eax\n\tret" );
637 /***********************************************************************
638 * GetCurrentProcessId (KERNEL.471)
639 * GetCurrentProcessId (KERNEL32.@)
641 /* DWORD WINAPI GetCurrentProcessId(void) */
642 __ASM_GLOBAL_FUNC( GetCurrentProcessId, ".byte 0x64\n\tmovl 0x20,%eax\n\tret" );
644 /***********************************************************************
645 * GetCurrentThreadId (KERNEL.462)
646 * GetCurrentThreadId (KERNEL32.@)
648 /* DWORD WINAPI GetCurrentThreadId(void) */
649 __ASM_GLOBAL_FUNC( GetCurrentThreadId, ".byte 0x64\n\tmovl 0x24,%eax\n\tret" );
651 #else /* __i386__ */
653 /**********************************************************************
654 * SetLastError (KERNEL.147)
655 * SetLastError (KERNEL32.@)
657 * Sets the last-error code.
659 void WINAPI SetLastError( DWORD error ) /* [in] Per-thread error code */
661 NtCurrentTeb()->LastErrorValue = error;
664 /**********************************************************************
665 * GetLastError (KERNEL.148)
666 * GetLastError (KERNEL32.@)
668 * Returns last-error code.
670 DWORD WINAPI GetLastError(void)
672 return NtCurrentTeb()->LastErrorValue;
675 /***********************************************************************
676 * GetCurrentProcessId (KERNEL.471)
677 * GetCurrentProcessId (KERNEL32.@)
679 * Returns process identifier.
681 DWORD WINAPI GetCurrentProcessId(void)
683 return (DWORD)NtCurrentTeb()->ClientId.UniqueProcess;
686 /***********************************************************************
687 * GetCurrentThreadId (KERNEL.462)
688 * GetCurrentThreadId (KERNEL32.@)
690 * Returns thread identifier.
692 DWORD WINAPI GetCurrentThreadId(void)
694 return (DWORD)NtCurrentTeb()->ClientId.UniqueThread;
697 #endif /* __i386__ */