-
Notifications
You must be signed in to change notification settings - Fork 2
/
Xander.DllCallback.pas
167 lines (135 loc) · 4.67 KB
/
Xander.DllCallback.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
unit Xander.DllCallback;
{$I Default.inc}
interface
uses
System.SysUtils,
Winapi.Windows,
Xander.LdrMonitor;
type
TDllCallback = procedure(const Name: string; Base: Pointer); register;
procedure Setup(Callback: TDllCallback);
implementation
var
Callback: TDllCallback = nil;
type
LDR_MANIFEST_PROBER_ROUTINE = function(DllHandle: Pointer; FullDllName: PWideChar; out ActCtx: Pointer): Cardinal; stdcall;
TLdrManifestProberRoutine = LDR_MANIFEST_PROBER_ROUTINE;
(* Windows XP version, which has only one argument. For higher OSes we will use LdrRegisterDllNotification. *)
procedure LdrSetDllManifestProber(Routine: TLdrManifestProberRoutine); stdcall; external 'ntdll.dll' name 'LdrSetDllManifestProber' delayed;
type
PLDR_RESOURCE_INFO = ^LDR_RESOURCE_INFO;
LDR_RESOURCE_INFO = record
&Type: Cardinal;
Name: Cardinal;
Language: Cardinal;
end;
PLdrResourceInfo = ^TLdrResourceInfo;
TLdrResourceInfo = LDR_RESOURCE_INFO;
PIMAGE_RESOURCE_DATA_ENTRY = ^IMAGE_RESOURCE_DATA_ENTRY;
IMAGE_RESOURCE_DATA_ENTRY = record
OffsetToData: Cardinal;
Size: Cardinal;
CodePage: Cardinal;
Reserved: Cardinal;
end;
TImageResourceDataEntry = IMAGE_RESOURCE_DATA_ENTRY;
PImageResourceDataEntry = ^TImageResourceDataEntry;
type
PACTIVATION_CONTEXT_DATA = ^ACTIVATION_CONTEXT_DATA;
ACTIVATION_CONTEXT_DATA = record
Magic: Cardinal;
HeaderSize: Cardinal;
FormatVersion: Cardinal;
TotalSize: Cardinal;
DefaultTocOffset: Cardinal;
ExtendedTocOffset: Cardinal;
AssemblyRosterOffset: Cardinal;
Flags: Cardinal;
end;
TActivationContextData = ACTIVATION_CONTEXT_DATA;
PActivationContextData = ^TActivationContextData;
function LdrFindResource_U(BaseAddress: Pointer; const ResourceInfo:
TLdrResourceInfo; Level: Cardinal;
out ResourceDataEntry: TImageResourceDataEntry): Cardinal; stdcall; external 'ntdll.dll';
function RtlCreateActivationContext(Flags: Cardinal;
ActivationContextData: Pointer; ExtraBytes: Cardinal;
NotificationRoutine: Pointer; NotificationContext: Pointer;
out ActCtx: Pointer): Cardinal; stdcall; external 'ntdll.dll';
const
STATUS_SUCCESS = $00000000;
STATUS_INVALID_PARAMETER = $C000000D;
STATUS_SXS_INVALID_ACTCTXDATA_FORMAT = $C0150003;
STATUS_RESOURCE_DATA_NOT_FOUND = $C0000089;
function IsWindowsXPOrLower: Boolean; inline;
begin
Result := Win32MajorVersion < 6;
end;
procedure LdrDllNotification(NotificationReason: TNotificationReason; const NotificationData: TLdrDllNotificationData; Context: Pointer); stdcall;
var
Name: array[0..MAX_PATH - 1] of WideChar;
begin
if NotificationReason = LDR_DLL_NOTIFICATION_REASON_LOADED then
begin
StrLCopy(Name, NotificationData.Loaded.FullDllName.Buffer, NotificationData.Loaded.FullDllName.Length);
if @Callback <> nil then
Callback(Name, NotificationData.Loaded.DllBase);
end;
end;
(* BasepProbeForDllManifest from ReactOS *)
function BasepProbeForDllManifest(DllHandle: Pointer; FullDllName: PWideChar; out ActCtx: Pointer): Cardinal; stdcall;
var
Info: TLdrResourceInfo;
Entry: TImageResourceDataEntry;
Context: ACTCTXW;
Status: Cardinal;
Res: Pointer;
begin
if PPointer(@ActCtx) = nil then
Exit(STATUS_INVALID_PARAMETER);
ActCtx := nil;
Info.&Type := Cardinal(RT_MANIFEST);
Info.Name := Cardinal(ISOLATIONAWARE_MANIFEST_RESOURCE_ID);
Info.Language := 0;
Status := LdrFindResource_U(DllHandle, Info, 3, Entry);
if Status = STATUS_SUCCESS then
begin
Context.cbSize := SizeOf(Context);
Context.lpSource := FullDllName;
Context.dwFlags := ACTCTX_FLAG_RESOURCE_NAME_VALID or ACTCTX_FLAG_HMODULE_VALID;
Context.hModule := Cardinal(DllHandle);
Context.lpResourceName := ISOLATIONAWARE_MANIFEST_RESOURCE_ID;
Status := RtlCreateActivationContext(0, @Context, 0, nil, nil, Res);
if Status = STATUS_SUCCESS then
ActCtx := Res
else
if Status = STATUS_SXS_INVALID_ACTCTXDATA_FORMAT then
begin
Status := STATUS_RESOURCE_DATA_NOT_FOUND;
end;
end
else
begin
Exit(STATUS_SUCCESS);
end;
Exit(Status);
end;
function LdrDllNotificationXP(DllHandle: Pointer; FullDllName: PWideChar; out ActivationContext: Pointer): Cardinal; stdcall;
var
Name: array[0..MAX_PATH - 1] of WideChar;
begin
GetModuleFileNameW(Cardinal(DllHandle), Name, SizeOf(Name));
if @Callback <> nil then
Callback(Name, DllHandle);
Result := BasepProbeForDllManifest(DllHandle, FullDllName, ActivationContext);
end;
procedure Setup(Callback: TDllCallback);
var
Cookie: LongWord;
begin
Xander.DllCallback.Callback := Callback;
if IsWindowsXPOrLower then
LdrSetDllManifestProber(LdrDllNotificationXP)
else
LdrRegisterDllNotification(0, @LdrDllNotification, nil, @Cookie);
end;
end.