0c85bd054e
the per-root-image breadth-first sorted image array. Instead we have a per-image hook function to resolve the symbols. The default function uses the sLoadedImages list directly, which is breadth-first sorted anyway. There's also a BeOS function for old-style symbol resolution and one for add-ons, which lacks a proper implementation yet (just uses old-style ATM). * Made the dl*() functions POSIX compliant: - dlopen() does no longer use load_add_on(), but loads the object as a library. It also properly supports a NULL name, now -- the previous "_APP_" work-around did only work, if this soname was set on the program (unlikely for programs using this API). - Implemented RTLD_{GLOBAL,LOCAL}. - dlsym() looks up symbols properly now, i.e. not just in the given image, but breadth-first for an actual image or in load order for the global scope. It also supports the not-quite POSIX RTLD_DEFAULT and RTLD_NEXT extensions. Our RTLD_NEXT finds more symbols than in Linux (also in later dlopen()ed libraries), but that should be fine. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28568 a95241bf-73f2-0310-859d-f6bbb57e9c96
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
/*
|
|
* Copyright 2003-2008, Haiku Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _DLFCN_H
|
|
#define _DLFCN_H
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
#define RTLD_LAZY 0 /* relocations are performed as needed */
|
|
#define RTLD_NOW 1 /* the file gets relocated at load time */
|
|
#define RTLD_LOCAL 0 /* symbols are not available for relocating any other object */
|
|
#define RTLD_GLOBAL 2 /* all symbols are available */
|
|
|
|
/* not-yet-POSIX extensions (dlsym() handles) */
|
|
#define RTLD_DEFAULT ((void*)0)
|
|
/* find the symbol in the global scope */
|
|
#define RTLD_NEXT ((void*)-1L)
|
|
/* find the next definition of the symbol */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* This is a gnu extension for the dladdr function */
|
|
typedef struct {
|
|
const char *dli_fname; /* Filename of defining object */
|
|
void *dli_fbase; /* Load address of that object */
|
|
const char *dli_sname; /* Name of nearest lower symbol */
|
|
void *dli_saddr; /* Exact value of nearest symbol */
|
|
} Dl_info;
|
|
|
|
extern int dlclose(void *image);
|
|
extern char *dlerror(void);
|
|
extern void *dlopen(const char *path, int mode);
|
|
extern void *dlsym(void *image, const char *symbolName);
|
|
extern int dladdr(void *addr, Dl_info *info);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _DLFCN_H */
|