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
cd7e8659
Commit
cd7e8659
authored
Feb 08, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Initial support for dumping PE dynamic relocations.
parent
fc6af061
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
214 additions
and
6 deletions
+214
-6
winnt.h
include/winnt.h
+59
-0
main.c
tools/winedump/main.c
+1
-1
pe.c
tools/winedump/pe.c
+154
-5
No files found.
include/winnt.h
View file @
cd7e8659
...
...
@@ -3723,6 +3723,65 @@ typedef IMAGE_LOAD_CONFIG_DIRECTORY32 IMAGE_LOAD_CONFIG_DIRECTORY;
typedef
PIMAGE_LOAD_CONFIG_DIRECTORY32
PIMAGE_LOAD_CONFIG_DIRECTORY
;
#endif
typedef
struct
_IMAGE_DYNAMIC_RELOCATION_TABLE
{
DWORD
Version
;
DWORD
Size
;
}
IMAGE_DYNAMIC_RELOCATION_TABLE
,
*
PIMAGE_DYNAMIC_RELOCATION_TABLE
;
#include <pshpack1.h>
typedef
struct
_IMAGE_DYNAMIC_RELOCATION32
{
DWORD
Symbol
;
DWORD
BaseRelocSize
;
}
IMAGE_DYNAMIC_RELOCATION32
,
*
PIMAGE_DYNAMIC_RELOCATION32
;
typedef
struct
_IMAGE_DYNAMIC_RELOCATION64
{
ULONGLONG
Symbol
;
DWORD
BaseRelocSize
;
}
IMAGE_DYNAMIC_RELOCATION64
,
*
PIMAGE_DYNAMIC_RELOCATION64
;
typedef
struct
_IMAGE_DYNAMIC_RELOCATION32_V2
{
DWORD
HeaderSize
;
DWORD
FixupInfoSize
;
DWORD
Symbol
;
DWORD
SymbolGroup
;
DWORD
Flags
;
}
IMAGE_DYNAMIC_RELOCATION32_V2
,
*
PIMAGE_DYNAMIC_RELOCATION32_V2
;
typedef
struct
_IMAGE_DYNAMIC_RELOCATION64_V2
{
DWORD
HeaderSize
;
DWORD
FixupInfoSize
;
ULONGLONG
Symbol
;
DWORD
SymbolGroup
;
DWORD
Flags
;
}
IMAGE_DYNAMIC_RELOCATION64_V2
,
*
PIMAGE_DYNAMIC_RELOCATION64_V2
;
#include <poppack.h>
#ifdef _WIN64
typedef
IMAGE_DYNAMIC_RELOCATION64
IMAGE_DYNAMIC_RELOCATION
;
typedef
PIMAGE_DYNAMIC_RELOCATION64
PIMAGE_DYNAMIC_RELOCATION
;
typedef
IMAGE_DYNAMIC_RELOCATION64_V2
IMAGE_DYNAMIC_RELOCATION_V2
;
typedef
PIMAGE_DYNAMIC_RELOCATION64_V2
PIMAGE_DYNAMIC_RELOCATION_V2
;
#else
typedef
IMAGE_DYNAMIC_RELOCATION32
IMAGE_DYNAMIC_RELOCATION
;
typedef
PIMAGE_DYNAMIC_RELOCATION32
PIMAGE_DYNAMIC_RELOCATION
;
typedef
IMAGE_DYNAMIC_RELOCATION32_V2
IMAGE_DYNAMIC_RELOCATION_V2
;
typedef
PIMAGE_DYNAMIC_RELOCATION32_V2
PIMAGE_DYNAMIC_RELOCATION_V2
;
#endif
#define IMAGE_DYNAMIC_RELOCATION_GUARD_RF_PROLOGUE 1
#define IMAGE_DYNAMIC_RELOCATION_GUARD_RF_EPILOGUE 2
#define IMAGE_DYNAMIC_RELOCATION_GUARD_IMPORT_CONTROL_TRANSFER 3
#define IMAGE_DYNAMIC_RELOCATION_GUARD_INDIR_CONTROL_TRANSFER 4
#define IMAGE_DYNAMIC_RELOCATION_GUARD_SWITCHTABLE_BRANCH 5
#define IMAGE_DYNAMIC_RELOCATION_ARM64X 6
typedef
struct
_IMAGE_FUNCTION_ENTRY
{
DWORD
StartingAddress
;
DWORD
EndingAddress
;
...
...
tools/winedump/main.c
View file @
cd7e8659
...
...
@@ -226,7 +226,7 @@ static const struct my_option option_table[] = {
{
"-j"
,
DUMP
,
1
,
do_dumpsect
,
"-j <sect_name> Dump the content of section 'sect_name'
\n
"
" (use '-j sect_name,sect_name2' to dump several sections)
\n
"
" for NE: export, resource
\n
"
" for PE: import, export, debug, resource, tls, loadcfg, clr, reloc, except, apiset
\n
"
" for PE: import, export, debug, resource, tls, loadcfg, clr, reloc,
dynreloc,
except, apiset
\n
"
" for PDB: PDB, TPI, DBI, IPI, public, image
\n
"
" and suboptions: hash (PDB, TPI, TPI, DBI, public) and line (DBI)"
},
{
"-t"
,
DUMP
,
0
,
do_symtable
,
"-t Dump symbol table"
},
...
...
tools/winedump/pe.c
View file @
cd7e8659
...
...
@@ -176,6 +176,17 @@ static ULONGLONG get_hybrid_metadata(void)
}
}
static
inline
const
char
*
longlong_str
(
ULONGLONG
value
)
{
static
char
buffer
[
20
];
if
(
sizeof
(
value
)
>
sizeof
(
unsigned
long
)
&&
value
>>
32
)
sprintf
(
buffer
,
"%lx%08lx"
,
(
unsigned
long
)(
value
>>
32
),
(
unsigned
long
)
value
);
else
sprintf
(
buffer
,
"%lx"
,
(
unsigned
long
)
value
);
return
buffer
;
}
static
inline
void
print_word
(
const
char
*
title
,
WORD
value
)
{
printf
(
" %-34s 0x%-4X %u
\n
"
,
title
,
value
,
value
);
...
...
@@ -188,11 +199,7 @@ static inline void print_dword(const char *title, UINT value)
static
inline
void
print_longlong
(
const
char
*
title
,
ULONGLONG
value
)
{
printf
(
" %-34s 0x"
,
title
);
if
(
sizeof
(
value
)
>
sizeof
(
unsigned
long
)
&&
value
>>
32
)
printf
(
"%lx%08lx
\n
"
,
(
unsigned
long
)(
value
>>
32
),
(
unsigned
long
)
value
);
else
printf
(
"%lx
\n
"
,
(
unsigned
long
)
value
);
printf
(
" %-34s 0x%s
\n
"
,
title
,
longlong_str
(
value
));
}
static
inline
void
print_ver
(
const
char
*
title
,
BYTE
major
,
BYTE
minor
)
...
...
@@ -2060,6 +2067,146 @@ static void dump_dir_clr_header(void)
printf
(
"
\n
"
);
}
static
void
dump_dynamic_relocs_arm64x
(
const
IMAGE_BASE_RELOCATION
*
base_reloc
,
unsigned
int
size
)
{
unsigned
int
i
;
const
IMAGE_BASE_RELOCATION
*
base_end
=
(
const
IMAGE_BASE_RELOCATION
*
)((
const
char
*
)
base_reloc
+
size
);
printf
(
"Relocations ARM64X
\n
"
);
while
(
base_reloc
<
base_end
-
1
&&
base_reloc
->
SizeOfBlock
)
{
const
USHORT
*
rel
=
(
const
USHORT
*
)(
base_reloc
+
1
);
const
USHORT
*
end
=
(
const
USHORT
*
)
base_reloc
+
base_reloc
->
SizeOfBlock
/
sizeof
(
USHORT
);
printf
(
" Page %x
\n
"
,
(
UINT
)
base_reloc
->
VirtualAddress
);
while
(
rel
<
end
&&
*
rel
)
{
USHORT
offset
=
*
rel
&
0xfff
;
USHORT
type
=
(
*
rel
>>
12
)
&
3
;
USHORT
arg
=
*
rel
>>
14
;
rel
++
;
switch
(
type
)
{
case
0
:
/* zero-fill */
printf
(
" off %04x zero-fill %u bytes
\n
"
,
offset
,
1
<<
arg
);
break
;
case
1
:
/* set value */
printf
(
" off %04x set %u bytes value "
,
offset
,
1
<<
arg
);
for
(
i
=
(
1
<<
arg
)
/
sizeof
(
USHORT
);
i
>
0
;
i
--
)
printf
(
"%04x"
,
rel
[
i
-
1
]
);
rel
+=
(
1
<<
arg
)
/
sizeof
(
USHORT
);
printf
(
"
\n
"
);
break
;
case
2
:
/* add value */
printf
(
" off %04x add offset "
,
offset
);
if
(
arg
&
1
)
printf
(
"-"
);
printf
(
"%08x
\n
"
,
(
UINT
)
*
rel
++
*
((
arg
&
2
)
?
8
:
4
)
);
break
;
default:
printf
(
" off %04x unknown (arg %x)
\n
"
,
offset
,
arg
);
break
;
}
}
base_reloc
=
(
const
IMAGE_BASE_RELOCATION
*
)
end
;
}
}
static
void
dump_dynamic_relocs
(
const
char
*
ptr
,
unsigned
int
size
,
ULONGLONG
symbol
)
{
switch
(
symbol
)
{
case
IMAGE_DYNAMIC_RELOCATION_GUARD_RF_PROLOGUE
:
printf
(
"Relocations GUARD_RF_PROLOGUE
\n
"
);
break
;
case
IMAGE_DYNAMIC_RELOCATION_GUARD_RF_EPILOGUE
:
printf
(
"Relocations GUARD_RF_EPILOGUE
\n
"
);
break
;
case
IMAGE_DYNAMIC_RELOCATION_GUARD_IMPORT_CONTROL_TRANSFER
:
printf
(
"Relocations GUARD_IMPORT_CONTROL_TRANSFER
\n
"
);
break
;
case
IMAGE_DYNAMIC_RELOCATION_GUARD_INDIR_CONTROL_TRANSFER
:
printf
(
"Relocations GUARD_INDIR_CONTROL_TRANSFER
\n
"
);
break
;
case
IMAGE_DYNAMIC_RELOCATION_GUARD_SWITCHTABLE_BRANCH
:
printf
(
"Relocations GUARD_SWITCHTABLE_BRANCH
\n
"
);
break
;
case
IMAGE_DYNAMIC_RELOCATION_ARM64X
:
dump_dynamic_relocs_arm64x
(
(
const
IMAGE_BASE_RELOCATION
*
)
ptr
,
size
);
break
;
default:
printf
(
"Unknown relocation symbol %s
\n
"
,
longlong_str
(
symbol
)
);
break
;
}
}
static
void
dump_dir_dynamic_reloc
(
void
)
{
unsigned
int
size
,
section
,
offset
;
const
char
*
ptr
,
*
end
;
const
IMAGE_SECTION_HEADER
*
sec
;
const
IMAGE_DYNAMIC_RELOCATION_TABLE
*
table
;
if
(
PE_nt_headers
->
OptionalHeader
.
Magic
==
IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
{
const
IMAGE_LOAD_CONFIG_DIRECTORY64
*
cfg
=
get_dir_and_size
(
IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG
,
&
size
);
if
(
!
cfg
)
return
;
size
=
min
(
size
,
cfg
->
Size
);
if
(
size
<=
offsetof
(
IMAGE_LOAD_CONFIG_DIRECTORY64
,
DynamicValueRelocTableSection
))
return
;
offset
=
cfg
->
DynamicValueRelocTableOffset
;
section
=
cfg
->
DynamicValueRelocTableSection
;
}
else
{
const
IMAGE_LOAD_CONFIG_DIRECTORY32
*
cfg
=
get_dir_and_size
(
IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG
,
&
size
);
if
(
!
cfg
)
return
;
size
=
min
(
size
,
cfg
->
Size
);
if
(
size
<=
offsetof
(
IMAGE_LOAD_CONFIG_DIRECTORY32
,
DynamicValueRelocTableSection
))
return
;
offset
=
cfg
->
DynamicValueRelocTableOffset
;
section
=
cfg
->
DynamicValueRelocTableSection
;
}
if
(
!
section
||
section
>
PE_nt_headers
->
FileHeader
.
NumberOfSections
)
return
;
sec
=
IMAGE_FIRST_SECTION
(
PE_nt_headers
)
+
section
-
1
;
if
(
offset
>=
sec
->
SizeOfRawData
)
return
;
table
=
PRD
(
sec
->
PointerToRawData
+
offset
,
sizeof
(
*
table
)
);
printf
(
"Dynamic relocations (version %u)
\n\n
"
,
(
UINT
)
table
->
Version
);
ptr
=
(
const
char
*
)(
table
+
1
);
end
=
ptr
+
table
->
Size
;
while
(
ptr
<
end
)
{
switch
(
table
->
Version
)
{
case
1
:
if
(
PE_nt_headers
->
OptionalHeader
.
Magic
==
IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
{
const
IMAGE_DYNAMIC_RELOCATION64
*
reloc
=
(
const
IMAGE_DYNAMIC_RELOCATION64
*
)
ptr
;
dump_dynamic_relocs
(
(
const
char
*
)(
reloc
+
1
),
reloc
->
BaseRelocSize
,
reloc
->
Symbol
);
ptr
+=
sizeof
(
*
reloc
)
+
reloc
->
BaseRelocSize
;
}
else
{
const
IMAGE_DYNAMIC_RELOCATION32
*
reloc
=
(
const
IMAGE_DYNAMIC_RELOCATION32
*
)
ptr
;
dump_dynamic_relocs
(
(
const
char
*
)(
reloc
+
1
),
reloc
->
BaseRelocSize
,
reloc
->
Symbol
);
ptr
+=
sizeof
(
*
reloc
)
+
reloc
->
BaseRelocSize
;
}
break
;
case
2
:
if
(
PE_nt_headers
->
OptionalHeader
.
Magic
==
IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
{
const
IMAGE_DYNAMIC_RELOCATION64_V2
*
reloc
=
(
const
IMAGE_DYNAMIC_RELOCATION64_V2
*
)
ptr
;
dump_dynamic_relocs
(
ptr
+
reloc
->
HeaderSize
,
reloc
->
FixupInfoSize
,
reloc
->
Symbol
);
ptr
+=
reloc
->
HeaderSize
+
reloc
->
FixupInfoSize
;
}
else
{
const
IMAGE_DYNAMIC_RELOCATION32_V2
*
reloc
=
(
const
IMAGE_DYNAMIC_RELOCATION32_V2
*
)
ptr
;
dump_dynamic_relocs
(
ptr
+
reloc
->
HeaderSize
,
reloc
->
FixupInfoSize
,
reloc
->
Symbol
);
ptr
+=
reloc
->
HeaderSize
+
reloc
->
FixupInfoSize
;
}
break
;
}
}
printf
(
"
\n
"
);
}
static
void
dump_dir_reloc
(
void
)
{
unsigned
int
i
,
size
=
0
;
...
...
@@ -2560,6 +2707,8 @@ void pe_dump(void)
dump_dir_clr_header
();
if
(
globals_dump_sect
(
"reloc"
))
dump_dir_reloc
();
if
(
globals_dump_sect
(
"dynreloc"
))
dump_dir_dynamic_reloc
();
if
(
globals_dump_sect
(
"except"
))
dump_dir_exceptions
();
if
(
globals_dump_sect
(
"apiset"
))
...
...
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