Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix mq_notify pthread_barrier_* namespace (bug 18544).
mq_notify (present in POSIX by 1996) brings in references to
pthread_barrier_init and pthread_barrier_wait (new in the 2001 edition
of POSIX).  This patch fixes this by making those functions into weak
aliases of __pthread_barrier_*, exporting the __pthread_barrier_*
names at version GLIBC_PRIVATE and using them in mq_notify.

Tested for x86_64 and x86 (testsuite, and comparison of installed
stripped shared libraries).  Changes in addresses from dynamic symbol
table / PLT changes render most comparisons not particularly useful,
but when the addresses of subsequent code don't change there's no sign
of unexpected changes there.  This patch does not remove any
linknamespace XFAILs because of other namespace issues remaining with
mqueue.h functions.

	[BZ #18544]
	* nptl/pthread_barrier_init.c (pthread_barrier_init): Rename to
	__pthread_barrier_init and define as weak alias of
	__pthread_barrier_init.
	* sysdeps/sparc/nptl/pthread_barrier_init.c
	(pthread_barrier_init): Likewise.
	* nptl/pthread_barrier_wait.c (pthread_barrier_wait): Rename to
	__pthread_barrier_wait and define as weak alias of
	__pthread_barrier_wait.
	* sysdeps/sparc/nptl/pthread_barrier_wait.c
	(pthread_barrier_wait): Likewise.
	* sysdeps/sparc/sparc32/pthread_barrier_wait.c
	(pthread_barrier_wait): Likewise.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S
	(pthread_barrier_wait): Likewise.
	* sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S
	(pthread_barrier_wait): Likewise.
	* nptl/Versions (libpthread): Export __pthread_barrier_init and
	__pthread_barrier_wait at version GLIBC_PRIVATE.
	* include/pthread.h (__pthread_barrier_init): Declare.
	(__pthread_barrier_wait): Likewise.
	* sysdeps/unix/sysv/linux/mq_notify.c (notification_function):
	Call __pthread_barrier_wait instead of pthread_barrier_wait.
	(helper_thread): Likewise.
	(init_mq_netlink): Call __pthread_barrier_init instead of
	pthread_barrier_init.
  • Loading branch information
Joseph Myers committed Jun 17, 2015
1 parent 45dcd79 commit 90dd591
Show file tree
Hide file tree
Showing 12 changed files with 62 additions and 17 deletions.
27 changes: 27 additions & 0 deletions ChangeLog
@@ -1,5 +1,32 @@
2015-06-17 Joseph Myers <joseph@codesourcery.com>

[BZ #18544]
* nptl/pthread_barrier_init.c (pthread_barrier_init): Rename to
__pthread_barrier_init and define as weak alias of
__pthread_barrier_init.
* sysdeps/sparc/nptl/pthread_barrier_init.c
(pthread_barrier_init): Likewise.
* nptl/pthread_barrier_wait.c (pthread_barrier_wait): Rename to
__pthread_barrier_wait and define as weak alias of
__pthread_barrier_wait.
* sysdeps/sparc/nptl/pthread_barrier_wait.c
(pthread_barrier_wait): Likewise.
* sysdeps/sparc/sparc32/pthread_barrier_wait.c
(pthread_barrier_wait): Likewise.
* sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S
(pthread_barrier_wait): Likewise.
* sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S
(pthread_barrier_wait): Likewise.
* nptl/Versions (libpthread): Export __pthread_barrier_init and
__pthread_barrier_wait at version GLIBC_PRIVATE.
* include/pthread.h (__pthread_barrier_init): Declare.
(__pthread_barrier_wait): Likewise.
* sysdeps/unix/sysv/linux/mq_notify.c (notification_function):
Call __pthread_barrier_wait instead of pthread_barrier_wait.
(helper_thread): Likewise.
(init_mq_netlink): Call __pthread_barrier_init instead of
pthread_barrier_init.

[BZ #18542]
* libio/iovswscanf.c (__vswscanf): Use libc_hidden_def.
(vswscanf): Use ldbl_weak_alias instead of ldbl_strong_alias
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Expand Up @@ -22,7 +22,7 @@ Version 2.22
18324, 18333, 18346, 18397, 18409, 18410, 18412, 18418, 18422, 18434,
18444, 18468, 18469, 18470, 18479, 18483, 18495, 18496, 18497, 18498,
18507, 18512, 18519, 18520, 18522, 18527, 18528, 18529, 18530, 18532,
18533, 18534, 18536, 18539, 18540, 18542.
18533, 18534, 18536, 18539, 18540, 18542, 18544.

* Cache information can be queried via sysconf() function on s390 e.g. with
_SC_LEVEL1_ICACHE_SIZE as argument.
Expand Down
10 changes: 10 additions & 0 deletions include/pthread.h
@@ -1,6 +1,16 @@
#include_next <pthread.h>

#ifndef _ISOMAC
/* Prototypes repeated instead of using __typeof because pthread.h is
included in C++ tests, and declaring functions with __typeof and
__THROW doesn't work for C++. */
extern int __pthread_barrier_init (pthread_barrier_t *__restrict __barrier,
const pthread_barrierattr_t *__restrict
__attr, unsigned int __count)
__THROW __nonnull ((1));
extern int __pthread_barrier_wait (pthread_barrier_t *__barrier)
__THROWNL __nonnull ((1));

/* This function is called to initialize the pthread library. */
extern void __pthread_initialize (void) __attribute__ ((weak));
#endif
1 change: 1 addition & 0 deletions nptl/Versions
Expand Up @@ -273,6 +273,7 @@ libpthread {
__pthread_initialize_minimal;
__pthread_clock_gettime; __pthread_clock_settime;
__pthread_unwind; __pthread_get_minstack;
__pthread_barrier_init; __pthread_barrier_wait;
__shm_directory;
}
}
3 changes: 2 additions & 1 deletion nptl/pthread_barrier_init.c
Expand Up @@ -29,7 +29,7 @@ static const struct pthread_barrierattr default_barrierattr =


int
pthread_barrier_init (barrier, attr, count)
__pthread_barrier_init (barrier, attr, count)
pthread_barrier_t *barrier;
const pthread_barrierattr_t *attr;
unsigned int count;
Expand Down Expand Up @@ -68,3 +68,4 @@ pthread_barrier_init (barrier, attr, count)

return 0;
}
weak_alias (__pthread_barrier_init, pthread_barrier_init)
3 changes: 2 additions & 1 deletion nptl/pthread_barrier_wait.c
Expand Up @@ -24,7 +24,7 @@

/* Wait on barrier. */
int
pthread_barrier_wait (barrier)
__pthread_barrier_wait (barrier)
pthread_barrier_t *barrier;
{
struct pthread_barrier *ibarrier = (struct pthread_barrier *) barrier;
Expand Down Expand Up @@ -76,3 +76,4 @@ pthread_barrier_wait (barrier)

return result;
}
weak_alias (__pthread_barrier_wait, pthread_barrier_wait)
3 changes: 2 additions & 1 deletion sysdeps/sparc/nptl/pthread_barrier_init.c
Expand Up @@ -22,7 +22,7 @@
#include <sparc-nptl.h>

int
pthread_barrier_init (barrier, attr, count)
__pthread_barrier_init (barrier, attr, count)
pthread_barrier_t *barrier;
const pthread_barrierattr_t *attr;
unsigned int count;
Expand Down Expand Up @@ -53,3 +53,4 @@ pthread_barrier_init (barrier, attr, count)

return 0;
}
weak_alias (__pthread_barrier_init, pthread_barrier_init)
3 changes: 2 additions & 1 deletion sysdeps/sparc/nptl/pthread_barrier_wait.c
Expand Up @@ -24,7 +24,7 @@

