Use correct format for arguments in debug messages
[reactos.git] / reactos / lib / ntdll / ldr / utils.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: lib/ntdll/ldr/utils.c
6 * PURPOSE: Process startup for PE executables
7 * PROGRAMMERS: Jean Michault
8 * Rex Jolliff (rex@lvcablemodem.com)
9 * Hartmut Birr
10 */
11
12 /*
13 * TODO:
14 * - Handle loading flags correctly
15 * - Handle errors correctly (unload dll's)
16 * - Implement a faster way to find modules (hash table)
17 * - any more ??
18 */
19
20 /* INCLUDES *****************************************************************/
21
22 #include <ntdll.h>
23 #define NDEBUG
24 #include <debug.h>
25
26 #define LDRP_PROCESS_CREATION_TIME 0x8000000
27
28 /* GLOBALS *******************************************************************/
29
30 #ifdef NDEBUG
31 #if defined(__GNUC__)
32 #define TRACE_LDR(args...) if (RtlGetNtGlobalFlags() & FLG_SHOW_LDR_SNAPS) { DbgPrint("(LDR:%s:%d) ",__FILE__,__LINE__); DbgPrint(args); }
33 #else
34 #endif /* __GNUC__ */
35 #else
36 #define TRACE_LDR(args...) do { DbgPrint("(LDR:%s:%d) ",__FILE__,__LINE__); DbgPrint(args); } while(0)
37 #endif
38
39 typedef struct _TLS_DATA
40 {
41 PVOID StartAddressOfRawData;
42 DWORD TlsDataSize;
43 DWORD TlsZeroSize;
44 PIMAGE_TLS_CALLBACK TlsAddressOfCallBacks;
45 PLDR_DATA_TABLE_ENTRY Module;
46 } TLS_DATA, *PTLS_DATA;
47
48 static PTLS_DATA LdrpTlsArray = NULL;
49 static ULONG LdrpTlsCount = 0;
50 static ULONG LdrpTlsSize = 0;
51 static HANDLE LdrpKnownDllsDirHandle = NULL;
52 static UNICODE_STRING LdrpKnownDllPath = {0, 0, NULL};
53 static PLDR_DATA_TABLE_ENTRY LdrpLastModule = NULL;
54 extern PLDR_DATA_TABLE_ENTRY ExeModule;
55
56 /* PROTOTYPES ****************************************************************/
57
58 static NTSTATUS LdrFindEntryForName(PUNICODE_STRING Name, PLDR_DATA_TABLE_ENTRY *Module, BOOLEAN Ref);
59 static PVOID LdrFixupForward(PCHAR ForwardName);
60 static PVOID LdrGetExportByName(PVOID BaseAddress, PUCHAR SymbolName, USHORT Hint);
61 static NTSTATUS LdrpLoadModule(IN PWSTR SearchPath OPTIONAL,
62 IN ULONG LoadFlags,
63 IN PUNICODE_STRING Name,
64 OUT PLDR_DATA_TABLE_ENTRY *Module,
65 OUT PVOID *BaseAddress OPTIONAL);
66 static NTSTATUS LdrpAttachProcess(VOID);
67 static VOID LdrpDetachProcess(BOOLEAN UnloadAll);
68
69 /* FUNCTIONS *****************************************************************/
70
71 #if defined(DBG) || defined(KDBG)
72
73 VOID
74 LdrpLoadUserModuleSymbols(PLDR_DATA_TABLE_ENTRY LdrModule)
75 {
76 NtSystemDebugControl(
77 DebugDbgLoadSymbols,
78 (PVOID)LdrModule,
79 0,
80 NULL,
81 0,
82 NULL);
83 }
84
85 #endif /* DBG || KDBG */
86
87 BOOLEAN
88 LdrMappedAsDataFile(PVOID *BaseAddress)
89 {
90 if (0 != ((DWORD_PTR) *BaseAddress & (PAGE_SIZE - 1)))
91 {
92 *BaseAddress = (PVOID) ((DWORD_PTR) *BaseAddress & ~ ((DWORD_PTR) PAGE_SIZE - 1));
93 return TRUE;
94 }
95
96 return FALSE;
97 }
98
99 static __inline LONG LdrpDecrementLoadCount(PLDR_DATA_TABLE_ENTRY Module, BOOLEAN Locked)
100 {
101 LONG LoadCount;
102 if (!Locked)
103 {
104 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
105 }
106 LoadCount = Module->LoadCount;
107 if (Module->LoadCount > 0 && Module->LoadCount != 0xFFFF)
108 {
109 Module->LoadCount--;
110 }
111 if (!Locked)
112 {
113 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
114 }
115 return LoadCount;
116 }
117
118 static __inline LONG LdrpIncrementLoadCount(PLDR_DATA_TABLE_ENTRY Module, BOOLEAN Locked)
119 {
120 LONG LoadCount;
121 if (!Locked)
122 {
123 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
124 }
125 LoadCount = Module->LoadCount;
126 if (Module->LoadCount != 0xFFFF)
127 {
128 Module->LoadCount++;
129 }
130 if (!Locked)
131 {
132 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
133 }
134 return LoadCount;
135 }
136
137 static __inline VOID LdrpAcquireTlsSlot(PLDR_DATA_TABLE_ENTRY Module, ULONG Size, BOOLEAN Locked)
138 {
139 if (!Locked)
140 {
141 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
142 }
143 Module->TlsIndex = (SHORT)LdrpTlsCount;
144 LdrpTlsCount++;
145 LdrpTlsSize += Size;
146 if (!Locked)
147 {
148 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
149 }
150 }
151
152 static __inline VOID LdrpTlsCallback(PLDR_DATA_TABLE_ENTRY Module, ULONG dwReason)
153 {
154 PIMAGE_TLS_CALLBACK TlsCallback;
155 if (Module->TlsIndex != 0xFFFF && Module->LoadCount == 0xFFFF)
156 {
157 TlsCallback = LdrpTlsArray[Module->TlsIndex].TlsAddressOfCallBacks;
158 if (TlsCallback)
159 {
160 while (*TlsCallback)
161 {
162 TRACE_LDR("%wZ - Calling tls callback at %x\n",
163 &Module->BaseDllName, TlsCallback);
164 TlsCallback(Module->DllBase, dwReason, NULL);
165 TlsCallback = (PIMAGE_TLS_CALLBACK)((ULONG_PTR)TlsCallback + sizeof(PVOID));
166 }
167 }
168 }
169 }
170
171 static BOOLEAN LdrpCallDllEntry(PLDR_DATA_TABLE_ENTRY Module, DWORD dwReason, PVOID lpReserved)
172 {
173 if (!(Module->Flags & LDRP_IMAGE_DLL) ||
174 Module->EntryPoint == 0)
175 {
176 return TRUE;
177 }
178 LdrpTlsCallback(Module, dwReason);
179 return ((PDLLMAIN_FUNC)Module->EntryPoint)(Module->DllBase, dwReason, lpReserved);
180 }
181
182 static NTSTATUS
183 LdrpInitializeTlsForThread(VOID)
184 {
185 PVOID* TlsPointers;
186 PTLS_DATA TlsInfo;
187 PVOID TlsData;
188 ULONG i;
189 PTEB Teb = NtCurrentTeb();
190
191 DPRINT("LdrpInitializeTlsForThread() called for %wZ\n", &ExeModule->BaseDllName);
192
193 Teb->StaticUnicodeString.Length = 0;
194 Teb->StaticUnicodeString.MaximumLength = sizeof(Teb->StaticUnicodeBuffer);
195 Teb->StaticUnicodeString.Buffer = Teb->StaticUnicodeBuffer;
196
197 if (LdrpTlsCount > 0)
198 {
199 TlsPointers = RtlAllocateHeap(RtlGetProcessHeap(),
200 0,
201 LdrpTlsCount * sizeof(PVOID) + LdrpTlsSize);
202 if (TlsPointers == NULL)
203 {
204 DPRINT1("failed to allocate thread tls data\n");
205 return STATUS_NO_MEMORY;
206 }
207
208 TlsData = (PVOID)((ULONG_PTR)TlsPointers + LdrpTlsCount * sizeof(PVOID));
209 Teb->ThreadLocalStoragePointer = TlsPointers;
210
211 TlsInfo = LdrpTlsArray;
212 for (i = 0; i < LdrpTlsCount; i++, TlsInfo++)
213 {
214 TRACE_LDR("Initialize tls data for %wZ\n", &TlsInfo->Module->BaseDllName);
215 TlsPointers[i] = TlsData;
216 if (TlsInfo->TlsDataSize)
217 {
218 memcpy(TlsData, TlsInfo->StartAddressOfRawData, TlsInfo->TlsDataSize);
219 TlsData = (PVOID)((ULONG_PTR)TlsData + TlsInfo->TlsDataSize);
220 }
221 if (TlsInfo->TlsZeroSize)
222 {
223 memset(TlsData, 0, TlsInfo->TlsZeroSize);
224 TlsData = (PVOID)((ULONG_PTR)TlsData + TlsInfo->TlsZeroSize);
225 }
226 }
227 }
228 DPRINT("LdrpInitializeTlsForThread() done\n");
229 return STATUS_SUCCESS;
230 }
231
232 static NTSTATUS
233 LdrpInitializeTlsForProccess(VOID)
234 {
235 PLIST_ENTRY ModuleListHead;
236 PLIST_ENTRY Entry;
237 PLDR_DATA_TABLE_ENTRY Module;
238 PIMAGE_TLS_DIRECTORY TlsDirectory;
239 PTLS_DATA TlsData;
240 ULONG Size;
241
242 DPRINT("LdrpInitializeTlsForProccess() called for %wZ\n", &ExeModule->BaseDllName);
243
244 if (LdrpTlsCount > 0)
245 {
246 LdrpTlsArray = RtlAllocateHeap(RtlGetProcessHeap(),
247 0,
248 LdrpTlsCount * sizeof(TLS_DATA));
249 if (LdrpTlsArray == NULL)
250 {
251 DPRINT1("Failed to allocate global tls data\n");
252 return STATUS_NO_MEMORY;
253 }
254
255 ModuleListHead = &NtCurrentPeb()->Ldr->InLoadOrderModuleList;
256 Entry = ModuleListHead->Flink;
257 while (Entry != ModuleListHead)
258 {
259 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InLoadOrderModuleList);
260 if (Module->LoadCount == 0xFFFF &&
261 Module->TlsIndex != 0xFFFF)
262 {
263 TlsDirectory = (PIMAGE_TLS_DIRECTORY)
264 RtlImageDirectoryEntryToData(Module->DllBase,
265 TRUE,
266 IMAGE_DIRECTORY_ENTRY_TLS,
267 &Size);
268 ASSERT(Module->TlsIndex < LdrpTlsCount);
269 TlsData = &LdrpTlsArray[Module->TlsIndex];
270 TlsData->StartAddressOfRawData = (PVOID)TlsDirectory->StartAddressOfRawData;
271 TlsData->TlsDataSize = TlsDirectory->EndAddressOfRawData - TlsDirectory->StartAddressOfRawData;
272 TlsData->TlsZeroSize = TlsDirectory->SizeOfZeroFill;
273 if (TlsDirectory->AddressOfCallBacks)
274 TlsData->TlsAddressOfCallBacks = *(PIMAGE_TLS_CALLBACK*)TlsDirectory->AddressOfCallBacks;
275 else
276 TlsData->TlsAddressOfCallBacks = NULL;
277 TlsData->Module = Module;
278 #if 0
279 DbgPrint("TLS directory for %wZ\n", &Module->BaseDllName);
280 DbgPrint("StartAddressOfRawData: %x\n", TlsDirectory->StartAddressOfRawData);
281 DbgPrint("EndAddressOfRawData: %x\n", TlsDirectory->EndAddressOfRawData);
282 DbgPrint("SizeOfRawData: %d\n", TlsDirectory->EndAddressOfRawData - TlsDirectory->StartAddressOfRawData);
283 DbgPrint("AddressOfIndex: %x\n", TlsDirectory->AddressOfIndex);
284 DbgPrint("AddressOfCallBacks: %x (%x)\n", TlsDirectory->AddressOfCallBacks, *TlsDirectory->AddressOfCallBacks);
285 DbgPrint("SizeOfZeroFill: %d\n", TlsDirectory->SizeOfZeroFill);
286 DbgPrint("Characteristics: %x\n", TlsDirectory->Characteristics);
287 #endif
288 /*
289 * FIXME:
290 * Is this region allways writable ?
291 */
292 *(PULONG)TlsDirectory->AddressOfIndex = Module->TlsIndex;
293 }
294 Entry = Entry->Flink;
295 }
296 }
297 DPRINT("LdrpInitializeTlsForProccess() done\n");
298 return STATUS_SUCCESS;
299 }
300
301 VOID
302 LdrpInitLoader(VOID)
303 {
304 OBJECT_ATTRIBUTES ObjectAttributes;
305 UNICODE_STRING LinkTarget;
306 UNICODE_STRING Name;
307 HANDLE LinkHandle;
308 ULONG Length;
309 NTSTATUS Status;
310
311 DPRINT("LdrpInitLoader() called for %wZ\n", &ExeModule->BaseDllName);
312
313 /* Get handle to the 'KnownDlls' directory */
314 RtlInitUnicodeString(&Name,
315 L"\\KnownDlls");
316 InitializeObjectAttributes(&ObjectAttributes,
317 &Name,
318 OBJ_CASE_INSENSITIVE,
319 NULL,
320 NULL);
321 Status = NtOpenDirectoryObject(&LdrpKnownDllsDirHandle,
322 DIRECTORY_QUERY | DIRECTORY_TRAVERSE,
323 &ObjectAttributes);
324 if (!NT_SUCCESS(Status))
325 {
326 DPRINT("NtOpenDirectoryObject() failed (Status %lx)\n", Status);
327 LdrpKnownDllsDirHandle = NULL;
328 return;
329 }
330
331 /* Allocate target name string */
332 LinkTarget.Length = 0;
333 LinkTarget.MaximumLength = MAX_PATH * sizeof(WCHAR);
334 LinkTarget.Buffer = RtlAllocateHeap(RtlGetProcessHeap(),
335 0,
336 MAX_PATH * sizeof(WCHAR));
337 if (LinkTarget.Buffer == NULL)
338 {
339 NtClose(LdrpKnownDllsDirHandle);
340 LdrpKnownDllsDirHandle = NULL;
341 return;
342 }
343
344 RtlInitUnicodeString(&Name,
345 L"KnownDllPath");
346 InitializeObjectAttributes(&ObjectAttributes,
347 &Name,
348 OBJ_CASE_INSENSITIVE | OBJ_OPENLINK,
349 LdrpKnownDllsDirHandle,
350 NULL);
351 Status = NtOpenSymbolicLinkObject(&LinkHandle,
352 SYMBOLIC_LINK_ALL_ACCESS,
353 &ObjectAttributes);
354 if (!NT_SUCCESS(Status))
355 {
356 RtlFreeUnicodeString(&LinkTarget);
357 NtClose(LdrpKnownDllsDirHandle);
358 LdrpKnownDllsDirHandle = NULL;
359 return;
360 }
361
362 Status = NtQuerySymbolicLinkObject(LinkHandle,
363 &LinkTarget,
364 &Length);
365 NtClose(LinkHandle);
366 if (!NT_SUCCESS(Status))
367 {
368 RtlFreeUnicodeString(&LinkTarget);
369 NtClose(LdrpKnownDllsDirHandle);
370 LdrpKnownDllsDirHandle = NULL;
371 }
372
373 RtlCreateUnicodeString(&LdrpKnownDllPath,
374 LinkTarget.Buffer);
375
376 RtlFreeUnicodeString(&LinkTarget);
377
378 DPRINT("LdrpInitLoader() done\n");
379 }
380
381
382 /***************************************************************************
383 * NAME LOCAL
384 * LdrAdjustDllName
385 *
386 * DESCRIPTION
387 * Adjusts the name of a dll to a fully qualified name.
388 *
389 * ARGUMENTS
390 * FullDllName: Pointer to caller supplied storage for the fully
391 * qualified dll name.
392 * DllName: Pointer to the dll name.
393 * BaseName: TRUE: Only the file name is passed to FullDllName
394 * FALSE: The full path is preserved in FullDllName
395 *
396 * RETURN VALUE
397 * None
398 *
399 * REVISIONS
400 *
401 * NOTE
402 * A given path is not affected by the adjustment, but the file
403 * name only:
404 * ntdll --> ntdll.dll
405 * ntdll. --> ntdll
406 * ntdll.xyz --> ntdll.xyz
407 */
408 static VOID
409 LdrAdjustDllName (PUNICODE_STRING FullDllName,
410 PUNICODE_STRING DllName,
411 BOOLEAN BaseName)
412 {
413 WCHAR Buffer[MAX_PATH];
414 ULONG Length;
415 PWCHAR Extension;
416 PWCHAR Pointer;
417
418 Length = DllName->Length / sizeof(WCHAR);
419
420 if (BaseName)
421 {
422 /* get the base dll name */
423 Pointer = DllName->Buffer + Length;
424 Extension = Pointer;
425
426 do
427 {
428 --Pointer;
429 }
430 while (Pointer >= DllName->Buffer && *Pointer != L'\\' && *Pointer != L'/');
431
432 Pointer++;
433 Length = Extension - Pointer;
434 memmove (Buffer, Pointer, Length * sizeof(WCHAR));
435 Buffer[Length] = L'\0';
436 }
437 else
438 {
439 /* get the full dll name */
440 memmove (Buffer, DllName->Buffer, DllName->Length);
441 Buffer[DllName->Length / sizeof(WCHAR)] = L'\0';
442 }
443
444 /* Build the DLL's absolute name */
445 Extension = wcsrchr (Buffer, L'.');
446 if ((Extension != NULL) && (*Extension == L'.'))
447 {
448 /* with extension - remove dot if it's the last character */
449 if (Buffer[Length - 1] == L'.')
450 Length--;
451 Buffer[Length] = 0;
452 }
453 else
454 {
455 /* name without extension - assume that it is .dll */
456 memmove (Buffer + Length, L".dll", 10);
457 }
458
459 RtlCreateUnicodeString(FullDllName, Buffer);
460 }
461
462 PLDR_DATA_TABLE_ENTRY
463 LdrAddModuleEntry(PVOID ImageBase,
464 PIMAGE_NT_HEADERS NTHeaders,
465 PWSTR FullDosName)
466 {
467 PLDR_DATA_TABLE_ENTRY Module;
468
469 Module = RtlAllocateHeap(RtlGetProcessHeap(), 0, sizeof (LDR_DATA_TABLE_ENTRY));
470 ASSERT(Module);
471 memset(Module, 0, sizeof(LDR_DATA_TABLE_ENTRY));
472 Module->DllBase = (PVOID)ImageBase;
473 Module->EntryPoint = (PVOID)NTHeaders->OptionalHeader.AddressOfEntryPoint;
474 if (Module->EntryPoint != 0)
475 Module->EntryPoint = (PVOID)((ULONG_PTR)Module->EntryPoint + (ULONG_PTR)Module->DllBase);
476 Module->SizeOfImage = LdrpGetResidentSize(NTHeaders);
477 if (NtCurrentPeb()->Ldr->Initialized == TRUE)
478 {
479 /* loading while app is running */
480 Module->LoadCount = 1;
481 } else {
482 /*
483 * loading while app is initializing
484 * dll must not be unloaded
485 */
486 Module->LoadCount = 0xFFFF;
487 }
488
489 Module->Flags = 0;
490 Module->TlsIndex = -1;
491 Module->CheckSum = NTHeaders->OptionalHeader.CheckSum;
492 Module->TimeDateStamp = NTHeaders->FileHeader.TimeDateStamp;
493
494 RtlCreateUnicodeString (&Module->FullDllName,
495 FullDosName);
496 RtlCreateUnicodeString (&Module->BaseDllName,
497 wcsrchr(FullDosName, L'\\') + 1);
498 DPRINT ("BaseDllName %wZ\n", &Module->BaseDllName);
499
500 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
501 InsertTailList(&NtCurrentPeb()->Ldr->InLoadOrderModuleList,
502 &Module->InLoadOrderModuleList);
503 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
504
505 return(Module);
506 }
507
508
509 static NTSTATUS
510 LdrpMapKnownDll(IN PUNICODE_STRING DllName,
511 OUT PUNICODE_STRING FullDosName,
512 OUT PHANDLE SectionHandle)
513 {
514 OBJECT_ATTRIBUTES ObjectAttributes;
515 NTSTATUS Status;
516
517 DPRINT("LdrpMapKnownDll() called\n");
518
519 if (LdrpKnownDllsDirHandle == NULL)
520 {
521 DPRINT("Invalid 'KnownDlls' directory\n");
522 return STATUS_UNSUCCESSFUL;
523 }
524
525 DPRINT("LdrpKnownDllPath '%wZ'\n", &LdrpKnownDllPath);
526
527 InitializeObjectAttributes(&ObjectAttributes,
528 DllName,
529 OBJ_CASE_INSENSITIVE,
530 LdrpKnownDllsDirHandle,
531 NULL);
532 Status = NtOpenSection(SectionHandle,
533 SECTION_MAP_READ | SECTION_MAP_WRITE | SECTION_MAP_EXECUTE,
534 &ObjectAttributes);
535 if (!NT_SUCCESS(Status))
536 {
537 DPRINT("NtOpenSection() failed for '%wZ' (Status 0x%08lx)\n", DllName, Status);
538 return Status;
539 }
540
541 FullDosName->Length = LdrpKnownDllPath.Length + DllName->Length + sizeof(WCHAR);
542 FullDosName->MaximumLength = FullDosName->Length + sizeof(WCHAR);
543 FullDosName->Buffer = RtlAllocateHeap(RtlGetProcessHeap(),
544 0,
545 FullDosName->MaximumLength);
546 if (FullDosName->Buffer == NULL)
547 {
548 FullDosName->Length = 0;
549 FullDosName->MaximumLength = 0;
550 return STATUS_SUCCESS;
551 }
552
553 wcscpy(FullDosName->Buffer, LdrpKnownDllPath.Buffer);
554 wcscat(FullDosName->Buffer, L"\\");
555 wcscat(FullDosName->Buffer, DllName->Buffer);
556
557 DPRINT("FullDosName '%wZ'\n", FullDosName);
558
559 DPRINT("LdrpMapKnownDll() done\n");
560
561 return STATUS_SUCCESS;
562 }
563
564
565 static NTSTATUS
566 LdrpMapDllImageFile(IN PWSTR SearchPath OPTIONAL,
567 IN PUNICODE_STRING DllName,
568 OUT PUNICODE_STRING FullDosName,
569 IN BOOLEAN MapAsDataFile,
570 OUT PHANDLE SectionHandle)
571 {
572 WCHAR SearchPathBuffer[MAX_PATH];
573 WCHAR DosName[MAX_PATH];
574 UNICODE_STRING FullNtFileName;
575 OBJECT_ATTRIBUTES FileObjectAttributes;
576 HANDLE FileHandle;
577 char BlockBuffer [1024];
578 PIMAGE_DOS_HEADER DosHeader;
579 PIMAGE_NT_HEADERS NTHeaders;
580 IO_STATUS_BLOCK IoStatusBlock;
581 NTSTATUS Status;
582 ULONG len;
583
584 DPRINT("LdrpMapDllImageFile() called\n");
585
586 if (SearchPath == NULL)
587 {
588 /* get application running path */
589
590 wcscpy (SearchPathBuffer, NtCurrentPeb()->ProcessParameters->ImagePathName.Buffer);
591
592 len = wcslen (SearchPathBuffer);
593
594 while (len && SearchPathBuffer[len - 1] != L'\\')
595 len--;
596
597 if (len) SearchPathBuffer[len-1] = L'\0';
598
599 wcscat (SearchPathBuffer, L";");
600
601 wcscat (SearchPathBuffer, SharedUserData->NtSystemRoot);
602 wcscat (SearchPathBuffer, L"\\system32;");
603 wcscat (SearchPathBuffer, SharedUserData->NtSystemRoot);
604 wcscat (SearchPathBuffer, L";.");
605
606 SearchPath = SearchPathBuffer;
607 }
608
609 if (RtlDosSearchPath_U (SearchPath,
610 DllName->Buffer,
611 NULL,
612 MAX_PATH,
613 DosName,
614 NULL) == 0)
615 return STATUS_DLL_NOT_FOUND;
616
617
618 if (!RtlDosPathNameToNtPathName_U (DosName,
619 &FullNtFileName,
620 NULL,
621 NULL))
622 return STATUS_DLL_NOT_FOUND;
623
624 DPRINT("FullNtFileName %wZ\n", &FullNtFileName);
625
626 InitializeObjectAttributes(&FileObjectAttributes,
627 &FullNtFileName,
628 0,
629 NULL,
630 NULL);
631
632 DPRINT("Opening dll \"%wZ\"\n", &FullNtFileName);
633
634 Status = NtOpenFile(&FileHandle,
635 GENERIC_READ|SYNCHRONIZE,
636 &FileObjectAttributes,
637 &IoStatusBlock,
638 FILE_SHARE_READ,
639 FILE_SYNCHRONOUS_IO_NONALERT);
640 if (!NT_SUCCESS(Status))
641 {
642 DPRINT1("Dll open of %wZ failed: Status = 0x%08lx\n",
643 &FullNtFileName, Status);
644 RtlFreeUnicodeString (&FullNtFileName);
645 return Status;
646 }
647 RtlFreeUnicodeString (&FullNtFileName);
648
649 Status = NtReadFile(FileHandle,
650 NULL,
651 NULL,
652 NULL,
653 &IoStatusBlock,
654 BlockBuffer,
655 sizeof(BlockBuffer),
656 NULL,
657 NULL);
658 if (!NT_SUCCESS(Status))
659 {
660 DPRINT("Dll header read failed: Status = 0x%08lx\n", Status);
661 NtClose(FileHandle);
662 return Status;
663 }
664 /*
665 * Overlay DOS and NT headers structures to the
666 * buffer with DLL's header raw data.
667 */
668 DosHeader = (PIMAGE_DOS_HEADER) BlockBuffer;
669 NTHeaders = (PIMAGE_NT_HEADERS) (BlockBuffer + DosHeader->e_lfanew);
670 /*
671 * Check it is a PE image file.
672 */
673 if ((DosHeader->e_magic != IMAGE_DOS_SIGNATURE)
674 || (DosHeader->e_lfanew == 0L)
675 || (*(PULONG)(NTHeaders) != IMAGE_NT_SIGNATURE))
676 {
677 DPRINT("NTDLL format invalid\n");
678 NtClose(FileHandle);
679
680 return STATUS_UNSUCCESSFUL;
681 }
682
683 /*
684 * Create a section for dll.
685 */
686 Status = NtCreateSection(SectionHandle,
687 SECTION_ALL_ACCESS,
688 NULL,
689 NULL,
690 PAGE_READONLY,
691 SEC_COMMIT | (MapAsDataFile ? 0 : SEC_IMAGE),
692 FileHandle);
693 NtClose(FileHandle);
694
695 if (!NT_SUCCESS(Status))
696 {
697 DPRINT("NTDLL create section failed: Status = 0x%08lx\n", Status);
698 return Status;
699 }
700
701 RtlCreateUnicodeString(FullDosName,
702 DosName);
703
704 return Status;
705 }
706
707
708
709 /***************************************************************************
710 * NAME EXPORTED
711 * LdrLoadDll
712 *
713 * DESCRIPTION
714 *
715 * ARGUMENTS
716 *
717 * RETURN VALUE
718 *
719 * REVISIONS
720 *
721 * NOTE
722 *
723 * @implemented
724 */
725 NTSTATUS NTAPI
726 LdrLoadDll (IN PWSTR SearchPath OPTIONAL,
727 IN ULONG LoadFlags,
728 IN PUNICODE_STRING Name,
729 OUT PVOID *BaseAddress OPTIONAL)
730 {
731 NTSTATUS Status;
732 PLDR_DATA_TABLE_ENTRY Module;
733
734 TRACE_LDR("LdrLoadDll, loading %wZ%s%S\n",
735 Name,
736 SearchPath ? " from " : "",
737 SearchPath ? SearchPath : L"");
738
739 if (Name == NULL)
740 {
741 *BaseAddress = NtCurrentPeb()->ImageBaseAddress;
742 return STATUS_SUCCESS;
743 }
744
745 *BaseAddress = NULL;
746
747 Status = LdrpLoadModule(SearchPath, LoadFlags, Name, &Module, BaseAddress);
748 if (NT_SUCCESS(Status) && 0 == (LoadFlags & LOAD_LIBRARY_AS_DATAFILE))
749 {
750 RtlEnterCriticalSection(NtCurrentPeb()->LoaderLock);
751 Status = LdrpAttachProcess();
752 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
753 if (NT_SUCCESS(Status))
754 {
755 *BaseAddress = Module->DllBase;
756 }
757 }
758 return Status;
759 }
760
761
762 /***************************************************************************
763 * NAME EXPORTED
764 * LdrFindEntryForAddress
765 *
766 * DESCRIPTION
767 *
768 * ARGUMENTS
769 *
770 * RETURN VALUE
771 *
772 * REVISIONS
773 *
774 * NOTE
775 *
776 * @implemented
777 */
778 NTSTATUS NTAPI
779 LdrFindEntryForAddress(PVOID Address,
780 PLDR_DATA_TABLE_ENTRY *Module)
781 {
782 PLIST_ENTRY ModuleListHead;
783 PLIST_ENTRY Entry;
784 PLDR_DATA_TABLE_ENTRY ModulePtr;
785
786 DPRINT("LdrFindEntryForAddress(Address %p)\n", Address);
787
788 if (NtCurrentPeb()->Ldr == NULL)
789 return(STATUS_NO_MORE_ENTRIES);
790
791 RtlEnterCriticalSection(NtCurrentPeb()->LoaderLock);
792 ModuleListHead = &NtCurrentPeb()->Ldr->InLoadOrderModuleList;
793 Entry = ModuleListHead->Flink;
794 if (Entry == ModuleListHead)
795 {
796 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
797 return(STATUS_NO_MORE_ENTRIES);
798 }
799
800 while (Entry != ModuleListHead)
801 {
802 ModulePtr = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InLoadOrderModuleList);
803
804 DPRINT("Scanning %wZ at %p\n", &ModulePtr->BaseDllName, ModulePtr->DllBase);
805
806 if ((Address >= ModulePtr->DllBase) &&
807 ((ULONG_PTR)Address <= ((ULONG_PTR)ModulePtr->DllBase + ModulePtr->SizeOfImage)))
808 {
809 *Module = ModulePtr;
810 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
811 return(STATUS_SUCCESS);
812 }
813
814 Entry = Entry->Flink;
815 }
816
817 DPRINT("Failed to find module entry.\n");
818
819 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
820 return(STATUS_NO_MORE_ENTRIES);
821 }
822
823
824 /***************************************************************************
825 * NAME LOCAL
826 * LdrFindEntryForName
827 *
828 * DESCRIPTION
829 *
830 * ARGUMENTS
831 *
832 * RETURN VALUE
833 *
834 * REVISIONS
835 *
836 * NOTE
837 *
838 */
839 static NTSTATUS
840 LdrFindEntryForName(PUNICODE_STRING Name,
841 PLDR_DATA_TABLE_ENTRY *Module,
842 BOOLEAN Ref)
843 {
844 PLIST_ENTRY ModuleListHead;
845 PLIST_ENTRY Entry;
846 PLDR_DATA_TABLE_ENTRY ModulePtr;
847 BOOLEAN ContainsPath;
848 UNICODE_STRING AdjustedName;
849 unsigned i;
850
851 DPRINT("LdrFindEntryForName(Name %wZ)\n", Name);
852
853 if (NtCurrentPeb()->Ldr == NULL)
854 return(STATUS_NO_MORE_ENTRIES);
855
856 RtlEnterCriticalSection(NtCurrentPeb()->LoaderLock);
857 ModuleListHead = &NtCurrentPeb()->Ldr->InLoadOrderModuleList;
858 Entry = ModuleListHead->Flink;
859 if (Entry == ModuleListHead)
860 {
861 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
862 return(STATUS_NO_MORE_ENTRIES);
863 }
864
865 // NULL is the current process
866 if (Name == NULL)
867 {
868 *Module = ExeModule;
869 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
870 return(STATUS_SUCCESS);
871 }
872
873 LdrAdjustDllName (&AdjustedName, Name, FALSE);
874
875 ContainsPath = (AdjustedName.Length >= 2 * sizeof(WCHAR) && L':' == AdjustedName.Buffer[1]);
876 for (i = 0; ! ContainsPath && i < AdjustedName.Length / sizeof(WCHAR); i++)
877 {
878 ContainsPath = L'\\' == AdjustedName.Buffer[i] ||
879 L'/' == AdjustedName.Buffer[i];
880 }
881
882 if (LdrpLastModule)
883 {
884 if ((! ContainsPath &&
885 0 == RtlCompareUnicodeString(&LdrpLastModule->BaseDllName, &AdjustedName, TRUE)) ||
886 (ContainsPath &&
887 0 == RtlCompareUnicodeString(&LdrpLastModule->FullDllName, &AdjustedName, TRUE)))
888 {
889 *Module = LdrpLastModule;
890 if (Ref && (*Module)->LoadCount != 0xFFFF)
891 {
892 (*Module)->LoadCount++;
893 }
894 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
895 RtlFreeUnicodeString(&AdjustedName);
896 return(STATUS_SUCCESS);
897 }
898 }
899 while (Entry != ModuleListHead)
900 {
901 ModulePtr = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InLoadOrderModuleList);
902
903 DPRINT("Scanning %wZ %wZ\n", &ModulePtr->BaseDllName, &AdjustedName);
904
905 if ((! ContainsPath &&
906 0 == RtlCompareUnicodeString(&ModulePtr->BaseDllName, &AdjustedName, TRUE)) ||
907 (ContainsPath &&
908 0 == RtlCompareUnicodeString(&ModulePtr->FullDllName, &AdjustedName, TRUE)))
909 {
910 *Module = LdrpLastModule = ModulePtr;
911 if (Ref && ModulePtr->LoadCount != 0xFFFF)
912 {
913 ModulePtr->LoadCount++;
914 }
915 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
916 RtlFreeUnicodeString(&AdjustedName);
917 return(STATUS_SUCCESS);
918 }
919
920 Entry = Entry->Flink;
921 }
922
923 DPRINT("Failed to find dll %wZ\n", Name);
924 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
925 RtlFreeUnicodeString(&AdjustedName);
926 return(STATUS_NO_MORE_ENTRIES);
927 }
928
929 /**********************************************************************
930 * NAME LOCAL
931 * LdrFixupForward
932 *
933 * DESCRIPTION
934 *
935 * ARGUMENTS
936 *
937 * RETURN VALUE
938 *
939 * REVISIONS
940 *
941 * NOTE
942 *
943 */
944 static PVOID
945 LdrFixupForward(PCHAR ForwardName)
946 {
947 CHAR NameBuffer[128];
948 UNICODE_STRING DllName;
949 NTSTATUS Status;
950 PCHAR p;
951 PLDR_DATA_TABLE_ENTRY Module;
952 PVOID BaseAddress;
953
954 strcpy(NameBuffer, ForwardName);
955 p = strchr(NameBuffer, '.');
956 if (p != NULL)
957 {
958 *p = 0;
959
960 DPRINT("Dll: %s Function: %s\n", NameBuffer, p+1);
961 RtlCreateUnicodeStringFromAsciiz (&DllName,
962 NameBuffer);
963
964 Status = LdrFindEntryForName (&DllName, &Module, FALSE);
965 /* FIXME:
966 * The caller (or the image) is responsible for loading of the dll, where the function is forwarded.
967 */
968 if (!NT_SUCCESS(Status))
969 {
970 Status = LdrLoadDll(NULL,
971 LDRP_PROCESS_CREATION_TIME,
972 &DllName,
973 &BaseAddress);
974 if (NT_SUCCESS(Status))
975 {
976 Status = LdrFindEntryForName (&DllName, &Module, FALSE);
977 }
978 }
979 RtlFreeUnicodeString (&DllName);
980 if (!NT_SUCCESS(Status))
981 {
982 DPRINT1("LdrFixupForward: failed to load %s\n", NameBuffer);
983 return NULL;
984 }
985
986 DPRINT("BaseAddress: %p\n", Module->DllBase);
987
988 return LdrGetExportByName(Module->DllBase, (PUCHAR)(p+1), -1);
989 }
990
991 return NULL;
992 }
993
994
995 /**********************************************************************
996 * NAME LOCAL
997 * LdrGetExportByOrdinal
998 *
999 * DESCRIPTION
1000 *
1001 * ARGUMENTS
1002 *
1003 * RETURN VALUE
1004 *
1005 * REVISIONS
1006 *
1007 * NOTE
1008 *
1009 */
1010 static PVOID
1011 LdrGetExportByOrdinal (
1012 PVOID BaseAddress,
1013 ULONG Ordinal
1014 )
1015 {
1016 PIMAGE_EXPORT_DIRECTORY ExportDir;
1017 ULONG ExportDirSize;
1018 PDWORD * ExFunctions;
1019 PVOID Function;
1020
1021 ExportDir = (PIMAGE_EXPORT_DIRECTORY)
1022 RtlImageDirectoryEntryToData (BaseAddress,
1023 TRUE,
1024 IMAGE_DIRECTORY_ENTRY_EXPORT,
1025 &ExportDirSize);
1026
1027
1028 ExFunctions = (PDWORD *)
1029 RVA(
1030 BaseAddress,
1031 ExportDir->AddressOfFunctions
1032 );
1033 DPRINT(
1034 "LdrGetExportByOrdinal(Ordinal %lu) = %p\n",
1035 Ordinal,
1036 RVA(BaseAddress, ExFunctions[Ordinal - ExportDir->Base] )
1037 );
1038
1039 Function = (0 != ExFunctions[Ordinal - ExportDir->Base]
1040 ? RVA(BaseAddress, ExFunctions[Ordinal - ExportDir->Base] )
1041 : NULL);
1042
1043 if (((ULONG)Function >= (ULONG)ExportDir) &&
1044 ((ULONG)Function < (ULONG)ExportDir + (ULONG)ExportDirSize))
1045 {
1046 DPRINT("Forward: %s\n", (PCHAR)Function);
1047 Function = LdrFixupForward((PCHAR)Function);
1048 }
1049
1050 return Function;
1051 }
1052
1053
1054 /**********************************************************************
1055 * NAME LOCAL
1056 * LdrGetExportByName
1057 *
1058 * DESCRIPTION
1059 *
1060 * ARGUMENTS
1061 *
1062 * RETURN VALUE
1063 *
1064 * REVISIONS
1065 *
1066 * NOTE
1067 * AddressOfNames and AddressOfNameOrdinals are paralell tables,
1068 * both with NumberOfNames entries.
1069 *
1070 */
1071 static PVOID
1072 LdrGetExportByName(PVOID BaseAddress,
1073 PUCHAR SymbolName,
1074 WORD Hint)
1075 {
1076 PIMAGE_EXPORT_DIRECTORY ExportDir;
1077 PDWORD * ExFunctions;
1078 PDWORD * ExNames;
1079 USHORT * ExOrdinals;
1080 PVOID ExName;
1081 ULONG Ordinal;
1082 PVOID Function;
1083 LONG minn, maxn;
1084 ULONG ExportDirSize;
1085
1086 DPRINT("LdrGetExportByName %p %s %hu\n", BaseAddress, SymbolName, Hint);
1087
1088 ExportDir = (PIMAGE_EXPORT_DIRECTORY)
1089 RtlImageDirectoryEntryToData(BaseAddress,
1090 TRUE,
1091 IMAGE_DIRECTORY_ENTRY_EXPORT,
1092 &ExportDirSize);
1093 if (ExportDir == NULL)
1094 {
1095 DPRINT1("LdrGetExportByName(): no export directory!\n");
1096 return NULL;
1097 }
1098
1099
1100 //The symbol names may be missing entirely
1101 if (ExportDir->AddressOfNames == 0)
1102 {
1103 DPRINT("LdrGetExportByName(): symbol names missing entirely\n");
1104 return NULL;
1105 }
1106
1107 /*
1108 * Get header pointers
1109 */
1110 ExNames = (PDWORD *)RVA(BaseAddress,
1111 ExportDir->AddressOfNames);
1112 ExOrdinals = (USHORT *)RVA(BaseAddress,
1113 ExportDir->AddressOfNameOrdinals);
1114 ExFunctions = (PDWORD *)RVA(BaseAddress,
1115 ExportDir->AddressOfFunctions);
1116
1117 /*
1118 * Check the hint first
1119 */
1120 if (Hint < ExportDir->NumberOfNames)
1121 {
1122 ExName = RVA(BaseAddress, ExNames[Hint]);
1123 if (strcmp(ExName, (PCHAR)SymbolName) == 0)
1124 {
1125 Ordinal = ExOrdinals[Hint];
1126 Function = RVA(BaseAddress, ExFunctions[Ordinal]);
1127 if (((ULONG)Function >= (ULONG)ExportDir) &&
1128 ((ULONG)Function < (ULONG)ExportDir + (ULONG)ExportDirSize))
1129 {
1130 DPRINT("Forward: %s\n", (PCHAR)Function);
1131 Function = LdrFixupForward((PCHAR)Function);
1132 if (Function == NULL)
1133 {
1134 DPRINT1("LdrGetExportByName(): failed to find %s\n",SymbolName);
1135 }
1136 return Function;
1137 }
1138 if (Function != NULL)
1139 return Function;
1140 }
1141 }
1142
1143 /*
1144 * Binary search
1145 */
1146 minn = 0;
1147 maxn = ExportDir->NumberOfNames - 1;
1148 while (minn <= maxn)
1149 {
1150 LONG mid;
1151 LONG res;
1152
1153 mid = (minn + maxn) / 2;
1154
1155 ExName = RVA(BaseAddress, ExNames[mid]);
1156 res = strcmp(ExName, (PCHAR)SymbolName);
1157 if (res == 0)
1158 {
1159 Ordinal = ExOrdinals[mid];
1160 Function = RVA(BaseAddress, ExFunctions[Ordinal]);
1161 if (((ULONG)Function >= (ULONG)ExportDir) &&
1162 ((ULONG)Function < (ULONG)ExportDir + (ULONG)ExportDirSize))
1163 {
1164 DPRINT("Forward: %s\n", (PCHAR)Function);
1165 Function = LdrFixupForward((PCHAR)Function);
1166 if (Function == NULL)
1167 {
1168 DPRINT1("LdrGetExportByName(): failed to find %s\n",SymbolName);
1169 }
1170 return Function;
1171 }
1172 if (Function != NULL)
1173 return Function;
1174 }
1175 else if (minn == maxn)
1176 {
1177 DPRINT("LdrGetExportByName(): binary search failed\n");
1178 break;
1179 }
1180 else if (res > 0)
1181 {
1182 maxn = mid - 1;
1183 }
1184 else
1185 {
1186 minn = mid + 1;
1187 }
1188 }
1189
1190 DPRINT1("LdrGetExportByName(): failed to find %s\n",SymbolName);
1191 return (PVOID)NULL;
1192 }
1193
1194
1195 /**********************************************************************
1196 * NAME LOCAL
1197 * LdrPerformRelocations
1198 *
1199 * DESCRIPTION
1200 * Relocate a DLL's memory image.
1201 *
1202 * ARGUMENTS
1203 *
1204 * RETURN VALUE
1205 *
1206 * REVISIONS
1207 *
1208 * NOTE
1209 *
1210 */
1211 static NTSTATUS
1212 LdrPerformRelocations(PIMAGE_NT_HEADERS NTHeaders,
1213 PVOID ImageBase)
1214 {
1215 PIMAGE_DATA_DIRECTORY RelocationDDir;
1216 PIMAGE_BASE_RELOCATION RelocationDir, RelocationEnd;
1217 ULONG Count, ProtectSize, OldProtect, OldProtect2;
1218 PVOID Page, ProtectPage, ProtectPage2;
1219 PUSHORT TypeOffset;
1220 ULONG_PTR Delta;
1221 NTSTATUS Status;
1222
1223 if (NTHeaders->FileHeader.Characteristics & IMAGE_FILE_RELOCS_STRIPPED)
1224 {
1225 return STATUS_UNSUCCESSFUL;
1226 }
1227
1228 RelocationDDir =
1229 &NTHeaders->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_BASERELOC];
1230
1231 if (RelocationDDir->VirtualAddress == 0 || RelocationDDir->Size == 0)
1232 {
1233 return STATUS_SUCCESS;
1234 }
1235
1236 ProtectSize = PAGE_SIZE;
1237 Delta = (ULONG_PTR)ImageBase - NTHeaders->OptionalHeader.ImageBase;
1238 RelocationDir = (PIMAGE_BASE_RELOCATION)((ULONG_PTR)ImageBase +
1239 RelocationDDir->VirtualAddress);
1240 RelocationEnd = (PIMAGE_BASE_RELOCATION)((ULONG_PTR)ImageBase +
1241 RelocationDDir->VirtualAddress + RelocationDDir->Size);
1242
1243 while (RelocationDir < RelocationEnd &&
1244 RelocationDir->SizeOfBlock > 0)
1245 {
1246 Count = (RelocationDir->SizeOfBlock - sizeof(IMAGE_BASE_RELOCATION)) /
1247 sizeof(USHORT);
1248 Page = (PVOID)((ULONG_PTR)ImageBase + (ULONG_PTR)RelocationDir->VirtualAddress);
1249 TypeOffset = (PUSHORT)(RelocationDir + 1);
1250
1251 /* Unprotect the page(s) we're about to relocate. */
1252 ProtectPage = Page;
1253 Status = NtProtectVirtualMemory(NtCurrentProcess(),
1254 &ProtectPage,
1255 &ProtectSize,
1256 PAGE_READWRITE,
1257 &OldProtect);
1258 if (!NT_SUCCESS(Status))
1259 {
1260 DPRINT1("Failed to unprotect relocation target.\n");
1261 return Status;
1262 }
1263
1264 if (RelocationDir->VirtualAddress + PAGE_SIZE <
1265 NTHeaders->OptionalHeader.SizeOfImage)
1266 {
1267 ProtectPage2 = (PVOID)((ULONG_PTR)ProtectPage + PAGE_SIZE);
1268 Status = NtProtectVirtualMemory(NtCurrentProcess(),
1269 &ProtectPage2,
1270 &ProtectSize,
1271 PAGE_READWRITE,
1272 &OldProtect2);
1273 if (!NT_SUCCESS(Status))
1274 {
1275 DPRINT1("Failed to unprotect relocation target (2).\n");
1276 NtProtectVirtualMemory(NtCurrentProcess(),
1277 &ProtectPage,
1278 &ProtectSize,
1279 OldProtect,
1280 &OldProtect);
1281 return Status;
1282 }
1283 }
1284 else
1285 {
1286 ProtectPage2 = NULL;
1287 }
1288
1289 RelocationDir = LdrProcessRelocationBlock(Page,
1290 Count,
1291 TypeOffset,
1292 Delta);
1293 if (RelocationDir == NULL)
1294 return STATUS_UNSUCCESSFUL;
1295
1296 /* Restore old page protection. */
1297 NtProtectVirtualMemory(NtCurrentProcess(),
1298 &ProtectPage,
1299 &ProtectSize,
1300 OldProtect,
1301 &OldProtect);
1302
1303 if (ProtectPage2 != NULL)
1304 {
1305 NtProtectVirtualMemory(NtCurrentProcess(),
1306 &ProtectPage2,
1307 &ProtectSize,
1308 OldProtect2,
1309 &OldProtect2);
1310 }
1311 }
1312
1313 return STATUS_SUCCESS;
1314 }
1315
1316 static NTSTATUS
1317 LdrpGetOrLoadModule(PWCHAR SerachPath,
1318 PCHAR Name,
1319 PLDR_DATA_TABLE_ENTRY* Module,
1320 BOOLEAN Load)
1321 {
1322 UNICODE_STRING DllName;
1323 NTSTATUS Status;
1324
1325 DPRINT("LdrpGetOrLoadModule() called for %s\n", Name);
1326
1327 RtlCreateUnicodeStringFromAsciiz (&DllName, Name);
1328
1329 Status = LdrFindEntryForName (&DllName, Module, Load);
1330 if (Load && !NT_SUCCESS(Status))
1331 {
1332 Status = LdrpLoadModule(SerachPath,
1333 NtCurrentPeb()->Ldr->Initialized ? 0 : LDRP_PROCESS_CREATION_TIME,
1334 &DllName,
1335 Module,
1336 NULL);
1337 if (NT_SUCCESS(Status))
1338 {
1339 Status = LdrFindEntryForName (&DllName, Module, FALSE);
1340 }
1341 if (!NT_SUCCESS(Status))
1342 {
1343 DPRINT1("failed to load %wZ\n", &DllName);
1344 }
1345 }
1346 RtlFreeUnicodeString (&DllName);
1347 return Status;
1348 }
1349
1350 static NTSTATUS
1351 LdrpProcessImportDirectoryEntry(PLDR_DATA_TABLE_ENTRY Module,
1352 PLDR_DATA_TABLE_ENTRY ImportedModule,
1353 PIMAGE_IMPORT_DESCRIPTOR ImportModuleDirectory)
1354 {
1355 NTSTATUS Status;
1356 PVOID* ImportAddressList;
1357 PULONG FunctionNameList;
1358 PVOID IATBase;
1359 ULONG OldProtect;
1360 ULONG Ordinal;
1361 ULONG IATSize;
1362
1363 if (ImportModuleDirectory == NULL || ImportModuleDirectory->Name == 0)
1364 {
1365 return STATUS_UNSUCCESSFUL;
1366 }
1367
1368 /* Get the import address list. */
1369 ImportAddressList = (PVOID *)((ULONG_PTR)Module->DllBase + (ULONG_PTR)ImportModuleDirectory->FirstThunk);
1370
1371 /* Get the list of functions to import. */
1372 if (ImportModuleDirectory->OriginalFirstThunk != 0)
1373 {
1374 FunctionNameList = (PULONG) ((ULONG_PTR)Module->DllBase + (ULONG_PTR)ImportModuleDirectory->OriginalFirstThunk);
1375 }
1376 else
1377 {
1378 FunctionNameList = (PULONG)((ULONG_PTR)Module->DllBase + (ULONG_PTR)ImportModuleDirectory->FirstThunk);
1379 }
1380
1381 /* Get the size of IAT. */
1382 IATSize = 0;
1383 while (FunctionNameList[IATSize] != 0L)
1384 {
1385 IATSize++;
1386 }
1387
1388 /* Unprotect the region we are about to write into. */
1389 IATBase = (PVOID)ImportAddressList;
1390 IATSize *= sizeof(PVOID*);
1391 Status = NtProtectVirtualMemory(NtCurrentProcess(),
1392 &IATBase,
1393 &IATSize,
1394 PAGE_READWRITE,
1395 &OldProtect);
1396 if (!NT_SUCCESS(Status))
1397 {
1398 DPRINT1("Failed to unprotect IAT.\n");
1399 return(Status);
1400 }
1401
1402 /* Walk through function list and fixup addresses. */
1403 while (*FunctionNameList != 0L)
1404 {
1405 if ((*FunctionNameList) & 0x80000000)
1406 {
1407 Ordinal = (*FunctionNameList) & 0x7fffffff;
1408 *ImportAddressList = LdrGetExportByOrdinal(ImportedModule->DllBase, Ordinal);
1409 if ((*ImportAddressList) == NULL)
1410 {
1411 DPRINT1("Failed to import #%ld from %wZ\n", Ordinal, &ImportedModule->FullDllName);
1412 return STATUS_UNSUCCESSFUL;
1413 }
1414 }
1415 else
1416 {
1417 IMAGE_IMPORT_BY_NAME *pe_name;
1418 pe_name = RVA(Module->DllBase, *FunctionNameList);
1419 *ImportAddressList = LdrGetExportByName(ImportedModule->DllBase, pe_name->Name, pe_name->Hint);
1420 if ((*ImportAddressList) == NULL)
1421 {
1422 DPRINT1("Failed to import %s from %wZ\n", pe_name->Name, &ImportedModule->FullDllName);
1423 return STATUS_UNSUCCESSFUL;
1424 }
1425 }
1426 ImportAddressList++;
1427 FunctionNameList++;
1428 }
1429
1430 /* Protect the region we are about to write into. */
1431 Status = NtProtectVirtualMemory(NtCurrentProcess(),
1432 &IATBase,
1433 &IATSize,
1434 OldProtect,
1435 &OldProtect);
1436 if (!NT_SUCCESS(Status))
1437 {
1438 DPRINT1("Failed to protect IAT.\n");
1439 return(Status);
1440 }
1441
1442 return STATUS_SUCCESS;
1443 }
1444
1445 static NTSTATUS
1446 LdrpProcessImportDirectory(
1447 PLDR_DATA_TABLE_ENTRY Module,
1448 PLDR_DATA_TABLE_ENTRY ImportedModule,
1449 PCHAR ImportedName)
1450 {
1451 NTSTATUS Status;
1452 PIMAGE_IMPORT_DESCRIPTOR ImportModuleDirectory;
1453 PCHAR Name;
1454 ULONG Size;
1455
1456 DPRINT("LdrpProcessImportDirectory(%p '%wZ', '%s')\n",
1457 Module, &Module->BaseDllName, ImportedName);
1458
1459
1460 ImportModuleDirectory = (PIMAGE_IMPORT_DESCRIPTOR)
1461 RtlImageDirectoryEntryToData(Module->DllBase,
1462 TRUE,
1463 IMAGE_DIRECTORY_ENTRY_IMPORT,
1464 &Size);
1465 if (ImportModuleDirectory == NULL)
1466 {
1467 return STATUS_UNSUCCESSFUL;
1468 }
1469
1470 while (ImportModuleDirectory->Name)
1471 {
1472 Name = (PCHAR)Module->DllBase + ImportModuleDirectory->Name;
1473 if (0 == _stricmp(Name, ImportedName))
1474 {
1475 Status = LdrpProcessImportDirectoryEntry(Module,
1476 ImportedModule,
1477 ImportModuleDirectory);
1478 if (!NT_SUCCESS(Status))
1479 {
1480 return Status;
1481 }
1482 }
1483 ImportModuleDirectory++;
1484 }
1485
1486
1487 return STATUS_SUCCESS;
1488 }
1489
1490
1491 static NTSTATUS
1492 LdrpAdjustImportDirectory(PLDR_DATA_TABLE_ENTRY Module,
1493 PLDR_DATA_TABLE_ENTRY ImportedModule,
1494 PCHAR ImportedName)
1495 {
1496 PIMAGE_IMPORT_DESCRIPTOR ImportModuleDirectory;
1497 NTSTATUS Status;
1498 PVOID* ImportAddressList;
1499 PVOID Start;
1500 PVOID End;
1501 PULONG FunctionNameList;
1502 PVOID IATBase;
1503 ULONG OldProtect;
1504 ULONG Offset;
1505 ULONG IATSize;
1506 PIMAGE_NT_HEADERS NTHeaders;
1507 PCHAR Name;
1508 ULONG Size;
1509
1510 DPRINT("LdrpAdjustImportDirectory(Module %p '%wZ', %p '%wZ', '%s')\n",
1511 Module, &Module->BaseDllName, ImportedModule, &ImportedModule->BaseDllName, ImportedName);
1512
1513 ImportModuleDirectory = (PIMAGE_IMPORT_DESCRIPTOR)
1514 RtlImageDirectoryEntryToData(Module->DllBase,
1515 TRUE,
1516 IMAGE_DIRECTORY_ENTRY_IMPORT,
1517 &Size);
1518 if (ImportModuleDirectory == NULL)
1519 {
1520 return STATUS_UNSUCCESSFUL;
1521 }
1522
1523 while (ImportModuleDirectory->Name)
1524 {
1525 Name = (PCHAR)Module->DllBase + ImportModuleDirectory->Name;
1526 if (0 == _stricmp(Name, (PCHAR)ImportedName))
1527 {
1528
1529 /* Get the import address list. */
1530 ImportAddressList = (PVOID *)((ULONG_PTR)Module->DllBase + (ULONG_PTR)ImportModuleDirectory->FirstThunk);
1531
1532 /* Get the list of functions to import. */
1533 if (ImportModuleDirectory->OriginalFirstThunk != 0)
1534 {
1535 FunctionNameList = (PULONG) ((ULONG_PTR)Module->DllBase + (ULONG_PTR)ImportModuleDirectory->OriginalFirstThunk);
1536 }
1537 else
1538 {
1539 FunctionNameList = (PULONG)((ULONG_PTR)Module->DllBase + (ULONG_PTR)ImportModuleDirectory->FirstThunk);
1540 }
1541
1542 /* Get the size of IAT. */
1543 IATSize = 0;
1544 while (FunctionNameList[IATSize] != 0L)
1545 {
1546 IATSize++;
1547 }
1548
1549 /* Unprotect the region we are about to write into. */
1550 IATBase = (PVOID)ImportAddressList;
1551 IATSize *= sizeof(PVOID*);
1552 Status = NtProtectVirtualMemory(NtCurrentProcess(),
1553 &IATBase,
1554 &IATSize,
1555 PAGE_READWRITE,
1556 &OldProtect);
1557 if (!NT_SUCCESS(Status))
1558 {
1559 DPRINT1("Failed to unprotect IAT.\n");
1560 return(Status);
1561 }
1562
1563 NTHeaders = RtlImageNtHeader (ImportedModule->DllBase);
1564 Start = (PVOID)NTHeaders->OptionalHeader.ImageBase;
1565 End = (PVOID)((ULONG_PTR)Start + ImportedModule->SizeOfImage);
1566 Offset = (ULONG)((ULONG_PTR)ImportedModule->DllBase - (ULONG_PTR)Start);
1567
1568 /* Walk through function list and fixup addresses. */
1569 while (*FunctionNameList != 0L)
1570 {
1571 if (*ImportAddressList >= Start && *ImportAddressList < End)
1572 {
1573 (*ImportAddressList) = (PVOID)((ULONG_PTR)(*ImportAddressList) + Offset);
1574 }
1575 ImportAddressList++;
1576 FunctionNameList++;
1577 }
1578
1579 /* Protect the region we are about to write into. */
1580 Status = NtProtectVirtualMemory(NtCurrentProcess(),
1581 &IATBase,
1582 &IATSize,
1583 OldProtect,
1584 &OldProtect);
1585 if (!NT_SUCCESS(Status))
1586 {
1587 DPRINT1("Failed to protect IAT.\n");
1588 return(Status);
1589 }
1590 }
1591 ImportModuleDirectory++;
1592 }
1593 return STATUS_SUCCESS;
1594 }
1595
1596
1597 /**********************************************************************
1598 * NAME LOCAL
1599 * LdrFixupImports
1600 *
1601 * DESCRIPTION
1602 * Compute the entry point for every symbol the DLL imports
1603 * from other modules.
1604 *
1605 * ARGUMENTS
1606 *
1607 * RETURN VALUE
1608 *
1609 * REVISIONS
1610 *
1611 * NOTE
1612 *
1613 */
1614 static NTSTATUS
1615 LdrFixupImports(IN PWSTR SearchPath OPTIONAL,
1616 IN PLDR_DATA_TABLE_ENTRY Module)
1617 {
1618 PIMAGE_IMPORT_DESCRIPTOR ImportModuleDirectory;
1619 PIMAGE_IMPORT_DESCRIPTOR ImportModuleDirectoryCurrent;
1620 PIMAGE_BOUND_IMPORT_DESCRIPTOR BoundImportDescriptor;
1621 PIMAGE_BOUND_IMPORT_DESCRIPTOR BoundImportDescriptorCurrent;
1622 PIMAGE_TLS_DIRECTORY TlsDirectory;
1623 ULONG TlsSize = 0;
1624 NTSTATUS Status;
1625 PLDR_DATA_TABLE_ENTRY ImportedModule;
1626 PCHAR ImportedName;
1627 ULONG Size;
1628
1629 DPRINT("LdrFixupImports(SearchPath %S, Module %p)\n", SearchPath, Module);
1630
1631 /* Check for tls data */
1632 TlsDirectory = (PIMAGE_TLS_DIRECTORY)
1633 RtlImageDirectoryEntryToData(Module->DllBase,
1634 TRUE,
1635 IMAGE_DIRECTORY_ENTRY_TLS,
1636 &Size);
1637 if (TlsDirectory)
1638 {
1639 TlsSize = TlsDirectory->EndAddressOfRawData
1640 - TlsDirectory->StartAddressOfRawData
1641 + TlsDirectory->SizeOfZeroFill;
1642 if (TlsSize > 0 &&
1643 NtCurrentPeb()->Ldr->Initialized)
1644 {
1645 TRACE_LDR("Trying to load dynamicly %wZ which contains a tls directory\n",
1646 &Module->BaseDllName);
1647 return STATUS_UNSUCCESSFUL;
1648 }
1649 }
1650 /*
1651 * Process each import module.
1652 */
1653 ImportModuleDirectory = (PIMAGE_IMPORT_DESCRIPTOR)
1654 RtlImageDirectoryEntryToData(Module->DllBase,
1655 TRUE,
1656 IMAGE_DIRECTORY_ENTRY_IMPORT,
1657 &Size);
1658
1659 BoundImportDescriptor = (PIMAGE_BOUND_IMPORT_DESCRIPTOR)
1660 RtlImageDirectoryEntryToData(Module->DllBase,
1661 TRUE,
1662 IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT,
1663 &Size);
1664
1665 if (BoundImportDescriptor != NULL && ImportModuleDirectory == NULL)
1666 {
1667 DPRINT1("%wZ has only a bound import directory\n", &Module->BaseDllName);
1668 return STATUS_UNSUCCESSFUL;
1669 }
1670 if (BoundImportDescriptor)
1671 {
1672 DPRINT("BoundImportDescriptor %p\n", BoundImportDescriptor);
1673
1674 BoundImportDescriptorCurrent = BoundImportDescriptor;
1675 while (BoundImportDescriptorCurrent->OffsetModuleName)
1676 {
1677 ImportedName = (PCHAR)BoundImportDescriptor + BoundImportDescriptorCurrent->OffsetModuleName;
1678 TRACE_LDR("%wZ bound to %s\n", &Module->BaseDllName, ImportedName);
1679 Status = LdrpGetOrLoadModule(SearchPath, ImportedName, &ImportedModule, TRUE);
1680 if (!NT_SUCCESS(Status))
1681 {
1682 DPRINT1("failed to load %s\n", ImportedName);
1683 return Status;
1684 }
1685 if (Module == ImportedModule)
1686 {
1687 LdrpDecrementLoadCount(Module, FALSE);
1688 }
1689 if (ImportedModule->TimeDateStamp != BoundImportDescriptorCurrent->TimeDateStamp)
1690 {
1691 TRACE_LDR("%wZ has stale binding to %wZ\n",
1692 &Module->BaseDllName, &ImportedModule->BaseDllName);
1693 Status = LdrpProcessImportDirectory(Module, ImportedModule, ImportedName);
1694 if (!NT_SUCCESS(Status))
1695 {
1696 DPRINT1("failed to import %s\n", ImportedName);
1697 return Status;
1698 }
1699 }
1700 else
1701 {
1702 BOOLEAN WrongForwarder;
1703 WrongForwarder = FALSE;
1704 if (ImportedModule->Flags & LDRP_IMAGE_NOT_AT_BASE)
1705 {
1706 TRACE_LDR("%wZ has stale binding to %s\n",
1707 &Module->BaseDllName, ImportedName);
1708 }
1709 else
1710 {
1711 TRACE_LDR("%wZ has correct binding to %wZ\n",
1712 &Module->BaseDllName, &ImportedModule->BaseDllName);
1713 }
1714 if (BoundImportDescriptorCurrent->NumberOfModuleForwarderRefs)
1715 {
1716 PIMAGE_BOUND_FORWARDER_REF BoundForwarderRef;
1717 ULONG i;
1718 PLDR_DATA_TABLE_ENTRY ForwarderModule;
1719 PCHAR ForwarderName;
1720
1721 BoundForwarderRef = (PIMAGE_BOUND_FORWARDER_REF)(BoundImportDescriptorCurrent + 1);
1722 for (i = 0; i < BoundImportDescriptorCurrent->NumberOfModuleForwarderRefs; i++, BoundForwarderRef++)
1723 {
1724 ForwarderName = (PCHAR)BoundImportDescriptor + BoundForwarderRef->OffsetModuleName;
1725 TRACE_LDR("%wZ bound to %s via forwardes from %s\n",
1726 &Module->BaseDllName, ForwarderName, ImportedName);
1727 Status = LdrpGetOrLoadModule(SearchPath, ForwarderName, &ForwarderModule, TRUE);
1728 if (!NT_SUCCESS(Status))
1729 {
1730 DPRINT1("failed to load %s\n", ForwarderName);
1731 return Status;
1732 }
1733 if (Module == ImportedModule)
1734 {
1735 LdrpDecrementLoadCount(Module, FALSE);
1736 }
1737 if (ForwarderModule->TimeDateStamp != BoundForwarderRef->TimeDateStamp ||
1738 ForwarderModule->Flags & LDRP_IMAGE_NOT_AT_BASE)
1739 {
1740 TRACE_LDR("%wZ has stale binding to %s\n",
1741 &Module->BaseDllName, ForwarderName);
1742 WrongForwarder = TRUE;
1743 }
1744 else
1745 {
1746 TRACE_LDR("%wZ has correct binding to %s\n",
1747 &Module->BaseDllName, ForwarderName);
1748 }
1749 }
1750 }
1751 if (WrongForwarder ||
1752 ImportedModule->Flags & LDRP_IMAGE_NOT_AT_BASE)
1753 {
1754 Status = LdrpProcessImportDirectory(Module, ImportedModule, ImportedName);
1755 if (!NT_SUCCESS(Status))
1756 {
1757 DPRINT1("failed to import %s\n", ImportedName);
1758 return Status;
1759 }
1760 }
1761 else if (ImportedModule->Flags & LDRP_IMAGE_NOT_AT_BASE)
1762 {
1763 TRACE_LDR("Adjust imports for %s from %wZ\n",
1764 ImportedName, &Module->BaseDllName);
1765 Status = LdrpAdjustImportDirectory(Module, ImportedModule, ImportedName);
1766 if (!NT_SUCCESS(Status))
1767 {
1768 DPRINT1("failed to adjust import entries for %s\n", ImportedName);
1769 return Status;
1770 }
1771 }
1772 else if (WrongForwarder)
1773 {
1774 /*
1775 * FIXME:
1776 * Update only forwarders
1777 */
1778 TRACE_LDR("Stale BIND %s from %wZ\n",
1779 ImportedName, &Module->BaseDllName);
1780 Status = LdrpProcessImportDirectory(Module, ImportedModule, ImportedName);
1781 if (!NT_SUCCESS(Status))
1782 {
1783 DPRINT1("faild to import %s\n", ImportedName);
1784 return Status;
1785 }
1786 }
1787 else
1788 {
1789 /* nothing to do */
1790 }
1791 }
1792 BoundImportDescriptorCurrent += BoundImportDescriptorCurrent->NumberOfModuleForwarderRefs + 1;
1793 }
1794 }
1795 else if (ImportModuleDirectory)
1796 {
1797 DPRINT("ImportModuleDirectory %p\n", ImportModuleDirectory);
1798
1799 ImportModuleDirectoryCurrent = ImportModuleDirectory;
1800 while (ImportModuleDirectoryCurrent->Name)
1801 {
1802 ImportedName = (PCHAR)Module->DllBase + ImportModuleDirectoryCurrent->Name;
1803 TRACE_LDR("%wZ imports functions from %s\n", &Module->BaseDllName, ImportedName);
1804
1805 Status = LdrpGetOrLoadModule(SearchPath, ImportedName, &ImportedModule, TRUE);
1806 if (!NT_SUCCESS(Status))
1807 {
1808 DPRINT1("failed to load %s\n", ImportedName);
1809 return Status;
1810 }
1811 if (Module == ImportedModule)
1812 {
1813 LdrpDecrementLoadCount(Module, FALSE);
1814 }
1815
1816 TRACE_LDR("Initializing imports for %wZ from %s\n",
1817 &Module->BaseDllName, ImportedName);
1818 Status = LdrpProcessImportDirectoryEntry(Module, ImportedModule, ImportModuleDirectoryCurrent);
1819 if (!NT_SUCCESS(Status))
1820 {
1821 DPRINT1("failed to import %s\n", ImportedName);
1822 return Status;
1823 }
1824 ImportModuleDirectoryCurrent++;
1825 }
1826 }
1827
1828 if (TlsDirectory && TlsSize > 0)
1829 {
1830 LdrpAcquireTlsSlot(Module, TlsSize, FALSE);
1831 }
1832
1833 return STATUS_SUCCESS;
1834 }
1835
1836
1837 /**********************************************************************
1838 * NAME
1839 * LdrPEStartup
1840 *
1841 * DESCRIPTION
1842 * 1. Relocate, if needed the EXE.
1843 * 2. Fixup any imported symbol.
1844 * 3. Compute the EXE's entry point.
1845 *
1846 * ARGUMENTS
1847 * ImageBase
1848 * Address at which the EXE's image
1849 * is loaded.
1850 *
1851 * SectionHandle
1852 * Handle of the section that contains
1853 * the EXE's image.
1854 *
1855 * RETURN VALUE
1856 * NULL on error; otherwise the entry point
1857 * to call for initializing the DLL.
1858 *
1859 * REVISIONS
1860 *
1861 * NOTE
1862 * 04.01.2004 hb Previous this function was used for all images (dll + exe).
1863 * Currently the function is only used for the exe.
1864 */
1865 PEPFUNC LdrPEStartup (PVOID ImageBase,
1866 HANDLE SectionHandle,
1867 PLDR_DATA_TABLE_ENTRY* Module,
1868 PWSTR FullDosName)
1869 {
1870 NTSTATUS Status;
1871 PEPFUNC EntryPoint = NULL;
1872 PIMAGE_DOS_HEADER DosHeader;
1873 PIMAGE_NT_HEADERS NTHeaders;
1874 PLDR_DATA_TABLE_ENTRY tmpModule;
1875
1876 DPRINT("LdrPEStartup(ImageBase %p SectionHandle %p)\n",
1877 ImageBase, SectionHandle);
1878
1879 /*
1880 * Overlay DOS and WNT headers structures
1881 * to the DLL's image.
1882 */
1883 DosHeader = (PIMAGE_DOS_HEADER) ImageBase;
1884 NTHeaders = (PIMAGE_NT_HEADERS) ((ULONG_PTR)ImageBase + DosHeader->e_lfanew);
1885
1886 /*
1887 * If the base address is different from the
1888 * one the DLL is actually loaded, perform any
1889 * relocation.
1890 */
1891 if (ImageBase != (PVOID) NTHeaders->OptionalHeader.ImageBase)
1892 {
1893 DPRINT("LDR: Performing relocations\n");
1894 Status = LdrPerformRelocations(NTHeaders, ImageBase);
1895 if (!NT_SUCCESS(Status))
1896 {
1897 DPRINT1("LdrPerformRelocations() failed\n");
1898 return NULL;
1899 }
1900 }
1901
1902 if (Module != NULL)
1903 {
1904 *Module = LdrAddModuleEntry(ImageBase, NTHeaders, FullDosName);
1905 (*Module)->SectionPointer = SectionHandle;
1906 }
1907 else
1908 {
1909 Module = &tmpModule;
1910 Status = LdrFindEntryForAddress(ImageBase, Module);
1911 if (!NT_SUCCESS(Status))
1912 {
1913 return NULL;
1914 }
1915 }
1916
1917 if (ImageBase != (PVOID) NTHeaders->OptionalHeader.ImageBase)
1918 {
1919 (*Module)->Flags |= LDRP_IMAGE_NOT_AT_BASE;
1920 }
1921
1922 /*
1923 * If the DLL's imports symbols from other
1924 * modules, fixup the imported calls entry points.
1925 */
1926 DPRINT("About to fixup imports\n");
1927 Status = LdrFixupImports(NULL, *Module);
1928 if (!NT_SUCCESS(Status))
1929 {
1930 DPRINT1("LdrFixupImports() failed for %wZ\n", &(*Module)->BaseDllName);
1931 return NULL;
1932 }
1933 DPRINT("Fixup done\n");
1934 RtlEnterCriticalSection(NtCurrentPeb()->LoaderLock);
1935 Status = LdrpInitializeTlsForProccess();
1936 if (NT_SUCCESS(Status))
1937 {
1938 Status = LdrpAttachProcess();
1939 }
1940 if (NT_SUCCESS(Status))
1941 {
1942 LdrpTlsCallback(*Module, DLL_PROCESS_ATTACH);
1943 }
1944
1945
1946 RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
1947 if (!NT_SUCCESS(Status))
1948 {
1949 return NULL;
1950 }
1951
1952 /*
1953 * Compute the DLL's entry point's address.
1954 */
1955 DPRINT("ImageBase = %p\n", ImageBase);
1956 DPRINT("AddressOfEntryPoint = 0x%lx\n",(ULONG)NTHeaders->OptionalHeader.AddressOfEntryPoint);
1957 if (NTHeaders->OptionalHeader.AddressOfEntryPoint != 0)
1958 {
1959 EntryPoint = (PEPFUNC) ((ULONG_PTR)ImageBase
1960 + NTHeaders->OptionalHeader.AddressOfEntryPoint);
1961 }
1962 DPRINT("LdrPEStartup() = %p\n",EntryPoint);
1963 return EntryPoint;
1964 }
1965
1966 static NTSTATUS
1967 LdrpLoadModule(IN PWSTR SearchPath OPTIONAL,
1968 IN ULONG LoadFlags,
1969 IN PUNICODE_STRING Name,
1970 PLDR_DATA_TABLE_ENTRY *Module,
1971 PVOID *BaseAddress OPTIONAL)
1972 {
1973 UNICODE_STRING AdjustedName;
1974 UNICODE_STRING FullDosName;
1975 NTSTATUS Status;
1976 PLDR_DATA_TABLE_ENTRY tmpModule;
1977 HANDLE SectionHandle;
1978 ULONG ViewSize;
1979 PVOID ImageBase;
1980 PIMAGE_NT_HEADERS NtHeaders;
1981 BOOLEAN MappedAsDataFile;
1982
1983 if (Module == NULL)
1984 {
1985 Module = &tmpModule;
1986 }
1987 /* adjust the full dll name */
1988 LdrAdjustDllName(&AdjustedName, Name, FALSE);
1989
1990 DPRINT("%wZ\n", &AdjustedName);
1991
1992 MappedAsDataFile = FALSE;
1993 /* Test if dll is already loaded */
1994 Status = LdrFindEntryForName(&AdjustedName, Module, TRUE);
1995 if (NT_SUCCESS(Status))
1996 {
1997 RtlFreeUnicodeString(&AdjustedName);
1998 if (NULL != BaseAddress)
1999 {
2000 *BaseAddress = (*Module)->DllBase;
2001 }
2002 }
2003 else
2004 {
2005 /* Open or create dll image section */
2006 Status = LdrpMapKnownDll(&AdjustedName, &FullDosName, &SectionHandle);
2007 if (!NT_SUCCESS(Status))
2008 {
2009 MappedAsDataFile = (0 != (LoadFlags & LOAD_LIBRARY_AS_DATAFILE));
2010 Status = LdrpMapDllImageFile(SearchPath, &AdjustedName, &FullDosName,
2011 MappedAsDataFile, &SectionHandle);
2012 }
2013 if (!NT_SUCCESS(Status))
2014 {
2015 DPRINT1("Failed to create or open dll section of '%wZ' (Status %lx)\n", &AdjustedName, Status);
2016 RtlFreeUnicodeString(&AdjustedName);
2017 return Status;
2018 }
2019 RtlFreeUnicodeString(&AdjustedName);
2020 /* Map the dll into the process */
2021 ViewSize = 0;
2022 ImageBase = 0;
2023 Status = NtMapViewOfSection(SectionHandle,
2024 NtCurrentProcess(),
2025 &ImageBase,
2026 0,
2027 0,
2028 NULL,
2029 &ViewSize,
2030 0,
2031 MEM_COMMIT,
2032 PAGE_READONLY);
2033 if (!NT_SUCCESS(Status))
2034 {
2035 DPRINT1("map view of section failed (Status 0x%08lx)\n", Status);
2036 RtlFreeUnicodeString(&FullDosName);
2037 NtClose(SectionHandle);
2038 return(Status);
2039 }
2040 if (NULL != BaseAddress)
2041 {
2042 *BaseAddress = ImageBase;
2043 }
2044 /* Get and check the NT headers */
2045 NtHeaders = RtlImageNtHeader(ImageBase);
2046 if (NtHeaders == NULL)
2047 {
2048 DPRINT1("RtlImageNtHeaders() failed\n");
2049 NtUnmapViewOfSection (NtCurrentProcess (), ImageBase);
2050 NtClose (SectionHandle);
2051 RtlFreeUnicodeString(&FullDosName);
2052 return STATUS_UNSUCCESSFUL;
2053 }
2054 DPRINT("Mapped %wZ at %x\n", &FullDosName, ImageBase);
2055 if (MappedAsDataFile)
2056 {
2057 ASSERT(NULL != BaseAddress);
2058 if (NULL != BaseAddress)
2059 {
2060 *BaseAddress = (PVOID) ((char *) *BaseAddress + 1);
2061 }
2062 *Module = NULL;
2063 RtlFreeUnicodeString(&FullDosName);
2064 NtClose(SectionHandle);
2065 return STATUS_SUCCESS;
2066 }
2067 /* If the base address is different from the
2068 * one the DLL is actually loaded, perform any
2069 * relocation. */
2070 if (ImageBase != (PVOID) NtHeaders->OptionalHeader.ImageBase)
2071 {
2072 DPRINT1("Relocating (%lx -> %p) %wZ\n",
2073 NtHeaders->OptionalHeader.ImageBase, ImageBase, &FullDosName);
2074 Status = LdrPerformRelocations(NtHeaders, ImageBase);
2075 if (!NT_SUCCESS(Status))
2076 {
2077 DPRINT1("LdrPerformRelocations() failed\n");
2078 NtUnmapViewOfSection (NtCurrentProcess (), ImageBase);
2079 NtClose (SectionHandle);
2080 RtlFreeUnicodeString(&FullDosName);
2081 return STATUS_UNSUCCESSFUL;
2082 }
2083 }
2084 *Module = LdrAddModuleEntry(ImageBase, NtHeaders, FullDosName.Buffer);
2085 (*Module)->SectionPointer = SectionHandle;
2086 if (ImageBase != (PVOID) NtHeaders->OptionalHeader.ImageBase)
2087 {
2088 (*Module)->Flags |= LDRP_IMAGE_NOT_AT_BASE;
2089 }
2090 if (NtHeaders->FileHeader.Characteristics & IMAGE_FILE_DLL)
2091 {
2092 (*Module)->Flags |= LDRP_IMAGE_DLL;
2093 }
2094 /* fixup the imported calls entry points */
2095 Status = LdrFixupImports(SearchPath, *Module);
2096 if (!NT_SUCCESS(Status))
2097 {
2098 DPRINT1("LdrFixupImports failed for %wZ, status=%x\n", &(*Module)->BaseDllName, Status);
2099 return Status;
2100 }
2101 #if defined(DBG) || defined(KDBG)
2102 LdrpLoadUserModuleSymbols(*Module);
2103 #endif /* DBG || KDBG */
2104 RtlEnterCriticalSection(NtCurrentPeb()->LoaderLock);
2105 InsertTailList(&NtCurrentPeb()->Ldr->InInitializationOrderModuleList,
2106 &(*Module)->InInitializationOrderModuleList);
2107 RtlLeaveCriticalSection (NtCurrentPeb()->LoaderLock);
2108 }
2109 return STATUS_SUCCESS;
2110 }
2111
2112 static NTSTATUS
2113 LdrpUnloadModule(PLDR_DATA_TABLE_ENTRY Module,
2114 BOOLEAN Unload)
2115 {
2116 PIMAGE_IMPORT_DESCRIPTOR ImportModuleDirectory;
2117 PIMAGE_BOUND_IMPORT_DESCRIPTOR BoundImportDescriptor;
2118 PIMAGE_BOUND_IMPORT_DESCRIPTOR BoundImportDescriptorCurrent;
2119 PCHAR ImportedName;
2120 PLDR_DATA_TABLE_ENTRY ImportedModule;
2121 NTSTATUS Status;
2122 LONG LoadCount;
2123 ULONG Size;
2124
2125 if (Unload)
2126 {
2127 RtlEnterCriticalSection(NtCurrentPeb()->LoaderLock);
2128 }
2129
2130 LoadCount = LdrpDecrementLoadCount(Module, Unload);
2131
2132 TRACE_LDR("Unload %wZ, LoadCount %d\n", &Module->BaseDllName, LoadCount);
2133
2134 if (LoadCount == 0)
2135 {
2136 /* ?????????????????? */
2137 }
2138 else if (LoadCount == 1)
2139 {
2140 BoundImportDescriptor = (PIMAGE_BOUND_IMPORT_DESCRIPTOR)
2141 RtlImageDirectoryEntryToData(Module->DllBase,
2142 TRUE,
2143 IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT,
2144 &Size);
2145 if (BoundImportDescriptor)
2146 {
2147 /* dereferencing all imported modules, use the bound import descriptor */
2148 BoundImportDescriptorCurrent = BoundImportDescriptor;
2149 while (BoundImportDescriptorCurrent->OffsetModuleName)
2150 {
2151 ImportedName = (PCHAR)BoundImportDescriptor + BoundImportDescriptorCurrent->OffsetModuleName;
2152 TRACE_LDR("%wZ trys to unload %s\n", &Module->BaseDllName, ImportedName);
2153 Status = LdrpGetOrLoadModule(NULL, ImportedName, &ImportedModule, FALSE);
2154 if (!NT_SUCCESS(Status))
2155 {
2156 DPRINT1("unable to found imported modul %s\n", ImportedName);
2157 }
2158 else
2159 {
2160 if (Module != ImportedModule)
2161 {
2162 Status = LdrpUnloadModule(ImportedModule, FALSE);
2163 if (!NT_SUCCESS(Status))
2164 {
2165 DPRINT1("unable to unload %s\n", ImportedName);
2166 }
2167 }
2168 }
2169 BoundImportDescriptorCurrent++;
2170 }
2171 }
2172 else
2173 {
2174 ImportModuleDirectory = (PIMAGE_IMPORT_DESCRIPTOR)
2175 RtlImageDirectoryEntryToData(Module->DllBase,
2176 TRUE,
2177 IMAGE_DIRECTORY_ENTRY_IMPORT,
2178 &Size);
2179 if (ImportModuleDirectory)
2180 {
2181 /* dereferencing all imported modules, use the import descriptor */
2182 while (ImportModuleDirectory->Name)
2183 {
2184 ImportedName = (PCHAR)Module->DllBase + ImportModuleDirectory->Name;
2185 TRACE_LDR("%wZ trys to unload %s\n", &Module->BaseDllName, ImportedName);
2186 Status = LdrpGetOrLoadModule(NULL, ImportedName, &ImportedModule, FALSE);
2187 if (!NT_SUCCESS(Status))
2188 {
2189 DPRINT1("unable to found imported modul %s\n", ImportedName);
2190 }
2191 else
2192 {
2193 if (Module != ImportedModule)
2194 {
2195 Status = LdrpUnloadModule(ImportedModule, FALSE);
2196 if (!NT_SUCCESS(Status))
2197 {
2198 DPRINT1("unable to unload %s\n", ImportedName);
2199 }
2200 }
2201 }
2202 ImportModuleDirectory++;
2203 }
2204 }
2205 }
2206 }
2207
2208 if (Unload)
2209 {
2210 LdrpDetachProcess(FALSE);
2211 RtlLeaveCriticalSection (NtCurrentPeb()->LoaderLock);
2212 }
2213 return STATUS_SUCCESS;
2214
2215 }
2216
2217 /*
2218 * @implemented
2219 */
2220 NTSTATUS NTAPI
2221 LdrUnloadDll (IN PVOID BaseAddress)
2222 {
2223 PLDR_DATA_TABLE_ENTRY Module;
2224 NTSTATUS Status;
2225
2226 if (BaseAddress == NULL)
2227 return STATUS_SUCCESS;
2228
2229 if (LdrMappedAsDataFile(&BaseAddress))
2230 {
2231 Status = NtUnmapViewOfSection(NtCurrentProcess(), BaseAddress);
2232 }
2233 else
2234 {
2235 Status = LdrFindEntryForAddress(BaseAddress, &Module);
2236 if (NT_SUCCESS(Status))
2237 {
2238 TRACE_LDR("LdrUnloadDll, , unloading %wZ\n", &Module->BaseDllName);
2239 Status = LdrpUnloadModule(Module, TRUE);
2240 }
2241 }
2242
2243 return Status;
2244 }
2245
2246 /*
2247 * @implemented
2248 */
2249 NTSTATUS NTAPI
2250 LdrDisableThreadCalloutsForDll(IN PVOID BaseAddress)
2251 {
2252 PLIST_ENTRY ModuleListHead;
2253 PLIST_ENTRY Entry;
2254 PLDR_DATA_TABLE_ENTRY Module;
2255 NTSTATUS Status;
2256
2257 DPRINT("LdrDisableThreadCalloutsForDll (BaseAddress %p)\n", BaseAddress);
2258
2259 Status = STATUS_DLL_NOT_FOUND;
2260 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
2261 ModuleListHead = &NtCurrentPeb()->Ldr->InLoadOrderModuleList;
2262 Entry = ModuleListHead->Flink;
2263 while (Entry != ModuleListHead)
2264 {
2265 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InLoadOrderModuleList);
2266
2267 DPRINT("BaseDllName %wZ BaseAddress %p\n", &Module->BaseDllName, Module->DllBase);
2268
2269 if (Module->DllBase == BaseAddress)
2270 {
2271 if (Module->TlsIndex == 0xFFFF)
2272 {
2273 Module->Flags |= LDRP_DONT_CALL_FOR_THREADS;
2274 Status = STATUS_SUCCESS;
2275 }
2276 break;
2277 }
2278 Entry = Entry->Flink;
2279 }
2280 RtlLeaveCriticalSection (NtCurrentPeb()->LoaderLock);
2281 return Status;
2282 }
2283
2284 /*
2285 * @implemented
2286 */
2287 NTSTATUS NTAPI
2288 LdrGetDllHandle(IN PWSTR DllPath OPTIONAL,
2289 IN PULONG DllCharacteristics,
2290 IN PUNICODE_STRING DllName,
2291 OUT PVOID *DllHandle)
2292 {
2293 PLDR_DATA_TABLE_ENTRY Module;
2294 NTSTATUS Status;
2295
2296 TRACE_LDR("LdrGetDllHandle, searching for %wZ from %S\n",
2297 DllName, DllPath ? DllPath : L"");
2298
2299 /* NULL is the current executable */
2300 if (DllName == NULL)
2301 {
2302 *DllHandle = ExeModule->DllBase;
2303 DPRINT("BaseAddress 0x%lx\n", *DllHandle);
2304 return STATUS_SUCCESS;
2305 }
2306
2307 Status = LdrFindEntryForName(DllName, &Module, FALSE);
2308 if (NT_SUCCESS(Status))
2309 {
2310 *DllHandle = Module->DllBase;
2311 return STATUS_SUCCESS;
2312 }
2313
2314 DPRINT("Failed to find dll %wZ\n", DllName);
2315 *DllHandle = NULL;
2316 return STATUS_DLL_NOT_FOUND;
2317 }
2318
2319
2320 /*
2321 * @implemented
2322 */
2323 NTSTATUS NTAPI
2324 LdrGetProcedureAddress (IN PVOID BaseAddress,
2325 IN PANSI_STRING Name,
2326 IN ULONG Ordinal,
2327 OUT PVOID *ProcedureAddress)
2328 {
2329 if (Name && Name->Length)
2330 {
2331 TRACE_LDR("LdrGetProcedureAddress by NAME - %Z\n", Name);
2332 }
2333 else
2334 {
2335 TRACE_LDR("LdrGetProcedureAddress by ORDINAL - %d\n", Ordinal);
2336 }
2337
2338 DPRINT("LdrGetProcedureAddress (BaseAddress %p Name %Z Ordinal %lu ProcedureAddress %p)\n",
2339 BaseAddress, Name, Ordinal, ProcedureAddress);
2340
2341 if (Name && Name->Length)
2342 {
2343 /* by name */
2344 *ProcedureAddress = LdrGetExportByName(BaseAddress, (PUCHAR)Name->Buffer, 0xffff);
2345 if (*ProcedureAddress != NULL)
2346 {
2347 return STATUS_SUCCESS;
2348 }
2349 DPRINT("LdrGetProcedureAddress: Can't resolve symbol '%Z'\n", Name);
2350 }
2351 else
2352 {
2353 /* by ordinal */
2354 Ordinal &= 0x0000FFFF;
2355 *ProcedureAddress = LdrGetExportByOrdinal(BaseAddress, (WORD)Ordinal);
2356 if (*ProcedureAddress)
2357 {
2358 return STATUS_SUCCESS;
2359 }
2360 DPRINT("LdrGetProcedureAddress: Can't resolve symbol @%lu\n", Ordinal);
2361 }
2362 return STATUS_PROCEDURE_NOT_FOUND;
2363 }
2364
2365 /**********************************************************************
2366 * NAME LOCAL
2367 * LdrpDetachProcess
2368 *
2369 * DESCRIPTION
2370 * Unload dll's which are no longer referenced from others dll's
2371 *
2372 * ARGUMENTS
2373 * none
2374 *
2375 * RETURN VALUE
2376 * none
2377 *
2378 * REVISIONS
2379 *
2380 * NOTE
2381 * The loader lock must be held on enty.
2382 */
2383 static VOID
2384 LdrpDetachProcess(BOOLEAN UnloadAll)
2385 {
2386 PLIST_ENTRY ModuleListHead;
2387 PLIST_ENTRY Entry;
2388 PLDR_DATA_TABLE_ENTRY Module;
2389 static ULONG CallingCount = 0;
2390
2391 DPRINT("LdrpDetachProcess() called for %wZ\n",
2392 &ExeModule->BaseDllName);
2393
2394 CallingCount++;
2395
2396 ModuleListHead = &NtCurrentPeb()->Ldr->InInitializationOrderModuleList;
2397 Entry = ModuleListHead->Blink;
2398 while (Entry != ModuleListHead)
2399 {
2400 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InInitializationOrderModuleList);
2401 if (((UnloadAll && Module->LoadCount == 0xFFFF) || Module->LoadCount == 0) &&
2402 Module->Flags & LDRP_ENTRY_PROCESSED &&
2403 !(Module->Flags & LDRP_UNLOAD_IN_PROGRESS))
2404 {
2405 Module->Flags |= LDRP_UNLOAD_IN_PROGRESS;
2406 if (Module == LdrpLastModule)
2407 {
2408 LdrpLastModule = NULL;
2409 }
2410 if (Module->Flags & LDRP_PROCESS_ATTACH_CALLED)
2411 {
2412 TRACE_LDR("Unload %wZ - Calling entry point at %x\n",
2413 &Module->BaseDllName, Module->EntryPoint);
2414 LdrpCallDllEntry(Module, DLL_PROCESS_DETACH, (PVOID)(Module->LoadCount == 0xFFFF ? 1 : 0));
2415 }
2416 else
2417 {
2418 TRACE_LDR("Unload %wZ\n", &Module->BaseDllName);
2419 }
2420 Entry = ModuleListHead->Blink;
2421 }
2422 else
2423 {
2424 Entry = Entry->Blink;
2425 }
2426 }
2427
2428 if (CallingCount == 1)
2429 {
2430 Entry = ModuleListHead->Blink;
2431 while (Entry != ModuleListHead)
2432 {
2433 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InInitializationOrderModuleList);
2434 Entry = Entry->Blink;
2435 if (Module->Flags & LDRP_UNLOAD_IN_PROGRESS &&
2436 ((UnloadAll && Module->LoadCount != 0xFFFF) || Module->LoadCount == 0))
2437 {
2438 /* remove the module entry from the list */
2439 RemoveEntryList (&Module->InLoadOrderModuleList);
2440 RemoveEntryList (&Module->InInitializationOrderModuleList);
2441
2442 NtUnmapViewOfSection (NtCurrentProcess (), Module->DllBase);
2443 NtClose (Module->SectionPointer);
2444
2445 TRACE_LDR("%wZ unloaded\n", &Module->BaseDllName);
2446
2447 RtlFreeUnicodeString (&Module->FullDllName);
2448 RtlFreeUnicodeString (&Module->BaseDllName);
2449
2450 RtlFreeHeap (RtlGetProcessHeap (), 0, Module);
2451 }
2452 }
2453 }
2454 CallingCount--;
2455 DPRINT("LdrpDetachProcess() done\n");
2456 }
2457
2458 /**********************************************************************
2459 * NAME LOCAL
2460 * LdrpAttachProcess
2461 *
2462 * DESCRIPTION
2463 * Initialize all dll's which are prepered for loading
2464 *
2465 * ARGUMENTS
2466 * none
2467 *
2468 * RETURN VALUE
2469 * status
2470 *
2471 * REVISIONS
2472 *
2473 * NOTE
2474 * The loader lock must be held on entry.
2475 *
2476 */
2477 static NTSTATUS
2478 LdrpAttachProcess(VOID)
2479 {
2480 PLIST_ENTRY ModuleListHead;
2481 PLIST_ENTRY Entry;
2482 PLDR_DATA_TABLE_ENTRY Module;
2483 BOOLEAN Result;
2484 NTSTATUS Status = STATUS_SUCCESS;
2485
2486 DPRINT("LdrpAttachProcess() called for %wZ\n",
2487 &ExeModule->BaseDllName);
2488
2489 ModuleListHead = &NtCurrentPeb()->Ldr->InInitializationOrderModuleList;
2490 Entry = ModuleListHead->Flink;
2491 while (Entry != ModuleListHead)
2492 {
2493 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InInitializationOrderModuleList);
2494 if (!(Module->Flags & (LDRP_LOAD_IN_PROGRESS|LDRP_UNLOAD_IN_PROGRESS|LDRP_ENTRY_PROCESSED)))
2495 {
2496 Module->Flags |= LDRP_LOAD_IN_PROGRESS;
2497 TRACE_LDR("%wZ loaded - Calling init routine at %x for process attaching\n",
2498 &Module->BaseDllName, Module->EntryPoint);
2499 Result = LdrpCallDllEntry(Module, DLL_PROCESS_ATTACH, (PVOID)(Module->LoadCount == 0xFFFF ? 1 : 0));
2500 if (!Result)
2501 {
2502 Status = STATUS_DLL_INIT_FAILED;
2503 break;
2504 }
2505 if (Module->Flags & LDRP_IMAGE_DLL && Module->EntryPoint != 0)
2506 {
2507 Module->Flags |= LDRP_PROCESS_ATTACH_CALLED|LDRP_ENTRY_PROCESSED;
2508 }
2509 else
2510 {
2511 Module->Flags |= LDRP_ENTRY_PROCESSED;
2512 }
2513 Module->Flags &= ~LDRP_LOAD_IN_PROGRESS;
2514 }
2515 Entry = Entry->Flink;
2516 }
2517
2518 DPRINT("LdrpAttachProcess() done\n");
2519
2520 return Status;
2521 }
2522
2523 /*
2524 * @implemented
2525 */
2526 NTSTATUS NTAPI
2527 LdrShutdownProcess (VOID)
2528 {
2529 LdrpDetachProcess(TRUE);
2530 return STATUS_SUCCESS;
2531 }
2532
2533 /*
2534 * @implemented
2535 */
2536
2537 NTSTATUS
2538 LdrpAttachThread (VOID)
2539 {
2540 PLIST_ENTRY ModuleListHead;
2541 PLIST_ENTRY Entry;
2542 PLDR_DATA_TABLE_ENTRY Module;
2543 NTSTATUS Status;
2544
2545 DPRINT("LdrpAttachThread() called for %wZ\n",
2546 &ExeModule->BaseDllName);
2547
2548 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
2549
2550 Status = LdrpInitializeTlsForThread();
2551
2552 if (NT_SUCCESS(Status))
2553 {
2554 ModuleListHead = &NtCurrentPeb()->Ldr->InInitializationOrderModuleList;
2555 Entry = ModuleListHead->Flink;
2556
2557 while (Entry != ModuleListHead)
2558 {
2559 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InInitializationOrderModuleList);
2560 if (Module->Flags & LDRP_PROCESS_ATTACH_CALLED &&
2561 !(Module->Flags & LDRP_DONT_CALL_FOR_THREADS) &&
2562 !(Module->Flags & LDRP_UNLOAD_IN_PROGRESS))
2563 {
2564 TRACE_LDR("%wZ - Calling entry point at %x for thread attaching\n",
2565 &Module->BaseDllName, Module->EntryPoint);
2566 LdrpCallDllEntry(Module, DLL_THREAD_ATTACH, NULL);
2567 }
2568 Entry = Entry->Flink;
2569 }
2570
2571 Entry = NtCurrentPeb()->Ldr->InLoadOrderModuleList.Flink;
2572 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InLoadOrderModuleList);
2573 LdrpTlsCallback(Module, DLL_THREAD_ATTACH);
2574 }
2575
2576 RtlLeaveCriticalSection (NtCurrentPeb()->LoaderLock);
2577
2578 DPRINT("LdrpAttachThread() done\n");
2579
2580 return Status;
2581 }
2582
2583
2584 /*
2585 * @implemented
2586 */
2587 NTSTATUS NTAPI
2588 LdrShutdownThread (VOID)
2589 {
2590 PLIST_ENTRY ModuleListHead;
2591 PLIST_ENTRY Entry;
2592 PLDR_DATA_TABLE_ENTRY Module;
2593
2594 DPRINT("LdrShutdownThread() called for %wZ\n",
2595 &ExeModule->BaseDllName);
2596
2597 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
2598
2599 ModuleListHead = &NtCurrentPeb()->Ldr->InInitializationOrderModuleList;
2600 Entry = ModuleListHead->Blink;
2601 while (Entry != ModuleListHead)
2602 {
2603 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InInitializationOrderModuleList);
2604
2605 if (Module->Flags & LDRP_PROCESS_ATTACH_CALLED &&
2606 !(Module->Flags & LDRP_DONT_CALL_FOR_THREADS) &&
2607 !(Module->Flags & LDRP_UNLOAD_IN_PROGRESS))
2608 {
2609 TRACE_LDR("%wZ - Calling entry point at %x for thread detaching\n",
2610 &Module->BaseDllName, Module->EntryPoint);
2611 LdrpCallDllEntry(Module, DLL_THREAD_DETACH, NULL);
2612 }
2613 Entry = Entry->Blink;
2614 }
2615
2616 RtlLeaveCriticalSection (NtCurrentPeb()->LoaderLock);
2617
2618 if (LdrpTlsArray)
2619 {
2620 RtlFreeHeap (RtlGetProcessHeap(), 0, NtCurrentTeb()->ThreadLocalStoragePointer);
2621 }
2622
2623 DPRINT("LdrShutdownThread() done\n");
2624
2625 return STATUS_SUCCESS;
2626 }
2627
2628
2629 /***************************************************************************
2630 * NAME EXPORTED
2631 * LdrQueryProcessModuleInformation
2632 *
2633 * DESCRIPTION
2634 *
2635 * ARGUMENTS
2636 *
2637 * RETURN VALUE
2638 *
2639 * REVISIONS
2640 *
2641 * NOTE
2642 *
2643 * @implemented
2644 */
2645 NTSTATUS NTAPI
2646 LdrQueryProcessModuleInformation(IN PRTL_PROCESS_MODULES ModuleInformation OPTIONAL,
2647 IN ULONG Size OPTIONAL,
2648 OUT PULONG ReturnedSize)
2649 {
2650 PLIST_ENTRY ModuleListHead;
2651 PLIST_ENTRY Entry;
2652 PLDR_DATA_TABLE_ENTRY Module;
2653 PRTL_PROCESS_MODULE_INFORMATION ModulePtr = NULL;
2654 NTSTATUS Status = STATUS_SUCCESS;
2655 ULONG UsedSize = sizeof(ULONG);
2656 ANSI_STRING AnsiString;
2657 PCHAR p;
2658
2659 DPRINT("LdrQueryProcessModuleInformation() called\n");
2660
2661 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
2662
2663 if (ModuleInformation == NULL || Size == 0)
2664 {
2665 Status = STATUS_INFO_LENGTH_MISMATCH;
2666 }
2667 else
2668 {
2669 ModuleInformation->ModuleCount = 0;
2670 ModulePtr = &ModuleInformation->ModuleEntry[0];
2671 Status = STATUS_SUCCESS;
2672 }
2673
2674 ModuleListHead = &NtCurrentPeb()->Ldr->InLoadOrderModuleList;
2675 Entry = ModuleListHead->Flink;
2676
2677 while (Entry != ModuleListHead)
2678 {
2679 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InLoadOrderModuleList);
2680
2681 DPRINT(" Module %wZ\n",
2682 &Module->FullDllName);
2683
2684 if (UsedSize > Size)
2685 {
2686 Status = STATUS_INFO_LENGTH_MISMATCH;
2687 }
2688 else if (ModuleInformation != NULL)
2689 {
2690 ModulePtr->Reserved[0] = ModulePtr->Reserved[1] = 0; // FIXME: ??
2691 ModulePtr->Base = Module->DllBase;
2692 ModulePtr->Size = Module->SizeOfImage;
2693 ModulePtr->Flags = Module->Flags;
2694 ModulePtr->Index = 0; // FIXME: index ??
2695 ModulePtr->Unknown = 0; // FIXME: ??
2696 ModulePtr->LoadCount = Module->LoadCount;
2697
2698 AnsiString.Length = 0;
2699 AnsiString.MaximumLength = 256;
2700 AnsiString.Buffer = ModulePtr->ImageName;
2701 RtlUnicodeStringToAnsiString(&AnsiString,
2702 &Module->FullDllName,
2703 FALSE);
2704 p = strrchr(ModulePtr->ImageName, '\\');
2705 if (p != NULL)
2706 ModulePtr->ModuleNameOffset = p - ModulePtr->ImageName + 1;
2707 else
2708 ModulePtr->ModuleNameOffset = 0;
2709
2710 ModulePtr++;
2711 ModuleInformation->ModuleCount++;
2712 }
2713 UsedSize += sizeof(RTL_PROCESS_MODULE_INFORMATION);
2714
2715 Entry = Entry->Flink;
2716 }
2717
2718 RtlLeaveCriticalSection (NtCurrentPeb()->LoaderLock);
2719
2720 if (ReturnedSize != 0)
2721 *ReturnedSize = UsedSize;
2722
2723 DPRINT("LdrQueryProcessModuleInformation() done\n");
2724
2725 return(Status);
2726 }
2727
2728
2729 static BOOLEAN
2730 LdrpCheckImageChecksum (IN PVOID BaseAddress,
2731 IN ULONG ImageSize)
2732 {
2733 PIMAGE_NT_HEADERS Header;
2734 PUSHORT Ptr;
2735 ULONG Sum;
2736 ULONG CalcSum;
2737 ULONG HeaderSum;
2738 ULONG i;
2739
2740 Header = RtlImageNtHeader (BaseAddress);
2741 if (Header == NULL)
2742 return FALSE;
2743
2744 HeaderSum = Header->OptionalHeader.CheckSum;
2745 if (HeaderSum == 0)
2746 return TRUE;
2747
2748 Sum = 0;
2749 Ptr = (PUSHORT) BaseAddress;
2750 for (i = 0; i < ImageSize / sizeof (USHORT); i++)
2751 {
2752 Sum += (ULONG)*Ptr;
2753 if (HIWORD(Sum) != 0)
2754 {
2755 Sum = LOWORD(Sum) + HIWORD(Sum);
2756 }
2757 Ptr++;
2758 }
2759
2760 if (ImageSize & 1)
2761 {
2762 Sum += (ULONG)*((PUCHAR)Ptr);
2763 if (HIWORD(Sum) != 0)
2764 {
2765 Sum = LOWORD(Sum) + HIWORD(Sum);
2766 }
2767 }
2768
2769 CalcSum = (USHORT)(LOWORD(Sum) + HIWORD(Sum));
2770
2771 /* Subtract image checksum from calculated checksum. */
2772 /* fix low word of checksum */
2773 if (LOWORD(CalcSum) >= LOWORD(HeaderSum))
2774 {
2775 CalcSum -= LOWORD(HeaderSum);
2776 }
2777 else
2778 {
2779 CalcSum = ((LOWORD(CalcSum) - LOWORD(HeaderSum)) & 0xFFFF) - 1;
2780 }
2781
2782 /* fix high word of checksum */
2783 if (LOWORD(CalcSum) >= HIWORD(HeaderSum))
2784 {
2785 CalcSum -= HIWORD(HeaderSum);
2786 }
2787 else
2788 {
2789 CalcSum = ((LOWORD(CalcSum) - HIWORD(HeaderSum)) & 0xFFFF) - 1;
2790 }
2791
2792 /* add file length */
2793 CalcSum += ImageSize;
2794
2795 return (BOOLEAN)(CalcSum == HeaderSum);
2796 }
2797
2798 /*
2799 * Compute size of an image as it is actually present in virt memory
2800 * (i.e. excluding NEVER_LOAD sections)
2801 */
2802 ULONG
2803 LdrpGetResidentSize(PIMAGE_NT_HEADERS NTHeaders)
2804 {
2805 PIMAGE_SECTION_HEADER SectionHeader;
2806 unsigned SectionIndex;
2807 ULONG ResidentSize;
2808
2809 SectionHeader = (PIMAGE_SECTION_HEADER)((char *) &NTHeaders->OptionalHeader
2810 + NTHeaders->FileHeader.SizeOfOptionalHeader);
2811 ResidentSize = 0;
2812 for (SectionIndex = 0; SectionIndex < NTHeaders->FileHeader.NumberOfSections; SectionIndex++)
2813 {
2814 if (0 == (SectionHeader->Characteristics & IMAGE_SCN_LNK_REMOVE)
2815 && ResidentSize < SectionHeader->VirtualAddress + SectionHeader->Misc.VirtualSize)
2816 {
2817 ResidentSize = SectionHeader->VirtualAddress + SectionHeader->Misc.VirtualSize;
2818 }
2819 SectionHeader++;
2820 }
2821
2822 return ResidentSize;
2823 }
2824
2825
2826 /***************************************************************************
2827 * NAME EXPORTED
2828 * LdrVerifyImageMatchesChecksum
2829 *
2830 * DESCRIPTION
2831 *
2832 * ARGUMENTS
2833 *
2834 * RETURN VALUE
2835 *
2836 * REVISIONS
2837 *
2838 * NOTE
2839 *
2840 * @implemented
2841 */
2842 NTSTATUS NTAPI
2843 LdrVerifyImageMatchesChecksum (IN HANDLE FileHandle,
2844 ULONG Unknown1,
2845 ULONG Unknown2,
2846 ULONG Unknown3)
2847 {
2848 FILE_STANDARD_INFORMATION FileInfo;
2849 IO_STATUS_BLOCK IoStatusBlock;
2850 HANDLE SectionHandle;
2851 ULONG ViewSize;
2852 PVOID BaseAddress;
2853 BOOLEAN Result;
2854 NTSTATUS Status;
2855
2856 DPRINT ("LdrVerifyImageMatchesChecksum() called\n");
2857
2858 Status = NtCreateSection (&SectionHandle,
2859 SECTION_MAP_READ,
2860 NULL,
2861 NULL,
2862 PAGE_READONLY,
2863 SEC_COMMIT,
2864 FileHandle);
2865 if (!NT_SUCCESS(Status))
2866 {
2867 DPRINT1 ("NtCreateSection() failed (Status %lx)\n", Status);
2868 return Status;
2869 }
2870
2871 ViewSize = 0;
2872 BaseAddress = NULL;
2873 Status = NtMapViewOfSection (SectionHandle,
2874 NtCurrentProcess (),
2875 &BaseAddress,
2876 0,
2877 0,
2878 NULL,
2879 &ViewSize,
2880 ViewShare,
2881 0,
2882 PAGE_READONLY);
2883 if (!NT_SUCCESS(Status))
2884 {
2885 DPRINT1 ("NtMapViewOfSection() failed (Status %lx)\n", Status);
2886 NtClose (SectionHandle);
2887 return Status;
2888 }
2889
2890 Status = NtQueryInformationFile (FileHandle,
2891 &IoStatusBlock,
2892 &FileInfo,
2893 sizeof (FILE_STANDARD_INFORMATION),
2894 FileStandardInformation);
2895 if (!NT_SUCCESS(Status))
2896 {
2897 DPRINT1 ("NtMapViewOfSection() failed (Status %lx)\n", Status);
2898 NtUnmapViewOfSection (NtCurrentProcess (),
2899 BaseAddress);
2900 NtClose (SectionHandle);
2901 return Status;
2902 }
2903
2904 Result = LdrpCheckImageChecksum (BaseAddress,
2905 FileInfo.EndOfFile.u.LowPart);
2906 if (Result == FALSE)
2907 {
2908 Status = STATUS_IMAGE_CHECKSUM_MISMATCH;
2909 }
2910
2911 NtUnmapViewOfSection (NtCurrentProcess (),
2912 BaseAddress);
2913
2914 NtClose (SectionHandle);
2915
2916 return Status;
2917 }
2918
2919
2920 /***************************************************************************
2921 * NAME EXPORTED
2922 * LdrQueryImageFileExecutionOptions
2923 *
2924 * DESCRIPTION
2925 *
2926 * ARGUMENTS
2927 *
2928 * RETURN VALUE
2929 *
2930 * REVISIONS
2931 *
2932 * NOTE
2933 *
2934 * @implemented
2935 */
2936 NTSTATUS NTAPI
2937 LdrQueryImageFileExecutionOptions (IN PUNICODE_STRING SubKey,
2938 IN PCWSTR ValueName,
2939 IN ULONG Type,
2940 OUT PVOID Buffer,
2941 IN ULONG BufferSize,
2942 OUT PULONG ReturnedLength OPTIONAL)
2943 {
2944 PKEY_VALUE_PARTIAL_INFORMATION KeyInfo;
2945 OBJECT_ATTRIBUTES ObjectAttributes;
2946 UNICODE_STRING ValueNameString;
2947 UNICODE_STRING KeyName;
2948 WCHAR NameBuffer[256];
2949 HANDLE KeyHandle;
2950 ULONG KeyInfoSize;
2951 ULONG ResultSize;
2952 PWCHAR Ptr;
2953 NTSTATUS Status;
2954
2955 wcscpy (NameBuffer,
2956 L"\\Registry\\Machine\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\");
2957 Ptr = wcsrchr (SubKey->Buffer, L'\\');
2958 if (Ptr == NULL)
2959 {
2960 Ptr = SubKey->Buffer;
2961 }
2962 else
2963 {
2964 Ptr++;
2965 }
2966 wcscat (NameBuffer, Ptr);
2967 RtlInitUnicodeString (&KeyName,
2968 NameBuffer);
2969
2970 InitializeObjectAttributes (&ObjectAttributes,
2971 &KeyName,
2972 OBJ_CASE_INSENSITIVE,
2973 NULL,
2974 NULL);
2975
2976 Status = NtOpenKey (&KeyHandle,
2977 KEY_READ,
2978 &ObjectAttributes);
2979 if (!NT_SUCCESS(Status))
2980 {
2981 DPRINT ("NtOpenKey() failed (Status %lx)\n", Status);
2982 return Status;
2983 }
2984
2985 KeyInfoSize = sizeof(KEY_VALUE_PARTIAL_INFORMATION) + 32;
2986 KeyInfo = RtlAllocateHeap (RtlGetProcessHeap(),
2987 HEAP_ZERO_MEMORY,
2988 KeyInfoSize);
2989
2990 RtlInitUnicodeString (&ValueNameString,
2991 (PWSTR)ValueName);
2992 Status = NtQueryValueKey (KeyHandle,
2993 &ValueNameString,
2994 KeyValuePartialInformation,
2995 KeyInfo,
2996 KeyInfoSize,
2997 &ResultSize);
2998 if (Status == STATUS_BUFFER_OVERFLOW)
2999 {
3000 KeyInfoSize = sizeof(KEY_VALUE_PARTIAL_INFORMATION) + KeyInfo->DataLength;
3001 RtlFreeHeap (RtlGetProcessHeap(),
3002 0,
3003 KeyInfo);
3004 KeyInfo = RtlAllocateHeap (RtlGetProcessHeap(),
3005 HEAP_ZERO_MEMORY,
3006 KeyInfoSize);
3007 if (KeyInfo == NULL)
3008 {
3009 NtClose (KeyHandle);
3010 return Status;
3011 }
3012
3013 Status = NtQueryValueKey (KeyHandle,
3014 &ValueNameString,
3015 KeyValuePartialInformation,
3016 KeyInfo,
3017 KeyInfoSize,
3018 &ResultSize);
3019 }
3020 NtClose (KeyHandle);
3021
3022 if (!NT_SUCCESS(Status))
3023 {
3024 if (KeyInfo != NULL)
3025 {
3026 RtlFreeHeap (RtlGetProcessHeap(),
3027 0,
3028 KeyInfo);
3029 }
3030 return Status;
3031 }
3032
3033 if (KeyInfo->Type != Type)
3034 {
3035 RtlFreeHeap (RtlGetProcessHeap(),
3036 0,
3037 KeyInfo);
3038 return STATUS_OBJECT_TYPE_MISMATCH;
3039 }
3040
3041 ResultSize = BufferSize;
3042 if (ResultSize < KeyInfo->DataLength)
3043 {
3044 Status = STATUS_BUFFER_OVERFLOW;
3045 }
3046 else
3047 {
3048 ResultSize = KeyInfo->DataLength;
3049 }
3050 RtlCopyMemory (Buffer,
3051 &KeyInfo->Data,
3052 ResultSize);
3053
3054 RtlFreeHeap (RtlGetProcessHeap(),
3055 0,
3056 KeyInfo);
3057
3058 if (ReturnedLength != NULL)
3059 {
3060 *ReturnedLength = ResultSize;
3061 }
3062
3063 return Status;
3064 }
3065
3066
3067 PIMAGE_BASE_RELOCATION NTAPI
3068 LdrProcessRelocationBlock(IN PVOID Address,
3069 IN USHORT Count,
3070 IN PUSHORT TypeOffset,
3071 IN ULONG_PTR Delta)
3072 {
3073 SHORT Offset;
3074 USHORT Type;
3075 USHORT i;
3076 PUSHORT ShortPtr;
3077 PULONG LongPtr;
3078
3079 for (i = 0; i < Count; i++)
3080 {
3081 Offset = *TypeOffset & 0xFFF;
3082 Type = *TypeOffset >> 12;
3083
3084 switch (Type)
3085 {
3086 case IMAGE_REL_BASED_ABSOLUTE:
3087 break;
3088
3089 case IMAGE_REL_BASED_HIGH:
3090 ShortPtr = (PUSHORT)((ULONG_PTR)Address + Offset);
3091 *ShortPtr += HIWORD(Delta);
3092 break;
3093
3094 case IMAGE_REL_BASED_LOW:
3095 ShortPtr = (PUSHORT)((ULONG_PTR)Address + Offset);
3096 *ShortPtr += LOWORD(Delta);
3097 break;
3098
3099 case IMAGE_REL_BASED_HIGHLOW:
3100 LongPtr = (PULONG)((ULONG_PTR)Address + Offset);
3101 *LongPtr += Delta;
3102 break;
3103
3104 case IMAGE_REL_BASED_HIGHADJ:
3105 case IMAGE_REL_BASED_MIPS_JMPADDR:
3106 default:
3107 DPRINT1("Unknown/unsupported fixup type %hu.\n", Type);
3108 return NULL;
3109 }
3110
3111 TypeOffset++;
3112 }
3113
3114 return (PIMAGE_BASE_RELOCATION)TypeOffset;
3115 }
3116
3117 /* EOF */