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
4aab1612
Commit
4aab1612
authored
Feb 21, 2007
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Added helper to map a Unicode file.
parent
3565d93e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
16 deletions
+22
-16
elf_module.c
dlls/dbghelp/elf_module.c
+22
-16
No files found.
dlls/dbghelp/elf_module.c
View file @
4aab1612
...
@@ -192,7 +192,7 @@ static inline unsigned elf_get_map_size(struct elf_file_map* fmap, int sidx)
...
@@ -192,7 +192,7 @@ static inline unsigned elf_get_map_size(struct elf_file_map* fmap, int sidx)
*
*
* Maps an ELF file into memory (and checks it's a real ELF file)
* Maps an ELF file into memory (and checks it's a real ELF file)
*/
*/
static
BOOL
elf_map_file
(
const
char
*
filename
,
struct
elf_file_map
*
fmap
)
static
BOOL
elf_map_file
A
(
const
char
*
filename
,
struct
elf_file_map
*
fmap
)
{
{
static
const
BYTE
elf_signature
[
4
]
=
{
ELFMAG0
,
ELFMAG1
,
ELFMAG2
,
ELFMAG3
};
static
const
BYTE
elf_signature
[
4
]
=
{
ELFMAG0
,
ELFMAG1
,
ELFMAG2
,
ELFMAG3
};
struct
stat
statbuf
;
struct
stat
statbuf
;
...
@@ -248,6 +248,20 @@ static BOOL elf_map_file(const char* filename, struct elf_file_map* fmap)
...
@@ -248,6 +248,20 @@ static BOOL elf_map_file(const char* filename, struct elf_file_map* fmap)
return
TRUE
;
return
TRUE
;
}
}
static
BOOL
elf_map_file
(
const
WCHAR
*
filenameW
,
struct
elf_file_map
*
fmap
)
{
char
*
filename
;
unsigned
len
;
BOOL
ret
;
len
=
WideCharToMultiByte
(
CP_UNIXCP
,
0
,
filenameW
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
if
(
!
(
filename
=
HeapAlloc
(
GetProcessHeap
(),
0
,
len
)))
return
FALSE
;
WideCharToMultiByte
(
CP_UNIXCP
,
0
,
filenameW
,
-
1
,
filename
,
len
,
NULL
,
NULL
);
ret
=
elf_map_fileA
(
filename
,
fmap
);
HeapFree
(
GetProcessHeap
(),
0
,
filename
);
return
ret
;
}
/******************************************************************
/******************************************************************
* elf_unmap_file
* elf_unmap_file
*
*
...
@@ -824,21 +838,21 @@ static char* elf_locate_debug_link(const char* filename, const WCHAR* loaded_fil
...
@@ -824,21 +838,21 @@ static char* elf_locate_debug_link(const char* filename, const WCHAR* loaded_fil
/* testing execdir/filename */
/* testing execdir/filename */
strcpy
(
slash
,
filename
);
strcpy
(
slash
,
filename
);
if
(
elf_map_file
(
p
,
fmap_link
))
goto
found
;
if
(
elf_map_file
A
(
p
,
fmap_link
))
goto
found
;
/* testing execdir/.debug/filename */
/* testing execdir/.debug/filename */
sprintf
(
slash
,
".debug/%s"
,
filename
);
sprintf
(
slash
,
".debug/%s"
,
filename
);
if
(
elf_map_file
(
p
,
fmap_link
))
goto
found
;
if
(
elf_map_file
A
(
p
,
fmap_link
))
goto
found
;
/* testing globaldebugdir/execdir/filename */
/* testing globaldebugdir/execdir/filename */
memmove
(
p
+
globalDebugDirLen
,
p
,
slash
-
p
);
memmove
(
p
+
globalDebugDirLen
,
p
,
slash
-
p
);
memcpy
(
p
,
globalDebugDir
,
globalDebugDirLen
);
memcpy
(
p
,
globalDebugDir
,
globalDebugDirLen
);
slash
+=
globalDebugDirLen
;
slash
+=
globalDebugDirLen
;
strcpy
(
slash
,
filename
);
strcpy
(
slash
,
filename
);
if
(
elf_map_file
(
p
,
fmap_link
))
goto
found
;
if
(
elf_map_file
A
(
p
,
fmap_link
))
goto
found
;
strcpy
(
p
,
filename
);
strcpy
(
p
,
filename
);
if
(
elf_map_file
(
p
,
fmap_link
))
goto
found
;
if
(
elf_map_file
A
(
p
,
fmap_link
))
goto
found
;
HeapFree
(
GetProcessHeap
(),
0
,
p
);
HeapFree
(
GetProcessHeap
(),
0
,
p
);
...
@@ -1108,12 +1122,8 @@ BOOL elf_load_debug_info(struct module* module, struct elf_file_map* fmap)
...
@@ -1108,12 +1122,8 @@ BOOL elf_load_debug_info(struct module* module, struct elf_file_map* fmap)
if
(
!
fmap
)
if
(
!
fmap
)
{
{
char
LoadedImageName
[
MAX_PATH
];
fmap
=
&
my_fmap
;
fmap
=
&
my_fmap
;
WideCharToMultiByte
(
CP_UNIXCP
,
0
,
module
->
module
.
LoadedImageName
,
-
1
,
ret
=
elf_map_file
(
module
->
module
.
LoadedImageName
,
fmap
);
LoadedImageName
,
MAX_PATH
,
NULL
,
NULL
);
ret
=
elf_map_file
(
LoadedImageName
,
fmap
);
}
}
if
(
ret
)
if
(
ret
)
ret
=
elf_load_debug_info_from_map
(
module
,
fmap
,
&
pool
,
&
ht_symtab
);
ret
=
elf_load_debug_info_from_map
(
module
,
fmap
,
&
pool
,
&
ht_symtab
);
...
@@ -1132,10 +1142,8 @@ BOOL elf_fetch_file_info(const WCHAR* name, DWORD* base,
...
@@ -1132,10 +1142,8 @@ BOOL elf_fetch_file_info(const WCHAR* name, DWORD* base,
DWORD
*
size
,
DWORD
*
checksum
)
DWORD
*
size
,
DWORD
*
checksum
)
{
{
struct
elf_file_map
fmap
;
struct
elf_file_map
fmap
;
char
tmp
[
MAX_PATH
];
WideCharToMultiByte
(
CP_UNIXCP
,
0
,
name
,
-
1
,
tmp
,
sizeof
(
tmp
),
0
,
0
);
if
(
!
elf_map_file
(
name
,
&
fmap
))
return
FALSE
;
if
(
!
elf_map_file
(
tmp
,
&
fmap
))
return
FALSE
;
if
(
base
)
*
base
=
fmap
.
elf_start
;
if
(
base
)
*
base
=
fmap
.
elf_start
;
*
size
=
fmap
.
elf_size
;
*
size
=
fmap
.
elf_size
;
*
checksum
=
calc_crc32
(
&
fmap
);
*
checksum
=
calc_crc32
(
&
fmap
);
...
@@ -1160,12 +1168,10 @@ static BOOL elf_load_file(struct process* pcs, const WCHAR* filename,
...
@@ -1160,12 +1168,10 @@ static BOOL elf_load_file(struct process* pcs, const WCHAR* filename,
BOOL
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
struct
elf_file_map
fmap
;
struct
elf_file_map
fmap
;
int
i
;
int
i
;
char
tmp
[
MAX_PATH
];
TRACE
(
"Processing elf file '%s' at %08lx
\n
"
,
debugstr_w
(
filename
),
load_offset
);
TRACE
(
"Processing elf file '%s' at %08lx
\n
"
,
debugstr_w
(
filename
),
load_offset
);
WideCharToMultiByte
(
CP_UNIXCP
,
0
,
filename
,
-
1
,
tmp
,
sizeof
(
tmp
),
NULL
,
NULL
);
if
(
!
elf_map_file
(
filename
,
&
fmap
))
goto
leave
;
if
(
!
elf_map_file
(
tmp
,
&
fmap
))
goto
leave
;
/* Next, we need to find a few of the internal ELF headers within
/* Next, we need to find a few of the internal ELF headers within
* this thing. We need the main executable header, and the section
* this thing. We need the main executable header, and the section
...
...
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