/* Wait on barrier. */
int
pthread_barrier_wait (barrier)
__pthread_barrier_wait (barrier)
pthread_barrier_t *barrier;
{
union sparc_pthread_barrier *ibarrier
Expand Down Expand Up @@ -76,3 +76,4 @@ pthread_barrier_wait (barrier)

return result;
}
weak_alias (__pthread_barrier_wait, pthread_barrier_wait)
3 changes: 2 additions & 1 deletion sysdeps/sparc/sparc32/pthread_barrier_wait.c
Expand Up @@ -24,7 +24,7 @@

/* Wait on barrier. */
int
pthread_barrier_wait (barrier)
__pthread_barrier_wait (barrier)
pthread_barrier_t *barrier;
{
union sparc_pthread_barrier *ibarrier
Expand Down Expand Up @@ -92,3 +92,4 @@ pthread_barrier_wait (barrier)

return result;
}
weak_alias (__pthread_barrier_wait, pthread_barrier_wait)
9 changes: 5 additions & 4 deletions sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S
Expand Up @@ -22,10 +22,10 @@

.text

.globl pthread_barrier_wait
.type pthread_barrier_wait,@function
.globl __pthread_barrier_wait
.type __pthread_barrier_wait,@function
.align 16
pthread_barrier_wait:
__pthread_barrier_wait:
cfi_startproc
pushl %ebx
cfi_adjust_cfa_offset(4)
Expand Down Expand Up @@ -183,4 +183,5 @@ pthread_barrier_wait:
call __lll_unlock_wake
jmp 10b
cfi_endproc
.size pthread_barrier_wait,.-pthread_barrier_wait
.size __pthread_barrier_wait,.-__pthread_barrier_wait
weak_alias (__pthread_barrier_wait, pthread_barrier_wait)
6 changes: 3 additions & 3 deletions sysdeps/unix/sysv/linux/mq_notify.c
Expand Up @@ -92,7 +92,7 @@ notification_function (void *arg)
union sigval param = data->param;

