about summary refs log tree commit diff
path: root/elf/tst-protected1a.c
diff options
context:
space:
mode:
authorFangrui Song <maskray@google.com>2021-02-01 09:29:26 -0800
committerFangrui Song <maskray@google.com>2021-02-01 09:44:08 -0800
commit02d393f2483aedc4ce74e6edf8a15f063198041d (patch)
tree0139e65992844522f79047bf4800b06d5e9823b3 /elf/tst-protected1a.c
parent2edf8f3d754407e04f534df18a2ebe04175cda48 (diff)
downloadglibc-02d393f2483aedc4ce74e6edf8a15f063198041d.tar.gz
glibc-02d393f2483aedc4ce74e6edf8a15f063198041d.tar.xz
glibc-02d393f2483aedc4ce74e6edf8a15f063198041d.zip
elf: Replace a --defsym trick with an object file to be compatible with LLD
The existing code specifies -Wl,--defsym=malloc=0 and other malloc.os
definitions before libc_pic.a so that libc_pic.a(malloc.os) is not
fetched. This trick is used to avoid multiple definition errors which
would happen as a chain result:

  dl-allobjs.os has an undefined __libc_scratch_buffer_set_array_size
  __libc_scratch_buffer_set_array_size fetches libc_pic.a(scratch_buffer_set_array_size.os)
  libc_pic.a(scratch_buffer_set_array_size.os) has an undefined free
  free fetches libc_pic.a(malloc.os)
  libc_pic.a(malloc.os) has an undefined __libc_message
  __libc_message fetches libc_pic.a(libc_fatal.os)

  libc_fatal.os will cause a multiple definition error (__GI___libc_fatal)
  >>> defined at dl-fxstatat64.c
  >>>            /tmp/p/glibc/Release/elf/dl-allobjs.os:(__GI___libc_fatal)
  >>> defined at libc_fatal.c
  >>>            libc_fatal.os:(.text+0x240) in archive /tmp/p/glibc/Release/libc_pic.a

LLD processes --defsym after all input files, so this trick does not
suppress multiple definition errors with LLD. Split the step into two
and use an object file to make the intention more obvious and make LLD
work.

This is conceptually more appropriate because --defsym defines a SHN_ABS
symbol while a normal definition is relative to the image base.

See https://sourceware.org/pipermail/libc-alpha/2020-March/111910.html
for discussions about the --defsym semantics.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'elf/tst-protected1a.c')
0 files changed, 0 insertions, 0 deletions