mixer: fix lowering hw volume while muted
[mplayer.git] / loader / pe_image.c
blobfed5780fb125d988efdbbc903fd1729b298fd161
1 /*
2 * Copyright 1994 Eric Youndale & Erik Bos
3 * Copyright 1995 Martin von Löwis
4 * Copyright 1996-98 Marcus Meissner
6 * based on Eric Youndale's pe-test and:
8 * ftp.microsoft.com:/pub/developer/MSDN/CD8/PEFILE.ZIP
9 * make that:
10 * ftp.microsoft.com:/developr/MSDN/OctCD/PEFILE.ZIP
12 * Modified for use with MPlayer, detailed changelog at
13 * http://svn.mplayerhq.hu/mplayer/trunk/
16 /* Notes:
17 * Before you start changing something in this file be aware of the following:
19 * - There are several functions called recursively. In a very subtle and
20 * obscure way. DLLs can reference each other recursively etc.
21 * - If you want to enhance, speed up or clean up something in here, think
22 * twice WHY it is implemented in that strange way. There is usually a reason.
23 * Though sometimes it might just be lazyness ;)
24 * - In PE_MapImage, right before fixup_imports() all external and internal
25 * state MUST be correct since this function can be called with the SAME image
26 * AGAIN. (Thats recursion for you.) That means MODREF.module and
27 * NE_MODULE.module32.
28 * - Sometimes, we can't use Linux mmap() to mmap() the images directly.
30 * The problem is, that there is not direct 1:1 mapping from a diskimage and
31 * a memoryimage. The headers at the start are mapped linear, but the sections
32 * are not. Older x86 pe binaries are 512 byte aligned in file and 4096 byte
33 * aligned in memory. Linux likes them 4096 byte aligned in memory (due to
34 * x86 pagesize, this cannot be fixed without a rather large kernel rewrite)
35 * and 'blocksize' file-aligned (offsets). Since we have 512/1024/2048 (CDROM)
36 * and other byte blocksizes, we can't always do this. We *can* do this for
37 * newer pe binaries produced by MSVC 5 and later, since they are also aligned
38 * to 4096 byte boundaries on disk.
40 #include "config.h"
41 #include "debug.h"
43 #include <errno.h>
44 #include <assert.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <string.h>
48 #include <unistd.h>
49 #include <sys/types.h>
50 #include <sys/stat.h>
51 #include <fcntl.h>
52 #ifdef HAVE_SYS_MMAN_H
53 #include <sys/mman.h>
54 #else
55 #include "osdep/mmap.h"
56 #endif
57 #include "wine/windef.h"
58 #include "wine/winbase.h"
59 #include "wine/winerror.h"
60 #include "wine/heap.h"
61 #include "wine/pe_image.h"
62 #include "wine/module.h"
63 #include "wine/debugtools.h"
64 #include "ext.h"
65 #include "win32.h"
67 #define RVA(x) ((void *)((char *)load_addr+(unsigned int)(x)))
69 #define AdjustPtr(ptr,delta) ((char *)(ptr) + (delta))
71 static void dump_exports( HMODULE hModule )
73 char *Module;
74 unsigned int i, j;
75 unsigned short *ordinal;
76 unsigned long *function;
77 unsigned char **name;
78 unsigned int load_addr = hModule;
80 DWORD rva_start = PE_HEADER(hModule)->OptionalHeader
81 .DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress;
82 DWORD rva_end = rva_start + PE_HEADER(hModule)->OptionalHeader
83 .DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].Size;
84 IMAGE_EXPORT_DIRECTORY *pe_exports = (IMAGE_EXPORT_DIRECTORY*)RVA(rva_start);
86 Module = (char*)RVA(pe_exports->Name);
87 (void)Module; //silence compiler warning
88 TRACE("*******EXPORT DATA*******\n");
89 TRACE("Module name is %s, %ld functions, %ld names\n",
90 Module, pe_exports->NumberOfFunctions, pe_exports->NumberOfNames);
92 ordinal=(unsigned short*) RVA(pe_exports->AddressOfNameOrdinals);
93 function=(unsigned long*) RVA(pe_exports->AddressOfFunctions);
94 name=(unsigned char**) RVA(pe_exports->AddressOfNames);
96 (void)name; //silence compiler warning
98 TRACE(" Ord RVA Addr Name\n" );
99 for (i=0;i<pe_exports->NumberOfFunctions;i++, function++)
101 if (!*function) continue;
102 if (TRACE_ON(win32))
104 dbg_printf( "%4ld %08lx %p", i + pe_exports->Base, *function, RVA(*function) );
106 for (j = 0; j < pe_exports->NumberOfNames; j++)
107 if (ordinal[j] == i)
109 dbg_printf( " %s", (char*)RVA(name[j]) );
110 break;
112 if ((*function >= rva_start) && (*function <= rva_end))
113 dbg_printf(" (forwarded -> %s)", (char *)RVA(*function));
114 dbg_printf("\n");
119 /* Look up the specified function or ordinal in the exportlist:
120 * If it is a string:
121 * - look up the name in the Name list.
122 * - look up the ordinal with that index.
123 * - use the ordinal as offset into the functionlist
124 * If it is a ordinal:
125 * - use ordinal-pe_export->Base as offset into the functionlist
127 FARPROC PE_FindExportedFunction(
128 WINE_MODREF *wm,
129 LPCSTR funcName,
130 WIN_BOOL snoop )
132 unsigned short * ordinals;
133 unsigned long * function;
134 unsigned char ** name;
135 const char *ename = NULL;
136 int i, ordinal;
137 PE_MODREF *pem = &(wm->binfmt.pe);
138 IMAGE_EXPORT_DIRECTORY *exports = pem->pe_export;
139 unsigned int load_addr = wm->module;
140 unsigned long rva_start, rva_end, addr;
142 if (HIWORD(funcName))
143 TRACE("(%s)\n",funcName);
144 else
145 TRACE("(%d)\n",(int)funcName);
146 if (!exports) {
147 /* Not a fatal problem, some apps do
148 * GetProcAddress(0,"RegisterPenApp") which triggers this
149 * case.
151 WARN("Module %08x(%s)/MODREF %p doesn't have a exports table.\n",wm->module,wm->modname,pem);
152 return NULL;
154 ordinals= (unsigned short*) RVA(exports->AddressOfNameOrdinals);
155 function= (unsigned long*) RVA(exports->AddressOfFunctions);
156 name = (unsigned char **) RVA(exports->AddressOfNames);
157 rva_start = PE_HEADER(wm->module)->OptionalHeader
158 .DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress;
159 rva_end = rva_start + PE_HEADER(wm->module)->OptionalHeader
160 .DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].Size;
162 if (HIWORD(funcName))
165 int min = 0, max = exports->NumberOfNames - 1;
166 while (min <= max)
168 int res, pos = (min + max) / 2;
169 ename = (const char*) RVA(name[pos]);
170 if (!(res = strcmp( ename, funcName )))
172 ordinal = ordinals[pos];
173 goto found;
175 if (res > 0) max = pos - 1;
176 else min = pos + 1;
179 for (i = 0; i < exports->NumberOfNames; i++)
181 ename = (const char*) RVA(name[i]);
182 if (!strcmp( ename, funcName ))
184 ERR( "%s.%s required a linear search\n", wm->modname, funcName );
185 ordinal = ordinals[i];
186 goto found;
189 return NULL;
191 else
193 ordinal = LOWORD(funcName) - exports->Base;
194 if (snoop && name)
196 for (i = 0; i < exports->NumberOfNames; i++)
197 if (ordinals[i] == ordinal)
199 ename = RVA(name[i]);
200 break;
205 found:
206 if (ordinal >= exports->NumberOfFunctions)
208 TRACE(" ordinal %ld out of range!\n", ordinal + exports->Base );
209 return NULL;
211 addr = function[ordinal];
212 if (!addr) return NULL;
213 if ((addr < rva_start) || (addr >= rva_end))
215 FARPROC proc = RVA(addr);
216 if (snoop)
218 if (!ename) ename = "@";
219 // proc = SNOOP_GetProcAddress(wm->module,ename,ordinal,proc);
220 TRACE("SNOOP_GetProcAddress n/a\n");
223 return proc;
225 else
227 WINE_MODREF *wm;
228 char *forward = RVA(addr);
229 char module[256];
230 char *end = strchr(forward, '.');
232 if (!end) return NULL;
233 if (end - forward >= sizeof(module)) return NULL;
234 memcpy( module, forward, end - forward );
235 module[end-forward] = 0;
236 if (!(wm = MODULE_FindModule( module )))
238 ERR("module not found for forward '%s'\n", forward );
239 return NULL;
241 return MODULE_GetProcAddress( wm->module, end + 1, snoop );
245 static DWORD fixup_imports( WINE_MODREF *wm )
247 IMAGE_IMPORT_DESCRIPTOR *pe_imp;
248 PE_MODREF *pem;
249 unsigned int load_addr = wm->module;
250 int i,characteristics_detection=1;
252 assert(wm->type==MODULE32_PE);
253 pem = &(wm->binfmt.pe);
256 TRACE("Dumping imports list\n");
259 pe_imp = pem->pe_import;
260 if (!pe_imp) return 0;
262 /* We assume that we have at least one import with !0 characteristics and
263 * detect broken imports with all characteristsics 0 (notably Borland) and
264 * switch the detection off for them.
266 for (i = 0; pe_imp->Name ; pe_imp++) {
267 if (!i && !pe_imp->u.Characteristics)
268 characteristics_detection = 0;
269 if (characteristics_detection && !pe_imp->u.Characteristics)
270 break;
271 i++;
273 if (!i) return 0;
276 wm->nDeps = i;
277 wm->deps = HeapAlloc( GetProcessHeap(), 0, i*sizeof(WINE_MODREF *) );
279 /* load the imported modules. They are automatically
280 * added to the modref list of the process.
283 for (i = 0, pe_imp = pem->pe_import; pe_imp->Name ; pe_imp++) {
284 IMAGE_IMPORT_BY_NAME *pe_name;
285 PIMAGE_THUNK_DATA import_list,thunk_list;
286 char *name = (char *) RVA(pe_imp->Name);
288 if (characteristics_detection && !pe_imp->u.Characteristics)
289 break;
291 /* FIXME: here we should fill imports */
292 TRACE("Loading imports for %s.dll\n", name);
294 if (pe_imp->u.OriginalFirstThunk != 0) {
295 TRACE("Microsoft style imports used\n");
296 import_list =(PIMAGE_THUNK_DATA) RVA(pe_imp->u.OriginalFirstThunk);
297 thunk_list = (PIMAGE_THUNK_DATA) RVA(pe_imp->FirstThunk);
299 while (import_list->u1.Ordinal) {
300 if (IMAGE_SNAP_BY_ORDINAL(import_list->u1.Ordinal)) {
301 int ordinal = IMAGE_ORDINAL(import_list->u1.Ordinal);
303 // TRACE("--- Ordinal %s,%d\n", name, ordinal);
305 thunk_list->u1.Function=LookupExternal(name, ordinal);
306 } else {
307 pe_name = (PIMAGE_IMPORT_BY_NAME)RVA(import_list->u1.AddressOfData);
308 // TRACE("--- %s %s.%d\n", pe_name->Name, name, pe_name->Hint);
309 thunk_list->u1.Function=LookupExternalByName(name, pe_name->Name);
311 import_list++;
312 thunk_list++;
314 } else {
315 TRACE("Borland style imports used\n");
316 thunk_list = (PIMAGE_THUNK_DATA) RVA(pe_imp->FirstThunk);
317 while (thunk_list->u1.Ordinal) {
318 if (IMAGE_SNAP_BY_ORDINAL(thunk_list->u1.Ordinal)) {
320 int ordinal = IMAGE_ORDINAL(thunk_list->u1.Ordinal);
322 TRACE("--- Ordinal %s.%d\n",name,ordinal);
323 thunk_list->u1.Function=LookupExternal(
324 name, ordinal);
325 } else {
326 pe_name=(PIMAGE_IMPORT_BY_NAME) RVA(thunk_list->u1.AddressOfData);
327 TRACE("--- %s %s.%d\n",
328 pe_name->Name,name,pe_name->Hint);
329 thunk_list->u1.Function=LookupExternalByName(
330 name, pe_name->Name);
332 thunk_list++;
336 return 0;
339 static int calc_vma_size( HMODULE hModule )
341 int i,vma_size = 0;
342 IMAGE_SECTION_HEADER *pe_seg = PE_SECTIONS(hModule);
344 TRACE("Dump of segment table\n");
345 TRACE(" Name VSz Vaddr SzRaw Fileadr *Reloc *Lineum #Reloc #Linum Char\n");
346 for (i = 0; i< PE_HEADER(hModule)->FileHeader.NumberOfSections; i++)
348 TRACE("%8s: %4.4lx %8.8lx %8.8lx %8.8lx %8.8lx %8.8lx %4.4x %4.4x %8.8lx\n",
349 pe_seg->Name,
350 pe_seg->Misc.VirtualSize,
351 pe_seg->VirtualAddress,
352 pe_seg->SizeOfRawData,
353 pe_seg->PointerToRawData,
354 pe_seg->PointerToRelocations,
355 pe_seg->PointerToLinenumbers,
356 pe_seg->NumberOfRelocations,
357 pe_seg->NumberOfLinenumbers,
358 pe_seg->Characteristics);
359 vma_size=max(vma_size, pe_seg->VirtualAddress+pe_seg->SizeOfRawData);
360 vma_size=max(vma_size, pe_seg->VirtualAddress+pe_seg->Misc.VirtualSize);
361 pe_seg++;
363 return vma_size;
366 static void do_relocations( unsigned int load_addr, IMAGE_BASE_RELOCATION *r )
368 int delta = load_addr - PE_HEADER(load_addr)->OptionalHeader.ImageBase;
369 int hdelta = (delta >> 16) & 0xFFFF;
370 int ldelta = delta & 0xFFFF;
372 if(delta == 0)
374 return;
375 while(r->VirtualAddress)
377 char *page = (char*) RVA(r->VirtualAddress);
378 int count = (r->SizeOfBlock - 8)/2;
379 int i;
380 TRACE_(fixup)("%x relocations for page %lx\n",
381 count, r->VirtualAddress);
383 for(i=0;i<count;i++)
385 int offset = r->TypeOffset[i] & 0xFFF;
386 int type = r->TypeOffset[i] >> 12;
387 // TRACE_(fixup)("patching %x type %x\n", offset, type);
388 switch(type)
390 case IMAGE_REL_BASED_ABSOLUTE: break;
391 case IMAGE_REL_BASED_HIGH:
392 *(short*)(page+offset) += hdelta;
393 break;
394 case IMAGE_REL_BASED_LOW:
395 *(short*)(page+offset) += ldelta;
396 break;
397 case IMAGE_REL_BASED_HIGHLOW:
398 *(int*)(page+offset) += delta;
400 break;
401 case IMAGE_REL_BASED_HIGHADJ:
402 FIXME("Don't know what to do with IMAGE_REL_BASED_HIGHADJ\n");
403 break;
404 case IMAGE_REL_BASED_MIPS_JMPADDR:
405 FIXME("Is this a MIPS machine ???\n");
406 break;
407 default:
408 FIXME("Unknown fixup type\n");
409 break;
412 r = (IMAGE_BASE_RELOCATION*)((char*)r + r->SizeOfBlock);
420 /**********************************************************************
421 * PE_LoadImage
422 * Load one PE format DLL/EXE into memory
424 * Unluckily we can't just mmap the sections where we want them, for
425 * (at least) Linux does only support offsets which are page-aligned.
427 * BUT we have to map the whole image anyway, for Win32 programs sometimes
428 * want to access them. (HMODULE32 point to the start of it)
430 HMODULE PE_LoadImage( int handle, LPCSTR filename, WORD *version )
432 HMODULE hModule;
433 HANDLE mapping;
435 IMAGE_NT_HEADERS *nt;
436 IMAGE_SECTION_HEADER *pe_sec;
437 IMAGE_DATA_DIRECTORY *dir;
438 // BY_HANDLE_FILE_INFORMATION bhfi;
439 int i, rawsize, lowest_va, vma_size, file_size = 0;
440 DWORD load_addr = 0, aoep, reloc = 0;
441 // struct get_read_fd_request *req = get_req_buffer();
442 int unix_handle = handle;
443 int page_size = getpagesize();
446 // if ( GetFileInformationByHandle( hFile, &bhfi ) )
447 // file_size = bhfi.nFileSizeLow;
448 file_size=lseek(handle, 0, SEEK_END);
449 lseek(handle, 0, SEEK_SET);
451 // fix CreateFileMappingA
452 mapping = CreateFileMappingA( handle, NULL, PAGE_READONLY | SEC_COMMIT,
453 0, 0, NULL );
454 if (!mapping)
456 WARN("CreateFileMapping error %ld\n", GetLastError() );
457 return 0;
459 // hModule = (HMODULE)MapViewOfFile( mapping, FILE_MAP_READ, 0, 0, 0 );
460 hModule=(HMODULE)mapping;
461 // CloseHandle( mapping );
462 if (!hModule)
464 WARN("MapViewOfFile error %ld\n", GetLastError() );
465 return 0;
467 if ( *(WORD*)hModule !=IMAGE_DOS_SIGNATURE)
469 WARN("%s image doesn't have DOS signature, but 0x%04x\n", filename,*(WORD*)hModule);
470 goto error;
473 nt = PE_HEADER( hModule );
476 if ( nt->Signature != IMAGE_NT_SIGNATURE )
478 WARN("%s image doesn't have PE signature, but 0x%08lx\n", filename, nt->Signature );
479 goto error;
483 if ( nt->FileHeader.Machine != IMAGE_FILE_MACHINE_I386 )
485 dbg_printf("Trying to load PE image for unsupported architecture (");
486 switch (nt->FileHeader.Machine)
488 case IMAGE_FILE_MACHINE_UNKNOWN: dbg_printf("Unknown"); break;
489 case IMAGE_FILE_MACHINE_I860: dbg_printf("I860"); break;
490 case IMAGE_FILE_MACHINE_R3000: dbg_printf("R3000"); break;
491 case IMAGE_FILE_MACHINE_R4000: dbg_printf("R4000"); break;
492 case IMAGE_FILE_MACHINE_R10000: dbg_printf("R10000"); break;
493 case IMAGE_FILE_MACHINE_ALPHA: dbg_printf("Alpha"); break;
494 case IMAGE_FILE_MACHINE_POWERPC: dbg_printf("PowerPC"); break;
495 default: dbg_printf("Unknown-%04x", nt->FileHeader.Machine); break;
497 dbg_printf(")\n");
498 goto error;
502 pe_sec = PE_SECTIONS( hModule );
503 rawsize = 0; lowest_va = 0x10000;
504 for (i = 0; i < nt->FileHeader.NumberOfSections; i++)
506 if (lowest_va > pe_sec[i].VirtualAddress)
507 lowest_va = pe_sec[i].VirtualAddress;
508 if (pe_sec[i].Characteristics & IMAGE_SCN_CNT_UNINITIALIZED_DATA)
509 continue;
510 if (pe_sec[i].PointerToRawData+pe_sec[i].SizeOfRawData > rawsize)
511 rawsize = pe_sec[i].PointerToRawData+pe_sec[i].SizeOfRawData;
515 if ( file_size && file_size < rawsize )
517 ERR("PE module is too small (header: %d, filesize: %d), "
518 "probably truncated download?\n",
519 rawsize, file_size );
520 goto error;
524 aoep = nt->OptionalHeader.AddressOfEntryPoint;
525 if (aoep && (aoep < lowest_va))
526 FIXME("VIRUS WARNING: '%s' has an invalid entrypoint (0x%08lx) "
527 "below the first virtual address (0x%08x) "
528 "(possibly infected by Tchernobyl/SpaceFiller virus)!\n",
529 filename, aoep, lowest_va );
532 /* FIXME: Hack! While we don't really support shared sections yet,
533 * this checks for those special cases where the whole DLL
534 * consists only of shared sections and is mapped into the
535 * shared address space > 2GB. In this case, we assume that
536 * the module got mapped at its base address. Thus we simply
537 * check whether the module has actually been mapped there
538 * and use it, if so. This is needed to get Win95 USER32.DLL
539 * to work (until we support shared sections properly).
542 if ( nt->OptionalHeader.ImageBase & 0x80000000 &&
543 !strstr(filename, "xanlib.dll"))
545 HMODULE sharedMod = (HMODULE)nt->OptionalHeader.ImageBase;
546 IMAGE_NT_HEADERS *sharedNt = (PIMAGE_NT_HEADERS)
547 ( (LPBYTE)sharedMod + ((LPBYTE)nt - (LPBYTE)hModule) );
549 /* Well, this check is not really comprehensive,
550 but should be good enough for now ... */
551 if ( !IsBadReadPtr( (LPBYTE)sharedMod, sizeof(IMAGE_DOS_HEADER) )
552 && memcmp( (LPBYTE)sharedMod, (LPBYTE)hModule, sizeof(IMAGE_DOS_HEADER) ) == 0
553 && !IsBadReadPtr( sharedNt, sizeof(IMAGE_NT_HEADERS) )
554 && memcmp( sharedNt, nt, sizeof(IMAGE_NT_HEADERS) ) == 0 )
556 UnmapViewOfFile( (LPVOID)hModule );
557 return sharedMod;
563 load_addr = nt->OptionalHeader.ImageBase;
564 vma_size = calc_vma_size( hModule );
566 load_addr = (DWORD)VirtualAlloc( (void*)load_addr, vma_size,
567 MEM_RESERVE | MEM_COMMIT,
568 PAGE_EXECUTE_READWRITE );
569 if (load_addr == 0)
572 FIXME("We need to perform base relocations for %s\n", filename);
573 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_BASERELOC;
574 if (dir->Size)
575 reloc = dir->VirtualAddress;
576 else
578 FIXME( "FATAL: Need to relocate %s, but no relocation records present (%s). Try to run that file directly !\n",
579 filename,
580 (nt->FileHeader.Characteristics&IMAGE_FILE_RELOCS_STRIPPED)?
581 "stripped during link" : "unknown reason" );
582 goto error;
585 /* FIXME: If we need to relocate a system DLL (base > 2GB) we should
586 * really make sure that the *new* base address is also > 2GB.
587 * Some DLLs really check the MSB of the module handle :-/
589 if ( nt->OptionalHeader.ImageBase & 0x80000000 )
590 ERR( "Forced to relocate system DLL (base > 2GB). This is not good.\n" );
592 load_addr = (DWORD)VirtualAlloc( NULL, vma_size,
593 MEM_RESERVE | MEM_COMMIT,
594 PAGE_EXECUTE_READWRITE );
595 if (!load_addr) {
596 FIXME_(win32)(
597 "FATAL: Couldn't load module %s (out of memory, %d needed)!\n", filename, vma_size);
598 goto error;
602 TRACE("Load addr is %lx (base %lx), range %x\n",
603 load_addr, nt->OptionalHeader.ImageBase, vma_size );
604 TRACE_(segment)("Loading %s at %lx, range %x\n",
605 filename, load_addr, vma_size );
607 #if 0
609 *(PIMAGE_DOS_HEADER)load_addr = *(PIMAGE_DOS_HEADER)hModule;
610 *PE_HEADER( load_addr ) = *nt;
611 memcpy( PE_SECTIONS(load_addr), PE_SECTIONS(hModule),
612 sizeof(IMAGE_SECTION_HEADER) * nt->FileHeader.NumberOfSections );
615 memcpy( load_addr, hModule, lowest_fa );
616 #endif
618 if ((void*)FILE_dommap( handle, (void *)load_addr, 0, nt->OptionalHeader.SizeOfHeaders,
619 0, 0, PROT_EXEC | PROT_WRITE | PROT_READ,
620 MAP_PRIVATE | MAP_FIXED ) != (void*)load_addr)
622 ERR_(win32)( "Critical Error: failed to map PE header to necessary address.\n");
623 goto error;
627 pe_sec = PE_SECTIONS( hModule );
628 for (i = 0; i < nt->FileHeader.NumberOfSections; i++, pe_sec++)
630 if (!pe_sec->SizeOfRawData || !pe_sec->PointerToRawData) continue;
631 TRACE("%s: mmaping section %s at %p off %lx size %lx/%lx\n",
632 filename, pe_sec->Name, (void*)RVA(pe_sec->VirtualAddress),
633 pe_sec->PointerToRawData, pe_sec->SizeOfRawData, pe_sec->Misc.VirtualSize );
634 if ((void*)FILE_dommap( unix_handle, (void*)RVA(pe_sec->VirtualAddress),
635 0, pe_sec->SizeOfRawData, 0, pe_sec->PointerToRawData,
636 PROT_EXEC | PROT_WRITE | PROT_READ,
637 MAP_PRIVATE | MAP_FIXED ) != (void*)RVA(pe_sec->VirtualAddress))
640 ERR_(win32)( "Critical Error: failed to map PE section to necessary address.\n");
641 goto error;
643 if ((pe_sec->SizeOfRawData < pe_sec->Misc.VirtualSize) &&
644 (pe_sec->SizeOfRawData & (page_size-1)))
646 DWORD end = (pe_sec->SizeOfRawData & ~(page_size-1)) + page_size;
647 if (end > pe_sec->Misc.VirtualSize) end = pe_sec->Misc.VirtualSize;
648 TRACE("clearing %p - %p\n",
649 RVA(pe_sec->VirtualAddress) + pe_sec->SizeOfRawData,
650 RVA(pe_sec->VirtualAddress) + end );
651 memset( (char*)RVA(pe_sec->VirtualAddress) + pe_sec->SizeOfRawData, 0,
652 end - pe_sec->SizeOfRawData );
657 if ( reloc )
658 do_relocations( load_addr, (IMAGE_BASE_RELOCATION *)RVA(reloc) );
661 *version = ( (nt->OptionalHeader.MajorSubsystemVersion & 0xff) << 8 )
662 | (nt->OptionalHeader.MinorSubsystemVersion & 0xff);
665 UnmapViewOfFile( (LPVOID)hModule );
666 return (HMODULE)load_addr;
668 error:
669 if (unix_handle != -1) close( unix_handle );
670 if (load_addr)
671 VirtualFree( (LPVOID)load_addr, 0, MEM_RELEASE );
672 UnmapViewOfFile( (LPVOID)hModule );
673 return 0;
676 /**********************************************************************
677 * PE_CreateModule
679 * Create WINE_MODREF structure for loaded HMODULE32, link it into
680 * process modref_list, and fixup all imports.
682 * Note: hModule must point to a correctly allocated PE image,
683 * with base relocations applied; the 16-bit dummy module
684 * associated to hModule must already exist.
686 * Note: This routine must always be called in the context of the
687 * process that is to own the module to be created.
689 WINE_MODREF *PE_CreateModule( HMODULE hModule,
690 LPCSTR filename, DWORD flags, WIN_BOOL builtin )
692 DWORD load_addr = (DWORD)hModule;
693 IMAGE_NT_HEADERS *nt = PE_HEADER(hModule);
694 IMAGE_DATA_DIRECTORY *dir;
695 IMAGE_IMPORT_DESCRIPTOR *pe_import = NULL;
696 IMAGE_EXPORT_DIRECTORY *pe_export = NULL;
697 IMAGE_RESOURCE_DIRECTORY *pe_resource = NULL;
698 WINE_MODREF *wm;
703 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_EXPORT;
704 if (dir->Size)
705 pe_export = (PIMAGE_EXPORT_DIRECTORY)RVA(dir->VirtualAddress);
707 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_IMPORT;
708 if (dir->Size)
709 pe_import = (PIMAGE_IMPORT_DESCRIPTOR)RVA(dir->VirtualAddress);
711 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_RESOURCE;
712 if (dir->Size)
713 pe_resource = (PIMAGE_RESOURCE_DIRECTORY)RVA(dir->VirtualAddress);
715 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_EXCEPTION;
716 if (dir->Size) FIXME("Exception directory ignored\n" );
718 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_SECURITY;
719 if (dir->Size) FIXME("Security directory ignored\n" );
724 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_DEBUG;
725 if (dir->Size) TRACE("Debug directory ignored\n" );
727 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_COPYRIGHT;
728 if (dir->Size) FIXME("Copyright string ignored\n" );
730 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_GLOBALPTR;
731 if (dir->Size) FIXME("Global Pointer (MIPS) ignored\n" );
735 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG;
736 if (dir->Size) FIXME("Load Configuration directory ignored\n" );
738 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT;
739 if (dir->Size) TRACE("Bound Import directory ignored\n" );
741 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_IAT;
742 if (dir->Size) TRACE("Import Address Table directory ignored\n" );
744 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT;
745 if (dir->Size)
747 TRACE("Delayed import, stub calls LoadLibrary\n" );
749 * Nothing to do here.
752 #ifdef ImgDelayDescr
754 * This code is useful to observe what the heck is going on.
757 ImgDelayDescr *pe_delay = NULL;
758 pe_delay = (PImgDelayDescr)RVA(dir->VirtualAddress);
759 TRACE_(delayhlp)("pe_delay->grAttrs = %08x\n", pe_delay->grAttrs);
760 TRACE_(delayhlp)("pe_delay->szName = %s\n", pe_delay->szName);
761 TRACE_(delayhlp)("pe_delay->phmod = %08x\n", pe_delay->phmod);
762 TRACE_(delayhlp)("pe_delay->pIAT = %08x\n", pe_delay->pIAT);
763 TRACE_(delayhlp)("pe_delay->pINT = %08x\n", pe_delay->pINT);
764 TRACE_(delayhlp)("pe_delay->pBoundIAT = %08x\n", pe_delay->pBoundIAT);
765 TRACE_(delayhlp)("pe_delay->pUnloadIAT = %08x\n", pe_delay->pUnloadIAT);
766 TRACE_(delayhlp)("pe_delay->dwTimeStamp = %08x\n", pe_delay->dwTimeStamp);
768 #endif
771 dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR;
772 if (dir->Size) FIXME("Unknown directory 14 ignored\n" );
774 dir = nt->OptionalHeader.DataDirectory+15;
775 if (dir->Size) FIXME("Unknown directory 15 ignored\n" );
780 wm = (WINE_MODREF *)HeapAlloc( GetProcessHeap(),
781 HEAP_ZERO_MEMORY, sizeof(*wm) );
782 wm->module = hModule;
784 if ( builtin )
785 wm->flags |= WINE_MODREF_INTERNAL;
786 if ( flags & DONT_RESOLVE_DLL_REFERENCES )
787 wm->flags |= WINE_MODREF_DONT_RESOLVE_REFS;
788 if ( flags & LOAD_LIBRARY_AS_DATAFILE )
789 wm->flags |= WINE_MODREF_LOAD_AS_DATAFILE;
791 wm->type = MODULE32_PE;
792 wm->binfmt.pe.pe_export = pe_export;
793 wm->binfmt.pe.pe_import = pe_import;
794 wm->binfmt.pe.pe_resource = pe_resource;
795 wm->binfmt.pe.tlsindex = -1;
797 wm->filename = malloc(strlen(filename)+1);
798 strcpy(wm->filename, filename );
799 wm->modname = strrchr( wm->filename, '\\' );
800 if (!wm->modname) wm->modname = wm->filename;
801 else wm->modname++;
803 if ( pe_export )
804 dump_exports( hModule );
806 /* Fixup Imports */
808 if ( pe_import
809 && !( wm->flags & WINE_MODREF_LOAD_AS_DATAFILE )
810 && !( wm->flags & WINE_MODREF_DONT_RESOLVE_REFS )
811 && fixup_imports( wm ) )
813 /* remove entry from modref chain */
814 return NULL;
817 return wm;
820 /******************************************************************************
821 * The PE Library Loader frontend.
822 * FIXME: handle the flags.
824 WINE_MODREF *PE_LoadLibraryExA (LPCSTR name, DWORD flags)
826 HMODULE hModule32;
827 WINE_MODREF *wm;
828 char filename[256];
829 int hFile;
830 WORD version = 0;
833 strncpy(filename, name, sizeof(filename));
834 hFile=open(filename, O_RDONLY);
835 if(hFile==-1)
836 return NULL;
839 hModule32 = PE_LoadImage( hFile, filename, &version );
840 if (!hModule32)
842 SetLastError( ERROR_OUTOFMEMORY );
843 return NULL;
846 if ( !(wm = PE_CreateModule( hModule32, filename, flags, FALSE )) )
848 ERR( "can't load %s\n", filename );
849 SetLastError( ERROR_OUTOFMEMORY );
850 return NULL;
852 close(hFile);
853 //printf("^^^^^^^^^^^^^^^^Alloc VM1 %p\n", wm);
854 return wm;
858 /*****************************************************************************
859 * PE_UnloadLibrary
861 * Unload the library unmapping the image and freeing the modref structure.
863 void PE_UnloadLibrary(WINE_MODREF *wm)
865 TRACE(" unloading %s\n", wm->filename);
867 free(wm->filename);
868 free(wm->short_filename);
869 HeapFree( GetProcessHeap(), 0, wm->deps );
870 VirtualFree( (LPVOID)wm->module, 0, MEM_RELEASE );
871 HeapFree( GetProcessHeap(), 0, wm );
872 //printf("^^^^^^^^^^^^^^^^Free VM1 %p\n", wm);
875 /*****************************************************************************
876 * Load the PE main .EXE. All other loading is done by PE_LoadLibraryExA
877 * FIXME: this function should use PE_LoadLibraryExA, but currently can't
878 * due to the PROCESS_Create stuff.
883 * This is a dirty hack.
884 * The win32 DLLs contain an alloca routine, that first probes the soon
885 * to be allocated new memory *below* the current stack pointer in 4KByte
886 * increments. After the mem probing below the current %esp, the stack
887 * pointer is finally decremented to make room for the "alloca"ed memory.
888 * Maybe the probing code is intended to extend the stack on a windows box.
889 * Anyway, the linux kernel does *not* extend the stack by simply accessing
890 * memory below %esp; it segfaults.
891 * The extend_stack_for_dll_alloca() routine just preallocates a big chunk
892 * of memory on the stack, for use by the DLLs alloca routine.
893 * Added the noinline attribute as e.g. gcc 3.2.2 inlines this function
894 * in a way that breaks it.
896 static void __attribute__((noinline)) extend_stack_for_dll_alloca(void)
898 #if !defined(__FreeBSD__) && !defined(__DragonFly__)
899 volatile int* mem=alloca(0x20000);
900 *mem=0x1234;
901 #endif
904 /* Called if the library is loaded or freed.
905 * NOTE: if a thread attaches a DLL, the current thread will only do
906 * DLL_PROCESS_ATTACH. Only new created threads do DLL_THREAD_ATTACH
907 * (SDK)
909 WIN_BOOL PE_InitDLL( WINE_MODREF *wm, DWORD type, LPVOID lpReserved )
911 WIN_BOOL retv = TRUE;
912 assert( wm->type == MODULE32_PE );
915 if ((PE_HEADER(wm->module)->FileHeader.Characteristics & IMAGE_FILE_DLL) &&
916 (PE_HEADER(wm->module)->OptionalHeader.AddressOfEntryPoint)
918 DLLENTRYPROC entry ;
919 entry = (void*)PE_FindExportedFunction(wm, "DllMain", 0);
920 if(entry==NULL)
921 entry = (void*)RVA_PTR( wm->module,OptionalHeader.AddressOfEntryPoint );
923 TRACE_(relay)("CallTo32(entryproc=%p,module=%08x,type=%ld,res=%p)\n",
924 entry, wm->module, type, lpReserved );
927 TRACE("Entering DllMain(");
928 switch(type)
930 case DLL_PROCESS_DETACH:
931 TRACE("DLL_PROCESS_DETACH) ");
932 break;
933 case DLL_PROCESS_ATTACH:
934 TRACE("DLL_PROCESS_ATTACH) ");
935 break;
936 case DLL_THREAD_DETACH:
937 TRACE("DLL_THREAD_DETACH) ");
938 break;
939 case DLL_THREAD_ATTACH:
940 TRACE("DLL_THREAD_ATTACH) ");
941 break;
943 TRACE("for %s\n", wm->filename);
944 extend_stack_for_dll_alloca();
945 retv = entry( wm->module, type, lpReserved );
948 return retv;