Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
2cf868c0
Commit
2cf868c0
authored
Dec 30, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Move ldt_copy to the init_process_done request and make it a client_ptr_t.
parent
1d2d0d56
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
32 additions
and
20 deletions
+32
-20
server.c
dlls/ntdll/server.c
+6
-4
server_protocol.h
include/wine/server_protocol.h
+3
-2
mach.c
server/mach.c
+2
-3
process.c
server/process.c
+3
-1
process.h
server/process.h
+1
-1
procfs.c
server/procfs.c
+8
-3
protocol.def
server/protocol.def
+2
-1
ptrace.c
server/ptrace.c
+2
-2
thread.c
server/thread.c
+1
-2
trace.c
server/trace.c
+4
-1
No files found.
dlls/ntdll/server.c
View file @
2cf868c0
...
...
@@ -993,9 +993,12 @@ NTSTATUS server_init_process_done(void)
/* Signal the parent process to continue */
SERVER_START_REQ
(
init_process_done
)
{
req
->
module
=
wine_server_client_ptr
(
peb
->
ImageBaseAddress
);
req
->
entry
=
(
char
*
)
peb
->
ImageBaseAddress
+
nt
->
OptionalHeader
.
AddressOfEntryPoint
;
req
->
gui
=
(
nt
->
OptionalHeader
.
Subsystem
!=
IMAGE_SUBSYSTEM_WINDOWS_CUI
);
req
->
module
=
wine_server_client_ptr
(
peb
->
ImageBaseAddress
);
#ifdef __i386__
req
->
ldt_copy
=
wine_server_client_ptr
(
&
wine_ldt_copy
);
#endif
req
->
entry
=
(
char
*
)
peb
->
ImageBaseAddress
+
nt
->
OptionalHeader
.
AddressOfEntryPoint
;
req
->
gui
=
(
nt
->
OptionalHeader
.
Subsystem
!=
IMAGE_SUBSYSTEM_WINDOWS_CUI
);
status
=
wine_server_call
(
req
);
}
SERVER_END_REQ
;
...
...
@@ -1048,7 +1051,6 @@ size_t server_init_thread( int unix_pid, int unix_tid, void *entry_point )
req
->
teb
=
NtCurrentTeb
();
req
->
peb
=
NtCurrentTeb
()
->
Peb
;
req
->
entry
=
entry_point
;
req
->
ldt_copy
=
&
wine_ldt_copy
;
req
->
reply_fd
=
reply_pipe
[
1
];
req
->
wait_fd
=
ntdll_get_thread_data
()
->
wait_fd
[
1
];
req
->
debug_level
=
(
TRACE_ON
(
server
)
!=
0
);
...
...
include/wine/server_protocol.h
View file @
2cf868c0
...
...
@@ -542,6 +542,7 @@ struct init_process_done_request
struct
request_header
__header
;
int
gui
;
mod_handle_t
module
;
client_ptr_t
ldt_copy
;
void
*
entry
;
};
struct
init_process_done_reply
...
...
@@ -560,7 +561,7 @@ struct init_thread_request
void
*
teb
;
void
*
peb
;
void
*
entry
;
void
*
ldt_copy
;
int
unused
;
int
reply_fd
;
int
wait_fd
;
};
...
...
@@ -5061,6 +5062,6 @@ union generic_reply
struct
set_window_layered_info_reply
set_window_layered_info_reply
;
};
#define SERVER_PROTOCOL_VERSION 37
3
#define SERVER_PROTOCOL_VERSION 37
4
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
server/mach.c
View file @
2cf868c0
...
...
@@ -446,9 +446,8 @@ void get_selector_entry( struct thread *thread, int entry, unsigned int *base,
if
((
ret
=
task_suspend
(
process_port
))
==
KERN_SUCCESS
)
{
void
*
ptr
=
process
->
ldt_copy
;
vm_offset_t
offset
=
(
unsigned
long
)
ptr
%
page_size
;
vm_address_t
aligned_address
=
(
vm_address_t
)((
char
*
)
ptr
-
offset
);
vm_offset_t
offset
=
process
->
ldt_copy
%
page_size
;
vm_address_t
aligned_address
=
(
vm_address_t
)(
process
->
ldt_copy
-
offset
);
vm_size_t
aligned_size
=
(
total_size
+
offset
+
page_size
-
1
)
/
page_size
*
page_size
;
ret
=
vm_read
(
process_port
,
aligned_address
,
aligned_size
,
&
data
,
&
bytes_read
);
...
...
server/process.c
View file @
2cf868c0
...
...
@@ -332,7 +332,7 @@ struct thread *create_process( int fd, struct thread *parent_thread, int inherit
process
->
idle_event
=
NULL
;
process
->
queue
=
NULL
;
process
->
peb
=
NULL
;
process
->
ldt_copy
=
NULL
;
process
->
ldt_copy
=
0
;
process
->
winstation
=
0
;
process
->
desktop
=
0
;
process
->
token
=
NULL
;
...
...
@@ -1018,6 +1018,8 @@ DECL_HANDLER(init_process_done)
list_remove
(
&
dll
->
entry
);
list_add_head
(
&
process
->
dlls
,
&
dll
->
entry
);
process
->
ldt_copy
=
req
->
ldt_copy
;
generate_startup_debug_events
(
process
,
req
->
entry
);
set_process_startup_state
(
process
,
STARTUP_DONE
);
...
...
server/process.h
View file @
2cf868c0
...
...
@@ -80,7 +80,7 @@ struct process
struct
token
*
token
;
/* security token associated with this process */
struct
list
dlls
;
/* list of loaded dlls */
void
*
peb
;
/* PEB address in client address space */
void
*
ldt_copy
;
/* pointer to LDT copy in client addr space */
client_ptr_t
ldt_copy
;
/* pointer to LDT copy in client addr space */
unsigned
int
trace_data
;
/* opaque data used by the process tracing mechanism */
};
...
...
server/procfs.c
View file @
2cf868c0
...
...
@@ -174,10 +174,15 @@ void get_selector_entry( struct thread *thread, int entry, unsigned int *base,
unsigned
int
*
limit
,
unsigned
char
*
flags
)
{
ssize_t
ret
;
off_t
pos
=
(
off_t
)
thread
->
process
->
ldt_copy
;
int
fd
=
open_proc_as
(
thread
->
process
,
O_RDONLY
)
;
off_t
pos
=
thread
->
process
->
ldt_copy
;
int
fd
;
if
(
fd
==
-
1
)
return
;
if
(
!
pos
)
{
set_error
(
STATUS_ACCESS_DENIED
);
return
0
;
}
if
((
fd
=
open_proc_as
(
thread
->
process
,
O_RDONLY
))
==
-
1
)
return
;
ret
=
pread
(
fd
,
base
,
sizeof
(
*
base
),
pos
+
entry
*
sizeof
(
int
)
);
if
(
ret
!=
sizeof
(
*
base
))
goto
error
;
...
...
server/protocol.def
View file @
2cf868c0
...
...
@@ -536,6 +536,7 @@ typedef union
@REQ(init_process_done)
int gui; /* is it a GUI process? */
mod_handle_t module; /* main module base address */
client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
void* entry; /* process entry point */
@END
...
...
@@ -548,7 +549,7 @@ typedef union
void* teb; /* TEB of new thread (in thread address space) */
void* peb; /* address of PEB (in thread address space) */
void* entry; /* thread entry point (in thread address space) */
void* ldt_copy; /* address of LDT copy (in thread address space)
*/
int unused; /* was: ldt_copy
*/
int reply_fd; /* fd for reply pipe */
int wait_fd; /* fd for blocking calls pipe */
@REPLY
...
...
server/ptrace.c
View file @
2cf868c0
...
...
@@ -505,10 +505,10 @@ void get_selector_entry( struct thread *thread, int entry, unsigned int *base,
if
(
suspend_for_ptrace
(
thread
))
{
unsigned
char
flags_buf
[
4
];
int
*
addr
=
(
int
*
)
thread
->
process
->
ldt_copy
+
entry
;
int
*
addr
=
(
int
*
)
(
unsigned
long
)
thread
->
process
->
ldt_copy
+
entry
;
if
(
read_thread_int
(
thread
,
addr
,
(
int
*
)
base
)
==
-
1
)
goto
done
;
if
(
read_thread_int
(
thread
,
addr
+
8192
,
(
int
*
)
limit
)
==
-
1
)
goto
done
;
addr
=
(
int
*
)
thread
->
process
->
ldt_copy
+
2
*
8192
+
(
entry
>>
2
);
addr
=
(
int
*
)
(
unsigned
long
)
thread
->
process
->
ldt_copy
+
2
*
8192
+
(
entry
>>
2
);
if
(
read_thread_int
(
thread
,
addr
,
(
int
*
)
flags_buf
)
==
-
1
)
goto
done
;
*
flags
=
flags_buf
[
entry
&
3
];
done:
...
...
server/thread.c
View file @
2cf868c0
...
...
@@ -1032,7 +1032,7 @@ DECL_HANDLER(init_thread)
if
(
!
(
current
->
wait_fd
=
create_anonymous_fd
(
&
thread_fd_ops
,
wait_fd
,
&
current
->
obj
,
0
)))
return
;
if
(
!
is_valid_address
(
req
->
teb
)
||
!
is_valid_address
(
req
->
peb
)
||
!
is_valid_address
(
req
->
ldt_copy
)
)
if
(
!
is_valid_address
(
req
->
teb
)
||
!
is_valid_address
(
req
->
peb
))
{
set_error
(
STATUS_INVALID_PARAMETER
);
return
;
...
...
@@ -1046,7 +1046,6 @@ DECL_HANDLER(init_thread)
{
process
->
unix_pid
=
current
->
unix_pid
;
process
->
peb
=
req
->
peb
;
process
->
ldt_copy
=
req
->
ldt_copy
;
reply
->
info_size
=
init_process
(
current
);
}
else
...
...
server/trace.c
View file @
2cf868c0
...
...
@@ -971,6 +971,9 @@ static void dump_init_process_done_request( const struct init_process_done_reque
fprintf
(
stderr
,
" module="
);
dump_uint64
(
&
req
->
module
);
fprintf
(
stderr
,
","
);
fprintf
(
stderr
,
" ldt_copy="
);
dump_uint64
(
&
req
->
ldt_copy
);
fprintf
(
stderr
,
","
);
fprintf
(
stderr
,
" entry=%p"
,
req
->
entry
);
}
...
...
@@ -982,7 +985,7 @@ static void dump_init_thread_request( const struct init_thread_request *req )
fprintf
(
stderr
,
" teb=%p,"
,
req
->
teb
);
fprintf
(
stderr
,
" peb=%p,"
,
req
->
peb
);
fprintf
(
stderr
,
" entry=%p,"
,
req
->
entry
);
fprintf
(
stderr
,
"
ldt_copy=%p,"
,
req
->
ldt_copy
);
fprintf
(
stderr
,
"
unused=%d,"
,
req
->
unused
);
fprintf
(
stderr
,
" reply_fd=%d,"
,
req
->
reply_fd
);
fprintf
(
stderr
,
" wait_fd=%d"
,
req
->
wait_fd
);
}
...
...
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