1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright (c) 1988 AT&T 24 * All Rights Reserved 25 * 26 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 27 * Use is subject to license terms. 28 */ 29 30 #ifndef _SYS_LINK_H 31 #define _SYS_LINK_H 32 33 #pragma ident "%Z%%M% %I% %E% SMI" 34 35 #ifndef _ASM 36 #include <sys/types.h> 37 #include <sys/elftypes.h> 38 #endif 39 40 #ifdef __cplusplus 41 extern "C" { 42 #endif 43 44 /* 45 * Communication structures for the runtime linker. 46 */ 47 48 /* 49 * The following data structure provides a self-identifying union consisting 50 * of a tag from a known list and a value. 51 */ 52 #ifndef _ASM 53 typedef struct { 54 Elf32_Sword d_tag; /* how to interpret value */ 55 union { 56 Elf32_Word d_val; 57 Elf32_Addr d_ptr; 58 Elf32_Off d_off; 59 } d_un; 60 } Elf32_Dyn; 61 62 #if defined(_LP64) || defined(_LONGLONG_TYPE) 63 typedef struct { 64 Elf64_Xword d_tag; /* how to interpret value */ 65 union { 66 Elf64_Xword d_val; 67 Elf64_Addr d_ptr; 68 } d_un; 69 } Elf64_Dyn; 70 #endif /* defined(_LP64) || defined(_LONGLONG_TYPE) */ 71 #endif /* _ASM */ 72 73 /* 74 * Tag values 75 */ 76 #define DT_NULL 0 /* last entry in list */ 77 #define DT_NEEDED 1 /* a needed object */ 78 #define DT_PLTRELSZ 2 /* size of relocations for the PLT */ 79 #define DT_PLTGOT 3 /* addresses used by procedure linkage table */ 80 #define DT_HASH 4 /* hash table */ 81 #define DT_STRTAB 5 /* string table */ 82 #define DT_SYMTAB 6 /* symbol table */ 83 #define DT_RELA 7 /* addr of relocation entries */ 84 #define DT_RELASZ 8 /* size of relocation table */ 85 #define DT_RELAENT 9 /* base size of relocation entry */ 86 #define DT_STRSZ 10 /* size of string table */ 87 #define DT_SYMENT 11 /* size of symbol table entry */ 88 #define DT_INIT 12 /* _init addr */ 89 #define DT_FINI 13 /* _fini addr */ 90 #define DT_SONAME 14 /* name of this shared object */ 91 #define DT_RPATH 15 /* run-time search path */ 92 #define DT_SYMBOLIC 16 /* shared object linked -Bsymbolic */ 93 #define DT_REL 17 /* addr of relocation entries */ 94 #define DT_RELSZ 18 /* size of relocation table */ 95 #define DT_RELENT 19 /* base size of relocation entry */ 96 #define DT_PLTREL 20 /* relocation type for PLT entry */ 97 #define DT_DEBUG 21 /* pointer to r_debug structure */ 98 #define DT_TEXTREL 22 /* text relocations remain for this object */ 99 #define DT_JMPREL 23 /* pointer to the PLT relocation entries */ 100 #define DT_BIND_NOW 24 /* perform all relocations at load of object */ 101 #define DT_INIT_ARRAY 25 /* pointer to .initarray */ 102 #define DT_FINI_ARRAY 26 /* pointer to .finiarray */ 103 #define DT_INIT_ARRAYSZ 27 /* size of .initarray */ 104 #define DT_FINI_ARRAYSZ 28 /* size of .finiarray */ 105 #define DT_RUNPATH 29 /* run-time search path */ 106 #define DT_FLAGS 30 /* state flags - see DF_* */ 107 108 /* 109 * DT_* encoding rules: The value of each dynamic tag determines the 110 * interpretation of the d_un union. This convention provides for simpler 111 * interpretation of dynamic tags by external tools. A tag whose value 112 * is an even number indicates a dynamic section entry that uses d_ptr. 113 * A tag whose value is an odd number indicates a dynamic section entry 114 * that uses d_val, or that uses neither d_ptr nor d_val. 115 * 116 * There are exceptions to the above rule: 117 * - Tags with values that are less than DT_ENCODING. 118 * - Tags with values that fall between DT_LOOS and DT_SUNW_ENCODING 119 * - Tags with values that fall between DT_HIOS and DT_LOPROC 120 * 121 * Third party tools must handle these exception ranges explicitly 122 * on an item by item basis. 123 */ 124 #define DT_ENCODING 32 /* positive tag DT_* encoding rules */ 125 /* start after this */ 126 #define DT_PREINIT_ARRAY 32 /* pointer to .preinitarray segment */ 127 #define DT_PREINIT_ARRAYSZ 33 /* size of .preinitarray segment */ 128 129 #define DT_MAXPOSTAGS 34 /* number of positive tags */ 130 131 /* 132 * DT_* encoding rules do not apply between DT_LOOS and DT_SUNW_ENCODING 133 */ 134 #define DT_LOOS 0x6000000d /* OS specific range */ 135 #define DT_SUNW_AUXILIARY 0x6000000d /* symbol auxiliary name */ 136 #define DT_SUNW_RTLDINF 0x6000000e /* ld.so.1 info (private) */ 137 #define DT_SUNW_FILTER 0x6000000f /* symbol filter name */ 138 #define DT_SUNW_CAP 0x60000010 /* hardware/software */ 139 /* capabilities */ 140 #define DT_SUNW_SYMTAB 0x60000011 /* symtab with local fcn */ 141 /* symbols immediately */ 142 /* preceding DT_SYMTAB */ 143 #define DT_SUNW_SYMSZ 0x60000012 /* Size of SUNW_SYMTAB table */ 144 145 /* 146 * DT_* encoding rules apply between DT_SUNW_ENCODING and DT_HIOS 147 */ 148 #define DT_SUNW_ENCODING 0x60000013 /* DT_* encoding rules resume */ 149 /* after this */ 150 #define DT_SUNW_SORTENT 0x60000013 /* sizeof [SYM|TLS]SORT entrt */ 151 #define DT_SUNW_SYMSORT 0x60000014 /* sym indices sorted by addr */ 152 #define DT_SUNW_SYMSORTSZ 0x60000015 /* size of SUNW_SYMSORT */ 153 #define DT_SUNW_TLSSORT 0x60000016 /* tls sym ndx sort by offset */ 154 #define DT_SUNW_TLSSORTSZ 0x60000017 /* size of SUNW_TLSSORT */ 155 156 #define DT_SUNW_STRPAD 0x60000019 /* # of unused bytes at the */ 157 /* end of dynstr */ 158 #define DT_SUNW_LDMACH 0x6000001b /* EM_ machine code of linker */ 159 /* that produced object */ 160 161 /* 162 * DT_* encoding rules do not apply between DT_HIOS and DT_LOPROC 163 */ 164 #define DT_HIOS 0x6ffff000 165 166 /* 167 * The following values have been deprecated and remain here to allow 168 * compatibility with older binaries. 169 */ 170 #define DT_DEPRECATED_SPARC_REGISTER 0x7000001 171 172 /* 173 * DT_* entries which fall between DT_VALRNGHI & DT_VALRNGLO use the 174 * Dyn.d_un.d_val field of the Elf*_Dyn structure. 175 */ 176 #define DT_VALRNGLO 0x6ffffd00 177 #define DT_CHECKSUM 0x6ffffdf8 /* elf checksum */ 178 #define DT_PLTPADSZ 0x6ffffdf9 /* pltpadding size */ 179 #define DT_MOVEENT 0x6ffffdfa /* move table entry size */ 180 #define DT_MOVESZ 0x6ffffdfb /* move table size */ 181 #define DT_FEATURE_1 0x6ffffdfc /* feature holder */ 182 #define DT_POSFLAG_1 0x6ffffdfd /* flags for DT_* entries, effecting */ 183 /* the following DT_* entry. */ 184 /* See DF_P1_* definitions */ 185 #define DT_SYMINSZ 0x6ffffdfe /* syminfo table size (in bytes) */ 186 #define DT_SYMINENT 0x6ffffdff /* syminfo entry size (in bytes) */ 187 #define DT_VALRNGHI 0x6ffffdff 188 189 /* 190 * DT_* entries which fall between DT_ADDRRNGHI & DT_ADDRRNGLO use the 191 * Dyn.d_un.d_ptr field of the Elf*_Dyn structure. 192 * 193 * If any adjustment is made to the ELF object after it has been 194 * built, these entries will need to be adjusted. 195 */ 196 #define DT_ADDRRNGLO 0x6ffffe00 197 #define DT_CONFIG 0x6ffffefa /* configuration information */ 198 #define DT_DEPAUDIT 0x6ffffefb /* dependency auditing */ 199 #define DT_AUDIT 0x6ffffefc /* object auditing */ 200 #define DT_PLTPAD 0x6ffffefd /* pltpadding (sparcv9) */ 201 #define DT_MOVETAB 0x6ffffefe /* move table */ 202 #define DT_SYMINFO 0x6ffffeff /* syminfo table */ 203 #define DT_ADDRRNGHI 0x6ffffeff 204 205 /* 206 * The following DT_* entries should have been assigned within one of the 207 * DT_* ranges, but existed before such ranges had been established. 208 */ 209 #define DT_VERSYM 0x6ffffff0 /* version symbol table - unused by */ 210 /* Solaris (see libld/update.c) */ 211 212 #define DT_RELACOUNT 0x6ffffff9 /* number of RELATIVE relocations */ 213 #define DT_RELCOUNT 0x6ffffffa /* number of RELATIVE relocations */ 214 #define DT_FLAGS_1 0x6ffffffb /* state flags - see DF_1_* defs */ 215 #define DT_VERDEF 0x6ffffffc /* version definition table and */ 216 #define DT_VERDEFNUM 0x6ffffffd /* associated no. of entries */ 217 #define DT_VERNEED 0x6ffffffe /* version needed table and */ 218 #define DT_VERNEEDNUM 0x6fffffff /* associated no. of entries */ 219 220 /* 221 * DT_* entries between DT_HIPROC and DT_LOPROC are reserved for processor 222 * specific semantics. 223 * 224 * DT_* encoding rules apply to all tag values larger than DT_LOPROC. 225 */ 226 #define DT_LOPROC 0x70000000 /* processor specific range */ 227 #define DT_AUXILIARY 0x7ffffffd /* shared library auxiliary name */ 228 #define DT_USED 0x7ffffffe /* ignored - same as needed */ 229 #define DT_FILTER 0x7fffffff /* shared library filter name */ 230 #define DT_HIPROC 0x7fffffff 231 232 233 /* 234 * Values for DT_FLAGS 235 */ 236 #define DF_ORIGIN 0x00000001 /* ORIGIN processing required */ 237 #define DF_SYMBOLIC 0x00000002 /* symbolic bindings in effect */ 238 #define DF_TEXTREL 0x00000004 /* text relocations remain */ 239 #define DF_BIND_NOW 0x00000008 /* process all relocations */ 240 #define DF_STATIC_TLS 0x00000010 /* obj. contains static TLS refs */ 241 242 /* 243 * Values for the DT_POSFLAG_1 .dynamic entry. 244 * These values only affect the following DT_* entry. 245 */ 246 #define DF_P1_LAZYLOAD 0x00000001 /* following object is to be */ 247 /* lazy loaded */ 248 #define DF_P1_GROUPPERM 0x00000002 /* following object's symbols are */ 249 /* not available for general */ 250 /* symbol bindings. */ 251 /* 252 * Values for the DT_FLAGS_1 .dynamic entry. 253 */ 254 #define DF_1_NOW 0x00000001 /* set RTLD_NOW for this object */ 255 #define DF_1_GLOBAL 0x00000002 /* set RTLD_GLOBAL for this object */ 256 #define DF_1_GROUP 0x00000004 /* set RTLD_GROUP for this object */ 257 #define DF_1_NODELETE 0x00000008 /* set RTLD_NODELETE for this object */ 258 #define DF_1_LOADFLTR 0x00000010 /* trigger filtee loading at runtime */ 259 #define DF_1_INITFIRST 0x00000020 /* set RTLD_INITFIRST for this object */ 260 #define DF_1_NOOPEN 0x00000040 /* set RTLD_NOOPEN for this object */ 261 #define DF_1_ORIGIN 0x00000080 /* ORIGIN processing required */ 262 #define DF_1_DIRECT 0x00000100 /* direct binding enabled */ 263 #define DF_1_TRANS 0x00000200 264 #define DF_1_INTERPOSE 0x00000400 /* object is an interposer */ 265 #define DF_1_NODEFLIB 0x00000800 /* ignore default library search path */ 266 #define DF_1_NODUMP 0x00001000 /* object can't be dldump(3x)'ed */ 267 #define DF_1_CONFALT 0x00002000 /* configuration alternative created */ 268 #define DF_1_ENDFILTEE 0x00004000 /* filtee terminates filters search */ 269 #define DF_1_DISPRELDNE 0x00008000 /* disp reloc applied at build time */ 270 #define DF_1_DISPRELPND 0x00010000 /* disp reloc applied at run-time */ 271 #define DF_1_NODIRECT 0x00020000 /* object contains symbols that */ 272 /* cannot be directly bound to */ 273 #define DF_1_IGNMULDEF 0x00040000 /* internal: krtld ignore muldefs */ 274 #define DF_1_NOKSYMS 0x00080000 /* internal: don't export object's */ 275 /* symbols via /dev/ksyms */ 276 #define DF_1_NOHDR 0x00100000 /* mapfile ?N:1st segment mapping */ 277 /* omits ELF & program headers */ 278 #define DF_1_EDITED 0x00200000 /* object has been modified since */ 279 /* being built by 'ld' */ 280 #define DF_1_NORELOC 0x00400000 /* internal: unrelocated object */ 281 #define DF_1_SYMINTPOSE 0x00800000 /* individual symbol interposers */ 282 /* exist */ 283 #define DF_1_GLOBAUDIT 0x01000000 /* establish global auditing */ 284 #define DF_1_SINGLETON 0x02000000 /* singleton symbols exist */ 285 286 /* 287 * Values set to DT_FEATURE_1 tag's d_val. 288 */ 289 #define DTF_1_PARINIT 0x00000001 /* partially initialization feature */ 290 #define DTF_1_CONFEXP 0x00000002 /* configuration file expected */ 291 292 293 /* 294 * Version structures. There are three types of version structure: 295 * 296 * o A definition of the versions within the image itself. 297 * Each version definition is assigned a unique index (starting from 298 * VER_NDX_BGNDEF) which is used to cross-reference symbols associated to 299 * the version. Each version can have one or more dependencies on other 300 * version definitions within the image. The version name, and any 301 * dependency names, are specified in the version definition auxiliary 302 * array. Version definition entries require a version symbol index table. 303 * 304 * o A version requirement on a needed dependency. Each needed entry 305 * specifies the shared object dependency (as specified in DT_NEEDED). 306 * One or more versions required from this dependency are specified in the 307 * version needed auxiliary array. 308 * 309 * o A version symbol index table. Each symbol indexes into this array 310 * to determine its version index. Index values of VER_NDX_BGNDEF or 311 * greater indicate the version definition to which a symbol is associated. 312 * (the size of a symbol index entry is recorded in the sh_info field). 313 */ 314 #ifndef _ASM 315 316 typedef struct { /* Version Definition Structure. */ 317 Elf32_Half vd_version; /* this structures version revision */ 318 Elf32_Half vd_flags; /* version information */ 319 Elf32_Half vd_ndx; /* version index */ 320 Elf32_Half vd_cnt; /* no. of associated aux entries */ 321 Elf32_Word vd_hash; /* version name hash value */ 322 Elf32_Word vd_aux; /* no. of bytes from start of this */ 323 /* verdef to verdaux array */ 324 Elf32_Word vd_next; /* no. of bytes from start of this */ 325 } Elf32_Verdef; /* verdef to next verdef entry */ 326 327 typedef struct { /* Verdef Auxiliary Structure. */ 328 Elf32_Word vda_name; /* first element defines the version */ 329 /* name. Additional entries */ 330 /* define dependency names. */ 331 Elf32_Word vda_next; /* no. of bytes from start of this */ 332 } Elf32_Verdaux; /* verdaux to next verdaux entry */ 333 334 335 typedef struct { /* Version Requirement Structure. */ 336 Elf32_Half vn_version; /* this structures version revision */ 337 Elf32_Half vn_cnt; /* no. of associated aux entries */ 338 Elf32_Word vn_file; /* name of needed dependency (file) */ 339 Elf32_Word vn_aux; /* no. of bytes from start of this */ 340 /* verneed to vernaux array */ 341 Elf32_Word vn_next; /* no. of bytes from start of this */ 342 } Elf32_Verneed; /* verneed to next verneed entry */ 343 344 typedef struct { /* Verneed Auxiliary Structure. */ 345 Elf32_Word vna_hash; /* version name hash value */ 346 Elf32_Half vna_flags; /* version information */ 347 Elf32_Half vna_other; 348 Elf32_Word vna_name; /* version name */ 349 Elf32_Word vna_next; /* no. of bytes from start of this */ 350 } Elf32_Vernaux; /* vernaux to next vernaux entry */ 351 352 typedef Elf32_Half Elf32_Versym; /* Version symbol index array */ 353 354 typedef struct { 355 Elf32_Half si_boundto; /* direct bindings - symbol bound to */ 356 Elf32_Half si_flags; /* per symbol flags */ 357 } Elf32_Syminfo; 358 359 360 #if defined(_LP64) || defined(_LONGLONG_TYPE) 361 typedef struct { 362 Elf64_Half vd_version; /* this structures version revision */ 363 Elf64_Half vd_flags; /* version information */ 364 Elf64_Half vd_ndx; /* version index */ 365 Elf64_Half vd_cnt; /* no. of associated aux entries */ 366 Elf64_Word vd_hash; /* version name hash value */ 367 Elf64_Word vd_aux; /* no. of bytes from start of this */ 368 /* verdef to verdaux array */ 369 Elf64_Word vd_next; /* no. of bytes from start of this */ 370 } Elf64_Verdef; /* verdef to next verdef entry */ 371 372 typedef struct { 373 Elf64_Word vda_name; /* first element defines the version */ 374 /* name. Additional entries */ 375 /* define dependency names. */ 376 Elf64_Word vda_next; /* no. of bytes from start of this */ 377 } Elf64_Verdaux; /* verdaux to next verdaux entry */ 378 379 typedef struct { 380 Elf64_Half vn_version; /* this structures version revision */ 381 Elf64_Half vn_cnt; /* no. of associated aux entries */ 382 Elf64_Word vn_file; /* name of needed dependency (file) */ 383 Elf64_Word vn_aux; /* no. of bytes from start of this */ 384 /* verneed to vernaux array */ 385 Elf64_Word vn_next; /* no. of bytes from start of this */ 386 } Elf64_Verneed; /* verneed to next verneed entry */ 387 388 typedef struct { 389 Elf64_Word vna_hash; /* version name hash value */ 390 Elf64_Half vna_flags; /* version information */ 391 Elf64_Half vna_other; 392 Elf64_Word vna_name; /* version name */ 393 Elf64_Word vna_next; /* no. of bytes from start of this */ 394 } Elf64_Vernaux; /* vernaux to next vernaux entry */ 395 396 typedef Elf64_Half Elf64_Versym; 397 398 typedef struct { 399 Elf64_Half si_boundto; /* direct bindings - symbol bound to */ 400 Elf64_Half si_flags; /* per symbol flags */ 401 } Elf64_Syminfo; 402 #endif /* defined(_LP64) || defined(_LONGLONG_TYPE) */ 403 404 #endif /* _ASM */ 405 406 /* 407 * Versym symbol index values. Values greater than VER_NDX_GLOBAL 408 * and less then VER_NDX_LORESERVE associate symbols with user 409 * specified version descriptors. 410 */ 411 #define VER_NDX_LOCAL 0 /* symbol is local */ 412 #define VER_NDX_GLOBAL 1 /* symbol is global and assigned to */ 413 /* the base version */ 414 #define VER_NDX_LORESERVE 0xff00 /* beginning of RESERVED entries */ 415 #define VER_NDX_ELIMINATE 0xff01 /* symbol is to be eliminated */ 416 417 /* 418 * Verdef and Verneed (via Veraux) flags values. 419 */ 420 #define VER_FLG_BASE 0x1 /* version definition of file itself */ 421 #define VER_FLG_WEAK 0x2 /* weak version identifier */ 422 423 /* 424 * Verdef version values. 425 */ 426 #define VER_DEF_NONE 0 /* Ver_def version */ 427 #define VER_DEF_CURRENT 1 428 #define VER_DEF_NUM 2 429 430 /* 431 * Verneed version values. 432 */ 433 #define VER_NEED_NONE 0 /* Ver_need version */ 434 #define VER_NEED_CURRENT 1 435 #define VER_NEED_NUM 2 436 437 438 /* 439 * Syminfo flag values 440 */ 441 #define SYMINFO_FLG_DIRECT 0x0001 /* symbol ref has direct association */ 442 /* to object containing defn. */ 443 #define SYMINFO_FLG_PASSTHRU 0x0002 /* ignored - see SYMINFO_FLG_FILTER */ 444 #define SYMINFO_FLG_COPY 0x0004 /* symbol is a copy-reloc */ 445 #define SYMINFO_FLG_LAZYLOAD 0x0008 /* object containing defn. should be */ 446 /* lazily-loaded */ 447 #define SYMINFO_FLG_DIRECTBIND 0x0010 /* ref should be bound directly to */ 448 /* object containing defn. */ 449 #define SYMINFO_FLG_NOEXTDIRECT 0x0020 /* don't let an external reference */ 450 /* directly bind to this symbol */ 451 #define SYMINFO_FLG_FILTER 0x0002 /* symbol ref is associated to a */ 452 #define SYMINFO_FLG_AUXILIARY 0x0040 /* standard or auxiliary filter */ 453 #define SYMINFO_FLG_INTERPOSE 0x0080 /* symbol defines an interposer */ 454 455 /* 456 * Syminfo.si_boundto values. 457 */ 458 #define SYMINFO_BT_SELF 0xffff /* symbol bound to self */ 459 #define SYMINFO_BT_PARENT 0xfffe /* symbol bound to parent */ 460 #define SYMINFO_BT_NONE 0xfffd /* no special symbol binding */ 461 #define SYMINFO_BT_EXTERN 0xfffc /* symbol defined as external */ 462 #define SYMINFO_BT_LOWRESERVE 0xff00 /* beginning of reserved entries */ 463 464 /* 465 * Syminfo version values. 466 */ 467 #define SYMINFO_NONE 0 /* Syminfo version */ 468 #define SYMINFO_CURRENT 1 469 #define SYMINFO_NUM 2 470 471 472 /* 473 * Public structure defined and maintained within the runtime linker 474 */ 475 #ifndef _ASM 476 477 typedef struct link_map Link_map; 478 479 struct link_map { 480 unsigned long l_addr; /* address at which object is mapped */ 481 char *l_name; /* full name of loaded object */ 482 #ifdef _LP64 483 Elf64_Dyn *l_ld; /* dynamic structure of object */ 484 #else 485 Elf32_Dyn *l_ld; /* dynamic structure of object */ 486 #endif 487 Link_map *l_next; /* next link object */ 488 Link_map *l_prev; /* previous link object */ 489 char *l_refname; /* filters reference name */ 490 }; 491 492 #ifdef _SYSCALL32 493 typedef struct link_map32 Link_map32; 494 495 struct link_map32 { 496 Elf32_Word l_addr; 497 Elf32_Addr l_name; 498 Elf32_Addr l_ld; 499 Elf32_Addr l_next; 500 Elf32_Addr l_prev; 501 Elf32_Addr l_refname; 502 }; 503 #endif 504 505 typedef enum { 506 RT_CONSISTENT, 507 RT_ADD, 508 RT_DELETE 509 } r_state_e; 510 511 typedef enum { 512 RD_FL_NONE = 0, /* no flags */ 513 RD_FL_ODBG = (1<<0), /* old style debugger present */ 514 RD_FL_DBG = (1<<1) /* debugging enabled */ 515 } rd_flags_e; 516 517 518 519 /* 520 * Debugging events enabled inside of the runtime linker. To 521 * access these events see the librtld_db interface. 522 */ 523 typedef enum { 524 RD_NONE = 0, /* no event */ 525 RD_PREINIT, /* the Initial rendezvous before .init */ 526 RD_POSTINIT, /* the Second rendezvous after .init */ 527 RD_DLACTIVITY /* a dlopen or dlclose has happened */ 528 } rd_event_e; 529 530 struct r_debug { 531 int r_version; /* debugging info version no. */ 532 Link_map *r_map; /* address of link_map */ 533 unsigned long r_brk; /* address of update routine */ 534 r_state_e r_state; 535 unsigned long r_ldbase; /* base addr of ld.so */ 536 Link_map *r_ldsomap; /* address of ld.so.1's link map */ 537 rd_event_e r_rdevent; /* debug event */ 538 rd_flags_e r_flags; /* misc flags. */ 539 }; 540 541 #ifdef _SYSCALL32 542 struct r_debug32 { 543 Elf32_Word r_version; /* debugging info version no. */ 544 Elf32_Addr r_map; /* address of link_map */ 545 Elf32_Word r_brk; /* address of update routine */ 546 r_state_e r_state; 547 Elf32_Word r_ldbase; /* base addr of ld.so */ 548 Elf32_Addr r_ldsomap; /* address of ld.so.1's link map */ 549 rd_event_e r_rdevent; /* debug event */ 550 rd_flags_e r_flags; /* misc flags. */ 551 }; 552 #endif 553 554 555 #define R_DEBUG_VERSION 2 /* current r_debug version */ 556 #endif /* _ASM */ 557 558 /* 559 * Attribute/value structures used to bootstrap ELF-based dynamic linker. 560 */ 561 #ifndef _ASM 562 typedef struct { 563 Elf32_Sword eb_tag; /* what this one is */ 564 union { /* possible values */ 565 Elf32_Word eb_val; 566 Elf32_Addr eb_ptr; 567 Elf32_Off eb_off; 568 } eb_un; 569 } Elf32_Boot; 570 571 #if defined(_LP64) || defined(_LONGLONG_TYPE) 572 typedef struct { 573 Elf64_Xword eb_tag; /* what this one is */ 574 union { /* possible values */ 575 Elf64_Xword eb_val; 576 Elf64_Addr eb_ptr; 577 Elf64_Off eb_off; 578 } eb_un; 579 } Elf64_Boot; 580 #endif /* defined(_LP64) || defined(_LONGLONG_TYPE) */ 581 #endif /* _ASM */ 582 583 /* 584 * Attributes 585 */ 586 #define EB_NULL 0 /* (void) last entry */ 587 #define EB_DYNAMIC 1 /* (*) dynamic structure of subject */ 588 #define EB_LDSO_BASE 2 /* (caddr_t) base address of ld.so */ 589 #define EB_ARGV 3 /* (caddr_t) argument vector */ 590 #define EB_ENVP 4 /* (char **) environment strings */ 591 #define EB_AUXV 5 /* (auxv_t *) auxiliary vector */ 592 #define EB_DEVZERO 6 /* (int) fd for /dev/zero */ 593 #define EB_PAGESIZE 7 /* (int) page size */ 594 #define EB_MAX 8 /* number of "EBs" */ 595 #define EB_MAX_SIZE32 64 /* size in bytes, _ILP32 */ 596 #define EB_MAX_SIZE64 128 /* size in bytes, _LP64 */ 597 598 599 #ifndef _ASM 600 601 #ifdef __STDC__ 602 603 /* 604 * Concurrency communication structure for libc callbacks. 605 */ 606 extern void _ld_libc(void *); 607 #else /* __STDC__ */ 608 extern void _ld_libc(); 609 #endif /* __STDC__ */ 610 611 #pragma unknown_control_flow(_ld_libc) 612 #endif /* _ASM */ 613 614 #ifdef __cplusplus 615 } 616 #endif 617 618 #endif /* _SYS_LINK_H */ 619