4 * Copyright 1996, 1998 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
22 #include "wine/port.h"
31 #ifdef HAVE_SYS_TIME_H
32 # include <sys/time.h>
34 #include <sys/types.h>
36 #include "wine/winbase16.h"
37 #include "wine/winuser16.h"
42 #include "kernel_private.h"
43 #include "wine/exception.h"
44 #include "wine/server.h"
45 #include "wine/unicode.h"
46 #include "wine/debug.h"
48 WINE_DEFAULT_DEBUG_CHANNEL(process
);
49 WINE_DECLARE_DEBUG_CHANNEL(file
);
50 WINE_DECLARE_DEBUG_CHANNEL(relay
);
60 static UINT process_error_mode
;
62 static HANDLE main_exe_file
;
63 static DWORD shutdown_flags
= 0;
64 static DWORD shutdown_priority
= 0x280;
65 static DWORD process_dword
;
67 int main_create_flags
= 0;
68 HMODULE kernel32_handle
= 0;
70 const WCHAR
*DIR_Windows
= NULL
;
71 const WCHAR
*DIR_System
= NULL
;
74 #define PDB32_DEBUGGED 0x0001 /* Process is being debugged */
75 #define PDB32_WIN16_PROC 0x0008 /* Win16 process */
76 #define PDB32_DOS_PROC 0x0010 /* Dos process */
77 #define PDB32_CONSOLE_PROC 0x0020 /* Console process */
78 #define PDB32_FILE_APIS_OEM 0x0040 /* File APIs are OEM */
79 #define PDB32_WIN32S_PROC 0x8000 /* Win32s process */
81 static const WCHAR comW
[] = {'.','c','o','m',0};
82 static const WCHAR batW
[] = {'.','b','a','t',0};
83 static const WCHAR pifW
[] = {'.','p','i','f',0};
84 static const WCHAR winevdmW
[] = {'w','i','n','e','v','d','m','.','e','x','e',0};
86 extern void SHELL_LoadRegistry(void);
89 /***********************************************************************
92 inline static int contains_path( LPCWSTR name
)
94 return ((*name
&& (name
[1] == ':')) || strchrW(name
, '/') || strchrW(name
, '\\'));
98 /***********************************************************************
101 * Check if an environment variable needs to be handled specially when
102 * passed through the Unix environment (i.e. prefixed with "WINE").
104 inline static int is_special_env_var( const char *var
)
106 return (!strncmp( var
, "PATH=", sizeof("PATH=")-1 ) ||
107 !strncmp( var
, "HOME=", sizeof("HOME=")-1 ) ||
108 !strncmp( var
, "TEMP=", sizeof("TEMP=")-1 ) ||
109 !strncmp( var
, "TMP=", sizeof("TMP=")-1 ));
113 /***************************************************************************
116 * Get the path of a builtin module when the native file does not exist.
118 static BOOL
get_builtin_path( const WCHAR
*libname
, const WCHAR
*ext
, WCHAR
*filename
, UINT size
)
121 UINT len
= strlenW( DIR_System
);
123 if (contains_path( libname
))
125 if (RtlGetFullPathName_U( libname
, size
* sizeof(WCHAR
),
126 filename
, &file_part
) > size
* sizeof(WCHAR
))
127 return FALSE
; /* too long */
129 if (strncmpiW( filename
, DIR_System
, len
) || filename
[len
] != '\\')
131 while (filename
[len
] == '\\') len
++;
132 if (filename
+ len
!= file_part
) return FALSE
;
136 if (strlenW(libname
) + len
+ 2 >= size
) return FALSE
; /* too long */
137 memcpy( filename
, DIR_System
, len
* sizeof(WCHAR
) );
138 file_part
= filename
+ len
;
139 if (file_part
> filename
&& file_part
[-1] != '\\') *file_part
++ = '\\';
140 strcpyW( file_part
, libname
);
142 if (ext
&& !strchrW( file_part
, '.' ))
144 if (file_part
+ strlenW(file_part
) + strlenW(ext
) + 1 > filename
+ size
)
145 return FALSE
; /* too long */
146 strcatW( file_part
, ext
);
152 /***********************************************************************
153 * open_builtin_exe_file
155 * Open an exe file for a builtin exe.
157 static void *open_builtin_exe_file( const WCHAR
*name
, char *error
, int error_size
,
158 int test_only
, int *file_exists
)
160 char exename
[MAX_PATH
];
164 if ((p
= strrchrW( name
, '/' ))) name
= p
+ 1;
165 if ((p
= strrchrW( name
, '\\' ))) name
= p
+ 1;
167 /* we don't want to depend on the current codepage here */
168 len
= strlenW( name
) + 1;
169 if (len
>= sizeof(exename
)) return NULL
;
170 for (i
= 0; i
< len
; i
++)
172 if (name
[i
] > 127) return NULL
;
173 exename
[i
] = (char)name
[i
];
174 if (exename
[i
] >= 'A' && exename
[i
] <= 'Z') exename
[i
] += 'a' - 'A';
176 return wine_dll_load_main_exe( exename
, error
, error_size
, test_only
, file_exists
);
180 /***********************************************************************
183 * Open a specific exe file, taking load order into account.
184 * Returns the file handle or 0 for a builtin exe.
186 static HANDLE
open_exe_file( const WCHAR
*name
)
188 enum loadorder_type loadorder
[LOADORDER_NTYPES
];
189 WCHAR buffer
[MAX_PATH
];
193 TRACE("looking for %s\n", debugstr_w(name
) );
195 if ((handle
= CreateFileW( name
, GENERIC_READ
, FILE_SHARE_READ
|FILE_SHARE_DELETE
,
196 NULL
, OPEN_EXISTING
, 0, 0 )) == INVALID_HANDLE_VALUE
)
198 /* file doesn't exist, check for builtin */
199 if (!contains_path( name
)) goto error
;
200 if (!get_builtin_path( name
, NULL
, buffer
, sizeof(buffer
) )) goto error
;
204 MODULE_GetLoadOrderW( loadorder
, NULL
, name
);
206 for(i
= 0; i
< LOADORDER_NTYPES
; i
++)
208 if (loadorder
[i
] == LOADORDER_INVALID
) break;
212 TRACE( "Trying native exe %s\n", debugstr_w(name
) );
213 if (handle
!= INVALID_HANDLE_VALUE
) return handle
;
216 TRACE( "Trying built-in exe %s\n", debugstr_w(name
) );
217 open_builtin_exe_file( name
, NULL
, 0, 1, &file_exists
);
220 if (handle
!= INVALID_HANDLE_VALUE
) CloseHandle(handle
);
227 if (handle
!= INVALID_HANDLE_VALUE
) CloseHandle(handle
);
230 SetLastError( ERROR_FILE_NOT_FOUND
);
231 return INVALID_HANDLE_VALUE
;
235 /***********************************************************************
238 * Open an exe file, and return the full name and file handle.
239 * Returns FALSE if file could not be found.
240 * If file exists but cannot be opened, returns TRUE and set handle to INVALID_HANDLE_VALUE.
241 * If file is a builtin exe, returns TRUE and sets handle to 0.
243 static BOOL
find_exe_file( const WCHAR
*name
, WCHAR
*buffer
, int buflen
, HANDLE
*handle
)
245 static const WCHAR exeW
[] = {'.','e','x','e',0};
247 enum loadorder_type loadorder
[LOADORDER_NTYPES
];
250 TRACE("looking for %s\n", debugstr_w(name
) );
252 if (!SearchPathW( NULL
, name
, exeW
, buflen
, buffer
, NULL
) &&
253 !get_builtin_path( name
, exeW
, buffer
, buflen
))
255 /* no builtin found, try native without extension in case it is a Unix app */
257 if (SearchPathW( NULL
, name
, NULL
, buflen
, buffer
, NULL
))
259 TRACE( "Trying native/Unix binary %s\n", debugstr_w(buffer
) );
260 if ((*handle
= CreateFileW( buffer
, GENERIC_READ
, FILE_SHARE_READ
|FILE_SHARE_DELETE
,
261 NULL
, OPEN_EXISTING
, 0, 0 )) != INVALID_HANDLE_VALUE
)
267 MODULE_GetLoadOrderW( loadorder
, NULL
, buffer
);
269 for(i
= 0; i
< LOADORDER_NTYPES
; i
++)
271 if (loadorder
[i
] == LOADORDER_INVALID
) break;
275 TRACE( "Trying native exe %s\n", debugstr_w(buffer
) );
276 if ((*handle
= CreateFileW( buffer
, GENERIC_READ
, FILE_SHARE_READ
|FILE_SHARE_DELETE
,
277 NULL
, OPEN_EXISTING
, 0, 0 )) != INVALID_HANDLE_VALUE
)
279 if (GetLastError() != ERROR_FILE_NOT_FOUND
) return TRUE
;
282 TRACE( "Trying built-in exe %s\n", debugstr_w(buffer
) );
283 open_builtin_exe_file( buffer
, NULL
, 0, 1, &file_exists
);
294 SetLastError( ERROR_FILE_NOT_FOUND
);
299 /**********************************************************************
302 * Load a PE format EXE file.
304 static HMODULE
load_pe_exe( const WCHAR
*name
, HANDLE file
)
307 FILE_FS_DEVICE_INFORMATION device_info
;
308 IMAGE_NT_HEADERS
*nt
;
311 OBJECT_ATTRIBUTES attr
;
315 attr
.Length
= sizeof(attr
);
316 attr
.RootDirectory
= 0;
317 attr
.ObjectName
= NULL
;
319 attr
.SecurityDescriptor
= NULL
;
320 attr
.SecurityQualityOfService
= NULL
;
323 if (NtCreateSection( &mapping
, STANDARD_RIGHTS_REQUIRED
| SECTION_QUERY
| SECTION_MAP_READ
,
324 &attr
, &size
, 0, SEC_IMAGE
, file
) != STATUS_SUCCESS
)
328 if (NtMapViewOfSection( mapping
, GetCurrentProcess(), &module
, 0, 0, &size
, &len
,
329 ViewShare
, 0, PAGE_READONLY
) != STATUS_SUCCESS
)
335 nt
= RtlImageNtHeader( module
);
336 if (nt
->OptionalHeader
.AddressOfEntryPoint
)
338 if (!RtlImageRvaToSection( nt
, module
, nt
->OptionalHeader
.AddressOfEntryPoint
))
339 MESSAGE("VIRUS WARNING: PE module %s has an invalid entrypoint (0x%08lx) "
340 "outside all sections (possibly infected by Tchernobyl/SpaceFiller virus)!\n",
341 debugstr_w(name
), nt
->OptionalHeader
.AddressOfEntryPoint
);
344 if (NtQueryVolumeInformationFile( file
, &io
, &device_info
, sizeof(device_info
),
345 FileFsDeviceInformation
) == STATUS_SUCCESS
)
347 /* don't keep the file handle open on removable media */
348 if (device_info
.Characteristics
& FILE_REMOVABLE_MEDIA
)
350 CloseHandle( main_exe_file
);
358 /***********************************************************************
359 * build_initial_environment
361 * Build the Win32 environment from the Unix environment
363 static BOOL
build_initial_environment( char **environ
)
370 /* Compute the total size of the Unix environment */
371 for (e
= environ
; *e
; e
++)
373 if (is_special_env_var( *e
)) continue;
374 size
+= MultiByteToWideChar( CP_UNIXCP
, 0, *e
, -1, NULL
, 0 );
376 size
*= sizeof(WCHAR
);
378 /* Now allocate the environment */
380 if (NtAllocateVirtualMemory(NtCurrentProcess(), &ptr
, 0, &size
,
381 MEM_RESERVE
| MEM_COMMIT
, PAGE_READWRITE
) != STATUS_SUCCESS
)
384 NtCurrentTeb()->Peb
->ProcessParameters
->Environment
= p
= ptr
;
385 endptr
= p
+ size
/ sizeof(WCHAR
);
387 /* And fill it with the Unix environment */
388 for (e
= environ
; *e
; e
++)
392 /* skip Unix special variables and use the Wine variants instead */
393 if (!strncmp( str
, "WINE", 4 ))
395 if (is_special_env_var( str
+ 4 )) str
+= 4;
396 else if (!strncmp( str
, "WINEPRELOADRESERVE=", 19 )) continue; /* skip it */
398 else if (is_special_env_var( str
)) continue; /* skip it */
400 MultiByteToWideChar( CP_UNIXCP
, 0, str
, -1, p
, endptr
- p
);
408 /***********************************************************************
409 * set_registry_variables
411 * Set environment variables by enumerating the values of a key;
412 * helper for set_registry_environment().
413 * Note that Windows happily truncates the value if it's too big.
415 static void set_registry_variables( HANDLE hkey
, ULONG type
)
417 UNICODE_STRING env_name
, env_value
;
421 char buffer
[1024*sizeof(WCHAR
) + sizeof(KEY_VALUE_FULL_INFORMATION
)];
422 KEY_VALUE_FULL_INFORMATION
*info
= (KEY_VALUE_FULL_INFORMATION
*)buffer
;
424 for (index
= 0; ; index
++)
426 status
= NtEnumerateValueKey( hkey
, index
, KeyValueFullInformation
,
427 buffer
, sizeof(buffer
), &size
);
428 if (status
!= STATUS_SUCCESS
&& status
!= STATUS_BUFFER_OVERFLOW
)
430 if (info
->Type
!= type
)
432 env_name
.Buffer
= info
->Name
;
433 env_name
.Length
= env_name
.MaximumLength
= info
->NameLength
;
434 env_value
.Buffer
= (WCHAR
*)(buffer
+ info
->DataOffset
);
435 env_value
.Length
= env_value
.MaximumLength
= info
->DataLength
;
436 if (env_value
.Length
&& !env_value
.Buffer
[env_value
.Length
/sizeof(WCHAR
)-1])
437 env_value
.Length
--; /* don't count terminating null if any */
438 if (info
->Type
== REG_EXPAND_SZ
)
440 WCHAR buf_expanded
[1024];
441 UNICODE_STRING env_expanded
;
442 env_expanded
.Length
= env_expanded
.MaximumLength
= sizeof(buf_expanded
);
443 env_expanded
.Buffer
=buf_expanded
;
444 status
= RtlExpandEnvironmentStrings_U(NULL
, &env_value
, &env_expanded
, NULL
);
445 if (status
== STATUS_SUCCESS
|| status
== STATUS_BUFFER_OVERFLOW
)
446 RtlSetEnvironmentVariable( NULL
, &env_name
, &env_expanded
);
450 RtlSetEnvironmentVariable( NULL
, &env_name
, &env_value
);
456 /***********************************************************************
457 * set_registry_environment
459 * Set the environment variables specified in the registry.
461 * Note: Windows handles REG_SZ and REG_EXPAND_SZ in one pass with the
462 * consequence that REG_EXPAND_SZ cannot be used reliably as it depends
463 * on the order in which the variables are processed. But on Windows it
464 * does not really matter since they only use %SystemDrive% and
465 * %SystemRoot% which are predefined. But Wine defines these in the
466 * registry, so we need two passes.
468 static void set_registry_environment(void)
470 static const WCHAR env_keyW
[] = {'M','a','c','h','i','n','e','\\',
471 'S','y','s','t','e','m','\\',
472 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
473 'C','o','n','t','r','o','l','\\',
474 'S','e','s','s','i','o','n',' ','M','a','n','a','g','e','r','\\',
475 'E','n','v','i','r','o','n','m','e','n','t',0};
476 static const WCHAR envW
[] = {'E','n','v','i','r','o','n','m','e','n','t',0};
478 OBJECT_ATTRIBUTES attr
;
479 UNICODE_STRING nameW
;
482 attr
.Length
= sizeof(attr
);
483 attr
.RootDirectory
= 0;
484 attr
.ObjectName
= &nameW
;
486 attr
.SecurityDescriptor
= NULL
;
487 attr
.SecurityQualityOfService
= NULL
;
489 /* first the system environment variables */
490 RtlInitUnicodeString( &nameW
, env_keyW
);
491 if (NtOpenKey( &hkey
, KEY_ALL_ACCESS
, &attr
) == STATUS_SUCCESS
)
493 set_registry_variables( hkey
, REG_SZ
);
494 set_registry_variables( hkey
, REG_EXPAND_SZ
);
498 /* then the ones for the current user */
499 if (RtlOpenCurrentUser( KEY_ALL_ACCESS
, &attr
.RootDirectory
) != STATUS_SUCCESS
) return;
500 RtlInitUnicodeString( &nameW
, envW
);
501 if (NtOpenKey( &hkey
, KEY_ALL_ACCESS
, &attr
) == STATUS_SUCCESS
)
503 set_registry_variables( hkey
, REG_SZ
);
504 set_registry_variables( hkey
, REG_EXPAND_SZ
);
507 NtClose( attr
.RootDirectory
);
511 /***********************************************************************
514 * Set the Wine library Unicode argv global variables.
516 static void set_library_wargv( char **argv
)
524 for (argc
= 0; argv
[argc
]; argc
++)
525 total
+= MultiByteToWideChar( CP_UNIXCP
, 0, argv
[argc
], -1, NULL
, 0 );
527 wargv
= RtlAllocateHeap( GetProcessHeap(), 0,
528 total
* sizeof(WCHAR
) + (argc
+ 1) * sizeof(*wargv
) );
529 p
= (WCHAR
*)(wargv
+ argc
+ 1);
530 for (argc
= 0; argv
[argc
]; argc
++)
532 DWORD reslen
= MultiByteToWideChar( CP_UNIXCP
, 0, argv
[argc
], -1, p
, total
);
539 /* convert argv back from Unicode since it has to be in the Ansi codepage not the Unix one */
541 for (argc
= 0; wargv
[argc
]; argc
++)
542 total
+= WideCharToMultiByte( CP_ACP
, 0, wargv
[argc
], -1, NULL
, 0, NULL
, NULL
);
544 argv
= RtlAllocateHeap( GetProcessHeap(), 0, total
+ (argc
+ 1) * sizeof(*argv
) );
545 q
= (char *)(argv
+ argc
+ 1);
546 for (argc
= 0; wargv
[argc
]; argc
++)
548 DWORD reslen
= WideCharToMultiByte( CP_ACP
, 0, wargv
[argc
], -1, q
, total
, NULL
, NULL
);
555 __wine_main_argv
= argv
;
556 __wine_main_wargv
= wargv
;
560 /***********************************************************************
563 * Build the command line of a process from the argv array.
565 * Note that it does NOT necessarily include the file name.
566 * Sometimes we don't even have any command line options at all.
568 * We must quote and escape characters so that the argv array can be rebuilt
569 * from the command line:
570 * - spaces and tabs must be quoted
572 * - quotes must be escaped
574 * - if '\'s are followed by a '"', they must be doubled and followed by '\"',
575 * resulting in an odd number of '\' followed by a '"'
578 * - '\'s that are not followed by a '"' can be left as is
582 static BOOL
build_command_line( WCHAR
**argv
)
587 RTL_USER_PROCESS_PARAMETERS
* rupp
= NtCurrentTeb()->Peb
->ProcessParameters
;
589 if (rupp
->CommandLine
.Buffer
) return TRUE
; /* already got it from the server */
592 for (arg
= argv
; *arg
; arg
++)
594 int has_space
,bcount
;
600 if( !*a
) has_space
=1;
605 if (*a
==' ' || *a
=='\t') {
607 } else if (*a
=='"') {
608 /* doubling of '\' preceding a '"',
609 * plus escaping of said '"'
617 len
+=(a
-*arg
)+1 /* for the separating space */;
619 len
+=2; /* for the quotes */
622 if (!(rupp
->CommandLine
.Buffer
= RtlAllocateHeap( GetProcessHeap(), 0, len
* sizeof(WCHAR
))))
625 p
= rupp
->CommandLine
.Buffer
;
626 rupp
->CommandLine
.Length
= (len
- 1) * sizeof(WCHAR
);
627 rupp
->CommandLine
.MaximumLength
= len
* sizeof(WCHAR
);
628 for (arg
= argv
; *arg
; arg
++)
630 int has_space
,has_quote
;
633 /* Check for quotes and spaces in this argument */
634 has_space
=has_quote
=0;
636 if( !*a
) has_space
=1;
638 if (*a
==' ' || *a
=='\t') {
642 } else if (*a
=='"') {
650 /* Now transfer it to the command line */
667 /* Double all the '\\' preceding this '"', plus one */
668 for (i
=0;i
<=bcount
;i
++)
680 while ((*p
=*x
++)) p
++;
686 if (p
> rupp
->CommandLine
.Buffer
)
687 p
--; /* remove last space */
694 /* make sure the unicode string doesn't point beyond the end pointer */
695 static inline void fix_unicode_string( UNICODE_STRING
*str
, char *end_ptr
)
697 if ((char *)str
->Buffer
>= end_ptr
)
699 str
->Length
= str
->MaximumLength
= 0;
703 if ((char *)str
->Buffer
+ str
->MaximumLength
> end_ptr
)
705 str
->MaximumLength
= (end_ptr
- (char *)str
->Buffer
) & ~(sizeof(WCHAR
) - 1);
707 if (str
->Length
>= str
->MaximumLength
)
709 if (str
->MaximumLength
>= sizeof(WCHAR
))
710 str
->Length
= str
->MaximumLength
- sizeof(WCHAR
);
712 str
->Length
= str
->MaximumLength
= 0;
716 static void version(void)
718 MESSAGE( "%s\n", PACKAGE_STRING
);
722 static void usage(void)
724 MESSAGE( "%s\n", PACKAGE_STRING
);
725 MESSAGE( "Usage: wine PROGRAM [ARGUMENTS...] Run the specified program\n" );
726 MESSAGE( " wine --help Display this help and exit\n");
727 MESSAGE( " wine --version Output version information and exit\n");
732 /***********************************************************************
733 * init_user_process_params
735 * Fill the RTL_USER_PROCESS_PARAMETERS structure from the server.
737 static BOOL
init_user_process_params( RTL_USER_PROCESS_PARAMETERS
*params
)
741 SIZE_T size
, env_size
, info_size
;
742 HANDLE hstdin
, hstdout
, hstderr
;
744 size
= info_size
= params
->AllocationSize
;
745 if (!size
) return TRUE
; /* no parameters received from parent */
747 SERVER_START_REQ( get_startup_info
)
749 wine_server_set_reply( req
, params
, size
);
750 if ((ret
= !wine_server_call( req
)))
752 info_size
= wine_server_reply_size( reply
);
753 main_create_flags
= reply
->create_flags
;
754 main_exe_file
= reply
->exe_file
;
755 hstdin
= reply
->hstdin
;
756 hstdout
= reply
->hstdout
;
757 hstderr
= reply
->hstderr
;
761 if (!ret
) return ret
;
763 params
->AllocationSize
= size
;
764 if (params
->Size
> info_size
) params
->Size
= info_size
;
766 /* make sure the strings are valid */
767 fix_unicode_string( ¶ms
->CurrentDirectory
.DosPath
, (char *)info_size
);
768 fix_unicode_string( ¶ms
->DllPath
, (char *)info_size
);
769 fix_unicode_string( ¶ms
->ImagePathName
, (char *)info_size
);
770 fix_unicode_string( ¶ms
->CommandLine
, (char *)info_size
);
771 fix_unicode_string( ¶ms
->WindowTitle
, (char *)info_size
);
772 fix_unicode_string( ¶ms
->Desktop
, (char *)info_size
);
773 fix_unicode_string( ¶ms
->ShellInfo
, (char *)info_size
);
774 fix_unicode_string( ¶ms
->RuntimeInfo
, (char *)info_size
);
776 /* environment needs to be a separate memory block */
777 env_size
= info_size
- params
->Size
;
778 if (!env_size
) env_size
= 1;
780 if (NtAllocateVirtualMemory( NtCurrentProcess(), &ptr
, 0, &env_size
,
781 MEM_COMMIT
, PAGE_READWRITE
) != STATUS_SUCCESS
)
783 memcpy( ptr
, (char *)params
+ params
->Size
, info_size
- params
->Size
);
784 params
->Environment
= ptr
;
786 /* convert value from server:
787 * + 0 => INVALID_HANDLE_VALUE
788 * + console handle needs to be mapped
791 hstdin
= INVALID_HANDLE_VALUE
;
792 else if (VerifyConsoleIoHandle(console_handle_map(hstdin
)))
793 hstdin
= console_handle_map(hstdin
);
796 hstdout
= INVALID_HANDLE_VALUE
;
797 else if (VerifyConsoleIoHandle(console_handle_map(hstdout
)))
798 hstdout
= console_handle_map(hstdout
);
801 hstderr
= INVALID_HANDLE_VALUE
;
802 else if (VerifyConsoleIoHandle(console_handle_map(hstderr
)))
803 hstderr
= console_handle_map(hstderr
);
805 params
->hStdInput
= hstdin
;
806 params
->hStdOutput
= hstdout
;
807 params
->hStdError
= hstderr
;
809 RtlNormalizeProcessParams( params
);
814 /***********************************************************************
815 * init_current_directory
817 * Initialize the current directory from the Unix cwd or the parent info.
819 static void init_current_directory( CURDIR
*cur_dir
)
821 UNICODE_STRING dir_str
;
825 /* if we received a cur dir from the parent, try this first */
827 if (cur_dir
->DosPath
.Length
)
829 if (RtlSetCurrentDirectory_U( &cur_dir
->DosPath
) == STATUS_SUCCESS
) goto done
;
832 /* now try to get it from the Unix cwd */
834 for (size
= 256; ; size
*= 2)
836 if (!(cwd
= HeapAlloc( GetProcessHeap(), 0, size
))) break;
837 if (getcwd( cwd
, size
)) break;
838 HeapFree( GetProcessHeap(), 0, cwd
);
839 if (errno
== ERANGE
) continue;
847 int lenW
= MultiByteToWideChar( CP_UNIXCP
, 0, cwd
, -1, NULL
, 0 );
848 if ((dirW
= HeapAlloc( GetProcessHeap(), 0, lenW
* sizeof(WCHAR
) )))
850 MultiByteToWideChar( CP_UNIXCP
, 0, cwd
, -1, dirW
, lenW
);
851 RtlInitUnicodeString( &dir_str
, dirW
);
852 RtlSetCurrentDirectory_U( &dir_str
);
853 RtlFreeUnicodeString( &dir_str
);
857 if (!cur_dir
->DosPath
.Length
) /* still not initialized */
859 MESSAGE("Warning: could not find DOS drive for current working directory '%s', "
860 "starting in the Windows directory.\n", cwd
? cwd
: "" );
861 RtlInitUnicodeString( &dir_str
, DIR_Windows
);
862 RtlSetCurrentDirectory_U( &dir_str
);
864 HeapFree( GetProcessHeap(), 0, cwd
);
867 if (!cur_dir
->Handle
) chdir("/"); /* change to root directory so as not to lock cdroms */
868 TRACE( "starting in %s %p\n", debugstr_w( cur_dir
->DosPath
.Buffer
), cur_dir
->Handle
);
872 /***********************************************************************
875 * Initialize the windows and system directories from the environment.
877 static void init_windows_dirs(void)
879 extern void __wine_init_windows_dir( const WCHAR
*windir
, const WCHAR
*sysdir
);
881 static const WCHAR windirW
[] = {'w','i','n','d','i','r',0};
882 static const WCHAR winsysdirW
[] = {'w','i','n','s','y','s','d','i','r',0};
883 static const WCHAR default_windirW
[] = {'c',':','\\','w','i','n','d','o','w','s',0};
884 static const WCHAR default_sysdirW
[] = {'\\','s','y','s','t','e','m','3','2',0};
889 if ((len
= GetEnvironmentVariableW( windirW
, NULL
, 0 )))
891 buffer
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
892 GetEnvironmentVariableW( windirW
, buffer
, len
);
893 DIR_Windows
= buffer
;
895 else DIR_Windows
= default_windirW
;
897 if ((len
= GetEnvironmentVariableW( winsysdirW
, NULL
, 0 )))
899 buffer
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
900 GetEnvironmentVariableW( winsysdirW
, buffer
, len
);
905 len
= strlenW( DIR_Windows
);
906 buffer
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) + sizeof(default_sysdirW
) );
907 memcpy( buffer
, DIR_Windows
, len
* sizeof(WCHAR
) );
908 memcpy( buffer
+ len
, default_sysdirW
, sizeof(default_sysdirW
) );
912 if (GetFileAttributesW( DIR_Windows
) == INVALID_FILE_ATTRIBUTES
)
913 MESSAGE( "Warning: the specified Windows directory %s is not accessible.\n",
914 debugstr_w(DIR_Windows
) );
915 if (GetFileAttributesW( DIR_System
) == INVALID_FILE_ATTRIBUTES
)
916 MESSAGE( "Warning: the specified System directory %s is not accessible.\n",
917 debugstr_w(DIR_System
) );
919 TRACE_(file
)( "WindowsDir = %s\n", debugstr_w(DIR_Windows
) );
920 TRACE_(file
)( "SystemDir = %s\n", debugstr_w(DIR_System
) );
922 /* set the directories in ntdll too */
923 __wine_init_windows_dir( DIR_Windows
, DIR_System
);
927 /***********************************************************************
930 * Main process initialisation code
932 static BOOL
process_init(void)
934 static const WCHAR kernel32W
[] = {'k','e','r','n','e','l','3','2',0};
935 PEB
*peb
= NtCurrentTeb()->Peb
;
941 setlocale(LC_CTYPE
,"");
943 if (!init_user_process_params( peb
->ProcessParameters
)) return FALSE
;
945 kernel32_handle
= GetModuleHandleW(kernel32W
);
949 if (!peb
->ProcessParameters
->Environment
)
951 /* Copy the parent environment */
952 if (!build_initial_environment( __wine_main_environ
)) return FALSE
;
954 /* convert old configuration to new format */
955 convert_old_config();
957 set_registry_environment();
961 init_current_directory( &peb
->ProcessParameters
->CurrentDirectory
);
967 /***********************************************************************
970 * Startup routine of a new process. Runs on the new process stack.
972 static void start_process( void *arg
)
976 PEB
*peb
= NtCurrentTeb()->Peb
;
977 IMAGE_NT_HEADERS
*nt
;
978 LPTHREAD_START_ROUTINE entry
;
980 LdrInitializeThunk( main_exe_file
, 0, 0, 0 );
982 nt
= RtlImageNtHeader( peb
->ImageBaseAddress
);
983 entry
= (LPTHREAD_START_ROUTINE
)((char *)peb
->ImageBaseAddress
+
984 nt
->OptionalHeader
.AddressOfEntryPoint
);
987 DPRINTF( "%04lx:Starting process %s (entryproc=%p)\n", GetCurrentThreadId(),
988 debugstr_w(peb
->ProcessParameters
->ImagePathName
.Buffer
), entry
);
990 SetLastError( 0 ); /* clear error code */
991 if (peb
->BeingDebugged
) DbgBreakPoint();
992 ExitProcess( entry( peb
) );
994 __EXCEPT(UnhandledExceptionFilter
)
996 TerminateThread( GetCurrentThread(), GetExceptionCode() );
1002 /***********************************************************************
1003 * __wine_kernel_init
1005 * Wine initialisation: load and start the main exe file.
1007 void __wine_kernel_init(void)
1009 WCHAR
*main_exe_name
, *p
;
1011 DWORD stack_size
= 0;
1013 PEB
*peb
= NtCurrentTeb()->Peb
;
1015 /* Initialize everything */
1016 if (!process_init()) exit(1);
1018 __wine_main_argv
++; /* remove argv[0] (wine itself) */
1021 if (!(main_exe_name
= peb
->ProcessParameters
->ImagePathName
.Buffer
))
1023 WCHAR buffer
[MAX_PATH
];
1024 WCHAR exe_nameW
[MAX_PATH
];
1026 if (!__wine_main_argv
[0]) usage();
1027 if (__wine_main_argc
== 1)
1029 if (strcmp(__wine_main_argv
[0], "--help") == 0) usage();
1030 if (strcmp(__wine_main_argv
[0], "--version") == 0) version();
1033 MultiByteToWideChar( CP_UNIXCP
, 0, __wine_main_argv
[0], -1, exe_nameW
, MAX_PATH
);
1034 if (!find_exe_file( exe_nameW
, buffer
, MAX_PATH
, &main_exe_file
))
1036 MESSAGE( "wine: cannot find '%s'\n", __wine_main_argv
[0] );
1039 if (main_exe_file
== INVALID_HANDLE_VALUE
)
1041 MESSAGE( "wine: cannot open %s\n", debugstr_w(main_exe_name
) );
1044 RtlCreateUnicodeString( &peb
->ProcessParameters
->ImagePathName
, buffer
);
1045 main_exe_name
= peb
->ProcessParameters
->ImagePathName
.Buffer
;
1048 TRACE( "starting process name=%s file=%p argv[0]=%s\n",
1049 debugstr_w(main_exe_name
), main_exe_file
, debugstr_a(__wine_main_argv
[0]) );
1051 RtlInitUnicodeString( &NtCurrentTeb()->Peb
->ProcessParameters
->DllPath
,
1052 MODULE_get_dll_load_path(NULL
) );
1054 if (!main_exe_file
) /* no file handle -> Winelib app */
1056 TRACE( "starting Winelib app %s\n", debugstr_w(main_exe_name
) );
1057 if (open_builtin_exe_file( main_exe_name
, error
, sizeof(error
), 0, &file_exists
))
1059 MESSAGE( "wine: cannot open builtin library for %s: %s\n",
1060 debugstr_w(main_exe_name
), error
);
1064 switch( MODULE_GetBinaryType( main_exe_file
, NULL
, NULL
))
1067 TRACE( "starting Win32 binary %s\n", debugstr_w(main_exe_name
) );
1068 if ((peb
->ImageBaseAddress
= load_pe_exe( main_exe_name
, main_exe_file
)))
1070 MESSAGE( "wine: could not load %s as Win32 binary\n", debugstr_w(main_exe_name
) );
1073 MESSAGE( "wine: %s is a DLL, not an executable\n", debugstr_w(main_exe_name
) );
1075 case BINARY_UNKNOWN
:
1076 /* check for .com extension */
1077 if (!(p
= strrchrW( main_exe_name
, '.' )) || strcmpiW( p
, comW
))
1079 MESSAGE( "wine: cannot determine executable type for %s\n",
1080 debugstr_w(main_exe_name
) );
1087 TRACE( "starting Win16/DOS binary %s\n", debugstr_w(main_exe_name
) );
1088 CloseHandle( main_exe_file
);
1092 __wine_main_argv
[0] = "winevdm.exe";
1093 if (open_builtin_exe_file( winevdmW
, error
, sizeof(error
), 0, &file_exists
))
1095 MESSAGE( "wine: trying to run %s, cannot open builtin library for 'winevdm.exe': %s\n",
1096 debugstr_w(main_exe_name
), error
);
1098 case BINARY_UNIX_EXE
:
1099 MESSAGE( "wine: %s is a Unix binary, not supported\n", debugstr_w(main_exe_name
) );
1101 case BINARY_UNIX_LIB
:
1105 TRACE( "starting Winelib app %s\n", debugstr_w(main_exe_name
) );
1106 CloseHandle( main_exe_file
);
1108 if ((unix_name
= wine_get_unix_file_name( main_exe_name
)) &&
1109 wine_dlopen( unix_name
, RTLD_NOW
, error
, sizeof(error
) ))
1111 static const WCHAR soW
[] = {'.','s','o',0};
1112 if ((p
= strrchrW( main_exe_name
, '.' )) && !strcmpW( p
, soW
))
1115 /* update the unicode string */
1116 RtlInitUnicodeString( &peb
->ProcessParameters
->ImagePathName
, main_exe_name
);
1118 HeapFree( GetProcessHeap(), 0, unix_name
);
1121 MESSAGE( "wine: could not load %s: %s\n", debugstr_w(main_exe_name
), error
);
1127 /* build command line */
1128 set_library_wargv( __wine_main_argv
);
1129 if (!build_command_line( __wine_main_wargv
)) goto error
;
1131 stack_size
= RtlImageNtHeader(peb
->ImageBaseAddress
)->OptionalHeader
.SizeOfStackReserve
;
1133 /* allocate main thread stack */
1134 if (!THREAD_InitStack( NtCurrentTeb(), stack_size
)) goto error
;
1136 /* switch to the new stack */
1137 wine_switch_to_stack( start_process
, NULL
, NtCurrentTeb()->Tib
.StackBase
);
1140 ExitProcess( GetLastError() );
1144 /***********************************************************************
1147 * Build an argv array from a command-line.
1148 * 'reserved' is the number of args to reserve before the first one.
1150 static char **build_argv( const WCHAR
*cmdlineW
, int reserved
)
1154 char *arg
,*s
,*d
,*cmdline
;
1155 int in_quotes
,bcount
,len
;
1157 len
= WideCharToMultiByte( CP_UNIXCP
, 0, cmdlineW
, -1, NULL
, 0, NULL
, NULL
);
1158 if (!(cmdline
= malloc(len
))) return NULL
;
1159 WideCharToMultiByte( CP_UNIXCP
, 0, cmdlineW
, -1, cmdline
, len
, NULL
, NULL
);
1166 if (*s
=='\0' || ((*s
==' ' || *s
=='\t') && !in_quotes
)) {
1169 /* skip the remaining spaces */
1170 while (*s
==' ' || *s
=='\t') {
1177 } else if (*s
=='\\') {
1178 /* '\', count them */
1180 } else if ((*s
=='"') && ((bcount
& 1)==0)) {
1182 in_quotes
=!in_quotes
;
1185 /* a regular character */
1190 argv
=malloc(argc
*sizeof(*argv
));
1199 if ((*s
==' ' || *s
=='\t') && !in_quotes
) {
1200 /* Close the argument and copy it */
1204 /* skip the remaining spaces */
1207 } while (*s
==' ' || *s
=='\t');
1209 /* Start with a new argument */
1212 } else if (*s
=='\\') {
1216 } else if (*s
=='"') {
1218 if ((bcount
& 1)==0) {
1219 /* Preceded by an even number of '\', this is half that
1220 * number of '\', plus a '"' which we discard.
1224 in_quotes
=!in_quotes
;
1226 /* Preceded by an odd number of '\', this is half that
1227 * number of '\' followed by a '"'
1235 /* a regular character */
1250 /***********************************************************************
1253 * Allocate an environment string; helper for build_envp
1255 static char *alloc_env_string( const char *name
, const char *value
)
1257 char *ret
= malloc( strlen(name
) + strlen(value
) + 1 );
1258 strcpy( ret
, name
);
1259 strcat( ret
, value
);
1263 /***********************************************************************
1266 * Build the environment of a new child process.
1268 static char **build_envp( const WCHAR
*envW
)
1273 int count
= 0, length
;
1275 for (end
= envW
; *end
; count
++) end
+= strlenW(end
) + 1;
1277 length
= WideCharToMultiByte( CP_UNIXCP
, 0, envW
, end
- envW
, NULL
, 0, NULL
, NULL
);
1278 if (!(env
= malloc( length
))) return NULL
;
1279 WideCharToMultiByte( CP_UNIXCP
, 0, envW
, end
- envW
, env
, length
, NULL
, NULL
);
1283 if ((envp
= malloc( count
* sizeof(*envp
) )))
1285 char **envptr
= envp
;
1287 /* some variables must not be modified, so we get them directly from the unix env */
1288 if ((p
= getenv("PATH"))) *envptr
++ = alloc_env_string( "PATH=", p
);
1289 if ((p
= getenv("TEMP"))) *envptr
++ = alloc_env_string( "TEMP=", p
);
1290 if ((p
= getenv("TMP"))) *envptr
++ = alloc_env_string( "TMP=", p
);
1291 if ((p
= getenv("HOME"))) *envptr
++ = alloc_env_string( "HOME=", p
);
1292 /* now put the Windows environment strings */
1293 for (p
= env
; *p
; p
+= strlen(p
) + 1)
1295 if (*p
== '=') continue; /* skip drive curdirs, this crashes some unix apps */
1296 if (!strncmp( p
, "WINEPRELOADRESERVE=", sizeof("WINEPRELOADRESERVE=")-1 )) continue;
1297 if (is_special_env_var( p
)) /* prefix it with "WINE" */
1298 *envptr
++ = alloc_env_string( "WINE", p
);
1308 /***********************************************************************
1311 * Fork and exec a new Unix binary, checking for errors.
1313 static int fork_and_exec( const char *filename
, const WCHAR
*cmdline
,
1314 const WCHAR
*env
, const char *newdir
)
1319 if (!env
) env
= GetEnvironmentStringsW();
1323 SetLastError( ERROR_TOO_MANY_OPEN_FILES
);
1326 fcntl( fd
[1], F_SETFD
, 1 ); /* set close on exec */
1327 if (!(pid
= fork())) /* child */
1329 char **argv
= build_argv( cmdline
, 0 );
1330 char **envp
= build_envp( env
);
1333 /* Reset signals that we previously set to SIG_IGN */
1334 signal( SIGPIPE
, SIG_DFL
);
1335 signal( SIGCHLD
, SIG_DFL
);
1337 if (newdir
) chdir(newdir
);
1339 if (argv
&& envp
) execve( filename
, argv
, envp
);
1341 write( fd
[1], &err
, sizeof(err
) );
1345 if ((pid
!= -1) && (read( fd
[0], &err
, sizeof(err
) ) > 0)) /* exec failed */
1350 if (pid
== -1) FILE_SetDosError();
1356 /***********************************************************************
1357 * create_user_params
1359 static RTL_USER_PROCESS_PARAMETERS
*create_user_params( LPCWSTR filename
, LPCWSTR cmdline
,
1360 LPCWSTR cur_dir
, LPWSTR env
,
1361 const STARTUPINFOW
*startup
)
1363 RTL_USER_PROCESS_PARAMETERS
*params
;
1364 UNICODE_STRING image_str
, cmdline_str
, curdir_str
, desktop
, title
, runtime
;
1366 WCHAR buffer
[MAX_PATH
];
1368 if(!GetLongPathNameW( filename
, buffer
, MAX_PATH
))
1369 lstrcpynW( buffer
, filename
, MAX_PATH
);
1370 if(!GetFullPathNameW( buffer
, MAX_PATH
, buffer
, NULL
))
1371 lstrcpynW( buffer
, filename
, MAX_PATH
);
1372 RtlInitUnicodeString( &image_str
, buffer
);
1374 RtlInitUnicodeString( &cmdline_str
, cmdline
);
1375 if (cur_dir
) RtlInitUnicodeString( &curdir_str
, cur_dir
);
1376 if (startup
->lpDesktop
) RtlInitUnicodeString( &desktop
, startup
->lpDesktop
);
1377 if (startup
->lpTitle
) RtlInitUnicodeString( &title
, startup
->lpTitle
);
1378 if (startup
->lpReserved2
&& startup
->cbReserved2
)
1381 runtime
.MaximumLength
= startup
->cbReserved2
;
1382 runtime
.Buffer
= (WCHAR
*)startup
->lpReserved2
;
1385 status
= RtlCreateProcessParameters( ¶ms
, &image_str
, NULL
,
1386 cur_dir
? &curdir_str
: NULL
,
1388 startup
->lpTitle
? &title
: NULL
,
1389 startup
->lpDesktop
? &desktop
: NULL
,
1391 (startup
->lpReserved2
&& startup
->cbReserved2
) ? &runtime
: NULL
);
1392 if (status
!= STATUS_SUCCESS
)
1394 SetLastError( RtlNtStatusToDosError(status
) );
1398 params
->hStdInput
= startup
->hStdInput
;
1399 params
->hStdOutput
= startup
->hStdOutput
;
1400 params
->hStdError
= startup
->hStdError
;
1401 params
->dwX
= startup
->dwX
;
1402 params
->dwY
= startup
->dwY
;
1403 params
->dwXSize
= startup
->dwXSize
;
1404 params
->dwYSize
= startup
->dwYSize
;
1405 params
->dwXCountChars
= startup
->dwXCountChars
;
1406 params
->dwYCountChars
= startup
->dwYCountChars
;
1407 params
->dwFillAttribute
= startup
->dwFillAttribute
;
1408 params
->dwFlags
= startup
->dwFlags
;
1409 params
->wShowWindow
= startup
->wShowWindow
;
1414 /***********************************************************************
1417 * Create a new process. If hFile is a valid handle we have an exe
1418 * file, otherwise it is a Winelib app.
1420 static BOOL
create_process( HANDLE hFile
, LPCWSTR filename
, LPWSTR cmd_line
, LPWSTR env
,
1421 LPCWSTR cur_dir
, LPSECURITY_ATTRIBUTES psa
, LPSECURITY_ATTRIBUTES tsa
,
1422 BOOL inherit
, DWORD flags
, LPSTARTUPINFOW startup
,
1423 LPPROCESS_INFORMATION info
, LPCSTR unixdir
,
1424 void *res_start
, void *res_end
)
1426 BOOL ret
, success
= FALSE
;
1427 HANDLE process_info
;
1429 RTL_USER_PROCESS_PARAMETERS
*params
;
1435 char preloader_reserve
[64];
1437 if (!env
) RtlAcquirePebLock();
1439 if (!(params
= create_user_params( filename
, cmd_line
, cur_dir
, env
, startup
)))
1441 if (!env
) RtlReleasePebLock();
1444 env_end
= params
->Environment
;
1445 while (*env_end
) env_end
+= strlenW(env_end
) + 1;
1448 sprintf( preloader_reserve
, "WINEPRELOADRESERVE=%lx-%lx%c",
1449 (unsigned long)res_start
, (unsigned long)res_end
, 0 );
1451 /* create the synchronization pipes */
1453 if (pipe( startfd
) == -1)
1455 if (!env
) RtlReleasePebLock();
1456 SetLastError( ERROR_TOO_MANY_OPEN_FILES
);
1457 RtlDestroyProcessParameters( params
);
1460 if (pipe( execfd
) == -1)
1462 if (!env
) RtlReleasePebLock();
1463 SetLastError( ERROR_TOO_MANY_OPEN_FILES
);
1464 close( startfd
[0] );
1465 close( startfd
[1] );
1466 RtlDestroyProcessParameters( params
);
1469 fcntl( execfd
[1], F_SETFD
, 1 ); /* set close on exec */
1471 /* create the child process */
1473 if (!(pid
= fork())) /* child */
1475 char **argv
= build_argv( cmd_line
, 1 );
1477 close( startfd
[1] );
1480 /* wait for parent to tell us to start */
1481 if (read( startfd
[0], &dummy
, 1 ) != 1) _exit(1);
1483 close( startfd
[0] );
1484 /* Reset signals that we previously set to SIG_IGN */
1485 signal( SIGPIPE
, SIG_DFL
);
1486 signal( SIGCHLD
, SIG_DFL
);
1488 putenv( preloader_reserve
);
1489 if (unixdir
) chdir(unixdir
);
1493 /* first, try for a WINELOADER environment variable */
1494 const char *loader
= getenv("WINELOADER");
1495 if (loader
) wine_exec_wine_binary( loader
, argv
, NULL
, TRUE
);
1496 /* now use the standard search strategy */
1497 wine_exec_wine_binary( NULL
, argv
, NULL
, TRUE
);
1500 write( execfd
[1], &err
, sizeof(err
) );
1504 /* this is the parent */
1506 close( startfd
[0] );
1510 if (!env
) RtlReleasePebLock();
1511 close( startfd
[1] );
1514 RtlDestroyProcessParameters( params
);
1518 /* create the process on the server side */
1520 SERVER_START_REQ( new_process
)
1522 req
->inherit_all
= inherit
;
1523 req
->create_flags
= flags
;
1524 req
->unix_pid
= pid
;
1525 req
->exe_file
= hFile
;
1526 if (startup
->dwFlags
& STARTF_USESTDHANDLES
)
1528 req
->hstdin
= startup
->hStdInput
;
1529 req
->hstdout
= startup
->hStdOutput
;
1530 req
->hstderr
= startup
->hStdError
;
1534 req
->hstdin
= GetStdHandle( STD_INPUT_HANDLE
);
1535 req
->hstdout
= GetStdHandle( STD_OUTPUT_HANDLE
);
1536 req
->hstderr
= GetStdHandle( STD_ERROR_HANDLE
);
1539 if ((flags
& (CREATE_NEW_CONSOLE
| DETACHED_PROCESS
)) != 0)
1541 /* this is temporary (for console handles). We have no way to control that the handle is invalid in child process otherwise */
1542 if (is_console_handle(req
->hstdin
)) req
->hstdin
= INVALID_HANDLE_VALUE
;
1543 if (is_console_handle(req
->hstdout
)) req
->hstdout
= INVALID_HANDLE_VALUE
;
1544 if (is_console_handle(req
->hstderr
)) req
->hstderr
= INVALID_HANDLE_VALUE
;
1548 if (is_console_handle(req
->hstdin
)) req
->hstdin
= console_handle_unmap(req
->hstdin
);
1549 if (is_console_handle(req
->hstdout
)) req
->hstdout
= console_handle_unmap(req
->hstdout
);
1550 if (is_console_handle(req
->hstderr
)) req
->hstderr
= console_handle_unmap(req
->hstderr
);
1553 wine_server_add_data( req
, params
, params
->Size
);
1554 wine_server_add_data( req
, params
->Environment
, (env_end
-params
->Environment
)*sizeof(WCHAR
) );
1555 ret
= !wine_server_call_err( req
);
1556 process_info
= reply
->info
;
1560 if (!env
) RtlReleasePebLock();
1561 RtlDestroyProcessParameters( params
);
1564 close( startfd
[1] );
1569 /* tell child to start and wait for it to exec */
1571 write( startfd
[1], &dummy
, 1 );
1572 close( startfd
[1] );
1574 if (read( execfd
[0], &err
, sizeof(err
) ) > 0) /* exec failed */
1579 CloseHandle( process_info
);
1584 /* wait for the new process info to be ready */
1586 WaitForSingleObject( process_info
, INFINITE
);
1587 SERVER_START_REQ( get_new_process_info
)
1589 req
->info
= process_info
;
1590 req
->pinherit
= (psa
&& (psa
->nLength
>= sizeof(*psa
)) && psa
->bInheritHandle
);
1591 req
->tinherit
= (tsa
&& (tsa
->nLength
>= sizeof(*tsa
)) && tsa
->bInheritHandle
);
1592 if ((ret
= !wine_server_call_err( req
)))
1594 info
->dwProcessId
= (DWORD
)reply
->pid
;
1595 info
->dwThreadId
= (DWORD
)reply
->tid
;
1596 info
->hProcess
= reply
->phandle
;
1597 info
->hThread
= reply
->thandle
;
1598 success
= reply
->success
;
1603 if (ret
&& !success
) /* new process failed to start */
1606 if (GetExitCodeProcess( info
->hProcess
, &exitcode
)) SetLastError( exitcode
);
1607 CloseHandle( info
->hThread
);
1608 CloseHandle( info
->hProcess
);
1611 CloseHandle( process_info
);
1616 /***********************************************************************
1617 * create_vdm_process
1619 * Create a new VDM process for a 16-bit or DOS application.
1621 static BOOL
create_vdm_process( LPCWSTR filename
, LPWSTR cmd_line
, LPWSTR env
, LPCWSTR cur_dir
,
1622 LPSECURITY_ATTRIBUTES psa
, LPSECURITY_ATTRIBUTES tsa
,
1623 BOOL inherit
, DWORD flags
, LPSTARTUPINFOW startup
,
1624 LPPROCESS_INFORMATION info
, LPCSTR unixdir
)
1626 static const WCHAR argsW
[] = {'%','s',' ','-','-','a','p','p','-','n','a','m','e',' ','"','%','s','"',' ','%','s',0};
1629 LPWSTR new_cmd_line
= HeapAlloc( GetProcessHeap(), 0,
1630 (strlenW(filename
) + strlenW(cmd_line
) + 30) * sizeof(WCHAR
) );
1634 SetLastError( ERROR_OUTOFMEMORY
);
1637 sprintfW( new_cmd_line
, argsW
, winevdmW
, filename
, cmd_line
);
1638 ret
= create_process( 0, winevdmW
, new_cmd_line
, env
, cur_dir
, psa
, tsa
, inherit
,
1639 flags
, startup
, info
, unixdir
, NULL
, NULL
);
1640 HeapFree( GetProcessHeap(), 0, new_cmd_line
);
1645 /***********************************************************************
1646 * create_cmd_process
1648 * Create a new cmd shell process for a .BAT file.
1650 static BOOL
create_cmd_process( LPCWSTR filename
, LPWSTR cmd_line
, LPVOID env
, LPCWSTR cur_dir
,
1651 LPSECURITY_ATTRIBUTES psa
, LPSECURITY_ATTRIBUTES tsa
,
1652 BOOL inherit
, DWORD flags
, LPSTARTUPINFOW startup
,
1653 LPPROCESS_INFORMATION info
)
1656 static const WCHAR comspecW
[] = {'C','O','M','S','P','E','C',0};
1657 static const WCHAR slashcW
[] = {' ','/','c',' ',0};
1658 WCHAR comspec
[MAX_PATH
];
1662 if (!GetEnvironmentVariableW( comspecW
, comspec
, sizeof(comspec
)/sizeof(WCHAR
) ))
1664 if (!(newcmdline
= HeapAlloc( GetProcessHeap(), 0,
1665 (strlenW(comspec
) + 4 + strlenW(cmd_line
) + 1) * sizeof(WCHAR
))))
1668 strcpyW( newcmdline
, comspec
);
1669 strcatW( newcmdline
, slashcW
);
1670 strcatW( newcmdline
, cmd_line
);
1671 ret
= CreateProcessW( comspec
, newcmdline
, psa
, tsa
, inherit
,
1672 flags
, env
, cur_dir
, startup
, info
);
1673 HeapFree( GetProcessHeap(), 0, newcmdline
);
1678 /*************************************************************************
1681 * Helper for CreateProcess: retrieve the file name to load from the
1682 * app name and command line. Store the file name in buffer, and
1683 * return a possibly modified command line.
1684 * Also returns a handle to the opened file if it's a Windows binary.
1686 static LPWSTR
get_file_name( LPCWSTR appname
, LPWSTR cmdline
, LPWSTR buffer
,
1687 int buflen
, HANDLE
*handle
)
1689 static const WCHAR quotesW
[] = {'"','%','s','"',0};
1691 WCHAR
*name
, *pos
, *ret
= NULL
;
1694 /* if we have an app name, everything is easy */
1698 /* use the unmodified app name as file name */
1699 lstrcpynW( buffer
, appname
, buflen
);
1700 *handle
= open_exe_file( buffer
);
1701 if (!(ret
= cmdline
) || !cmdline
[0])
1703 /* no command-line, create one */
1704 if ((ret
= HeapAlloc( GetProcessHeap(), 0, (strlenW(appname
) + 3) * sizeof(WCHAR
) )))
1705 sprintfW( ret
, quotesW
, appname
);
1712 SetLastError( ERROR_INVALID_PARAMETER
);
1716 /* first check for a quoted file name */
1718 if ((cmdline
[0] == '"') && ((p
= strchrW( cmdline
+ 1, '"' ))))
1720 int len
= p
- cmdline
- 1;
1721 /* extract the quoted portion as file name */
1722 if (!(name
= HeapAlloc( GetProcessHeap(), 0, (len
+ 1) * sizeof(WCHAR
) ))) return NULL
;
1723 memcpy( name
, cmdline
+ 1, len
* sizeof(WCHAR
) );
1726 if (find_exe_file( name
, buffer
, buflen
, handle
))
1727 ret
= cmdline
; /* no change necessary */
1731 /* now try the command-line word by word */
1733 if (!(name
= HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline
) + 1) * sizeof(WCHAR
) )))
1740 do *pos
++ = *p
++; while (*p
&& *p
!= ' ');
1742 if (find_exe_file( name
, buffer
, buflen
, handle
))
1749 if (!ret
|| !strchrW( name
, ' ' )) goto done
; /* no change necessary */
1751 /* now build a new command-line with quotes */
1753 if (!(ret
= HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline
) + 3) * sizeof(WCHAR
) )))
1755 sprintfW( ret
, quotesW
, name
);
1759 HeapFree( GetProcessHeap(), 0, name
);
1764 /**********************************************************************
1765 * CreateProcessA (KERNEL32.@)
1767 BOOL WINAPI
CreateProcessA( LPCSTR app_name
, LPSTR cmd_line
, LPSECURITY_ATTRIBUTES process_attr
,
1768 LPSECURITY_ATTRIBUTES thread_attr
, BOOL inherit
,
1769 DWORD flags
, LPVOID env
, LPCSTR cur_dir
,
1770 LPSTARTUPINFOA startup_info
, LPPROCESS_INFORMATION info
)
1773 WCHAR
*app_nameW
= NULL
, *cmd_lineW
= NULL
, *cur_dirW
= NULL
;
1774 UNICODE_STRING desktopW
, titleW
;
1777 desktopW
.Buffer
= NULL
;
1778 titleW
.Buffer
= NULL
;
1779 if (app_name
&& !(app_nameW
= FILE_name_AtoW( app_name
, TRUE
))) goto done
;
1780 if (cmd_line
&& !(cmd_lineW
= FILE_name_AtoW( cmd_line
, TRUE
))) goto done
;
1781 if (cur_dir
&& !(cur_dirW
= FILE_name_AtoW( cur_dir
, TRUE
))) goto done
;
1783 if (startup_info
->lpDesktop
) RtlCreateUnicodeStringFromAsciiz( &desktopW
, startup_info
->lpDesktop
);
1784 if (startup_info
->lpTitle
) RtlCreateUnicodeStringFromAsciiz( &titleW
, startup_info
->lpTitle
);
1786 memcpy( &infoW
, startup_info
, sizeof(infoW
) );
1787 infoW
.lpDesktop
= desktopW
.Buffer
;
1788 infoW
.lpTitle
= titleW
.Buffer
;
1790 if (startup_info
->lpReserved
)
1791 FIXME("StartupInfo.lpReserved is used, please report (%s)\n",
1792 debugstr_a(startup_info
->lpReserved
));
1794 ret
= CreateProcessW( app_nameW
, cmd_lineW
, process_attr
, thread_attr
,
1795 inherit
, flags
, env
, cur_dirW
, &infoW
, info
);
1797 HeapFree( GetProcessHeap(), 0, app_nameW
);
1798 HeapFree( GetProcessHeap(), 0, cmd_lineW
);
1799 HeapFree( GetProcessHeap(), 0, cur_dirW
);
1800 RtlFreeUnicodeString( &desktopW
);
1801 RtlFreeUnicodeString( &titleW
);
1806 /**********************************************************************
1807 * CreateProcessW (KERNEL32.@)
1809 BOOL WINAPI
CreateProcessW( LPCWSTR app_name
, LPWSTR cmd_line
, LPSECURITY_ATTRIBUTES process_attr
,
1810 LPSECURITY_ATTRIBUTES thread_attr
, BOOL inherit
, DWORD flags
,
1811 LPVOID env
, LPCWSTR cur_dir
, LPSTARTUPINFOW startup_info
,
1812 LPPROCESS_INFORMATION info
)
1816 char *unixdir
= NULL
;
1817 WCHAR name
[MAX_PATH
];
1818 WCHAR
*tidy_cmdline
, *p
, *envW
= env
;
1819 void *res_start
, *res_end
;
1821 /* Process the AppName and/or CmdLine to get module name and path */
1823 TRACE("app %s cmdline %s\n", debugstr_w(app_name
), debugstr_w(cmd_line
) );
1825 if (!(tidy_cmdline
= get_file_name( app_name
, cmd_line
, name
, sizeof(name
), &hFile
)))
1827 if (hFile
== INVALID_HANDLE_VALUE
) goto done
;
1829 /* Warn if unsupported features are used */
1831 if (flags
& (IDLE_PRIORITY_CLASS
| HIGH_PRIORITY_CLASS
| REALTIME_PRIORITY_CLASS
|
1832 CREATE_NEW_PROCESS_GROUP
| CREATE_SEPARATE_WOW_VDM
| CREATE_SHARED_WOW_VDM
|
1833 CREATE_DEFAULT_ERROR_MODE
| CREATE_NO_WINDOW
|
1834 PROFILE_USER
| PROFILE_KERNEL
| PROFILE_SERVER
))
1835 WARN("(%s,...): ignoring some flags in %lx\n", debugstr_w(name
), flags
);
1839 unixdir
= wine_get_unix_file_name( cur_dir
);
1843 WCHAR buf
[MAX_PATH
];
1844 if (GetCurrentDirectoryW(MAX_PATH
, buf
)) unixdir
= wine_get_unix_file_name( buf
);
1847 if (env
&& !(flags
& CREATE_UNICODE_ENVIRONMENT
)) /* convert environment to unicode */
1852 while (*p
) p
+= strlen(p
) + 1;
1853 p
++; /* final null */
1854 lenW
= MultiByteToWideChar( CP_ACP
, 0, env
, p
- (char*)env
, NULL
, 0 );
1855 envW
= HeapAlloc( GetProcessHeap(), 0, lenW
* sizeof(WCHAR
) );
1856 MultiByteToWideChar( CP_ACP
, 0, env
, p
- (char*)env
, envW
, lenW
);
1857 flags
|= CREATE_UNICODE_ENVIRONMENT
;
1860 info
->hThread
= info
->hProcess
= 0;
1861 info
->dwProcessId
= info
->dwThreadId
= 0;
1863 /* Determine executable type */
1865 if (!hFile
) /* builtin exe */
1867 TRACE( "starting %s as Winelib app\n", debugstr_w(name
) );
1868 retv
= create_process( 0, name
, tidy_cmdline
, envW
, cur_dir
, process_attr
, thread_attr
,
1869 inherit
, flags
, startup_info
, info
, unixdir
, NULL
, NULL
);
1873 switch( MODULE_GetBinaryType( hFile
, &res_start
, &res_end
))
1876 TRACE( "starting %s as Win32 binary (%p-%p)\n", debugstr_w(name
), res_start
, res_end
);
1877 retv
= create_process( hFile
, name
, tidy_cmdline
, envW
, cur_dir
, process_attr
, thread_attr
,
1878 inherit
, flags
, startup_info
, info
, unixdir
, res_start
, res_end
);
1883 TRACE( "starting %s as Win16/DOS binary\n", debugstr_w(name
) );
1884 retv
= create_vdm_process( name
, tidy_cmdline
, envW
, cur_dir
, process_attr
, thread_attr
,
1885 inherit
, flags
, startup_info
, info
, unixdir
);
1888 TRACE( "not starting %s since it is a dll\n", debugstr_w(name
) );
1889 SetLastError( ERROR_BAD_EXE_FORMAT
);
1891 case BINARY_UNIX_LIB
:
1892 TRACE( "%s is a Unix library, starting as Winelib app\n", debugstr_w(name
) );
1893 retv
= create_process( hFile
, name
, tidy_cmdline
, envW
, cur_dir
, process_attr
, thread_attr
,
1894 inherit
, flags
, startup_info
, info
, unixdir
, NULL
, NULL
);
1896 case BINARY_UNKNOWN
:
1897 /* check for .com or .bat extension */
1898 if ((p
= strrchrW( name
, '.' )))
1900 if (!strcmpiW( p
, comW
) || !strcmpiW( p
, pifW
))
1902 TRACE( "starting %s as DOS binary\n", debugstr_w(name
) );
1903 retv
= create_vdm_process( name
, tidy_cmdline
, envW
, cur_dir
, process_attr
, thread_attr
,
1904 inherit
, flags
, startup_info
, info
, unixdir
);
1907 if (!strcmpiW( p
, batW
))
1909 TRACE( "starting %s as batch binary\n", debugstr_w(name
) );
1910 retv
= create_cmd_process( name
, tidy_cmdline
, envW
, cur_dir
, process_attr
, thread_attr
,
1911 inherit
, flags
, startup_info
, info
);
1916 case BINARY_UNIX_EXE
:
1918 /* unknown file, try as unix executable */
1921 TRACE( "starting %s as Unix binary\n", debugstr_w(name
) );
1923 if ((unix_name
= wine_get_unix_file_name( name
)))
1925 retv
= (fork_and_exec( unix_name
, tidy_cmdline
, envW
, unixdir
) != -1);
1926 HeapFree( GetProcessHeap(), 0, unix_name
);
1931 CloseHandle( hFile
);
1934 if (tidy_cmdline
!= cmd_line
) HeapFree( GetProcessHeap(), 0, tidy_cmdline
);
1935 if (envW
!= env
) HeapFree( GetProcessHeap(), 0, envW
);
1936 HeapFree( GetProcessHeap(), 0, unixdir
);
1941 /***********************************************************************
1944 * Wrapper to call WaitForInputIdle USER function
1946 typedef DWORD (WINAPI
*WaitForInputIdle_ptr
)( HANDLE hProcess
, DWORD dwTimeOut
);
1948 static DWORD
wait_input_idle( HANDLE process
, DWORD timeout
)
1950 HMODULE mod
= GetModuleHandleA( "user32.dll" );
1953 WaitForInputIdle_ptr ptr
= (WaitForInputIdle_ptr
)GetProcAddress( mod
, "WaitForInputIdle" );
1954 if (ptr
) return ptr( process
, timeout
);
1960 /***********************************************************************
1961 * WinExec (KERNEL32.@)
1963 UINT WINAPI
WinExec( LPCSTR lpCmdLine
, UINT nCmdShow
)
1965 PROCESS_INFORMATION info
;
1966 STARTUPINFOA startup
;
1970 memset( &startup
, 0, sizeof(startup
) );
1971 startup
.cb
= sizeof(startup
);
1972 startup
.dwFlags
= STARTF_USESHOWWINDOW
;
1973 startup
.wShowWindow
= nCmdShow
;
1975 /* cmdline needs to be writeable for CreateProcess */
1976 if (!(cmdline
= HeapAlloc( GetProcessHeap(), 0, strlen(lpCmdLine
)+1 ))) return 0;
1977 strcpy( cmdline
, lpCmdLine
);
1979 if (CreateProcessA( NULL
, cmdline
, NULL
, NULL
, FALSE
,
1980 0, NULL
, NULL
, &startup
, &info
))
1982 /* Give 30 seconds to the app to come up */
1983 if (wait_input_idle( info
.hProcess
, 30000 ) == WAIT_FAILED
)
1984 WARN("WaitForInputIdle failed: Error %ld\n", GetLastError() );
1986 /* Close off the handles */
1987 CloseHandle( info
.hThread
);
1988 CloseHandle( info
.hProcess
);
1990 else if ((ret
= GetLastError()) >= 32)
1992 FIXME("Strange error set by CreateProcess: %d\n", ret
);
1995 HeapFree( GetProcessHeap(), 0, cmdline
);
2000 /**********************************************************************
2001 * LoadModule (KERNEL32.@)
2003 HINSTANCE WINAPI
LoadModule( LPCSTR name
, LPVOID paramBlock
)
2005 LOADPARMS32
*params
= paramBlock
;
2006 PROCESS_INFORMATION info
;
2007 STARTUPINFOA startup
;
2008 HINSTANCE hInstance
;
2010 char filename
[MAX_PATH
];
2013 if (!name
) return (HINSTANCE
)ERROR_FILE_NOT_FOUND
;
2015 if (!SearchPathA( NULL
, name
, ".exe", sizeof(filename
), filename
, NULL
) &&
2016 !SearchPathA( NULL
, name
, NULL
, sizeof(filename
), filename
, NULL
))
2017 return (HINSTANCE
)GetLastError();
2019 len
= (BYTE
)params
->lpCmdLine
[0];
2020 if (!(cmdline
= HeapAlloc( GetProcessHeap(), 0, strlen(filename
) + len
+ 2 )))
2021 return (HINSTANCE
)ERROR_NOT_ENOUGH_MEMORY
;
2023 strcpy( cmdline
, filename
);
2024 p
= cmdline
+ strlen(cmdline
);
2026 memcpy( p
, params
->lpCmdLine
+ 1, len
);
2029 memset( &startup
, 0, sizeof(startup
) );
2030 startup
.cb
= sizeof(startup
);
2031 if (params
->lpCmdShow
)
2033 startup
.dwFlags
= STARTF_USESHOWWINDOW
;
2034 startup
.wShowWindow
= ((WORD
*)params
->lpCmdShow
)[1];
2037 if (CreateProcessA( filename
, cmdline
, NULL
, NULL
, FALSE
, 0,
2038 params
->lpEnvAddress
, NULL
, &startup
, &info
))
2040 /* Give 30 seconds to the app to come up */
2041 if (wait_input_idle( info
.hProcess
, 30000 ) == WAIT_FAILED
)
2042 WARN("WaitForInputIdle failed: Error %ld\n", GetLastError() );
2043 hInstance
= (HINSTANCE
)33;
2044 /* Close off the handles */
2045 CloseHandle( info
.hThread
);
2046 CloseHandle( info
.hProcess
);
2048 else if ((hInstance
= (HINSTANCE
)GetLastError()) >= (HINSTANCE
)32)
2050 FIXME("Strange error set by CreateProcess: %p\n", hInstance
);
2051 hInstance
= (HINSTANCE
)11;
2054 HeapFree( GetProcessHeap(), 0, cmdline
);
2059 /******************************************************************************
2060 * TerminateProcess (KERNEL32.@)
2062 BOOL WINAPI
TerminateProcess( HANDLE handle
, DWORD exit_code
)
2064 NTSTATUS status
= NtTerminateProcess( handle
, exit_code
);
2065 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
2070 /***********************************************************************
2071 * ExitProcess (KERNEL32.@)
2073 void WINAPI
ExitProcess( DWORD status
)
2075 LdrShutdownProcess();
2076 NtTerminateProcess(GetCurrentProcess(), status
);
2081 /***********************************************************************
2082 * GetExitCodeProcess [KERNEL32.@]
2084 * Gets termination status of specified process
2090 BOOL WINAPI
GetExitCodeProcess(
2091 HANDLE hProcess
, /* [in] handle to the process */
2092 LPDWORD lpExitCode
) /* [out] address to receive termination status */
2095 PROCESS_BASIC_INFORMATION pbi
;
2097 status
= NtQueryInformationProcess(hProcess
, ProcessBasicInformation
, &pbi
,
2099 if (status
== STATUS_SUCCESS
)
2101 if (lpExitCode
) *lpExitCode
= pbi
.ExitStatus
;
2104 SetLastError( RtlNtStatusToDosError(status
) );
2109 /***********************************************************************
2110 * SetErrorMode (KERNEL32.@)
2112 UINT WINAPI
SetErrorMode( UINT mode
)
2114 UINT old
= process_error_mode
;
2115 process_error_mode
= mode
;
2120 /**********************************************************************
2121 * TlsAlloc [KERNEL32.@] Allocates a TLS index.
2123 * Allocates a thread local storage index
2126 * Success: TLS Index
2127 * Failure: 0xFFFFFFFF
2129 DWORD WINAPI
TlsAlloc( void )
2132 PEB
* const peb
= NtCurrentTeb()->Peb
;
2134 RtlAcquirePebLock();
2135 index
= RtlFindClearBitsAndSet( peb
->TlsBitmap
, 1, 0 );
2136 if (index
!= ~0U) NtCurrentTeb()->TlsSlots
[index
] = 0; /* clear the value */
2139 index
= RtlFindClearBitsAndSet( peb
->TlsExpansionBitmap
, 1, 0 );
2142 if (!NtCurrentTeb()->TlsExpansionSlots
&&
2143 !(NtCurrentTeb()->TlsExpansionSlots
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
2144 8 * sizeof(peb
->TlsExpansionBitmapBits
) * sizeof(void*) )))
2146 RtlClearBits( peb
->TlsExpansionBitmap
, index
, 1 );
2148 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
2152 NtCurrentTeb()->TlsExpansionSlots
[index
] = 0; /* clear the value */
2153 index
+= TLS_MINIMUM_AVAILABLE
;
2156 else SetLastError( ERROR_NO_MORE_ITEMS
);
2158 RtlReleasePebLock();
2163 /**********************************************************************
2164 * TlsFree [KERNEL32.@] Releases a TLS index.
2166 * Releases a thread local storage index, making it available for reuse
2172 BOOL WINAPI
TlsFree(
2173 DWORD index
) /* [in] TLS Index to free */
2177 RtlAcquirePebLock();
2178 if (index
>= TLS_MINIMUM_AVAILABLE
)
2180 ret
= RtlAreBitsSet( NtCurrentTeb()->Peb
->TlsExpansionBitmap
, index
- TLS_MINIMUM_AVAILABLE
, 1 );
2181 if (ret
) RtlClearBits( NtCurrentTeb()->Peb
->TlsExpansionBitmap
, index
- TLS_MINIMUM_AVAILABLE
, 1 );
2185 ret
= RtlAreBitsSet( NtCurrentTeb()->Peb
->TlsBitmap
, index
, 1 );
2186 if (ret
) RtlClearBits( NtCurrentTeb()->Peb
->TlsBitmap
, index
, 1 );
2188 if (ret
) NtSetInformationThread( GetCurrentThread(), ThreadZeroTlsCell
, &index
, sizeof(index
) );
2189 else SetLastError( ERROR_INVALID_PARAMETER
);
2190 RtlReleasePebLock();
2195 /**********************************************************************
2196 * TlsGetValue [KERNEL32.@] Gets value in a thread's TLS slot
2199 * Success: Value stored in calling thread's TLS slot for index
2200 * Failure: 0 and GetLastError() returns NO_ERROR
2202 LPVOID WINAPI
TlsGetValue(
2203 DWORD index
) /* [in] TLS index to retrieve value for */
2207 if (index
< TLS_MINIMUM_AVAILABLE
)
2209 ret
= NtCurrentTeb()->TlsSlots
[index
];
2213 index
-= TLS_MINIMUM_AVAILABLE
;
2214 if (index
>= 8 * sizeof(NtCurrentTeb()->Peb
->TlsExpansionBitmapBits
))
2216 SetLastError( ERROR_INVALID_PARAMETER
);
2219 if (!NtCurrentTeb()->TlsExpansionSlots
) ret
= NULL
;
2220 else ret
= NtCurrentTeb()->TlsExpansionSlots
[index
];
2222 SetLastError( ERROR_SUCCESS
);
2227 /**********************************************************************
2228 * TlsSetValue [KERNEL32.@] Stores a value in the thread's TLS slot.
2234 BOOL WINAPI
TlsSetValue(
2235 DWORD index
, /* [in] TLS index to set value for */
2236 LPVOID value
) /* [in] Value to be stored */
2238 if (index
< TLS_MINIMUM_AVAILABLE
)
2240 NtCurrentTeb()->TlsSlots
[index
] = value
;
2244 index
-= TLS_MINIMUM_AVAILABLE
;
2245 if (index
>= 8 * sizeof(NtCurrentTeb()->Peb
->TlsExpansionBitmapBits
))
2247 SetLastError( ERROR_INVALID_PARAMETER
);
2250 if (!NtCurrentTeb()->TlsExpansionSlots
&&
2251 !(NtCurrentTeb()->TlsExpansionSlots
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
2252 8 * sizeof(NtCurrentTeb()->Peb
->TlsExpansionBitmapBits
) * sizeof(void*) )))
2254 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
2257 NtCurrentTeb()->TlsExpansionSlots
[index
] = value
;
2263 /***********************************************************************
2264 * GetProcessFlags (KERNEL32.@)
2266 DWORD WINAPI
GetProcessFlags( DWORD processid
)
2268 IMAGE_NT_HEADERS
*nt
;
2271 if (processid
&& processid
!= GetCurrentProcessId()) return 0;
2273 if ((nt
= RtlImageNtHeader( NtCurrentTeb()->Peb
->ImageBaseAddress
)))
2275 if (nt
->OptionalHeader
.Subsystem
== IMAGE_SUBSYSTEM_WINDOWS_CUI
)
2276 flags
|= PDB32_CONSOLE_PROC
;
2278 if (!AreFileApisANSI()) flags
|= PDB32_FILE_APIS_OEM
;
2279 if (IsDebuggerPresent()) flags
|= PDB32_DEBUGGED
;
2284 /***********************************************************************
2285 * GetProcessDword (KERNEL.485)
2286 * GetProcessDword (KERNEL32.18)
2287 * 'Of course you cannot directly access Windows internal structures'
2289 DWORD WINAPI
GetProcessDword( DWORD dwProcessID
, INT offset
)
2294 TRACE("(%ld, %d)\n", dwProcessID
, offset
);
2296 if (dwProcessID
&& dwProcessID
!= GetCurrentProcessId())
2298 ERR("%d: process %lx not accessible\n", offset
, dwProcessID
);
2304 case GPD_APP_COMPAT_FLAGS
:
2305 return GetAppCompatFlags16(0);
2306 case GPD_LOAD_DONE_EVENT
:
2308 case GPD_HINSTANCE16
:
2309 return GetTaskDS16();
2310 case GPD_WINDOWS_VERSION
:
2311 return GetExeVersion16();
2313 return (DWORD
)NtCurrentTeb() - 0x10 /* FIXME */;
2315 return (DWORD
)NtCurrentTeb()->Peb
;
2316 case GPD_STARTF_SHELLDATA
: /* return stdoutput handle from startupinfo ??? */
2317 GetStartupInfoW(&siw
);
2318 return (DWORD
)siw
.hStdOutput
;
2319 case GPD_STARTF_HOTKEY
: /* return stdinput handle from startupinfo ??? */
2320 GetStartupInfoW(&siw
);
2321 return (DWORD
)siw
.hStdInput
;
2322 case GPD_STARTF_SHOWWINDOW
:
2323 GetStartupInfoW(&siw
);
2324 return siw
.wShowWindow
;
2325 case GPD_STARTF_SIZE
:
2326 GetStartupInfoW(&siw
);
2328 if ( (INT
)x
== CW_USEDEFAULT
) x
= CW_USEDEFAULT16
;
2330 if ( (INT
)y
== CW_USEDEFAULT
) y
= CW_USEDEFAULT16
;
2331 return MAKELONG( x
, y
);
2332 case GPD_STARTF_POSITION
:
2333 GetStartupInfoW(&siw
);
2335 if ( (INT
)x
== CW_USEDEFAULT
) x
= CW_USEDEFAULT16
;
2337 if ( (INT
)y
== CW_USEDEFAULT
) y
= CW_USEDEFAULT16
;
2338 return MAKELONG( x
, y
);
2339 case GPD_STARTF_FLAGS
:
2340 GetStartupInfoW(&siw
);
2345 return GetProcessFlags(0);
2347 return process_dword
;
2349 ERR("Unknown offset %d\n", offset
);
2354 /***********************************************************************
2355 * SetProcessDword (KERNEL.484)
2356 * 'Of course you cannot directly access Windows internal structures'
2358 void WINAPI
SetProcessDword( DWORD dwProcessID
, INT offset
, DWORD value
)
2360 TRACE("(%ld, %d)\n", dwProcessID
, offset
);
2362 if (dwProcessID
&& dwProcessID
!= GetCurrentProcessId())
2364 ERR("%d: process %lx not accessible\n", offset
, dwProcessID
);
2370 case GPD_APP_COMPAT_FLAGS
:
2371 case GPD_LOAD_DONE_EVENT
:
2372 case GPD_HINSTANCE16
:
2373 case GPD_WINDOWS_VERSION
:
2376 case GPD_STARTF_SHELLDATA
:
2377 case GPD_STARTF_HOTKEY
:
2378 case GPD_STARTF_SHOWWINDOW
:
2379 case GPD_STARTF_SIZE
:
2380 case GPD_STARTF_POSITION
:
2381 case GPD_STARTF_FLAGS
:
2384 ERR("Not allowed to modify offset %d\n", offset
);
2387 process_dword
= value
;
2390 ERR("Unknown offset %d\n", offset
);
2396 /***********************************************************************
2397 * ExitProcess (KERNEL.466)
2399 void WINAPI
ExitProcess16( WORD status
)
2402 ReleaseThunkLock( &count
);
2403 ExitProcess( status
);
2407 /*********************************************************************
2408 * OpenProcess (KERNEL32.@)
2410 HANDLE WINAPI
OpenProcess( DWORD access
, BOOL inherit
, DWORD id
)
2414 OBJECT_ATTRIBUTES attr
;
2417 cid
.UniqueProcess
= (HANDLE
)id
;
2418 cid
.UniqueThread
= 0; /* FIXME ? */
2420 attr
.Length
= sizeof(OBJECT_ATTRIBUTES
);
2421 attr
.RootDirectory
= NULL
;
2422 attr
.Attributes
= inherit
? OBJ_INHERIT
: 0;
2423 attr
.SecurityDescriptor
= NULL
;
2424 attr
.SecurityQualityOfService
= NULL
;
2425 attr
.ObjectName
= NULL
;
2427 status
= NtOpenProcess(&handle
, access
, &attr
, &cid
);
2428 if (status
!= STATUS_SUCCESS
)
2430 SetLastError( RtlNtStatusToDosError(status
) );
2437 /*********************************************************************
2438 * MapProcessHandle (KERNEL.483)
2439 * GetProcessId (KERNEL32.@)
2441 DWORD WINAPI
GetProcessId( HANDLE hProcess
)
2444 PROCESS_BASIC_INFORMATION pbi
;
2446 status
= NtQueryInformationProcess(hProcess
, ProcessBasicInformation
, &pbi
,
2448 if (status
== STATUS_SUCCESS
) return pbi
.UniqueProcessId
;
2449 SetLastError( RtlNtStatusToDosError(status
) );
2454 /*********************************************************************
2455 * CloseW32Handle (KERNEL.474)
2456 * CloseHandle (KERNEL32.@)
2458 BOOL WINAPI
CloseHandle( HANDLE handle
)
2462 /* stdio handles need special treatment */
2463 if ((handle
== (HANDLE
)STD_INPUT_HANDLE
) ||
2464 (handle
== (HANDLE
)STD_OUTPUT_HANDLE
) ||
2465 (handle
== (HANDLE
)STD_ERROR_HANDLE
))
2466 handle
= GetStdHandle( (DWORD
)handle
);
2468 if (is_console_handle(handle
))
2469 return CloseConsoleHandle(handle
);
2471 status
= NtClose( handle
);
2472 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
2477 /*********************************************************************
2478 * GetHandleInformation (KERNEL32.@)
2480 BOOL WINAPI
GetHandleInformation( HANDLE handle
, LPDWORD flags
)
2482 OBJECT_DATA_INFORMATION info
;
2483 NTSTATUS status
= NtQueryObject( handle
, ObjectDataInformation
, &info
, sizeof(info
), NULL
);
2485 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
2489 if (info
.InheritHandle
) *flags
|= HANDLE_FLAG_INHERIT
;
2490 if (info
.ProtectFromClose
) *flags
|= HANDLE_FLAG_PROTECT_FROM_CLOSE
;
2496 /*********************************************************************
2497 * SetHandleInformation (KERNEL32.@)
2499 BOOL WINAPI
SetHandleInformation( HANDLE handle
, DWORD mask
, DWORD flags
)
2501 OBJECT_DATA_INFORMATION info
;
2504 /* if not setting both fields, retrieve current value first */
2505 if ((mask
& (HANDLE_FLAG_INHERIT
| HANDLE_FLAG_PROTECT_FROM_CLOSE
)) !=
2506 (HANDLE_FLAG_INHERIT
| HANDLE_FLAG_PROTECT_FROM_CLOSE
))
2508 if ((status
= NtQueryObject( handle
, ObjectDataInformation
, &info
, sizeof(info
), NULL
)))
2510 SetLastError( RtlNtStatusToDosError(status
) );
2514 if (mask
& HANDLE_FLAG_INHERIT
)
2515 info
.InheritHandle
= (flags
& HANDLE_FLAG_INHERIT
) != 0;
2516 if (mask
& HANDLE_FLAG_PROTECT_FROM_CLOSE
)
2517 info
.ProtectFromClose
= (flags
& HANDLE_FLAG_PROTECT_FROM_CLOSE
) != 0;
2519 status
= NtSetInformationObject( handle
, ObjectDataInformation
, &info
, sizeof(info
) );
2520 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
2525 /*********************************************************************
2526 * DuplicateHandle (KERNEL32.@)
2528 BOOL WINAPI
DuplicateHandle( HANDLE source_process
, HANDLE source
,
2529 HANDLE dest_process
, HANDLE
*dest
,
2530 DWORD access
, BOOL inherit
, DWORD options
)
2534 if (is_console_handle(source
))
2536 /* FIXME: this test is not sufficient, we need to test process ids, not handles */
2537 if (source_process
!= dest_process
||
2538 source_process
!= GetCurrentProcess())
2540 SetLastError(ERROR_INVALID_PARAMETER
);
2543 *dest
= DuplicateConsoleHandle( source
, access
, inherit
, options
);
2544 return (*dest
!= INVALID_HANDLE_VALUE
);
2546 status
= NtDuplicateObject( source_process
, source
, dest_process
, dest
,
2547 access
, inherit
? OBJ_INHERIT
: 0, options
);
2548 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
2553 /***********************************************************************
2554 * ConvertToGlobalHandle (KERNEL.476)
2555 * ConvertToGlobalHandle (KERNEL32.@)
2557 HANDLE WINAPI
ConvertToGlobalHandle(HANDLE hSrc
)
2559 HANDLE ret
= INVALID_HANDLE_VALUE
;
2560 DuplicateHandle( GetCurrentProcess(), hSrc
, GetCurrentProcess(), &ret
, 0, FALSE
,
2561 DUP_HANDLE_MAKE_GLOBAL
| DUP_HANDLE_SAME_ACCESS
| DUP_HANDLE_CLOSE_SOURCE
);
2566 /***********************************************************************
2567 * SetHandleContext (KERNEL32.@)
2569 BOOL WINAPI
SetHandleContext(HANDLE hnd
,DWORD context
)
2571 FIXME("(%p,%ld), stub. In case this got called by WSOCK32/WS2_32: "
2572 "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd
,context
);
2573 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
2578 /***********************************************************************
2579 * GetHandleContext (KERNEL32.@)
2581 DWORD WINAPI
GetHandleContext(HANDLE hnd
)
2583 FIXME("(%p), stub. In case this got called by WSOCK32/WS2_32: "
2584 "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd
);
2585 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
2590 /***********************************************************************
2591 * CreateSocketHandle (KERNEL32.@)
2593 HANDLE WINAPI
CreateSocketHandle(void)
2595 FIXME("(), stub. In case this got called by WSOCK32/WS2_32: "
2596 "the external WINSOCK DLLs won't work with WINE, don't use them.\n");
2597 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
2598 return INVALID_HANDLE_VALUE
;
2602 /***********************************************************************
2603 * SetPriorityClass (KERNEL32.@)
2605 BOOL WINAPI
SetPriorityClass( HANDLE hprocess
, DWORD priorityclass
)
2608 PROCESS_PRIORITY_CLASS ppc
;
2610 ppc
.Foreground
= FALSE
;
2611 switch (priorityclass
)
2613 case IDLE_PRIORITY_CLASS
:
2614 ppc
.PriorityClass
= PROCESS_PRIOCLASS_IDLE
; break;
2615 case BELOW_NORMAL_PRIORITY_CLASS
:
2616 ppc
.PriorityClass
= PROCESS_PRIOCLASS_BELOW_NORMAL
; break;
2617 case NORMAL_PRIORITY_CLASS
:
2618 ppc
.PriorityClass
= PROCESS_PRIOCLASS_NORMAL
; break;
2619 case ABOVE_NORMAL_PRIORITY_CLASS
:
2620 ppc
.PriorityClass
= PROCESS_PRIOCLASS_ABOVE_NORMAL
; break;
2621 case HIGH_PRIORITY_CLASS
:
2622 ppc
.PriorityClass
= PROCESS_PRIOCLASS_HIGH
; break;
2623 case REALTIME_PRIORITY_CLASS
:
2624 ppc
.PriorityClass
= PROCESS_PRIOCLASS_REALTIME
; break;
2626 SetLastError(ERROR_INVALID_PARAMETER
);
2630 status
= NtSetInformationProcess(hprocess
, ProcessPriorityClass
,
2633 if (status
!= STATUS_SUCCESS
)
2635 SetLastError( RtlNtStatusToDosError(status
) );
2642 /***********************************************************************
2643 * GetPriorityClass (KERNEL32.@)
2645 DWORD WINAPI
GetPriorityClass(HANDLE hProcess
)
2648 PROCESS_BASIC_INFORMATION pbi
;
2650 status
= NtQueryInformationProcess(hProcess
, ProcessBasicInformation
, &pbi
,
2652 if (status
!= STATUS_SUCCESS
)
2654 SetLastError( RtlNtStatusToDosError(status
) );
2657 switch (pbi
.BasePriority
)
2659 case PROCESS_PRIOCLASS_IDLE
: return IDLE_PRIORITY_CLASS
;
2660 case PROCESS_PRIOCLASS_BELOW_NORMAL
: return BELOW_NORMAL_PRIORITY_CLASS
;
2661 case PROCESS_PRIOCLASS_NORMAL
: return NORMAL_PRIORITY_CLASS
;
2662 case PROCESS_PRIOCLASS_ABOVE_NORMAL
: return ABOVE_NORMAL_PRIORITY_CLASS
;
2663 case PROCESS_PRIOCLASS_HIGH
: return HIGH_PRIORITY_CLASS
;
2664 case PROCESS_PRIOCLASS_REALTIME
: return REALTIME_PRIORITY_CLASS
;
2666 SetLastError( ERROR_INVALID_PARAMETER
);
2671 /***********************************************************************
2672 * SetProcessAffinityMask (KERNEL32.@)
2674 BOOL WINAPI
SetProcessAffinityMask( HANDLE hProcess
, DWORD_PTR affmask
)
2678 status
= NtSetInformationProcess(hProcess
, ProcessAffinityMask
,
2679 &affmask
, sizeof(DWORD_PTR
));
2682 SetLastError( RtlNtStatusToDosError(status
) );
2689 /**********************************************************************
2690 * GetProcessAffinityMask (KERNEL32.@)
2692 BOOL WINAPI
GetProcessAffinityMask( HANDLE hProcess
,
2693 PDWORD_PTR lpProcessAffinityMask
,
2694 PDWORD_PTR lpSystemAffinityMask
)
2696 PROCESS_BASIC_INFORMATION pbi
;
2699 status
= NtQueryInformationProcess(hProcess
,
2700 ProcessBasicInformation
,
2701 &pbi
, sizeof(pbi
), NULL
);
2704 SetLastError( RtlNtStatusToDosError(status
) );
2707 if (lpProcessAffinityMask
) *lpProcessAffinityMask
= pbi
.AffinityMask
;
2709 if (lpSystemAffinityMask
) *lpSystemAffinityMask
= 1;
2714 /***********************************************************************
2715 * GetProcessVersion (KERNEL32.@)
2717 DWORD WINAPI
GetProcessVersion( DWORD processid
)
2719 IMAGE_NT_HEADERS
*nt
;
2721 if (processid
&& processid
!= GetCurrentProcessId())
2723 FIXME("should use ReadProcessMemory\n");
2726 if ((nt
= RtlImageNtHeader( NtCurrentTeb()->Peb
->ImageBaseAddress
)))
2727 return ((nt
->OptionalHeader
.MajorSubsystemVersion
<< 16) |
2728 nt
->OptionalHeader
.MinorSubsystemVersion
);
2733 /***********************************************************************
2734 * SetProcessWorkingSetSize [KERNEL32.@]
2735 * Sets the min/max working set sizes for a specified process.
2738 * hProcess [I] Handle to the process of interest
2739 * minset [I] Specifies minimum working set size
2740 * maxset [I] Specifies maximum working set size
2746 BOOL WINAPI
SetProcessWorkingSetSize(HANDLE hProcess
, SIZE_T minset
,
2749 FIXME("(%p,%ld,%ld): stub - harmless\n",hProcess
,minset
,maxset
);
2750 if(( minset
== (SIZE_T
)-1) && (maxset
== (SIZE_T
)-1)) {
2751 /* Trim the working set to zero */
2752 /* Swap the process out of physical RAM */
2757 /***********************************************************************
2758 * GetProcessWorkingSetSize (KERNEL32.@)
2760 BOOL WINAPI
GetProcessWorkingSetSize(HANDLE hProcess
, PSIZE_T minset
,
2763 FIXME("(%p,%p,%p): stub\n",hProcess
,minset
,maxset
);
2764 /* 32 MB working set size */
2765 if (minset
) *minset
= 32*1024*1024;
2766 if (maxset
) *maxset
= 32*1024*1024;
2771 /***********************************************************************
2772 * SetProcessShutdownParameters (KERNEL32.@)
2774 BOOL WINAPI
SetProcessShutdownParameters(DWORD level
, DWORD flags
)
2776 FIXME("(%08lx, %08lx): partial stub.\n", level
, flags
);
2777 shutdown_flags
= flags
;
2778 shutdown_priority
= level
;
2783 /***********************************************************************
2784 * GetProcessShutdownParameters (KERNEL32.@)
2787 BOOL WINAPI
GetProcessShutdownParameters( LPDWORD lpdwLevel
, LPDWORD lpdwFlags
)
2789 *lpdwLevel
= shutdown_priority
;
2790 *lpdwFlags
= shutdown_flags
;
2795 /***********************************************************************
2796 * GetProcessPriorityBoost (KERNEL32.@)
2798 BOOL WINAPI
GetProcessPriorityBoost(HANDLE hprocess
,PBOOL pDisablePriorityBoost
)
2800 FIXME("(%p,%p): semi-stub\n", hprocess
, pDisablePriorityBoost
);
2802 /* Report that no boost is present.. */
2803 *pDisablePriorityBoost
= FALSE
;
2808 /***********************************************************************
2809 * SetProcessPriorityBoost (KERNEL32.@)
2811 BOOL WINAPI
SetProcessPriorityBoost(HANDLE hprocess
,BOOL disableboost
)
2813 FIXME("(%p,%d): stub\n",hprocess
,disableboost
);
2814 /* Say we can do it. I doubt the program will notice that we don't. */
2819 /***********************************************************************
2820 * ReadProcessMemory (KERNEL32.@)
2822 BOOL WINAPI
ReadProcessMemory( HANDLE process
, LPCVOID addr
, LPVOID buffer
, SIZE_T size
,
2823 SIZE_T
*bytes_read
)
2825 NTSTATUS status
= NtReadVirtualMemory( process
, addr
, buffer
, size
, bytes_read
);
2826 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
2831 /***********************************************************************
2832 * WriteProcessMemory (KERNEL32.@)
2834 BOOL WINAPI
WriteProcessMemory( HANDLE process
, LPVOID addr
, LPCVOID buffer
, SIZE_T size
,
2835 SIZE_T
*bytes_written
)
2837 NTSTATUS status
= NtWriteVirtualMemory( process
, addr
, buffer
, size
, bytes_written
);
2838 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
2843 /****************************************************************************
2844 * FlushInstructionCache (KERNEL32.@)
2846 BOOL WINAPI
FlushInstructionCache(HANDLE hProcess
, LPCVOID lpBaseAddress
, SIZE_T dwSize
)
2849 if (GetVersion() & 0x80000000) return TRUE
; /* not NT, always TRUE */
2850 status
= NtFlushInstructionCache( hProcess
, lpBaseAddress
, dwSize
);
2851 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
2856 /******************************************************************
2857 * GetProcessIoCounters (KERNEL32.@)
2859 BOOL WINAPI
GetProcessIoCounters(HANDLE hProcess
, PIO_COUNTERS ioc
)
2863 status
= NtQueryInformationProcess(hProcess
, ProcessIoCounters
,
2864 ioc
, sizeof(*ioc
), NULL
);
2865 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
2869 /***********************************************************************
2870 * ProcessIdToSessionId (KERNEL32.@)
2871 * This function is available on Terminal Server 4SP4 and Windows 2000
2873 BOOL WINAPI
ProcessIdToSessionId( DWORD procid
, DWORD
*sessionid_ptr
)
2875 /* According to MSDN, if the calling process is not in a terminal
2876 * services environment, then the sessionid returned is zero.
2883 /***********************************************************************
2884 * RegisterServiceProcess (KERNEL.491)
2885 * RegisterServiceProcess (KERNEL32.@)
2887 * A service process calls this function to ensure that it continues to run
2888 * even after a user logged off.
2890 DWORD WINAPI
RegisterServiceProcess(DWORD dwProcessId
, DWORD dwType
)
2892 /* I don't think that Wine needs to do anything in this function */
2893 return 1; /* success */
2897 /***********************************************************************
2898 * GetCurrentProcess (KERNEL32.@)
2900 * Get a handle to the current process.
2906 * A handle representing the current process.
2908 #undef GetCurrentProcess
2909 HANDLE WINAPI
GetCurrentProcess(void)
2911 return (HANDLE
)0xffffffff;