* [PATCH] elf: Add glibc version dependency only if needed
@ 2024-07-09 8:48 H.J. Lu
2024-07-09 9:30 ` Andreas Schwab
0 siblings, 1 reply; 4+ messages in thread
From: H.J. Lu @ 2024-07-09 8:48 UTC (permalink / raw)
To: binutils
There is no need to add a needed glibc version if the glibc base version
includes the needed glibc version.
PR ld/31966
* elflink.c (elf_link_add_glibc_verneed): Add glibc_minor_base.
Skip if the glibc base version includes the needed glibc version.
(_bfd_elf_link_add_glibc_version_dependency): Initialize
glibc_minor_base to INT_MAX and pass it to
elf_link_add_glibc_verneed.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
---
bfd/elflink.c | 32 +++++++++++++++++++++++---------
1 file changed, 23 insertions(+), 9 deletions(-)
diff --git a/bfd/elflink.c b/bfd/elflink.c
index cca0c67f960..a180e59e8ca 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -2247,16 +2247,19 @@ _bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
\f
/* Return the glibc version reference if VERSION_DEP is added to the
list of glibc version dependencies successfully. VERSION_DEP will
- be put into the .gnu.version_r section. */
+ be put into the .gnu.version_r section. GLIBC_MINOR_BASE is the
+ pointer to the glibc minor base version. */
static Elf_Internal_Verneed *
elf_link_add_glibc_verneed (struct elf_find_verdep_info *rinfo,
Elf_Internal_Verneed *glibc_verref,
- const char *version_dep)
+ const char *version_dep,
+ int *glibc_minor_base)
{
Elf_Internal_Verneed *t;
Elf_Internal_Vernaux *a;
size_t amt;
+ int minor_version = -1;
if (glibc_verref != NULL)
{
@@ -2272,8 +2275,6 @@ elf_link_add_glibc_verneed (struct elf_find_verdep_info *rinfo,
}
else
{
- bool is_glibc;
-
for (t = elf_tdata (rinfo->info->output_bfd)->verref;
t != NULL;
t = t->vn_nextref)
@@ -2287,7 +2288,6 @@ elf_link_add_glibc_verneed (struct elf_find_verdep_info *rinfo,
if (t == NULL)
return t;
- is_glibc = false;
for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
{
/* Return if VERSION_DEP dependency has been added. */
@@ -2296,12 +2296,24 @@ elf_link_add_glibc_verneed (struct elf_find_verdep_info *rinfo,
return t;
/* Check if libc.so provides GLIBC_2.XX version. */
- if (!is_glibc && startswith (a->vna_nodename, "GLIBC_2."))
- is_glibc = true;
+ if (startswith (a->vna_nodename, "GLIBC_2."))
+ {
+ minor_version = strtol (a->vna_nodename + 8, NULL, 10);
+ if (minor_version < *glibc_minor_base)
+ *glibc_minor_base = minor_version;
+ }
}
/* Skip if it isn't linked against glibc. */
- if (!is_glibc)
+ if (minor_version < 0)
+ return NULL;
+ }
+
+ /* Skip if 2.GLIBC_MINOR_BASE includes VERSION_DEP. */
+ if (startswith (version_dep, "GLIBC_2."))
+ {
+ minor_version = strtol (version_dep + 8, NULL, 10);
+ if (minor_version <= *glibc_minor_base)
return NULL;
}
@@ -2333,10 +2345,12 @@ _bfd_elf_link_add_glibc_version_dependency
const char *version_dep[])
{
Elf_Internal_Verneed *t = NULL;
+ int glibc_minor_base = INT_MAX;
do
{
- t = elf_link_add_glibc_verneed (rinfo, t, *version_dep);
+ t = elf_link_add_glibc_verneed (rinfo, t, *version_dep,
+ &glibc_minor_base);
/* Return if there is no glibc version reference. */
if (t == NULL)
return;
--
2.45.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] elf: Add glibc version dependency only if needed
2024-07-09 8:48 [PATCH] elf: Add glibc version dependency only if needed H.J. Lu
@ 2024-07-09 9:30 ` Andreas Schwab
2024-07-09 11:06 ` H.J. Lu
0 siblings, 1 reply; 4+ messages in thread
From: Andreas Schwab @ 2024-07-09 9:30 UTC (permalink / raw)
To: H.J. Lu; +Cc: binutils
On Jul 09 2024, H.J. Lu wrote:
> There is no need to add a needed glibc version if the glibc base version
> includes the needed glibc version.
>
> PR ld/31966
> * elflink.c (elf_link_add_glibc_verneed): Add glibc_minor_base.
> Skip if the glibc base version includes the needed glibc version.
> (_bfd_elf_link_add_glibc_version_dependency): Initialize
> glibc_minor_base to INT_MAX and pass it to
> elf_link_add_glibc_verneed.
Why was this not handled by a special version symbol like
GLIBC_ABI_DT_RELR?
--
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] elf: Add glibc version dependency only if needed
2024-07-09 9:30 ` Andreas Schwab
@ 2024-07-09 11:06 ` H.J. Lu
2024-07-09 21:40 ` H.J. Lu
0 siblings, 1 reply; 4+ messages in thread
From: H.J. Lu @ 2024-07-09 11:06 UTC (permalink / raw)
To: Andreas Schwab; +Cc: Binutils
[-- Attachment #1: Type: text/plain, Size: 957 bytes --]
On Tue, Jul 9, 2024, 5:30 PM Andreas Schwab <schwab@suse.de> wrote:
> On Jul 09 2024, H.J. Lu wrote:
>
> > There is no need to add a needed glibc version if the glibc base version
> > includes the needed glibc version.
> >
> > PR ld/31966
> > * elflink.c (elf_link_add_glibc_verneed): Add glibc_minor_base.
> > Skip if the glibc base version includes the needed glibc version.
> > (_bfd_elf_link_add_glibc_version_dependency): Initialize
> > glibc_minor_base to INT_MAX and pass it to
> > elf_link_add_glibc_verneed.
>
> Why was this not handled by a special version symbol like
> GLIBC_ABI_DT_RELR?
>
It is because the relevant change was
done in glibc 2.36 well before mark-plt
change was added to binutils.
> --
> Andreas Schwab, SUSE Labs, schwab@suse.de
> GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7
> "And now for something completely different."
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] elf: Add glibc version dependency only if needed
2024-07-09 11:06 ` H.J. Lu
@ 2024-07-09 21:40 ` H.J. Lu
0 siblings, 0 replies; 4+ messages in thread
From: H.J. Lu @ 2024-07-09 21:40 UTC (permalink / raw)
To: Andreas Schwab; +Cc: Binutils
[-- Attachment #1: Type: text/plain, Size: 1129 bytes --]
On Tue, Jul 9, 2024, 7:06 PM H.J. Lu <hjl.tools@gmail.com> wrote:
>
> On Tue, Jul 9, 2024, 5:30 PM Andreas Schwab <schwab@suse.de> wrote:
>
>> On Jul 09 2024, H.J. Lu wrote:
>>
>> > There is no need to add a needed glibc version if the glibc base version
>> > includes the needed glibc version.
>> >
>> > PR ld/31966
>> > * elflink.c (elf_link_add_glibc_verneed): Add glibc_minor_base.
>> > Skip if the glibc base version includes the needed glibc version.
>> > (_bfd_elf_link_add_glibc_version_dependency): Initialize
>> > glibc_minor_base to INT_MAX and pass it to
>> > elf_link_add_glibc_verneed.
>>
>> Why was this not handled by a special version symbol like
>> GLIBC_ABI_DT_RELR?
>>
>
> It is because the relevant change was
> done in glibc 2.36 well before mark-plt
> change was added to binutils.
>
Fixed on master. I am backporting it to 2.42 branch.
>
>> --
>> Andreas Schwab, SUSE Labs, schwab@suse.de
>> GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7
>> "And now for something completely different."
>>
>>
>>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-07-09 21:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-09 8:48 [PATCH] elf: Add glibc version dependency only if needed H.J. Lu
2024-07-09 9:30 ` Andreas Schwab
2024-07-09 11:06 ` H.J. Lu
2024-07-09 21:40 ` H.J. Lu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).