Changed wait_process and wait_debug_event requests to never block;
[wine.git] / scheduler / process.c
blob091bb86ee2196655c9278f9b7d973eb43468866f
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 "thread.h"
23 #include "winerror.h"
24 #include "server.h"
25 #include "options.h"
26 #include "callback.h"
27 #include "debugtools.h"
29 DEFAULT_DEBUG_CHANNEL(process);
30 DECLARE_DEBUG_CHANNEL(relay);
31 DECLARE_DEBUG_CHANNEL(win32);
33 struct _ENVDB;
35 /* Win32 process database */
36 typedef struct _PDB
38 LONG header[2]; /* 00 Kernel object header */
39 HMODULE module; /* 08 Main exe module (NT) */
40 void *event; /* 0c Pointer to an event object (unused) */
41 DWORD exit_code; /* 10 Process exit code */
42 DWORD unknown2; /* 14 Unknown */
43 HANDLE heap; /* 18 Default process heap */
44 HANDLE mem_context; /* 1c Process memory context */
45 DWORD flags; /* 20 Flags */
46 void *pdb16; /* 24 DOS PSP */
47 WORD PSP_sel; /* 28 Selector to DOS PSP */
48 WORD imte; /* 2a IMTE for the process module */
49 WORD threads; /* 2c Number of threads */
50 WORD running_threads; /* 2e Number of running threads */
51 WORD free_lib_count; /* 30 Recursion depth of FreeLibrary calls */
52 WORD ring0_threads; /* 32 Number of ring 0 threads */
53 HANDLE system_heap; /* 34 System heap to allocate handles */
54 HTASK task; /* 38 Win16 task */
55 void *mem_map_files; /* 3c Pointer to mem-mapped files */
56 struct _ENVDB *env_db; /* 40 Environment database */
57 void *handle_table; /* 44 Handle table */
58 struct _PDB *parent; /* 48 Parent process */
59 void *modref_list; /* 4c MODREF list */
60 void *thread_list; /* 50 List of threads */
61 void *debuggee_CB; /* 54 Debuggee context block */
62 void *local_heap_free; /* 58 Head of local heap free list */
63 DWORD unknown4; /* 5c Unknown */
64 CRITICAL_SECTION crit_section; /* 60 Critical section */
65 DWORD unknown5[3]; /* 78 Unknown */
66 void *console; /* 84 Console */
67 DWORD tls_bits[2]; /* 88 TLS in-use bits */
68 DWORD process_dword; /* 90 Unknown */
69 struct _PDB *group; /* 94 Process group */
70 void *exe_modref; /* 98 MODREF for the process EXE */
71 void *top_filter; /* 9c Top exception filter */
72 DWORD priority; /* a0 Priority level */
73 HANDLE heap_list; /* a4 Head of process heap list */
74 void *heap_handles; /* a8 Head of heap handles list */
75 DWORD unknown6; /* ac Unknown */
76 void *console_provider; /* b0 Console provider (??) */
77 WORD env_selector; /* b4 Selector to process environment */
78 WORD error_mode; /* b6 Error mode */
79 HANDLE load_done_evt; /* b8 Event for process loading done */
80 void *UTState; /* bc Head of Univeral Thunk list */
81 DWORD unknown8; /* c0 Unknown (NT) */
82 LCID locale; /* c4 Locale to be queried by GetThreadLocale (NT) */
83 } PDB;
85 PDB current_process;
87 /* Process flags */
88 #define PDB32_DEBUGGED 0x0001 /* Process is being debugged */
89 #define PDB32_WIN16_PROC 0x0008 /* Win16 process */
90 #define PDB32_DOS_PROC 0x0010 /* Dos process */
91 #define PDB32_CONSOLE_PROC 0x0020 /* Console process */
92 #define PDB32_FILE_APIS_OEM 0x0040 /* File APIs are OEM */
93 #define PDB32_WIN32S_PROC 0x8000 /* Win32s process */
95 static char **main_exe_argv;
96 static char main_exe_name[MAX_PATH];
97 static HANDLE main_exe_file;
99 unsigned int server_startticks;
101 /* memory/environ.c */
102 extern struct _ENVDB *ENV_BuildEnvironment(void);
103 extern BOOL ENV_BuildCommandLine( char **argv );
104 extern STARTUPINFOA current_startupinfo;
106 extern BOOL MAIN_MainInit(void);
109 /***********************************************************************
110 * PROCESS_CallUserSignalProc
112 * FIXME: Some of the signals aren't sent correctly!
114 * The exact meaning of the USER signals is undocumented, but this
115 * should cover the basic idea:
117 * USIG_DLL_UNLOAD_WIN16
118 * This is sent when a 16-bit module is unloaded.
120 * USIG_DLL_UNLOAD_WIN32
121 * This is sent when a 32-bit module is unloaded.
123 * USIG_DLL_UNLOAD_ORPHANS
124 * This is sent after the last Win3.1 module is unloaded,
125 * to allow removal of orphaned menus.
127 * USIG_FAULT_DIALOG_PUSH
128 * USIG_FAULT_DIALOG_POP
129 * These are called to allow USER to prepare for displaying a
130 * fault dialog, even though the fault might have happened while
131 * inside a USER critical section.
133 * USIG_THREAD_INIT
134 * This is called from the context of a new thread, as soon as it
135 * has started to run.
137 * USIG_THREAD_EXIT
138 * This is called, still in its context, just before a thread is
139 * about to terminate.
141 * USIG_PROCESS_CREATE
142 * This is called, in the parent process context, after a new process
143 * has been created.
145 * USIG_PROCESS_INIT
146 * This is called in the new process context, just after the main thread
147 * has started execution (after the main thread's USIG_THREAD_INIT has
148 * been sent).
150 * USIG_PROCESS_LOADED
151 * This is called after the executable file has been loaded into the
152 * new process context.
154 * USIG_PROCESS_RUNNING
155 * This is called immediately before the main entry point is called.
157 * USIG_PROCESS_EXIT
158 * This is called in the context of a process that is about to
159 * terminate (but before the last thread's USIG_THREAD_EXIT has
160 * been sent).
162 * USIG_PROCESS_DESTROY
163 * This is called after a process has terminated.
166 * The meaning of the dwFlags bits is as follows:
168 * USIG_FLAGS_WIN32
169 * Current process is 32-bit.
171 * USIG_FLAGS_GUI
172 * Current process is a (Win32) GUI process.
174 * USIG_FLAGS_FEEDBACK
175 * Current process needs 'feedback' (determined from the STARTUPINFO
176 * flags STARTF_FORCEONFEEDBACK / STARTF_FORCEOFFFEEDBACK).
178 * USIG_FLAGS_FAULT
179 * The signal is being sent due to a fault.
181 void PROCESS_CallUserSignalProc( UINT uCode, HMODULE hModule )
183 DWORD flags = current_process.flags;
184 DWORD startup_flags = current_startupinfo.dwFlags;
185 DWORD dwFlags = 0;
187 /* Determine dwFlags */
189 if ( !(flags & PDB32_WIN16_PROC) ) dwFlags |= USIG_FLAGS_WIN32;
191 if ( !(flags & PDB32_CONSOLE_PROC) ) dwFlags |= USIG_FLAGS_GUI;
193 if ( dwFlags & USIG_FLAGS_GUI )
195 /* Feedback defaults to ON */
196 if ( !(startup_flags & STARTF_FORCEOFFFEEDBACK) )
197 dwFlags |= USIG_FLAGS_FEEDBACK;
199 else
201 /* Feedback defaults to OFF */
202 if (startup_flags & STARTF_FORCEONFEEDBACK)
203 dwFlags |= USIG_FLAGS_FEEDBACK;
206 /* Convert module handle to 16-bit */
208 if ( HIWORD( hModule ) )
209 hModule = MapHModuleLS( hModule );
211 /* Call USER signal proc */
213 if ( Callout.UserSignalProc )
215 if ( uCode == USIG_THREAD_INIT || uCode == USIG_THREAD_EXIT )
216 Callout.UserSignalProc( uCode, GetCurrentThreadId(), dwFlags, hModule );
217 else
218 Callout.UserSignalProc( uCode, GetCurrentProcessId(), dwFlags, hModule );
223 /***********************************************************************
224 * process_init
226 * Main process initialisation code
228 static BOOL process_init( char *argv[] )
230 BOOL ret;
232 /* store the program name */
233 argv0 = argv[0];
234 main_exe_argv = argv;
236 /* Fill the initial process structure */
237 current_process.exit_code = STILL_ACTIVE;
238 current_process.threads = 1;
239 current_process.running_threads = 1;
240 current_process.ring0_threads = 1;
241 current_process.group = &current_process;
242 current_process.priority = 8; /* Normal */
244 /* Setup the server connection */
245 NtCurrentTeb()->socket = CLIENT_InitServer();
246 if (CLIENT_InitThread()) return FALSE;
248 /* Retrieve startup info from the server */
249 SERVER_START_REQ
251 struct init_process_request *req = server_alloc_req( sizeof(*req),
252 sizeof(main_exe_name)-1 );
254 req->ldt_copy = &wine_ldt_copy;
255 req->ppid = getppid();
256 if ((ret = !server_call( REQ_INIT_PROCESS )))
258 size_t len = server_data_size( req );
259 memcpy( main_exe_name, server_data_ptr(req), len );
260 main_exe_name[len] = 0;
261 main_exe_file = req->exe_file;
262 current_startupinfo.dwFlags = req->start_flags;
263 server_startticks = req->server_start;
264 current_startupinfo.wShowWindow = req->cmd_show;
265 current_startupinfo.hStdInput = req->hstdin;
266 current_startupinfo.hStdOutput = req->hstdout;
267 current_startupinfo.hStdError = req->hstderr;
268 SetStdHandle( STD_INPUT_HANDLE, current_startupinfo.hStdInput );
269 SetStdHandle( STD_OUTPUT_HANDLE, current_startupinfo.hStdOutput );
270 SetStdHandle( STD_ERROR_HANDLE, current_startupinfo.hStdError );
273 SERVER_END_REQ;
274 if (!ret) return FALSE;
276 /* Create the system and process heaps */
277 if (!HEAP_CreateSystemHeap()) return FALSE;
278 current_process.heap = HeapCreate( HEAP_GROWABLE, 0, 0 );
280 /* Copy the parent environment */
281 if (!(current_process.env_db = ENV_BuildEnvironment())) return FALSE;
283 /* Parse command line arguments */
284 OPTIONS_ParseOptions( argv );
286 return MAIN_MainInit();
290 /***********************************************************************
291 * start_process
293 * Startup routine of a new process. Runs on the new process stack.
295 static void start_process(void)
297 int debugged, console_app;
298 LPTHREAD_START_ROUTINE entry;
299 WINE_MODREF *wm;
301 /* build command line */
302 if (!ENV_BuildCommandLine( main_exe_argv )) goto error;
304 /* create 32-bit module for main exe */
305 if (!(current_process.module = BUILTIN32_LoadExeModule( current_process.module ))) goto error;
307 /* use original argv[0] as name for the main module */
308 if (!main_exe_name[0])
310 if (!GetLongPathNameA( full_argv0, main_exe_name, sizeof(main_exe_name) ))
311 lstrcpynA( main_exe_name, full_argv0, sizeof(main_exe_name) );
314 /* Retrieve entry point address */
315 entry = (LPTHREAD_START_ROUTINE)((char*)current_process.module +
316 PE_HEADER(current_process.module)->OptionalHeader.AddressOfEntryPoint);
317 console_app = (PE_HEADER(current_process.module)->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI);
318 if (console_app) current_process.flags |= PDB32_CONSOLE_PROC;
320 /* Signal the parent process to continue */
321 SERVER_START_REQ
323 struct init_process_done_request *req = server_alloc_req( sizeof(*req), 0 );
324 req->module = (void *)current_process.module;
325 req->entry = entry;
326 req->name = main_exe_name;
327 req->exe_file = main_exe_file;
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, 0, 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 const char *argv0 = main_exe_name;
405 if (!*argv0)
407 /* if argv[0] is "wine", don't try to load anything */
408 argv0 = argv[0];
409 if (!(name = strrchr( argv0, '/' ))) name = argv0;
410 else name++;
411 if (!strcmp( name, "wine" )) return NULL;
414 /* now try argv[0] with ".so" appended */
415 if ((tmp = HeapAlloc( GetProcessHeap(), 0, strlen(argv0) + 4 )))
417 strcpy( tmp, argv0 );
418 strcat( tmp, ".so" );
419 /* search in PATH only if there was no '/' in argv[0] */
420 ret = wine_dll_load_main_exe( tmp, (name == argv0) );
421 if (!ret && !argv[1])
423 /* if no argv[1], this will be better than displaying usage */
424 MESSAGE( "%s: could not load library '%s' as Winelib application\n",
425 argv[0], tmp );
426 ExitProcess(1);
428 HeapFree( GetProcessHeap(), 0, tmp );
431 return ret;
434 /***********************************************************************
435 * PROCESS_InitWine
437 * Wine initialisation: load and start the main exe file.
439 void PROCESS_InitWine( int argc, char *argv[], LPSTR win16_exe_name, HANDLE *win16_exe_file )
441 DWORD stack_size = 0;
443 /* Initialize everything */
444 if (!process_init( argv )) exit(1);
446 if (open_winelib_app( argv )) goto found; /* try to open argv[0] as a winelib app */
448 main_exe_argv = ++argv; /* remove argv[0] (wine itself) */
450 if (!main_exe_name[0])
452 if (!argv[0]) OPTIONS_Usage();
454 /* open the exe file */
455 if (!SearchPathA( NULL, argv[0], ".exe", sizeof(main_exe_name), main_exe_name, NULL ) &&
456 !SearchPathA( NULL, argv[0], NULL, sizeof(main_exe_name), main_exe_name, NULL ))
458 MESSAGE( "%s: cannot find '%s'\n", argv0, argv[0] );
459 goto error;
463 if (!main_exe_file)
465 if ((main_exe_file = CreateFileA( main_exe_name, GENERIC_READ, FILE_SHARE_READ,
466 NULL, OPEN_EXISTING, 0, 0)) == INVALID_HANDLE_VALUE)
468 MESSAGE( "%s: cannot open '%s'\n", argv0, main_exe_name );
469 goto error;
473 /* first try Win32 format; this will fail if the file is not a PE binary */
474 if ((current_process.module = PE_LoadImage( main_exe_file, main_exe_name, 0 )))
476 if (PE_HEADER(current_process.module)->FileHeader.Characteristics & IMAGE_FILE_DLL)
477 ExitProcess( ERROR_BAD_EXE_FORMAT );
478 stack_size = PE_HEADER(current_process.module)->OptionalHeader.SizeOfStackReserve;
479 goto found;
482 /* it must be 16-bit or DOS format */
483 NtCurrentTeb()->tibflags &= ~TEBF_WIN32;
484 current_process.flags |= PDB32_WIN16_PROC;
485 strcpy( win16_exe_name, main_exe_name );
486 main_exe_name[0] = 0;
487 *win16_exe_file = main_exe_file;
488 main_exe_file = 0;
489 _EnterWin16Lock();
491 found:
492 /* allocate main thread stack */
493 if (!THREAD_InitStack( NtCurrentTeb(), stack_size, TRUE )) goto error;
495 /* switch to the new stack */
496 SYSDEPS_SwitchToThreadStack( start_process );
498 error:
499 ExitProcess( GetLastError() );
503 /***********************************************************************
504 * PROCESS_InitWinelib
506 * Initialisation of a new Winelib process.
508 void PROCESS_InitWinelib( int argc, char *argv[] )
510 if (!process_init( argv )) exit(1);
512 /* allocate main thread stack */
513 if (!THREAD_InitStack( NtCurrentTeb(), 0, TRUE )) ExitProcess( GetLastError() );
515 /* switch to the new stack */
516 SYSDEPS_SwitchToThreadStack( start_process );
520 /***********************************************************************
521 * build_argv
523 * Build an argv array from a command-line.
524 * The command-line is modified to insert nulls.
525 * 'reserved' is the number of args to reserve before the first one.
527 static char **build_argv( char *cmdline, int reserved )
529 char **argv;
530 int count = reserved + 1;
531 char *p = cmdline;
533 /* if first word is quoted store it as a single arg */
534 if (*cmdline == '\"')
536 if ((p = strchr( cmdline + 1, '\"' )))
538 p++;
539 count++;
541 else p = cmdline;
543 while (*p)
545 while (*p && isspace(*p)) p++;
546 if (!*p) break;
547 count++;
548 while (*p && !isspace(*p)) p++;
551 if ((argv = malloc( count * sizeof(*argv) )))
553 char **argvptr = argv + reserved;
554 p = cmdline;
555 if (*cmdline == '\"')
557 if ((p = strchr( cmdline + 1, '\"' )))
559 *argvptr++ = cmdline + 1;
560 *p++ = 0;
562 else p = cmdline;
564 while (*p)
566 while (*p && isspace(*p)) *p++ = 0;
567 if (!*p) break;
568 *argvptr++ = p;
569 while (*p && !isspace(*p)) p++;
571 *argvptr = 0;
573 return argv;
577 /***********************************************************************
578 * build_envp
580 * Build the environment of a new child process.
582 static char **build_envp( const char *env, const char *extra_env )
584 const char *p;
585 char **envp;
586 int count = 0;
588 if (extra_env) for (p = extra_env; *p; count++) p += strlen(p) + 1;
589 for (p = env; *p; count++) p += strlen(p) + 1;
590 count += 3;
592 if ((envp = malloc( count * sizeof(*envp) )))
594 extern char **environ;
595 char **envptr = envp;
596 char **unixptr = environ;
597 /* first the extra strings */
598 if (extra_env) for (p = extra_env; *p; p += strlen(p) + 1) *envptr++ = (char *)p;
599 /* then put PATH, HOME and WINEPREFIX from the unix env */
600 for (unixptr = environ; unixptr && *unixptr; unixptr++)
601 if (!memcmp( *unixptr, "PATH=", 5 ) ||
602 !memcmp( *unixptr, "HOME=", 5 ) ||
603 !memcmp( *unixptr, "WINEPREFIX=", 11 )) *envptr++ = *unixptr;
604 /* now put the Windows environment strings */
605 for (p = env; *p; p += strlen(p) + 1)
607 if (memcmp( p, "PATH=", 5 ) &&
608 memcmp( p, "HOME=", 5 ) &&
609 memcmp( p, "WINEPRELOAD=", 12 ) &&
610 memcmp( p, "WINEPREFIX=", 11 )) *envptr++ = (char *)p;
612 *envptr = 0;
614 return envp;
618 /***********************************************************************
619 * exec_wine_binary
621 * Locate the Wine binary to exec for a new Win32 process.
623 static void exec_wine_binary( char **argv, char **envp )
625 const char *path, *pos, *ptr;
627 /* first, try for a WINELOADER environment variable */
628 argv[0] = getenv("WINELOADER");
629 if (argv[0])
630 execve( argv[0], argv, envp );
632 /* next, try bin directory */
633 argv[0] = BINDIR "/wine";
634 execve( argv[0], argv, envp );
636 /* now try the path of argv0 of the current binary */
637 if (!(argv[0] = malloc( strlen(full_argv0) + 6 ))) return;
638 if ((ptr = strrchr( full_argv0, '/' )))
640 memcpy( argv[0], full_argv0, ptr - full_argv0 );
641 strcpy( argv[0] + (ptr - full_argv0), "/wine" );
642 execve( argv[0], argv, envp );
644 free( argv[0] );
646 /* now search in the Unix path */
647 if ((path = getenv( "PATH" )))
649 if (!(argv[0] = malloc( strlen(path) + 6 ))) return;
650 pos = path;
651 for (;;)
653 while (*pos == ':') pos++;
654 if (!*pos) break;
655 if (!(ptr = strchr( pos, ':' ))) ptr = pos + strlen(pos);
656 memcpy( argv[0], pos, ptr - pos );
657 strcpy( argv[0] + (ptr - pos), "/wine" );
658 execve( argv[0], argv, envp );
659 pos = ptr;
662 free( argv[0] );
664 /* finally try the current directory */
665 argv[0] = "./wine";
666 execve( argv[0], argv, envp );
670 /***********************************************************************
671 * fork_and_exec
673 * Fork and exec a new Unix process, checking for errors.
675 static int fork_and_exec( const char *filename, char *cmdline,
676 const char *env, const char *newdir )
678 int fd[2];
679 int pid, err;
680 char *extra_env = NULL;
682 if (!env)
684 env = GetEnvironmentStringsA();
685 extra_env = DRIVE_BuildEnv();
688 if (pipe(fd) == -1)
690 FILE_SetDosError();
691 return -1;
693 fcntl( fd[1], F_SETFD, 1 ); /* set close on exec */
694 if (!(pid = fork())) /* child */
696 char **argv = build_argv( cmdline, filename ? 0 : 2 );
697 char **envp = build_envp( env, extra_env );
698 close( fd[0] );
700 if (newdir) chdir(newdir);
702 if (argv && envp)
704 if (!filename)
706 argv[1] = "--";
707 exec_wine_binary( argv, envp );
709 else execve( filename, argv, envp );
711 err = errno;
712 write( fd[1], &err, sizeof(err) );
713 _exit(1);
715 close( fd[1] );
716 if ((pid != -1) && (read( fd[0], &err, sizeof(err) ) > 0)) /* exec failed */
718 errno = err;
719 pid = -1;
721 if (pid == -1) FILE_SetDosError();
722 close( fd[0] );
723 if (extra_env) HeapFree( GetProcessHeap(), 0, extra_env );
724 return pid;
728 /***********************************************************************
729 * PROCESS_Create
731 * Create a new process. If hFile is a valid handle we have an exe
732 * file, and we exec a new copy of wine to load it; otherwise we
733 * simply exec the specified filename as a Unix process.
735 BOOL PROCESS_Create( HANDLE hFile, LPCSTR filename, LPSTR cmd_line, LPCSTR env,
736 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
737 BOOL inherit, DWORD flags, LPSTARTUPINFOA startup,
738 LPPROCESS_INFORMATION info, LPCSTR lpCurrentDirectory )
740 BOOL ret;
741 int pid;
742 const char *unixfilename = NULL;
743 const char *unixdir = NULL;
744 DOS_FULL_NAME full_dir, full_name;
745 HANDLE load_done_evt = 0;
746 HANDLE process_info;
748 info->hThread = info->hProcess = 0;
750 if (lpCurrentDirectory)
752 if (DOSFS_GetFullName( lpCurrentDirectory, TRUE, &full_dir ))
753 unixdir = full_dir.long_name;
755 else
757 char buf[MAX_PATH];
758 if (GetCurrentDirectoryA(sizeof(buf),buf))
760 if (DOSFS_GetFullName( buf, TRUE, &full_dir ))
761 unixdir = full_dir.long_name;
765 /* create the process on the server side */
767 SERVER_START_REQ
769 struct new_process_request *req = server_alloc_req( sizeof(*req), MAX_PATH );
770 req->inherit_all = inherit;
771 req->create_flags = flags;
772 req->start_flags = startup->dwFlags;
773 req->exe_file = hFile;
774 if (startup->dwFlags & STARTF_USESTDHANDLES)
776 req->hstdin = startup->hStdInput;
777 req->hstdout = startup->hStdOutput;
778 req->hstderr = startup->hStdError;
780 else
782 req->hstdin = GetStdHandle( STD_INPUT_HANDLE );
783 req->hstdout = GetStdHandle( STD_OUTPUT_HANDLE );
784 req->hstderr = GetStdHandle( STD_ERROR_HANDLE );
786 req->cmd_show = startup->wShowWindow;
788 if (!hFile) /* unix process */
790 unixfilename = filename;
791 if (DOSFS_GetFullName( filename, TRUE, &full_name ))
792 unixfilename = full_name.long_name;
793 lstrcpynA( server_data_ptr(req), unixfilename, MAX_PATH );
795 else /* new wine process */
797 if (!GetLongPathNameA( filename, server_data_ptr(req), MAX_PATH ))
798 lstrcpynA( server_data_ptr(req), filename, MAX_PATH );
800 ret = !server_call( REQ_NEW_PROCESS );
801 process_info = req->info;
803 SERVER_END_REQ;
804 if (!ret) return FALSE;
806 /* fork and execute */
808 pid = fork_and_exec( unixfilename, cmd_line, env, unixdir );
810 /* wait for the new process info to be ready */
812 ret = FALSE;
813 if ((pid != -1) && (WaitForSingleObject( process_info, 2000 ) == STATUS_WAIT_0))
815 SERVER_START_REQ
817 struct get_new_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
818 req->info = process_info;
819 req->pinherit = (psa && (psa->nLength >= sizeof(*psa)) && psa->bInheritHandle);
820 req->tinherit = (tsa && (tsa->nLength >= sizeof(*tsa)) && tsa->bInheritHandle);
821 if ((ret = !server_call( REQ_GET_NEW_PROCESS_INFO )))
823 info->dwProcessId = (DWORD)req->pid;
824 info->dwThreadId = (DWORD)req->tid;
825 info->hProcess = req->phandle;
826 info->hThread = req->thandle;
827 load_done_evt = req->event;
830 SERVER_END_REQ;
832 CloseHandle( process_info );
833 if (!ret) goto error;
835 /* Wait until process is initialized (or initialization failed) */
836 if (load_done_evt)
838 DWORD res;
839 HANDLE handles[2];
841 handles[0] = info->hProcess;
842 handles[1] = load_done_evt;
843 res = WaitForMultipleObjects( 2, handles, FALSE, INFINITE );
844 CloseHandle( load_done_evt );
845 if (res == STATUS_WAIT_0) /* the process died */
847 DWORD exitcode;
848 if (GetExitCodeProcess( info->hProcess, &exitcode )) SetLastError( exitcode );
849 CloseHandle( info->hThread );
850 CloseHandle( info->hProcess );
851 return FALSE;
854 return TRUE;
856 error:
857 if (load_done_evt) CloseHandle( load_done_evt );
858 if (info->hThread) CloseHandle( info->hThread );
859 if (info->hProcess) CloseHandle( info->hProcess );
860 return FALSE;
864 /***********************************************************************
865 * ExitProcess (KERNEL32.100)
867 void WINAPI ExitProcess( DWORD status )
869 MODULE_DllProcessDetach( TRUE, (LPVOID)1 );
870 SERVER_START_REQ
872 struct terminate_process_request *req = server_alloc_req( sizeof(*req), 0 );
873 /* send the exit code to the server */
874 req->handle = GetCurrentProcess();
875 req->exit_code = status;
876 server_call( REQ_TERMINATE_PROCESS );
878 SERVER_END_REQ;
879 exit( status );
882 /***********************************************************************
883 * ExitProcess16 (KERNEL.466)
885 void WINAPI ExitProcess16( WORD status )
887 DWORD count;
888 ReleaseThunkLock( &count );
889 ExitProcess( status );
892 /******************************************************************************
893 * TerminateProcess (KERNEL32.684)
895 BOOL WINAPI TerminateProcess( HANDLE handle, DWORD exit_code )
897 NTSTATUS status = NtTerminateProcess( handle, exit_code );
898 if (status) SetLastError( RtlNtStatusToDosError(status) );
899 return !status;
903 /***********************************************************************
904 * GetProcessDword (KERNEL32.18) (KERNEL.485)
905 * 'Of course you cannot directly access Windows internal structures'
907 DWORD WINAPI GetProcessDword( DWORD dwProcessID, INT offset )
909 DWORD x, y;
911 TRACE_(win32)("(%ld, %d)\n", dwProcessID, offset );
913 if (dwProcessID && dwProcessID != GetCurrentProcessId())
915 ERR("%d: process %lx not accessible\n", offset, dwProcessID);
916 return 0;
919 switch ( offset )
921 case GPD_APP_COMPAT_FLAGS:
922 return GetAppCompatFlags16(0);
924 case GPD_LOAD_DONE_EVENT:
925 return current_process.load_done_evt;
927 case GPD_HINSTANCE16:
928 return GetTaskDS16();
930 case GPD_WINDOWS_VERSION:
931 return GetExeVersion16();
933 case GPD_THDB:
934 return (DWORD)NtCurrentTeb() - 0x10 /* FIXME */;
936 case GPD_PDB:
937 return (DWORD)&current_process;
939 case GPD_STARTF_SHELLDATA: /* return stdoutput handle from startupinfo ??? */
940 return current_startupinfo.hStdOutput;
942 case GPD_STARTF_HOTKEY: /* return stdinput handle from startupinfo ??? */
943 return current_startupinfo.hStdInput;
945 case GPD_STARTF_SHOWWINDOW:
946 return current_startupinfo.wShowWindow;
948 case GPD_STARTF_SIZE:
949 x = current_startupinfo.dwXSize;
950 if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
951 y = current_startupinfo.dwYSize;
952 if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
953 return MAKELONG( x, y );
955 case GPD_STARTF_POSITION:
956 x = current_startupinfo.dwX;
957 if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
958 y = current_startupinfo.dwY;
959 if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
960 return MAKELONG( x, y );
962 case GPD_STARTF_FLAGS:
963 return current_startupinfo.dwFlags;
965 case GPD_PARENT:
966 return 0;
968 case GPD_FLAGS:
969 return current_process.flags;
971 case GPD_USERDATA:
972 return current_process.process_dword;
974 default:
975 ERR_(win32)("Unknown offset %d\n", offset );
976 return 0;
980 /***********************************************************************
981 * SetProcessDword (KERNEL.484)
982 * 'Of course you cannot directly access Windows internal structures'
984 void WINAPI SetProcessDword( DWORD dwProcessID, INT offset, DWORD value )
986 TRACE_(win32)("(%ld, %d)\n", dwProcessID, offset );
988 if (dwProcessID && dwProcessID != GetCurrentProcessId())
990 ERR("%d: process %lx not accessible\n", offset, dwProcessID);
991 return;
994 switch ( offset )
996 case GPD_APP_COMPAT_FLAGS:
997 case GPD_LOAD_DONE_EVENT:
998 case GPD_HINSTANCE16:
999 case GPD_WINDOWS_VERSION:
1000 case GPD_THDB:
1001 case GPD_PDB:
1002 case GPD_STARTF_SHELLDATA:
1003 case GPD_STARTF_HOTKEY:
1004 case GPD_STARTF_SHOWWINDOW:
1005 case GPD_STARTF_SIZE:
1006 case GPD_STARTF_POSITION:
1007 case GPD_STARTF_FLAGS:
1008 case GPD_PARENT:
1009 case GPD_FLAGS:
1010 ERR_(win32)("Not allowed to modify offset %d\n", offset );
1011 break;
1013 case GPD_USERDATA:
1014 current_process.process_dword = value;
1015 break;
1017 default:
1018 ERR_(win32)("Unknown offset %d\n", offset );
1019 break;
1024 /*********************************************************************
1025 * OpenProcess (KERNEL32.543)
1027 HANDLE WINAPI OpenProcess( DWORD access, BOOL inherit, DWORD id )
1029 HANDLE ret = 0;
1030 SERVER_START_REQ
1032 struct open_process_request *req = server_alloc_req( sizeof(*req), 0 );
1034 req->pid = (void *)id;
1035 req->access = access;
1036 req->inherit = inherit;
1037 if (!server_call( REQ_OPEN_PROCESS )) ret = req->handle;
1039 SERVER_END_REQ;
1040 return ret;
1043 /*********************************************************************
1044 * MapProcessHandle (KERNEL.483)
1046 DWORD WINAPI MapProcessHandle( HANDLE handle )
1048 DWORD ret = 0;
1049 SERVER_START_REQ
1051 struct get_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1052 req->handle = handle;
1053 if (!server_call( REQ_GET_PROCESS_INFO )) ret = (DWORD)req->pid;
1055 SERVER_END_REQ;
1056 return ret;
1059 /***********************************************************************
1060 * SetPriorityClass (KERNEL32.503)
1062 BOOL WINAPI SetPriorityClass( HANDLE hprocess, DWORD priorityclass )
1064 BOOL ret;
1065 SERVER_START_REQ
1067 struct set_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1068 req->handle = hprocess;
1069 req->priority = priorityclass;
1070 req->mask = SET_PROCESS_INFO_PRIORITY;
1071 ret = !server_call( REQ_SET_PROCESS_INFO );
1073 SERVER_END_REQ;
1074 return ret;
1078 /***********************************************************************
1079 * GetPriorityClass (KERNEL32.250)
1081 DWORD WINAPI GetPriorityClass(HANDLE hprocess)
1083 DWORD ret = 0;
1084 SERVER_START_REQ
1086 struct get_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1087 req->handle = hprocess;
1088 if (!server_call( REQ_GET_PROCESS_INFO )) ret = req->priority;
1090 SERVER_END_REQ;
1091 return ret;
1095 /***********************************************************************
1096 * SetProcessAffinityMask (KERNEL32.662)
1098 BOOL WINAPI SetProcessAffinityMask( HANDLE hProcess, DWORD affmask )
1100 BOOL ret;
1101 SERVER_START_REQ
1103 struct set_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1104 req->handle = hProcess;
1105 req->affinity = affmask;
1106 req->mask = SET_PROCESS_INFO_AFFINITY;
1107 ret = !server_call( REQ_SET_PROCESS_INFO );
1109 SERVER_END_REQ;
1110 return ret;
1113 /**********************************************************************
1114 * GetProcessAffinityMask (KERNEL32.373)
1116 BOOL WINAPI GetProcessAffinityMask( HANDLE hProcess,
1117 LPDWORD lpProcessAffinityMask,
1118 LPDWORD lpSystemAffinityMask )
1120 BOOL ret = FALSE;
1121 SERVER_START_REQ
1123 struct get_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1124 req->handle = hProcess;
1125 if (!server_call( REQ_GET_PROCESS_INFO ))
1127 if (lpProcessAffinityMask) *lpProcessAffinityMask = req->process_affinity;
1128 if (lpSystemAffinityMask) *lpSystemAffinityMask = req->system_affinity;
1129 ret = TRUE;
1132 SERVER_END_REQ;
1133 return ret;
1137 /***********************************************************************
1138 * GetProcessVersion (KERNEL32)
1140 DWORD WINAPI GetProcessVersion( DWORD processid )
1142 IMAGE_NT_HEADERS *nt;
1144 if (processid && processid != GetCurrentProcessId())
1146 FIXME("should use ReadProcessMemory\n");
1147 return 0;
1149 if ((nt = RtlImageNtHeader( current_process.module )))
1150 return ((nt->OptionalHeader.MajorSubsystemVersion << 16) |
1151 nt->OptionalHeader.MinorSubsystemVersion);
1152 return 0;
1155 /***********************************************************************
1156 * GetProcessFlags (KERNEL32)
1158 DWORD WINAPI GetProcessFlags( DWORD processid )
1160 if (processid && processid != GetCurrentProcessId()) return 0;
1161 return current_process.flags;
1165 /***********************************************************************
1166 * SetProcessWorkingSetSize [KERNEL32.662]
1167 * Sets the min/max working set sizes for a specified process.
1169 * PARAMS
1170 * hProcess [I] Handle to the process of interest
1171 * minset [I] Specifies minimum working set size
1172 * maxset [I] Specifies maximum working set size
1174 * RETURNS STD
1176 BOOL WINAPI SetProcessWorkingSetSize(HANDLE hProcess,DWORD minset,
1177 DWORD maxset)
1179 FIXME("(0x%08x,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
1180 if(( minset == (DWORD)-1) && (maxset == (DWORD)-1)) {
1181 /* Trim the working set to zero */
1182 /* Swap the process out of physical RAM */
1184 return TRUE;
1187 /***********************************************************************
1188 * GetProcessWorkingSetSize (KERNEL32)
1190 BOOL WINAPI GetProcessWorkingSetSize(HANDLE hProcess,LPDWORD minset,
1191 LPDWORD maxset)
1193 FIXME("(0x%08x,%p,%p): stub\n",hProcess,minset,maxset);
1194 /* 32 MB working set size */
1195 if (minset) *minset = 32*1024*1024;
1196 if (maxset) *maxset = 32*1024*1024;
1197 return TRUE;
1200 /***********************************************************************
1201 * SetProcessShutdownParameters (KERNEL32)
1203 * CHANGED - James Sutherland (JamesSutherland@gmx.de)
1204 * Now tracks changes made (but does not act on these changes)
1206 static DWORD shutdown_flags = 0;
1207 static DWORD shutdown_priority = 0x280;
1209 BOOL WINAPI SetProcessShutdownParameters(DWORD level, DWORD flags)
1211 FIXME("(%08lx, %08lx): partial stub.\n", level, flags);
1212 shutdown_flags = flags;
1213 shutdown_priority = level;
1214 return TRUE;
1218 /***********************************************************************
1219 * GetProcessShutdownParameters (KERNEL32)
1222 BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel, LPDWORD lpdwFlags )
1224 *lpdwLevel = shutdown_priority;
1225 *lpdwFlags = shutdown_flags;
1226 return TRUE;
1230 /***********************************************************************
1231 * SetProcessPriorityBoost (KERNEL32)
1233 BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost)
1235 FIXME("(%d,%d): stub\n",hprocess,disableboost);
1236 /* Say we can do it. I doubt the program will notice that we don't. */
1237 return TRUE;
1241 /***********************************************************************
1242 * ReadProcessMemory (KERNEL32)
1244 BOOL WINAPI ReadProcessMemory( HANDLE process, LPCVOID addr, LPVOID buffer, DWORD size,
1245 LPDWORD bytes_read )
1247 unsigned int offset = (unsigned int)addr % sizeof(int);
1248 unsigned int pos = 0, len, max;
1249 int res;
1251 if (bytes_read) *bytes_read = size;
1253 /* first time, read total length to check for permissions */
1254 len = (size + offset + sizeof(int) - 1) / sizeof(int);
1255 max = min( REQUEST_MAX_VAR_SIZE, len * sizeof(int) );
1257 for (;;)
1259 SERVER_START_REQ
1261 struct read_process_memory_request *req = server_alloc_req( sizeof(*req), max );
1262 req->handle = process;
1263 req->addr = (char *)addr + pos - offset;
1264 req->len = len;
1265 if (!(res = server_call( REQ_READ_PROCESS_MEMORY )))
1267 size_t result = server_data_size( req );
1268 if (result > size + offset) result = size + offset;
1269 memcpy( (char *)buffer + pos, server_data_ptr(req) + offset, result - offset );
1270 size -= result - offset;
1271 pos += result - offset;
1274 SERVER_END_REQ;
1275 if (res)
1277 if (bytes_read) *bytes_read = 0;
1278 return FALSE;
1280 if (!size) return TRUE;
1281 max = min( REQUEST_MAX_VAR_SIZE, size );
1282 len = (max + sizeof(int) - 1) / sizeof(int);
1283 offset = 0;
1288 /***********************************************************************
1289 * WriteProcessMemory (KERNEL32)
1291 BOOL WINAPI WriteProcessMemory( HANDLE process, LPVOID addr, LPVOID buffer, DWORD size,
1292 LPDWORD bytes_written )
1294 unsigned int first_offset, last_offset;
1295 unsigned int pos = 0, len, max, first_mask, last_mask;
1296 int res;
1298 if (!size)
1300 SetLastError( ERROR_INVALID_PARAMETER );
1301 return FALSE;
1303 if (bytes_written) *bytes_written = size;
1305 /* compute the mask for the first int */
1306 first_mask = ~0;
1307 first_offset = (unsigned int)addr % sizeof(int);
1308 memset( &first_mask, 0, first_offset );
1310 /* compute the mask for the last int */
1311 last_offset = (size + first_offset) % sizeof(int);
1312 last_mask = 0;
1313 memset( &last_mask, 0xff, last_offset ? last_offset : sizeof(int) );
1315 /* for the first request, use the total length */
1316 len = (size + first_offset + sizeof(int) - 1) / sizeof(int);
1317 max = min( REQUEST_MAX_VAR_SIZE, len * sizeof(int) );
1319 for (;;)
1321 SERVER_START_REQ
1323 struct write_process_memory_request *req = server_alloc_req( sizeof(*req), max );
1324 req->handle = process;
1325 req->addr = (char *)addr - first_offset + pos;
1326 req->len = len;
1327 req->first_mask = (!pos) ? first_mask : ~0;
1328 if (size + first_offset <= max) /* last round */
1330 req->last_mask = last_mask;
1331 max = size + first_offset;
1333 else req->last_mask = ~0;
1335 memcpy( (char *)server_data_ptr(req) + first_offset, (char *)buffer + pos,
1336 max - first_offset );
1337 if (!(res = server_call( REQ_WRITE_PROCESS_MEMORY )))
1339 pos += max - first_offset;
1340 size -= max - first_offset;
1343 SERVER_END_REQ;
1344 if (res)
1346 if (bytes_written) *bytes_written = 0;
1347 return FALSE;
1349 if (!size) return TRUE;
1350 first_offset = 0;
1351 len = min( size + sizeof(int) - 1, REQUEST_MAX_VAR_SIZE ) / sizeof(int);
1352 max = len * sizeof(int);
1357 /***********************************************************************
1358 * RegisterServiceProcess (KERNEL, KERNEL32)
1360 * A service process calls this function to ensure that it continues to run
1361 * even after a user logged off.
1363 DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
1365 /* I don't think that Wine needs to do anything in that function */
1366 return 1; /* success */
1369 /***********************************************************************
1370 * GetExitCodeProcess [KERNEL32.325]
1372 * Gets termination status of specified process
1374 * RETURNS
1375 * Success: TRUE
1376 * Failure: FALSE
1378 BOOL WINAPI GetExitCodeProcess(
1379 HANDLE hProcess, /* [in] handle to the process */
1380 LPDWORD lpExitCode) /* [out] address to receive termination status */
1382 BOOL ret;
1383 SERVER_START_REQ
1385 struct get_process_info_request *req = server_alloc_req( sizeof(*req), 0 );
1386 req->handle = hProcess;
1387 ret = !server_call( REQ_GET_PROCESS_INFO );
1388 if (ret && lpExitCode) *lpExitCode = req->exit_code;
1390 SERVER_END_REQ;
1391 return ret;
1395 /***********************************************************************
1396 * SetErrorMode (KERNEL32.486)
1398 UINT WINAPI SetErrorMode( UINT mode )
1400 UINT old = current_process.error_mode;
1401 current_process.error_mode = mode;
1402 return old;
1406 /**********************************************************************
1407 * TlsAlloc [KERNEL32.530] Allocates a TLS index.
1409 * Allocates a thread local storage index
1411 * RETURNS
1412 * Success: TLS Index
1413 * Failure: 0xFFFFFFFF
1415 DWORD WINAPI TlsAlloc( void )
1417 DWORD i, mask, ret = 0;
1418 DWORD *bits = current_process.tls_bits;
1419 RtlAcquirePebLock();
1420 if (*bits == 0xffffffff)
1422 bits++;
1423 ret = 32;
1424 if (*bits == 0xffffffff)
1426 RtlReleasePebLock();
1427 SetLastError( ERROR_NO_MORE_ITEMS );
1428 return 0xffffffff;
1431 for (i = 0, mask = 1; i < 32; i++, mask <<= 1) if (!(*bits & mask)) break;
1432 *bits |= mask;
1433 RtlReleasePebLock();
1434 return ret + i;
1438 /**********************************************************************
1439 * TlsFree [KERNEL32.531] Releases a TLS index.
1441 * Releases a thread local storage index, making it available for reuse
1443 * RETURNS
1444 * Success: TRUE
1445 * Failure: FALSE
1447 BOOL WINAPI TlsFree(
1448 DWORD index) /* [in] TLS Index to free */
1450 DWORD mask = (1 << (index & 31));
1451 DWORD *bits = current_process.tls_bits;
1452 if (index >= 64)
1454 SetLastError( ERROR_INVALID_PARAMETER );
1455 return FALSE;
1457 if (index >= 32) bits++;
1458 RtlAcquirePebLock();
1459 if (!(*bits & mask)) /* already free? */
1461 RtlReleasePebLock();
1462 SetLastError( ERROR_INVALID_PARAMETER );
1463 return FALSE;
1465 *bits &= ~mask;
1466 NtCurrentTeb()->tls_array[index] = 0;
1467 /* FIXME: should zero all other thread values */
1468 RtlReleasePebLock();
1469 return TRUE;
1473 /**********************************************************************
1474 * TlsGetValue [KERNEL32.532] Gets value in a thread's TLS slot
1476 * RETURNS
1477 * Success: Value stored in calling thread's TLS slot for index
1478 * Failure: 0 and GetLastError returns NO_ERROR
1480 LPVOID WINAPI TlsGetValue(
1481 DWORD index) /* [in] TLS index to retrieve value for */
1483 if (index >= 64)
1485 SetLastError( ERROR_INVALID_PARAMETER );
1486 return NULL;
1488 SetLastError( ERROR_SUCCESS );
1489 return NtCurrentTeb()->tls_array[index];
1493 /**********************************************************************
1494 * TlsSetValue [KERNEL32.533] Stores a value in the thread's TLS slot.
1496 * RETURNS
1497 * Success: TRUE
1498 * Failure: FALSE
1500 BOOL WINAPI TlsSetValue(
1501 DWORD index, /* [in] TLS index to set value for */
1502 LPVOID value) /* [in] Value to be stored */
1504 if (index >= 64)
1506 SetLastError( ERROR_INVALID_PARAMETER );
1507 return FALSE;
1509 NtCurrentTeb()->tls_array[index] = value;
1510 return TRUE;
1514 /***********************************************************************
1515 * GetCurrentProcess (KERNEL32.198)
1517 #undef GetCurrentProcess
1518 HANDLE WINAPI GetCurrentProcess(void)
1520 return 0xffffffff;