2 * Unit test suite for the PE loader.
4 * Copyright 2006 Dmitry Timoshkov
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/test.h"
28 #define ALIGN_SIZE(size, alignment) (((size) + (alignment - 1)) & ~((alignment - 1)))
30 static PVOID
RVAToAddr(DWORD_PTR rva
, HMODULE module
)
34 return ((char*) module
) + rva
;
39 WORD e_magic
; /* 00: MZ Header signature */
41 DWORD e_lfanew
; /* 3c: Offset to extended header */
44 IMAGE_DOS_SIGNATURE
, { 0 }, sizeof(dos_header
)
47 static IMAGE_NT_HEADERS nt_header
=
49 IMAGE_NT_SIGNATURE
, /* Signature */
52 IMAGE_FILE_MACHINE_I386
, /* Machine */
53 #elif defined __x86_64__
54 IMAGE_FILE_MACHINE_AMD64
, /* Machine */
55 #elif defined __powerpc__
56 IMAGE_FILE_MACHINE_POWERPC
, /* Machine */
57 #elif defined __sparc__
58 IMAGE_FILE_MACHINE_SPARC
, /* Machine */
60 IMAGE_FILE_MACHINE_ARM
, /* Machine */
62 # error You must specify the machine type
64 1, /* NumberOfSections */
65 0, /* TimeDateStamp */
66 0, /* PointerToSymbolTable */
67 0, /* NumberOfSymbols */
68 sizeof(IMAGE_OPTIONAL_HEADER
), /* SizeOfOptionalHeader */
69 IMAGE_FILE_EXECUTABLE_IMAGE
| IMAGE_FILE_DLL
/* Characteristics */
71 { IMAGE_NT_OPTIONAL_HDR_MAGIC
, /* Magic */
72 1, /* MajorLinkerVersion */
73 0, /* MinorLinkerVersion */
75 0, /* SizeOfInitializedData */
76 0, /* SizeOfUninitializedData */
77 0, /* AddressOfEntryPoint */
78 0x10, /* BaseOfCode, also serves as e_lfanew in the truncated MZ header */
82 0x10000000, /* ImageBase */
83 0, /* SectionAlignment */
84 0, /* FileAlignment */
85 4, /* MajorOperatingSystemVersion */
86 0, /* MinorOperatingSystemVersion */
87 1, /* MajorImageVersion */
88 0, /* MinorImageVersion */
89 4, /* MajorSubsystemVersion */
90 0, /* MinorSubsystemVersion */
91 0, /* Win32VersionValue */
92 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
) + 0x1000, /* SizeOfImage */
93 sizeof(dos_header
) + sizeof(nt_header
), /* SizeOfHeaders */
95 IMAGE_SUBSYSTEM_WINDOWS_CUI
, /* Subsystem */
96 0, /* DllCharacteristics */
97 0, /* SizeOfStackReserve */
98 0, /* SizeOfStackCommit */
99 0, /* SizeOfHeapReserve */
100 0, /* SizeOfHeapCommit */
102 0, /* NumberOfRvaAndSizes */
103 { { 0 } } /* DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES] */
107 static IMAGE_SECTION_HEADER section
=
109 ".rodata", /* Name */
111 0, /* VirtualAddress */
112 0x0a, /* SizeOfRawData */
113 0, /* PointerToRawData */
114 0, /* PointerToRelocations */
115 0, /* PointerToLinenumbers */
116 0, /* NumberOfRelocations */
117 0, /* NumberOfLinenumbers */
118 IMAGE_SCN_CNT_INITIALIZED_DATA
| IMAGE_SCN_MEM_READ
, /* Characteristics */
121 static void test_Loader(void)
123 static const struct test_data
125 const void *dos_header
;
126 DWORD size_of_dos_header
;
127 WORD number_of_sections
, size_of_optional_header
;
128 DWORD section_alignment
, file_alignment
;
129 DWORD size_of_image
, size_of_headers
;
130 DWORD errors
[4]; /* 0 means LoadLibrary should succeed */
133 { &dos_header
, sizeof(dos_header
),
135 { ERROR_BAD_EXE_FORMAT
}
137 { &dos_header
, sizeof(dos_header
),
138 1, sizeof(IMAGE_OPTIONAL_HEADER
), 0x1000, 0x1000,
139 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
) + 0xe00,
140 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
),
141 { ERROR_BAD_EXE_FORMAT
} /* XP doesn't like too small image size */
143 { &dos_header
, sizeof(dos_header
),
144 1, sizeof(IMAGE_OPTIONAL_HEADER
), 0x1000, 0x1000,
145 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
) + 0x1000,
146 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
),
149 { &dos_header
, sizeof(dos_header
),
150 1, sizeof(IMAGE_OPTIONAL_HEADER
), 0x1000, 0x1000,
155 { &dos_header
, sizeof(dos_header
),
156 1, sizeof(IMAGE_OPTIONAL_HEADER
), 0x200, 0x200,
157 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
) + 0x200,
158 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
),
159 { ERROR_SUCCESS
, ERROR_INVALID_ADDRESS
} /* vista is more strict */
161 { &dos_header
, sizeof(dos_header
),
162 1, sizeof(IMAGE_OPTIONAL_HEADER
), 0x200, 0x1000,
163 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
) + 0x1000,
164 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
),
165 { ERROR_BAD_EXE_FORMAT
} /* XP doesn't like alignments */
167 { &dos_header
, sizeof(dos_header
),
168 1, sizeof(IMAGE_OPTIONAL_HEADER
), 0x1000, 0x200,
169 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
) + 0x1000,
170 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
),
173 { &dos_header
, sizeof(dos_header
),
174 1, sizeof(IMAGE_OPTIONAL_HEADER
), 0x1000, 0x200,
175 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
) + 0x1000,
179 /* Mandatory are all fields up to SizeOfHeaders, everything else
180 * is really optional (at least that's true for XP).
182 { &dos_header
, sizeof(dos_header
),
183 1, FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
), 0x200, 0x200,
184 sizeof(dos_header
) + sizeof(DWORD
) + sizeof(IMAGE_FILE_HEADER
) + FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
) + sizeof(IMAGE_SECTION_HEADER
) + 0x10,
185 sizeof(dos_header
) + sizeof(DWORD
) + sizeof(IMAGE_FILE_HEADER
) + FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
) + sizeof(IMAGE_SECTION_HEADER
),
186 { ERROR_SUCCESS
, ERROR_BAD_EXE_FORMAT
, ERROR_INVALID_ADDRESS
,
189 { &dos_header
, sizeof(dos_header
),
190 0, FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
), 0x200, 0x200,
191 0xd0, /* beyond of the end of file */
192 0xc0, /* beyond of the end of file */
193 { ERROR_SUCCESS
, ERROR_BAD_EXE_FORMAT
} /* vista is more strict */
195 { &dos_header
, sizeof(dos_header
),
196 0, FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
), 0x200, 0x200,
199 { ERROR_SUCCESS
, ERROR_BAD_EXE_FORMAT
} /* vista is more strict */
201 { &dos_header
, sizeof(dos_header
),
202 0, FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
), 0x200, 0x200,
205 { ERROR_SUCCESS
, ERROR_BAD_EXE_FORMAT
} /* vista is more strict */
207 #if 0 /* not power of 2 alignments need more test cases */
208 { &dos_header
, sizeof(dos_header
),
209 0, FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
), 0x300, 0x300,
212 { ERROR_BAD_EXE_FORMAT
} /* alignment is not power of 2 */
215 { &dos_header
, sizeof(dos_header
),
216 0, FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
), 4, 4,
219 { ERROR_SUCCESS
, ERROR_BAD_EXE_FORMAT
} /* vista is more strict */
221 { &dos_header
, sizeof(dos_header
),
222 0, FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
), 1, 1,
225 { ERROR_SUCCESS
, ERROR_BAD_EXE_FORMAT
} /* vista is more strict */
227 { &dos_header
, sizeof(dos_header
),
228 0, FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
), 0x200, 0x200,
231 { ERROR_BAD_EXE_FORMAT
} /* image size == 0 -> failure */
233 /* the following data mimics the PE image which upack creates */
235 1, 0x148, 0x1000, 0x200,
236 sizeof(dos_header
) + sizeof(nt_header
) + sizeof(IMAGE_SECTION_HEADER
) + 0x1000,
240 /* Minimal PE image that XP is able to load: 92 bytes */
242 0, FIELD_OFFSET(IMAGE_OPTIONAL_HEADER
, CheckSum
),
243 0x04 /* also serves as e_lfanew in the truncated MZ header */, 0x04,
246 { ERROR_SUCCESS
, ERROR_BAD_EXE_FORMAT
} /* vista is more strict */
249 static const char filler
[0x1000];
250 static const char section_data
[0x10] = "section data";
252 DWORD dummy
, file_size
, file_align
;
254 HMODULE hlib
, hlib_as_data_file
;
256 char temp_path
[MAX_PATH
];
257 char dll_name
[MAX_PATH
];
262 trace("system page size 0x%04x\n", si
.dwPageSize
);
264 /* prevent displaying of the "Unable to load this DLL" message box */
265 SetErrorMode(SEM_FAILCRITICALERRORS
);
267 GetTempPath(MAX_PATH
, temp_path
);
269 for (i
= 0; i
< sizeof(td
)/sizeof(td
[0]); i
++)
271 GetTempFileName(temp_path
, "ldr", 0, dll_name
);
273 /*trace("creating %s\n", dll_name);*/
274 hfile
= CreateFileA(dll_name
, GENERIC_WRITE
, 0, NULL
, CREATE_ALWAYS
, 0, 0);
275 if (hfile
== INVALID_HANDLE_VALUE
)
277 ok(0, "could not create %s\n", dll_name
);
281 SetLastError(0xdeadbeef);
282 ret
= WriteFile(hfile
, td
[i
].dos_header
, td
[i
].size_of_dos_header
, &dummy
, NULL
);
283 ok(ret
, "WriteFile error %d\n", GetLastError());
285 nt_header
.FileHeader
.NumberOfSections
= td
[i
].number_of_sections
;
286 nt_header
.FileHeader
.SizeOfOptionalHeader
= td
[i
].size_of_optional_header
;
288 nt_header
.OptionalHeader
.SectionAlignment
= td
[i
].section_alignment
;
289 nt_header
.OptionalHeader
.FileAlignment
= td
[i
].file_alignment
;
290 nt_header
.OptionalHeader
.SizeOfImage
= td
[i
].size_of_image
;
291 nt_header
.OptionalHeader
.SizeOfHeaders
= td
[i
].size_of_headers
;
292 SetLastError(0xdeadbeef);
293 ret
= WriteFile(hfile
, &nt_header
, sizeof(DWORD
) + sizeof(IMAGE_FILE_HEADER
), &dummy
, NULL
);
294 ok(ret
, "WriteFile error %d\n", GetLastError());
296 if (nt_header
.FileHeader
.SizeOfOptionalHeader
)
298 SetLastError(0xdeadbeef);
299 ret
= WriteFile(hfile
, &nt_header
.OptionalHeader
,
300 min(nt_header
.FileHeader
.SizeOfOptionalHeader
, sizeof(IMAGE_OPTIONAL_HEADER
)),
302 ok(ret
, "WriteFile error %d\n", GetLastError());
303 if (nt_header
.FileHeader
.SizeOfOptionalHeader
> sizeof(IMAGE_OPTIONAL_HEADER
))
305 file_align
= nt_header
.FileHeader
.SizeOfOptionalHeader
- sizeof(IMAGE_OPTIONAL_HEADER
);
306 assert(file_align
< sizeof(filler
));
307 SetLastError(0xdeadbeef);
308 ret
= WriteFile(hfile
, filler
, file_align
, &dummy
, NULL
);
309 ok(ret
, "WriteFile error %d\n", GetLastError());
313 assert(nt_header
.FileHeader
.NumberOfSections
<= 1);
314 if (nt_header
.FileHeader
.NumberOfSections
)
316 if (nt_header
.OptionalHeader
.SectionAlignment
>= si
.dwPageSize
)
318 section
.PointerToRawData
= td
[i
].size_of_dos_header
;
319 section
.VirtualAddress
= nt_header
.OptionalHeader
.SectionAlignment
;
320 section
.Misc
.VirtualSize
= section
.SizeOfRawData
* 10;
324 section
.PointerToRawData
= nt_header
.OptionalHeader
.SizeOfHeaders
;
325 section
.VirtualAddress
= nt_header
.OptionalHeader
.SizeOfHeaders
;
326 section
.Misc
.VirtualSize
= 5;
329 SetLastError(0xdeadbeef);
330 ret
= WriteFile(hfile
, §ion
, sizeof(section
), &dummy
, NULL
);
331 ok(ret
, "WriteFile error %d\n", GetLastError());
334 SetLastError(0xdeadbeef);
335 ret
= WriteFile(hfile
, section_data
, sizeof(section_data
), &dummy
, NULL
);
336 ok(ret
, "WriteFile error %d\n", GetLastError());
339 file_size
= GetFileSize(hfile
, NULL
);
342 SetLastError(0xdeadbeef);
343 hlib
= LoadLibrary(dll_name
);
346 MEMORY_BASIC_INFORMATION info
;
348 ok( td
[i
].errors
[0] == ERROR_SUCCESS
, "%d: should have failed\n", i
);
350 SetLastError(0xdeadbeef);
351 size
= VirtualQuery(hlib
, &info
, sizeof(info
));
352 ok(size
== sizeof(info
),
353 "%d: VirtualQuery error %d\n", i
, GetLastError());
354 ok(info
.BaseAddress
== hlib
, "%d: %p != %p\n", i
, info
.BaseAddress
, hlib
);
355 ok(info
.AllocationBase
== hlib
, "%d: %p != %p\n", i
, info
.AllocationBase
, hlib
);
356 ok(info
.AllocationProtect
== PAGE_EXECUTE_WRITECOPY
, "%d: %x != PAGE_EXECUTE_WRITECOPY\n", i
, info
.AllocationProtect
);
357 ok(info
.RegionSize
== ALIGN_SIZE(nt_header
.OptionalHeader
.SizeOfImage
, si
.dwPageSize
), "%d: got %lx != expected %x\n",
358 i
, info
.RegionSize
, ALIGN_SIZE(nt_header
.OptionalHeader
.SizeOfImage
, si
.dwPageSize
));
359 ok(info
.State
== MEM_COMMIT
, "%d: %x != MEM_COMMIT\n", i
, info
.State
);
360 if (nt_header
.OptionalHeader
.SectionAlignment
< si
.dwPageSize
)
361 ok(info
.Protect
== PAGE_EXECUTE_WRITECOPY
, "%d: %x != PAGE_EXECUTE_WRITECOPY\n", i
, info
.Protect
);
363 ok(info
.Protect
== PAGE_READONLY
, "%d: %x != PAGE_READONLY\n", i
, info
.Protect
);
364 ok(info
.Type
== SEC_IMAGE
, "%d: %x != SEC_IMAGE\n", i
, info
.Type
);
366 SetLastError(0xdeadbeef);
367 size
= VirtualQuery((char *)hlib
+ info
.RegionSize
, &info
, sizeof(info
));
368 ok(size
== sizeof(info
),
369 "%d: VirtualQuery error %d\n", i
, GetLastError());
370 if (nt_header
.OptionalHeader
.SectionAlignment
== si
.dwPageSize
||
371 nt_header
.OptionalHeader
.SectionAlignment
== nt_header
.OptionalHeader
.FileAlignment
)
373 ok(info
.BaseAddress
== (char *)hlib
+ ALIGN_SIZE(nt_header
.OptionalHeader
.SizeOfImage
, si
.dwPageSize
), "%d: got %p != expected %p\n",
374 i
, info
.BaseAddress
, (char *)hlib
+ ALIGN_SIZE(nt_header
.OptionalHeader
.SizeOfImage
, si
.dwPageSize
));
375 ok(info
.AllocationBase
== 0, "%d: %p != 0\n", i
, info
.AllocationBase
);
376 ok(info
.AllocationProtect
== 0, "%d: %x != 0\n", i
, info
.AllocationProtect
);
377 /*ok(info.RegionSize == not_practical_value, "%d: %lx != not_practical_value\n", i, info.RegionSize);*/
378 ok(info
.State
== MEM_FREE
, "%d: %x != MEM_FREE\n", i
, info
.State
);
379 ok(info
.Type
== 0, "%d: %x != 0\n", i
, info
.Type
);
380 ok(info
.Protect
== PAGE_NOACCESS
, "%d: %x != PAGE_NOACCESS\n", i
, info
.Protect
);
384 ok(info
.Protect
== PAGE_EXECUTE_WRITECOPY
, "%d: %x != PAGE_EXECUTE_WRITECOPY\n", i
, info
.Protect
);
385 ok(info
.BaseAddress
== hlib
, "%d: got %p != expected %p\n", i
, info
.BaseAddress
, hlib
);
386 ok(info
.AllocationBase
== hlib
, "%d: %p != %p\n", i
, info
.AllocationBase
, hlib
);
387 ok(info
.AllocationProtect
== PAGE_EXECUTE_WRITECOPY
, "%d: %x != PAGE_EXECUTE_WRITECOPY\n", i
, info
.AllocationProtect
);
388 ok(info
.RegionSize
== ALIGN_SIZE(file_size
, si
.dwPageSize
), "%d: got %lx != expected %x\n",
389 i
, info
.RegionSize
, ALIGN_SIZE(file_size
, si
.dwPageSize
));
390 ok(info
.State
== MEM_COMMIT
, "%d: %x != MEM_COMMIT\n", i
, info
.State
);
391 ok(info
.Protect
== PAGE_READONLY
, "%d: %x != PAGE_READONLY\n", i
, info
.Protect
);
392 ok(info
.Type
== SEC_IMAGE
, "%d: %x != SEC_IMAGE\n", i
, info
.Type
);
395 /* header: check the zeroing of alignment */
396 if (nt_header
.OptionalHeader
.SectionAlignment
>= si
.dwPageSize
)
401 start
= (const char *)hlib
+ nt_header
.OptionalHeader
.SizeOfHeaders
;
402 size
= ALIGN_SIZE((ULONG_PTR
)start
, si
.dwPageSize
) - (ULONG_PTR
)start
;
403 ok(!memcmp(start
, filler
, size
), "%d: header alignment is not cleared\n", i
);
406 if (nt_header
.FileHeader
.NumberOfSections
)
408 SetLastError(0xdeadbeef);
409 size
= VirtualQuery((char *)hlib
+ section
.VirtualAddress
, &info
, sizeof(info
));
410 ok(size
== sizeof(info
),
411 "%d: VirtualQuery error %d\n", i
, GetLastError());
412 if (nt_header
.OptionalHeader
.SectionAlignment
< si
.dwPageSize
)
414 ok(info
.BaseAddress
== hlib
, "%d: got %p != expected %p\n", i
, info
.BaseAddress
, hlib
);
415 ok(info
.RegionSize
== ALIGN_SIZE(nt_header
.OptionalHeader
.SizeOfImage
, si
.dwPageSize
), "%d: got %lx != expected %x\n",
416 i
, info
.RegionSize
, ALIGN_SIZE(nt_header
.OptionalHeader
.SizeOfImage
, si
.dwPageSize
));
417 ok(info
.Protect
== PAGE_EXECUTE_WRITECOPY
, "%d: %x != PAGE_EXECUTE_WRITECOPY\n", i
, info
.Protect
);
421 ok(info
.BaseAddress
== (char *)hlib
+ section
.VirtualAddress
, "%d: got %p != expected %p\n", i
, info
.BaseAddress
, (char *)hlib
+ section
.VirtualAddress
);
422 ok(info
.RegionSize
== ALIGN_SIZE(section
.Misc
.VirtualSize
, si
.dwPageSize
), "%d: got %lx != expected %x\n",
423 i
, info
.RegionSize
, ALIGN_SIZE(section
.Misc
.VirtualSize
, si
.dwPageSize
));
424 ok(info
.Protect
== PAGE_READONLY
, "%d: %x != PAGE_READONLY\n", i
, info
.Protect
);
426 ok(info
.AllocationBase
== hlib
, "%d: %p != %p\n", i
, info
.AllocationBase
, hlib
);
427 ok(info
.AllocationProtect
== PAGE_EXECUTE_WRITECOPY
, "%d: %x != PAGE_EXECUTE_WRITECOPY\n", i
, info
.AllocationProtect
);
428 ok(info
.State
== MEM_COMMIT
, "%d: %x != MEM_COMMIT\n", i
, info
.State
);
429 ok(info
.Type
== SEC_IMAGE
, "%d: %x != SEC_IMAGE\n", i
, info
.Type
);
431 if (nt_header
.OptionalHeader
.SectionAlignment
>= si
.dwPageSize
)
432 ok(!memcmp((const char *)hlib
+ section
.VirtualAddress
+ section
.PointerToRawData
, &nt_header
, section
.SizeOfRawData
), "wrong section data\n");
434 ok(!memcmp((const char *)hlib
+ section
.PointerToRawData
, section_data
, section
.SizeOfRawData
), "wrong section data\n");
436 /* check the zeroing of alignment */
437 if (nt_header
.OptionalHeader
.SectionAlignment
>= si
.dwPageSize
)
442 start
= (const char *)hlib
+ section
.VirtualAddress
+ section
.PointerToRawData
+ section
.SizeOfRawData
;
443 size
= ALIGN_SIZE((ULONG_PTR
)start
, si
.dwPageSize
) - (ULONG_PTR
)start
;
444 ok(memcmp(start
, filler
, size
), "%d: alignment should not be cleared\n", i
);
448 SetLastError(0xdeadbeef);
449 hlib_as_data_file
= LoadLibraryEx(dll_name
, 0, LOAD_LIBRARY_AS_DATAFILE
);
450 ok(hlib_as_data_file
!= 0, "LoadLibraryEx error %u\n", GetLastError());
451 ok(hlib_as_data_file
== hlib
, "hlib_as_file and hlib are different\n");
453 SetLastError(0xdeadbeef);
454 ret
= FreeLibrary(hlib
);
455 ok(ret
, "FreeLibrary error %d\n", GetLastError());
457 SetLastError(0xdeadbeef);
458 hlib
= GetModuleHandle(dll_name
);
459 ok(hlib
!= 0, "GetModuleHandle error %u\n", GetLastError());
461 SetLastError(0xdeadbeef);
462 ret
= FreeLibrary(hlib_as_data_file
);
463 ok(ret
, "FreeLibrary error %d\n", GetLastError());
465 hlib
= GetModuleHandle(dll_name
);
466 ok(!hlib
, "GetModuleHandle should fail\n");
468 SetLastError(0xdeadbeef);
469 hlib_as_data_file
= LoadLibraryEx(dll_name
, 0, LOAD_LIBRARY_AS_DATAFILE
);
470 ok(hlib_as_data_file
!= 0, "LoadLibraryEx error %u\n", GetLastError());
471 ok((ULONG_PTR
)hlib_as_data_file
& 1, "hlib_as_data_file is even\n");
473 hlib
= GetModuleHandle(dll_name
);
474 ok(!hlib
, "GetModuleHandle should fail\n");
476 SetLastError(0xdeadbeef);
477 ret
= FreeLibrary(hlib_as_data_file
);
478 ok(ret
, "FreeLibrary error %d\n", GetLastError());
485 if (GetLastError() == ERROR_GEN_FAILURE
) /* Win9x, broken behaviour */
487 trace("skipping the loader test on Win9x\n");
488 DeleteFile(dll_name
);
493 for (error_index
= 0;
494 ! error_match
&& error_index
< sizeof(td
[i
].errors
) / sizeof(DWORD
);
497 error_match
= td
[i
].errors
[error_index
] == GetLastError();
499 ok(error_match
, "%d: unexpected error %d\n", i
, GetLastError());
502 SetLastError(0xdeadbeef);
503 ret
= DeleteFile(dll_name
);
504 ok(ret
, "DeleteFile error %d\n", GetLastError());
508 /* Verify linking style of import descriptors */
509 static void test_ImportDescriptors(void)
511 HMODULE kernel32_module
= NULL
;
512 PIMAGE_DOS_HEADER d_header
;
513 PIMAGE_NT_HEADERS nt_headers
;
514 DWORD import_dir_size
;
515 DWORD_PTR dir_offset
;
516 PIMAGE_IMPORT_DESCRIPTOR import_chunk
;
518 /* Load kernel32 module */
519 kernel32_module
= GetModuleHandleA("kernel32.dll");
520 assert( kernel32_module
!= NULL
);
522 /* Get PE header info from module image */
523 d_header
= (PIMAGE_DOS_HEADER
) kernel32_module
;
524 nt_headers
= (PIMAGE_NT_HEADERS
) (((char*) d_header
) +
527 /* Get size of import entry directory */
528 import_dir_size
= nt_headers
->OptionalHeader
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_IMPORT
].Size
;
529 if (!import_dir_size
)
531 skip("Unable to continue testing due to missing import directory.\n");
535 /* Get address of first import chunk */
536 dir_offset
= nt_headers
->OptionalHeader
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_IMPORT
].VirtualAddress
;
537 import_chunk
= RVAToAddr(dir_offset
, kernel32_module
);
538 ok(import_chunk
!= 0, "Invalid import_chunk: %p\n", import_chunk
);
539 if (!import_chunk
) return;
541 /* Iterate through import descriptors and verify set name,
542 * OriginalFirstThunk, and FirstThunk. Core Windows DLLs, such as
543 * kernel32.dll, don't use Borland-style linking, where the table of
544 * imported names is stored directly in FirstThunk and overwritten
545 * by the relocation, instead of being stored in OriginalFirstThunk.
547 for (; import_chunk
->FirstThunk
; import_chunk
++)
549 LPCSTR module_name
= RVAToAddr(import_chunk
->Name
, kernel32_module
);
550 PIMAGE_THUNK_DATA name_table
= RVAToAddr(
551 U(*import_chunk
).OriginalFirstThunk
, kernel32_module
);
552 PIMAGE_THUNK_DATA iat
= RVAToAddr(
553 import_chunk
->FirstThunk
, kernel32_module
);
554 ok(module_name
!= NULL
, "Imported module name should not be NULL\n");
555 ok(name_table
!= NULL
,
556 "Name table for imported module %s should not be NULL\n",
558 ok(iat
!= NULL
, "IAT for imported module %s should not be NULL\n",
566 test_ImportDescriptors();