PE_LoadImage: removed version parameter, set last error correctly.
[wine] / loader / pe_image.c
1 /* 
2  *  Copyright   1994    Eric Youndale & Erik Bos
3  *  Copyright   1995    Martin von Löwis
4  *  Copyright   1996-98 Marcus Meissner
5  *
6  *      based on Eric Youndale's pe-test and:
7  *
8  *      ftp.microsoft.com:/pub/developer/MSDN/CD8/PEFILE.ZIP
9  * make that:
10  *      ftp.microsoft.com:/developr/MSDN/OctCD/PEFILE.ZIP
11  */
12 /* Notes:
13  * Before you start changing something in this file be aware of the following:
14  *
15  * - There are several functions called recursively. In a very subtle and 
16  *   obscure way. DLLs can reference each other recursively etc.
17  * - If you want to enhance, speed up or clean up something in here, think
18  *   twice WHY it is implemented in that strange way. There is usually a reason.
19  *   Though sometimes it might just be lazyness ;)
20  * - In PE_MapImage, right before fixup_imports() all external and internal 
21  *   state MUST be correct since this function can be called with the SAME image
22  *   AGAIN. (Thats recursion for you.) That means MODREF.module and
23  *   NE_MODULE.module32.
24  * - Sometimes, we can't use Linux mmap() to mmap() the images directly.
25  *
26  *   The problem is, that there is not direct 1:1 mapping from a diskimage and
27  *   a memoryimage. The headers at the start are mapped linear, but the sections
28  *   are not. Older x86 pe binaries are 512 byte aligned in file and 4096 byte
29  *   aligned in memory. Linux likes them 4096 byte aligned in memory (due to
30  *   x86 pagesize, this cannot be fixed without a rather large kernel rewrite)
31  *   and 'blocksize' file-aligned (offsets). Since we have 512/1024/2048 (CDROM)
32  *   and other byte blocksizes, we can't always do this.  We *can* do this for
33  *   newer pe binaries produced by MSVC 5 and later, since they are also aligned
34  *   to 4096 byte boundaries on disk.
35  */
36
37 #include "config.h"
38
39 #include <errno.h>
40 #include <assert.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <unistd.h>
44 #include <sys/types.h>
45 #include <sys/stat.h>
46 #ifdef HAVE_SYS_MMAN_H
47 #include <sys/mman.h>
48 #endif
49 #include "windef.h"
50 #include "winbase.h"
51 #include "winerror.h"
52 #include "callback.h"
53 #include "file.h"
54 #include "heap.h"
55 #include "neexe.h"
56 #include "process.h"
57 #include "thread.h"
58 #include "pe_image.h"
59 #include "module.h"
60 #include "global.h"
61 #include "task.h"
62 #include "snoop.h"
63 #include "server.h"
64 #include "debugtools.h"
65
66 DEFAULT_DEBUG_CHANNEL(win32)
67 DECLARE_DEBUG_CHANNEL(delayhlp)
68 DECLARE_DEBUG_CHANNEL(fixup)
69 DECLARE_DEBUG_CHANNEL(module)
70 DECLARE_DEBUG_CHANNEL(relay)
71 DECLARE_DEBUG_CHANNEL(segment)
72
73
74 /* convert PE image VirtualAddress to Real Address */
75 #define RVA(x) ((void *)((char *)load_addr+(unsigned int)(x)))
76
77 #define AdjustPtr(ptr,delta) ((char *)(ptr) + (delta))
78
79 void dump_exports( HMODULE hModule )
80
81   char          *Module;
82   int           i, j;
83   u_short       *ordinal;
84   u_long        *function,*functions;
85   u_char        **name;
86   unsigned int load_addr = hModule;
87
88   DWORD rva_start = PE_HEADER(hModule)->OptionalHeader
89                    .DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress;
90   DWORD rva_end = rva_start + PE_HEADER(hModule)->OptionalHeader
91                    .DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].Size;
92   IMAGE_EXPORT_DIRECTORY *pe_exports = (IMAGE_EXPORT_DIRECTORY*)RVA(rva_start);
93
94   Module = (char*)RVA(pe_exports->Name);
95   TRACE("*******EXPORT DATA*******\n");
96   TRACE("Module name is %s, %ld functions, %ld names\n", 
97         Module, pe_exports->NumberOfFunctions, pe_exports->NumberOfNames);
98
99   ordinal=(u_short*) RVA(pe_exports->AddressOfNameOrdinals);
100   functions=function=(u_long*) RVA(pe_exports->AddressOfFunctions);
101   name=(u_char**) RVA(pe_exports->AddressOfNames);
102
103   TRACE(" Ord    RVA     Addr   Name\n" );
104   for (i=0;i<pe_exports->NumberOfFunctions;i++, function++)
105   {
106       if (!*function) continue;  /* No such function */
107       if (TRACE_ON(win32))
108       {
109         DPRINTF( "%4ld %08lx %p", i + pe_exports->Base, *function, RVA(*function) );
110         /* Check if we have a name for it */
111         for (j = 0; j < pe_exports->NumberOfNames; j++)
112           if (ordinal[j] == i)
113           {
114               DPRINTF( "  %s", (char*)RVA(name[j]) );
115               break;
116           }
117         if ((*function >= rva_start) && (*function <= rva_end))
118           DPRINTF(" (forwarded -> %s)", (char *)RVA(*function));
119         DPRINTF("\n");
120       }
121   }
122 }
123
124 /* Look up the specified function or ordinal in the exportlist:
125  * If it is a string:
126  *      - look up the name in the Name list. 
127  *      - look up the ordinal with that index.
128  *      - use the ordinal as offset into the functionlist
129  * If it is a ordinal:
130  *      - use ordinal-pe_export->Base as offset into the functionlist
131  */
132 FARPROC PE_FindExportedFunction( 
133         WINE_MODREF *wm,        /* [in] WINE modreference */
134         LPCSTR funcName,        /* [in] function name */
135         BOOL snoop )
136 {
137         u_short                         * ordinals;
138         u_long                          * function;
139         u_char                          ** name, *ename = NULL;
140         int                             i, ordinal;
141         PE_MODREF                       *pem = &(wm->binfmt.pe);
142         IMAGE_EXPORT_DIRECTORY          *exports = pem->pe_export;
143         unsigned int                    load_addr = wm->module;
144         u_long                          rva_start, rva_end, addr;
145         char                            * forward;
146
147         if (HIWORD(funcName))
148                 TRACE("(%s)\n",funcName);
149         else
150                 TRACE("(%d)\n",(int)funcName);
151         if (!exports) {
152                 /* Not a fatal problem, some apps do
153                  * GetProcAddress(0,"RegisterPenApp") which triggers this
154                  * case.
155                  */
156                 WARN("Module %08x(%s)/MODREF %p doesn't have a exports table.\n",wm->module,wm->modname,pem);
157                 return NULL;
158         }
159         ordinals= (u_short*)  RVA(exports->AddressOfNameOrdinals);
160         function= (u_long*)   RVA(exports->AddressOfFunctions);
161         name    = (u_char **) RVA(exports->AddressOfNames);
162         forward = NULL;
163         rva_start = PE_HEADER(wm->module)->OptionalHeader
164                 .DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress;
165         rva_end = rva_start + PE_HEADER(wm->module)->OptionalHeader
166                 .DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].Size;
167
168         if (HIWORD(funcName))
169         {
170             /* first try a binary search */
171             int min = 0, max = exports->NumberOfNames - 1;
172             while (min <= max)
173             {
174                 int res, pos = (min + max) / 2;
175                 ename = RVA(name[pos]);
176                 if (!(res = strcmp( ename, funcName )))
177                 {
178                     ordinal = ordinals[pos];
179                     goto found;
180                 }
181                 if (res > 0) max = pos - 1;
182                 else min = pos + 1;
183             }
184             /* now try a linear search in case the names aren't sorted properly */
185             for (i = 0; i < exports->NumberOfNames; i++)
186             {
187                 ename = RVA(name[i]);
188                 if (!strcmp( ename, funcName ))
189                 {
190                     ERR( "%s.%s required a linear search\n", wm->modname, funcName );
191                     ordinal = ordinals[i];
192                     goto found;
193                 }
194             }
195             return NULL;
196         }
197         else  /* find by ordinal */
198         {
199             ordinal = LOWORD(funcName) - exports->Base;
200             if (snoop && name)  /* need to find a name for it */
201             {
202                 for (i = 0; i < exports->NumberOfNames; i++)
203                     if (ordinals[i] == ordinal)
204                     {
205                         ename = RVA(name[i]);
206                         break;
207                     }
208             }
209         }
210
211  found:
212         if (ordinal >= exports->NumberOfFunctions)
213         {
214             TRACE("     ordinal %ld out of range!\n", ordinal + exports->Base );
215             return NULL;
216         }
217         addr = function[ordinal];
218         if (!addr) return NULL;
219         if ((addr < rva_start) || (addr >= rva_end))
220         {
221             FARPROC proc = RVA(addr);
222             if (snoop)
223             {
224                 if (!ename) ename = "@";
225                 proc = SNOOP_GetProcAddress(wm->module,ename,ordinal,proc);
226             }
227             return proc;
228         }
229         else  /* forward entry point */
230         {
231                 WINE_MODREF *wm;
232                 char *forward = RVA(addr);
233                 char module[256];
234                 char *end = strchr(forward, '.');
235
236                 if (!end) return NULL;
237                 if (end - forward >= sizeof(module)) return NULL;
238                 memcpy( module, forward, end - forward );
239                 module[end-forward] = 0;
240                 if (!(wm = MODULE_FindModule( module )))
241                 {
242                     ERR("module not found for forward '%s'\n", forward );
243                     return NULL;
244                 }
245                 return MODULE_GetProcAddress( wm->module, end + 1, snoop );
246         }
247 }
248
249 DWORD fixup_imports( WINE_MODREF *wm )
250 {
251     IMAGE_IMPORT_DESCRIPTOR     *pe_imp;
252     PE_MODREF                   *pem;
253     unsigned int load_addr      = wm->module;
254     int                         i,characteristics_detection=1;
255     char                        *modname;
256     
257     assert(wm->type==MODULE32_PE);
258     pem = &(wm->binfmt.pe);
259     if (pem->pe_export)
260         modname = (char*) RVA(pem->pe_export->Name);
261     else
262         modname = "<unknown>";
263
264     /* OK, now dump the import list */
265     TRACE("Dumping imports list\n");
266
267     /* first, count the number of imported non-internal modules */
268     pe_imp = pem->pe_import;
269     if (!pe_imp) return 0;
270
271     /* We assume that we have at least one import with !0 characteristics and
272      * detect broken imports with all characteristsics 0 (notably Borland) and
273      * switch the detection off for them.
274      */
275     for (i = 0; pe_imp->Name ; pe_imp++) {
276         if (!i && !pe_imp->u.Characteristics)
277                 characteristics_detection = 0;
278         if (characteristics_detection && !pe_imp->u.Characteristics)
279                 break;
280         i++;
281     }
282     if (!i) return 0;  /* no imports */
283
284     /* Allocate module dependency list */
285     wm->nDeps = i;
286     wm->deps  = HeapAlloc( GetProcessHeap(), 0, i*sizeof(WINE_MODREF *) );
287
288     /* load the imported modules. They are automatically 
289      * added to the modref list of the process.
290      */
291  
292     for (i = 0, pe_imp = pem->pe_import; pe_imp->Name ; pe_imp++) {
293         WINE_MODREF             *wmImp;
294         IMAGE_IMPORT_BY_NAME    *pe_name;
295         PIMAGE_THUNK_DATA       import_list,thunk_list;
296         char                    *name = (char *) RVA(pe_imp->Name);
297
298         if (characteristics_detection && !pe_imp->u.Characteristics)
299                 break;
300
301         wmImp = MODULE_LoadLibraryExA( name, 0, 0 );
302         if (!wmImp) {
303             ERR_(module)("Module %s not found\n", name);
304             return 1;
305         }
306         wm->deps[i++] = wmImp;
307
308         /* FIXME: forwarder entries ... */
309
310         if (pe_imp->u.OriginalFirstThunk != 0) { /* original MS style */
311             TRACE("Microsoft style imports used\n");
312             import_list =(PIMAGE_THUNK_DATA) RVA(pe_imp->u.OriginalFirstThunk);
313             thunk_list = (PIMAGE_THUNK_DATA) RVA(pe_imp->FirstThunk);
314
315             while (import_list->u1.Ordinal) {
316                 if (IMAGE_SNAP_BY_ORDINAL(import_list->u1.Ordinal)) {
317                     int ordinal = IMAGE_ORDINAL(import_list->u1.Ordinal);
318
319                     TRACE("--- Ordinal %s,%d\n", name, ordinal);
320                     thunk_list->u1.Function=MODULE_GetProcAddress(
321                         wmImp->module, (LPCSTR)ordinal, TRUE
322                     );
323                     if (!thunk_list->u1.Function) {
324                         ERR("No implementation for %s.%d, setting to 0xdeadbeef\n",
325                                 name, ordinal);
326                         thunk_list->u1.Function = (FARPROC)0xdeadbeef;
327                     }
328                 } else {                /* import by name */
329                     pe_name = (PIMAGE_IMPORT_BY_NAME)RVA(import_list->u1.AddressOfData);
330                     TRACE("--- %s %s.%d\n", pe_name->Name, name, pe_name->Hint);
331                     thunk_list->u1.Function=MODULE_GetProcAddress(
332                         wmImp->module, pe_name->Name, TRUE
333                     );
334                     if (!thunk_list->u1.Function) {
335                         ERR("No implementation for %s.%d(%s), setting to 0xdeadbeef\n",
336                                 name,pe_name->Hint,pe_name->Name);
337                         thunk_list->u1.Function = (FARPROC)0xdeadbeef;
338                     }
339                 }
340                 import_list++;
341                 thunk_list++;
342             }
343         } else {        /* Borland style */
344             TRACE("Borland style imports used\n");
345             thunk_list = (PIMAGE_THUNK_DATA) RVA(pe_imp->FirstThunk);
346             while (thunk_list->u1.Ordinal) {
347                 if (IMAGE_SNAP_BY_ORDINAL(thunk_list->u1.Ordinal)) {
348                     /* not sure about this branch, but it seems to work */
349                     int ordinal = IMAGE_ORDINAL(thunk_list->u1.Ordinal);
350
351                     TRACE("--- Ordinal %s.%d\n",name,ordinal);
352                     thunk_list->u1.Function=MODULE_GetProcAddress(
353                         wmImp->module, (LPCSTR) ordinal, TRUE
354                     );
355                     if (!thunk_list->u1.Function) {
356                         ERR("No implementation for %s.%d, setting to 0xdeadbeef\n",
357                                 name,ordinal);
358                         thunk_list->u1.Function = (FARPROC)0xdeadbeef;
359                     }
360                 } else {
361                     pe_name=(PIMAGE_IMPORT_BY_NAME) RVA(thunk_list->u1.AddressOfData);
362                     TRACE("--- %s %s.%d\n",
363                                   pe_name->Name,name,pe_name->Hint);
364                     thunk_list->u1.Function=MODULE_GetProcAddress(
365                         wmImp->module, pe_name->Name, TRUE
366                     );
367                     if (!thunk_list->u1.Function) {
368                         ERR("No implementation for %s.%d, setting to 0xdeadbeef\n",
369                                 name, pe_name->Hint);
370                         thunk_list->u1.Function = (FARPROC)0xdeadbeef;
371                     }
372                 }
373                 thunk_list++;
374             }
375         }
376     }
377     return 0;
378 }
379
380 static int calc_vma_size( HMODULE hModule )
381 {
382     int i,vma_size = 0;
383     IMAGE_SECTION_HEADER *pe_seg = PE_SECTIONS(hModule);
384
385     TRACE("Dump of segment table\n");
386     TRACE("   Name    VSz  Vaddr     SzRaw   Fileadr  *Reloc *Lineum #Reloc #Linum Char\n");
387     for (i = 0; i< PE_HEADER(hModule)->FileHeader.NumberOfSections; i++)
388     {
389         TRACE("%8s: %4.4lx %8.8lx %8.8lx %8.8lx %8.8lx %8.8lx %4.4x %4.4x %8.8lx\n", 
390                       pe_seg->Name, 
391                       pe_seg->Misc.VirtualSize,
392                       pe_seg->VirtualAddress,
393                       pe_seg->SizeOfRawData,
394                       pe_seg->PointerToRawData,
395                       pe_seg->PointerToRelocations,
396                       pe_seg->PointerToLinenumbers,
397                       pe_seg->NumberOfRelocations,
398                       pe_seg->NumberOfLinenumbers,
399                       pe_seg->Characteristics);
400         vma_size=max(vma_size, pe_seg->VirtualAddress+pe_seg->SizeOfRawData);
401         vma_size=max(vma_size, pe_seg->VirtualAddress+pe_seg->Misc.VirtualSize);
402         pe_seg++;
403     }
404     return vma_size;
405 }
406
407 static void do_relocations( unsigned int load_addr, IMAGE_BASE_RELOCATION *r )
408 {
409     int delta = load_addr - PE_HEADER(load_addr)->OptionalHeader.ImageBase;
410     int hdelta = (delta >> 16) & 0xFFFF;
411     int ldelta = delta & 0xFFFF;
412
413         if(delta == 0)
414                 /* Nothing to do */
415                 return;
416         while(r->VirtualAddress)
417         {
418                 char *page = (char*) RVA(r->VirtualAddress);
419                 int count = (r->SizeOfBlock - 8)/2;
420                 int i;
421                 TRACE_(fixup)("%x relocations for page %lx\n",
422                         count, r->VirtualAddress);
423                 /* patching in reverse order */
424                 for(i=0;i<count;i++)
425                 {
426                         int offset = r->TypeOffset[i] & 0xFFF;
427                         int type = r->TypeOffset[i] >> 12;
428                         TRACE_(fixup)("patching %x type %x\n", offset, type);
429                         switch(type)
430                         {
431                         case IMAGE_REL_BASED_ABSOLUTE: break;
432                         case IMAGE_REL_BASED_HIGH:
433                                 *(short*)(page+offset) += hdelta;
434                                 break;
435                         case IMAGE_REL_BASED_LOW:
436                                 *(short*)(page+offset) += ldelta;
437                                 break;
438                         case IMAGE_REL_BASED_HIGHLOW:
439                                 *(int*)(page+offset) += delta;
440                                 /* FIXME: if this is an exported address, fire up enhanced logic */
441                                 break;
442                         case IMAGE_REL_BASED_HIGHADJ:
443                                 FIXME("Don't know what to do with IMAGE_REL_BASED_HIGHADJ\n");
444                                 break;
445                         case IMAGE_REL_BASED_MIPS_JMPADDR:
446                                 FIXME("Is this a MIPS machine ???\n");
447                                 break;
448                         default:
449                                 FIXME("Unknown fixup type\n");
450                                 break;
451                         }
452                 }
453                 r = (IMAGE_BASE_RELOCATION*)((char*)r + r->SizeOfBlock);
454         }
455 }
456                 
457
458         
459         
460
461 /**********************************************************************
462  *                      PE_LoadImage
463  * Load one PE format DLL/EXE into memory
464  * 
465  * Unluckily we can't just mmap the sections where we want them, for 
466  * (at least) Linux does only support offsets which are page-aligned.
467  *
468  * BUT we have to map the whole image anyway, for Win32 programs sometimes
469  * want to access them. (HMODULE32 point to the start of it)
470  */
471 HMODULE PE_LoadImage( HANDLE hFile, LPCSTR filename )
472 {
473     HMODULE     hModule;
474     HANDLE      mapping;
475
476     IMAGE_NT_HEADERS *nt;
477     IMAGE_SECTION_HEADER *pe_sec;
478     IMAGE_DATA_DIRECTORY *dir;
479     BY_HANDLE_FILE_INFORMATION bhfi;
480     int i, rawsize, lowest_va, vma_size, file_size = 0;
481     DWORD load_addr = 0, aoep, reloc = 0;
482     struct get_read_fd_request *req = get_req_buffer();
483     int unix_handle = -1;
484     int page_size = VIRTUAL_GetPageSize();
485
486     /* Retrieve file size */
487     if ( GetFileInformationByHandle( hFile, &bhfi ) ) 
488         file_size = bhfi.nFileSizeLow; /* FIXME: 64 bit */
489
490     /* Map the PE file somewhere */
491     mapping = CreateFileMappingA( hFile, NULL, PAGE_READONLY | SEC_COMMIT,
492                                     0, 0, NULL );
493     if (!mapping)
494     {
495         WARN("CreateFileMapping error %ld\n", GetLastError() );
496         return 0;
497     }
498     hModule = (HMODULE)MapViewOfFile( mapping, FILE_MAP_READ, 0, 0, 0 );
499     CloseHandle( mapping );
500     if (!hModule)
501     {
502         WARN("MapViewOfFile error %ld\n", GetLastError() );
503         return 0;
504     }
505     if ( *(WORD*)hModule !=IMAGE_DOS_SIGNATURE)
506     {
507         WARN("%s image doesn't have DOS signature, but 0x%04x\n", filename,*(WORD*)hModule);
508         SetLastError( ERROR_BAD_EXE_FORMAT );
509         goto error;
510     }
511
512     nt = PE_HEADER( hModule );
513
514     /* Check signature */
515     if ( nt->Signature != IMAGE_NT_SIGNATURE )
516     {
517         WARN("%s image doesn't have PE signature, but 0x%08lx\n", filename, nt->Signature );
518         SetLastError( ERROR_BAD_EXE_FORMAT );
519         goto error;
520     }
521
522     /* Check architecture */
523     if ( nt->FileHeader.Machine != IMAGE_FILE_MACHINE_I386 )
524     {
525         MESSAGE("Trying to load PE image for unsupported architecture (");
526         switch (nt->FileHeader.Machine)
527         {
528         case IMAGE_FILE_MACHINE_UNKNOWN: MESSAGE("Unknown"); break;
529         case IMAGE_FILE_MACHINE_I860:    MESSAGE("I860"); break;
530         case IMAGE_FILE_MACHINE_R3000:   MESSAGE("R3000"); break;
531         case IMAGE_FILE_MACHINE_R4000:   MESSAGE("R4000"); break;
532         case IMAGE_FILE_MACHINE_R10000:  MESSAGE("R10000"); break;
533         case IMAGE_FILE_MACHINE_ALPHA:   MESSAGE("Alpha"); break;
534         case IMAGE_FILE_MACHINE_POWERPC: MESSAGE("PowerPC"); break;
535         default: MESSAGE("Unknown-%04x", nt->FileHeader.Machine); break;
536         }
537         MESSAGE(")\n");
538         SetLastError( ERROR_BAD_EXE_FORMAT );
539         goto error;
540     }
541
542     /* Find out how large this executeable should be */
543     pe_sec = PE_SECTIONS( hModule );
544     rawsize = 0; lowest_va = 0x10000;
545     for (i = 0; i < nt->FileHeader.NumberOfSections; i++) 
546     {
547         if (lowest_va > pe_sec[i].VirtualAddress)
548            lowest_va = pe_sec[i].VirtualAddress;
549         if (pe_sec[i].Characteristics & IMAGE_SCN_CNT_UNINITIALIZED_DATA)
550             continue;
551         if (pe_sec[i].PointerToRawData+pe_sec[i].SizeOfRawData > rawsize)
552             rawsize = pe_sec[i].PointerToRawData+pe_sec[i].SizeOfRawData;
553     }
554  
555     /* Check file size */
556     if ( file_size && file_size < rawsize )
557     {
558         ERR("PE module is too small (header: %d, filesize: %d), "
559                     "probably truncated download?\n", 
560                     rawsize, file_size );
561         SetLastError( ERROR_BAD_EXE_FORMAT );
562         goto error;
563     }
564
565     /* Check entrypoint address */
566     aoep = nt->OptionalHeader.AddressOfEntryPoint;
567     if (aoep && (aoep < lowest_va))
568         FIXME("VIRUS WARNING: '%s' has an invalid entrypoint (0x%08lx) "
569                       "below the first virtual address (0x%08x) "
570                       "(possibly infected by Tchernobyl/SpaceFiller virus)!\n",
571                        filename, aoep, lowest_va );
572
573
574     /* FIXME:  Hack!  While we don't really support shared sections yet,
575      *         this checks for those special cases where the whole DLL
576      *         consists only of shared sections and is mapped into the
577      *         shared address space > 2GB.  In this case, we assume that
578      *         the module got mapped at its base address. Thus we simply
579      *         check whether the module has actually been mapped there
580      *         and use it, if so.  This is needed to get Win95 USER32.DLL
581      *         to work (until we support shared sections properly).
582      */
583
584     if ( nt->OptionalHeader.ImageBase & 0x80000000 )
585     {
586         HMODULE sharedMod = (HMODULE)nt->OptionalHeader.ImageBase; 
587         IMAGE_NT_HEADERS *sharedNt = (PIMAGE_NT_HEADERS)
588                ( (LPBYTE)sharedMod + ((LPBYTE)nt - (LPBYTE)hModule) );
589
590         /* Well, this check is not really comprehensive, 
591            but should be good enough for now ... */
592         if (    !IsBadReadPtr( (LPBYTE)sharedMod, sizeof(IMAGE_DOS_HEADER) )
593              && memcmp( (LPBYTE)sharedMod, (LPBYTE)hModule, sizeof(IMAGE_DOS_HEADER) ) == 0
594              && !IsBadReadPtr( sharedNt, sizeof(IMAGE_NT_HEADERS) )
595              && memcmp( sharedNt, nt, sizeof(IMAGE_NT_HEADERS) ) == 0 )
596         {
597             UnmapViewOfFile( (LPVOID)hModule );
598             return sharedMod;
599         }
600     }
601
602
603     /* Allocate memory for module */
604     load_addr = nt->OptionalHeader.ImageBase;
605     vma_size = calc_vma_size( hModule );
606
607     load_addr = (DWORD)VirtualAlloc( (void*)load_addr, vma_size,
608                                      MEM_RESERVE | MEM_COMMIT,
609                                      PAGE_EXECUTE_READWRITE );
610     if (load_addr == 0) 
611     {
612         /* We need to perform base relocations */
613         FIXME("We need to perform base relocations for %s\n", filename);
614         dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_BASERELOC;
615         if (dir->Size)
616             reloc = dir->VirtualAddress;
617         else 
618         {
619             FIXME( "FATAL: Need to relocate %s, but no relocation records present (%s). Try to run that file directly !\n",
620                    filename,
621                    (nt->FileHeader.Characteristics&IMAGE_FILE_RELOCS_STRIPPED)?
622                    "stripped during link" : "unknown reason" );
623             SetLastError( ERROR_BAD_EXE_FORMAT );
624             goto error;
625         }
626
627         /* FIXME: If we need to relocate a system DLL (base > 2GB) we should
628          *        really make sure that the *new* base address is also > 2GB.
629          *        Some DLLs really check the MSB of the module handle :-/
630          */
631         if ( nt->OptionalHeader.ImageBase & 0x80000000 )
632             ERR( "Forced to relocate system DLL (base > 2GB). This is not good.\n" );
633
634         load_addr = (DWORD)VirtualAlloc( NULL, vma_size,
635                                          MEM_RESERVE | MEM_COMMIT,
636                                          PAGE_EXECUTE_READWRITE );
637         if (!load_addr) {
638             FIXME_(win32)(
639                    "FATAL: Couldn't load module %s (out of memory, %d needed)!\n", filename, vma_size);
640             goto error;
641         }
642     }
643
644     TRACE("Load addr is %lx (base %lx), range %x\n",
645           load_addr, nt->OptionalHeader.ImageBase, vma_size );
646     TRACE_(segment)("Loading %s at %lx, range %x\n",
647                     filename, load_addr, vma_size );
648
649 #if 0
650     /* Store the NT header at the load addr */
651     *(PIMAGE_DOS_HEADER)load_addr = *(PIMAGE_DOS_HEADER)hModule;
652     *PE_HEADER( load_addr ) = *nt;
653     memcpy( PE_SECTIONS(load_addr), PE_SECTIONS(hModule),
654             sizeof(IMAGE_SECTION_HEADER) * nt->FileHeader.NumberOfSections );
655
656     /* Copies all stuff up to the first section. Including win32 viruses. */
657     memcpy( load_addr, hModule, lowest_fa );
658 #endif
659
660     req->handle = hFile;
661     server_call_fd( REQ_GET_READ_FD, -1, &unix_handle );
662     if (unix_handle == -1) goto error;
663
664     /* Map the header */
665     if (FILE_dommap( unix_handle, (void *)load_addr, 0, nt->OptionalHeader.SizeOfHeaders,
666                      0, 0, PROT_EXEC | PROT_WRITE | PROT_READ,
667                      MAP_PRIVATE | MAP_FIXED ) != (void*)load_addr)
668     {
669         ERR_(win32)( "Critical Error: failed to map PE header to necessary address.\n");        
670         goto error;
671     }
672
673     /* Copy sections into module image */
674     pe_sec = PE_SECTIONS( hModule );
675     for (i = 0; i < nt->FileHeader.NumberOfSections; i++, pe_sec++)
676     {
677         if (!pe_sec->SizeOfRawData || !pe_sec->PointerToRawData) continue;
678         TRACE("%s: mmaping section %s at %p off %lx size %lx/%lx\n",
679               filename, pe_sec->Name, (void*)RVA(pe_sec->VirtualAddress),
680               pe_sec->PointerToRawData, pe_sec->SizeOfRawData, pe_sec->Misc.VirtualSize );
681         if (FILE_dommap( unix_handle, (void*)RVA(pe_sec->VirtualAddress),
682                          0, pe_sec->SizeOfRawData, 0, pe_sec->PointerToRawData,
683                          PROT_EXEC | PROT_WRITE | PROT_READ,
684                          MAP_PRIVATE | MAP_FIXED ) != (void*)RVA(pe_sec->VirtualAddress))
685         {
686             /* We failed to map to the right place (huh?) */
687             ERR_(win32)( "Critical Error: failed to map PE section to necessary address.\n");
688             goto error;
689         }
690         if ((pe_sec->SizeOfRawData < pe_sec->Misc.VirtualSize) &&
691             (pe_sec->SizeOfRawData & (page_size-1)))
692         {
693             DWORD end = (pe_sec->SizeOfRawData & ~(page_size-1)) + page_size;
694             if (end > pe_sec->Misc.VirtualSize) end = pe_sec->Misc.VirtualSize;
695             TRACE("clearing %p - %p\n",
696                   RVA(pe_sec->VirtualAddress) + pe_sec->SizeOfRawData,
697                   RVA(pe_sec->VirtualAddress) + end );
698             memset( (char*)RVA(pe_sec->VirtualAddress) + pe_sec->SizeOfRawData, 0,
699                     end - pe_sec->SizeOfRawData );
700         }
701     }
702
703     /* Perform base relocation, if necessary */
704     if ( reloc )
705         do_relocations( load_addr, (IMAGE_BASE_RELOCATION *)RVA(reloc) );
706
707     /* We don't need the orignal mapping any more */
708     UnmapViewOfFile( (LPVOID)hModule );
709     return (HMODULE)load_addr;
710
711 error:
712     if (unix_handle != -1) close( unix_handle );
713     if (load_addr) VirtualFree( (LPVOID)load_addr, 0, MEM_RELEASE );
714     UnmapViewOfFile( (LPVOID)hModule );
715     return 0;
716 }
717
718 /**********************************************************************
719  *                 PE_CreateModule
720  *
721  * Create WINE_MODREF structure for loaded HMODULE32, link it into
722  * process modref_list, and fixup all imports.
723  *
724  * Note: hModule must point to a correctly allocated PE image,
725  *       with base relocations applied; the 16-bit dummy module
726  *       associated to hModule must already exist.
727  *
728  * Note: This routine must always be called in the context of the
729  *       process that is to own the module to be created.
730  */
731 WINE_MODREF *PE_CreateModule( HMODULE hModule, 
732                               LPCSTR filename, DWORD flags, BOOL builtin )
733 {
734     DWORD load_addr = (DWORD)hModule;  /* for RVA */
735     IMAGE_NT_HEADERS *nt = PE_HEADER(hModule);
736     IMAGE_DATA_DIRECTORY *dir;
737     IMAGE_IMPORT_DESCRIPTOR *pe_import = NULL;
738     IMAGE_EXPORT_DIRECTORY *pe_export = NULL;
739     IMAGE_RESOURCE_DIRECTORY *pe_resource = NULL;
740     WINE_MODREF *wm;
741     int result;
742
743
744     /* Retrieve DataDirectory entries */
745
746     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_EXPORT;
747     if (dir->Size)
748         pe_export = (PIMAGE_EXPORT_DIRECTORY)RVA(dir->VirtualAddress);
749
750     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_IMPORT;
751     if (dir->Size)
752         pe_import = (PIMAGE_IMPORT_DESCRIPTOR)RVA(dir->VirtualAddress);
753
754     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_RESOURCE;
755     if (dir->Size)
756         pe_resource = (PIMAGE_RESOURCE_DIRECTORY)RVA(dir->VirtualAddress);
757
758     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_EXCEPTION;
759     if (dir->Size) FIXME("Exception directory ignored\n" );
760
761     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_SECURITY;
762     if (dir->Size) FIXME("Security directory ignored\n" );
763
764     /* IMAGE_DIRECTORY_ENTRY_BASERELOC handled in PE_LoadImage */
765     /* IMAGE_DIRECTORY_ENTRY_DEBUG handled by debugger */
766
767     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_DEBUG;
768     if (dir->Size) TRACE("Debug directory ignored\n" );
769
770     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_COPYRIGHT;
771     if (dir->Size) FIXME("Copyright string ignored\n" );
772
773     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_GLOBALPTR;
774     if (dir->Size) FIXME("Global Pointer (MIPS) ignored\n" );
775
776     /* IMAGE_DIRECTORY_ENTRY_TLS handled in PE_TlsInit */
777
778     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG;
779     if (dir->Size) FIXME("Load Configuration directory ignored\n" );
780
781     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT;
782     if (dir->Size) TRACE("Bound Import directory ignored\n" );
783
784     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_IAT;
785     if (dir->Size) TRACE("Import Address Table directory ignored\n" );
786
787     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT;
788     if (dir->Size)
789     {
790                 TRACE("Delayed import, stub calls LoadLibrary\n" );
791                 /*
792                  * Nothing to do here.
793                  */
794
795 #ifdef ImgDelayDescr
796                 /*
797                  * This code is useful to observe what the heck is going on.
798                  */
799                 {
800                 ImgDelayDescr *pe_delay = NULL;
801         pe_delay = (PImgDelayDescr)RVA(dir->VirtualAddress);
802         TRACE_(delayhlp)("pe_delay->grAttrs = %08x\n", pe_delay->grAttrs);
803         TRACE_(delayhlp)("pe_delay->szName = %s\n", pe_delay->szName);
804         TRACE_(delayhlp)("pe_delay->phmod = %08x\n", pe_delay->phmod);
805         TRACE_(delayhlp)("pe_delay->pIAT = %08x\n", pe_delay->pIAT);
806         TRACE_(delayhlp)("pe_delay->pINT = %08x\n", pe_delay->pINT);
807         TRACE_(delayhlp)("pe_delay->pBoundIAT = %08x\n", pe_delay->pBoundIAT);
808         TRACE_(delayhlp)("pe_delay->pUnloadIAT = %08x\n", pe_delay->pUnloadIAT);
809         TRACE_(delayhlp)("pe_delay->dwTimeStamp = %08x\n", pe_delay->dwTimeStamp);
810         }
811 #endif /* ImgDelayDescr */
812         }
813
814     dir = nt->OptionalHeader.DataDirectory+IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR;
815     if (dir->Size) FIXME("Unknown directory 14 ignored\n" );
816
817     dir = nt->OptionalHeader.DataDirectory+15;
818     if (dir->Size) FIXME("Unknown directory 15 ignored\n" );
819
820
821     /* Allocate and fill WINE_MODREF */
822
823     wm = (WINE_MODREF *)HeapAlloc( GetProcessHeap(), 
824                                    HEAP_ZERO_MEMORY, sizeof(*wm) );
825     wm->module = hModule;
826
827     if ( builtin ) 
828         wm->flags |= WINE_MODREF_INTERNAL;
829     if ( flags & DONT_RESOLVE_DLL_REFERENCES )
830         wm->flags |= WINE_MODREF_DONT_RESOLVE_REFS;
831     if ( flags & LOAD_LIBRARY_AS_DATAFILE )
832         wm->flags |= WINE_MODREF_LOAD_AS_DATAFILE;
833
834     wm->type = MODULE32_PE;
835     wm->binfmt.pe.pe_export = pe_export;
836     wm->binfmt.pe.pe_import = pe_import;
837     wm->binfmt.pe.pe_resource = pe_resource;
838     wm->binfmt.pe.tlsindex = -1;
839
840     wm->filename = HEAP_strdupA( GetProcessHeap(), 0, filename );
841     wm->modname = strrchr( wm->filename, '\\' );
842     if (!wm->modname) wm->modname = wm->filename;
843     else wm->modname++;
844
845     result = GetShortPathNameA( wm->filename, NULL, 0 );
846     wm->short_filename = (char *)HeapAlloc( GetProcessHeap(), 0, result+1 );
847     GetShortPathNameA( wm->filename, wm->short_filename, result+1 );
848     wm->short_modname = strrchr( wm->short_filename, '\\' );
849     if (!wm->short_modname) wm->short_modname = wm->short_filename;
850     else wm->short_modname++;
851
852     /* Link MODREF into process list */
853
854     EnterCriticalSection( &PROCESS_Current()->crit_section );
855
856     wm->next = PROCESS_Current()->modref_list;
857     PROCESS_Current()->modref_list = wm;
858     if ( wm->next ) wm->next->prev = wm;
859
860     if (    !( nt->FileHeader.Characteristics & IMAGE_FILE_DLL )
861          && !( wm->flags & WINE_MODREF_LOAD_AS_DATAFILE ) )
862
863     {
864         if ( PROCESS_Current()->exe_modref )
865             FIXME( "Trying to load second .EXE file: %s\n", filename );
866         else
867             PROCESS_Current()->exe_modref = wm;
868     }
869
870     LeaveCriticalSection( &PROCESS_Current()->crit_section );
871
872
873     /* Dump Exports */
874
875     if ( pe_export )
876         dump_exports( hModule );
877
878     /* Fixup Imports */
879
880     if (    pe_import
881          && !( wm->flags & WINE_MODREF_LOAD_AS_DATAFILE )
882          && !( wm->flags & WINE_MODREF_DONT_RESOLVE_REFS ) 
883          && fixup_imports( wm ) ) 
884     {
885         /* remove entry from modref chain */
886         EnterCriticalSection( &PROCESS_Current()->crit_section );
887
888         if ( !wm->prev )
889             PROCESS_Current()->modref_list = wm->next;
890         else
891             wm->prev->next = wm->next;
892
893         if ( wm->next ) wm->next->prev = wm->prev;
894         wm->next = wm->prev = NULL;
895
896         LeaveCriticalSection( &PROCESS_Current()->crit_section );
897
898         /* FIXME: there are several more dangling references
899          * left. Including dlls loaded by this dll before the
900          * failed one. Unrolling is rather difficult with the
901          * current structure and we can leave it them lying
902          * around with no problems, so we don't care.
903          * As these might reference our wm, we don't free it.
904          */
905          return NULL;
906     }
907
908     return wm;
909 }
910
911 /******************************************************************************
912  * The PE Library Loader frontend. 
913  * FIXME: handle the flags.
914  */
915 WINE_MODREF *PE_LoadLibraryExA (LPCSTR name, DWORD flags)
916 {
917         struct load_dll_request *req = get_req_buffer();
918         HMODULE         hModule32;
919         HMODULE16       hModule16;
920         WINE_MODREF     *wm;
921         char            filename[256];
922         HANDLE          hFile;
923
924         /* Search for and open PE file */
925         if ( SearchPathA( NULL, name, ".DLL", 
926                           sizeof(filename), filename, NULL ) == 0 ) return NULL;
927        
928         hFile = CreateFileA( filename, GENERIC_READ, FILE_SHARE_READ,
929                              NULL, OPEN_EXISTING, 0, -1 );
930         if ( hFile == INVALID_HANDLE_VALUE ) return NULL;
931         
932         /* Load PE module */
933         hModule32 = PE_LoadImage( hFile, filename );
934         if (!hModule32)
935         {
936                 CloseHandle( hFile );
937                 return NULL;
938         }
939
940         /* Create 16-bit dummy module */
941         if ((hModule16 = MODULE_CreateDummyModule( filename, hModule32 )) < 32)
942         {
943                 CloseHandle( hFile );
944                 SetLastError( (DWORD)hModule16 );       /* This should give the correct error */
945                 return NULL;
946         }
947
948         /* Create 32-bit MODREF */
949         if ( !(wm = PE_CreateModule( hModule32, filename, flags, FALSE )) )
950         {
951                 ERR( "can't load %s\n", filename );
952                 FreeLibrary16( hModule16 );
953                 CloseHandle( hFile );
954                 SetLastError( ERROR_OUTOFMEMORY );
955                 return NULL;
956         }
957
958         if (wm->binfmt.pe.pe_export)
959                 SNOOP_RegisterDLL(wm->module,wm->modname,wm->binfmt.pe.pe_export->NumberOfFunctions);
960         req->handle     = hFile;
961         req->base       = (void *)hModule32;
962         req->dbg_offset = 0;
963         req->dbg_size   = 0;
964         req->name       = &wm->modname;
965         server_call_noerr( REQ_LOAD_DLL );
966         CloseHandle( hFile );
967         return wm;
968 }
969
970
971 /*****************************************************************************
972  *      PE_UnloadLibrary
973  *
974  * Unload the library unmapping the image and freeing the modref structure.
975  */
976 void PE_UnloadLibrary(WINE_MODREF *wm)
977 {
978     TRACE(" unloading %s\n", wm->filename);
979 /*    VirtualFree( (LPVOID)wm->module, 0, MEM_RELEASE ); */  /* FIXME */
980     HeapFree( GetProcessHeap(), 0, wm->filename );
981     HeapFree( GetProcessHeap(), 0, wm->short_filename );
982     HeapFree( GetProcessHeap(), 0, wm );
983 }
984
985 /*****************************************************************************
986  * Load the PE main .EXE. All other loading is done by PE_LoadLibraryExA
987  * FIXME: this function should use PE_LoadLibraryExA, but currently can't
988  * due to the PROCESS_Create stuff.
989  */
990 BOOL PE_CreateProcess( HANDLE hFile, LPCSTR filename, LPCSTR cmd_line, LPCSTR env, 
991                        LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
992                        BOOL inherit, DWORD flags, LPSTARTUPINFOA startup,
993                        LPPROCESS_INFORMATION info )
994 {
995     HMODULE16 hModule16;
996     HMODULE hModule32;
997     NE_MODULE *pModule;
998
999     /* Load file */
1000     if ( (hModule32 = PE_LoadImage( hFile, filename )) < 32 )
1001     {
1002         SetLastError( hModule32 );
1003         return FALSE;
1004     }
1005 #if 0
1006     if (PE_HEADER(hModule32)->FileHeader.Characteristics & IMAGE_FILE_DLL)
1007     {
1008         SetLastError( 20 );  /* FIXME: not the right error code */
1009         return FALSE;
1010     }
1011 #endif
1012
1013     /* Create 16-bit dummy module */
1014     if ( (hModule16 = MODULE_CreateDummyModule( filename, hModule32 )) < 32 ) 
1015     {
1016         SetLastError( hModule16 );
1017         return FALSE;
1018     }
1019     pModule = (NE_MODULE *)GlobalLock16( hModule16 );
1020
1021     /* Create new process */
1022     if ( !PROCESS_Create( pModule, hFile, cmd_line, env,
1023                           psa, tsa, inherit, flags, startup, info ) )
1024         return FALSE;
1025
1026     /* Note: PE_CreateModule and the remaining process initialization will
1027              be done in the context of the new process, in TASK_CallToStart */
1028
1029     return TRUE;
1030 }
1031
1032
1033 /* Called if the library is loaded or freed.
1034  * NOTE: if a thread attaches a DLL, the current thread will only do
1035  * DLL_PROCESS_ATTACH. Only new created threads do DLL_THREAD_ATTACH
1036  * (SDK)
1037  */
1038 BOOL PE_InitDLL( WINE_MODREF *wm, DWORD type, LPVOID lpReserved )
1039 {
1040     BOOL retv = TRUE;
1041     assert( wm->type == MODULE32_PE );
1042
1043     /* Is this a library? And has it got an entrypoint? */
1044     if ((PE_HEADER(wm->module)->FileHeader.Characteristics & IMAGE_FILE_DLL) &&
1045         (PE_HEADER(wm->module)->OptionalHeader.AddressOfEntryPoint)
1046     ) {
1047         DLLENTRYPROC entry = (void*)RVA_PTR( wm->module,OptionalHeader.AddressOfEntryPoint );
1048         TRACE_(relay)("CallTo32(entryproc=%p,module=%08x,type=%ld,res=%p)\n",
1049                        entry, wm->module, type, lpReserved );
1050
1051         retv = entry( wm->module, type, lpReserved );
1052     }
1053
1054     return retv;
1055 }
1056
1057 /************************************************************************
1058  *      PE_InitTls                      (internal)
1059  *
1060  * If included, initialises the thread local storages of modules.
1061  * Pointers in those structs are not RVAs but real pointers which have been
1062  * relocated by do_relocations() already.
1063  */
1064 static LPVOID
1065 _fixup_address(PIMAGE_OPTIONAL_HEADER opt,int delta,LPVOID addr) {
1066         if (    ((DWORD)addr>opt->ImageBase) &&
1067                 ((DWORD)addr<opt->ImageBase+opt->SizeOfImage)
1068         )
1069                 /* the address has not been relocated! */
1070                 return (LPVOID)(((DWORD)addr)+delta);
1071         else
1072                 /* the address has been relocated already */
1073                 return addr;
1074 }
1075 void PE_InitTls( void )
1076 {
1077         WINE_MODREF             *wm;
1078         PE_MODREF               *pem;
1079         IMAGE_NT_HEADERS        *peh;
1080         DWORD                   size,datasize;
1081         LPVOID                  mem;
1082         PIMAGE_TLS_DIRECTORY    pdir;
1083         int delta;
1084         
1085         for (wm = PROCESS_Current()->modref_list;wm;wm=wm->next) {
1086                 if (wm->type!=MODULE32_PE)
1087                         continue;
1088                 pem = &(wm->binfmt.pe);
1089                 peh = PE_HEADER(wm->module);
1090                 delta = wm->module - peh->OptionalHeader.ImageBase;
1091                 if (!peh->OptionalHeader.DataDirectory[IMAGE_FILE_THREAD_LOCAL_STORAGE].VirtualAddress)
1092                         continue;
1093                 pdir = (LPVOID)(wm->module + peh->OptionalHeader.
1094                         DataDirectory[IMAGE_FILE_THREAD_LOCAL_STORAGE].VirtualAddress);
1095                 
1096                 
1097                 if ( pem->tlsindex == -1 ) {
1098                         LPDWORD xaddr;
1099                         pem->tlsindex = TlsAlloc();
1100                         xaddr = _fixup_address(&(peh->OptionalHeader),delta,
1101                                         pdir->AddressOfIndex
1102                         );
1103                         *xaddr=pem->tlsindex;
1104                 }
1105                 datasize= pdir->EndAddressOfRawData-pdir->StartAddressOfRawData;
1106                 size    = datasize + pdir->SizeOfZeroFill;
1107                 mem=VirtualAlloc(0,size,MEM_RESERVE|MEM_COMMIT,PAGE_READWRITE);
1108                 memcpy(mem,_fixup_address(&(peh->OptionalHeader),delta,(LPVOID)pdir->StartAddressOfRawData),datasize);
1109                 if (pdir->AddressOfCallBacks) {
1110                      PIMAGE_TLS_CALLBACK *cbs; 
1111
1112                      cbs = _fixup_address(&(peh->OptionalHeader),delta,pdir->AddressOfCallBacks);
1113                      if (*cbs)
1114                        FIXME("TLS Callbacks aren't going to be called\n");
1115                 }
1116
1117                 TlsSetValue( pem->tlsindex, mem );
1118         }
1119 }
1120