elfedit [@option{--input-mach=}@var{machine}]
[@option{--input-type=}@var{type}]
[@option{--input-osabi=}@var{osabi}]
+ [@option{--input-abiversion=}@var{version}]
@option{--output-mach=}@var{machine}
@option{--output-type=}@var{type}
@option{--output-osabi=}@var{osabi}
+ @option{--output-abiversion=}@var{version}
@option{--enable-x86-feature=}@var{feature}
@option{--disable-x86-feature=}@var{feature}
[@option{-v}|@option{--version}]
The long and short forms of options, shown here as alternatives, are
equivalent. At least one of the @option{--output-mach},
@option{--output-type}, @option{--output-osabi},
+@option{--output-abiversion},
@option{--enable-x86-feature} and @option{--disable-x86-feature}
options must be given.
Change the ELF OSABI in the ELF header to @var{osabi}. The
supported ELF OSABI are the same as @option{--input-osabi}.
+@item --input-abiversion=@var{version}
+Set the matching input ELF file ABIVERSION to @var{version}.
+@var{version} must be between 0 and 255. If @option{--input-abiversion}
+isn't specified, it will match any ELF ABIVERSIONs.
+
+@item --output-abiversion=@var{version}
+Change the ELF ABIVERSION in the ELF header to @var{version}.
+@var{version} must be between 0 and 255.
+
@item --enable-x86-feature=@var{feature}
Set the @var{feature} bit in program property in @var{exec} or @var{dyn}
ELF files with machine types of @var{i386} or @var{x86-64}. The
static int output_elf_type = -1;
static int input_elf_osabi = -1;
static int output_elf_osabi = -1;
+static int input_elf_abiversion = -1;
+static int output_elf_abiversion = -1;
enum elfclass
{
ELF_CLASS_UNKNOWN = -1,
static int
update_elf_header (const char *file_name, FILE *file)
{
- int class, machine, type, status, osabi;
+ int class, machine, type, status, osabi, abiversion;
if (elf_header.e_ident[EI_VERSION] != EV_CURRENT)
{
return 0;
}
+ abiversion = elf_header.e_ident[EI_ABIVERSION];
+
+ /* Skip if ABIVERSION doesn't match. */
+ if (input_elf_abiversion != -1
+ && abiversion != input_elf_abiversion)
+ {
+ error
+ (_("%s: Unmatched EI_ABIVERSION: %d is not %d\n"),
+ file_name, abiversion, input_elf_abiversion);
+ return 0;
+ }
+
/* Update e_machine, e_type and EI_OSABI. */
switch (class)
{
BYTE_PUT (ehdr32.e_type, output_elf_type);
if (output_elf_osabi != -1)
ehdr32.e_ident[EI_OSABI] = output_elf_osabi;
+ if (output_elf_abiversion != -1)
+ ehdr32.e_ident[EI_ABIVERSION] = output_elf_abiversion;
status = fwrite (&ehdr32, sizeof (ehdr32), 1, file) == 1;
break;
case ELFCLASS64:
BYTE_PUT (ehdr64.e_type, output_elf_type);
if (output_elf_osabi != -1)
ehdr64.e_ident[EI_OSABI] = output_elf_osabi;
+ if (output_elf_abiversion != -1)
+ ehdr64.e_ident[EI_ABIVERSION] = output_elf_abiversion;
status = fwrite (&ehdr64, sizeof (ehdr64), 1, file) == 1;
break;
}
OPTION_OUTPUT_TYPE,
OPTION_INPUT_OSABI,
OPTION_OUTPUT_OSABI,
+ OPTION_INPUT_ABIVERSION,
+ OPTION_OUTPUT_ABIVERSION,
#ifdef HAVE_MMAP
OPTION_ENABLE_X86_FEATURE,
OPTION_DISABLE_X86_FEATURE,
{"output-type", required_argument, 0, OPTION_OUTPUT_TYPE},
{"input-osabi", required_argument, 0, OPTION_INPUT_OSABI},
{"output-osabi", required_argument, 0, OPTION_OUTPUT_OSABI},
+ {"input-abiversion", required_argument, 0, OPTION_INPUT_ABIVERSION},
+ {"output-abiversion", required_argument, 0, OPTION_OUTPUT_ABIVERSION},
#ifdef HAVE_MMAP
{"enable-x86-feature",
required_argument, 0, OPTION_ENABLE_X86_FEATURE},
--input-osabi [%s]\n\
Set input OSABI\n\
--output-osabi [%s]\n\
- Set output OSABI\n"),
+ Set output OSABI\n\
+ --input-abiversion [0-255]\n\
+ Set input ABIVERSION\n\
+ --output-abiversion [0-255]\n\
+ Set output ABIVERSION\n"),
osabi, osabi);
#ifdef HAVE_MMAP
fprintf (stream, _("\
main (int argc, char ** argv)
{
int c, status;
+ char *end;
#ifdef HAVE_LC_MESSAGES
setlocale (LC_MESSAGES, "");
return 1;
break;
+ case OPTION_INPUT_ABIVERSION:
+ input_elf_abiversion = strtoul (optarg, &end, 0);
+ if (*end != '\0'
+ || input_elf_abiversion < 0
+ || input_elf_abiversion > 255)
+ {
+ error (_("Invalid ABIVERSION: %s\n"), optarg);
+ return 1;
+ }
+ break;
+
+ case OPTION_OUTPUT_ABIVERSION:
+ output_elf_abiversion = strtoul (optarg, &end, 0);
+ if (*end != '\0'
+ || output_elf_abiversion < 0
+ || output_elf_abiversion > 255)
+ {
+ error (_("Invalid ABIVERSION: %s\n"), optarg);
+ return 1;
+ }
+ break;
+
#ifdef HAVE_MMAP
case OPTION_ENABLE_X86_FEATURE:
if (elf_x86_feature (optarg, 1) < 0)
&& ! disable_x86_features
#endif
&& output_elf_type == -1
- && output_elf_osabi == -1))
+ && output_elf_osabi == -1
+ && output_elf_abiversion == -1))
usage (stderr, 1);
status = 0;