Fixed the load count in LdrpDetachProcess. That made it again possible to call the...
[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 = *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 %lx)\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%08x\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%08x\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%08x\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 STDCALL
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 STDCALL
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 %d) = %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 %x %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(%x '%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 %x '%wZ', %x '%wZ', %x '%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 %x, Module %x)\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 %x\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 %x\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 %x SectionHandle %x)\n",
1877 ImageBase, (ULONG)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 = %x\n",(ULONG)ImageBase);
1956 DPRINT("AddressOfEntryPoint = %x\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() = %x\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 %x)\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 (%x -> %x) %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 STDCALL
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 STDCALL
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 %x)\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 %x\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 STDCALL
2288 LdrGetDllHandle(IN PWCHAR Path OPTIONAL,
2289 IN ULONG Unknown2,
2290 IN PUNICODE_STRING DllName,
2291 OUT PVOID* BaseAddress)
2292 {
2293 PLDR_DATA_TABLE_ENTRY Module;
2294 NTSTATUS Status;
2295
2296 TRACE_LDR("LdrGetDllHandle, searching for %wZ from %S\n", DllName, Path ? Path : L"");
2297
2298 /* NULL is the current executable */
2299 if (DllName == NULL)
2300 {
2301 *BaseAddress = ExeModule->DllBase;
2302 DPRINT("BaseAddress %x\n", *BaseAddress);
2303 return STATUS_SUCCESS;
2304 }
2305
2306 Status = LdrFindEntryForName(DllName, &Module, FALSE);
2307 if (NT_SUCCESS(Status))
2308 {
2309 *BaseAddress = Module->DllBase;
2310 return STATUS_SUCCESS;
2311 }
2312
2313 DPRINT("Failed to find dll %wZ\n", DllName);
2314 *BaseAddress = NULL;
2315 return STATUS_DLL_NOT_FOUND;
2316 }
2317
2318
2319 /*
2320 * @implemented
2321 */
2322 NTSTATUS STDCALL
2323 LdrGetProcedureAddress (IN PVOID BaseAddress,
2324 IN PANSI_STRING Name,
2325 IN ULONG Ordinal,
2326 OUT PVOID *ProcedureAddress)
2327 {
2328 if (Name && Name->Length)
2329 {
2330 TRACE_LDR("LdrGetProcedureAddress by NAME - %Z\n", Name);
2331 }
2332 else
2333 {
2334 TRACE_LDR("LdrGetProcedureAddress by ORDINAL - %d\n", Ordinal);
2335 }
2336
2337 DPRINT("LdrGetProcedureAddress (BaseAddress %x Name %Z Ordinal %lu ProcedureAddress %x)\n",
2338 BaseAddress, Name, Ordinal, ProcedureAddress);
2339
2340 if (Name && Name->Length)
2341 {
2342 /* by name */
2343 *ProcedureAddress = LdrGetExportByName(BaseAddress, (PUCHAR)Name->Buffer, 0xffff);
2344 if (*ProcedureAddress != NULL)
2345 {
2346 return STATUS_SUCCESS;
2347 }
2348 DPRINT("LdrGetProcedureAddress: Can't resolve symbol '%Z'\n", Name);
2349 }
2350 else
2351 {
2352 /* by ordinal */
2353 Ordinal &= 0x0000FFFF;
2354 *ProcedureAddress = LdrGetExportByOrdinal(BaseAddress, (WORD)Ordinal);
2355 if (*ProcedureAddress)
2356 {
2357 return STATUS_SUCCESS;
2358 }
2359 DPRINT("LdrGetProcedureAddress: Can't resolve symbol @%d\n", Ordinal);
2360 }
2361 return STATUS_PROCEDURE_NOT_FOUND;
2362 }
2363
2364 /**********************************************************************
2365 * NAME LOCAL
2366 * LdrpDetachProcess
2367 *
2368 * DESCRIPTION
2369 * Unload dll's which are no longer referenced from others dll's
2370 *
2371 * ARGUMENTS
2372 * none
2373 *
2374 * RETURN VALUE
2375 * none
2376 *
2377 * REVISIONS
2378 *
2379 * NOTE
2380 * The loader lock must be held on enty.
2381 */
2382 static VOID
2383 LdrpDetachProcess(BOOLEAN UnloadAll)
2384 {
2385 PLIST_ENTRY ModuleListHead;
2386 PLIST_ENTRY Entry;
2387 PLDR_DATA_TABLE_ENTRY Module;
2388 static ULONG CallingCount = 0;
2389
2390 DPRINT("LdrpDetachProcess() called for %wZ\n",
2391 &ExeModule->BaseDllName);
2392
2393 CallingCount++;
2394
2395 ModuleListHead = &NtCurrentPeb()->Ldr->InInitializationOrderModuleList;
2396 Entry = ModuleListHead->Blink;
2397 while (Entry != ModuleListHead)
2398 {
2399 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InInitializationOrderModuleList);
2400 if (((UnloadAll && Module->LoadCount == 0xFFFF) || Module->LoadCount == 0) &&
2401 Module->Flags & LDRP_ENTRY_PROCESSED &&
2402 !(Module->Flags & LDRP_UNLOAD_IN_PROGRESS))
2403 {
2404 Module->Flags |= LDRP_UNLOAD_IN_PROGRESS;
2405 if (Module == LdrpLastModule)
2406 {
2407 LdrpLastModule = NULL;
2408 }
2409 if (Module->Flags & LDRP_PROCESS_ATTACH_CALLED)
2410 {
2411 TRACE_LDR("Unload %wZ - Calling entry point at %x\n",
2412 &Module->BaseDllName, Module->EntryPoint);
2413 LdrpCallDllEntry(Module, DLL_PROCESS_DETACH, (PVOID)(Module->LoadCount == 0xFFFF ? 1 : 0));
2414 }
2415 else
2416 {
2417 TRACE_LDR("Unload %wZ\n", &Module->BaseDllName);
2418 }
2419 Entry = ModuleListHead->Blink;
2420 }
2421 else
2422 {
2423 Entry = Entry->Blink;
2424 }
2425 }
2426
2427 if (CallingCount == 1)
2428 {
2429 Entry = ModuleListHead->Blink;
2430 while (Entry != ModuleListHead)
2431 {
2432 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InInitializationOrderModuleList);
2433 Entry = Entry->Blink;
2434 if (Module->Flags & LDRP_UNLOAD_IN_PROGRESS &&
2435 ((UnloadAll && Module->LoadCount != 0xFFFF) || Module->LoadCount == 0))
2436 {
2437 /* remove the module entry from the list */
2438 RemoveEntryList (&Module->InLoadOrderModuleList);
2439 RemoveEntryList (&Module->InInitializationOrderModuleList);
2440
2441 NtUnmapViewOfSection (NtCurrentProcess (), Module->DllBase);
2442 NtClose (Module->SectionPointer);
2443
2444 TRACE_LDR("%wZ unloaded\n", &Module->BaseDllName);
2445
2446 RtlFreeUnicodeString (&Module->FullDllName);
2447 RtlFreeUnicodeString (&Module->BaseDllName);
2448
2449 RtlFreeHeap (RtlGetProcessHeap (), 0, Module);
2450 }
2451 }
2452 }
2453 CallingCount--;
2454 DPRINT("LdrpDetachProcess() done\n");
2455 }
2456
2457 /**********************************************************************
2458 * NAME LOCAL
2459 * LdrpAttachProcess
2460 *
2461 * DESCRIPTION
2462 * Initialize all dll's which are prepered for loading
2463 *
2464 * ARGUMENTS
2465 * none
2466 *
2467 * RETURN VALUE
2468 * status
2469 *
2470 * REVISIONS
2471 *
2472 * NOTE
2473 * The loader lock must be held on entry.
2474 *
2475 */
2476 static NTSTATUS
2477 LdrpAttachProcess(VOID)
2478 {
2479 PLIST_ENTRY ModuleListHead;
2480 PLIST_ENTRY Entry;
2481 PLDR_DATA_TABLE_ENTRY Module;
2482 BOOLEAN Result;
2483 NTSTATUS Status = STATUS_SUCCESS;
2484
2485 DPRINT("LdrpAttachProcess() called for %wZ\n",
2486 &ExeModule->BaseDllName);
2487
2488 ModuleListHead = &NtCurrentPeb()->Ldr->InInitializationOrderModuleList;
2489 Entry = ModuleListHead->Flink;
2490 while (Entry != ModuleListHead)
2491 {
2492 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InInitializationOrderModuleList);
2493 if (!(Module->Flags & (LDRP_LOAD_IN_PROGRESS|LDRP_UNLOAD_IN_PROGRESS|LDRP_ENTRY_PROCESSED)))
2494 {
2495 Module->Flags |= LDRP_LOAD_IN_PROGRESS;
2496 TRACE_LDR("%wZ loaded - Calling init routine at %x for process attaching\n",
2497 &Module->BaseDllName, Module->EntryPoint);
2498 Result = LdrpCallDllEntry(Module, DLL_PROCESS_ATTACH, (PVOID)(Module->LoadCount == 0xFFFF ? 1 : 0));
2499 if (!Result)
2500 {
2501 Status = STATUS_DLL_INIT_FAILED;
2502 break;
2503 }
2504 if (Module->Flags & LDRP_IMAGE_DLL && Module->EntryPoint != 0)
2505 {
2506 Module->Flags |= LDRP_PROCESS_ATTACH_CALLED|LDRP_ENTRY_PROCESSED;
2507 }
2508 else
2509 {
2510 Module->Flags |= LDRP_ENTRY_PROCESSED;
2511 }
2512 Module->Flags &= ~LDRP_LOAD_IN_PROGRESS;
2513 }
2514 Entry = Entry->Flink;
2515 }
2516
2517 DPRINT("LdrpAttachProcess() done\n");
2518
2519 return Status;
2520 }
2521
2522 /*
2523 * @implemented
2524 */
2525 NTSTATUS STDCALL
2526 LdrShutdownProcess (VOID)
2527 {
2528 LdrpDetachProcess(TRUE);
2529 return STATUS_SUCCESS;
2530 }
2531
2532 /*
2533 * @implemented
2534 */
2535
2536 NTSTATUS
2537 LdrpAttachThread (VOID)
2538 {
2539 PLIST_ENTRY ModuleListHead;
2540 PLIST_ENTRY Entry;
2541 PLDR_DATA_TABLE_ENTRY Module;
2542 NTSTATUS Status;
2543
2544 DPRINT("LdrpAttachThread() called for %wZ\n",
2545 &ExeModule->BaseDllName);
2546
2547 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
2548
2549 Status = LdrpInitializeTlsForThread();
2550
2551 if (NT_SUCCESS(Status))
2552 {
2553 ModuleListHead = &NtCurrentPeb()->Ldr->InInitializationOrderModuleList;
2554 Entry = ModuleListHead->Flink;
2555
2556 while (Entry != ModuleListHead)
2557 {
2558 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InInitializationOrderModuleList);
2559 if (Module->Flags & LDRP_PROCESS_ATTACH_CALLED &&
2560 !(Module->Flags & LDRP_DONT_CALL_FOR_THREADS) &&
2561 !(Module->Flags & LDRP_UNLOAD_IN_PROGRESS))
2562 {
2563 TRACE_LDR("%wZ - Calling entry point at %x for thread attaching\n",
2564 &Module->BaseDllName, Module->EntryPoint);
2565 LdrpCallDllEntry(Module, DLL_THREAD_ATTACH, NULL);
2566 }
2567 Entry = Entry->Flink;
2568 }
2569
2570 Entry = NtCurrentPeb()->Ldr->InLoadOrderModuleList.Flink;
2571 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InLoadOrderModuleList);
2572 LdrpTlsCallback(Module, DLL_THREAD_ATTACH);
2573 }
2574
2575 RtlLeaveCriticalSection (NtCurrentPeb()->LoaderLock);
2576
2577 DPRINT("LdrpAttachThread() done\n");
2578
2579 return Status;
2580 }
2581
2582
2583 /*
2584 * @implemented
2585 */
2586 NTSTATUS STDCALL
2587 LdrShutdownThread (VOID)
2588 {
2589 PLIST_ENTRY ModuleListHead;
2590 PLIST_ENTRY Entry;
2591 PLDR_DATA_TABLE_ENTRY Module;
2592
2593 DPRINT("LdrShutdownThread() called for %wZ\n",
2594 &ExeModule->BaseDllName);
2595
2596 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
2597
2598 ModuleListHead = &NtCurrentPeb()->Ldr->InInitializationOrderModuleList;
2599 Entry = ModuleListHead->Blink;
2600 while (Entry != ModuleListHead)
2601 {
2602 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InInitializationOrderModuleList);
2603
2604 if (Module->Flags & LDRP_PROCESS_ATTACH_CALLED &&
2605 !(Module->Flags & LDRP_DONT_CALL_FOR_THREADS) &&
2606 !(Module->Flags & LDRP_UNLOAD_IN_PROGRESS))
2607 {
2608 TRACE_LDR("%wZ - Calling entry point at %x for thread detaching\n",
2609 &Module->BaseDllName, Module->EntryPoint);
2610 LdrpCallDllEntry(Module, DLL_THREAD_DETACH, NULL);
2611 }
2612 Entry = Entry->Blink;
2613 }
2614
2615 RtlLeaveCriticalSection (NtCurrentPeb()->LoaderLock);
2616
2617 if (LdrpTlsArray)
2618 {
2619 RtlFreeHeap (RtlGetProcessHeap(), 0, NtCurrentTeb()->ThreadLocalStoragePointer);
2620 }
2621
2622 DPRINT("LdrShutdownThread() done\n");
2623
2624 return STATUS_SUCCESS;
2625 }
2626
2627
2628 /***************************************************************************
2629 * NAME EXPORTED
2630 * LdrQueryProcessModuleInformation
2631 *
2632 * DESCRIPTION
2633 *
2634 * ARGUMENTS
2635 *
2636 * RETURN VALUE
2637 *
2638 * REVISIONS
2639 *
2640 * NOTE
2641 *
2642 * @implemented
2643 */
2644 NTSTATUS STDCALL
2645 LdrQueryProcessModuleInformation(IN PMODULE_INFORMATION ModuleInformation OPTIONAL,
2646 IN ULONG Size OPTIONAL,
2647 OUT PULONG ReturnedSize)
2648 {
2649 PLIST_ENTRY ModuleListHead;
2650 PLIST_ENTRY Entry;
2651 PLDR_DATA_TABLE_ENTRY Module;
2652 PDEBUG_MODULE_INFORMATION ModulePtr = NULL;
2653 NTSTATUS Status = STATUS_SUCCESS;
2654 ULONG UsedSize = sizeof(ULONG);
2655 ANSI_STRING AnsiString;
2656 PCHAR p;
2657
2658 DPRINT("LdrQueryProcessModuleInformation() called\n");
2659
2660 RtlEnterCriticalSection (NtCurrentPeb()->LoaderLock);
2661
2662 if (ModuleInformation == NULL || Size == 0)
2663 {
2664 Status = STATUS_INFO_LENGTH_MISMATCH;
2665 }
2666 else
2667 {
2668 ModuleInformation->ModuleCount = 0;
2669 ModulePtr = &ModuleInformation->ModuleEntry[0];
2670 Status = STATUS_SUCCESS;
2671 }
2672
2673 ModuleListHead = &NtCurrentPeb()->Ldr->InLoadOrderModuleList;
2674 Entry = ModuleListHead->Flink;
2675
2676 while (Entry != ModuleListHead)
2677 {
2678 Module = CONTAINING_RECORD(Entry, LDR_DATA_TABLE_ENTRY, InLoadOrderModuleList);
2679
2680 DPRINT(" Module %wZ\n",
2681 &Module->FullDllName);
2682
2683 if (UsedSize > Size)
2684 {
2685 Status = STATUS_INFO_LENGTH_MISMATCH;
2686 }
2687 else if (ModuleInformation != NULL)
2688 {
2689 ModulePtr->Reserved[0] = ModulePtr->Reserved[1] = 0; // FIXME: ??
2690 ModulePtr->Base = Module->DllBase;
2691 ModulePtr->Size = Module->SizeOfImage;
2692 ModulePtr->Flags = Module->Flags;
2693 ModulePtr->Index = 0; // FIXME: index ??
2694 ModulePtr->Unknown = 0; // FIXME: ??
2695 ModulePtr->LoadCount = Module->LoadCount;
2696
2697 AnsiString.Length = 0;
2698 AnsiString.MaximumLength = 256;
2699 AnsiString.Buffer = ModulePtr->ImageName;
2700 RtlUnicodeStringToAnsiString(&AnsiString,
2701 &Module->FullDllName,
2702 FALSE);
2703 p = strrchr(ModulePtr->ImageName, '\\');
2704 if (p != NULL)
2705 ModulePtr->ModuleNameOffset = p - ModulePtr->ImageName + 1;
2706 else
2707 ModulePtr->ModuleNameOffset = 0;
2708
2709 ModulePtr++;
2710 ModuleInformation->ModuleCount++;
2711 }
2712 UsedSize += sizeof(DEBUG_MODULE_INFORMATION);
2713
2714 Entry = Entry->Flink;
2715 }
2716
2717 RtlLeaveCriticalSection (NtCurrentPeb()->LoaderLock);
2718
2719 if (ReturnedSize != 0)
2720 *ReturnedSize = UsedSize;
2721
2722 DPRINT("LdrQueryProcessModuleInformation() done\n");
2723
2724 return(Status);
2725 }
2726
2727
2728 static BOOLEAN
2729 LdrpCheckImageChecksum (IN PVOID BaseAddress,
2730 IN ULONG ImageSize)
2731 {
2732 PIMAGE_NT_HEADERS Header;
2733 PUSHORT Ptr;
2734 ULONG Sum;
2735 ULONG CalcSum;
2736 ULONG HeaderSum;
2737 ULONG i;
2738
2739 Header = RtlImageNtHeader (BaseAddress);
2740 if (Header == NULL)
2741 return FALSE;
2742
2743 HeaderSum = Header->OptionalHeader.CheckSum;
2744 if (HeaderSum == 0)
2745 return TRUE;
2746
2747 Sum = 0;
2748 Ptr = (PUSHORT) BaseAddress;
2749 for (i = 0; i < ImageSize / sizeof (USHORT); i++)
2750 {
2751 Sum += (ULONG)*Ptr;
2752 if (HIWORD(Sum) != 0)
2753 {
2754 Sum = LOWORD(Sum) + HIWORD(Sum);
2755 }
2756 Ptr++;
2757 }
2758
2759 if (ImageSize & 1)
2760 {
2761 Sum += (ULONG)*((PUCHAR)Ptr);
2762 if (HIWORD(Sum) != 0)
2763 {
2764 Sum = LOWORD(Sum) + HIWORD(Sum);
2765 }
2766 }
2767
2768 CalcSum = (USHORT)(LOWORD(Sum) + HIWORD(Sum));
2769
2770 /* Subtract image checksum from calculated checksum. */
2771 /* fix low word of checksum */
2772 if (LOWORD(CalcSum) >= LOWORD(HeaderSum))
2773 {
2774 CalcSum -= LOWORD(HeaderSum);
2775 }
2776 else
2777 {
2778 CalcSum = ((LOWORD(CalcSum) - LOWORD(HeaderSum)) & 0xFFFF) - 1;
2779 }
2780
2781 /* fix high word of checksum */
2782 if (LOWORD(CalcSum) >= HIWORD(HeaderSum))
2783 {
2784 CalcSum -= HIWORD(HeaderSum);
2785 }
2786 else
2787 {
2788 CalcSum = ((LOWORD(CalcSum) - HIWORD(HeaderSum)) & 0xFFFF) - 1;
2789 }
2790
2791 /* add file length */
2792 CalcSum += ImageSize;
2793
2794 return (BOOLEAN)(CalcSum == HeaderSum);
2795 }
2796
2797 /*
2798 * Compute size of an image as it is actually present in virt memory
2799 * (i.e. excluding NEVER_LOAD sections)
2800 */
2801 ULONG
2802 LdrpGetResidentSize(PIMAGE_NT_HEADERS NTHeaders)
2803 {
2804 PIMAGE_SECTION_HEADER SectionHeader;
2805 unsigned SectionIndex;
2806 ULONG ResidentSize;
2807
2808 SectionHeader = (PIMAGE_SECTION_HEADER)((char *) &NTHeaders->OptionalHeader
2809 + NTHeaders->FileHeader.SizeOfOptionalHeader);
2810 ResidentSize = 0;
2811 for (SectionIndex = 0; SectionIndex < NTHeaders->FileHeader.NumberOfSections; SectionIndex++)
2812 {
2813 if (0 == (SectionHeader->Characteristics & IMAGE_SCN_LNK_REMOVE)
2814 && ResidentSize < SectionHeader->VirtualAddress + SectionHeader->Misc.VirtualSize)
2815 {
2816 ResidentSize = SectionHeader->VirtualAddress + SectionHeader->Misc.VirtualSize;
2817 }
2818 SectionHeader++;
2819 }
2820
2821 return ResidentSize;
2822 }
2823
2824
2825 /***************************************************************************
2826 * NAME EXPORTED
2827 * LdrVerifyImageMatchesChecksum
2828 *
2829 * DESCRIPTION
2830 *
2831 * ARGUMENTS
2832 *
2833 * RETURN VALUE
2834 *
2835 * REVISIONS
2836 *
2837 * NOTE
2838 *
2839 * @implemented
2840 */
2841 NTSTATUS STDCALL
2842 LdrVerifyImageMatchesChecksum (IN HANDLE FileHandle,
2843 ULONG Unknown1,
2844 ULONG Unknown2,
2845 ULONG Unknown3)
2846 {
2847 FILE_STANDARD_INFORMATION FileInfo;
2848 IO_STATUS_BLOCK IoStatusBlock;
2849 HANDLE SectionHandle;
2850 ULONG ViewSize;
2851 PVOID BaseAddress;
2852 BOOLEAN Result;
2853 NTSTATUS Status;
2854
2855 DPRINT ("LdrVerifyImageMatchesChecksum() called\n");
2856
2857 Status = NtCreateSection (&SectionHandle,
2858 SECTION_MAP_READ,
2859 NULL,
2860 NULL,
2861 PAGE_READONLY,
2862 SEC_COMMIT,
2863 FileHandle);
2864 if (!NT_SUCCESS(Status))
2865 {
2866 DPRINT1 ("NtCreateSection() failed (Status %lx)\n", Status);
2867 return Status;
2868 }
2869
2870 ViewSize = 0;
2871 BaseAddress = NULL;
2872 Status = NtMapViewOfSection (SectionHandle,
2873 NtCurrentProcess (),
2874 &BaseAddress,
2875 0,
2876 0,
2877 NULL,
2878 &ViewSize,
2879 ViewShare,
2880 0,
2881 PAGE_READONLY);
2882 if (!NT_SUCCESS(Status))
2883 {
2884 DPRINT1 ("NtMapViewOfSection() failed (Status %lx)\n", Status);
2885 NtClose (SectionHandle);
2886 return Status;
2887 }
2888
2889 Status = NtQueryInformationFile (FileHandle,
2890 &IoStatusBlock,
2891 &FileInfo,
2892 sizeof (FILE_STANDARD_INFORMATION),
2893 FileStandardInformation);
2894 if (!NT_SUCCESS(Status))
2895 {
2896 DPRINT1 ("NtMapViewOfSection() failed (Status %lx)\n", Status);
2897 NtUnmapViewOfSection (NtCurrentProcess (),
2898 BaseAddress);
2899 NtClose (SectionHandle);
2900 return Status;
2901 }
2902
2903 Result = LdrpCheckImageChecksum (BaseAddress,
2904 FileInfo.EndOfFile.u.LowPart);
2905 if (Result == FALSE)
2906 {
2907 Status = STATUS_IMAGE_CHECKSUM_MISMATCH;
2908 }
2909
2910 NtUnmapViewOfSection (NtCurrentProcess (),
2911 BaseAddress);
2912
2913 NtClose (SectionHandle);
2914
2915 return Status;
2916 }
2917
2918
2919 /***************************************************************************
2920 * NAME EXPORTED
2921 * LdrQueryImageFileExecutionOptions
2922 *
2923 * DESCRIPTION
2924 *
2925 * ARGUMENTS
2926 *
2927 * RETURN VALUE
2928 *
2929 * REVISIONS
2930 *
2931 * NOTE
2932 *
2933 * @implemented
2934 */
2935 NTSTATUS STDCALL
2936 LdrQueryImageFileExecutionOptions (IN PUNICODE_STRING SubKey,
2937 IN PCWSTR ValueName,
2938 IN ULONG Type,
2939 OUT PVOID Buffer,
2940 IN ULONG BufferSize,
2941 OUT PULONG ReturnedLength OPTIONAL)
2942 {
2943 PKEY_VALUE_PARTIAL_INFORMATION KeyInfo;
2944 OBJECT_ATTRIBUTES ObjectAttributes;
2945 UNICODE_STRING ValueNameString;
2946 UNICODE_STRING KeyName;
2947 WCHAR NameBuffer[256];
2948 HANDLE KeyHandle;
2949 ULONG KeyInfoSize;
2950 ULONG ResultSize;
2951 PWCHAR Ptr;
2952 NTSTATUS Status;
2953
2954 wcscpy (NameBuffer,
2955 L"\\Registry\\Machine\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\");
2956 Ptr = wcsrchr (SubKey->Buffer, L'\\');
2957 if (Ptr == NULL)
2958 {
2959 Ptr = SubKey->Buffer;
2960 }
2961 else
2962 {
2963 Ptr++;
2964 }
2965 wcscat (NameBuffer, Ptr);
2966 RtlInitUnicodeString (&KeyName,
2967 NameBuffer);
2968
2969 InitializeObjectAttributes (&ObjectAttributes,
2970 &KeyName,
2971 OBJ_CASE_INSENSITIVE,
2972 NULL,
2973 NULL);
2974
2975 Status = NtOpenKey (&KeyHandle,
2976 KEY_READ,
2977 &ObjectAttributes);
2978 if (!NT_SUCCESS(Status))
2979 {
2980 DPRINT ("NtOpenKey() failed (Status %lx)\n", Status);
2981 return Status;
2982 }
2983
2984 KeyInfoSize = sizeof(KEY_VALUE_PARTIAL_INFORMATION) + 32;
2985 KeyInfo = RtlAllocateHeap (RtlGetProcessHeap(),
2986 HEAP_ZERO_MEMORY,
2987 KeyInfoSize);
2988
2989 RtlInitUnicodeString (&ValueNameString,
2990 (PWSTR)ValueName);
2991 Status = NtQueryValueKey (KeyHandle,
2992 &ValueNameString,
2993 KeyValuePartialInformation,
2994 KeyInfo,
2995 KeyInfoSize,
2996 &ResultSize);
2997 if (Status == STATUS_BUFFER_OVERFLOW)
2998 {
2999 KeyInfoSize = sizeof(KEY_VALUE_PARTIAL_INFORMATION) + KeyInfo->DataLength;
3000 RtlFreeHeap (RtlGetProcessHeap(),
3001 0,
3002 KeyInfo);
3003 KeyInfo = RtlAllocateHeap (RtlGetProcessHeap(),
3004 HEAP_ZERO_MEMORY,
3005 KeyInfoSize);
3006 if (KeyInfo == NULL)
3007 {
3008 NtClose (KeyHandle);
3009 return Status;
3010 }
3011
3012 Status = NtQueryValueKey (KeyHandle,
3013 &ValueNameString,
3014 KeyValuePartialInformation,
3015 KeyInfo,
3016 KeyInfoSize,
3017 &ResultSize);
3018 }
3019 NtClose (KeyHandle);
3020
3021 if (!NT_SUCCESS(Status))
3022 {
3023 if (KeyInfo != NULL)
3024 {
3025 RtlFreeHeap (RtlGetProcessHeap(),
3026 0,
3027 KeyInfo);
3028 }
3029 return Status;
3030 }
3031
3032 if (KeyInfo->Type != Type)
3033 {
3034 RtlFreeHeap (RtlGetProcessHeap(),
3035 0,
3036 KeyInfo);
3037 return STATUS_OBJECT_TYPE_MISMATCH;
3038 }
3039
3040 ResultSize = BufferSize;
3041 if (ResultSize < KeyInfo->DataLength)
3042 {
3043 Status = STATUS_BUFFER_OVERFLOW;
3044 }
3045 else
3046 {
3047 ResultSize = KeyInfo->DataLength;
3048 }
3049 RtlCopyMemory (Buffer,
3050 &KeyInfo->Data,
3051 ResultSize);
3052
3053 RtlFreeHeap (RtlGetProcessHeap(),
3054 0,
3055 KeyInfo);
3056
3057 if (ReturnedLength != NULL)
3058 {
3059 *ReturnedLength = ResultSize;
3060 }
3061
3062 return Status;
3063 }
3064
3065
3066 PIMAGE_BASE_RELOCATION STDCALL
3067 LdrProcessRelocationBlock(IN PVOID Address,
3068 IN USHORT Count,
3069 IN PUSHORT TypeOffset,
3070 IN ULONG_PTR Delta)
3071 {
3072 SHORT Offset;
3073 USHORT Type;
3074 USHORT i;
3075 PUSHORT ShortPtr;
3076 PULONG LongPtr;
3077
3078 for (i = 0; i < Count; i++)
3079 {
3080 Offset = *TypeOffset & 0xFFF;
3081 Type = *TypeOffset >> 12;
3082
3083 switch (Type)
3084 {
3085 case IMAGE_REL_BASED_ABSOLUTE:
3086 break;
3087
3088 case IMAGE_REL_BASED_HIGH:
3089 ShortPtr = (PUSHORT)((ULONG_PTR)Address + Offset);
3090 *ShortPtr += HIWORD(Delta);
3091 break;
3092
3093 case IMAGE_REL_BASED_LOW:
3094 ShortPtr = (PUSHORT)((ULONG_PTR)Address + Offset);
3095 *ShortPtr += LOWORD(Delta);
3096 break;
3097
3098 case IMAGE_REL_BASED_HIGHLOW:
3099 LongPtr = (PULONG)((ULONG_PTR)Address + Offset);
3100 *LongPtr += Delta;
3101 break;
3102
3103 case IMAGE_REL_BASED_HIGHADJ:
3104 case IMAGE_REL_BASED_MIPS_JMPADDR:
3105 default:
3106 DPRINT1("Unknown/unsupported fixup type %hu.\n", Type);
3107 return NULL;
3108 }
3109
3110 TypeOffset++;
3111 }
3112
3113 return (PIMAGE_BASE_RELOCATION)TypeOffset;
3114 }
3115
3116 /* EOF */