binutils-gdb/ld
H.J. Lu 0ff2b86e7c Create the second PLT for BND relocations
Intel MPX introduces 4 bound registers, which will be used for parameter
passing in x86-64.  Bound registers are cleared by branch instructions.
Branch instructions with BND prefix will keep bound register contents.
This leads to 2 requirements to 64-bit MPX run-time:

1. Dynamic linker (ld.so) should save and restore bound registers during
symbol lookup.
2. Change the current 16-byte PLT0:

  ff 35 08 00 00 00	pushq  GOT+8(%rip)
  ff 25 00 10 00	jmpq  *GOT+16(%rip)
  0f 1f 40 00		nopl   0x0(%rax)

and 16-byte PLT1:

  ff 25 00 00 00 00    	jmpq   *name@GOTPCREL(%rip)
  68 00 00 00 00       	pushq  $index
  e9 00 00 00 00       	jmpq   PLT0

which clear bound registers, to preserve bound registers.

We use 2 new relocations:

to mark branch instructions with BND prefix.

When linker sees any R_X86_64_PC32_BND or R_X86_64_PLT32_BND relocations,
it switches to a different PLT0:

  ff 35 08 00 00 00	pushq  GOT+8(%rip)
  f2 ff 25 00 10 00	bnd jmpq *GOT+16(%rip)
  0f 1f 00		nopl   (%rax)

to preserve bound registers for symbol lookup and it also creates an
external PLT section, .pl.bnd.  Linker will create a BND PLT1 entry
in .plt:

  68 00 00 00 00       	pushq  $index
  f2 e9 00 00 00 00     bnd jmpq PLT0
  0f 1f 44 00 00        nopl 0(%rax,%rax,1)

and a 8-byte BND PLT entry in .plt.bnd:

  f2 ff 25 00 00 00 00  bnd jmpq *name@GOTPCREL(%rip)
  90			nop

Otherwise, linker will create a legacy PLT1 entry in .plt:

  68 00 00 00 00       	pushq  $index
  e9 00 00 00 00        jmpq PLT0
  66 0f 1f 44 00 00     nopw 0(%rax,%rax,1)

and a 8-byte legacy PLT in .plt.bnd:

  ff 25 00 00 00 00     jmpq  *name@GOTPCREL(%rip)
  66 90                 xchg  %ax,%ax

The initial value of the GOT entry for "name" will be set to the the
"pushq" instruction in the corresponding entry in .plt.  Linker will
resolve reference of symbol "name" to the entry in the second PLT,
.plt.bnd.

Prelink stores the offset of pushq of PLT1 (plt_base + 0x10) in GOT[1]
and GOT[1] is stored in GOT[3].  We can undo prelink in GOT by computing
the corresponding the pushq offset with

GOT[1] + (GOT offset - &GOT[3]) * 2

Since for each entry in .plt except for PLT0 we create a 8-byte entry in
.plt.bnd, there is extra 8-byte per PLT symbol.

We also investigated the 16-byte entry for .plt.bnd.  We compared the
8-byte entry vs the the 16-byte entry for .plt.bnd on Sandy Bridge.
There are no performance differences in SPEC CPU 2000/2006 as well as
micro benchmarks.

Pros:
	No change to undo prelink in dynamic linker.
	Only 8-byte memory overhead for each PLT symbol.
Cons:
	Extra .plt.bnd section is needed.
	Extra 8 byte for legacy branches to PLT.
	GDB is unware of the new layout of .plt and .plt.bnd.

bfd/

	* elf64-x86-64.c (elf_x86_64_bnd_plt0_entry): New.
	(elf_x86_64_legacy_plt_entry): Likewise.
	(elf_x86_64_bnd_plt_entry): Likewise.
	(elf_x86_64_legacy_plt2_entry): Likewise.
	(elf_x86_64_bnd_plt2_entry): Likewise.
	(elf_x86_64_bnd_arch_bed): Likewise.
	(elf_x86_64_link_hash_entry): Add has_bnd_reloc and plt_bnd.
	(elf_x86_64_link_hash_table): Add plt_bnd.
	(elf_x86_64_link_hash_newfunc): Initialize has_bnd_reloc and
	plt_bnd.
	(elf_x86_64_copy_indirect_symbol): Also copy has_bnd_reloc.
	(elf_x86_64_check_relocs): Create the second PLT for Intel MPX
	in 64-bit mode.
	(elf_x86_64_allocate_dynrelocs): Handle the second PLT for IFUNC
	symbols.  Resolve call to the second PLT if it is created.
	(elf_x86_64_size_dynamic_sections): Keep the second PLT section.
	(elf_x86_64_relocate_section): Resolve PLT references to the
	second PLT if it is created.
	(elf_x86_64_finish_dynamic_symbol): Use BND PLT0 and fill the
	second PLT entry for BND relocation.
	(elf_x86_64_finish_dynamic_sections): Use MPX backend data if
	the second PLT is created.
	(elf_x86_64_get_synthetic_symtab): New.
	(bfd_elf64_get_synthetic_symtab): Likewise.  Undefine for NaCl.

