This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: Documenting the (dynamic) linking rules for symbol versioning
- From: Florian Weimer <fweimer at redhat dot com>
- To: "Michael Kerrisk (man-pages)" <mtk dot manpages at gmail dot com>, "libc-alpha at sourceware dot org" <libc-alpha at sourceware dot org>
- Cc: linux-man <linux-man at vger dot kernel dot org>, Siddhesh Poyarekar <siddhesh at sourceware dot org>, Carlos O'Donell <carlos at redhat dot com>, Rich Felker <dalias at aerifal dot cx>, "H.J. Lu" <hjl dot tools at gmail dot com>
- Date: Wed, 19 Apr 2017 17:48:40 +0200
- Subject: Re: Documenting the (dynamic) linking rules for symbol versioning
- Authentication-results: sourceware.org; auth=none
- Authentication-results: ext-mx09.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com
- Authentication-results: ext-mx09.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=fweimer at redhat dot com
- Dkim-filter: OpenDKIM Filter v2.11.0 mx1.redhat.com DBDAF61971
- Dmarc-filter: OpenDMARC Filter v1.3.2 mx1.redhat.com DBDAF61971
- References: <b3a962de-6703-d8b9-18f7-138185171475@gmail.com>
On 04/19/2017 05:07 PM, Michael Kerrisk (man-pages) wrote:
Am I right about my rough guess for the rationale for point 6,
or is there something else I should know/write about?
We currently have a bug where the symbol resolution depends on the order
of alternatives along a hash bucket list:
<https://sourceware.org/bugzilla/show_bug.cgi?id=12977#c2>
Another open problem is what happens when a versioned symbol moves from
one DSO to another. This is not a problem for unversioned symbols, but
we currently have a soname check for versioned symbols. This is rather
odd because this check isn't used to accelerate lookups. It does not
prevent symbol interposition from other DSOs, it merely introduces
spurious failures.
7. The way to remove a versioned symbol from a new release
of a shared library is to not define a default version
(NAME@@VERSION) for that symbol. (Right?)
In other words, if we wanted to create a VER_4 of lib_ver.so
that removed the symbol 'abc', we simply don't create use
the usual asm(".symver") magic to create abc@VER_4.
You still need to use .symver, but with a @ version instead of a @@ version.
Thanks,
Florian