Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
b1b4f5d4
Commit
b1b4f5d4
authored
7 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
server: Store the mapped file descriptor in the memory view.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
26314a56
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
server/debugger.c
+4
-5
4 additions, 5 deletions
server/debugger.c
server/file.h
+1
-1
1 addition, 1 deletion
server/file.h
server/mapping.c
+8
-3
8 additions, 3 deletions
server/mapping.c
with
13 additions
and
9 deletions
server/debugger.c
+
4
−
5
View file @
b1b4f5d4
...
...
@@ -169,9 +169,9 @@ static int fill_create_process_event( struct debug_event *event, const void *arg
event
->
data
.
create_process
.
name
=
exe_module
->
name
;
event
->
data
.
create_process
.
unicode
=
1
;
if
(
exe_module
->
mapping
)
/* the doc says write access too, but this doesn't seem a good idea */
event
->
data
.
create_process
.
file
=
open_mapping_file
(
debugger
,
exe_module
->
mapping
,
GENERIC_READ
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
);
/* the doc says write access too, but this doesn't seem a good idea */
event
->
data
.
create_process
.
file
=
open_mapping_file
(
debugger
,
exe_module
->
base
,
GENERIC_READ
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
);
return
1
;
}
...
...
@@ -200,8 +200,7 @@ static int fill_load_dll_event( struct debug_event *event, const void *arg )
event
->
data
.
load_dll
.
dbg_size
=
dll
->
dbg_size
;
event
->
data
.
load_dll
.
name
=
dll
->
name
;
event
->
data
.
load_dll
.
unicode
=
1
;
if
(
dll
->
mapping
)
event
->
data
.
load_dll
.
handle
=
open_mapping_file
(
debugger
,
dll
->
mapping
,
GENERIC_READ
,
event
->
data
.
load_dll
.
handle
=
open_mapping_file
(
debugger
,
dll
->
base
,
GENERIC_READ
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
);
return
1
;
}
...
...
This diff is collapsed.
Click to expand it.
server/file.h
+
1
−
1
View file @
b1b4f5d4
...
...
@@ -147,7 +147,7 @@ extern mode_t sd_to_mode( const struct security_descriptor *sd, const SID *owner
extern
struct
mapping
*
get_mapping_obj
(
struct
process
*
process
,
obj_handle_t
handle
,
unsigned
int
access
);
extern
obj_handle_t
open_mapping_file
(
struct
process
*
process
,
struct
mapping
*
mapping
,
extern
obj_handle_t
open_mapping_file
(
struct
process
*
process
,
client_ptr_t
base
,
unsigned
int
access
,
unsigned
int
sharing
);
extern
struct
mapping
*
grab_mapping_unless_removable
(
struct
mapping
*
mapping
);
extern
void
free_mapped_views
(
struct
process
*
process
);
...
...
This diff is collapsed.
Click to expand it.
server/mapping.c
+
8
−
3
View file @
b1b4f5d4
...
...
@@ -85,6 +85,7 @@ static const struct object_ops ranges_ops =
struct
memory_view
{
struct
list
entry
;
/* entry in per-process view list */
struct
fd
*
fd
;
/* fd for mapped file */
struct
ranges
*
committed
;
/* list of committed ranges in this mapping */
unsigned
int
flags
;
/* SEC_* flags */
client_ptr_t
base
;
/* view base address (in process addr space) */
...
...
@@ -259,6 +260,7 @@ static struct memory_view *find_mapped_view( struct process *process, client_ptr
static
void
free_memory_view
(
struct
memory_view
*
view
)
{
if
(
view
->
fd
)
release_object
(
view
->
fd
);
if
(
view
->
committed
)
release_object
(
view
->
committed
);
list_remove
(
&
view
->
entry
);
free
(
view
);
...
...
@@ -731,13 +733,15 @@ struct mapping *get_mapping_obj( struct process *process, obj_handle_t handle, u
}
/* open a new file handle to the file backing the mapping */
obj_handle_t
open_mapping_file
(
struct
process
*
process
,
struct
mapping
*
mapping
,
obj_handle_t
open_mapping_file
(
struct
process
*
process
,
client_ptr_t
base
,
unsigned
int
access
,
unsigned
int
sharing
)
{
obj_handle_t
handle
;
struct
file
*
file
=
create_file_for_fd_obj
(
mapping
->
fd
,
access
,
sharing
);
struct
memory_view
*
view
=
find_mapped_view
(
process
,
base
);
struct
file
*
file
;
if
(
!
file
)
return
0
;
if
(
!
view
||
!
view
->
fd
)
return
0
;
if
(
!
(
file
=
create_file_for_fd_obj
(
view
->
fd
,
access
,
sharing
)))
return
0
;
handle
=
alloc_handle
(
process
,
file
,
access
,
0
);
release_object
(
file
);
return
handle
;
...
...
@@ -925,6 +929,7 @@ DECL_HANDLER(map_view)
view
->
size
=
req
->
size
;
view
->
start
=
req
->
start
;
view
->
flags
=
mapping
->
flags
;
view
->
fd
=
!
is_fd_removable
(
mapping
->
fd
)
?
(
struct
fd
*
)
grab_object
(
mapping
->
fd
)
:
NULL
;
view
->
committed
=
mapping
->
committed
?
(
struct
ranges
*
)
grab_object
(
mapping
->
committed
)
:
NULL
;
list_add_tail
(
&
current
->
process
->
views
,
&
view
->
entry
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment