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
22 #include "wine/port.h"
28 #include <sys/types.h>
30 #ifdef HAVE_SYS_MMAN_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
;
46 const IMAGE_NT_HEADERS
*nt
; /* NT header */
47 const char *filename
; /* DLL file name */
48 } builtin_dlls
[MAX_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
;
62 /* build the dll load path from the WINEDLLPATH variable */
63 static void build_dll_path(void)
65 static const char * const dlldir
= DLLDIR
;
67 char *p
, *path
= getenv( "WINEDLLPATH" );
73 /* count how many path elements we need */
78 while (*p
== ':') p
++;
81 while (*p
&& *p
!= ':') p
++;
85 dll_paths
= malloc( (count
+1) * sizeof(*dll_paths
) );
93 while (*p
== ':') *p
++ = 0;
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
];
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
);
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
);
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
;
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;
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 */
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
;
163 if (*ptr
) *ptr
= (void *)((char *)*ptr
- (char *)base
);
169 /* fixup RVAs in the resource directory */
170 static void fixup_resources( IMAGE_RESOURCE_DIRECTORY
*dir
, char *root
, void *base
)
172 IMAGE_RESOURCE_DIRECTORY_ENTRY
*entry
;
175 entry
= (IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(dir
+ 1);
176 for (i
= 0; i
< dir
->NumberOfNamedEntries
+ dir
->NumberOfIdEntries
; i
++, entry
++)
178 void *ptr
= root
+ entry
->u2
.s3
.OffsetToDirectory
;
179 if (entry
->u2
.s3
.DataIsDirectory
) fixup_resources( ptr
, root
, base
);
182 IMAGE_RESOURCE_DATA_ENTRY
*data
= ptr
;
183 fixup_rva_ptrs( &data
->OffsetToData
, base
, 1 );
189 /* map a builtin dll in memory and fixup RVAs */
190 static void *map_dll( const IMAGE_NT_HEADERS
*nt_descr
)
193 IMAGE_DATA_DIRECTORY
*dir
;
194 IMAGE_DOS_HEADER
*dos
;
195 IMAGE_NT_HEADERS
*nt
;
196 IMAGE_SECTION_HEADER
*sec
;
197 BYTE
*addr
, *code_start
, *data_start
;
198 size_t page_size
= getpagesize();
199 int nb_sections
= 2; /* code + data */
201 size_t size
= (sizeof(IMAGE_DOS_HEADER
)
202 + sizeof(IMAGE_NT_HEADERS
)
203 + nb_sections
* sizeof(IMAGE_SECTION_HEADER
));
205 assert( size
<= page_size
);
207 if (nt_descr
->OptionalHeader
.ImageBase
)
209 addr
= wine_anon_mmap( (void *)nt_descr
->OptionalHeader
.ImageBase
,
210 page_size
, PROT_READ
|PROT_WRITE
, MAP_FIXED
);
211 if (addr
!= (BYTE
*)nt_descr
->OptionalHeader
.ImageBase
) return NULL
;
215 /* this will leak memory; but it should never happen */
216 addr
= wine_anon_mmap( NULL
, page_size
, PROT_READ
|PROT_WRITE
, 0 );
217 if (addr
== (BYTE
*)-1) return NULL
;
220 dos
= (IMAGE_DOS_HEADER
*)addr
;
221 nt
= (IMAGE_NT_HEADERS
*)(dos
+ 1);
222 sec
= (IMAGE_SECTION_HEADER
*)(nt
+ 1);
223 code_start
= addr
+ page_size
;
226 data_start
= code_start
+ page_size
;
228 /* Build the DOS and NT headers */
230 dos
->e_magic
= IMAGE_DOS_SIGNATURE
;
231 dos
->e_lfanew
= sizeof(*dos
);
235 nt
->FileHeader
.NumberOfSections
= nb_sections
;
236 nt
->OptionalHeader
.SizeOfCode
= data_start
- code_start
;
237 nt
->OptionalHeader
.SizeOfInitializedData
= 0;
238 nt
->OptionalHeader
.SizeOfUninitializedData
= 0;
239 nt
->OptionalHeader
.ImageBase
= (DWORD
)addr
;
241 fixup_rva_ptrs( &nt
->OptionalHeader
.AddressOfEntryPoint
, addr
, 1 );
243 /* Build the code section */
245 strcpy( sec
->Name
, ".text" );
246 sec
->SizeOfRawData
= data_start
- code_start
;
247 sec
->Misc
.VirtualSize
= sec
->SizeOfRawData
;
248 sec
->VirtualAddress
= code_start
- addr
;
249 sec
->PointerToRawData
= code_start
- addr
;
250 sec
->Characteristics
= (IMAGE_SCN_CNT_CODE
| IMAGE_SCN_MEM_EXECUTE
| IMAGE_SCN_MEM_READ
);
253 /* Build the data section */
255 strcpy( sec
->Name
, ".data" );
256 sec
->SizeOfRawData
= 0;
257 sec
->Misc
.VirtualSize
= sec
->SizeOfRawData
;
258 sec
->VirtualAddress
= data_start
- addr
;
259 sec
->PointerToRawData
= data_start
- addr
;
260 sec
->Characteristics
= (IMAGE_SCN_CNT_INITIALIZED_DATA
|
261 IMAGE_SCN_MEM_WRITE
| IMAGE_SCN_MEM_READ
);
264 /* Build the import directory */
266 dir
= &nt
->OptionalHeader
.DataDirectory
[IMAGE_FILE_IMPORT_DIRECTORY
];
269 IMAGE_IMPORT_DESCRIPTOR
*imports
= (void *)dir
->VirtualAddress
;
270 fixup_rva_ptrs( &dir
->VirtualAddress
, addr
, 1 );
271 /* we can fixup everything at once since we only have pointers and 0 values */
272 fixup_rva_ptrs( imports
, addr
, dir
->Size
/ sizeof(void*) );
275 /* Build the resource directory */
277 dir
= &nt
->OptionalHeader
.DataDirectory
[IMAGE_FILE_RESOURCE_DIRECTORY
];
280 void *ptr
= (void *)dir
->VirtualAddress
;
281 fixup_rva_ptrs( &dir
->VirtualAddress
, addr
, 1 );
282 fixup_resources( ptr
, ptr
, addr
);
285 /* Build the export directory */
287 dir
= &nt
->OptionalHeader
.DataDirectory
[IMAGE_FILE_EXPORT_DIRECTORY
];
290 IMAGE_EXPORT_DIRECTORY
*exports
= (void *)dir
->VirtualAddress
;
291 fixup_rva_ptrs( &dir
->VirtualAddress
, addr
, 1 );
292 fixup_rva_ptrs( (void *)exports
->AddressOfFunctions
, addr
, exports
->NumberOfFunctions
);
293 fixup_rva_ptrs( (void *)exports
->AddressOfNames
, addr
, exports
->NumberOfNames
);
294 fixup_rva_ptrs( &exports
->Name
, addr
, 1 );
295 fixup_rva_ptrs( &exports
->AddressOfFunctions
, addr
, 1 );
296 fixup_rva_ptrs( &exports
->AddressOfNames
, addr
, 1 );
297 fixup_rva_ptrs( &exports
->AddressOfNameOrdinals
, addr
, 1 );
300 #else /* HAVE_MMAP */
302 #endif /* HAVE_MMAP */
306 /***********************************************************************
307 * __wine_dll_register
309 * Register a built-in DLL descriptor.
311 void __wine_dll_register( const IMAGE_NT_HEADERS
*header
, const char *filename
)
313 if (load_dll_callback
) load_dll_callback( map_dll(header
), filename
);
316 if (!(header
->FileHeader
.Characteristics
& IMAGE_FILE_DLL
))
320 assert( nb_dlls
< MAX_DLLS
);
321 builtin_dlls
[nb_dlls
].nt
= header
;
322 builtin_dlls
[nb_dlls
].filename
= filename
;
329 /***********************************************************************
330 * wine_dll_set_callback
332 * Set the callback function for dll loading, and call it
333 * for all dlls that were implicitly loaded already.
335 void wine_dll_set_callback( load_dll_callback_t load
)
338 load_dll_callback
= load
;
339 for (i
= 0; i
< nb_dlls
; i
++)
341 const IMAGE_NT_HEADERS
*nt
= builtin_dlls
[i
].nt
;
343 builtin_dlls
[i
].nt
= NULL
;
344 load_dll_callback( map_dll(nt
), builtin_dlls
[i
].filename
);
347 if (main_exe
) load_dll_callback( map_dll(main_exe
), "" );
351 /***********************************************************************
354 * Load a builtin dll.
356 void *wine_dll_load( const char *filename
, char *error
, int errorsize
)
360 /* callback must have been set already */
361 assert( load_dll_callback
);
363 /* check if we have it in the list */
364 /* this can happen when initializing pre-loaded dlls in wine_dll_set_callback */
365 for (i
= 0; i
< nb_dlls
; i
++)
367 if (!builtin_dlls
[i
].nt
) continue;
368 if (!strcmp( builtin_dlls
[i
].filename
, filename
))
370 const IMAGE_NT_HEADERS
*nt
= builtin_dlls
[i
].nt
;
371 builtin_dlls
[i
].nt
= NULL
;
372 load_dll_callback( map_dll(nt
), builtin_dlls
[i
].filename
);
376 return dlopen_dll( filename
, error
, errorsize
, 0 );
380 /***********************************************************************
383 * Unload a builtin dll.
385 void wine_dll_unload( void *handle
)
387 if (handle
!= (void *)1)
388 wine_dlclose( handle
, NULL
, 0 );
392 /***********************************************************************
393 * wine_dll_load_main_exe
395 * Try to load the .so for the main exe.
397 void *wine_dll_load_main_exe( const char *name
, char *error
, int errorsize
, int test_only
)
399 return dlopen_dll( name
, error
, errorsize
, test_only
);