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:
7 * ftp.microsoft.com:/developr/MSDN/OctCD/PEFILE.ZIP
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * Before you start changing something in this file be aware of the following:
26 * - There are several functions called recursively. In a very subtle and
27 * obscure way. DLLs can reference each other recursively etc.
28 * - If you want to enhance, speed up or clean up something in here, think
29 * twice WHY it is implemented in that strange way. There is usually a reason.
30 * Though sometimes it might just be lazyness ;)
31 * - In PE_MapImage, right before PE_fixup_imports() all external and internal
32 * state MUST be correct since this function can be called with the SAME image
33 * AGAIN. (Thats recursion for you.) That means MODREF.module and
39 #include <sys/types.h>
40 #ifdef HAVE_SYS_MMAN_H
47 #include "wine/server.h"
48 #include "wine/debug.h"
49 #include "ntdll_misc.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(win32
);
52 WINE_DECLARE_DEBUG_CHANNEL(module
);
53 WINE_DECLARE_DEBUG_CHANNEL(relay
);
56 /* convert PE image VirtualAddress to Real Address */
57 inline static void *get_rva( HMODULE module
, DWORD va
)
59 return (void *)((char *)module
+ va
);
62 #define AdjustPtr(ptr,delta) ((char *)(ptr) + (delta))
64 void dump_exports( HMODULE hModule
)
69 DWORD
*function
,*functions
;
71 IMAGE_EXPORT_DIRECTORY
*pe_exports
;
72 DWORD rva_start
, size
;
74 pe_exports
= RtlImageDirectoryEntryToData( hModule
, TRUE
, IMAGE_DIRECTORY_ENTRY_EXPORT
, &size
);
75 rva_start
= (char *)pe_exports
- (char *)hModule
;
77 Module
= get_rva(hModule
, pe_exports
->Name
);
78 DPRINTF("*******EXPORT DATA*******\n");
79 DPRINTF("Module name is %s, %ld functions, %ld names\n",
80 Module
, pe_exports
->NumberOfFunctions
, pe_exports
->NumberOfNames
);
82 ordinal
= get_rva(hModule
, pe_exports
->AddressOfNameOrdinals
);
83 functions
= function
= get_rva(hModule
, pe_exports
->AddressOfFunctions
);
84 name
= get_rva(hModule
, pe_exports
->AddressOfNames
);
86 DPRINTF(" Ord RVA Addr Name\n" );
87 for (i
=0;i
<pe_exports
->NumberOfFunctions
;i
++, function
++)
89 if (!*function
) continue; /* No such function */
90 DPRINTF( "%4ld %08lx %p", i
+ pe_exports
->Base
, *function
, get_rva(hModule
, *function
) );
91 /* Check if we have a name for it */
92 for (j
= 0; j
< pe_exports
->NumberOfNames
; j
++)
95 DPRINTF( " %s", (char*)get_rva(hModule
, name
[j
]) );
98 if ((*function
>= rva_start
) && (*function
<= rva_start
+ size
))
99 DPRINTF(" (forwarded -> %s)", (char *)get_rva(hModule
, *function
));
104 /**********************************************************************
106 * Load one PE format DLL/EXE into memory
108 * Unluckily we can't just mmap the sections where we want them, for
109 * (at least) Linux does only support offsets which are page-aligned.
111 * BUT we have to map the whole image anyway, for Win32 programs sometimes
112 * want to access them. (HMODULE points to the start of it)
114 HMODULE
PE_LoadImage( HANDLE hFile
, LPCSTR filename
, DWORD flags
)
116 IMAGE_NT_HEADERS
*nt
;
120 OBJECT_ATTRIBUTES attr
;
121 LARGE_INTEGER lg_int
;
125 TRACE_(module
)( "loading %s\n", filename
);
127 attr
.Length
= sizeof(attr
);
128 attr
.RootDirectory
= 0;
129 attr
.ObjectName
= NULL
;
131 attr
.SecurityDescriptor
= NULL
;
132 attr
.SecurityQualityOfService
= NULL
;
136 if (NtCreateSection( &mapping
,
137 STANDARD_RIGHTS_REQUIRED
| SECTION_QUERY
| SECTION_MAP_READ
,
138 &attr
, &lg_int
, 0, SEC_IMAGE
, hFile
) != STATUS_SUCCESS
)
141 nts
= NtMapViewOfSection( mapping
, GetCurrentProcess(),
142 &base
, 0, 0, &lg_int
, &len
, ViewShare
, 0,
146 if (nts
!= STATUS_SUCCESS
) return 0;
150 hModule
= (HMODULE
)base
;
151 nt
= RtlImageNtHeader( hModule
);
153 if (nt
->OptionalHeader
.AddressOfEntryPoint
)
155 if (!RtlImageRvaToSection( nt
, hModule
, nt
->OptionalHeader
.AddressOfEntryPoint
))
156 MESSAGE("VIRUS WARNING: PE module has an invalid entrypoint (0x%08lx) "
157 "outside all sections (possibly infected by Tchernobyl/SpaceFiller virus)!\n",
158 nt
->OptionalHeader
.AddressOfEntryPoint
);
164 /**********************************************************************
167 * Create WINE_MODREF structure for loaded HMODULE, link it into
168 * process modref_list, and fixup all imports.
170 * Note: hModule must point to a correctly allocated PE image,
171 * with base relocations applied; the 16-bit dummy module
172 * associated to hModule must already exist.
174 * Note: This routine must always be called in the context of the
175 * process that is to own the module to be created.
177 * Note: Assumes that the process critical section is held
179 WINE_MODREF
*PE_CreateModule( HMODULE hModule
, LPCSTR filename
, DWORD flags
,
180 HANDLE hFile
, BOOL builtin
)
182 IMAGE_NT_HEADERS
*nt
;
183 IMAGE_DATA_DIRECTORY
*dir
;
184 IMAGE_EXPORT_DIRECTORY
*pe_export
= NULL
;
187 /* Retrieve DataDirectory entries */
189 nt
= RtlImageNtHeader(hModule
);
190 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_EXPORT
;
191 if (dir
->Size
) pe_export
= get_rva(hModule
, dir
->VirtualAddress
);
193 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_EXCEPTION
;
194 if (dir
->Size
) FIXME("Exception directory ignored\n" );
196 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_SECURITY
;
197 if (dir
->Size
) FIXME("Security directory ignored\n" );
199 /* IMAGE_DIRECTORY_ENTRY_BASERELOC handled in PE_LoadImage */
200 /* IMAGE_DIRECTORY_ENTRY_DEBUG handled by debugger */
202 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_GLOBALPTR
;
203 if (dir
->Size
) FIXME("Global Pointer (MIPS) ignored\n" );
205 /* IMAGE_DIRECTORY_ENTRY_TLS handled in PE_TlsInit */
207 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG
;
208 if (dir
->Size
) FIXME("Load Configuration directory ignored\n" );
210 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT
;
211 if (dir
->Size
) TRACE("Bound Import directory ignored\n" );
213 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_IAT
;
214 if (dir
->Size
) TRACE("Import Address Table directory ignored\n" );
216 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT
;
219 TRACE("Delayed import, stub calls LoadLibrary\n" );
221 * Nothing to do here.
226 * This code is useful to observe what the heck is going on.
229 ImgDelayDescr
*pe_delay
= NULL
;
230 pe_delay
= get_rva(hModule
, dir
->VirtualAddress
);
231 TRACE("pe_delay->grAttrs = %08x\n", pe_delay
->grAttrs
);
232 TRACE("pe_delay->szName = %s\n", pe_delay
->szName
);
233 TRACE("pe_delay->phmod = %08x\n", pe_delay
->phmod
);
234 TRACE("pe_delay->pIAT = %08x\n", pe_delay
->pIAT
);
235 TRACE("pe_delay->pINT = %08x\n", pe_delay
->pINT
);
236 TRACE("pe_delay->pBoundIAT = %08x\n", pe_delay
->pBoundIAT
);
237 TRACE("pe_delay->pUnloadIAT = %08x\n", pe_delay
->pUnloadIAT
);
238 TRACE("pe_delay->dwTimeStamp = %08x\n", pe_delay
->dwTimeStamp
);
240 #endif /* ImgDelayDescr */
243 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR
;
244 if (dir
->Size
) FIXME("Unknown directory 14 ignored\n" );
246 dir
= nt
->OptionalHeader
.DataDirectory
+15;
247 if (dir
->Size
) FIXME("Unknown directory 15 ignored\n" );
249 /* Allocate and fill WINE_MODREF */
251 if (!(wm
= MODULE_AllocModRef( hModule
, filename
))) return NULL
;
254 wm
->ldr
.Flags
|= LDR_WINE_INTERNAL
;
255 else if ( flags
& DONT_RESOLVE_DLL_REFERENCES
)
256 wm
->ldr
.Flags
|= LDR_DONT_RESOLVE_REFS
;
260 if (pe_export
&& TRACE_ON(win32
))
261 dump_exports( hModule
);
265 if (!(wm
->ldr
.Flags
& LDR_DONT_RESOLVE_REFS
) &&
266 PE_fixup_imports( wm
))
268 /* the module has only be inserted in the load & memory order lists */
269 RemoveEntryList(&wm
->ldr
.InLoadOrderModuleList
);
270 RemoveEntryList(&wm
->ldr
.InMemoryOrderModuleList
);
272 /* FIXME: there are several more dangling references
273 * left. Including dlls loaded by this dll before the
274 * failed one. Unrolling is rather difficult with the
275 * current structure and we can leave them lying
276 * around with no problems, so we don't care.
277 * As these might reference our wm, we don't free it.
282 if (!builtin
&& pe_export
)
283 SNOOP_RegisterDLL( hModule
, wm
->modname
, pe_export
->Base
, pe_export
->NumberOfFunctions
);
285 /* Send DLL load event */
286 /* we don't need to send a dll event for the main exe */
288 if (nt
->FileHeader
.Characteristics
& IMAGE_FILE_DLL
)
292 UINT drive_type
= GetDriveTypeA( wm
->short_filename
);
293 /* don't keep the file handle open on removable media */
294 if (drive_type
== DRIVE_REMOVABLE
|| drive_type
== DRIVE_CDROM
) hFile
= 0;
296 SERVER_START_REQ( load_dll
)
299 req
->base
= (void *)hModule
;
300 req
->size
= nt
->OptionalHeader
.SizeOfImage
;
301 req
->dbg_offset
= nt
->FileHeader
.PointerToSymbolTable
;
302 req
->dbg_size
= nt
->FileHeader
.NumberOfSymbols
;
303 req
->name
= &wm
->filename
;
304 wine_server_add_data( req
, wm
->filename
, strlen(wm
->filename
) );
305 wine_server_call( req
);
313 /******************************************************************************
314 * The PE Library Loader frontend.
315 * FIXME: handle the flags.
317 NTSTATUS
PE_LoadLibraryExA (LPCSTR name
, DWORD flags
, WINE_MODREF
** pwm
)
322 hFile
= CreateFileA( name
, GENERIC_READ
, FILE_SHARE_READ
,
323 NULL
, OPEN_EXISTING
, 0, 0 );
324 if ( hFile
== INVALID_HANDLE_VALUE
)
326 /* keep it that way until we transform CreateFile into NtCreateFile */
327 return (GetLastError() == ERROR_FILE_NOT_FOUND
) ?
328 STATUS_NO_SUCH_FILE
: STATUS_INTERNAL_ERROR
;
332 hModule32
= PE_LoadImage( hFile
, name
, flags
);
335 CloseHandle( hFile
);
336 return STATUS_INTERNAL_ERROR
;
339 /* Create 32-bit MODREF */
340 if ( !(*pwm
= PE_CreateModule( hModule32
, name
, flags
, hFile
, FALSE
)) )
342 ERR( "can't load %s\n", name
);
343 CloseHandle( hFile
);
344 return STATUS_NO_MEMORY
; /* FIXME */
347 CloseHandle( hFile
);
348 return STATUS_SUCCESS
;