Browse Source
commit a7664973b2
Author: Jan Beulich <jbeulich@suse.com>
Date: Mon Apr 26 10:41:35 2021 +0200
x86: correct overflow checking for 16-bit PC-relative relocs
caused linker failure when building 16-bit program in a 32-bit ELF
container. Update GNU_PROPERTY_X86_FEATURE_2_USED with
#define GNU_PROPERTY_X86_FEATURE_2_CODE16 (1U << 12)
to indicate that 16-bit mode instructions are used in the input object:
https://groups.google.com/g/x86-64-abi/c/UvvXWeHIGMA
to indicate that 16-bit mode instructions are used in the object to
allow linker to properly perform relocation overflow check for 16-bit
PC-relative relocations in 16-bit mode instructions.
1. Update x86 assembler to always generate the GNU property note with
GNU_PROPERTY_X86_FEATURE_2_CODE16 for .code16 in ELF object.
2. Update i386 and x86-64 linkers to use 16-bit PC16 relocations if
input object is marked with GNU_PROPERTY_X86_FEATURE_2_CODE16.
bfd/
PR ld/27905
* elf32-i386.c: Include "libiberty.h".
(elf_howto_table): Add 16-bit R_386_PC16 entry.
(elf_i386_rtype_to_howto): Add a BFD argument. Use 16-bit
R_386_PC16 if input has 16-bit mode instructions.
(elf_i386_info_to_howto_rel): Update elf_i386_rtype_to_howto
call.
(elf_i386_tls_transition): Likewise.
(elf_i386_relocate_section): Likewise.
* elf64-x86-64.c (x86_64_elf_howto_table): Add 16-bit
R_X86_64_PC16 entry.
(elf_x86_64_rtype_to_howto): Use 16-bit R_X86_64_PC16 if input
has 16-bit mode instructions.
* elfxx-x86.c (_bfd_x86_elf_parse_gnu_properties): Set
elf_x86_has_code16 if relocatable input is marked with
GNU_PROPERTY_X86_FEATURE_2_CODE16.
* elfxx-x86.h (elf_x86_obj_tdata): Add has_code16.
(elf_x86_has_code16): New.
binutils/
PR ld/27905
* readelf.c (decode_x86_feature_2): Support
GNU_PROPERTY_X86_FEATURE_2_CODE16.
gas/
PR ld/27905
* config/tc-i386.c (set_code_flag): Update x86_feature_2_used
with GNU_PROPERTY_X86_FEATURE_2_CODE16 for .code16 in ELF
object.
(set_16bit_gcc_code_flag): Likewise.
(x86_cleanup): Always generate the GNU property note if
x86_feature_2_used isn't 0.
* testsuite/gas/i386/code16-2.d: New file.
* testsuite/gas/i386/code16-2.s: Likewise.
* testsuite/gas/i386/x86-64-code16-2.d: Likewise.
* testsuite/gas/i386/i386.exp: Run code16-2 and x86-64-code16-2.
include/
PR ld/27905
* elf/common.h (GNU_PROPERTY_X86_FEATURE_2_CODE16): New.
ld/
PR ld/27905
* testsuite/ld-i386/code16.d: New file.
* testsuite/ld-i386/code16.t: Likewise.
* testsuite/ld-x86-64/code16.d: Likewise.
* testsuite/ld-x86-64/code16.t: Likewise.
* testsuite/ld-i386/i386.exp: Run code16.
* testsuite/ld-x86-64/x86-64.exp: Likewise.
binutils-2_37-branch
22 changed files with 223 additions and 25 deletions
@ -0,0 +1,8 @@ |
|||
#name: i386 code16 2 |
|||
#as: -mx86-used-note=no --generate-missing-build-notes=no |
|||
#readelf: -n |
|||
|
|||
Displaying notes found in: .note.gnu.property |
|||
[ ]+Owner[ ]+Data size[ ]+Description |
|||
GNU 0x[0-9a-f]+ NT_GNU_PROPERTY_TYPE_0 |
|||
Properties: x86 feature used: x86, CODE16 |
|||
@ -0,0 +1,10 @@ |
|||
.code16gcc |
|||
.text |
|||
.section .text.default_process_op.isra.0,"ax",@progbits |
|||
.type default_process_op.isra.0, @function |
|||
default_process_op.isra.0: |
|||
ret |
|||
.section .text.mpt_scsi_process_op,"ax",@progbits |
|||
.type mpt_scsi_process_op, @function |
|||
mpt_scsi_process_op: |
|||
jmp default_process_op.isra.0 |
|||
@ -0,0 +1,9 @@ |
|||
#source: code16-2.s |
|||
#name: x86-64 code16 2 |
|||
#as: -mx86-used-note=no --generate-missing-build-notes=no |
|||
#readelf: -n |
|||
|
|||
Displaying notes found in: .note.gnu.property |
|||
[ ]+Owner[ ]+Data size[ ]+Description |
|||
GNU 0x[0-9a-f]+ NT_GNU_PROPERTY_TYPE_0 |
|||
Properties: x86 feature used: x86, CODE16 |
|||
@ -0,0 +1,19 @@ |
|||
#name: i386 R_386_PC16 reloc in 16-bit mode |
|||
#as: --32 -mx86-used-note=no --generate-missing-build-notes=no |
|||
#source: ${srcdir}/../../../gas/testsuite/gas/i386/code16-2.s |
|||
#ld: -T code16.t |
|||
#objdump: -dw -Mi8086 |
|||
|
|||
.*: +file format .* |
|||
|
|||
|
|||
Disassembly of section .text.default_process_op.isra.0: |
|||
|
|||
0+737c <default_process_op.isra.0>: |
|||
+[a-f0-9]+: 66 c3 retl |
|||
|
|||
Disassembly of section .text.mpt_scsi_process_op: |
|||
|
|||
0+f869 <mpt_scsi_process_op>: |
|||
+[a-f0-9]+: e9 10 7b jmp 737c <default_process_op.isra.0> |
|||
#pass |
|||
@ -0,0 +1,7 @@ |
|||
OUTPUT_FORMAT("elf32-i386") |
|||
OUTPUT_ARCH("i386") |
|||
SECTIONS |
|||
{ |
|||
.text.default_process_op.isra.0 0x737c : { *(.text.default_process_op.isra.0) } |
|||
.text.mpt_scsi_process_op 0xf869 : { *(.text.mpt_scsi_process_op) } |
|||
} |
|||
@ -0,0 +1,19 @@ |
|||
#name: x86-64 R_X86_64_PC16 reloc in 16-bit mode |
|||
#as: --64 -mx86-used-note=no --generate-missing-build-notes=no |
|||
#source: ${srcdir}/../../../gas/testsuite/gas/i386/code16-2.s |
|||
#ld: -T code16.t |
|||
#objdump: -dw -Mi8086 |
|||
|
|||
.*: +file format .* |
|||
|
|||
|
|||
Disassembly of section .text.default_process_op.isra.0: |
|||
|
|||
0+737c <default_process_op.isra.0>: |
|||
+[a-f0-9]+: 66 c3 retl |
|||
|
|||
Disassembly of section .text.mpt_scsi_process_op: |
|||
|
|||
0+f869 <mpt_scsi_process_op>: |
|||
+[a-f0-9]+: e9 10 7b jmp 737c <default_process_op.isra.0> |
|||
#pass |
|||
@ -0,0 +1,7 @@ |
|||
OUTPUT_FORMAT("elf64-x86-64") |
|||
OUTPUT_ARCH("i386:x86-64") |
|||
SECTIONS |
|||
{ |
|||
.text.default_process_op.isra.0 0x737c : { *(.text.default_process_op.isra.0) } |
|||
.text.mpt_scsi_process_op 0xf869 : { *(.text.mpt_scsi_process_op) } |
|||
} |
|||
Loading…
Reference in new issue