Merged the NAS driver written by Nicolas
[wine/multimedia.git] / library / loader.c
blob20e29e6b73f260cccf70511eeabbccdc93760808
1 /*
2 * Win32 builtin dlls support
4 * Copyright 2000 Alexandre Julliard
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <ctype.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/types.h>
29 #include <unistd.h>
30 #ifdef HAVE_SYS_MMAN_H
31 #include <sys/mman.h>
32 #endif
34 #include "winnt.h"
35 #include "wine/library.h"
37 /* argc/argv for the Windows application */
38 int __wine_main_argc = 0;
39 char **__wine_main_argv = NULL;
40 WCHAR **__wine_main_wargv = NULL;
42 #define MAX_DLLS 100
44 static struct
46 const IMAGE_NT_HEADERS *nt; /* NT header */
47 const char *filename; /* DLL file name */
48 } builtin_dlls[MAX_DLLS];
50 static int nb_dlls;
52 static const IMAGE_NT_HEADERS *main_exe;
54 static load_dll_callback_t load_dll_callback;
56 static const char **dll_paths;
57 static int nb_dll_paths;
58 static int dll_path_maxlen;
59 static int init_done;
62 /* build the dll load path from the WINEDLLPATH variable */
63 static void build_dll_path(void)
65 static const char * const dlldir = DLLDIR;
66 int len, count = 0;
67 char *p, *path = getenv( "WINEDLLPATH" );
69 init_done = 1;
71 if (path)
73 /* count how many path elements we need */
74 path = strdup(path);
75 p = path;
76 while (*p)
78 while (*p == ':') p++;
79 if (!*p) break;
80 count++;
81 while (*p && *p != ':') p++;
85 dll_paths = malloc( (count+1) * sizeof(*dll_paths) );
87 if (count)
89 p = path;
90 nb_dll_paths = 0;
91 while (*p)
93 while (*p == ':') *p++ = 0;
94 if (!*p) break;
95 dll_paths[nb_dll_paths] = p;
96 while (*p && *p != ':') p++;
97 if (p - dll_paths[nb_dll_paths] > dll_path_maxlen)
98 dll_path_maxlen = p - dll_paths[nb_dll_paths];
99 nb_dll_paths++;
103 /* append default dll dir (if not empty) to path */
104 if ((len = strlen(dlldir)))
106 if (len > dll_path_maxlen) dll_path_maxlen = len;
107 dll_paths[nb_dll_paths++] = dlldir;
111 /* check if a given file can be opened */
112 inline static int file_exists( const char *name )
114 int fd = open( name, O_RDONLY );
115 if (fd != -1) close( fd );
116 return (fd != -1);
119 /* open a library for a given dll, searching in the dll path
120 * 'name' must be the Windows dll name (e.g. "kernel32.dll") */
121 static void *dlopen_dll( const char *name, char *error, int errorsize, int test_only )
123 int i, namelen = strlen(name);
124 char *buffer, *p;
125 void *ret = NULL;
127 if (!init_done) build_dll_path();
129 buffer = malloc( dll_path_maxlen + namelen + 5 );
131 /* store the name at the end of the buffer, followed by .so */
132 p = buffer + dll_path_maxlen;
133 *p++ = '/';
134 memcpy( p, name, namelen );
135 strcpy( p + namelen, ".so" );
137 for (i = 0; i < nb_dll_paths; i++)
139 int len = strlen(dll_paths[i]);
140 p = buffer + dll_path_maxlen - len;
141 memcpy( p, dll_paths[i], len );
142 if (test_only) /* just test for file existence */
144 if ((ret = (void *)file_exists( p ))) break;
146 else
148 if ((ret = wine_dlopen( p, RTLD_NOW, error, errorsize ))) break;
149 if (file_exists( p )) break; /* exists but cannot be loaded, return the error */
152 free( buffer );
153 return ret;
157 /* adjust an array of pointers to make them into RVAs */
158 static inline void fixup_rva_ptrs( void *array, void *base, int count )
160 void **ptr = (void **)array;
161 while (count--)
163 if (*ptr) *ptr = (void *)((char *)*ptr - (char *)base);
164 ptr++;
169 /* fixup RVAs in the import directory */
170 static void fixup_imports( IMAGE_IMPORT_DESCRIPTOR *dir, DWORD size, void *base )
172 int count = size / sizeof(void *);
173 void **ptr = (void **)dir;
175 /* everything is either a pointer or a ordinal value below 0x10000 */
176 while (count--)
178 if (*ptr >= (void *)0x10000) *ptr = (void *)((char *)*ptr - (char *)base);
179 else if (*ptr) *ptr = (void *)(0x80000000 | (unsigned int)*ptr);
180 ptr++;
185 /* fixup RVAs in the resource directory */
186 static void fixup_resources( IMAGE_RESOURCE_DIRECTORY *dir, char *root, void *base )
188 IMAGE_RESOURCE_DIRECTORY_ENTRY *entry;
189 int i;
191 entry = (IMAGE_RESOURCE_DIRECTORY_ENTRY *)(dir + 1);
192 for (i = 0; i < dir->NumberOfNamedEntries + dir->NumberOfIdEntries; i++, entry++)
194 void *ptr = root + entry->u2.s3.OffsetToDirectory;
195 if (entry->u2.s3.DataIsDirectory) fixup_resources( ptr, root, base );
196 else
198 IMAGE_RESOURCE_DATA_ENTRY *data = ptr;
199 fixup_rva_ptrs( &data->OffsetToData, base, 1 );
205 /* map a builtin dll in memory and fixup RVAs */
206 static void *map_dll( const IMAGE_NT_HEADERS *nt_descr )
208 #ifdef HAVE_MMAP
209 IMAGE_DATA_DIRECTORY *dir;
210 IMAGE_DOS_HEADER *dos;
211 IMAGE_NT_HEADERS *nt;
212 IMAGE_SECTION_HEADER *sec;
213 BYTE *addr, *code_start, *data_start;
214 size_t page_size = getpagesize();
215 int nb_sections = 2; /* code + data */
217 size_t size = (sizeof(IMAGE_DOS_HEADER)
218 + sizeof(IMAGE_NT_HEADERS)
219 + nb_sections * sizeof(IMAGE_SECTION_HEADER));
221 assert( size <= page_size );
223 if (nt_descr->OptionalHeader.ImageBase)
225 addr = wine_anon_mmap( (void *)nt_descr->OptionalHeader.ImageBase,
226 page_size, PROT_READ|PROT_WRITE, MAP_FIXED );
227 if (addr != (BYTE *)nt_descr->OptionalHeader.ImageBase) return NULL;
229 else
231 /* this will leak memory; but it should never happen */
232 addr = wine_anon_mmap( NULL, page_size, PROT_READ|PROT_WRITE, 0 );
233 if (addr == (BYTE *)-1) return NULL;
236 dos = (IMAGE_DOS_HEADER *)addr;
237 nt = (IMAGE_NT_HEADERS *)(dos + 1);
238 sec = (IMAGE_SECTION_HEADER *)(nt + 1);
239 code_start = addr + page_size;
241 /* HACK! */
242 data_start = code_start + page_size;
244 /* Build the DOS and NT headers */
246 dos->e_magic = IMAGE_DOS_SIGNATURE;
247 dos->e_lfanew = sizeof(*dos);
249 *nt = *nt_descr;
251 nt->FileHeader.NumberOfSections = nb_sections;
252 nt->OptionalHeader.SizeOfCode = data_start - code_start;
253 nt->OptionalHeader.SizeOfInitializedData = 0;
254 nt->OptionalHeader.SizeOfUninitializedData = 0;
255 nt->OptionalHeader.ImageBase = (DWORD)addr;
257 fixup_rva_ptrs( &nt->OptionalHeader.AddressOfEntryPoint, addr, 1 );
259 /* Build the code section */
261 strcpy( sec->Name, ".text" );
262 sec->SizeOfRawData = data_start - code_start;
263 sec->Misc.VirtualSize = sec->SizeOfRawData;
264 sec->VirtualAddress = code_start - addr;
265 sec->PointerToRawData = code_start - addr;
266 sec->Characteristics = (IMAGE_SCN_CNT_CODE | IMAGE_SCN_MEM_EXECUTE | IMAGE_SCN_MEM_READ);
267 sec++;
269 /* Build the data section */
271 strcpy( sec->Name, ".data" );
272 sec->SizeOfRawData = 0;
273 sec->Misc.VirtualSize = sec->SizeOfRawData;
274 sec->VirtualAddress = data_start - addr;
275 sec->PointerToRawData = data_start - addr;
276 sec->Characteristics = (IMAGE_SCN_CNT_INITIALIZED_DATA |
277 IMAGE_SCN_MEM_WRITE | IMAGE_SCN_MEM_READ);
278 sec++;
280 /* Build the import directory */
282 dir = &nt->OptionalHeader.DataDirectory[IMAGE_FILE_IMPORT_DIRECTORY];
283 if (dir->Size)
285 IMAGE_IMPORT_DESCRIPTOR *imports = (void *)dir->VirtualAddress;
286 fixup_rva_ptrs( &dir->VirtualAddress, addr, 1 );
287 fixup_imports( imports, dir->Size, addr );
290 /* Build the resource directory */
292 dir = &nt->OptionalHeader.DataDirectory[IMAGE_FILE_RESOURCE_DIRECTORY];
293 if (dir->Size)
295 void *ptr = (void *)dir->VirtualAddress;
296 fixup_rva_ptrs( &dir->VirtualAddress, addr, 1 );
297 fixup_resources( ptr, ptr, addr );
300 /* Build the export directory */
302 dir = &nt->OptionalHeader.DataDirectory[IMAGE_FILE_EXPORT_DIRECTORY];
303 if (dir->Size)
305 IMAGE_EXPORT_DIRECTORY *exports = (void *)dir->VirtualAddress;
306 fixup_rva_ptrs( &dir->VirtualAddress, addr, 1 );
307 fixup_rva_ptrs( (void *)exports->AddressOfFunctions, addr, exports->NumberOfFunctions );
308 fixup_rva_ptrs( (void *)exports->AddressOfNames, addr, exports->NumberOfNames );
309 fixup_rva_ptrs( &exports->Name, addr, 1 );
310 fixup_rva_ptrs( &exports->AddressOfFunctions, addr, 1 );
311 fixup_rva_ptrs( &exports->AddressOfNames, addr, 1 );
312 fixup_rva_ptrs( &exports->AddressOfNameOrdinals, addr, 1 );
314 return addr;
315 #else /* HAVE_MMAP */
316 return NULL;
317 #endif /* HAVE_MMAP */
321 /***********************************************************************
322 * __wine_dll_register
324 * Register a built-in DLL descriptor.
326 void __wine_dll_register( const IMAGE_NT_HEADERS *header, const char *filename )
328 if (load_dll_callback) load_dll_callback( map_dll(header), filename );
329 else
331 if (!(header->FileHeader.Characteristics & IMAGE_FILE_DLL))
332 main_exe = header;
333 else
335 assert( nb_dlls < MAX_DLLS );
336 builtin_dlls[nb_dlls].nt = header;
337 builtin_dlls[nb_dlls].filename = filename;
338 nb_dlls++;
344 /***********************************************************************
345 * wine_dll_set_callback
347 * Set the callback function for dll loading, and call it
348 * for all dlls that were implicitly loaded already.
350 void wine_dll_set_callback( load_dll_callback_t load )
352 int i;
353 load_dll_callback = load;
354 for (i = 0; i < nb_dlls; i++)
356 const IMAGE_NT_HEADERS *nt = builtin_dlls[i].nt;
357 if (!nt) continue;
358 builtin_dlls[i].nt = NULL;
359 load_dll_callback( map_dll(nt), builtin_dlls[i].filename );
361 nb_dlls = 0;
362 if (main_exe) load_dll_callback( map_dll(main_exe), "" );
366 /***********************************************************************
367 * wine_dll_load
369 * Load a builtin dll.
371 void *wine_dll_load( const char *filename, char *error, int errorsize )
373 int i;
375 /* callback must have been set already */
376 assert( load_dll_callback );
378 /* check if we have it in the list */
379 /* this can happen when initializing pre-loaded dlls in wine_dll_set_callback */
380 for (i = 0; i < nb_dlls; i++)
382 if (!builtin_dlls[i].nt) continue;
383 if (!strcmp( builtin_dlls[i].filename, filename ))
385 const IMAGE_NT_HEADERS *nt = builtin_dlls[i].nt;
386 builtin_dlls[i].nt = NULL;
387 load_dll_callback( map_dll(nt), builtin_dlls[i].filename );
388 return (void *)1;
391 return dlopen_dll( filename, error, errorsize, 0 );
395 /***********************************************************************
396 * wine_dll_unload
398 * Unload a builtin dll.
400 void wine_dll_unload( void *handle )
402 if (handle != (void *)1)
403 wine_dlclose( handle, NULL, 0 );
407 /***********************************************************************
408 * wine_dll_load_main_exe
410 * Try to load the .so for the main exe.
412 void *wine_dll_load_main_exe( const char *name, char *error, int errorsize, int test_only )
414 return dlopen_dll( name, error, errorsize, test_only );