/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License, Version 1.0 only * (the "License"). You may not use this file except in compliance * with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #ifndef _RTLD_H #define _RTLD_H #pragma ident "%Z%%M% %I% %E% SMI" /* * Global include file for the runtime linker support library. */ #include #include #include #include #include #include #include #ifdef _SYSCALL32 #include #endif #ifdef __cplusplus extern "C" { #endif /* * Linked list of directories or filenames (built from colon separated string). */ typedef struct pnode { const char *p_name; const char *p_oname; size_t p_len; uint_t p_orig; void *p_info; struct pnode *p_next; } Pnode; typedef struct rt_map Rt_map; /* * A binding descriptor. Establishes the binding relationship between two * objects, the caller (originator and the dependency (destination). */ typedef struct { Rt_map *b_caller; /* caller (originator) of a binding */ Rt_map *b_depend; /* dependency (destination) of a */ /* binding */ uint_t b_flags; /* relationship of caller to the */ /* dependency */ } Bnd_desc; #define BND_NEEDED 0x0001 /* caller NEEDED the dependency */ #define BND_REFER 0x0002 /* caller relocation references the */ /* dependency */ #define BND_FILTER 0x0004 /* pseudo binding to identify filter */ /* * Private structure for communication between rtld_db and rtld. * * We must bump the version number whenever a update in one of * the structures/fields that rtld_db reads is updated. This hopefully * permits rtld_db implementations of the future recognize corefiles * produced on older system and deal accordingly. * * As of version 'RTLD_DB_VERSION <= 2' the following fields * were valid for core file examination (basically the public * Link_map): * * ADDR() * NAME() * DYN() * NEXT() * PREV() * * Valid fields for RTLD_DB_VERSION3 * * PATHNAME() * PADSTART() * PADIMLEN() * MSIZE() * FLAGS() * FLAGS1() * * Valid fields for RTLD_DB_VERSION4 * * TLSMODID() * * Valid fields for RTLD_DB_VERSION5 * * Added rtld_flags & FLG_RT_RELOCED to stable flags range * */ #define R_RTLDDB_VERSION1 1 /* base version level - used for core */ /* file examination */ #define R_RTLDDB_VERSION2 2 /* minor revision - not relavant for */ /* core files */ #define R_RTLDDB_VERSION3 3 #define R_RTLDDB_VERSION4 4 #define R_RTLDDB_VERSION5 5 #define R_RTLDDB_VERSION R_RTLDDB_VERSION5 /* current version */ typedef struct rtld_db_priv { struct r_debug rtd_rdebug; /* original r_debug structure */ Word rtd_version; /* version no. */ size_t rtd_objpad; /* padding around mmap()ed objects */ List * rtd_dynlmlst; /* pointer to Dynlm_list */ } Rtld_db_priv; #ifdef _SYSCALL32 typedef struct rtld_db_priv32 { struct r_debug32 rtd_rdebug; /* original r_debug structure */ Elf32_Word rtd_version; /* version no. */ Elf32_Word rtd_objpad; /* padding around mmap()ed objects */ Elf32_Addr rtd_dynlmlst; /* pointer to Dynlm_list */ } Rtld_db_priv32; #endif /* _SYSCALL32 */ /* * Link map list definition. Link-maps are used to describe each loaded object. * Lists of these link-maps describe the various namespaces within a process. * The process executable and its dependencies are maintained on the lml_main * list. The runtime linker, and its dependencies are maintained on the * lml_rtld list. Additional lists can be created (see dlmopen()) for such * things as auditors and their dependencies. * * Each link-map list maintains an Alist of one, or more, linked lists of * link-maps. For backward compatibility, the lm_head/lm_tail elements are * initialized to the first linked-list of link-maps: * * Lm_list * ---------- * | lm_tail | ------------------------------------ * | lm_head | -------------------- | * | | | Rt_map | Rt_map * | | | ------ | ------ * | | Alist --> | | |--> | | * | | --------- | | | -- | | * | lm_lists | ----> | | | | | --> | | * | | |---------| | | | | | | * | | | lc_head | -- ------ | ------ * | | | lc_tail | ------------------ * | | |---------| * | lc_head | * | lc_tail | * |---------| * * Multiple link-map lists exist to support the addition of lazy loaded * families, filtee families, and dlopen() families. The intent of these * lists is to insure that a family of objects that are to be loaded are * fully relocatable, and hence usable, before they become part of the main * (al_data[0]) link-map control list. This main link-map control list is * the only list in existence when control is transferred to user code. * * During process initialization, the dynamic executable and its non-lazy * dependencies are maintained on al_data[0]. If a new object is loaded, then * this object is added to the next available control list [1], typically * al_data[1]. Any dependencies of this object that have not already been * loaded are added to the same control list. Once all of the objects on the * new control list have been successfully relocated, the objects are moved from * the new control list to the highest control list to which objects of the new * control list bound to, typically al_data[1] to al_data[0]. * * Each loading scenario can be broken down as follows: * * setup() - only the initial link-map control list is used: * i. create al_data[0] * ii. add new link-map for main on al_data[0] * iii. analyze al_data[0] to add all non-lazy dependencies * iv. relocate al_data[0] dependencies. * * dlopen() - the initiator can only be the initial link-map control list: * i. create al_data[1] from caller al_data[0] * ii. add new link-map for the dlopen'ed object on al_data[1] * iii. analyze al_data[1] to add all non-lazy dependencies * iv. relocate al_data[1] dependencies, and move to al_data[0]. * * filtee and lazy loading processing - the initiator can be any link-map * control list that is being relocated: * i. create al_data[y] from caller al_data[x] * ii. add new link-map for the new object on al_data[y] * iii. analyze al_data[y] to add all non-lazy dependencies * iv. relocate al_data[y] dependencies, and move to al_data[x]. * * This Alist therefore maintains a stack of link-map control lists. The newest * link-map control list can locate symbols within any of the former lists, * however, control is not passed to a former list until the newest lists * processing is complete. Thus, objects can't bind to new objects until they * have been fully analyzed and relocated. * * [1] Note, additional link-map control list creation occurs after the head * link-map object (typically the dynamic executable) has been relocated. This * staging is required to satisfy the binding requirements of copy relocations. * Copy relocations, effectively, transfer the bindings of the copied data * (say _iob in libc.so.1) to the copy location (_iob in the application). * Thus an object that might bind to the original copy data must be redirected * to the copy reference. As the knowledge of a copy relocation having taken * place is only known after relocating the application, link-map control list * additions are suspended until after this relocation has completed. */ typedef struct { Rt_map *lc_head; Rt_map *lc_tail; Alist *lc_now; /* pending promoted bind-now objects */ uint_t lc_flags; } Lm_cntl; #define LMC_FLG_ANALYZING 0x01 /* control list is being analyzed */ #define LMC_FLG_RELOCATING 0x02 /* control list is being relocated */ #define LMC_FLG_REANALYZE 0x04 /* repeat analysis (established when */ /* interposers are added */ typedef struct { /* * BEGIN: Exposed to rtld_db - don't move, don't delete */ Rt_map *lm_head; /* linked list pointers to active */ Rt_map *lm_tail; /* link-map list */ Alist *lm_handle; /* not used by rtld_db - but spacing */ /* is required for flags */ Word lm_flags; /* * END: Exposed to rtld_db - don't move, don't delete */ int (*lm_peh)(); /* atexit() preexec_exit_handlers */ Rt_map *lm_peh_lmp; /* and object that contributed them */ Rt_map *lm_info_lmp; /* the first object with rtld_info */ Alist *lm_rtldinfo; /* list of RTLDINFO tables */ Audit_list *lm_alp; /* audit list descripter */ avl_tree_t *lm_fpavl; /* avl tree of objects loaded */ Alist *lm_lists; /* active and pending link-map lists */ char ***lm_environ; /* pointer to environment array */ Word lm_tflags; /* transferable flags */ int lm_obj; /* total number of objs on link-map */ int lm_init; /* new obj since last init processing */ int lm_lazy; /* obj with pending lazy dependencies */ } Lm_list; #ifdef _SYSCALL32 typedef struct { /* * BEGIN: Exposed to rtld_db - don't move, don't delete */ Elf32_Addr lm_head; Elf32_Addr lm_tail; Elf32_Addr lm_handle; Elf32_Word lm_flags; /* * END: Exposed to rtld_db - don't move, don't delete */ Elf32_Addr lm_peh; Elf32_Addr lm_peh_lmp; Elf32_Addr lm_info_lmp; Elf32_Addr lm_alp; Elf32_Addr lm_fpavl; Elf32_Addr lm_lists; Elf32_Addr lm_environ; Elf32_Word lm_tflags; int lm_obj; int lm_init; int lm_lazy; } Lm_list32; #endif /* _SYSCALL32 */ /* * Possible Link_map list flags (Lm_list.lm_flags) */ /* * BEGIN: Exposed to rtld_db - don't move, don't delete */ #define LML_FLG_BASELM 0x00000001 /* primary link-map */ #define LML_FLG_RTLDLM 0x00000002 /* rtld link-map */ /* * END: Exposed to rtld_db - don't move, don't delete */ #define LML_FLG_NOAUDIT 0x00000004 /* symbol auditing disabled */ #define LML_FLG_PLTREL 0x00000008 /* deferred plt relocation */ /* initialization */ /* (ld.so.1 only) */ #define LML_FLG_HOLDLOCK 0x00000010 /* hold the rtld mutex lock */ #define LML_FLG_ENVIRON 0x00000020 /* environ var initialized */ #define LML_FLG_INTRPOSE 0x00000040 /* interposing objs on list */ #define LML_FLG_LOCAUDIT 0x00000080 /* local auditors exists for */ /* this link-map list */ #define LML_FLG_LOADAVAIL 0x00000100 /* load anything available */ #define LML_FLG_IGNRELERR 0x00000200 /* ignore relocation errors - */ /* internal for crle(1) */ #define LML_FLG_DBNOTIF 0x00000400 /* binding activity going on */ #define LML_FLG_STARTREL 0x00000800 /* relocation started */ #define LML_FLG_ATEXIT 0x00001000 /* atexit processing */ #define LML_FLG_OBJADDED 0x00002000 /* object(s) added */ #define LML_FLG_OBJDELETED 0x00004000 /* object(s) deleted */ #define LML_FLG_OBJREEVAL 0x00008000 /* existing object(s) needs */ /* tsort reevaluation */ #define LML_FLG_TRC_LDDSTUB 0x00100000 /* identify lddstub */ #define LML_FLG_TRC_ENABLE 0x00200000 /* tracing enabled (ldd) */ #define LML_FLG_TRC_WARN 0x00400000 /* print warnings for undefs */ #define LML_FLG_TRC_VERBOSE 0x00800000 /* verbose (versioning) trace */ #define LML_FLG_TRC_SEARCH 0x01000000 /* trace search paths */ #define LML_FLG_TRC_UNREF 0x02000000 /* trace unreferenced */ /* dependencies */ #define LML_FLG_TRC_UNUSED 0x04000000 /* trace unused dependencies */ #define LML_FLG_TRC_INIT 0x08000000 /* print .init order */ #define LML_MSK_TRC 0xfff00000 /* tracing mask */ /* * Possible Link_map transferable flags (Lm_list.lm_tflags), i.e., link-map * list flags that can be propagated to any new link-map list created. */ #define LML_TFLG_NOLAZYLD 0x00000001 /* lazy loading disabled */ #define LML_TFLG_NODIRECT 0x00000002 /* direct bindings disabled */ #define LML_TFLG_LOADFLTR 0x00000008 /* trigger filtee loading */ #define LML_TFLG_AUD_PREINIT 0x00100000 /* preinit (audit) exists */ #define LML_TFLG_AUD_OBJSEARCH 0x00200000 /* objsearch (audit) exists */ #define LML_TFLG_AUD_OBJOPEN 0x00400000 /* objopen (audit) exists */ #define LML_TFLG_AUD_OBJFILTER 0x00800000 /* objfilter (audit) exists */ #define LML_TFLG_AUD_OBJCLOSE 0x01000000 /* objclose (audit) exists */ #define LML_TFLG_AUD_SYMBIND 0x02000000 /* symbind (audit) exists */ #define LML_TFLG_AUD_PLTENTER 0x04000000 /* pltenter (audit) exists */ #define LML_TFLG_AUD_PLTEXIT 0x08000000 /* pltexit (audit) exists */ #define LML_TFLG_AUD_ACTIVITY 0x10000000 /* activity (audit) exists */ /* * NOTE: Audit flags have duplicated FLAGS1() values. If more audit flags are * added, update the FLAGS1() reservation FL1_AUD_RS_STR to FL1_AUD_RS_END * defined later. */ #define LML_TFLG_AUD_MASK 0xfff00000 /* audit interfaces mask */ /* * Information for dlopen(), dlsym(), and dlclose() on libraries linked by rtld. * Each shared object referred from a dlopen call has an associated group * handle structure returned that describes a group of one or more objects. */ typedef struct { Alist * gh_depends; /* handle dependency list */ Rt_map * gh_owner; /* handle owner and the link-map */ uint_t gh_refcnt; /* handle reference count */ uint_t gh_flags; /* handle flags */ } Grp_hdl; #define GPH_ZERO 0x0001 /* special handle for dlopen(0) */ #define GPH_LDSO 0x0002 /* special handle for ld.so.1 */ #define GPH_FIRST 0x0004 /* dlsym() can only use originating */ /* dependency */ #define GPH_PARENT 0x0008 /* assign caller as a parent */ #define GPH_FILTEE 0x0010 /* handle used to specify a filtee */ #define GPH_INITIAL 0x0020 /* handle is initialized */ #define GPH_STICKY 0x0040 /* handle is unreferenced, but should */ /* not trigger object removal */ /* * A group descriptor. A group handle (Grp_hdl) refers to a group of objects, * each object, and its relationship to the handle, is maintained within a * group descriptor. */ typedef struct { Rt_map * gd_depend; /* dependency */ uint_t gd_flags; /* dependency flags */ } Grp_desc; #define GPD_AVAIL 0x0001 /* dependency available to dlsym() */ #define GPD_ADDEPS 0x0002 /* dependencies of this dependency */ /* should be added to handle */ #define GPD_PARENT 0x0004 /* dependency is a parent */ #define GPD_FILTER 0x0008 /* dependency is our filter */ #define GPD_REMOVE 0x1000 /* descriptor is a candidate for */ /* removal from the group */ /* * Define threading structures. For compatibility with libthread (T1_VERSION 1 * and TI_VERSION 2) our locking structure is sufficient to hold a mutex or a * readers/writers lock. */ typedef struct { union { mutex_t l_mutex; rwlock_t l_rwlock; } u; } Rt_lock; typedef cond_t Rt_cond; /* * Define a dynamic section information descriptor. This parallels the entries * in the .dynamic section and holds auxiliary information to implement lazy * loading and filtee processing. */ typedef struct { uint_t di_flags; void *di_info; } Dyninfo; #define FLG_DI_STDFLTR 0x00001 /* .dynamic entry for DT_FILTER */ #define FLG_DI_AUXFLTR 0x00002 /* .dynamic entry for DT_AUXILIARY */ #define FLG_DI_SYMFLTR 0x00004 /* .dynamic entry for DT_SYMFILTER */ /* and DT_SYMAUXILIARY */ #define MSK_DI_FILTER 0x0000f /* mask for all filter possibilities */ #define FLG_DI_NEEDED 0x00010 /* entry represents a dependency */ #define FLG_DI_GROUP 0x00020 /* open dependency as a group */ #define FLG_DI_PROCESSD 0x00040 /* entry has been processed */ /* * Data Structure to track AVL tree for pathnames of objects * loaded into memory */ typedef struct { const char *fpn_name; /* object name */ Rt_map *fpn_lmp; /* object link-map */ avl_node_t fpn_avl; /* avl book-keeping (see SGSOFFSETOF) */ uint_t fpn_hash; /* object name hash value */ } FullpathNode; /* * Define a mapping structure, which is maintained to describe each mapping * of an object, ie. the text segment, data segment, bss segment, etc. */ typedef struct { caddr_t m_vaddr; /* mapping address */ size_t m_fsize; /* backing file size */ size_t m_msize; /* mapping size */ int m_perm; /* mapping permissions */ } Mmap; /* * Link-map definition. */ struct rt_map { /* * BEGIN: Exposed to rtld_db - don't move, don't delete */ Link_map rt_public; /* public data */ char *rt_pathname; /* full pathname of loaded object */ ulong_t rt_padstart; /* start of image (including padding) */ ulong_t rt_padimlen; /* size of image (including padding */ ulong_t rt_msize; /* total memory mapped */ uint_t rt_flags; /* state flags, see FLG below */ uint_t rt_flags1; /* state flags1, see FL1 below */ ulong_t rt_tlsmodid; /* TLS module id */ /* * END: Exposed to rtld_db - don't move, don't delete */ Alist *rt_alias; /* list of linked file names */ Alist *rt_fpnode; /* list of FullpathNode AVL nodes */ void (*rt_init)(); /* address of _init */ void (*rt_fini)(); /* address of _fini */ char *rt_runpath; /* LD_RUN_PATH and its equivalent */ Pnode *rt_runlist; /* Pnode structures */ Alist *rt_depends; /* list of dependencies */ Alist *rt_callers; /* list of callers */ Alist *rt_handles; /* dlopen handles */ Alist *rt_groups; /* groups we're a member of */ ulong_t rt_etext; /* etext address */ struct fct *rt_fct; /* file class table for this object */ Sym *(*rt_symintp)(); /* link map symbol interpreter */ void *rt_priv; /* private data, object type specific */ Lm_list *rt_list; /* link map list we belong to */ uint_t rt_objfltrndx; /* object filtees .dynamic index */ uint_t rt_symsfltrcnt; /* number of standard symbol filtees */ uint_t rt_symafltrcnt; /* number of auxiliary symbol filtees */ int rt_mode; /* usage mode, see RTLD mode flags */ int rt_sortval; /* temporary buffer to traverse graph */ uint_t rt_cycgroup; /* cyclic group */ dev_t rt_stdev; /* device id and inode number for .so */ ino_t rt_stino; /* multiple inclusion checks */ char *rt_origname; /* original pathname of loaded object */ size_t rt_dirsz; /* and its size */ Alist *rt_copy; /* list of copy relocations */ Audit_desc *rt_auditors; /* audit descriptor array */ Audit_info *rt_audinfo; /* audit information descriptor */ Syminfo *rt_syminfo; /* elf .syminfo section - here */ /* because it is checked in */ /* common code */ Addr *rt_initarray; /* .initarray table */ Addr *rt_finiarray; /* .finiarray table */ Addr *rt_preinitarray; /* .preinitarray table */ Mmap *rt_mmaps; /* array of mapping information */ uint_t rt_mmapcnt; /* and associated number */ uint_t rt_initarraysz; /* size of .initarray table */ uint_t rt_finiarraysz; /* size of .finiarray table */ uint_t rt_preinitarraysz; /* size of .preinitarray table */ Dyninfo *rt_dyninfo; /* .dynamic information descriptors */ uint_t rt_dyninfocnt; /* count of dyninfo entries */ uint_t rt_relacount; /* no. of RELATIVE relocations */ uint_t rt_idx; /* hold index within linkmap list */ uint_t rt_lazy; /* lazy dependencies pending */ Rt_cond *rt_condvar; /* variables */ Xword rt_hwcap; /* hardware capabilities */ Xword rt_sfcap; /* software capabilities */ thread_t rt_threadid; /* thread init/fini synchronization */ uint_t rt_cntl; /* link-map control list we belong to */ }; #ifdef _SYSCALL32 /* * Structure to allow 64-bit rtld_db to read 32-bit processes out of procfs. */ typedef struct rt_map32 { /* * BEGIN: Exposed to rtld_db - don't move, don't delete */ Link_map32 rt_public; uint32_t rt_pathname; uint32_t rt_padstart; uint32_t rt_padimlen; uint32_t rt_msize; uint32_t rt_flags; uint32_t rt_flags1; uint32_t rt_tlsmodid; /* * END: Exposed to rtld_db - don't move, don't delete */ uint32_t rt_alias; uint32_t rt_fpnode; uint32_t rt_init; uint32_t rt_fini; uint32_t rt_runpath; uint32_t rt_runlist; uint32_t rt_depends; uint32_t rt_callers; uint32_t rt_handles; uint32_t rt_groups; uint32_t rt_etext; uint32_t rt_fct; uint32_t rt_symintp; uint32_t rt_priv; uint32_t rt_list; uint32_t rt_objfltrndx; uint32_t rt_symsfltrcnt; uint32_t rt_symafltrcnt; int32_t rt_mode; int32_t rt_sortval; uint32_t rt_cycgroup; uint32_t rt_stdev; uint32_t rt_stino; uint32_t rt_origname; uint32_t rt_dirsz; uint32_t rt_copy; uint32_t rt_auditors; uint32_t rt_audinfo; uint32_t rt_syminfo; uint32_t rt_initarray; uint32_t rt_finiarray; uint32_t rt_preinitarray; uint32_t rt_mmaps; uint32_t rt_mmapcnt; uint32_t rt_initarraysz; uint32_t rt_finiarraysz; uint32_t rt_preinitarraysz; uint32_t rt_dyninfo; uint32_t rt_dyninfocnt; uint32_t rt_relacount; uint32_t rt_idx; uint32_t rt_lazy; uint32_t rt_condvar; uint32_t rt_hwcap; uint32_t rt_sfcap; uint32_t rt_threadid; uint32_t rt_cntl; } Rt_map32; #endif /* _SYSCALL32 */ /* * Link map state flags. */ /* * BEGIN: Exposed to rtld_db - don't move, don't delete */ #define FLG_RT_ISMAIN 0x00000001 /* object represents main executable */ #define FLG_RT_IMGALLOC 0x00000002 /* image is allocated (not mmap'ed) */ /* * Available for r_debug version >= RTLD_DB_VERSION5 */ #define FLG_RT_RELOCED 0x00000004 /* object has been relocated */ /* * END: Exposed to rtld_db - don't move, don't delete */ #define FLG_RT_SETGROUP 0x00000008 /* group establishment required */ #define FLG_RT_HWCAP 0x00000010 /* process $HWCAP expansion */ #define FLG_RT_OBJECT 0x00000020 /* object processing (ie. .o's) */ #define FLG_RT_NEWLOAD 0x00000040 /* object is newly loaded */ #define FLG_RT_NODUMP 0x00000080 /* object can't be dldump(3x)'ed */ #define FLG_RT_DELETE 0x00000100 /* object can be deleted */ #define FLG_RT_ANALYZED 0x00000200 /* object has been analyzed */ #define FLG_RT_INITDONE 0x00000400 /* objects .init has been completed */ #define FLG_RT_TRANS 0x00000800 /* object is acting as a translator */ #define FLG_RT_FIXED 0x00001000 /* image location is fixed */ #define FLG_RT_PRELOAD 0x00002000 /* object was preloaded */ #define FLG_RT_ALTER 0x00004000 /* alternative object used */ #define FLG_RT_LOADFLTR 0x00008000 /* trigger filtee loading */ #define FLG_RT_AUDIT 0x00010000 /* object is an auditor */ #define FLG_RT_MODESET 0x00020000 /* MODE() has been initialized */ #define FLG_RT_ANALZING 0x00040000 /* object is being analyzed */ #define FLG_RT_INITFRST 0x00080000 /* execute .init first */ #define FLG_RT_NOOPEN 0x00100000 /* dlopen() not allowed */ #define FLG_RT_FINICLCT 0x00200000 /* fini has been collected (tsort) */ #define FLG_RT_INITCALL 0x00400000 /* objects .init has been called */ #define FLG_RT_INTRPOSE 0x00800000 /* object is an INTERPOSER */ #define FLG_RT_DIRECT 0x01000000 /* object has DIRECT bindings enabled */ #define FLG_RT_SUNWBSS 0x02000000 /* object with PT_SUNWBSS, not mapped */ #define FLG_RT_MOVE 0x04000000 /* object needs move operation */ #define FLG_RT_DLSYM 0x08000000 /* dlsym in progress on object */ #define FLG_RT_REGSYMS 0x10000000 /* object has DT_REGISTER entries */ #define FLG_RT_INITCLCT 0x20000000 /* init has been collected (tsort) */ #define FLG_RT_HANDLE 0x40000000 /* generate a handle for this object */ #define FLG_RT_RELOCING 0x80000000 /* object is being relocated */ #define FL1_RT_COPYTOOK 0x00000001 /* copy relocation taken */ #define FL1_RT_RELATIVE 0x00000002 /* relative path expansion required */ #define FL1_RT_CONFSET 0x00000004 /* object was loaded by crle(1) */ #define FL1_RT_NODEFLIB 0x00000008 /* ignore default library search */ #define FL1_RT_ENDFILTE 0x00000010 /* filtee terminates filters search */ #define FL1_RT_DISPREL 0x00000020 /* object has *disp* relocation */ #define FL1_RT_TEXTREL 0x00000040 /* DT_TEXTREL set in object */ #define FL1_RT_INITWAIT 0x00000080 /* threads are waiting on .init */ #define FL1_RT_LDDSTUB 0x00000100 /* identify lddstub */ #define FL1_RT_NOINIFIN 0x00000200 /* no .init or .fini exists */ #define FL1_RT_USED 0x00000400 /* symbol referenced from this object */ #define FL1_RT_SYMBOLIC 0x00000800 /* DF_SYMBOLIC was set - use */ /* symbolic sym resolution */ #define FL1_RT_OBJSFLTR 0x00001000 /* object is acting as a standard */ #define FL1_RT_OBJAFLTR 0x00002000 /* or auxiliary filter */ #define FL1_RT_SYMSFLTR 0x00004000 /* symbol is acting as a standard */ #define FL1_RT_SYMAFLTR 0x00008000 /* or auxiliary filter */ #define MSK_RT_FILTER 0x0000f000 /* mask for all filter possibilites */ /* * The following range of bits are reserved to hold LML_TFLG_AUD_ values * (although the definitions themselves aren't used anywhere). */ #define FL1_AUD_RS_STR 0x00100000 /* RESERVATION start for AU flags */ #define FL1_AUD_RS_END 0x80000000 /* RESERVATION end for AU flags */ /* * Flags for the tls_modactivity() routine */ #define TM_FLG_MODADD 0x01 /* call tls_modadd() interface */ #define TM_FLG_MODREM 0x02 /* call tls_modrem() interface */ /* * Macros for getting to link_map data. */ #define ADDR(X) ((X)->rt_public.l_addr) #define NAME(X) ((X)->rt_public.l_name) #define DYN(X) ((X)->rt_public.l_ld) #define NEXT(X) ((X)->rt_public.l_next) #define PREV(X) ((X)->rt_public.l_prev) #define REFNAME(X) ((X)->rt_public.l_refname) /* * Macros for getting to linker private data. */ #define PATHNAME(X) ((X)->rt_pathname) #define PADSTART(X) ((X)->rt_padstart) #define PADIMLEN(X) ((X)->rt_padimlen) #define MSIZE(X) ((X)->rt_msize) #define FLAGS(X) ((X)->rt_flags) #define FLAGS1(X) ((X)->rt_flags1) #define TLSMODID(X) ((X)->rt_tlsmodid) #define ALIAS(X) ((X)->rt_alias) #define FPNODE(X) ((X)->rt_fpnode) #define INIT(X) ((X)->rt_init) #define FINI(X) ((X)->rt_fini) #define RPATH(X) ((X)->rt_runpath) #define RLIST(X) ((X)->rt_runlist) #define DEPENDS(X) ((X)->rt_depends) #define CALLERS(X) ((X)->rt_callers) #define HANDLES(X) ((X)->rt_handles) #define GROUPS(X) ((X)->rt_groups) #define ETEXT(X) ((X)->rt_etext) #define FCT(X) ((X)->rt_fct) #define SYMINTP(X) ((X)->rt_symintp) #define LIST(X) ((X)->rt_list) #define OBJFLTRNDX(X) ((X)->rt_objfltrndx) #define SYMSFLTRCNT(X) ((X)->rt_symsfltrcnt) #define SYMAFLTRCNT(X) ((X)->rt_symafltrcnt) #define MODE(X) ((X)->rt_mode) #define SORTVAL(X) ((X)->rt_sortval) #define CYCGROUP(X) ((X)->rt_cycgroup) #define STDEV(X) ((X)->rt_stdev) #define STINO(X) ((X)->rt_stino) #define ORIGNAME(X) ((X)->rt_origname) #define DIRSZ(X) ((X)->rt_dirsz) #define COPY(X) ((X)->rt_copy) #define AUDITORS(X) ((X)->rt_auditors) #define AUDINFO(X) ((X)->rt_audinfo) #define SYMINFO(X) ((X)->rt_syminfo) #define INITARRAY(X) ((X)->rt_initarray) #define FINIARRAY(X) ((X)->rt_finiarray) #define PREINITARRAY(X) ((X)->rt_preinitarray) #define MMAPS(X) ((X)->rt_mmaps) #define MMAPCNT(X) ((X)->rt_mmapcnt) #define INITARRAYSZ(X) ((X)->rt_initarraysz) #define FINIARRAYSZ(X) ((X)->rt_finiarraysz) #define PREINITARRAYSZ(X) ((X)->rt_preinitarraysz) #define DYNINFO(X) ((X)->rt_dyninfo) #define DYNINFOCNT(X) ((X)->rt_dyninfocnt) #define RELACOUNT(X) ((X)->rt_relacount) #define IDX(X) ((X)->rt_idx) #define LAZY(X) ((X)->rt_lazy) #define CONDVAR(X) ((X)->rt_condvar) #define CNTL(X) ((X)->rt_cntl) #define HWCAP(X) ((X)->rt_hwcap) #define SFCAP(X) ((X)->rt_sfcap) #define THREADID(X) ((X)->rt_threadid) /* * Flags for tsorting. */ #define RT_SORT_FWD 0x01 /* topological sort (.fini) */ #define RT_SORT_REV 0x02 /* reverse topological sort (.init) */ #define RT_SORT_DELETE 0x10 /* process FLG_RT_DELNEED objects */ /* only (called via dlclose()) */ /* * Flags for lookup_sym (and hence find_sym) routines. */ #define LKUP_DEFT 0x0000 /* simple lookup request */ #define LKUP_SPEC 0x0001 /* special ELF lookup (allows address */ /* resolutions to plt[] entries) */ #define LKUP_LDOT 0x0002 /* indicates the original A_OUT */ /* symbol had a leading `.' */ #define LKUP_FIRST 0x0004 /* lookup symbol in first link map */ /* only */ #define LKUP_COPY 0x0008 /* lookup symbol for a COPY reloc, do */ /* not bind to symbol at head */ #define LKUP_ALLCNTLIST 0x0010 /* lookup symbol in all control lists */ #define LKUP_SELF 0x0020 /* lookup symbol in ourself - undef */ /* is valid */ #define LKUP_WEAK 0x0040 /* relocation reference is weak */ #define LKUP_NEXT 0x0080 /* request originates from RTLD_NEXT */ #define LKUP_NODESCENT 0x0100 /* don't descend through dependencies */ #define LKUP_NOFALBACK 0x0200 /* don't fall back to loading */ /* pending lazy dependencies */ #define LKUP_DIRECT 0x0400 /* direct binding request */ #define LKUP_SYMNDX 0x0800 /* establish symbol index */ /* * Data structure for calling lookup_sym() */ typedef struct { const char *sl_name; /* symbol name */ Rt_map *sl_cmap; /* callers link-map */ Rt_map *sl_imap; /* initial link-map to search */ ulong_t sl_hash; /* symbol hash value */ ulong_t sl_rsymndx; /* referencing reloc symndx */ uint_t sl_flags; /* lookup flags */ } Slookup; typedef enum { PLT_T_NONE = 0, PLT_T_21D, PLT_T_24D, PLT_T_U32, PLT_T_U44, PLT_T_FULL, PLT_T_FAR, PLT_T_NUM /* Must be last */ } Pltbindtype; /* * Prototypes. */ extern Lm_list lml_main; /* main's link map list */ extern Lm_list lml_rtld; /* rtld's link map list */ extern Lm_list *lml_list[]; extern int do_reloc(uchar_t, uchar_t *, Xword *, const char *, const char *); extern Pltbindtype elf_plt_write(uintptr_t, uintptr_t, void *, uintptr_t, Xword); extern void eprintf(Error, const char *, ...); extern Rt_map *is_so_loaded(Lm_list *, const char *, int); extern Sym *lookup_sym(Slookup *, Rt_map **, uint_t *); extern int rt_dldump(Rt_map *, const char *, int, Addr); #ifdef __cplusplus } #endif #endif /* _RTLD_H */