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
52ca8cd3
Commit
52ca8cd3
authored
Apr 02, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedevice: Apply relocations to the driver in cases where the loader doesn't do it.
parent
ce21f292
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
1 deletion
+50
-1
device.c
programs/winedevice/device.c
+50
-1
No files found.
programs/winedevice/device.c
View file @
52ca8cd3
...
...
@@ -18,6 +18,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include "ntstatus.h"
...
...
@@ -58,6 +61,52 @@ static LDR_MODULE *find_ldr_module( HMODULE module )
return
NULL
;
}
/* load the driver module file */
static
HMODULE
load_driver_module
(
const
WCHAR
*
name
)
{
const
IMAGE_NT_HEADERS
*
nt
;
size_t
page_size
=
getpagesize
();
int
delta
;
HMODULE
module
=
LoadLibraryW
(
name
);
if
(
!
module
)
return
NULL
;
nt
=
RtlImageNtHeader
(
module
);
if
(
!
(
delta
=
(
char
*
)
module
-
(
char
*
)
nt
->
OptionalHeader
.
ImageBase
))
return
module
;
/* the loader does not apply relocations to non page-aligned binaries or executables,
* we have to do it ourselves */
if
(
nt
->
OptionalHeader
.
SectionAlignment
<
page_size
||
!
(
nt
->
FileHeader
.
Characteristics
&
IMAGE_FILE_DLL
))
{
ULONG
size
;
DWORD
old
;
IMAGE_BASE_RELOCATION
*
rel
,
*
end
;
if
((
rel
=
RtlImageDirectoryEntryToData
(
module
,
TRUE
,
IMAGE_DIRECTORY_ENTRY_BASERELOC
,
&
size
)))
{
WINE_TRACE
(
"%s: relocating from %p to %p
\n
"
,
wine_dbgstr_w
(
name
),
(
char
*
)
module
-
delta
,
module
);
end
=
(
IMAGE_BASE_RELOCATION
*
)((
char
*
)
rel
+
size
);
while
(
rel
<
end
&&
rel
->
SizeOfBlock
)
{
void
*
page
=
(
char
*
)
module
+
rel
->
VirtualAddress
;
VirtualProtect
(
page
,
page_size
,
PAGE_EXECUTE_READWRITE
,
&
old
);
rel
=
LdrProcessRelocationBlock
(
page
,
(
rel
->
SizeOfBlock
-
sizeof
(
*
rel
))
/
sizeof
(
USHORT
),
(
USHORT
*
)(
rel
+
1
),
delta
);
if
(
old
!=
PAGE_EXECUTE_READWRITE
)
VirtualProtect
(
page
,
page_size
,
old
,
NULL
);
if
(
!
rel
)
goto
error
;
}
}
}
return
module
;
error:
FreeLibrary
(
module
);
return
NULL
;
}
/* call the driver init entry point */
static
NTSTATUS
init_driver
(
HMODULE
module
,
UNICODE_STRING
*
keyname
)
{
...
...
@@ -146,7 +195,7 @@ static BOOL load_driver(void)
WINE_TRACE
(
"loading driver %s
\n
"
,
wine_dbgstr_w
(
str
)
);
module
=
LoadLibraryW
(
str
);
module
=
load_driver_module
(
str
);
HeapFree
(
GetProcessHeap
(),
0
,
path
);
if
(
!
module
)
return
FALSE
;
...
...
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