2 * Elf-dll loader functions
4 * Copyright 1999 Bertho A. Stultiens
18 #include "wine/winbase16.h"
20 #include "debugtools.h"
23 DEFAULT_DEBUG_CHANNEL(elfdll
)
25 #if defined(HAVE_DL_API)
28 /*------------------ HACKS -----------------*/
29 extern DWORD
fixup_imports(WINE_MODREF
*wm
);
30 extern void dump_exports(HMODULE hModule
);
31 /*---------------- END HACKS ---------------*/
33 char *extra_ld_library_path
= NULL
; /* The extra search-path set in wine.conf */
37 HMODULE pe_module_start
;
39 NE_MODULE
*ne_module_start
;
44 /****************************************************************************
47 * Wrapper for dlopen to search the EXTRA_LD_LIBRARY_PATH from wine.conf
48 * manually because libdl.so caches the environment and does not accept our
51 void *ELFDLL_dlopen(const char *libname
, int flags
)
58 /* First try the default path search of dlopen() */
59 handle
= dlopen(libname
, flags
);
63 /* Now try to construct searches through our extra search-path */
64 namelen
= strlen(libname
);
65 ldpath
= extra_ld_library_path
;
66 while(ldpath
&& *ldpath
)
73 cptr
= strchr(ldpath
, ':');
85 if(len
+ namelen
+ 1 >= sizeof(buffer
))
87 ERR("Buffer overflow! Check EXTRA_LD_LIBRARY_PATH or increase buffer size.\n");
91 strncpy(buffer
, from
, len
);
95 strcpy(buffer
+ len
+ 1, libname
);
98 strcpy(buffer
+ len
, libname
);
100 TRACE("Trying dlopen('%s', %d)\n", buffer
, flags
);
102 handle
= dlopen(buffer
, flags
);
110 /****************************************************************************
111 * get_sobasename (internal)
114 static LPSTR
get_sobasename(LPCSTR path
, LPSTR name
)
118 /* Strip the path from the library name */
119 if((cptr
= strrchr(path
, '/')))
121 char *cp
= strrchr(cptr
+1, '\\');
126 cptr
= strrchr(path
, '\\');
129 cptr
= (char *)path
; /* No '/' nor '\\' in path */
134 cptr
= strrchr(name
, '.');
136 *cptr
= '\0'; /* Strip extension */
138 /* Convert to lower case.
139 * This must be done manually because it is not sure that
140 * other modules are accessible.
142 for(cptr
= name
; *cptr
; cptr
++)
143 *cptr
= tolower(*cptr
);
149 /****************************************************************************
150 * ELFDLL_CreateModref (internal)
153 * hModule - the header from the elf-dll's data-segment
154 * path - requested path from original call
157 * A WINE_MODREF pointer to the new object
160 * - Does not handle errors due to dependencies correctly
161 * - path can be wrong
163 #define RVA(base, va) (((DWORD)base) + ((DWORD)va))
165 static WINE_MODREF
*ELFDLL_CreateModref(HMODULE hModule
, LPCSTR path
)
167 IMAGE_NT_HEADERS
*nt
= PE_HEADER(hModule
);
168 IMAGE_DATA_DIRECTORY
*dir
;
169 IMAGE_IMPORT_DESCRIPTOR
*pe_import
= NULL
;
172 HANDLE procheap
= GetProcessHeap();
174 wm
= (WINE_MODREF
*)HeapAlloc(procheap
, HEAP_ZERO_MEMORY
, sizeof(*wm
));
178 wm
->module
= hModule
;
179 wm
->type
= MODULE32_PE
; /* FIXME */
181 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_EXPORT
;
183 wm
->binfmt
.pe
.pe_export
= (PIMAGE_EXPORT_DIRECTORY
)RVA(hModule
, dir
->VirtualAddress
);
185 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_IMPORT
;
187 pe_import
= wm
->binfmt
.pe
.pe_import
= (PIMAGE_IMPORT_DESCRIPTOR
)RVA(hModule
, dir
->VirtualAddress
);
189 dir
= nt
->OptionalHeader
.DataDirectory
+IMAGE_DIRECTORY_ENTRY_RESOURCE
;
191 wm
->binfmt
.pe
.pe_resource
= (PIMAGE_RESOURCE_DIRECTORY
)RVA(hModule
, dir
->VirtualAddress
);
194 wm
->filename
= HEAP_strdupA( procheap
, 0, path
);
195 wm
->modname
= strrchr( wm
->filename
, '\\' );
196 if (!wm
->modname
) wm
->modname
= wm
->filename
;
199 len
= GetShortPathNameA( wm
->filename
, NULL
, 0 );
200 wm
->short_filename
= (char *)HeapAlloc( procheap
, 0, len
+1 );
201 GetShortPathNameA( wm
->filename
, wm
->short_filename
, len
+1 );
202 wm
->short_modname
= strrchr( wm
->short_filename
, '\\' );
203 if (!wm
->short_modname
) wm
->short_modname
= wm
->short_filename
;
204 else wm
->short_modname
++;
206 /* Link MODREF into process list */
208 EnterCriticalSection( &PROCESS_Current()->crit_section
);
210 wm
->next
= PROCESS_Current()->modref_list
;
211 PROCESS_Current()->modref_list
= wm
;
212 if ( wm
->next
) wm
->next
->prev
= wm
;
214 if ( !( nt
->FileHeader
.Characteristics
& IMAGE_FILE_DLL
)
215 && !( wm
->flags
& WINE_MODREF_LOAD_AS_DATAFILE
) )
218 if ( PROCESS_Current()->exe_modref
)
219 FIXME( "Trying to load second .EXE file: %s\n", path
);
221 PROCESS_Current()->exe_modref
= wm
;
224 LeaveCriticalSection( &PROCESS_Current()->crit_section
);
229 && !( wm
->flags
& WINE_MODREF_LOAD_AS_DATAFILE
)
230 && !( wm
->flags
& WINE_MODREF_DONT_RESOLVE_REFS
)
231 && fixup_imports( wm
) )
233 /* remove entry from modref chain */
234 EnterCriticalSection( &PROCESS_Current()->crit_section
);
237 PROCESS_Current()->modref_list
= wm
->next
;
239 wm
->prev
->next
= wm
->next
;
241 if ( wm
->next
) wm
->next
->prev
= wm
->prev
;
242 wm
->next
= wm
->prev
= NULL
;
244 LeaveCriticalSection( &PROCESS_Current()->crit_section
);
246 /* FIXME: there are several more dangling references
247 * left. Including dlls loaded by this dll before the
248 * failed one. Unrolling is rather difficult with the
249 * current structure and we can leave it them lying
250 * around with no problems, so we don't care.
251 * As these might reference our wm, we don't free it.
260 /***********************************************************************
261 * ELFDLL_CreateNEModule
263 * Create a dummy NE module for the win32 elf-dll based on the supplied
264 * NE header in the elf-dll.
266 static HMODULE16
ELFDLL_CreateNEModule(NE_MODULE
*ne_image
, DWORD size
)
269 HMODULE16 hModule
= GLOBAL_CreateBlock(GMEM_MOVEABLE
, ne_image
, size
, 0,
270 FALSE
, FALSE
, FALSE
, NULL
);
274 FarSetOwner16(hModule
, hModule
);
275 pModule
= (NE_MODULE
*)GlobalLock16(hModule
);
276 pModule
->self
= hModule
;
277 NE_RegisterModule(pModule
);
282 /****************************************************************************
283 * ELFDLL_LoadLibraryExA (internal)
285 * Implementation of elf-dll loading for PE modules
287 WINE_MODREF
*ELFDLL_LoadLibraryExA(LPCSTR path
, DWORD flags
)
290 struct elfdll_image
*image
;
296 get_sobasename(path
, name
);
297 strcpy(soname
, name
);
298 strcat(soname
, ".so");
300 /* Try to open the elf-dll */
301 dlhandle
= ELFDLL_dlopen(soname
, RTLD_LAZY
);
304 WARN("Could not load %s (%s)\n", soname
, dlerror());
305 SetLastError( ERROR_FILE_NOT_FOUND
);
309 /* Get the 'dllname_elfdll_image' variable */
310 strcpy(soname
, name
);
311 strcat(soname
, "_elfdll_image");
312 image
= (struct elfdll_image
*)dlsym(dlhandle
, soname
);
315 ERR("Could not get elfdll image descriptor %s (%s)\n", soname
, dlerror());
317 SetLastError( ERROR_BAD_FORMAT
);
321 /* Create a win16 dummy module */
322 hmod16
= ELFDLL_CreateNEModule(image
->ne_module_start
, image
->ne_module_size
);
325 ERR("Could not create win16 dummy module for %s\n", path
);
327 SetLastError( ERROR_OUTOFMEMORY
);
331 image
->ne_module_start
->module32
= image
->pe_module_start
;
333 wm
= ELFDLL_CreateModref(image
->pe_module_start
, path
);
336 ERR("Could not create WINE_MODREF for %s\n", path
);
337 GLOBAL_FreeBlock((HGLOBAL16
)hmod16
);
339 SetLastError( ERROR_OUTOFMEMORY
);
343 dump_exports(image
->pe_module_start
);
348 /****************************************************************************
349 * ELFDLL_UnloadLibrary (internal)
351 * Unload an elf-dll completely from memory and deallocate the modref
353 void ELFDLL_UnloadLibrary(WINE_MODREF
*wm
)
358 /****************************************************************************
359 * ELFDLL_LoadModule16 (internal)
361 * Implementation of elf-dll loading for NE modules
363 HINSTANCE16
ELFDLL_LoadModule16(LPCSTR libname
)
365 return (HINSTANCE16
)ERROR_FILE_NOT_FOUND
;
371 * No elfdlls possible
372 * Just put stubs in here.
375 WINE_MODREF
*ELFDLL_LoadLibraryExA(LPCSTR libname
, DWORD flags
)
377 SetLastError( ERROR_FILE_NOT_FOUND
);
381 void ELFDLL_UnloadLibrary(WINE_MODREF
*wm
)
385 HINSTANCE16
ELFDLL_LoadModule16(LPCSTR libname
)
387 return (HINSTANCE16
)ERROR_FILE_NOT_FOUND
;