[all-commits] [llvm/llvm-project] 49168b: [ELF] Enhance --no-allow-shlib-undefined to report...

Fangrui Song via All-commits all-commits at lists.llvm.org
Fri Nov 3 11:05:23 PDT 2023


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: 49168b2512ef55e225e9b7cd0821daa5c8ae5a9b
      https://github.com/llvm/llvm-project/commit/49168b2512ef55e225e9b7cd0821daa5c8ae5a9b
  Author: Fangrui Song <i at maskray.me>
  Date:   2023-11-03 (Fri, 03 Nov 2023)

  Changed paths:
    M lld/ELF/Writer.cpp
    M lld/test/ELF/allow-shlib-undefined.s

  Log Message:
  -----------
  [ELF] Enhance --no-allow-shlib-undefined to report non-exported definition (#70769)

For a DSO with all DT_NEEDED entries accounted for, if it contains an
undefined non-weak symbol that shares a name with a non-exported
definition (hidden visibility or localized by a version script), and
there is no DSO definition, we should also report an error. Because the
definition is not exported, it cannot resolve the DSO reference at
runtime.

GNU ld introduced this error-checking in [April
2003](https://sourceware.org/pipermail/binutils/2003-April/026568.html).
The feature is available for executable links but not for -shared, and
it is
orthogonal to --no-allow-shlib-undefined. We make the feature part of
--no-allow-shlib-undefined and work with -shared when
--no-allow-shlib-undefined is specified.

A subset of this error-checking is covered by commit
1981b1b6b92f7579a30c9ed32dbdf3bc749c1b40 for --gc-sections discarded
sections. This patch covers non-discarded sections as well.

Internally, I have identified 2 bugs (which would fail with
LD_BIND_NOW=1) covered by commit
1981b1b6b92f7579a30c9ed32dbdf3bc749c1b40




More information about the All-commits mailing list