atom feed16 messages in org.freebsd.freebsd-threadsSymbol versioning errors in libthr
FromSent OnAttachments
Dag-Erling SmørgravFeb 3, 2008 7:33 am 
Peter WemmFeb 3, 2008 8:24 am 
Dag-Erling SmørgravFeb 3, 2008 8:27 am 
Alexander KabaevFeb 3, 2008 8:27 am 
Kostik BelousovFeb 3, 2008 8:54 am 
Alexander KabaevFeb 3, 2008 9:11 am 
Daniel EischenFeb 3, 2008 9:14 am 
Daniel EischenFeb 3, 2008 9:14 am 
Dag-Erling SmørgravFeb 4, 2008 6:42 am.diff
Daniel EischenFeb 4, 2008 8:55 am 
Dag-Erling SmørgravFeb 4, 2008 9:04 am 
Daniel EischenFeb 4, 2008 9:10 am 
Dag-Erling SmørgravFeb 4, 2008 9:19 am 
Daniel EischenFeb 4, 2008 10:46 am 
David SchultzFeb 4, 2008 11:36 am 
Dag-Erling SmørgravFeb 5, 2008 12:41 am 
Subject:Symbol versioning errors in libthr
From:Daniel Eischen (deis@freebsd.org)
Date:Feb 3, 2008 9:14:16 am
List:org.freebsd.freebsd-threads

On Sun, 3 Feb 2008, Peter Wemm wrote:

On Feb 3, 2008 8:16 AM, Dag-Erling Sm?rgrav <de@des.no> wrote:

Here's an excerpt from the RELENG_7 vs HEAD diff of libthr's symbol map:

--- pthread.map 13 May 2007 14:12:39 -0000 1.18 +++ pthread.map 20 Dec 2007 04:32:28 -0000 1.21 @@ -84,9 +84,13 @@ pthread_multi_np; pthread_mutex_destroy; pthread_mutex_getprioceiling; + pthread_mutex_getspinloops_np; + pthread_mutex_getyieldloops_np; pthread_mutex_init; pthread_mutex_lock; pthread_mutex_setprioceiling; + pthread_mutex_setspinloops_np; + pthread_mutex_setyieldloops_np; pthread_mutex_timedlock; pthread_mutex_trylock; pthread_mutex_unlock;

These functions are all in FBSD_1.0, but they were introduced after the branch and never MFCed, so if I understand how we've implemented symbol versioning, they should be in FBSD_1.1.

Unless someone argues credibly for keeping them in FBSD_1.0, I will move them to FBSD_1.1 in a few days.

I'm not sure I see the point in that. Consider the not-moving-to-1.1 case. If somebody takes an 8.0 binary and runs it on 7.x, then they'll get a 'symbol not found' error. On the other hand, if they're moved and somebody tries the same thing, then they still get the same kind of 'symbol not found' error but with just one character different.

The point of symbol versioning is to allow incompatible changes. eg: to have a FBSD_1.0 version of pthread_mutex_getspinloops_np() *AND* a FBSD_1.1 version of pthread_mutex_getspinloops_np() in the library at the same time. The 1.0 instance would presumably be an API/ABI conversion wrapper around the newer functions.

New ABIs can be added to an existing namespace without breaking anything. But I believe we decided to always bump the namespace after a branch from HEAD and all new and ABI-changed symbols get added to that new namespace.

This will allow us to write tools to check if a binary compiled on one release can run on an earlier release.

Also, this does not prevent us from MFC'ing those symbols back to previous releases, they just have to be added to the same namespace from which they came.