Define environment variable TMP as an alias for TEMP.
[wine.git] / scheduler / process.c
blobf51d26f2d9ab96c01bbec8788250c3606d9c4779
1 /*
2 * Win32 processes
4 * Copyright 1996, 1998 Alexandre Julliard
5 */
7 #include <assert.h>
8 #include <ctype.h>
9 #include <errno.h>
10 #include <fcntl.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <string.h>
14 #include <unistd.h>
15 #include "wine/winbase16.h"
16 #include "wine/exception.h"
17 #include "wine/library.h"
18 #include "drive.h"
19 #include "module.h"
20 #include "file.h"
21 #include "heap.h"
22 #include "task.h"
23 #include "thread.h"
24 #include "winerror.h"
25 #include "server.h"
26 #include "options.h"
27 #include "callback.h"
28 #include "debugtools.h"
30 DEFAULT_DEBUG_CHANNEL(process);
31 DECLARE_DEBUG_CHANNEL(relay);
32 DECLARE_DEBUG_CHANNEL(win32);
34 struct _ENVDB;
36 /* Win32 process database */
37 typedef struct _PDB
39 LONG header[2]; /* 00 Kernel object header */
40 HMODULE module; /* 08 Main exe module (NT) */
41 void *event; /* 0c Pointer to an event object (unused) */
42 DWORD exit_code; /* 10 Process exit code */
43 DWORD unknown2; /* 14 Unknown */
44 HANDLE heap; /* 18 Default process heap */
45 HANDLE mem_context; /* 1c Process memory context */
46 DWORD flags; /* 20 Flags */
47 void *pdb16; /* 24 DOS PSP */
48 WORD PSP_sel; /* 28 Selector to DOS PSP */
49 WORD imte; /* 2a IMTE for the process module */
50 WORD threads; /* 2c Number of threads */
51 WORD running_threads; /* 2e Number of running threads */
52 WORD free_lib_count; /* 30 Recursion depth of FreeLibrary calls */
53 WORD ring0_threads; /* 32 Number of ring 0 threads */
54 HANDLE system_heap; /* 34 System heap to allocate handles */
55 HTASK task; /* 38 Win16 task */
56 void *mem_map_files; /* 3c Pointer to mem-mapped files */
57 struct _ENVDB *env_db; /* 40 Environment database */
58 void *handle_table; /* 44 Handle table */
59 struct _PDB *parent; /* 48 Parent process */
60 void *modref_list; /* 4c MODREF list */
61 void *thread_list; /* 50 List of threads */
62 void *debuggee_CB; /* 54 Debuggee context block */
63 void *local_heap_free; /* 58 Head of local heap free list */
64 DWORD unknown4; /* 5c Unknown */
65 CRITICAL_SECTION crit_section; /* 60 Critical section */
66 DWORD unknown5[3]; /* 78 Unknown */
67 void *console; /* 84 Console */
68 DWORD tls_bits[2]; /* 88 TLS in-use bits */
69 DWORD process_dword; /* 90 Unknown */
70 struct _PDB *group; /* 94 Process group */
71 void *exe_modref; /* 98 MODREF for the process EXE */
72 void *top_filter; /* 9c Top exception filter */
73 DWORD priority; /* a0 Priority level */
74 HANDLE heap_list; /* a4 Head of process heap list */
75 void *heap_handles; /* a8 Head of heap handles list */
76 DWORD unknown6; /* ac Unknown */
77 void *console_provider; /* b0 Console provider (??) */
78 WORD env_selector; /* b4 Selector to process environment */
79 WORD error_mode; /* b6 Error mode */
80 HANDLE load_done_evt; /* b8 Event for process loading done */
81 void *UTState; /* bc Head of Univeral Thunk list */
82 DWORD unknown8; /* c0 Unknown (NT) */
83 LCID locale; /* c4 Locale to be queried by GetThreadLocale (NT) */
84 } PDB;
86 PDB current_process;
88 /* Process flags */
89 #define PDB32_DEBUGGED 0x0001 /* Process is being debugged */
90 #define PDB32_WIN16_PROC 0x0008 /* Win16 process */
91 #define PDB32_DOS_PROC 0x0010 /* Dos process */
92 #define PDB32_CONSOLE_PROC 0x0020 /* Console process */
93 #define PDB32_FILE_APIS_OEM 0x0040 /* File APIs are OEM */
94 #define PDB32_WIN32S_PROC 0x8000 /* Win32s process */
96 static char **main_exe_argv;
97 static char main_exe_name[MAX_PATH];
98 static HANDLE main_exe_file = INVALID_HANDLE_VALUE;
100 unsigned int server_startticks;
102 /* memory/environ.c */
103 extern struct _ENVDB *ENV_BuildEnvironment(void);
104 extern BOOL ENV_BuildCommandLine( char **argv );
105 extern STARTUPINFOA current_startupinfo;
107 extern BOOL MAIN_MainInit(void);
110 /***********************************************************************
111 * PROCESS_CallUserSignalProc
113 * FIXME: Some of the signals aren't sent correctly!
115 * The exact meaning of the USER signals is undocumented, but this
116 * should cover the basic idea:
118 * USIG_DLL_UNLOAD_WIN16
119 * This is sent when a 16-bit module is unloaded.
121 * USIG_DLL_UNLOAD_WIN32
122 * This is sent when a 32-bit module is unloaded.
124 * USIG_DLL_UNLOAD_ORPHANS
125 * This is sent after the last Win3.1 module is unloaded,
126 * to allow removal of orphaned menus.
128 * USIG_FAULT_DIALOG_PUSH
129 * USIG_FAULT_DIALOG_POP
130 * These are called to allow USER to prepare for displaying a
131 * fault dialog, even though the fault might have happened while
132 * inside a USER critical section.
134 * USIG_THREAD_INIT
135 * This is called from the context of a new thread, as soon as it
136 * has started to run.
138 * USIG_THREAD_EXIT
139 * This is called, still in its context, just before a thread is
140 * about to terminate.
142 * USIG_PROCESS_CREATE
143 * This is called, in the parent process context, after a new process
144 * has been created.
146 * USIG_PROCESS_INIT
147 * This is called in the new process context, just after the main thread
148 * has started execution (after the main thread's USIG_THREAD_INIT has
149 * been sent).
151 * USIG_PROCESS_LOADED
152 * This is called after the executable file has been loaded into the
153 * new process context.
155 * USIG_PROCESS_RUNNING
156 * This is called immediately before the main entry point is called.
158 * USIG_PROCESS_EXIT
159 * This is called in the context of a process that is about to
160 * terminate (but before the last thread's USIG_THREAD_EXIT has
161 * been sent).
163 * USIG_PROCESS_DESTROY
164 * This is called after a process has terminated.
167 * The meaning of the dwFlags bits is as follows:
169 * USIG_FLAGS_WIN32
170 * Current process is 32-bit.
172 * USIG_FLAGS_GUI
173 * Current process is a (Win32) GUI process.
175 * USIG_FLAGS_FEEDBACK
176 * Current process needs 'feedback' (determined from the STARTUPINFO
177 * flags STARTF_FORCEONFEEDBACK / STARTF_FORCEOFFFEEDBACK).
179 * USIG_FLAGS_FAULT
180 * The signal is being sent due to a fault.
182 void PROCESS_CallUserSignalProc( UINT uCode, HMODULE hModule )
184 DWORD flags = current_process.flags;
185 DWORD startup_flags = current_startupinfo.dwFlags;
186 DWORD dwFlags = 0;
188 /* Determine dwFlags */
190 if ( !(flags & PDB32_WIN16_PROC) ) dwFlags |= USIG_FLAGS_WIN32;
192 if ( !(flags & PDB32_CONSOLE_PROC) ) dwFlags |= USIG_FLAGS_GUI;
194 if ( dwFlags & USIG_FLAGS_GUI )
196 /* Feedback defaults to ON */
197 if ( !(startup_flags & STARTF_FORCEOFFFEEDBACK) )
198 dwFlags |= USIG_FLAGS_FEEDBACK;
200 else
202 /* Feedback defaults to OFF */
203 if (startup_flags & STARTF_FORCEONFEEDBACK)
204 dwFlags |= USIG_FLAGS_FEEDBACK;
207 /* Convert module handle to 16-bit */
209 if ( HIWORD( hModule ) )
210 hModule = MapHModuleLS( hModule );
212 /* Call USER signal proc */
214 if ( Callout.UserSignalProc )
216 if ( uCode == USIG_THREAD_INIT || uCode == USIG_THREAD_EXIT )
217 Callout.UserSignalProc( uCode, GetCurrentThreadId(), dwFlags, hModule );
218 else
219 Callout.UserSignalProc( uCode, GetCurrentProcessId(), dwFlags, hModule );
224 /***********************************************************************
225 * process_init
227 * Main process initialisation code
229 static BOOL process_init( char *argv[] )
231 BOOL ret;
233 /* store the program name */
234 argv0 = argv[0];
235 main_exe_argv = argv;
237 /* Fill the initial process structure */
238 current_process.exit_code = STILL_ACTIVE;
239 current_process.threads = 1;
240 current_process.running_threads = 1;
241 current_process.ring0_threads = 1;
242 current_process.group = &current_process;
243 current_process.priority = 8; /* Normal */
245 /* Setup the server connection */
246 NtCurrentTeb()->socket = CLIENT_InitServer();
247 if (CLIENT_InitThread()) return FALSE;
249 /* Retrieve startup info from the server */
250 SERVER_START_REQ
252 struct init_process_request *req = server_alloc_req( sizeof(*req),
253 sizeof(main_exe_name)-1 );
255 req->ldt_copy = &wine_ldt_copy;
256 req->ppid = getppid();
257 if ((ret = !server_call( REQ_INIT_PROCESS )))
259 size_t len = server_data_size( req );
260 memcpy( main_exe_name, server_data_ptr(req), len );
261 main_exe_name[len] = 0;
262 main_exe_file = req->exe_file;
263 current_startupinfo.dwFlags = req->start_flags;
264 server_startticks = req->server_start;
265 current_startupinfo.wShowWindow = req->cmd_show;
266 current_startupinfo.hStdInput = req->hstdin;
267 current_startupinfo.hStdOutput = req->hstdout;
268 current_startupinfo.hStdError = req->hstderr;
269 SetStdHandle( STD_INPUT_HANDLE, current_startupinfo.hStdInput );
270 SetStdHandle( STD_OUTPUT_HANDLE, current_startupinfo.hStdOutput );
271 SetStdHandle( STD_ERROR_HANDLE, current_startupinfo.hStdError );
274 SERVER_END_REQ;
275 if (!ret) return FALSE;
277 /* Create the system and process heaps */
278 if (!HEAP_CreateSystemHeap()) return FALSE;
279 current_process.heap = HeapCreate( HEAP_GROWABLE, 0, 0 );
281 /* Copy the parent environment */
282 if (!(current_process.env_db = ENV_BuildEnvironment())) return FALSE;
284 /* Parse command line arguments */
285 OPTIONS_ParseOptions( argv );
287 return MAIN_MainInit();
291 /***********************************************************************
292 * start_process
294 * Startup routine of a new process. Runs on the new process stack.
296 static void start_process(void)
298 int debugged, console_app;
299 LPTHREAD_START_ROUTINE entry;
300 WINE_MODREF *wm;
302 /* build command line */
303 if (!ENV_BuildCommandLine( main_exe_argv )) goto error;
305 /* create 32-bit module for main exe */
306 if (!(current_process.module = BUILTIN32_LoadExeModule( current_process.module ))) goto error;
308 /* use original argv[0] as name for the main module */
309 if (!main_exe_name[0])
311 if (!GetLongPathNameA( full_argv0, main_exe_name, sizeof(main_exe_name) ))
312 lstrcpynA( main_exe_name, full_argv0, sizeof(main_exe_name) );
315 /* Retrieve entry point address */
316 entry = (LPTHREAD_START_ROUTINE)((char*)current_process.module +
317 PE_HEADER(current_process.module)->OptionalHeader.AddressOfEntryPoint);
318 console_app = (PE_HEADER(current_process.module)->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI);
319 if (console_app) current_process.flags |= PDB32_CONSOLE_PROC;
321 /* Signal the parent process to continue */
322 SERVER_START_REQ
324 struct init_process_done_request *req = server_alloc_req( sizeof(*req), 0 );
325 req->module = (void *)current_process.module;
326 req->entry = entry;
327 req->name = main_exe_name;
328 req->gui = !console_app;
329 server_call( REQ_INIT_PROCESS_DONE );
330 debugged = req->debugged;
332 SERVER_END_REQ;
334 /* Install signal handlers; this cannot be done before, since we cannot
335 * send exceptions to the debugger before the create process event that
336 * is sent by REQ_INIT_PROCESS_DONE */
337 if (!SIGNAL_Init()) goto error;
339 /* create the main modref and load dependencies */
340 if (!(wm = PE_CreateModule( current_process.module, main_exe_name, 0, main_exe_file, FALSE )))
341 goto error;
342 wm->refCount++;
344 RtlAcquirePebLock();
345 PE_InitTls();
346 MODULE_DllProcessAttach( NULL, (LPVOID)1 );
347 RtlReleasePebLock();
349 /* Get pointers to USER routines called by KERNEL */
350 THUNK_InitCallout();
352 /* Call FinalUserInit routine */
353 if (Callout.FinalUserInit16) Callout.FinalUserInit16();
355 /* Note: The USIG_PROCESS_CREATE signal is supposed to be sent in the
356 * context of the parent process. Actually, the USER signal proc
357 * doesn't really care about that, but it *does* require that the
358 * startup parameters are correctly set up, so that GetProcessDword
359 * works. Furthermore, before calling the USER signal proc the
360 * 16-bit stack must be set up, which it is only after TASK_Create
361 * in the case of a 16-bit process. Thus, we send the signal here.
363 PROCESS_CallUserSignalProc( USIG_PROCESS_CREATE, 0 );
364 PROCESS_CallUserSignalProc( USIG_THREAD_INIT, 0 );
365 PROCESS_CallUserSignalProc( USIG_PROCESS_INIT, 0 );
366 PROCESS_CallUserSignalProc( USIG_PROCESS_LOADED, 0 );
367 /* Call UserSignalProc ( USIG_PROCESS_RUNNING ... ) only for non-GUI win32 apps */
368 if (console_app) PROCESS_CallUserSignalProc( USIG_PROCESS_RUNNING, 0 );
370 TRACE_(relay)( "Starting Win32 process %s (entryproc=%p)\n", main_exe_name, entry );
371 if (debugged) DbgBreakPoint();
372 /* FIXME: should use _PEB as parameter for NT 3.5 programs !
373 * Dunno about other OSs */
374 SetLastError(0); /* clear error code */
375 ExitThread( entry(NULL) );
377 error:
378 ExitProcess( GetLastError() );
382 /***********************************************************************
383 * open_winelib_app
385 * Try to open the Winelib app .so file based on argv[0] or WINEPRELOAD.
387 void *open_winelib_app( char *argv[] )
389 void *ret = NULL;
390 char *tmp;
391 const char *name;
393 if ((name = getenv( "WINEPRELOAD" )))
395 if (!(ret = wine_dll_load_main_exe( name, 0 )))
397 MESSAGE( "%s: could not load '%s' as specified in the WINEPRELOAD environment variable\n",
398 argv[0], name );
399 ExitProcess(1);
402 else
404 /* if argv[0] is "wine", don't try to load anything */
405 if (!(name = strrchr( argv[0], '/' ))) name = argv[0];
406 else name++;
407 if (!strcmp( name, "wine" )) return NULL;
409 /* now try argv[0] with ".so" appended */
410 if ((tmp = HeapAlloc( GetProcessHeap(), 0, strlen(argv[0]) + 4 )))
412 strcpy( tmp, argv[0] );
413 strcat( tmp, ".so" );
414 /* search in PATH only if there was no '/' in argv[0] */
415 ret = wine_dll_load_main_exe( tmp, (name == argv[0]) );
416 if (!ret && !argv[1])
418 /* if no argv[1], this will be better than displaying usage */
419 MESSAGE( "%s: could not load library '%s' as Winelib application\n",
420 argv[0], tmp );
421 ExitProcess(1);
423 HeapFree( GetProcessHeap(), 0, tmp );
426 return ret;
429 /***********************************************************************
430 * PROCESS_InitWine
432 * Wine initialisation: load and start the main exe file.
434 void PROCESS_InitWine( int argc, char *argv[] )
436 DWORD stack_size = 0;
438 /* Initialize everything */
439 if (!process_init( argv )) exit(1);
441 if (open_winelib_app( argv )) goto found; /* try to open argv[0] as a winelib app */
443 main_exe_argv = ++argv; /* remove argv[0] (wine itself) */
445 if (!main_exe_name[0])
447 if (!argv[0]) OPTIONS_Usage();
449 /* open the exe file */
450 if (!SearchPathA( NULL, argv[0], ".exe", sizeof(main_exe_name), main_exe_name, NULL ) &&
451 !SearchPathA( NULL, argv[0], NULL, sizeof(main_exe_name), main_exe_name, NULL ))
453 MESSAGE( "%s: cannot find '%s'\n", argv0, argv[0] );
454 goto error;
458 if (main_exe_file == INVALID_HANDLE_VALUE)
460 if ((main_exe_file = CreateFileA( main_exe_name, GENERIC_READ, FILE_SHARE_READ,
461 NULL, OPEN_EXISTING, 0, -1 )) == INVALID_HANDLE_VALUE)
463 MESSAGE( "%s: cannot open '%s'\n", argv0, main_exe_name );
464 goto error;
468 /* first try Win32 format; this will fail if the file is not a PE binary */
469 if ((current_process.module = PE_LoadImage( main_exe_file, main_exe_name, 0 )))
471 if (PE_HEADER(current_process.module)->FileHeader.Characteristics & IMAGE_FILE_DLL)
472 ExitProcess( ERROR_BAD_EXE_FORMAT );
473 stack_size = PE_HEADER(current_process.module)->OptionalHeader.SizeOfStackReserve;
474 goto found;
477 /* it must be 16-bit or DOS format */
478 NtCurrentTeb()->tibflags &= ~TEBF_WIN32;
479 current_process.flags |= PDB32_WIN16_PROC;
480 main_exe_name[0] = 0;
481 CloseHandle( main_exe_file );
482 main_exe_file = INVALID_HANDLE_VALUE;
483 _EnterWin16Lock();
485 found:
486 /* allocate main thread stack */
487 if (!THREAD_InitStack( NtCurrentTeb(), stack_size, TRUE )) goto error;
489 /* switch to the new stack */
490 SYSDEPS_SwitchToThreadStack( start_process );
492 error:
493 ExitProcess( GetLastError() );
497 /***********************************************************************
498 * PROCESS_InitWinelib
500 * Initialisation of a new Winelib process.
502 void PROCESS_InitWinelib( int argc, char *argv[] )
504 if (!process_init( argv )) exit(1);
506 /* allocate main thread stack */
507 if (!THREAD_InitStack( NtCurrentTeb(), 0, TRUE )) ExitProcess( GetLastError() );
509 /* switch to the new stack */
510 SYSDEPS_SwitchToThreadStack( start_process );
514 /***********************************************************************
515 * build_argv
517 * Build an argv array from a command-line.
518 * The command-line is modified to insert nulls.
519 * 'reserved' is the number of args to reserve before the first one.
521 static char **build_argv( char *cmdline, int reserved )
523 char **argv;
524 int count = reserved + 1;
525 char *p = cmdline;
527 /* if first word is quoted store it as a single arg */
528 if (*cmdline == '\"')
530 if ((p = strchr( cmdline + 1, '\"' )))
532 p++;
533 count++;
535 else p = cmdline;
537 while (*p)
539 while (*p && isspace(*p)) p++;
540 if (!*p) break;
541 count++;
542 while (*p && !isspace(*p)) p++;
545 if ((argv = malloc( count * sizeof(*argv) )))
547 char **argvptr = argv + reserved;
548 p = cmdline;
549 if (*cmdline == '\"')
551 if ((p = strchr( cmdline + 1, '\"' )))
553 *argvptr++ = cmdline + 1;
554 *p++ = 0;
556 else p = cmdline;
558 while (*p)
560 while (*p && isspace(*p)) *p++ = 0;
561 if (!*p) break;
562 *argvptr++ = p;
563 while (*p && !isspace(*p)) p++;
565 *argvptr = 0;
567 return argv;
571 /***********************************************************************
572 * build_envp
574 * Build the environment of a new child process.
576 static char **build_envp( const char *env, const char *extra_env )
578 const char *p;
579 char **envp;
580 int count = 0;
582 if (extra_env) for (p = extra_env; *p; count++) p += strlen(p) + 1;
583 for (p = env; *p; count++) p += strlen(p) + 1;
584 count += 3;
586 if ((envp = malloc( count * sizeof(*envp) )))
588 extern char **environ;
589 char **envptr = envp;
590 char **unixptr = environ;
591 /* first the extra strings */
592 if (extra_env) for (p = extra_env; *p; p += strlen(p) + 1) *envptr++ = (char *)p;
593 /* then put PATH, HOME and WINEPREFIX from the unix env */
594 for (unixptr = environ; unixptr && *unixptr; unixptr++)
595 if (!memcmp( *unixptr, "PATH=", 5 ) ||
596 !memcmp( *unixptr, "HOME=", 5 ) ||
597 !memcmp( *unixptr, "WINEPREFIX=", 11 )) *envptr++ = *unixptr;
598 /* now put the Windows environment strings */
599 for (p = env; *p; p += strlen(p) + 1)
601 if (memcmp( p, "PATH=", 5 ) &&
602 memcmp( p, "HOME=", 5 ) &&
603 memcmp( p, "WINEPRELOAD=", 12 ) &&
604 memcmp( p, "WINEPREFIX=", 11 )) *envptr++ = (char *)p;
606 *envptr = 0;
608 return envp;
612 /***********************************************************************
613 * exec_wine_binary
615 * Locate the Wine binary to exec for a new Win32 process.
617 static void exec_wine_binary( char **argv, char **envp )
619 const char *path, *pos, *ptr;
621 /* first, try for a WINELOADER environment variable */
622 argv[0] = getenv("WINELOADER");
623 if (argv[0])
624 execve( argv[0], argv, envp );
626 /* next, try bin directory */
627 argv[0] = BINDIR "/wine";
628 execve( argv[0], argv, envp );
630 /* now try the path of argv0 of the current binary */
631 if (!(argv[0] = malloc( strlen(full_argv0) + 6 ))) return;
632 if ((ptr = strrchr( full_argv0, '/' )))
634 memcpy( argv[0], full_argv0, ptr - full_argv0 );
635 strcpy( argv[0] + (ptr - full_argv0), "/wine" );
636 execve( argv[0], argv, envp );
638 free( argv[0] );
640 /* now search in the Unix path */
641 if ((path = getenv( "PATH" )))
643 if (!(argv[0] = malloc( strlen(path) + 6 ))) return;
644 pos = path;
645 for (;;)
647 while (*pos == ':') pos++;
648 if (!*pos) break;
649 if (!(ptr = strchr( pos, ':' ))) ptr = pos + strlen(pos);
650 memcpy( argv[0], pos, ptr - pos );
651 strcpy( argv[0] + (ptr - pos), "/wine" );
652 execve( argv[0], argv, envp );
653 pos = ptr;
656 free( argv[0] );
658 /* finally try the current directory */
659 argv[0] = "./wine";
660 execve( argv[0], argv, envp );
664 /***********************************************************************
665 * fork_and_exec
667 * Fork and exec a new Unix process, checking for errors.
669 static int fork_and_exec( const char *filename, char *cmdline,
670 const char *env, const char *newdir )
672 int fd[2];
673 int pid, err;
674 char *extra_env = NULL;
676 if (!env)
678 env = GetEnvironmentStringsA();
679 extra_env = DRIVE_BuildEnv();
682 if (pipe(fd) == -1)
684 FILE_SetDosError();
685 return -1;
687 fcntl( fd[1], F_SETFD, 1 ); /* set close on exec */
688 if (!(pid = fork())) /* child */
690 char **argv = build_argv( cmdline, filename ? 0 : 2 );
691 char **envp = build_envp( env, extra_env );
692 close( fd[0] );
694 if (newdir) chdir(newdir);
696 if (argv && envp)
698 if (!filename)
700 argv[1] = "--";
701 exec_wine_binary( argv, envp );
703 else execve( filename, argv, envp );
705 err = errno;
706 write( fd[1], &err, sizeof(err) );
707 _exit(1);
709 close( fd[1] );
710 if ((pid != -1) && (read( fd[0], &err, sizeof(err) ) > 0)) /* exec failed */
712 errno = err;
713 pid = -1;
715 if (pid == -1) FILE_SetDosError();
716 close( fd[0] );
717 if (extra_env) HeapFree( GetProcessHeap(), 0, extra_env );
718 return pid;
722 /***********************************************************************
723 * PROCESS_Create
725 * Create a new process. If hFile is a valid handle we have an exe
726 * file, and we exec a new copy of wine to load it; otherwise we
727 * simply exec the specified filename as a Unix process.
729 BOOL PROCESS_Create( HFILE hFile, LPCSTR filename, LPSTR cmd_line, LPCSTR env,
730 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
731 BOOL inherit, DWORD flags, LPSTARTUPINFOA startup,
732 LPPROCESS_INFORMATION info, LPCSTR lpCurrentDirectory )
734 BOOL ret;
735 int pid;
736 const char *unixfilename = NULL;
737 const char *unixdir = NULL;
738 DOS_FULL_NAME full_name;
739 HANDLE load_done_evt = (HANDLE)-1;
741 info->hThread = info->hProcess = INVALID_HANDLE_VALUE;
743 if (lpCurrentDirectory)
745 if (DOSFS_GetFullName( lpCurrentDirectory, TRUE, &full_name ))
746 unixdir = full_name.long_name;
748 else
750 char buf[MAX_PATH];
751 if (GetCurrentDirectoryA(sizeof(buf),buf))
753 if (DOSFS_GetFullName( buf, TRUE, &full_name ))
754 unixdir = full_name.long_name;
758 /* create the process on the server side */
760 SERVER_START_REQ
762 size_t len = (hFile == -1) ? 0 : MAX_PATH;
763 struct new_process_request *req = server_alloc_req( sizeof(*req), len );
764 req->inherit_all = inherit;
765 req->create_flags = flags;
766 req->start_flags = startup->dwFlags;
767 req->exe_file = hFile;
768 if (startup->dwFlags & STARTF_USESTDHANDLES)
770 req->hstdin = startup->hStdInput;
771 req->hstdout = startup->hStdOutput;
772 req->hstderr = startup->hStdError;
774 else
776 req->hstdin = GetStdHandle( STD_INPUT_HANDLE );
777 req->hstdout = GetStdHandle( STD_OUTPUT_HANDLE );
778 req->hstderr = GetStdHandle( STD_ERROR_HANDLE );
780 req->cmd_show = startup->wShowWindow;
782 if (hFile == -1) /* unix process */
784 unixfilename = filename;
785 if (DOSFS_GetFullName( filename, TRUE, &full_name ))
786 unixfilename = full_name.long_name;
788 else /* new wine process */
790 if (!GetLongPathNameA( filename, server_data_ptr(req), MAX_PATH ))
791 lstrcpynA( server_data_ptr(req), filename, MAX_PATH );
793 ret = !server_call( REQ_NEW_PROCESS );
795 SERVER_END_REQ;
796 if (!ret) return FALSE;
798 /* fork and execute */
800 pid = fork_and_exec( unixfilename, cmd_line, env, unixdir );
802 SERVER_START_REQ
804 struct wait_process_request *req = server_alloc_req( sizeof(*req), 0 );
805 req->cancel = (pid == -1);
806 req->pinherit = (psa && (psa->nLength >= sizeof(*psa)) && psa->bInheritHandle);
807 req->tinherit = (tsa && (tsa->nLength >= sizeof(*tsa)) && tsa->bInheritHandle);
808 req->timeout = 2000;
809 if ((ret = !server_call( REQ_WAIT_PROCESS )) && (pid != -1))
811 info->dwProcessId = (DWORD)req->pid;
812 info->dwThreadId = (DWORD)req->tid;
813 info->hProcess = req->phandle;
814 info->hThread = req->thandle;
815 load_done_evt = req->event;
818 SERVER_END_REQ;
819 if (!ret || (pid == -1)) goto error;
821 /* Wait until process is initialized (or initialization failed) */
822 if (load_done_evt != (HANDLE)-1)
824 DWORD res;
825 HANDLE handles[2];
827 handles[0] = info->hProcess;
828 handles[1] = load_done_evt;
829 res = WaitForMultipleObjects( 2, handles, FALSE, INFINITE );
830 CloseHandle( load_done_evt );
831 if (res == STATUS_WAIT_0) /* the process died */
833 DWORD exitcode;
834 if (GetExitCodeProcess( info->hProcess, &exitcode )) SetLastError( exitcode );
835 CloseHandle( info->hThread );
836 CloseHandle( info->hProcess );
837 return FALSE;
840 return TRUE;
842 error:
843 if (load_done_evt != (HANDLE)-1) CloseHandle( load_done_evt );
844 if (info->hThread != INVALID_HANDLE_VALUE) CloseHandle( info->hThread );
845 if (info->hProcess != INVALID_HANDLE_VALUE) CloseHandle( info->hProcess );
846 return FALSE;
850 /***********************************************************************
851 * ExitProcess (KERNEL32.100)
853 void WINAPI ExitProcess( DWORD status )
855 MODULE_DllProcessDetach( TRUE, (LPVOID)1 );
856 SERVER_START_REQ
858 struct terminate_process_request *req = server_alloc_req( sizeof(*req), 0 );
859 /* send the exit code to the server */
860 req->handle = GetCurrentProcess();
861 req->exit_code = status;
862 server_call( REQ_TERMINATE_PROCESS );
864 SERVER_END_REQ;
865 exit( status );
868 /***********************************************************************
869 * ExitProcess16 (KERNEL.466)
871 void WINAPI ExitProcess16( WORD status )
873 DWORD count;
874 ReleaseThunkLock( &count );
875 ExitProcess( status );
878 /******************************************************************************
879 * TerminateProcess (KERNEL32.684)
881 BOOL WINAPI TerminateProcess( HANDLE handle, DWORD exit_code )
883 NTSTATUS status = NtTerminateProcess( handle, exit_code );
884 if (status) SetLastError( RtlNtStatusToDosError(status) );
885 return !status;
889 /***********************************************************************
890 * GetProcessDword (KERNEL32.18) (KERNEL.485)
891 * 'Of course you cannot directly access Windows internal structures'
893 DWORD WINAPI GetProcessDword( DWORD dwProcessID, INT offset )
895 TDB *pTask;
896 DWORD x, y;
898 TRACE_(win32)("(%ld, %d)\n", dwProcessID, offset );
900 if (dwProcessID && dwProcessID != GetCurrentProcessId())
902 ERR("%d: process %lx not accessible\n", offset, dwProcessID);
903 return 0;
906 switch ( offset )
908 case GPD_APP_COMPAT_FLAGS:
909 pTask = (TDB *)GlobalLock16( GetCurrentTask() );
910 return pTask? pTask->compat_flags : 0;
912 case GPD_LOAD_DONE_EVENT:
913 return current_process.load_done_evt;
915 case GPD_HINSTANCE16:
916 pTask = (TDB *)GlobalLock16( GetCurrentTask() );
917 return pTask? pTask->hInstance : 0;
919 case GPD_WINDOWS_VERSION:
920 pTask = (TDB *)GlobalLock16( GetCurrentTask() );
921 return pTask? pTask->version : 0;
923 case GPD_THDB:
924 return (DWORD)NtCurrentTeb() - 0x10 /* FIXME */;
926 case GPD_PDB:
927 return (DWORD)&current_process;
929 case GPD_STARTF_SHELLDATA: /* return stdoutput handle from startupinfo ??? */
930 return current_startupinfo.hStdOutput;
932 case GPD_STARTF_HOTKEY: /* return stdinput handle from startupinfo ??? */
933 return current_startupinfo.hStdInput;
935 case GPD_STARTF_SHOWWINDOW:
936 return current_startupinfo.wShowWindow;
938 case GPD_STARTF_SIZE:
939 x = current_startupinfo.dwXSize;
940 if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
941 y = current_startupinfo.dwYSize;
942 if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
943 return MAKELONG( x, y );
945 case GPD_STARTF_POSITION:
946 x = current_startupinfo.dwX;
947 if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
948 y = current_startupinfo.dwY;
949 if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
950 return MAKELONG( x, y );
952 case GPD_STARTF_FLAGS:
953 return current_startupinfo.dwFlags;
955 case GPD_PARENT:
956 return 0;
958 case GPD_FLAGS:
959 return current_process.flags;
961 case GPD_USERDATA:
962 return current_process.process_dword;
964 default:
965 ERR_(win32)("Unknown offset %d\n", offset );
966 return 0;
970 /***********************************************************************
971 * SetProcessDword (KERNEL.484)
972 * 'Of course you cannot directly access Windows internal structures'
974 void WINAPI SetProcessDword( DWORD dwProcessID, INT offset, DWORD value )
976 TRACE_(win32)("(%ld, %d)\n", dwProcessID, offset );
978 if (dwProcessID && dwProcessID != GetCurrentProcessId())
980 ERR("%d: process %lx not accessible\n", offset, dwProcessID);
981 return;
984 switch ( offset )
986 case GPD_APP_COMPAT_FLAGS:
987 case GPD_LOAD_DONE_EVENT:
988 case GPD_HINSTANCE16:
989 case GPD_WINDOWS_VERSION:
990 case GPD_THDB:
991 case GPD_PDB:
992 case GPD_STARTF_SHELLDATA:
993 case GPD_STARTF_HOTKEY:
994 case GPD_STARTF_SHOWWINDOW:
995 case GPD_STARTF_SIZE:
996 case GPD_STARTF_POSITION:
997 case GPD_STARTF_FLAGS:
998 case GPD_PARENT:
999 case GPD_FLAGS:
1000 ERR_(win32)("Not allowed to modify offset %d\n", offset );
1001 break;
1003 case GPD_USERDATA:
1004 current_process.process_dword = value;
1005 break;
1007 default:
1008 ERR_(win32)("Unknown offset %d\n", offset );
1009 break;
1014 /*********************************************************************
1015 * OpenProcess (KERNEL32.543)
1017 HANDLE WINAPI OpenProcess( DWORD access, BOOL inherit, DWORD id )
1019 HANDLE ret = 0;
1020 SERVER_START_REQ
1022 struct open_process_request *req = server_alloc_req( sizeof(*req), 0 );
1024 req->pid = (void *)id;
1025 req->access = access;
1026 req->inherit = inherit;
1027 if (!server_call( REQ_OPEN_PROCESS )) ret = req->handle;
1029 SERVER_END_REQ;
1030 return ret;
1033 /*********************************************************************
1034 * MapProcessHandle (KERNEL.483)
1036 DWORD WINAPI MapProcessHandle( HANDLE handle )
1038 DWORD ret = 0;
1039 SERVER_START_REQ
1041 struct get_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1042 req->handle = handle;
1043 if (!server_call( REQ_GET_PROCESS_INFO )) ret = (DWORD)req->pid;
1045 SERVER_END_REQ;
1046 return ret;
1049 /***********************************************************************
1050 * SetPriorityClass (KERNEL32.503)
1052 BOOL WINAPI SetPriorityClass( HANDLE hprocess, DWORD priorityclass )
1054 BOOL ret;
1055 SERVER_START_REQ
1057 struct set_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1058 req->handle = hprocess;
1059 req->priority = priorityclass;
1060 req->mask = SET_PROCESS_INFO_PRIORITY;
1061 ret = !server_call( REQ_SET_PROCESS_INFO );
1063 SERVER_END_REQ;
1064 return ret;
1068 /***********************************************************************
1069 * GetPriorityClass (KERNEL32.250)
1071 DWORD WINAPI GetPriorityClass(HANDLE hprocess)
1073 DWORD ret = 0;
1074 SERVER_START_REQ
1076 struct get_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1077 req->handle = hprocess;
1078 if (!server_call( REQ_GET_PROCESS_INFO )) ret = req->priority;
1080 SERVER_END_REQ;
1081 return ret;
1085 /***********************************************************************
1086 * SetProcessAffinityMask (KERNEL32.662)
1088 BOOL WINAPI SetProcessAffinityMask( HANDLE hProcess, DWORD affmask )
1090 BOOL ret;
1091 SERVER_START_REQ
1093 struct set_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1094 req->handle = hProcess;
1095 req->affinity = affmask;
1096 req->mask = SET_PROCESS_INFO_AFFINITY;
1097 ret = !server_call( REQ_SET_PROCESS_INFO );
1099 SERVER_END_REQ;
1100 return ret;
1103 /**********************************************************************
1104 * GetProcessAffinityMask (KERNEL32.373)
1106 BOOL WINAPI GetProcessAffinityMask( HANDLE hProcess,
1107 LPDWORD lpProcessAffinityMask,
1108 LPDWORD lpSystemAffinityMask )
1110 BOOL ret = FALSE;
1111 SERVER_START_REQ
1113 struct get_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1114 req->handle = hProcess;
1115 if (!server_call( REQ_GET_PROCESS_INFO ))
1117 if (lpProcessAffinityMask) *lpProcessAffinityMask = req->process_affinity;
1118 if (lpSystemAffinityMask) *lpSystemAffinityMask = req->system_affinity;
1119 ret = TRUE;
1122 SERVER_END_REQ;
1123 return ret;
1127 /***********************************************************************
1128 * GetProcessVersion (KERNEL32)
1130 DWORD WINAPI GetProcessVersion( DWORD processid )
1132 IMAGE_NT_HEADERS *nt;
1134 if (processid && processid != GetCurrentProcessId())
1135 return 0; /* FIXME: should use ReadProcessMemory */
1136 if ((nt = RtlImageNtHeader( current_process.module )))
1137 return ((nt->OptionalHeader.MajorSubsystemVersion << 16) |
1138 nt->OptionalHeader.MinorSubsystemVersion);
1139 return 0;
1142 /***********************************************************************
1143 * GetProcessFlags (KERNEL32)
1145 DWORD WINAPI GetProcessFlags( DWORD processid )
1147 if (processid && processid != GetCurrentProcessId()) return 0;
1148 return current_process.flags;
1152 /***********************************************************************
1153 * SetProcessWorkingSetSize [KERNEL32.662]
1154 * Sets the min/max working set sizes for a specified process.
1156 * PARAMS
1157 * hProcess [I] Handle to the process of interest
1158 * minset [I] Specifies minimum working set size
1159 * maxset [I] Specifies maximum working set size
1161 * RETURNS STD
1163 BOOL WINAPI SetProcessWorkingSetSize(HANDLE hProcess,DWORD minset,
1164 DWORD maxset)
1166 FIXME("(0x%08x,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
1167 if(( minset == (DWORD)-1) && (maxset == (DWORD)-1)) {
1168 /* Trim the working set to zero */
1169 /* Swap the process out of physical RAM */
1171 return TRUE;
1174 /***********************************************************************
1175 * GetProcessWorkingSetSize (KERNEL32)
1177 BOOL WINAPI GetProcessWorkingSetSize(HANDLE hProcess,LPDWORD minset,
1178 LPDWORD maxset)
1180 FIXME("(0x%08x,%p,%p): stub\n",hProcess,minset,maxset);
1181 /* 32 MB working set size */
1182 if (minset) *minset = 32*1024*1024;
1183 if (maxset) *maxset = 32*1024*1024;
1184 return TRUE;
1187 /***********************************************************************
1188 * SetProcessShutdownParameters (KERNEL32)
1190 * CHANGED - James Sutherland (JamesSutherland@gmx.de)
1191 * Now tracks changes made (but does not act on these changes)
1193 static DWORD shutdown_flags = 0;
1194 static DWORD shutdown_priority = 0x280;
1196 BOOL WINAPI SetProcessShutdownParameters(DWORD level, DWORD flags)
1198 FIXME("(%08lx, %08lx): partial stub.\n", level, flags);
1199 shutdown_flags = flags;
1200 shutdown_priority = level;
1201 return TRUE;
1205 /***********************************************************************
1206 * GetProcessShutdownParameters (KERNEL32)
1209 BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel, LPDWORD lpdwFlags )
1211 *lpdwLevel = shutdown_priority;
1212 *lpdwFlags = shutdown_flags;
1213 return TRUE;
1217 /***********************************************************************
1218 * SetProcessPriorityBoost (KERNEL32)
1220 BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost)
1222 FIXME("(%d,%d): stub\n",hprocess,disableboost);
1223 /* Say we can do it. I doubt the program will notice that we don't. */
1224 return TRUE;
1228 /***********************************************************************
1229 * ReadProcessMemory (KERNEL32)
1231 BOOL WINAPI ReadProcessMemory( HANDLE process, LPCVOID addr, LPVOID buffer, DWORD size,
1232 LPDWORD bytes_read )
1234 unsigned int offset = (unsigned int)addr % sizeof(int);
1235 unsigned int pos = 0, len, max;
1236 int res;
1238 if (bytes_read) *bytes_read = size;
1240 /* first time, read total length to check for permissions */
1241 len = (size + offset + sizeof(int) - 1) / sizeof(int);
1242 max = min( REQUEST_MAX_VAR_SIZE, len * sizeof(int) );
1244 for (;;)
1246 SERVER_START_REQ
1248 struct read_process_memory_request *req = server_alloc_req( sizeof(*req), max );
1249 req->handle = process;
1250 req->addr = (char *)addr + pos - offset;
1251 req->len = len;
1252 if (!(res = server_call( REQ_READ_PROCESS_MEMORY )))
1254 size_t result = server_data_size( req );
1255 if (result > size + offset) result = size + offset;
1256 memcpy( (char *)buffer + pos, server_data_ptr(req) + offset, result - offset );
1257 size -= result - offset;
1258 pos += result - offset;
1261 SERVER_END_REQ;
1262 if (res)
1264 if (bytes_read) *bytes_read = 0;
1265 return FALSE;
1267 if (!size) return TRUE;
1268 max = min( REQUEST_MAX_VAR_SIZE, size );
1269 len = (max + sizeof(int) - 1) / sizeof(int);
1270 offset = 0;
1275 /***********************************************************************
1276 * WriteProcessMemory (KERNEL32)
1278 BOOL WINAPI WriteProcessMemory( HANDLE process, LPVOID addr, LPVOID buffer, DWORD size,
1279 LPDWORD bytes_written )
1281 unsigned int first_offset, last_offset;
1282 unsigned int pos = 0, len, max, first_mask, last_mask;
1283 int res;
1285 if (!size)
1287 SetLastError( ERROR_INVALID_PARAMETER );
1288 return FALSE;
1290 if (bytes_written) *bytes_written = size;
1292 /* compute the mask for the first int */
1293 first_mask = ~0;
1294 first_offset = (unsigned int)addr % sizeof(int);
1295 memset( &first_mask, 0, first_offset );
1297 /* compute the mask for the last int */
1298 last_offset = (size + first_offset) % sizeof(int);
1299 last_mask = 0;
1300 memset( &last_mask, 0xff, last_offset ? last_offset : sizeof(int) );
1302 /* for the first request, use the total length */
1303 len = (size + first_offset + sizeof(int) - 1) / sizeof(int);
1304 max = min( REQUEST_MAX_VAR_SIZE, len * sizeof(int) );
1306 for (;;)
1308 SERVER_START_REQ
1310 struct write_process_memory_request *req = server_alloc_req( sizeof(*req), max );
1311 req->handle = process;
1312 req->addr = (char *)addr - first_offset + pos;
1313 req->len = len;
1314 req->first_mask = (!pos) ? first_mask : ~0;
1315 if (size + first_offset <= max) /* last round */
1317 req->last_mask = last_mask;
1318 max = size + first_offset;
1320 else req->last_mask = ~0;
1322 memcpy( (char *)server_data_ptr(req) + first_offset, (char *)buffer + pos,
1323 max - first_offset );
1324 if (!(res = server_call( REQ_WRITE_PROCESS_MEMORY )))
1326 pos += max - first_offset;
1327 size -= max - first_offset;
1330 SERVER_END_REQ;
1331 if (res)
1333 if (bytes_written) *bytes_written = 0;
1334 return FALSE;
1336 if (!size) return TRUE;
1337 first_offset = 0;
1338 len = min( size + sizeof(int) - 1, REQUEST_MAX_VAR_SIZE ) / sizeof(int);
1339 max = len * sizeof(int);
1344 /***********************************************************************
1345 * RegisterServiceProcess (KERNEL, KERNEL32)
1347 * A service process calls this function to ensure that it continues to run
1348 * even after a user logged off.
1350 DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
1352 /* I don't think that Wine needs to do anything in that function */
1353 return 1; /* success */
1356 /***********************************************************************
1357 * GetExitCodeProcess [KERNEL32.325]
1359 * Gets termination status of specified process
1361 * RETURNS
1362 * Success: TRUE
1363 * Failure: FALSE
1365 BOOL WINAPI GetExitCodeProcess(
1366 HANDLE hProcess, /* [in] handle to the process */
1367 LPDWORD lpExitCode) /* [out] address to receive termination status */
1369 BOOL ret;
1370 SERVER_START_REQ
1372 struct get_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1373 req->handle = hProcess;
1374 ret = !server_call( REQ_GET_PROCESS_INFO );
1375 if (ret && lpExitCode) *lpExitCode = req->exit_code;
1377 SERVER_END_REQ;
1378 return ret;
1382 /***********************************************************************
1383 * SetErrorMode (KERNEL32.486)
1385 UINT WINAPI SetErrorMode( UINT mode )
1387 UINT old = current_process.error_mode;
1388 current_process.error_mode = mode;
1389 return old;
1393 /**********************************************************************
1394 * TlsAlloc [KERNEL32.530] Allocates a TLS index.
1396 * Allocates a thread local storage index
1398 * RETURNS
1399 * Success: TLS Index
1400 * Failure: 0xFFFFFFFF
1402 DWORD WINAPI TlsAlloc( void )
1404 DWORD i, mask, ret = 0;
1405 DWORD *bits = current_process.tls_bits;
1406 RtlAcquirePebLock();
1407 if (*bits == 0xffffffff)
1409 bits++;
1410 ret = 32;
1411 if (*bits == 0xffffffff)
1413 RtlReleasePebLock();
1414 SetLastError( ERROR_NO_MORE_ITEMS );
1415 return 0xffffffff;
1418 for (i = 0, mask = 1; i < 32; i++, mask <<= 1) if (!(*bits & mask)) break;
1419 *bits |= mask;
1420 RtlReleasePebLock();
1421 return ret + i;
1425 /**********************************************************************
1426 * TlsFree [KERNEL32.531] Releases a TLS index.
1428 * Releases a thread local storage index, making it available for reuse
1430 * RETURNS
1431 * Success: TRUE
1432 * Failure: FALSE
1434 BOOL WINAPI TlsFree(
1435 DWORD index) /* [in] TLS Index to free */
1437 DWORD mask = (1 << (index & 31));
1438 DWORD *bits = current_process.tls_bits;
1439 if (index >= 64)
1441 SetLastError( ERROR_INVALID_PARAMETER );
1442 return FALSE;
1444 if (index >= 32) bits++;
1445 RtlAcquirePebLock();
1446 if (!(*bits & mask)) /* already free? */
1448 RtlReleasePebLock();
1449 SetLastError( ERROR_INVALID_PARAMETER );
1450 return FALSE;
1452 *bits &= ~mask;
1453 NtCurrentTeb()->tls_array[index] = 0;
1454 /* FIXME: should zero all other thread values */
1455 RtlReleasePebLock();
1456 return TRUE;
1460 /**********************************************************************
1461 * TlsGetValue [KERNEL32.532] Gets value in a thread's TLS slot
1463 * RETURNS
1464 * Success: Value stored in calling thread's TLS slot for index
1465 * Failure: 0 and GetLastError returns NO_ERROR
1467 LPVOID WINAPI TlsGetValue(
1468 DWORD index) /* [in] TLS index to retrieve value for */
1470 if (index >= 64)
1472 SetLastError( ERROR_INVALID_PARAMETER );
1473 return NULL;
1475 SetLastError( ERROR_SUCCESS );
1476 return NtCurrentTeb()->tls_array[index];
1480 /**********************************************************************
1481 * TlsSetValue [KERNEL32.533] Stores a value in the thread's TLS slot.
1483 * RETURNS
1484 * Success: TRUE
1485 * Failure: FALSE
1487 BOOL WINAPI TlsSetValue(
1488 DWORD index, /* [in] TLS index to set value for */
1489 LPVOID value) /* [in] Value to be stored */
1491 if (index >= 64)
1493 SetLastError( ERROR_INVALID_PARAMETER );
1494 return FALSE;
1496 NtCurrentTeb()->tls_array[index] = value;
1497 return TRUE;
1501 /***********************************************************************
1502 * GetCurrentProcess (KERNEL32.198)
1504 #undef GetCurrentProcess
1505 HANDLE WINAPI GetCurrentProcess(void)
1507 return 0xffffffff;