2000-11-08 05:33:20 +01:00
|
|
|
/*
|
|
|
|
* Win32 builtin dlls support
|
|
|
|
*
|
|
|
|
* Copyright 2000 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2000-11-08 05:33:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2001-05-14 22:09:37 +02:00
|
|
|
#include "wine/port.h"
|
2000-11-08 05:33:20 +01:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
2003-03-21 22:28:33 +01:00
|
|
|
#include <fcntl.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2000-11-08 05:33:20 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
2000-11-09 00:02:48 +01:00
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#endif
|
2003-03-21 22:28:33 +01:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2000-11-08 05:33:20 +01:00
|
|
|
|
2003-01-07 21:36:20 +01:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2002-12-10 23:56:43 +01:00
|
|
|
#include "windef.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winbase.h"
|
2000-11-08 05:33:20 +01:00
|
|
|
#include "wine/library.h"
|
|
|
|
|
2002-05-17 01:16:01 +02:00
|
|
|
/* argc/argv for the Windows application */
|
|
|
|
int __wine_main_argc = 0;
|
|
|
|
char **__wine_main_argv = NULL;
|
|
|
|
WCHAR **__wine_main_wargv = NULL;
|
2003-10-11 01:33:21 +02:00
|
|
|
char **__wine_main_environ = NULL;
|
2002-05-17 01:16:01 +02:00
|
|
|
|
2004-01-02 22:08:05 +01:00
|
|
|
struct dll_path_context
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
char *buffer;
|
|
|
|
};
|
|
|
|
|
2000-11-08 05:33:20 +01:00
|
|
|
#define MAX_DLLS 100
|
|
|
|
|
|
|
|
static struct
|
|
|
|
{
|
|
|
|
const IMAGE_NT_HEADERS *nt; /* NT header */
|
|
|
|
const char *filename; /* DLL file name */
|
|
|
|
} builtin_dlls[MAX_DLLS];
|
|
|
|
|
|
|
|
static int nb_dlls;
|
|
|
|
|
|
|
|
static const IMAGE_NT_HEADERS *main_exe;
|
|
|
|
|
|
|
|
static load_dll_callback_t load_dll_callback;
|
|
|
|
|
2002-03-20 23:19:06 +01:00
|
|
|
static const char **dll_paths;
|
2000-11-08 05:33:20 +01:00
|
|
|
static int nb_dll_paths;
|
|
|
|
static int dll_path_maxlen;
|
|
|
|
|
|
|
|
|
|
|
|
/* build the dll load path from the WINEDLLPATH variable */
|
|
|
|
static void build_dll_path(void)
|
|
|
|
{
|
2002-03-20 23:19:06 +01:00
|
|
|
static const char * const dlldir = DLLDIR;
|
|
|
|
int len, count = 0;
|
2000-11-08 05:33:20 +01:00
|
|
|
char *p, *path = getenv( "WINEDLLPATH" );
|
|
|
|
|
2002-03-20 23:19:06 +01:00
|
|
|
if (path)
|
|
|
|
{
|
|
|
|
/* count how many path elements we need */
|
|
|
|
path = strdup(path);
|
|
|
|
p = path;
|
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
while (*p == ':') p++;
|
|
|
|
if (!*p) break;
|
|
|
|
count++;
|
|
|
|
while (*p && *p != ':') p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dll_paths = malloc( (count+1) * sizeof(*dll_paths) );
|
|
|
|
|
|
|
|
if (count)
|
2000-11-08 05:33:20 +01:00
|
|
|
{
|
2002-03-20 23:19:06 +01:00
|
|
|
p = path;
|
|
|
|
nb_dll_paths = 0;
|
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
while (*p == ':') *p++ = 0;
|
|
|
|
if (!*p) break;
|
|
|
|
dll_paths[nb_dll_paths] = p;
|
|
|
|
while (*p && *p != ':') p++;
|
|
|
|
if (p - dll_paths[nb_dll_paths] > dll_path_maxlen)
|
|
|
|
dll_path_maxlen = p - dll_paths[nb_dll_paths];
|
|
|
|
nb_dll_paths++;
|
|
|
|
}
|
2000-11-08 05:33:20 +01:00
|
|
|
}
|
|
|
|
|
2002-03-20 23:19:06 +01:00
|
|
|
/* append default dll dir (if not empty) to path */
|
|
|
|
if ((len = strlen(dlldir)))
|
2000-11-08 05:33:20 +01:00
|
|
|
{
|
2002-03-20 23:19:06 +01:00
|
|
|
if (len > dll_path_maxlen) dll_path_maxlen = len;
|
|
|
|
dll_paths[nb_dll_paths++] = dlldir;
|
2000-11-08 05:33:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-04-04 00:13:01 +02:00
|
|
|
/* check if a given file can be opened */
|
|
|
|
inline static int file_exists( const char *name )
|
|
|
|
{
|
|
|
|
int fd = open( name, O_RDONLY );
|
|
|
|
if (fd != -1) close( fd );
|
|
|
|
return (fd != -1);
|
|
|
|
}
|
2000-11-08 05:33:20 +01:00
|
|
|
|
2004-01-02 22:08:05 +01:00
|
|
|
|
|
|
|
/* get a filename from the next entry in the dll path */
|
|
|
|
static char *next_dll_path( struct dll_path_context *context )
|
|
|
|
{
|
|
|
|
int index = context->index++;
|
|
|
|
|
|
|
|
if (index < nb_dll_paths)
|
|
|
|
{
|
|
|
|
int len = strlen( dll_paths[index] );
|
|
|
|
char *path = context->buffer + dll_path_maxlen - len;
|
|
|
|
memcpy( path, dll_paths[index], len );
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* get a filename from the first entry in the dll path */
|
|
|
|
static char *first_dll_path( const char *name, const char *ext, struct dll_path_context *context )
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
int namelen = strlen( name );
|
|
|
|
|
|
|
|
context->buffer = p = malloc( dll_path_maxlen + namelen + strlen(ext) + 2 );
|
|
|
|
context->index = 0;
|
|
|
|
|
|
|
|
/* store the name at the end of the buffer, followed by extension */
|
|
|
|
p += dll_path_maxlen;
|
|
|
|
*p++ = '/';
|
|
|
|
memcpy( p, name, namelen );
|
|
|
|
strcpy( p + namelen, ext );
|
|
|
|
return next_dll_path( context );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* free the dll path context created by first_dll_path */
|
|
|
|
inline static void free_dll_path( struct dll_path_context *context )
|
|
|
|
{
|
|
|
|
free( context->buffer );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-08 05:33:20 +01:00
|
|
|
/* open a library for a given dll, searching in the dll path
|
|
|
|
* 'name' must be the Windows dll name (e.g. "kernel32.dll") */
|
2003-07-03 20:23:10 +02:00
|
|
|
static void *dlopen_dll( const char *name, char *error, int errorsize,
|
|
|
|
int test_only, int *exists )
|
2000-11-08 05:33:20 +01:00
|
|
|
{
|
2004-01-02 22:08:05 +01:00
|
|
|
struct dll_path_context context;
|
|
|
|
char *path;
|
2000-11-08 05:33:20 +01:00
|
|
|
void *ret = NULL;
|
|
|
|
|
2003-07-03 20:23:10 +02:00
|
|
|
*exists = 0;
|
2004-01-02 22:08:05 +01:00
|
|
|
for (path = first_dll_path( name, ".so", &context ); path; path = next_dll_path( &context ))
|
2000-11-08 05:33:20 +01:00
|
|
|
{
|
2004-01-02 22:08:05 +01:00
|
|
|
if (!test_only && (ret = wine_dlopen( path, RTLD_NOW, error, errorsize ))) break;
|
|
|
|
if ((*exists = file_exists( path ))) break; /* exists but cannot be loaded, return the error */
|
2000-11-08 05:33:20 +01:00
|
|
|
}
|
2004-01-02 22:08:05 +01:00
|
|
|
free_dll_path( &context );
|
2000-11-08 05:33:20 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-09 00:02:48 +01:00
|
|
|
/* adjust an array of pointers to make them into RVAs */
|
|
|
|
static inline void fixup_rva_ptrs( void *array, void *base, int count )
|
|
|
|
{
|
|
|
|
void **ptr = (void **)array;
|
|
|
|
while (count--)
|
|
|
|
{
|
|
|
|
if (*ptr) *ptr = (void *)((char *)*ptr - (char *)base);
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-28 19:54:31 +02:00
|
|
|
/* fixup RVAs in the import directory */
|
|
|
|
static void fixup_imports( IMAGE_IMPORT_DESCRIPTOR *dir, DWORD size, void *base )
|
|
|
|
{
|
|
|
|
int count = size / sizeof(void *);
|
|
|
|
void **ptr = (void **)dir;
|
|
|
|
|
|
|
|
/* everything is either a pointer or a ordinal value below 0x10000 */
|
|
|
|
while (count--)
|
|
|
|
{
|
|
|
|
if (*ptr >= (void *)0x10000) *ptr = (void *)((char *)*ptr - (char *)base);
|
|
|
|
else if (*ptr) *ptr = (void *)(0x80000000 | (unsigned int)*ptr);
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-09 00:02:48 +01:00
|
|
|
/* fixup RVAs in the resource directory */
|
|
|
|
static void fixup_resources( IMAGE_RESOURCE_DIRECTORY *dir, char *root, void *base )
|
|
|
|
{
|
|
|
|
IMAGE_RESOURCE_DIRECTORY_ENTRY *entry;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
entry = (IMAGE_RESOURCE_DIRECTORY_ENTRY *)(dir + 1);
|
|
|
|
for (i = 0; i < dir->NumberOfNamedEntries + dir->NumberOfIdEntries; i++, entry++)
|
|
|
|
{
|
2000-12-20 00:31:52 +01:00
|
|
|
void *ptr = root + entry->u2.s3.OffsetToDirectory;
|
|
|
|
if (entry->u2.s3.DataIsDirectory) fixup_resources( ptr, root, base );
|
2000-11-09 00:02:48 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
IMAGE_RESOURCE_DATA_ENTRY *data = ptr;
|
|
|
|
fixup_rva_ptrs( &data->OffsetToData, base, 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* map a builtin dll in memory and fixup RVAs */
|
|
|
|
static void *map_dll( const IMAGE_NT_HEADERS *nt_descr )
|
|
|
|
{
|
2002-05-15 01:18:23 +02:00
|
|
|
#ifdef HAVE_MMAP
|
2000-11-09 00:02:48 +01:00
|
|
|
IMAGE_DATA_DIRECTORY *dir;
|
|
|
|
IMAGE_DOS_HEADER *dos;
|
|
|
|
IMAGE_NT_HEADERS *nt;
|
|
|
|
IMAGE_SECTION_HEADER *sec;
|
2003-11-03 23:19:44 +01:00
|
|
|
BYTE *addr;
|
|
|
|
DWORD code_start, data_start, data_end;
|
|
|
|
const size_t page_size = getpagesize();
|
|
|
|
const size_t page_mask = page_size - 1;
|
2000-11-09 00:02:48 +01:00
|
|
|
int nb_sections = 2; /* code + data */
|
|
|
|
|
|
|
|
size_t size = (sizeof(IMAGE_DOS_HEADER)
|
|
|
|
+ sizeof(IMAGE_NT_HEADERS)
|
|
|
|
+ nb_sections * sizeof(IMAGE_SECTION_HEADER));
|
|
|
|
|
|
|
|
assert( size <= page_size );
|
|
|
|
|
2002-08-14 23:09:55 +02:00
|
|
|
/* module address must be aligned on 64K boundary */
|
|
|
|
addr = (BYTE *)((nt_descr->OptionalHeader.ImageBase + 0xffff) & ~0xffff);
|
|
|
|
if (wine_anon_mmap( addr, page_size, PROT_READ|PROT_WRITE, MAP_FIXED ) != addr) return NULL;
|
2000-11-09 00:02:48 +01:00
|
|
|
|
|
|
|
dos = (IMAGE_DOS_HEADER *)addr;
|
|
|
|
nt = (IMAGE_NT_HEADERS *)(dos + 1);
|
|
|
|
sec = (IMAGE_SECTION_HEADER *)(nt + 1);
|
|
|
|
|
|
|
|
/* Build the DOS and NT headers */
|
|
|
|
|
|
|
|
dos->e_magic = IMAGE_DOS_SIGNATURE;
|
|
|
|
dos->e_lfanew = sizeof(*dos);
|
|
|
|
|
|
|
|
*nt = *nt_descr;
|
|
|
|
|
2003-11-03 23:19:44 +01:00
|
|
|
code_start = page_size;
|
|
|
|
data_start = ((BYTE *)nt->OptionalHeader.BaseOfData - addr) & ~page_mask;
|
|
|
|
data_end = (((BYTE *)nt->OptionalHeader.SizeOfImage - addr) + page_mask) & ~page_mask;
|
|
|
|
|
2000-11-09 00:02:48 +01:00
|
|
|
nt->FileHeader.NumberOfSections = nb_sections;
|
2003-11-03 23:19:44 +01:00
|
|
|
nt->OptionalHeader.BaseOfCode = code_start;
|
|
|
|
nt->OptionalHeader.BaseOfData = data_start;
|
2000-11-09 00:02:48 +01:00
|
|
|
nt->OptionalHeader.SizeOfCode = data_start - code_start;
|
2003-11-03 23:19:44 +01:00
|
|
|
nt->OptionalHeader.SizeOfInitializedData = data_end - data_start;
|
2000-11-09 00:02:48 +01:00
|
|
|
nt->OptionalHeader.SizeOfUninitializedData = 0;
|
2003-11-03 23:19:44 +01:00
|
|
|
nt->OptionalHeader.SizeOfImage = data_end;
|
2000-11-09 00:02:48 +01:00
|
|
|
nt->OptionalHeader.ImageBase = (DWORD)addr;
|
|
|
|
|
|
|
|
fixup_rva_ptrs( &nt->OptionalHeader.AddressOfEntryPoint, addr, 1 );
|
|
|
|
|
|
|
|
/* Build the code section */
|
|
|
|
|
|
|
|
strcpy( sec->Name, ".text" );
|
|
|
|
sec->SizeOfRawData = data_start - code_start;
|
|
|
|
sec->Misc.VirtualSize = sec->SizeOfRawData;
|
2003-11-03 23:19:44 +01:00
|
|
|
sec->VirtualAddress = code_start;
|
|
|
|
sec->PointerToRawData = code_start;
|
2000-11-09 00:02:48 +01:00
|
|
|
sec->Characteristics = (IMAGE_SCN_CNT_CODE | IMAGE_SCN_MEM_EXECUTE | IMAGE_SCN_MEM_READ);
|
|
|
|
sec++;
|
|
|
|
|
|
|
|
/* Build the data section */
|
|
|
|
|
|
|
|
strcpy( sec->Name, ".data" );
|
2003-11-03 23:19:44 +01:00
|
|
|
sec->SizeOfRawData = data_end - data_start;
|
2000-11-09 00:02:48 +01:00
|
|
|
sec->Misc.VirtualSize = sec->SizeOfRawData;
|
2003-11-03 23:19:44 +01:00
|
|
|
sec->VirtualAddress = data_start;
|
|
|
|
sec->PointerToRawData = data_start;
|
2000-11-09 00:02:48 +01:00
|
|
|
sec->Characteristics = (IMAGE_SCN_CNT_INITIALIZED_DATA |
|
|
|
|
IMAGE_SCN_MEM_WRITE | IMAGE_SCN_MEM_READ);
|
|
|
|
sec++;
|
|
|
|
|
|
|
|
/* Build the import directory */
|
|
|
|
|
|
|
|
dir = &nt->OptionalHeader.DataDirectory[IMAGE_FILE_IMPORT_DIRECTORY];
|
|
|
|
if (dir->Size)
|
|
|
|
{
|
|
|
|
IMAGE_IMPORT_DESCRIPTOR *imports = (void *)dir->VirtualAddress;
|
|
|
|
fixup_rva_ptrs( &dir->VirtualAddress, addr, 1 );
|
2002-07-28 19:54:31 +02:00
|
|
|
fixup_imports( imports, dir->Size, addr );
|
2000-11-09 00:02:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Build the resource directory */
|
|
|
|
|
|
|
|
dir = &nt->OptionalHeader.DataDirectory[IMAGE_FILE_RESOURCE_DIRECTORY];
|
|
|
|
if (dir->Size)
|
|
|
|
{
|
|
|
|
void *ptr = (void *)dir->VirtualAddress;
|
|
|
|
fixup_rva_ptrs( &dir->VirtualAddress, addr, 1 );
|
|
|
|
fixup_resources( ptr, ptr, addr );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Build the export directory */
|
|
|
|
|
|
|
|
dir = &nt->OptionalHeader.DataDirectory[IMAGE_FILE_EXPORT_DIRECTORY];
|
|
|
|
if (dir->Size)
|
|
|
|
{
|
|
|
|
IMAGE_EXPORT_DIRECTORY *exports = (void *)dir->VirtualAddress;
|
|
|
|
fixup_rva_ptrs( &dir->VirtualAddress, addr, 1 );
|
|
|
|
fixup_rva_ptrs( (void *)exports->AddressOfFunctions, addr, exports->NumberOfFunctions );
|
|
|
|
fixup_rva_ptrs( (void *)exports->AddressOfNames, addr, exports->NumberOfNames );
|
|
|
|
fixup_rva_ptrs( &exports->Name, addr, 1 );
|
|
|
|
fixup_rva_ptrs( &exports->AddressOfFunctions, addr, 1 );
|
|
|
|
fixup_rva_ptrs( &exports->AddressOfNames, addr, 1 );
|
|
|
|
fixup_rva_ptrs( &exports->AddressOfNameOrdinals, addr, 1 );
|
|
|
|
}
|
|
|
|
return addr;
|
2002-05-15 01:18:23 +02:00
|
|
|
#else /* HAVE_MMAP */
|
|
|
|
return NULL;
|
|
|
|
#endif /* HAVE_MMAP */
|
2000-11-09 00:02:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-08 05:33:20 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* __wine_dll_register
|
|
|
|
*
|
|
|
|
* Register a built-in DLL descriptor.
|
|
|
|
*/
|
|
|
|
void __wine_dll_register( const IMAGE_NT_HEADERS *header, const char *filename )
|
|
|
|
{
|
2000-11-09 00:02:48 +01:00
|
|
|
if (load_dll_callback) load_dll_callback( map_dll(header), filename );
|
2000-11-08 05:33:20 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!(header->FileHeader.Characteristics & IMAGE_FILE_DLL))
|
|
|
|
main_exe = header;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
assert( nb_dlls < MAX_DLLS );
|
|
|
|
builtin_dlls[nb_dlls].nt = header;
|
|
|
|
builtin_dlls[nb_dlls].filename = filename;
|
|
|
|
nb_dlls++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* wine_dll_set_callback
|
|
|
|
*
|
|
|
|
* Set the callback function for dll loading, and call it
|
|
|
|
* for all dlls that were implicitly loaded already.
|
|
|
|
*/
|
|
|
|
void wine_dll_set_callback( load_dll_callback_t load )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
load_dll_callback = load;
|
|
|
|
for (i = 0; i < nb_dlls; i++)
|
|
|
|
{
|
|
|
|
const IMAGE_NT_HEADERS *nt = builtin_dlls[i].nt;
|
|
|
|
if (!nt) continue;
|
|
|
|
builtin_dlls[i].nt = NULL;
|
2000-11-09 00:02:48 +01:00
|
|
|
load_dll_callback( map_dll(nt), builtin_dlls[i].filename );
|
2000-11-08 05:33:20 +01:00
|
|
|
}
|
|
|
|
nb_dlls = 0;
|
2000-11-09 00:02:48 +01:00
|
|
|
if (main_exe) load_dll_callback( map_dll(main_exe), "" );
|
2000-11-08 05:33:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* wine_dll_load
|
|
|
|
*
|
|
|
|
* Load a builtin dll.
|
|
|
|
*/
|
2003-07-03 20:23:10 +02:00
|
|
|
void *wine_dll_load( const char *filename, char *error, int errorsize, int *file_exists )
|
2000-11-08 05:33:20 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* callback must have been set already */
|
|
|
|
assert( load_dll_callback );
|
|
|
|
|
|
|
|
/* check if we have it in the list */
|
|
|
|
/* this can happen when initializing pre-loaded dlls in wine_dll_set_callback */
|
|
|
|
for (i = 0; i < nb_dlls; i++)
|
|
|
|
{
|
|
|
|
if (!builtin_dlls[i].nt) continue;
|
2000-12-05 22:17:59 +01:00
|
|
|
if (!strcmp( builtin_dlls[i].filename, filename ))
|
2000-11-08 05:33:20 +01:00
|
|
|
{
|
|
|
|
const IMAGE_NT_HEADERS *nt = builtin_dlls[i].nt;
|
|
|
|
builtin_dlls[i].nt = NULL;
|
2000-11-09 00:02:48 +01:00
|
|
|
load_dll_callback( map_dll(nt), builtin_dlls[i].filename );
|
2003-07-03 20:23:10 +02:00
|
|
|
*file_exists = 1;
|
2000-11-08 05:33:20 +01:00
|
|
|
return (void *)1;
|
|
|
|
}
|
|
|
|
}
|
2003-07-03 20:23:10 +02:00
|
|
|
return dlopen_dll( filename, error, errorsize, 0, file_exists );
|
2000-11-08 05:33:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* wine_dll_unload
|
|
|
|
*
|
|
|
|
* Unload a builtin dll.
|
|
|
|
*/
|
|
|
|
void wine_dll_unload( void *handle )
|
|
|
|
{
|
2000-12-13 22:32:55 +01:00
|
|
|
if (handle != (void *)1)
|
|
|
|
wine_dlclose( handle, NULL, 0 );
|
2000-11-08 05:33:20 +01:00
|
|
|
}
|
2000-11-10 02:38:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* wine_dll_load_main_exe
|
|
|
|
*
|
2002-05-22 23:32:49 +02:00
|
|
|
* Try to load the .so for the main exe.
|
2000-11-10 02:38:28 +01:00
|
|
|
*/
|
2003-07-03 20:23:10 +02:00
|
|
|
void *wine_dll_load_main_exe( const char *name, char *error, int errorsize,
|
|
|
|
int test_only, int *file_exists )
|
2000-11-10 02:38:28 +01:00
|
|
|
{
|
2003-07-03 20:23:10 +02:00
|
|
|
return dlopen_dll( name, error, errorsize, test_only, file_exists );
|
2000-11-10 02:38:28 +01:00
|
|
|
}
|
2003-03-20 20:26:18 +01:00
|
|
|
|
|
|
|
|
2004-01-02 22:08:05 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* wine_dll_get_owner
|
|
|
|
*
|
|
|
|
* Retrieve the name of the 32-bit owner dll for a 16-bit dll.
|
|
|
|
* Return 0 if OK, -1 on error.
|
|
|
|
*/
|
|
|
|
int wine_dll_get_owner( const char *name, char *buffer, int size, int *exists )
|
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
char *path;
|
|
|
|
struct dll_path_context context;
|
|
|
|
|
|
|
|
*exists = 0;
|
|
|
|
for (path = first_dll_path( name, ".so", &context ); path; path = next_dll_path( &context ))
|
|
|
|
{
|
|
|
|
int res = readlink( path, buffer, size );
|
|
|
|
if (res != -1) /* got a symlink */
|
|
|
|
{
|
|
|
|
*exists = 1;
|
|
|
|
if (res < 4 || res >= size) break;
|
|
|
|
buffer[res] = 0;
|
|
|
|
if (strchr( buffer, '/' )) break; /* contains a path, not valid */
|
|
|
|
if (strcmp( buffer + res - 3, ".so" )) break; /* does not end in .so, not valid */
|
|
|
|
buffer[res - 3] = 0; /* remove .so */
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((*exists = file_exists( path ))) break; /* exists but not a symlink, return the error */
|
|
|
|
}
|
|
|
|
free_dll_path( &context );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-05 01:17:41 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* debug_usage
|
|
|
|
*/
|
|
|
|
static void debug_usage(void)
|
|
|
|
{
|
|
|
|
static const char usage[] =
|
|
|
|
"Syntax of the WINEDEBUG variable:\n"
|
|
|
|
" WINEDEBUG=[class]+xxx,[class]-yyy,...\n\n"
|
|
|
|
"Example: WINEDEBUG=+all,warn-heap\n"
|
|
|
|
" turns on all messages except warning heap messages\n"
|
|
|
|
"Available message classes: err, warn, fixme, trace\n";
|
|
|
|
write( 2, usage, sizeof(usage) - 1 );
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-27 02:47:58 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* wine_init
|
|
|
|
*
|
|
|
|
* Main Wine initialisation.
|
|
|
|
*/
|
|
|
|
void wine_init( int argc, char *argv[], char *error, int error_size )
|
|
|
|
{
|
2003-10-11 01:33:21 +02:00
|
|
|
extern char **environ;
|
2003-12-05 01:17:41 +01:00
|
|
|
char *wine_debug;
|
2003-07-03 20:23:10 +02:00
|
|
|
int file_exists;
|
2003-10-10 02:12:17 +02:00
|
|
|
void *ntdll;
|
|
|
|
void (*init_func)(void);
|
2003-04-27 02:47:58 +02:00
|
|
|
|
2003-10-08 02:36:09 +02:00
|
|
|
build_dll_path();
|
2003-11-11 23:21:29 +01:00
|
|
|
wine_init_argv0_path( argv[0] );
|
2003-10-10 02:12:17 +02:00
|
|
|
__wine_main_argc = argc;
|
|
|
|
__wine_main_argv = argv;
|
2003-10-11 01:33:21 +02:00
|
|
|
__wine_main_environ = environ;
|
2003-10-10 02:12:17 +02:00
|
|
|
|
2003-12-05 01:17:41 +01:00
|
|
|
if ((wine_debug = getenv("WINEDEBUG")))
|
|
|
|
{
|
|
|
|
if (!strcmp( wine_debug, "help" )) debug_usage();
|
|
|
|
wine_dbg_parse_options( wine_debug );
|
|
|
|
}
|
|
|
|
|
2003-10-10 02:12:17 +02:00
|
|
|
if (!(ntdll = dlopen_dll( "ntdll.dll", error, error_size, 0, &file_exists ))) return;
|
|
|
|
if (!(init_func = wine_dlsym( ntdll, "__wine_process_init", error, error_size ))) return;
|
|
|
|
init_func();
|
2003-04-27 02:47:58 +02:00
|
|
|
}
|
|
|
|
|
2003-03-21 22:28:33 +01:00
|
|
|
|
2003-03-20 20:26:18 +01:00
|
|
|
/*
|
|
|
|
* These functions provide wrappers around dlopen() and associated
|
|
|
|
* functions. They work around a bug in glibc 2.1.x where calling
|
|
|
|
* a dl*() function after a previous dl*() function has failed
|
|
|
|
* without a dlerror() call between the two will cause a crash.
|
|
|
|
* They all take a pointer to a buffer that
|
|
|
|
* will receive the error description (from dlerror()). This
|
|
|
|
* parameter may be NULL if the error description is not required.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* wine_dlopen
|
|
|
|
*/
|
|
|
|
void *wine_dlopen( const char *filename, int flag, char *error, int errorsize )
|
|
|
|
{
|
|
|
|
#ifdef HAVE_DLOPEN
|
|
|
|
void *ret;
|
|
|
|
const char *s;
|
|
|
|
dlerror(); dlerror();
|
|
|
|
ret = dlopen( filename, flag );
|
|
|
|
s = dlerror();
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
strncpy( error, s ? s : "", errorsize );
|
|
|
|
error[errorsize - 1] = '\0';
|
|
|
|
}
|
|
|
|
dlerror();
|
|
|
|
return ret;
|
|
|
|
#else
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
strncpy( error, "dlopen interface not detected by configure", errorsize );
|
|
|
|
error[errorsize - 1] = '\0';
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* wine_dlsym
|
|
|
|
*/
|
|
|
|
void *wine_dlsym( void *handle, const char *symbol, char *error, int errorsize )
|
|
|
|
{
|
|
|
|
#ifdef HAVE_DLOPEN
|
|
|
|
void *ret;
|
|
|
|
const char *s;
|
|
|
|
dlerror(); dlerror();
|
|
|
|
ret = dlsym( handle, symbol );
|
|
|
|
s = dlerror();
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
strncpy( error, s ? s : "", errorsize );
|
|
|
|
error[errorsize - 1] = '\0';
|
|
|
|
}
|
|
|
|
dlerror();
|
|
|
|
return ret;
|
|
|
|
#else
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
strncpy( error, "dlopen interface not detected by configure", errorsize );
|
|
|
|
error[errorsize - 1] = '\0';
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* wine_dlclose
|
|
|
|
*/
|
|
|
|
int wine_dlclose( void *handle, char *error, int errorsize )
|
|
|
|
{
|
|
|
|
#ifdef HAVE_DLOPEN
|
|
|
|
int ret;
|
|
|
|
const char *s;
|
|
|
|
dlerror(); dlerror();
|
|
|
|
ret = dlclose( handle );
|
|
|
|
s = dlerror();
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
strncpy( error, s ? s : "", errorsize );
|
|
|
|
error[errorsize - 1] = '\0';
|
|
|
|
}
|
|
|
|
dlerror();
|
|
|
|
return ret;
|
|
|
|
#else
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
strncpy( error, "dlopen interface not detected by configure", errorsize );
|
|
|
|
error[errorsize - 1] = '\0';
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|