2005-04-27 08:01:41 +00:00
|
|
|
/* clock_gettime -- Get current time from a POSIX clockid_t. Linux version.
|
2021-01-02 19:32:25 +00:00
|
|
|
Copyright (C) 2003-2021 Free Software Foundation, Inc.
|
2003-03-03 04:57:09 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
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; if not, see
|
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
|
|
|
<https://www.gnu.org/licenses/>. */
|
2003-03-03 04:57:09 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
2019-07-15 23:30:59 +00:00
|
|
|
#include <kernel-features.h>
|
2005-04-27 08:01:41 +00:00
|
|
|
#include <errno.h>
|
2005-05-09 19:23:39 +00:00
|
|
|
#include <time.h>
|
2005-04-27 08:01:41 +00:00
|
|
|
#include "kernel-posix-cpu-timers.h"
|
Consolidate vDSO macros and usage
This patch consolidate the Linux vDSO define and usage across all ports
that uses it. The common vDSO definitions and calling through
{INLINE/INTERNAL}_VSYSCALL macros are moved to a common header
sysdep-vdso.h and vDSO name declaration and prototype is defined
using a common macro.
Also PTR_{MANGLE,DEMANGLE} is added to ports that does not use them
for vDSO calls (aarch64, powerpc, s390, and tile) and thus it will
reflect in code changes. For ports that already implement pointer
mangling/demangling in vDSO system (i386, x32, x86_64) this patch
is mainly a code refactor.
Checked on x32, x86_64, x32, ppc64le, and aarch64.
2015-04-17 13:58:31 +00:00
|
|
|
#include <sysdep-vdso.h>
|
Finish move of clock_* functions to libc. [BZ #24959]
In glibc 2.17, the functions clock_getcpuclockid, clock_getres,
clock_gettime, clock_nanosleep, and clock_settime were moved from
librt.so to libc.so, leaving compatibility stubs behind. Now that the
dynamic linker no longer insists on finding versioned symbols in the
same library that originally defined them, we do not need the stubs
anymore, and this means we don't need GLIBC_PRIVATE __-prefix aliases
for most of the functions anymore either. (clock_gettime still needs
one.) For ports added before 2.17, libc.so needs to provide two
symbol versions for each, the default at GLIBC_2.17 plus a compat
version matching what librt had.
While I'm at it, move the clock_*.c files and their tests from rt/ to
time/.
2019-09-04 06:18:57 +00:00
|
|
|
#include <shlib-compat.h>
|
|
|
|
|
2019-02-01 12:19:42 +00:00
|
|
|
/* Get current value of CLOCK and store it in TP. */
|
|
|
|
int
|
2019-07-15 23:30:59 +00:00
|
|
|
__clock_gettime64 (clockid_t clock_id, struct __timespec64 *tp)
|
|
|
|
{
|
2019-12-13 20:30:15 +00:00
|
|
|
int r;
|
2020-07-10 12:50:04 +00:00
|
|
|
|
|
|
|
#ifndef __NR_clock_gettime64
|
|
|
|
# define __NR_clock_gettime64 __NR_clock_gettime
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_CLOCK_GETTIME64_VSYSCALL
|
2021-07-10 20:03:49 +00:00
|
|
|
int (*vdso_time64) (clockid_t clock_id, struct __timespec64 *tp)
|
|
|
|
= GLRO(dl_vdso_clock_gettime64);
|
|
|
|
if (vdso_time64 != NULL)
|
|
|
|
{
|
|
|
|
r = INTERNAL_VSYSCALL_CALL (vdso_time64, 2, clock_id, tp);
|
|
|
|
if (r == 0)
|
|
|
|
return 0;
|
|
|
|
return INLINE_SYSCALL_ERROR_RETURN_VALUE (-r);
|
|
|
|
}
|
2020-07-10 12:50:04 +00:00
|
|
|
#endif
|
|
|
|
|
2021-07-10 20:03:49 +00:00
|
|
|
#ifdef HAVE_CLOCK_GETTIME_VSYSCALL
|
|
|
|
int (*vdso_time) (clockid_t clock_id, struct timespec *tp)
|
|
|
|
= GLRO(dl_vdso_clock_gettime);
|
|
|
|
if (vdso_time != NULL)
|
|
|
|
{
|
|
|
|
struct timespec tp32;
|
|
|
|
r = INTERNAL_VSYSCALL_CALL (vdso_time, 2, clock_id, &tp32);
|
|
|
|
if (r == 0 && tp32.tv_sec > 0)
|
|
|
|
{
|
|
|
|
*tp = valid_timespec_to_timespec64 (tp32);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (r != 0)
|
|
|
|
return INLINE_SYSCALL_ERROR_RETURN_VALUE (-r);
|
|
|
|
|
|
|
|
/* Fallback to syscall if the 32-bit time_t vDSO returns overflows. */
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
r = INTERNAL_SYSCALL_CALL (clock_gettime64, clock_id, tp);
|
|
|
|
if (r == 0)
|
|
|
|
return 0;
|
|
|
|
if (r != -ENOSYS)
|
|
|
|
return INLINE_SYSCALL_ERROR_RETURN_VALUE (-r);
|
2020-07-10 12:50:04 +00:00
|
|
|
|
|
|
|
#ifndef __ASSUME_TIME64_SYSCALLS
|
2019-12-13 20:30:15 +00:00
|
|
|
/* Fallback code that uses 32-bit support. */
|
2019-07-15 23:30:59 +00:00
|
|
|
struct timespec tp32;
|
2021-07-10 20:03:49 +00:00
|
|
|
r = INTERNAL_SYSCALL_CALL (clock_gettime, clock_id, &tp32);
|
2019-12-13 20:30:15 +00:00
|
|
|
if (r == 0)
|
2021-07-10 20:03:49 +00:00
|
|
|
{
|
|
|
|
*tp = valid_timespec_to_timespec64 (tp32);
|
|
|
|
return 0;
|
|
|
|
}
|
2019-07-15 23:30:59 +00:00
|
|
|
#endif
|
2020-07-10 12:50:04 +00:00
|
|
|
|
2021-07-10 20:03:49 +00:00
|
|
|
return INLINE_SYSCALL_ERROR_RETURN_VALUE (-r);
|
2019-07-15 23:30:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if __TIMESIZE != 64
|
2020-03-14 23:18:36 +00:00
|
|
|
libc_hidden_def (__clock_gettime64)
|
|
|
|
|
2019-07-15 23:30:59 +00:00
|
|
|
int
|
2019-02-01 12:19:42 +00:00
|
|
|
__clock_gettime (clockid_t clock_id, struct timespec *tp)
|
|
|
|
{
|
2019-07-15 23:30:59 +00:00
|
|
|
int ret;
|
|
|
|
struct __timespec64 tp64;
|
|
|
|
|
|
|
|
ret = __clock_gettime64 (clock_id, &tp64);
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
if (! in_time_t_range (tp64.tv_sec))
|
|
|
|
{
|
|
|
|
__set_errno (EOVERFLOW);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*tp = valid_timespec64_to_timespec (tp64);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2019-02-01 12:19:42 +00:00
|
|
|
}
|
2019-07-15 23:30:59 +00:00
|
|
|
#endif
|
2019-02-01 12:19:42 +00:00
|
|
|
libc_hidden_def (__clock_gettime)
|
Finish move of clock_* functions to libc. [BZ #24959]
In glibc 2.17, the functions clock_getcpuclockid, clock_getres,
clock_gettime, clock_nanosleep, and clock_settime were moved from
librt.so to libc.so, leaving compatibility stubs behind. Now that the
dynamic linker no longer insists on finding versioned symbols in the
same library that originally defined them, we do not need the stubs
anymore, and this means we don't need GLIBC_PRIVATE __-prefix aliases
for most of the functions anymore either. (clock_gettime still needs
one.) For ports added before 2.17, libc.so needs to provide two
symbol versions for each, the default at GLIBC_2.17 plus a compat
version matching what librt had.
While I'm at it, move the clock_*.c files and their tests from rt/ to
time/.
2019-09-04 06:18:57 +00:00
|
|
|
|
|
|
|
versioned_symbol (libc, __clock_gettime, clock_gettime, GLIBC_2_17);
|
|
|
|
/* clock_gettime moved to libc in version 2.17;
|
|
|
|
old binaries may expect the symbol version it had in librt. */
|
|
|
|
#if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_17)
|
|
|
|
strong_alias (__clock_gettime, __clock_gettime_2);
|
|
|
|
compat_symbol (libc, __clock_gettime_2, clock_gettime, GLIBC_2_2);
|
|
|
|
#endif
|