2021-01-02 19:32:25 +00:00
|
|
|
/* Copyright (C) 2003-2021 Free Software Foundation, Inc.
|
2003-03-25 20:41:26 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; see the file COPYING.LIB. If
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
not, see <https://www.gnu.org/licenses/>. */
|
2003-03-25 20:41:26 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sysdep.h>
|
|
|
|
#include <internaltypes.h>
|
2021-06-22 07:50:27 +00:00
|
|
|
#include <pthreadP.h>
|
2003-03-25 20:41:26 +00:00
|
|
|
#include "kernel-posix-timers.h"
|
2005-04-27 08:03:47 +00:00
|
|
|
#include "kernel-posix-cpu-timers.h"
|
2021-06-28 07:51:00 +00:00
|
|
|
#include <shlib-compat.h>
|
2003-03-25 20:41:26 +00:00
|
|
|
|
|
|
|
int
|
2021-06-28 07:51:00 +00:00
|
|
|
___timer_create (clockid_t clock_id, struct sigevent *evp, timer_t *timerid)
|
2003-03-25 20:41:26 +00:00
|
|
|
{
|
2012-08-16 14:03:43 +00:00
|
|
|
{
|
|
|
|
clockid_t syscall_clockid = (clock_id == CLOCK_PROCESS_CPUTIME_ID
|
|
|
|
? MAKE_PROCESS_CPUCLOCK (0, CPUCLOCK_SCHED)
|
|
|
|
: clock_id == CLOCK_THREAD_CPUTIME_ID
|
|
|
|
? MAKE_THREAD_CPUCLOCK (0, CPUCLOCK_SCHED)
|
|
|
|
: clock_id);
|
|
|
|
|
|
|
|
/* If the user wants notification via a thread we need to handle
|
|
|
|
this special. */
|
|
|
|
if (evp == NULL
|
|
|
|
|| __builtin_expect (evp->sigev_notify != SIGEV_THREAD, 1))
|
|
|
|
{
|
|
|
|
struct sigevent local_evp;
|
|
|
|
|
|
|
|
if (evp == NULL)
|
|
|
|
{
|
|
|
|
/* The kernel has to pass up the timer ID which is a
|
|
|
|
userlevel object. Therefore we cannot leave it up to
|
|
|
|
the kernel to determine it. */
|
|
|
|
local_evp.sigev_notify = SIGEV_SIGNAL;
|
|
|
|
local_evp.sigev_signo = SIGALRM;
|
2020-10-05 20:30:05 +00:00
|
|
|
local_evp.sigev_value.sival_ptr = NULL;
|
2012-08-16 14:03:43 +00:00
|
|
|
|
|
|
|
evp = &local_evp;
|
|
|
|
}
|
|
|
|
|
|
|
|
kernel_timer_t ktimerid;
|
2020-10-05 20:30:05 +00:00
|
|
|
if (INLINE_SYSCALL_CALL (timer_create, syscall_clockid, evp,
|
|
|
|
&ktimerid) == -1)
|
|
|
|
return -1;
|
2012-08-16 14:03:43 +00:00
|
|
|
|
2020-10-05 20:30:05 +00:00
|
|
|
*timerid = kernel_timer_to_timerid (ktimerid);
|
2012-08-16 14:03:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Create the helper thread. */
|
2021-06-28 07:51:00 +00:00
|
|
|
__pthread_once (&__timer_helper_once, __timer_start_helper_thread);
|
2021-06-25 08:51:31 +00:00
|
|
|
if (__timer_helper_tid == 0)
|
2012-08-16 14:03:43 +00:00
|
|
|
{
|
|
|
|
/* No resources to start the helper thread. */
|
|
|
|
__set_errno (EAGAIN);
|
2003-03-26 09:41:23 +00:00
|
|
|
return -1;
|
2012-08-16 14:03:43 +00:00
|
|
|
}
|
|
|
|
|
2020-10-05 20:30:05 +00:00
|
|
|
struct timer *newp = malloc (sizeof (struct timer));
|
2012-08-16 14:03:43 +00:00
|
|
|
if (newp == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Copy the thread parameters the user provided. */
|
|
|
|
newp->sival = evp->sigev_value;
|
|
|
|
newp->thrfunc = evp->sigev_notify_function;
|
|
|
|
|
|
|
|
/* We cannot simply copy the thread attributes since the
|
|
|
|
implementation might keep internal information for
|
|
|
|
each instance. */
|
2021-06-28 07:51:00 +00:00
|
|
|
__pthread_attr_init (&newp->attr);
|
2012-08-16 14:03:43 +00:00
|
|
|
if (evp->sigev_notify_attributes != NULL)
|
|
|
|
{
|
|
|
|
struct pthread_attr *nattr;
|
|
|
|
struct pthread_attr *oattr;
|
|
|
|
|
|
|
|
nattr = (struct pthread_attr *) &newp->attr;
|
|
|
|
oattr = (struct pthread_attr *) evp->sigev_notify_attributes;
|
|
|
|
|
|
|
|
nattr->schedparam = oattr->schedparam;
|
|
|
|
nattr->schedpolicy = oattr->schedpolicy;
|
|
|
|
nattr->flags = oattr->flags;
|
|
|
|
nattr->guardsize = oattr->guardsize;
|
|
|
|
nattr->stackaddr = oattr->stackaddr;
|
|
|
|
nattr->stacksize = oattr->stacksize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* In any case set the detach flag. */
|
2021-06-28 07:51:00 +00:00
|
|
|
__pthread_attr_setdetachstate (&newp->attr, PTHREAD_CREATE_DETACHED);
|
2012-08-16 14:03:43 +00:00
|
|
|
|
|
|
|
/* Create the event structure for the kernel timer. */
|
|
|
|
struct sigevent sev =
|
|
|
|
{ .sigev_value.sival_ptr = newp,
|
|
|
|
.sigev_signo = SIGTIMER,
|
|
|
|
.sigev_notify = SIGEV_SIGNAL | SIGEV_THREAD_ID,
|
2021-06-25 08:51:31 +00:00
|
|
|
._sigev_un = { ._pad = { [0] = __timer_helper_tid } } };
|
2012-08-16 14:03:43 +00:00
|
|
|
|
|
|
|
/* Create the timer. */
|
|
|
|
int res;
|
2020-10-05 20:30:05 +00:00
|
|
|
res = INTERNAL_SYSCALL_CALL (timer_create, syscall_clockid, &sev,
|
|
|
|
&newp->ktimerid);
|
|
|
|
if (INTERNAL_SYSCALL_ERROR_P (res))
|
2012-08-16 14:03:43 +00:00
|
|
|
{
|
2020-10-05 20:30:05 +00:00
|
|
|
free (newp);
|
|
|
|
__set_errno (INTERNAL_SYSCALL_ERRNO (res));
|
|
|
|
return -1;
|
2012-08-16 14:03:43 +00:00
|
|
|
}
|
|
|
|
|
2020-10-05 20:30:05 +00:00
|
|
|
/* Add to the queue of active timers with thread delivery. */
|
2021-06-28 07:51:00 +00:00
|
|
|
__pthread_mutex_lock (&__timer_active_sigev_thread_lock);
|
2021-06-25 08:51:31 +00:00
|
|
|
newp->next = __timer_active_sigev_thread;
|
|
|
|
__timer_active_sigev_thread = newp;
|
2021-06-28 07:51:00 +00:00
|
|
|
__pthread_mutex_unlock (&__timer_active_sigev_thread_lock);
|
2012-08-16 14:03:43 +00:00
|
|
|
|
2020-10-05 20:30:05 +00:00
|
|
|
*timerid = timer_to_timerid (newp);
|
2012-08-16 14:03:43 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-05 20:30:05 +00:00
|
|
|
|
|
|
|
return 0;
|
2003-03-25 20:41:26 +00:00
|
|
|
}
|
2021-06-28 07:51:00 +00:00
|
|
|
versioned_symbol (libc, ___timer_create, timer_create, GLIBC_2_34);
|
|
|
|
libc_hidden_ver (___timer_create, __timer_create)
|
|
|
|
|
|
|
|
#if TIMER_T_WAS_INT_COMPAT
|
|
|
|
# if OTHER_SHLIB_COMPAT (librt, GLIBC_2_3_3, GLIBC_2_34)
|
|
|
|
compat_symbol (librt, ___timer_create, timer_create, GLIBC_2_3_3);
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# if OTHER_SHLIB_COMPAT (librt, GLIBC_2_2, GLIBC_2_3_3)
|
|
|
|
timer_t __timer_compat_list[OLD_TIMER_MAX] __attribute__ ((nocommon));
|
|
|
|
libc_hidden_data_def (__timer_compat_list)
|
|
|
|
|
|
|
|
int
|
|
|
|
__timer_create_old (clockid_t clock_id, struct sigevent *evp, int *timerid)
|
|
|
|
{
|
|
|
|
timer_t newp;
|
|
|
|
|
|
|
|
int res = __timer_create (clock_id, evp, &newp);
|
|
|
|
if (res == 0)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < OLD_TIMER_MAX; ++i)
|
|
|
|
if (__timer_compat_list[i] == NULL
|
|
|
|
&& ! atomic_compare_and_exchange_bool_acq (&__timer_compat_list[i],
|
|
|
|
newp, NULL))
|
|
|
|
{
|
|
|
|
*timerid = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (__glibc_unlikely (i == OLD_TIMER_MAX))
|
|
|
|
{
|
|
|
|
/* No free slot. */
|
|
|
|
__timer_delete (newp);
|
|
|
|
__set_errno (EINVAL);
|
|
|
|
res = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
compat_symbol (librt, __timer_create_old, timer_create, GLIBC_2_2);
|
|
|
|
# endif /* OTHER_SHLIB_COMPAT */
|
|
|
|
|
|
|
|
#else /* !TIMER_T_WAS_INT_COMPAT */
|
|
|
|
# if OTHER_SHLIB_COMPAT (librt, GLIBC_2_2, GLIBC_2_34)
|
|
|
|
compat_symbol (librt, ___timer_create, timer_create, GLIBC_2_2);
|
|
|
|
# endif
|
|
|
|
#endif /* !TIMER_T_WAS_INT_COMPAT */
|