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 2007 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #ifndef _ELFEDIT_H 28 #define _ELFEDIT_H 29 30 #pragma ident "%Z%%M% %I% %E% SMI" 31 32 #include <stdio.h> 33 #include <stdlib.h> 34 #include <sys/types.h> 35 #include <libelf.h> 36 #include <stdarg.h> 37 38 /* The following are here to support use of elfedit_msg() */ 39 #include <sys/machelf.h> /* EC_ macros */ 40 #include <libintl.h> 41 42 #ifdef __cplusplus 43 extern "C" { 44 #endif 45 46 47 /* 48 * elfedit uses elfedit_printf() to produce generic output to stdout. 49 * elfedit_msg() is used to produce error message, or specific types 50 * of terse informational messages: 51 * 52 * ELFEDIT_MSG_ERR: 53 * Issues an error to stderr. elfedit_msg() does not return 54 * to the caller. Control returns to the outer loop in 55 * interactive use. elfedit exits in non-interactive use. 56 * 57 * ELFEDIT_MSG_FATAL: 58 * Issues an error to stderr. elfedit_msg() exits the process, 59 * and does not return to the caller. 60 * 61 * ELFEDIT_MSG_USAGE: 62 * Issues an elfedit usage message to stderr, and 63 * returns to the caller. 64 * 65 * ELFEDIT_MSG_CMDUSAGE 66 * Issues an elfedit usage message to stderr, and 67 * does not return to the caller. 68 * 69 * ELFEDIT_MSG_DEBUG 70 * If the ELFEDIT_F_DEBUG flag is set, the message 71 * is printed to stdout, otherwise no output is produced. 72 * elfedit_msg() returns to the caller. 73 * 74 * ELFEDIT_MSG_QUIET 75 * This is a very special case, intended to handle the 76 * case where the pager subprocess exits before we are 77 * done producing output (the user presses 'q'). It acts 78 * just like ELFEDIT_MSG_ERR, except that no message is 79 * actually printed. 80 * 81 * In the cases where elfedit_msg() does not return to the caller, the 82 * behavior depends on the mode of execution. If running in interactive 83 * mode (reading from a tty), control is returned directly to the outer 84 * elfedit control loop to read another command. If not running in interactive 85 * mode, elfedit exits with a non-zero status. 86 */ 87 typedef enum { 88 ELFEDIT_MSG_ERR = 0, 89 ELFEDIT_MSG_FATAL = 1, 90 ELFEDIT_MSG_USAGE = 2, 91 ELFEDIT_MSG_CMDUSAGE = 3, 92 ELFEDIT_MSG_DEBUG = 4, 93 ELFEDIT_MSG_QUIET = 5 94 } elfedit_msg_t; 95 96 97 /* 98 * Information for a single ELF section. 99 * 100 * NOTE: sec_xshndx 101 * A symbol table can have an associated SHT_SYMTAB_SHNDX section. This 102 * happens when the number of sections is too large to fit in the 103 * ELF symbol st_shndx field, which is a 16-bit value. The sec_xshndx 104 * field will be SHN_UNDEF if there is no such section, and will be 105 * the section index of the extended section index section assocated 106 * with the symbol table otherwise. 107 * 108 * NOTE: sec_versym 109 * Symbol table sections can have an SHT_SUNW_VERSYM section that 110 * contains its version indices. Other types of section will have 111 * this field set to SHN_UNDEF. 112 */ 113 typedef struct { 114 Elf32_Word sec_shndx; /* Section index */ 115 Elf_Scn *sec_scn; /* Section descriptor */ 116 Elf32_Shdr *sec_shdr; /* Section header */ 117 Elf_Data *sec_data; /* Data region of section */ 118 const char *sec_name; /* Name of section */ 119 } elfedit32_section_t; 120 121 typedef struct { 122 Elf64_Word sec_shndx; 123 Elf_Scn *sec_scn; 124 Elf64_Shdr *sec_shdr; 125 Elf_Data *sec_data; 126 const char *sec_name; 127 } elfedit64_section_t; 128 129 #ifdef _ELF64 130 #define elfedit_section_t elfedit64_section_t 131 #else 132 #define elfedit_section_t elfedit32_section_t 133 #endif 134 135 136 /* 137 * We maintain extra information for symbol tables. We look them 138 * up frequently, so we want to eliminate expensive linear searches 139 * of the entire section header array. Also, symbol tables usually 140 * have associated parallal sections (syminfo, versym, extended indexes, etc) 141 * and we want to eliminate repeated linear lookups for them, as well as 142 * the basic error checking that is necessary to ensure they match the 143 * symbol table they're given. 144 * 145 * This extra information is kept in elfedit_symtab_t structs. Each field 146 * is a section index, with SHN_UNDEF used for those that do not apply. 147 */ 148 typedef struct { 149 Elf32_Word symt_shndx; /* Symbol table section index */ 150 Elf32_Word symt_xshndx; /* Index of extended index section */ 151 Elf32_Word symt_syminfo; /* Index of versym section */ 152 Elf32_Word symt_versym; /* Index of versym section */ 153 } elfedit32_symtab_t; 154 155 typedef struct { 156 Elf64_Word symt_shndx; 157 Elf64_Word symt_xshndx; 158 Elf64_Word symt_versym; 159 Elf64_Word symt_syminfo; 160 } elfedit64_symtab_t; 161 162 #ifdef _ELF64 163 #define elfedit_symtab_t elfedit64_symtab_t 164 #else 165 #define elfedit_symtab_t elfedit32_symtab_t 166 #endif 167 168 169 /* 170 * Information for a single ELF object. 171 * 172 * note: 173 * elfedit is intended to be an expert's tool, capable of modifying 174 * nearly everything in the file, whether or not such modifications 175 * are a good idea. At the same time, elfedit, via libelf, relies 176 * on the contents of the object to properly locate information in 177 * the file. As this is the same information that elfedit allows the 178 * user to modify, it should be obvious that the potential exists 179 * for users to corrupt the file to the degree that elfedit itself 180 * may fail, or produce spurious results. We allow such changes for 181 * several reasons: 182 * 183 * 1) Such corruption does not happen in the most obvious and 184 * useful operations elfedit supports, but comes as a result 185 * of modifying fields that contain size and offset information 186 * used to navigate the file. Non-ELF developers have 187 * little practical reason to change such things. 188 * 189 * 2) Producing a corrupt ELF file can be very useful 190 * for R&D and/or testing purposes. 191 * 192 * 3) ELF is sufficiently complex that no absolute guarantees can 193 * be made about "safe" operations, beyond the basic 194 * and obvious things that are of practical use. 195 * 196 * One way we protect ourselves is via the information cached in 197 * the elfedit_obj_state_t structure at startup. By using this 198 * information, rather than constantly fetching it via libelf, 199 * we protect ourselves against many user changes, such as changing the 200 * program or section header offsets, or similar size/position fields. 201 * 202 * Of course, we make no assurances that that we will be able to 203 * read the resulting file in a subsequent session. 204 */ 205 typedef struct { 206 const char *os_file; /* Path to ELF file */ 207 int os_fd; /* Open file descriptor */ 208 Elf *os_elf; /* ELF descriptor */ 209 Elf32_Ehdr *os_ehdr; /* ELF header */ 210 Elf32_Word os_dynndx; /* Index of dynamic section */ 211 size_t os_shstrndx; /* Index of section header */ 212 /* string table section */ 213 size_t os_shnum; /* # of sections in file */ 214 elfedit32_section_t *os_secarr; /* Section data */ 215 size_t os_phnum; /* # of program headers */ 216 Elf32_Phdr *os_phdr; /* Program header array */ 217 size_t os_symtabnum; /* # items in os_symtab[] */ 218 elfedit32_symtab_t *os_symtab; /* Array of symbol tbl info */ 219 } elfedit32_obj_state_t; 220 221 typedef struct { 222 const char *os_file; 223 int os_fd; 224 Elf *os_elf; 225 Elf64_Ehdr *os_ehdr; 226 Elf64_Word os_dynndx; 227 size_t os_shstrndx; 228 size_t os_shnum; 229 elfedit64_section_t *os_secarr; 230 size_t os_phnum; 231 Elf64_Phdr *os_phdr; 232 size_t os_symtabnum; 233 elfedit64_symtab_t *os_symtab; 234 } elfedit64_obj_state_t; 235 236 #ifdef _ELF64 237 #define elfedit_obj_state_t elfedit64_obj_state_t 238 #else 239 #define elfedit_obj_state_t elfedit32_obj_state_t 240 #endif 241 242 243 /* 244 * Bit values for editor state. 245 */ 246 typedef enum { 247 ELFEDIT_F_AUTOPRINT = 1, /* Print informational text about edits */ 248 ELFEDIT_F_DEBUG = 2, /* Print informational text about operations */ 249 ELFEDIT_F_READONLY = 4, /* File is processed readonly */ 250 } elfedit_flag_t; 251 252 /* 253 * Type used to represent the output style for printing ELF values. 254 * 255 * DEFAULT - Output is in 'elfdump' style, designed for human eyes. 256 * Headers, and additional information are shown. 257 * SIMPLE - Output is simple, consisting only of the target item. 258 * Integer values are shown as symbolic constants when possible, 259 * and integers otherwise. 260 * NUM - Like SIMPLE, except integer values are always shown as 261 * integer constants, and strings are shown as the integer 262 * offset into the string table. 263 */ 264 typedef enum { 265 ELFEDIT_OUTSTYLE_DEFAULT = 0, 266 ELFEDIT_OUTSTYLE_SIMPLE = 1, 267 ELFEDIT_OUTSTYLE_NUM = 2 268 } elfedit_outstyle_t; 269 270 271 /* 272 * The elfedit_module_t, and the types it references, are defined 273 * by loadable elfedit modules, and used by elfedit. These structures 274 * need to communicate internationalized strings for elfedit to print. 275 * 276 * We want to leave the choice of internationalization APIs, as well as 277 * the decision about whether or not to even to it to the individual 278 * modules. Hence, we do not use a simple (const char *) pointer to 279 * communicate potentially internationalized strings. Instead, we define 280 * elfedit_i18nhdl_t, an opaque type guaranteed to be large enough 281 * to hold a pointer. Each module casts the handle needed to access the 282 * string to this type. Each module also supplies a function 283 * (mod_i18nhdl_to_str field of elfedit_module_t) that given one 284 * of these opaque keys, will return a (const char *) pointer to the 285 * actual string, for elfedit to print. 286 * 287 * If the underlying module doesn't want to implement i18n support, 288 * all it has to do is cast the strings to elfedit_i18nhdl_t and 289 * back. 290 */ 291 typedef uintptr_t elfedit_i18nhdl_t; 292 293 294 295 /* 296 * Macro to handle casting international string "handles" to the 297 * elfedit_i18nhdl_t opaque type. 298 */ 299 #define ELFEDIT_I18NHDL(_i18n_str_ref) ((elfedit_i18nhdl_t)_i18n_str_ref) 300 301 302 /* 303 * Return values from command functions 304 */ 305 typedef enum { 306 ELFEDIT_CMDRET_NONE = 0, /* Nothing to report */ 307 ELFEDIT_CMDRET_MOD = 1, /* Command modified output ELF file */ 308 ELFEDIT_CMDRET_FLUSH = 2 /* Output file flushed: elf_update() */ 309 } elfedit_cmdret_t; 310 311 /* 312 * Prototype of an implementation function for an edit command. Note that 313 * commands do not return a status: 314 * - Success is indicated by a normal return. 315 * - The command indicates a fatal error by calling elfedit_msg() with the 316 * ELFEDIT_MSG_ERR type, in which case execution does not return 317 * to the command, and the elfedit command loop knows that an 318 * error occurred. 319 * - The command is responsible for using the standard libelf 320 * mechanisms to indicate when changes have been made to 321 * the ELF file. 322 */ 323 typedef elfedit_cmdret_t elfedit32_cmd_func_t(elfedit32_obj_state_t *state, 324 int argc, const char *argv[]); 325 typedef elfedit_cmdret_t elfedit64_cmd_func_t(elfedit64_obj_state_t *state, 326 int argc, const char *argv[]); 327 #ifdef _ELF64 328 #define elfedit_cmd_func_t elfedit64_cmd_func_t 329 #else 330 #define elfedit_cmd_func_t elfedit32_cmd_func_t 331 #endif 332 333 334 /* 335 * An elfedit command (elfedit_cmd_t) has a cmd_cpl field that 336 * can be set to a command completion function. If such a function 337 * is present (non-NULL), and the user presses the tab key at the 338 * command line while the cursor is at a plain (non option) argument, 339 * elfedit calls the function, passing it all the tokens up through 340 * the one needing completion. The function can use elfedit_cpl_match() 341 * to enter possible alternatives. Additionally, there are helper 342 * functions built on top of elfedit_cpl_match() that simplify common cases. 343 * 344 * elfedit_cpl_ato[iu]() - enter matches from elfedit_ato[iu]_sym_t 345 * mappings. 346 * elfedit_cpl_atoconst() - Enter matches for well known constants 347 * elfedit_cpl_command() - enter matches for all known commands 348 * elfedit_cpl_mod() - enter matches for all known modules. 349 * 350 * The completion function is passed the following arguments: 351 * 352 * obj_state - Object state. Will be NULL if elfedit session does not 353 * have an active object. The completion function must test 354 * the pointer before using it. 355 * cpldata - Completion data, to be passed to elfedit_cpl_match() 356 * or the helper functions built on it to register alternative 357 * strings. 358 * argc, argv - The tokens from the start of the line throught 359 * the one needing completion, which will always 360 * be cmdcpl_argv[cmdcpl_argc - 1]. 361 * num_opt - A count of the optional arguments (those starting with 362 * '-' at the beginning of argv. This means that argv[num_opt] 363 * is the first plain argument, and the 1-based positional 364 * number of the plain argument for which command completion 365 * is needed is (argc - num_opt). 366 */ 367 typedef void elfedit32_cmdcpl_func_t(elfedit32_obj_state_t *state, 368 void *cpldata, int argc, const char *argv[], int num_opt); 369 typedef void elfedit64_cmdcpl_func_t(elfedit64_obj_state_t *state, 370 void *cpldata, int argc, const char *argv[], int num_opt); 371 #ifdef _ELF64 372 #define elfedit_cmdcpl_func_t elfedit64_cmdcpl_func_t 373 #else 374 #define elfedit_cmdcpl_func_t elfedit32_cmdcpl_func_t 375 #endif 376 377 378 379 380 /* 381 * Command option/argument descriptor. These structures 382 * are used to represent each option and plain argument accepted 383 * by a command, via the cmd_opt and cmd_args fields in the 384 * command definition (elfedit_cmd_t). Each descriptor consists 385 * of a name, a help string (formatted for display via sys:help), 386 * and a flags field that conveys extra information about the 387 * item: 388 * 389 * ELFEDIT_CMDOA_F_OPT 390 * The item is optional. This flag is implicit for options 391 * and need only be set for plain arguments. 392 * 393 * ELFEDIT_CMDOA_F_VALUE 394 * The item has a value, which is found in the following 395 * item. This flag only has meaning for options, and should 396 * not be set for plain arguments. The descriptor for the 397 * value is found in the next array element, and only the 398 * oa_name field is used (the other should be set t 0). 399 * 400 * ELFEDIT_CMDOA_F_MULT 401 * More than one of the specified items may be specified 402 * 403 * ELFEDIT_CMDOA_F_INHERIT 404 * This is an item for which a common definition exists. 405 * Elfedit will substitute the standard values for the 406 * name, help text, and flags. This enforces consistency 407 * in documentation, plus it is easier for the module author. 408 * When ELFEDIT_CMDOA_F_INHERIT is set: 409 * - oa_name should be set to one of the ELFEDIT_STDOA_ 410 * values to specifiy which standard item is being 411 * inherited. 412 * - oa_help must be set to NULL. 413 * - It is an error to set any other flags with 414 * ELFEDIT_CMDOA_F_INHERIT. 415 * - oa_idmask and oa_excmask are used in the normal way. 416 * 417 * The oa_idmask and oa_excmask fields are used to identify options, 418 * and to support mutual exclusion (when two or more options cannot be 419 * used together). They are ignored for arguments, and should be set to 0. 420 * oa_idmask is used to uniquely identify each item. When elfedit_getopt() 421 * matches an option, it returns the value of oa_idmask to the caller to 422 * indicate which option was matched. elfedit enforces the following rules 423 * for oa_idmask, and will refuse to load a module that does not follow them: 424 * - The value of oa_idmask must be 0, or have a value that 425 * is a power of 2 (i.e. only has one bit set). 426 * - Each item that sets a non-0 value for oa_idmask must have 427 * a unique value. 428 * - If oa_idmask is 0, oa_excmask must be 0 also. 429 * - oa_excmask is set to 0 if an item is not mutually exclusive 430 * to any other item. Otherwise, it should set the bit 431 * values representing the items it is mutually exclusive to. 432 * - An oa_idmask value of 0 can be used for any item that 433 * the module does not need to identify, and which 434 * is not mutually exclusive to any other item. 435 * As elfedit_getopt() processes items, it maintains a bitmask combining the 436 * oa_idmask fields of all the options already seen. For each option, it uses 437 * oa_excmask to check for conflicts. 438 * 439 * note: elfedit enforces the rule that options consist of a '-' 440 * character followed by at least one character when a module 441 * is loaded. 442 */ 443 typedef enum { 444 ELFEDIT_CMDOA_F_OPT = 1, /* Item is optional */ 445 ELFEDIT_CMDOA_F_VALUE = 2, /* Item has a value arg following */ 446 ELFEDIT_CMDOA_F_MULT = 4, /* More than one are allowed */ 447 ELFEDIT_CMDOA_F_INHERIT = 8, /* Inherit definition: See above */ 448 } elfedit_cmd_oa_flag_t; 449 450 typedef u_longlong_t elfedit_cmd_oa_mask_t; 451 452 typedef struct { 453 const char *oa_name; /* Name of option */ 454 elfedit_i18nhdl_t oa_help; /* Help text for option */ 455 elfedit_cmd_oa_flag_t oa_flags; /* Additional attributes */ 456 elfedit_cmd_oa_mask_t oa_idmask; /* Unique id, returned by */ 457 /* elfedit_getopt */ 458 /* for use by caller */ 459 elfedit_cmd_oa_mask_t oa_excmask; /* Mutual exclusion mask */ 460 } elfedit_cmd_optarg_t; 461 462 463 464 /* 465 * These values define the standard options and arguments that a module 466 * can inherit using the ELFEDIT_CMDOA_F_INHERIT flag (described above). 467 * New items must be added at the end --- reordering the list will 468 * require all modules to be rebuilt. 469 * 470 * Note: 0 cannot be used as a ELFEDIT_STDOA_ value, because a NULL 471 * value of oa_name is used to terminate argument and options lists. 472 * Therefore, these values start at 1. 473 */ 474 #define ELFEDIT_STDOA_OPT_O ((const char *) 1) /* -o ostyle */ 475 #define ELFEDIT_STDOA_OPT_AND ((const char *) 2) /* -and */ 476 #define ELFEDIT_STDOA_OPT_CMP ((const char *) 3) /* -cmp */ 477 #define ELFEDIT_STDOA_OPT_OR ((const char *) 4) /* -or */ 478 479 #define ELFEDIT_NUM_STDOA 4 /* # of ELFEDIT_STDOA_ definitions */ 480 481 482 483 /* 484 * Definition of a command 485 * 486 * This structure includes an elfedit_cmd_func_t pointer, which has 487 * different definitions for different ELFCLASS. Rather than needlessly 488 * complicate the code with three versions of this type, and any 489 * type that uses it, we simply use the GenericClass type. elfedit 490 * will always cast this to the correct type before calling a module. 491 * 492 * cmd_name is an array of pointers to the names for the command. 493 * The "primary" name should always be first, followed by any alias 494 * names. The final element of the array must be a NULL pointer, 495 * which terminates the list. Every command is required to have at 496 * least one name, so code is allowed to assume that the first element 497 * of cmd_name is non-NULL, and contains the primary name. 498 * 499 * Many modules provide a "default" command, which is a command 500 * that is run if only the module name is specified, followed 501 * by a colon (i.e. "sym:"). The way this is implemented is to 502 * give the desired default command an empty string as an alias. 503 * Note that the primary name cannot be an empty string, only the 504 * alias name. 505 * 506 * cmd_opts and cmd_args are each an array of elfedit_cmd_argdesc_t 507 * structures, that describe the options and plain arguments accepted 508 * by the command. These arrays are used to general help text for 509 * the commands. The cmd_opts array is also used to provide command 510 * completion for options. Both of these arrays are terminated by 511 * a final NULL element (all fields zero). 512 */ 513 typedef struct { 514 elfedit32_cmd_func_t *cmd_func; /* Implementation */ 515 elfedit32_cmdcpl_func_t *cmd_cplfunc; /* Completion function */ 516 const char **cmd_name; /* Cmd names (null term.) */ 517 elfedit_i18nhdl_t cmd_desc; /* Short desc. of cmd purpose */ 518 elfedit_i18nhdl_t cmd_help; /* Help text for the command */ 519 elfedit_cmd_optarg_t *cmd_opt; /* Options */ 520 elfedit_cmd_optarg_t *cmd_args; /* Plain arguments */ 521 } elfedit32_cmd_t; 522 523 typedef struct { 524 elfedit64_cmd_func_t *cmd_func; 525 elfedit64_cmdcpl_func_t *cmd_cplfunc; 526 const char **cmd_name; 527 elfedit_i18nhdl_t cmd_desc; 528 elfedit_i18nhdl_t cmd_help; 529 elfedit_cmd_optarg_t *cmd_opt; 530 elfedit_cmd_optarg_t *cmd_args; 531 } elfedit64_cmd_t; 532 533 #ifdef _ELF64 534 #define elfedit_cmd_t elfedit64_cmd_t 535 #else 536 #define elfedit_cmd_t elfedit32_cmd_t 537 #endif 538 539 540 541 /* 542 * elfedit modules version themselves so that we can alter the definition 543 * of elfedit_module_t in a backward compatible way. 544 */ 545 typedef enum { 546 ELFEDIT_VER_NONE = 0, 547 ELFEDIT_VER_CURRENT = 1, 548 ELFEDIT_VER_NUM = 2 549 } elfedit_module_version_t; 550 551 552 /* 553 * Each module returns a pointer to an elfedit_module_t, describing 554 * what commands the module provides. 555 * 556 * Note: mod_cmds is a NULL terminated array of command defs. This 557 * means that the final element in the array should have all of its 558 * fields set to NULL. 559 * 560 * The mod_i18nhdl_to_str function pointer is explained above 561 * with the definition of elfedit_i18nhdl_t. 562 */ 563 typedef const char *(* elfedit_mod_i18nhdl_to_str_func_t)(elfedit_i18nhdl_t); 564 565 typedef struct { 566 elfedit_module_version_t mod_version; /* version */ 567 const char *mod_name; /* Name of module */ 568 elfedit_i18nhdl_t mod_desc; /* Short desc. of mod purpose */ 569 elfedit32_cmd_t *mod_cmds; /* Array of command defs */ 570 /* i18n -> (char *) fcn */ 571 elfedit_mod_i18nhdl_to_str_func_t mod_i18nhdl_to_str; 572 } elfedit32_module_t; 573 574 typedef struct { 575 elfedit_module_version_t mod_version; 576 const char *mod_name; 577 elfedit_i18nhdl_t mod_desc; 578 elfedit64_cmd_t *mod_cmds; 579 elfedit_mod_i18nhdl_to_str_func_t mod_i18nhdl_to_str; 580 } elfedit64_module_t; 581 582 #ifdef _ELF64 583 #define elfedit_module_t elfedit64_module_t 584 #else 585 #define elfedit_module_t elfedit32_module_t 586 #endif 587 588 589 /* 590 * Each module is a sharable library, expected to provide a single global 591 * function, named elfedit_init(), with the following prototype. 592 */ 593 typedef elfedit_module_t *elfedit_init_func_t(elfedit_module_version_t version); 594 595 596 597 598 /* 599 * Core elfedit functions exported for use by modules 600 */ 601 extern void elfedit_command_usage(void); 602 extern void elfedit_cpl_command(void *cpldata); 603 extern void elfedit_cpl_match(void *cpldata, const char *str, int casefold); 604 extern void elfedit_elferr(const char *file, const char *libelf_rtn_name); 605 extern elfedit_flag_t elfedit_flags(void); 606 extern void *elfedit_malloc(const char *item_name, size_t size); 607 extern void elfedit_msg(elfedit_msg_t type, const char *format, ...); 608 extern elfedit_outstyle_t elfedit_outstyle(void); 609 extern void elfedit_pager_init(void); 610 extern void elfedit_printf(const char *format, ...); 611 extern void *elfedit_realloc(const char *item_name, void *ptr, size_t size); 612 extern void elfedit_write(const void *ptr, size_t size); 613 614 /* 615 * Core elfedit functions exported for use by sys: module only 616 */ 617 extern void elfedit_cpl_module(void *cpldata, int load_all_modules); 618 619 620 /* 621 * elfedit modules are expected to define two functions, one for 622 * each ELFCLASS. Define a generic name for this function, based on 623 * the class being supported by the including module. 624 */ 625 #ifdef _ELF64 626 #define elfedit_init elfedit64_init 627 #else 628 #define elfedit_init elfedit32_init 629 #endif 630 631 632 633 /* 634 * It is common to search the dynamic section for specific elements. 635 * Structures of this type are used to represent the contents of such 636 * elements in a systematic way. The elfedit_dyn_elt_init() function 637 * is used to prepare these strucutres for use. 638 */ 639 typedef struct { 640 int dn_seen; /* True if this item has been seen */ 641 Elf32_Word dn_ndx; /* Index of item in dynamic array */ 642 Elf32_Dyn dn_dyn; /* Contents of dynamic item */ 643 } elfedit32_dyn_elt_t; 644 645 typedef struct { 646 int dn_seen; 647 Elf64_Word dn_ndx; 648 Elf64_Dyn dn_dyn; 649 } elfedit64_dyn_elt_t; 650 651 #ifdef _ELF64 652 #define elfedit_dyn_elt_t elfedit64_dyn_elt_t 653 #else 654 #define elfedit_dyn_elt_t elfedit32_dyn_elt_t 655 #endif 656 657 /* 658 * The elfedit_atoi() and elfedit_atoui() functions can optionally 659 * accept an array of these structures, giving symbolic names that 660 * will be accepted instead of numeric codes. If such an array is 661 * present, the supplied string has it's leading and trailing whitespace 662 * removed and is then compared to the list, and if there is a match, 663 * the corresponding integer value is returned. 664 * 665 * The final array element must have its name field set to NULL. 666 */ 667 typedef u_longlong_t elfedit_atoui_t; 668 typedef struct { 669 const char *sym_name; 670 elfedit_atoui_t sym_value; 671 } elfedit_atoui_sym_t; 672 typedef longlong_t elfedit_atoi_t; 673 typedef struct { 674 const char *sym_name; 675 elfedit_atoi_t sym_value; 676 } elfedit_atoi_sym_t; 677 678 679 /* 680 * The elfedit_atoconst*() functions are built on top of the atoui routines. 681 * These routines accept an elfedit_const_t code instead of a 682 * pointer to an elfedit_atoui_sym_t array, and use internally 683 * predefined tables of elfedit_atoui_sym_t in order to do the desired 684 * mappings. elfedit modules are encouraged to use these standard 685 * tables instead of defining their own elfedit_atoui_sym_t arrays. 686 * 687 * note: 688 * - The values assigned here must be in agreement with the 689 * sym_table[] array defined in elfconst.c. 690 * - Once defined, these values must not change. Reordering the 691 * list will require all modules to be rebuilt, and will 692 * break backward compatability. New items should be 693 * added to the end. 694 */ 695 typedef enum { 696 ELFEDIT_CONST_OUTSTYLE = 0, /* elfedit output styles */ 697 ELFEDIT_CONST_OUTSTYLE_MO = 1, /* ostyles with -o prefix */ 698 ELFEDIT_CONST_BOOL = 2, /* boolean names */ 699 ELFEDIT_CONST_SHN = 3, /* ELF SHN_ section indexes */ 700 ELFEDIT_CONST_SHT = 4, /* ELF SHT_ section types */ 701 ELFEDIT_CONST_SHT_STRTAB = 5, /* ELF SHT_STRTAB */ 702 ELFEDIT_CONST_SHT_ALLSYMTAB = 6, /* ELF SHT_ symbol table */ 703 /* section types */ 704 ELFEDIT_CONST_SHT_SYMTAB = 7, /* ELF SHT_SYMTAB */ 705 ELFEDIT_CONST_SHT_DYNSYM = 8, /* ELF SHT_DYNSYM */ 706 ELFEDIT_CONST_SHT_LDYNSYM = 9, /* ELF SHT_SUNW_LDYNSYM */ 707 ELFEDIT_CONST_DT = 10, /* Dynamic tags: DT_ */ 708 ELFEDIT_CONST_DF = 11, /* DT_FLAGS bits */ 709 ELFEDIT_CONST_DF_P1 = 12, /* DF_POSFLAG_1 bits */ 710 ELFEDIT_CONST_DF_1 = 13, /* DT_FLAGS_1 bits */ 711 ELFEDIT_CONST_DTF_1 = 14, /* DT_FEATURE_1 bits */ 712 ELFEDIT_CONST_EI = 15, /* ELF header e_ident indexes */ 713 ELFEDIT_CONST_ET = 16, /* Ehdr obj type */ 714 ELFEDIT_CONST_ELFCLASS = 17, /* Ehdr wordsize (32,64) */ 715 ELFEDIT_CONST_ELFDATA = 18, /* Ehdr endian */ 716 ELFEDIT_CONST_EF = 19, /* Ehdr flags */ 717 ELFEDIT_CONST_EV = 20, /* Ehdr version */ 718 ELFEDIT_CONST_EM = 21, /* Ehdr machine */ 719 ELFEDIT_CONST_ELFOSABI = 22, /* Ehdr ABI */ 720 ELFEDIT_CONST_PT = 23, /* Phdr type */ 721 ELFEDIT_CONST_PF = 24, /* Phdr flags */ 722 ELFEDIT_CONST_SHF = 25, /* Shdr flags */ 723 ELFEDIT_CONST_STB = 26, /* Sym binding */ 724 ELFEDIT_CONST_STT = 27, /* Sym type */ 725 ELFEDIT_CONST_STV = 28, /* Sym visibility */ 726 ELFEDIT_CONST_SYMINFO_BT = 29, /* Syminfo boundto */ 727 ELFEDIT_CONST_SYMINFO_FLG = 30, /* Syminfo flags */ 728 ELFEDIT_CONST_CA = 31, /* Capabilities tags: CA_ */ 729 ELFEDIT_CONST_AV_386 = 32, /* X86 hardware caps */ 730 ELFEDIT_CONST_AV_SPARC = 33, /* sparc hardware caps */ 731 ELFEDIT_CONST_SF1_SUNW = 34, /* software capabilities */ 732 } elfedit_const_t; 733 734 /* 735 * Given an elfedit_const_t, return the array of elfedit_atoui_sym_t 736 * entries that it represents. 737 */ 738 extern elfedit_atoui_sym_t *elfedit_const_to_atoui(elfedit_const_t const_type); 739 740 /* 741 * Return the elfedit_atoui_t array that corresponds to the 742 * CA_SUNW_HW_1 hardware capabiliies field for a given 743 * machine type. 744 */ 745 extern elfedit_atoui_sym_t *elfedit_mach_sunw_hw1_to_atoui(int mach); 746 747 /* 748 * ato[u]i and const routines, used to turn strings into numeric values, 749 * with support for mapping symbol names to numbers, and range checking. 750 */ 751 extern elfedit_atoi_t elfedit_atoi(const char *str, 752 const elfedit_atoi_sym_t *sym); 753 extern elfedit_atoui_t elfedit_atoui(const char *str, 754 const elfedit_atoui_sym_t *sym); 755 extern elfedit_atoui_t elfedit_atoconst(const char *str, 756 elfedit_const_t const_type); 757 758 extern int elfedit_atoi2(const char *str, const elfedit_atoi_sym_t *sym, 759 elfedit_atoi_t *v); 760 extern int elfedit_atoui2(const char *str, const elfedit_atoui_sym_t *sym, 761 elfedit_atoui_t *); 762 extern int elfedit_atoconst2(const char *str, elfedit_const_t const_type, 763 elfedit_atoui_t *); 764 765 extern elfedit_atoi_t elfedit_atoi_range(const char *str, 766 const char *item_name, elfedit_atoi_t min, elfedit_atoi_t max, 767 const elfedit_atoi_sym_t *sym); 768 extern elfedit_atoui_t elfedit_atoui_range(const char *str, 769 const char *item_name, elfedit_atoui_t min, elfedit_atoui_t max, 770 const elfedit_atoui_sym_t *sym); 771 extern elfedit_atoui_t elfedit_atoconst_range(const char *str, 772 const char *item_name, elfedit_atoui_t min, elfedit_atoui_t max, 773 elfedit_const_t const_type); 774 775 extern int elfedit_atoi_range2(const char *str, elfedit_atoi_t min, 776 elfedit_atoi_t max, const elfedit_atoi_sym_t *sym, elfedit_atoi_t *v); 777 extern int elfedit_atoui_range2(const char *str, elfedit_atoui_t min, 778 elfedit_atoui_t max, const elfedit_atoui_sym_t *sym, elfedit_atoui_t *v); 779 extern int elfedit_atoconst_range2(const char *str, elfedit_atoui_t min, 780 elfedit_atoui_t max, elfedit_const_t const_type, elfedit_atoui_t *v); 781 782 extern const char *elfedit_atoi_value_to_str(const elfedit_atoi_sym_t *sym, 783 elfedit_atoi_t value, int required); 784 extern const char *elfedit_atoui_value_to_str(const elfedit_atoui_sym_t *sym, 785 elfedit_atoui_t value, int required); 786 extern const char *elfedit_atoconst_value_to_str(elfedit_const_t const_type, 787 elfedit_atoui_t value, int required); 788 789 extern void elfedit_cpl_atoi(void *cpldata, const elfedit_atoi_sym_t *sym); 790 extern void elfedit_cpl_atoui(void *cpldata, const elfedit_atoui_sym_t *sym); 791 extern void elfedit_cpl_atoconst(void *cpldata, elfedit_const_t const_type); 792 793 794 /* 795 * Convenience functions built on top of the ato[u]i routines. 796 */ 797 extern int elfedit_atobool(const char *str, const char *item_name); 798 extern elfedit_atoui_t elfedit_atoshndx(const char *str, size_t shnum); 799 800 801 /* 802 * elfedit provides a getopt utility for use by the module commands. 803 * elfedit_getopt_state_t is the state block used by elfedit_getopt(). 804 * elfedit_getopt_ret_t is the definition of the values returned to 805 * the user by elfedit_getopt() when an option is matched. Elfedit 806 * getopt processing is done as follows: 807 * 808 * 1) The caller initializes an elfedit_getopt_state_t struct via 809 * a call to elfedit_getopt_init(). The contents of this structure 810 * must not be accessed by the caller, as they are all private and 811 * subject to change. 812 * 2) Repeated calls are made to elfedit_getopt(), as long as it returns 813 * a non-NULL pointer to an elfedit_getopt_ret_t structure. If the 814 * matched option has a value (ELFEDIT_CMDOA_F_VALUE), then the gor_value 815 * field contains the pointer to the string. Otherwise, gor_value is NULL. 816 * 3) As elfedit_getopt() consumes optional arguments from the argc/argv 817 * passed to elfedit_getopt_init(), it adjusts argc/argc to skip over 818 * them. Once elfedit_getopt() returns NULL to indicate that there are no 819 * more options to match, argc/argv have been adjusted so that they 820 * reference the plain arguments. 821 */ 822 typedef struct { 823 elfedit_cmd_oa_mask_t gor_idmask; /* oa_idmask from matching */ 824 /* elfedit_cmd_optarg_t. Can be */ 825 /* used to quickly identify opt */ 826 const char *gor_value; /* Opt value if ELFEDIT_CMDOA_F_VALUE */ 827 /* Otherwise, NULL */ 828 } elfedit_getopt_ret_t; 829 typedef struct { 830 int *go_argc; /* Pointer to # of options */ 831 const char ***go_argv; /* Ptr to array of opt strs */ 832 elfedit_cmd_optarg_t *go_optarg; /* Array of allowed options */ 833 elfedit_cmd_oa_mask_t go_idmask; /* Combined id masks of all */ 834 /* seen options */ 835 int go_done; /* True if last option seen */ 836 const char *go_sglgrp; /* Group of 1-letter opts */ 837 elfedit_getopt_ret_t go_ret; /* Data returned to user */ 838 } elfedit_getopt_state_t; 839 840 841 842 /* 843 * getopt related routines 844 */ 845 extern void elfedit_getopt_init(elfedit_getopt_state_t *, 846 int *, const char ***); 847 extern elfedit_getopt_ret_t *elfedit_getopt(elfedit_getopt_state_t *); 848 849 850 851 /* 852 * Additional utility functions exported for use by modules 853 */ 854 extern void elfedit_array_elts_delete(const char *name_str, void *data_start, 855 size_t entsize, size_t num_ent, size_t start_ndx, size_t cnt); 856 857 extern void elfedit_array_elts_move(const char *name_str, void *data_start, 858 size_t entsize, size_t num_ent, size_t srcndx, 859 size_t dstndx, size_t cnt, void *scr_item); 860 861 extern int elfedit_bits_set(u_longlong_t v, int sizeof_orig_v); 862 863 extern void elfedit32_dyn_elt_init(elfedit32_dyn_elt_t *dyn_elt); 864 extern void elfedit64_dyn_elt_init(elfedit64_dyn_elt_t *dyn_elt); 865 866 extern void elfedit32_dyn_elt_save(elfedit32_dyn_elt_t *elt, Elf32_Word ndx, 867 Elf32_Dyn *dyn); 868 extern void elfedit64_dyn_elt_save(elfedit64_dyn_elt_t *elt, Elf64_Word ndx, 869 Elf64_Dyn *dyn); 870 871 const char *elfedit32_dyn_offset_to_str(elfedit32_section_t *strsec, 872 elfedit32_dyn_elt_t *dynelt); 873 const char *elfedit64_dyn_offset_to_str(elfedit64_section_t *strsec, 874 elfedit64_dyn_elt_t *dynelt); 875 876 extern int elfedit32_dynstr_getpad(elfedit32_section_t *dynsec, 877 elfedit32_dyn_elt_t *dyn_strpad); 878 extern int elfedit64_dynstr_getpad(elfedit64_section_t *dynsec, 879 elfedit64_dyn_elt_t *dyn_strpad); 880 881 extern Elf32_Word elfedit32_dynstr_insert(elfedit32_section_t *dynsec, 882 elfedit32_section_t *strsec, elfedit32_dyn_elt_t *dyn_strpad, 883 const char *str); 884 extern Elf64_Word elfedit64_dynstr_insert(elfedit64_section_t *dynsec, 885 elfedit64_section_t *strsec, elfedit64_dyn_elt_t *dyn_strpad, 886 const char *str); 887 888 extern void elfedit32_modified_data(elfedit32_section_t *s); 889 extern void elfedit64_modified_data(elfedit64_section_t *s); 890 891 extern void elfedit32_modified_ehdr(elfedit32_obj_state_t *obj_state); 892 extern void elfedit64_modified_ehdr(elfedit64_obj_state_t *obj_state); 893 894 extern void elfedit32_modified_phdr(elfedit32_obj_state_t *obj_state); 895 extern void elfedit64_modified_phdr(elfedit64_obj_state_t *obj_state); 896 897 extern void elfedit32_modified_shdr(elfedit32_section_t *s); 898 extern void elfedit64_modified_shdr(elfedit64_section_t *s); 899 900 extern Elf32_Word elfedit32_name_to_shndx(elfedit32_obj_state_t *obj_state, 901 const char *shnam); 902 extern Elf64_Word elfedit64_name_to_shndx(elfedit64_obj_state_t *obj_state, 903 const char *shnam); 904 905 extern Elf32_Word elfedit32_type_to_shndx(elfedit32_obj_state_t *obj_state, 906 Elf32_Word shtype); 907 extern Elf64_Word elfedit64_type_to_shndx(elfedit64_obj_state_t *obj_state, 908 Elf64_Word shtype); 909 910 extern int elfedit32_name_to_symndx(elfedit32_section_t *symsec, 911 elfedit32_section_t *strsec, const char *name, elfedit_msg_t msg_type, 912 Elf32_Word *ret_symndx); 913 extern int elfedit64_name_to_symndx(elfedit64_section_t *symsec, 914 elfedit64_section_t *strsec, const char *name, elfedit_msg_t msg_type, 915 Elf64_Word *ret_symndx); 916 917 extern const char *elfedit32_offset_to_str(elfedit32_section_t *strsec, 918 Elf32_Word offset, elfedit_msg_t msg_type, int debug_msg); 919 extern const char *elfedit64_offset_to_str(elfedit64_section_t *strsec, 920 Elf64_Word offset, elfedit_msg_t msg_type, int debug_msg); 921 922 extern int elfedit32_sec_findstr(elfedit32_section_t *sec, Elf32_Word tail_ign, 923 const char *str, Elf32_Word *ret_offset); 924 extern int elfedit64_sec_findstr(elfedit64_section_t *sec, Elf64_Word tail_ign, 925 const char *str, Elf64_Word *ret_offset); 926 927 extern elfedit32_section_t *elfedit32_sec_getcap( 928 elfedit32_obj_state_t *obj_state, Elf32_Cap **cap, Elf32_Word *num); 929 extern elfedit64_section_t *elfedit64_sec_getcap( 930 elfedit64_obj_state_t *obj_state, Elf64_Cap **cap, Elf64_Word *num); 931 932 extern elfedit32_section_t *elfedit32_sec_getdyn( 933 elfedit32_obj_state_t *obj_state, Elf32_Dyn **dyn, Elf32_Word *num); 934 extern elfedit64_section_t *elfedit64_sec_getdyn( 935 elfedit64_obj_state_t *obj_state, Elf64_Dyn **dyn, Elf64_Word *num); 936 937 extern elfedit32_section_t *elfedit32_sec_getstr( 938 elfedit32_obj_state_t *obj_state, Elf32_Word shndx); 939 extern elfedit64_section_t *elfedit64_sec_getstr( 940 elfedit64_obj_state_t *obj_state, Elf64_Word shndx); 941 942 extern elfedit32_section_t *elfedit32_sec_getsyminfo( 943 elfedit32_obj_state_t *obj_state, Elf32_Syminfo **syminfo, Elf32_Word *num); 944 extern elfedit64_section_t *elfedit64_sec_getsyminfo( 945 elfedit64_obj_state_t *obj_state, Elf64_Syminfo **syminfo, Elf64_Word *num); 946 947 extern elfedit32_section_t *elfedit32_sec_getsymtab( 948 elfedit32_obj_state_t *obj_state, int by_index, Elf32_Word index, 949 const char *name, Elf32_Sym **sym, Elf32_Word *num, 950 elfedit32_symtab_t **aux_info); 951 extern elfedit64_section_t *elfedit64_sec_getsymtab( 952 elfedit64_obj_state_t *obj_state, int by_index, Elf64_Word index, 953 const char *name, Elf64_Sym **sym, Elf64_Word *num, 954 elfedit64_symtab_t **aux_info); 955 956 extern elfedit32_section_t *elfedit32_sec_getversym( 957 elfedit32_obj_state_t *obj_state, elfedit32_section_t *symsec, 958 Elf32_Versym **versym, Elf32_Word *num); 959 extern elfedit64_section_t *elfedit64_sec_getversym( 960 elfedit64_obj_state_t *obj_state, elfedit64_section_t *symsec, 961 Elf64_Versym **versym, Elf64_Word *num); 962 963 extern elfedit32_section_t *elfedit32_sec_getxshndx( 964 elfedit32_obj_state_t *obj_state, elfedit32_section_t *symsec, 965 Elf32_Word **xshndx, Elf32_Word *num); 966 extern elfedit64_section_t *elfedit64_sec_getxshndx( 967 elfedit64_obj_state_t *obj_state, elfedit64_section_t *symsec, 968 Elf64_Word **xshndx, Elf64_Word *num); 969 970 extern int elfedit32_sec_issymtab(elfedit32_section_t *sec, int issue_err, 971 elfedit_atoui_sym_t **atoui_list); 972 extern int elfedit64_sec_issymtab(elfedit64_section_t *sec, int issue_err, 973 elfedit_atoui_sym_t **atoui_list); 974 975 extern const char *elfedit32_sec_msgprefix(elfedit32_section_t *sec); 976 extern const char *elfedit64_sec_msgprefix(elfedit64_section_t *sec); 977 978 extern const char *elfedit32_shndx_to_name(elfedit32_obj_state_t *obj_state, 979 Elf32_Word shndx); 980 extern const char *elfedit64_shndx_to_name(elfedit64_obj_state_t *obj_state, 981 Elf64_Word shndx); 982 983 extern Elf32_Word elfedit32_strtab_insert(elfedit32_obj_state_t *obj_state, 984 elfedit32_section_t *strsec, elfedit32_section_t *dynsec, const char *str); 985 extern Elf64_Word elfedit64_strtab_insert(elfedit64_obj_state_t *obj_state, 986 elfedit64_section_t *strsec, elfedit64_section_t *dynsec, const char *str); 987 988 extern void elfedit32_strtab_insert_test(elfedit32_obj_state_t *obj_state, 989 elfedit32_section_t *strsec, elfedit32_section_t *dynsec, const char *str); 990 extern void elfedit64_strtab_insert_test(elfedit64_obj_state_t *obj_state, 991 elfedit64_section_t *strsec, elfedit64_section_t *dynsec, const char *str); 992 993 extern Elf32_Word elfedit32_type_to_shndx(elfedit32_obj_state_t *obj_state, 994 Elf32_Word shtype); 995 extern Elf64_Word elfedit64_type_to_shndx(elfedit64_obj_state_t *obj_state, 996 Elf64_Word shtype); 997 998 999 1000 /* 1001 * Map the generic names for each of the ELFCLASS specific routines 1002 * above to reference the proper routine for the current compilation. 1003 */ 1004 #ifdef _ELF64 1005 #define elfedit_dyn_elt_init elfedit64_dyn_elt_init 1006 #define elfedit_dyn_elt_save elfedit64_dyn_elt_save 1007 #define elfedit_dyn_offset_to_str elfedit64_dyn_offset_to_str 1008 #define elfedit_dynstr_getpad elfedit64_dynstr_getpad 1009 #define elfedit_dynstr_insert elfedit64_dynstr_insert 1010 #define elfedit_modified_data elfedit64_modified_data 1011 #define elfedit_modified_ehdr elfedit64_modified_ehdr 1012 #define elfedit_modified_phdr elfedit64_modified_phdr 1013 #define elfedit_modified_shdr elfedit64_modified_shdr 1014 #define elfedit_name_to_shndx elfedit64_name_to_shndx 1015 #define elfedit_name_to_symndx elfedit64_name_to_symndx 1016 #define elfedit_offset_to_str elfedit64_offset_to_str 1017 #define elfedit_sec_findstr elfedit64_sec_findstr 1018 #define elfedit_sec_getcap elfedit64_sec_getcap 1019 #define elfedit_sec_getdyn elfedit64_sec_getdyn 1020 #define elfedit_sec_getstr elfedit64_sec_getstr 1021 #define elfedit_sec_getsyminfo elfedit64_sec_getsyminfo 1022 #define elfedit_sec_getsymtab elfedit64_sec_getsymtab 1023 #define elfedit_sec_getversym elfedit64_sec_getversym 1024 #define elfedit_sec_getxshndx elfedit64_sec_getxshndx 1025 #define elfedit_sec_issymtab elfedit64_sec_issymtab 1026 #define elfedit_shndx_to_name elfedit64_shndx_to_name 1027 #define elfedit_sec_msgprefix elfedit64_sec_msgprefix 1028 #define elfedit_strtab_insert elfedit64_strtab_insert 1029 #define elfedit_strtab_insert_test elfedit64_strtab_insert_test 1030 #define elfedit_type_to_shndx elfedit64_type_to_shndx 1031 #else 1032 #define elfedit_dyn_elt_init elfedit32_dyn_elt_init 1033 #define elfedit_dyn_elt_save elfedit32_dyn_elt_save 1034 #define elfedit_dyn_offset_to_str elfedit32_dyn_offset_to_str 1035 #define elfedit_dynstr_getpad elfedit32_dynstr_getpad 1036 #define elfedit_dynstr_insert elfedit32_dynstr_insert 1037 #define elfedit_modified_data elfedit32_modified_data 1038 #define elfedit_modified_ehdr elfedit32_modified_ehdr 1039 #define elfedit_modified_phdr elfedit32_modified_phdr 1040 #define elfedit_modified_shdr elfedit32_modified_shdr 1041 #define elfedit_name_to_shndx elfedit32_name_to_shndx 1042 #define elfedit_name_to_symndx elfedit32_name_to_symndx 1043 #define elfedit_offset_to_str elfedit32_offset_to_str 1044 #define elfedit_sec_findstr elfedit32_sec_findstr 1045 #define elfedit_sec_getcap elfedit32_sec_getcap 1046 #define elfedit_sec_getdyn elfedit32_sec_getdyn 1047 #define elfedit_sec_getstr elfedit32_sec_getstr 1048 #define elfedit_sec_getsyminfo elfedit32_sec_getsyminfo 1049 #define elfedit_sec_getsymtab elfedit32_sec_getsymtab 1050 #define elfedit_sec_getversym elfedit32_sec_getversym 1051 #define elfedit_sec_getxshndx elfedit32_sec_getxshndx 1052 #define elfedit_sec_issymtab elfedit32_sec_issymtab 1053 #define elfedit_shndx_to_name elfedit32_shndx_to_name 1054 #define elfedit_sec_msgprefix elfedit32_sec_msgprefix 1055 #define elfedit_strtab_insert elfedit32_strtab_insert 1056 #define elfedit_strtab_insert_test elfedit32_strtab_insert_test 1057 #define elfedit_type_to_shndx elfedit32_type_to_shndx 1058 #endif 1059 1060 1061 #ifdef __cplusplus 1062 } 1063 #endif 1064 1065 #endif /* _ELFEDIT_H */ 1066