/* Let the parent go. */
(void) pthread_barrier_wait (&notify_barrier);
(void) __pthread_barrier_wait (&notify_barrier);

/* Make the thread detached. */
(void) pthread_detach (pthread_self ());
Expand Down Expand Up @@ -132,7 +132,7 @@ helper_thread (void *arg)
== 0, 0))
/* Since we passed a pointer to DATA to the new thread we have
to wait until it is done with it. */
(void) pthread_barrier_wait (&notify_barrier);
(void) __pthread_barrier_wait (&notify_barrier);
}
else if (data.raw[NOTIFY_COOKIE_LEN - 1] == NOTIFY_REMOVED)
/* The only state we keep is the copy of the thread attributes. */
Expand Down Expand Up @@ -166,7 +166,7 @@ init_mq_netlink (void)
int err = 1;

/* Initialize the barrier. */
if (__builtin_expect (pthread_barrier_init (&notify_barrier, NULL, 2) == 0,
if (__builtin_expect (__pthread_barrier_init (&notify_barrier, NULL, 2) == 0,
0))
{
/* Create the helper thread. */
Expand Down
9 changes: 5 additions & 4 deletions sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S
Expand Up @@ -23,10 +23,10 @@

.text

.globl pthread_barrier_wait
.type pthread_barrier_wait,@function
.globl __pthread_barrier_wait
.type __pthread_barrier_wait,@function
.align 16
pthread_barrier_wait:
__pthread_barrier_wait:
/* Get the mutex. */
xorl %eax, %eax
movl $1, %esi
Expand Down Expand Up @@ -157,4 +157,5 @@ pthread_barrier_wait:
xorl $LLL_SHARED, %esi
callq __lll_unlock_wake
jmp 10b
.size pthread_barrier_wait,.-pthread_barrier_wait
.size __pthread_barrier_wait,.-__pthread_barrier_wait
weak_alias (__pthread_barrier_wait, pthread_barrier_wait)

0 comments on commit 90dd591

Please sign in to comment.