ld/

	* emulparams/elf_x86_64.sh (TINY_READONLY_SECTION): New.

ld/testsuite/

	* ld-x86-64/mpx.exp: Run bnd-ifunc-1 and bnd-plt-1.
	* ld-x86-64/bnd-ifunc-1.d: New file.
	* ld-x86-64/bnd-ifunc-1.s: Likewise.
	* ld-x86-64/bnd-plt-1.d: Likewise.
2014-02-19 11:48:23 -08:00
..
emulparams Create the second PLT for BND relocations 2014-02-19 11:48:23 -08:00
emultempl Control powerpc64-ld provision of register save/restore 2014-02-19 14:53:50 +10:30
po binutils potfiles regen 2014-02-10 09:59:35 +10:30
scripttempl Make assignments to dot keep an empty output section. 2014-01-22 11:58:29 +10:30
testsuite Create the second PLT for BND relocations 2014-02-19 11:48:23 -08:00
.gitignore bfd/binutils/gas/gprof/ld/libiberty/opcodes: add .gitignore 2010-12-09 09:03:18 +00:00
ChangeLog Create the second PLT for BND relocations 2014-02-19 11:48:23 -08:00
ChangeLog-0001 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-0203 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2004 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2005 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2006 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2007 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2008 strip off +x bits on non-executable/script files 2013-12-07 02:03:03 -05:00
ChangeLog-2009 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2010 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2011 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2012 Rotate binutils ChangeLog for 2013 2013-01-02 17:06:32 +00:00
ChangeLog-2013 New Year - binutils ChangeLog rotation 2014-01-08 05:32:12 -08:00
ChangeLog-9197 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-9899 Add copyright notices 2012-12-10 12:48:03 +00:00
MAINTAINERS Add copyright notices 2012-12-17 16:56:12 +00:00
Makefile.am Nios II CALL26 linker relaxation 2014-01-30 17:47:07 -08:00
Makefile.in Nios II CALL26 linker relaxation 2014-01-30 17:47:07 -08:00
NEWS Add support for Andes NDS32: 2013-12-13 11:52:32 +00:00
README Add copyright notices 2012-12-17 16:56:12 +00:00
TODO
aclocal.m4 * configure.in (AC_CHECK_FUNCS): Add setlocale. 2012-04-05 08:43:41 +00:00
config.in * config.in: Disable sanity check for kfreebsd. 2012-09-10 22:30:57 +00:00
configure Add HOSTING_SLIBS and use it for -pie 2013-11-26 11:17:08 -08:00
configure.host Fix a typo 2013-11-26 11:25:25 -08:00
configure.in Add HOSTING_SLIBS and use it for -pie 2013-11-26 11:17:08 -08:00
configure.tgt The MSP430 linker contains emulations for old and obsolete MCU types. 2014-01-28 12:25:48 +00:00
deffile.h 2011-04-13 Kai Tietz <ktietz@redhat.com> 2011-04-13 12:53:36 +00:00
deffilep.y PR ld/15957 2013-09-17 13:57:21 +00:00
dep-in.sed * dep-in.sed: Don't use \n in replacement part of s command. 2009-06-04 06:57:56 +00:00
elf-hints-local.h Remove trailing white spaces in ld 2013-01-10 20:08:03 +00:00
fdl.texi etc/ChangeLog 2010-06-08 10:30:56 +00:00
gen-doc.texi Nios II CALL26 linker relaxation 2014-01-30 17:47:07 -08:00
genscrba.sh ld: 2008-01-11 09:11:18 +00:00
genscripts.sh Allow ld target customiser script to force on disk scripts. 2014-01-17 10:41:49 +10:30
h8-doc.texi Add copyright notices 2012-12-17 16:56:12 +00:00
ld.h Miscellaneous ld tidies 2014-01-22 12:51:19 +10:30
ld.texinfo Fix ALIGN_WITH_INPUT 2014-02-02 06:39:39 -08:00
ldcref.c * ldcref.c (output_one_cref): Place common definitions after 2013-06-12 07:48:32 +00:00
ldctor.c bfd/ 2012-08-06 22:27:52 +00:00
ldctor.h update copyright dates 2009-09-02 07:25:43 +00:00
ldemul.c ld/ 2012-03-25 06:45:16 +00:00
ldemul.h update copyright dates 2009-09-02 07:25:43 +00:00
ldexp.c Make assignments to dot keep an empty output section. 2014-01-22 11:58:29 +10:30
ldexp.h PR ld/14962 2012-12-17 00:16:49 +00:00
ldfile.c * ldfile.c (ldfile_open_command_file_1): Return after einfo 2013-03-06 13:48:46 +00:00
ldfile.h PR ld/10340 2012-03-08 05:29:33 +00:00
ldgram.y * ldexp.c: Add LOG2CEIL() builtin function to linker script language 2013-08-15 07:30:15 +00:00
ldint.texinfo Add directory section for info document. 2010-10-28 11:40:26 +00:00
ldlang.c Fix ALIGN_WITH_INPUT 2014-02-02 06:39:39 -08:00
ldlang.h Display the reference causing a shared library to be needed 2014-01-22 16:21:34 +10:30
ldlex-wrapper.c Add copyright notices 2012-12-17 16:56:12 +00:00
ldlex.h * ld.texinfo (-Tldata-segment): Describe. 2013-01-14 13:37:10 +00:00
ldlex.l * ldexp.c: Add LOG2CEIL() builtin function to linker script language 2013-08-15 07:30:15 +00:00
ldmain.c Display the reference causing a shared library to be needed 2014-01-22 16:21:34 +10:30
ldmain.h * archures.c: Add some more MSP430 machine numbers. 2013-05-02 21:06:15 +00:00
ldmisc.c Display the reference causing a shared library to be needed 2014-01-22 16:21:34 +10:30
ldmisc.h Applied patch series for LD plugin interface (six parts). 2010-10-14 01:31:33 +00:00
ldver.c Update copyright year to 2014 2014-01-08 05:48:12 -08:00
ldver.h update copyright dates 2009-09-02 07:25:43 +00:00
ldwrite.c Remove trailing white spaces in ld 2013-01-10 20:08:03 +00:00
ldwrite.h update copyright dates 2009-09-02 07:25:43 +00:00
lexsup.c * ld.texinfo (-Tldata-segment): Describe. 2013-01-14 13:37:10 +00:00
mri.c * ldgram.y: Add ALIGN_WITH_INPUT output section attribute. 2013-07-19 10:39:51 +00:00
mri.h update copyright dates 2009-09-02 07:25:43 +00:00
pe-dll.c * windres.c (define_resource): Use zero for timestamp, making 2013-11-22 14:55:56 +00:00
pe-dll.h 2010-04-05 Kai Tietz <kai.tietz@onevision.com> 2010-04-05 09:04:09 +00:00
pep-dll.c 2010-04-05 Kai Tietz <kai.tietz@onevision.com> 2010-04-05 09:04:09 +00:00
pep-dll.h 2010-04-05 Kai Tietz <kai.tietz@onevision.com> 2010-04-05 09:04:09 +00:00
plugin.c ld/ 2013-10-09 18:16:18 +00:00
plugin.h Improve plugin error handling 2012-12-03 14:34:06 +00:00
stamp-h.in
sysdep.h PR 14072 2012-05-17 15:13:28 +00:00
testplug.c Remove trailing redundant `;' 2012-11-09 08:29:34 +00:00

README

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

		README for LD

This is the GNU linker.  It is distributed with other "binary
utilities" which should be in ../binutils.  See ../binutils/README for
more general notes, including where to send bug reports.

There are many features of the linker:

* The linker uses a Binary File Descriptor library (../bfd)
  that it uses to read and write object files.  This helps
  insulate the linker itself from the format of object files.

* The linker supports a number of different object file
  formats.  It can even handle multiple formats at once:
  Read two input formats and write a third.

* The linker can be configured for cross-linking.

* The linker supports a control language.

* There is a user manual (ld.texinfo), as well as the
  beginnings of an internals manual (ldint.texinfo).

Installation
============

See ../binutils/README.

If you want to make a cross-linker, you may want to specify
a different search path of -lfoo libraries than the default.
You can do this by setting the LIB_PATH variable in ./Makefile
or using the --with-lib-path configure switch.

To build just the linker, make the target all-ld from the top level
directory (one directory above this one).

Porting to a new target
=======================

See the ldint.texinfo manual.

Reporting bugs etc
===========================

See ../binutils/README.

Known problems
==============

The Solaris linker normally exports all dynamic symbols from an
executable.  The GNU linker does not do this by default.  This is
because the GNU linker tries to present the same interface for all
similar targets (in this case, all native ELF targets).  This does not
matter for normal programs, but it can make a difference for programs
which try to dlopen an executable, such as PERL or Tcl.  You can make
the GNU linker export all dynamic symbols with the -E or
--export-dynamic command line option.

HP/UX 9.01 has a shell bug that causes the linker scripts to be
generated incorrectly.  The symptom of this appears to be "fatal error
- scanner input buffer overflow" error messages.  There are various
workarounds to this:
  * Build and install bash, and build with "make SHELL=bash".
  * Update to a version of HP/UX with a working shell (e.g., 9.05).
  * Replace "(. ${srcdir}/scripttempl/${SCRIPT_NAME}.sc)" in
    genscripts.sh with "sh ${srcdir}..." (no parens) and make sure the
    emulparams script used exports any shell variables it sets.

Copyright (C) 2012 Free Software Foundation, Inc.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.