Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7a122604
Commit
7a122604
authored
Feb 12, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Reimplement init_user_process_params() using RtlCreateProcessParametersEx().
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6abf99b4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
98 additions
and
122 deletions
+98
-122
env.c
dlls/ntdll/env.c
+97
-7
ntdll_misc.h
dlls/ntdll/ntdll_misc.h
+1
-0
thread.c
dlls/ntdll/thread.c
+0
-115
No files found.
dlls/ntdll/env.c
View file @
7a122604
...
...
@@ -460,7 +460,7 @@ NTSTATUS WINAPI RtlCreateProcessParametersEx( RTL_USER_PROCESS_PARAMETERS **resu
UNICODE_STRING
curdir
;
const
RTL_USER_PROCESS_PARAMETERS
*
cur_params
;
SIZE_T
size
,
env_size
;
SIZE_T
size
,
env_size
=
0
;
void
*
ptr
;
const
WCHAR
*
env
;
NTSTATUS
status
=
STATUS_SUCCESS
;
...
...
@@ -485,10 +485,13 @@ NTSTATUS WINAPI RtlCreateProcessParametersEx( RTL_USER_PROCESS_PARAMETERS **resu
if
(
!
ShellInfo
)
ShellInfo
=
&
empty_str
;
if
(
!
RuntimeInfo
)
RuntimeInfo
=
&
null_str
;
env
=
Environment
;
while
(
*
env
)
env
+=
strlenW
(
env
)
+
1
;
env
++
;
env_size
=
ROUND_SIZE
(
(
env
-
Environment
)
*
sizeof
(
WCHAR
)
);
if
(
Environment
)
{
env
=
Environment
;
while
(
*
env
)
env
+=
strlenW
(
env
)
+
1
;
env
++
;
env_size
=
ROUND_SIZE
(
(
env
-
Environment
)
*
sizeof
(
WCHAR
)
);
}
size
=
(
sizeof
(
RTL_USER_PROCESS_PARAMETERS
)
+
ROUND_SIZE
(
ImagePathName
->
MaximumLength
)
...
...
@@ -518,8 +521,8 @@ NTSTATUS WINAPI RtlCreateProcessParametersEx( RTL_USER_PROCESS_PARAMETERS **resu
append_unicode_string
(
&
ptr
,
Desktop
,
&
params
->
Desktop
);
append_unicode_string
(
&
ptr
,
ShellInfo
,
&
params
->
ShellInfo
);
append_unicode_string
(
&
ptr
,
RuntimeInfo
,
&
params
->
RuntimeInfo
);
params
->
Environment
=
ptr
;
memcpy
(
ptr
,
Environment
,
(
env
-
Environment
)
*
sizeof
(
WCHAR
)
);
if
(
Environment
)
params
->
Environment
=
memcpy
(
ptr
,
Environment
,
(
env
-
Environment
)
*
sizeof
(
WCHAR
)
);
*
result
=
params
;
if
(
!
(
flags
&
PROCESS_PARAMS_FLAG_NORMALIZED
))
RtlDeNormalizeProcessParams
(
params
);
}
...
...
@@ -556,3 +559,90 @@ void WINAPI RtlDestroyProcessParameters( RTL_USER_PROCESS_PARAMETERS *params )
{
RtlFreeHeap
(
GetProcessHeap
(),
0
,
params
);
}
static
inline
void
get_unicode_string
(
UNICODE_STRING
*
str
,
WCHAR
**
src
,
UINT
len
)
{
str
->
Buffer
=
*
src
;
str
->
Length
=
len
;
str
->
MaximumLength
=
len
+
sizeof
(
WCHAR
);
*
src
+=
len
/
sizeof
(
WCHAR
);
}
/***********************************************************************
* init_user_process_params
*
* Fill the initial RTL_USER_PROCESS_PARAMETERS structure from the server.
*/
void
init_user_process_params
(
SIZE_T
data_size
)
{
void
*
ptr
;
WCHAR
*
src
;
SIZE_T
info_size
,
env_size
,
alloc_size
;
NTSTATUS
status
;
startup_info_t
*
info
;
RTL_USER_PROCESS_PARAMETERS
*
params
=
NULL
;
UNICODE_STRING
curdir
,
dllpath
,
imagepath
,
cmdline
,
title
,
desktop
,
shellinfo
,
runtime
;
if
(
!
(
info
=
RtlAllocateHeap
(
GetProcessHeap
(),
0
,
data_size
)))
return
;
SERVER_START_REQ
(
get_startup_info
)
{
wine_server_set_reply
(
req
,
info
,
data_size
);
if
(
!
(
status
=
wine_server_call
(
req
)))
{
data_size
=
wine_server_reply_size
(
reply
);
info_size
=
reply
->
info_size
;
env_size
=
data_size
-
info_size
;
}
}
SERVER_END_REQ
;
if
(
status
)
goto
done
;
src
=
(
WCHAR
*
)(
info
+
1
);
get_unicode_string
(
&
curdir
,
&
src
,
info
->
curdir_len
);
get_unicode_string
(
&
dllpath
,
&
src
,
info
->
dllpath_len
);
get_unicode_string
(
&
imagepath
,
&
src
,
info
->
imagepath_len
);
get_unicode_string
(
&
cmdline
,
&
src
,
info
->
cmdline_len
);
get_unicode_string
(
&
title
,
&
src
,
info
->
title_len
);
get_unicode_string
(
&
desktop
,
&
src
,
info
->
desktop_len
);
get_unicode_string
(
&
shellinfo
,
&
src
,
info
->
shellinfo_len
);
get_unicode_string
(
&
runtime
,
&
src
,
info
->
runtime_len
);
curdir
.
MaximumLength
=
MAX_PATH
*
sizeof
(
WCHAR
);
/* current directory needs more space */
runtime
.
MaximumLength
=
runtime
.
Length
;
/* runtime info isn't a real string */
if
(
RtlCreateProcessParametersEx
(
&
params
,
&
imagepath
,
&
dllpath
,
&
curdir
,
&
cmdline
,
NULL
,
&
title
,
&
desktop
,
&
shellinfo
,
&
runtime
,
PROCESS_PARAMS_FLAG_NORMALIZED
))
goto
done
;
NtCurrentTeb
()
->
Peb
->
ProcessParameters
=
params
;
params
->
DebugFlags
=
info
->
debug_flags
;
params
->
ConsoleHandle
=
wine_server_ptr_handle
(
info
->
console
);
params
->
ConsoleFlags
=
info
->
console_flags
;
params
->
hStdInput
=
wine_server_ptr_handle
(
info
->
hstdin
);
params
->
hStdOutput
=
wine_server_ptr_handle
(
info
->
hstdout
);
params
->
hStdError
=
wine_server_ptr_handle
(
info
->
hstderr
);
params
->
dwX
=
info
->
x
;
params
->
dwY
=
info
->
y
;
params
->
dwXSize
=
info
->
xsize
;
params
->
dwYSize
=
info
->
ysize
;
params
->
dwXCountChars
=
info
->
xchars
;
params
->
dwYCountChars
=
info
->
ychars
;
params
->
dwFillAttribute
=
info
->
attribute
;
params
->
dwFlags
=
info
->
flags
;
params
->
wShowWindow
=
info
->
show
;
/* environment needs to be a separate memory block */
ptr
=
NULL
;
alloc_size
=
max
(
1
,
env_size
);
status
=
NtAllocateVirtualMemory
(
NtCurrentProcess
(),
&
ptr
,
0
,
&
alloc_size
,
MEM_COMMIT
,
PAGE_READWRITE
);
if
(
status
!=
STATUS_SUCCESS
)
goto
done
;
memcpy
(
ptr
,
(
char
*
)
info
+
info_size
,
env_size
);
params
->
Environment
=
ptr
;
done:
RtlFreeHeap
(
GetProcessHeap
(),
0
,
info
);
}
dlls/ntdll/ntdll_misc.h
View file @
7a122604
...
...
@@ -80,6 +80,7 @@ extern void virtual_init(void) DECLSPEC_HIDDEN;
extern
void
virtual_init_threading
(
void
)
DECLSPEC_HIDDEN
;
extern
void
fill_cpu_info
(
void
)
DECLSPEC_HIDDEN
;
extern
void
heap_set_debug_flags
(
HANDLE
handle
)
DECLSPEC_HIDDEN
;
extern
void
init_user_process_params
(
SIZE_T
data_size
)
DECLSPEC_HIDDEN
;
/* server support */
extern
timeout_t
server_start_time
DECLSPEC_HIDDEN
;
...
...
dlls/ntdll/thread.c
View file @
7a122604
...
...
@@ -83,121 +83,6 @@ static RTL_CRITICAL_SECTION_DEBUG critsect_debug =
};
static
RTL_CRITICAL_SECTION
peb_lock
=
{
&
critsect_debug
,
-
1
,
0
,
0
,
0
,
0
};
/***********************************************************************
* get_unicode_string
*
* Copy a unicode string from the startup info.
*/
static
inline
void
get_unicode_string
(
UNICODE_STRING
*
str
,
WCHAR
**
src
,
WCHAR
**
dst
,
UINT
len
)
{
str
->
Buffer
=
*
dst
;
str
->
Length
=
len
;
str
->
MaximumLength
=
len
+
sizeof
(
WCHAR
);
memcpy
(
str
->
Buffer
,
*
src
,
len
);
str
->
Buffer
[
len
/
sizeof
(
WCHAR
)]
=
0
;
*
src
+=
len
/
sizeof
(
WCHAR
);
*
dst
+=
len
/
sizeof
(
WCHAR
)
+
1
;
}
/***********************************************************************
* init_user_process_params
*
* Fill the RTL_USER_PROCESS_PARAMETERS structure from the server.
*/
static
NTSTATUS
init_user_process_params
(
SIZE_T
data_size
)
{
void
*
ptr
;
WCHAR
*
src
,
*
dst
;
SIZE_T
info_size
,
env_size
,
size
,
alloc_size
;
NTSTATUS
status
;
startup_info_t
*
info
;
RTL_USER_PROCESS_PARAMETERS
*
params
=
NULL
;
if
(
!
(
info
=
RtlAllocateHeap
(
GetProcessHeap
(),
0
,
data_size
)))
return
STATUS_NO_MEMORY
;
SERVER_START_REQ
(
get_startup_info
)
{
wine_server_set_reply
(
req
,
info
,
data_size
);
if
(
!
(
status
=
wine_server_call
(
req
)))
{
data_size
=
wine_server_reply_size
(
reply
);
info_size
=
reply
->
info_size
;
env_size
=
data_size
-
info_size
;
}
}
SERVER_END_REQ
;
if
(
status
!=
STATUS_SUCCESS
)
goto
done
;
size
=
sizeof
(
*
params
);
size
+=
sizeof
(
current_dir
);
size
+=
info
->
dllpath_len
+
sizeof
(
WCHAR
);
size
+=
info
->
imagepath_len
+
sizeof
(
WCHAR
);
size
+=
info
->
cmdline_len
+
sizeof
(
WCHAR
);
size
+=
info
->
title_len
+
sizeof
(
WCHAR
);
size
+=
info
->
desktop_len
+
sizeof
(
WCHAR
);
size
+=
info
->
shellinfo_len
+
sizeof
(
WCHAR
);
size
+=
info
->
runtime_len
+
sizeof
(
WCHAR
);
alloc_size
=
size
;
status
=
NtAllocateVirtualMemory
(
NtCurrentProcess
(),
(
void
**
)
&
params
,
0
,
&
alloc_size
,
MEM_COMMIT
,
PAGE_READWRITE
);
if
(
status
!=
STATUS_SUCCESS
)
goto
done
;
NtCurrentTeb
()
->
Peb
->
ProcessParameters
=
params
;
params
->
AllocationSize
=
alloc_size
;
params
->
Size
=
size
;
params
->
Flags
=
PROCESS_PARAMS_FLAG_NORMALIZED
;
params
->
DebugFlags
=
info
->
debug_flags
;
params
->
ConsoleHandle
=
wine_server_ptr_handle
(
info
->
console
);
params
->
ConsoleFlags
=
info
->
console_flags
;
params
->
hStdInput
=
wine_server_ptr_handle
(
info
->
hstdin
);
params
->
hStdOutput
=
wine_server_ptr_handle
(
info
->
hstdout
);
params
->
hStdError
=
wine_server_ptr_handle
(
info
->
hstderr
);
params
->
dwX
=
info
->
x
;
params
->
dwY
=
info
->
y
;
params
->
dwXSize
=
info
->
xsize
;
params
->
dwYSize
=
info
->
ysize
;
params
->
dwXCountChars
=
info
->
xchars
;
params
->
dwYCountChars
=
info
->
ychars
;
params
->
dwFillAttribute
=
info
->
attribute
;
params
->
dwFlags
=
info
->
flags
;
params
->
wShowWindow
=
info
->
show
;
src
=
(
WCHAR
*
)(
info
+
1
);
dst
=
(
WCHAR
*
)(
params
+
1
);
/* current directory needs more space */
get_unicode_string
(
&
params
->
CurrentDirectory
.
DosPath
,
&
src
,
&
dst
,
info
->
curdir_len
);
params
->
CurrentDirectory
.
DosPath
.
MaximumLength
=
sizeof
(
current_dir
);
dst
=
(
WCHAR
*
)(
params
+
1
)
+
ARRAY_SIZE
(
current_dir
);
get_unicode_string
(
&
params
->
DllPath
,
&
src
,
&
dst
,
info
->
dllpath_len
);
get_unicode_string
(
&
params
->
ImagePathName
,
&
src
,
&
dst
,
info
->
imagepath_len
);
get_unicode_string
(
&
params
->
CommandLine
,
&
src
,
&
dst
,
info
->
cmdline_len
);
get_unicode_string
(
&
params
->
WindowTitle
,
&
src
,
&
dst
,
info
->
title_len
);
get_unicode_string
(
&
params
->
Desktop
,
&
src
,
&
dst
,
info
->
desktop_len
);
get_unicode_string
(
&
params
->
ShellInfo
,
&
src
,
&
dst
,
info
->
shellinfo_len
);
/* runtime info isn't a real string */
params
->
RuntimeInfo
.
Buffer
=
dst
;
params
->
RuntimeInfo
.
Length
=
params
->
RuntimeInfo
.
MaximumLength
=
info
->
runtime_len
;
memcpy
(
dst
,
src
,
info
->
runtime_len
);
/* environment needs to be a separate memory block */
ptr
=
NULL
;
alloc_size
=
max
(
1
,
env_size
);
status
=
NtAllocateVirtualMemory
(
NtCurrentProcess
(),
&
ptr
,
0
,
&
alloc_size
,
MEM_COMMIT
,
PAGE_READWRITE
);
if
(
status
!=
STATUS_SUCCESS
)
goto
done
;
memcpy
(
ptr
,
(
char
*
)
info
+
info_size
,
env_size
);
params
->
Environment
=
ptr
;
done:
RtlFreeHeap
(
GetProcessHeap
(),
0
,
info
);
return
status
;
}
#ifdef __linux__
#ifdef HAVE_ELF_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment