elf: Add a way to check if tunable is set (BZ 27069)
[glibc.git] / time / tst-itimer.c
blob7cb6690af2aab94a096aa9f378323007b24c9f43
1 /* Basic tests for getitimer and setitimer.
2 Copyright (C) 2021-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <array_length.h>
20 #include <errno.h>
21 #include <stdlib.h>
22 #include <sys/time.h>
23 #include <support/check.h>
24 #include <support/support.h>
25 #include <support/xsignal.h>
26 #include <unistd.h>
27 #include <time.h>
29 static sig_atomic_t cnt;
31 static void
32 alrm_handler (int sig)
34 if (++cnt > 3)
35 cnt = 3;
38 static void
39 intr_sleep (int sec)
41 struct timespec ts = { .tv_sec = sec, .tv_nsec = 0 };
42 while (nanosleep (&ts, &ts) == -1 && errno == EINTR)
46 static int
47 do_test (void)
49 struct itimerval it, it_old;
50 const int timers[] = { ITIMER_REAL, ITIMER_VIRTUAL, ITIMER_PROF };
51 for (int i = 0; i < array_length (timers); i++)
53 TEST_COMPARE (getitimer (timers[i], &it), 0);
55 /* No timer set, all value should be 0. */
56 TEST_COMPARE (it.it_interval.tv_sec, 0);
57 TEST_COMPARE (it.it_interval.tv_usec, 0);
58 TEST_COMPARE (it.it_value.tv_sec, 0);
59 TEST_COMPARE (it.it_value.tv_usec, 0);
61 it.it_interval.tv_sec = 10;
62 it.it_interval.tv_usec = 20;
63 TEST_COMPARE (setitimer (timers[i], &it, NULL), 0);
65 TEST_COMPARE (setitimer (timers[i], &(struct itimerval) { 0 }, &it_old),
66 0);
67 /* ITIMER_REAL returns { 0, 0 } for single-shot timers, while
68 other timers returns setitimer value. */
69 if (timers[i] == ITIMER_REAL)
71 TEST_COMPARE (it_old.it_interval.tv_sec, 0);
72 TEST_COMPARE (it_old.it_interval.tv_usec, 0);
74 else
76 TEST_COMPARE (it_old.it_interval.tv_sec, 10);
77 /* Some systems might use a different precision for ITIMER_VIRTUAL
78 and ITIMER_IPROF and thus the value might be adjusted. To avoid
79 trying to guess the resolution, we do not check it. */
82 /* Create a periodic timer and check if the return value is the one
83 previously set. */
84 it.it_interval.tv_sec = 10;
85 it.it_interval.tv_usec = 20;
86 it.it_value.tv_sec = 30;
87 it.it_value.tv_usec = 40;
88 TEST_COMPARE (setitimer (timers[i], &it, NULL), 0);
90 TEST_COMPARE (setitimer (timers[i], &(struct itimerval) { 0 }, &it_old),
91 0);
92 TEST_COMPARE (it.it_interval.tv_sec, it_old.it_interval.tv_sec);
93 if (timers[i] == ITIMER_REAL)
94 TEST_COMPARE (it.it_interval.tv_usec, it_old.it_interval.tv_usec);
96 if (sizeof (time_t) == 4)
97 continue;
99 /* Same as before, but with a 64 bit time_t value. */
100 it.it_interval.tv_sec = (time_t) 0x1ffffffffull;
101 it.it_interval.tv_usec = 20;
102 it.it_value.tv_sec = 0;
103 it.it_value.tv_usec = 0;
105 /* Linux does not provide 64 bit time_t support for getitimer and
106 setitimer on architectures with 32 bit time_t support. */
107 if (support_itimer_support_time64())
109 TEST_COMPARE (setitimer (timers[i], &it, NULL), 0);
110 TEST_COMPARE (setitimer (timers[i], &(struct itimerval) { 0 },
111 &it_old),
113 /* ITIMER_REAL returns { 0, 0 } for single-sort timers, while other
114 timers returns setitimer value. */
115 if (timers[i] == ITIMER_REAL)
117 TEST_COMPARE (it_old.it_interval.tv_sec, 0ull);
118 TEST_COMPARE (it_old.it_interval.tv_usec, 0);
121 else
123 TEST_COMPARE (setitimer (timers[i], &it, NULL), -1);
124 TEST_COMPARE (errno, EOVERFLOW);
127 /* Create a periodic timer and check if the return value is the one
128 previously set. */
129 it.it_interval.tv_sec = (time_t) 0x1ffffffffull;
130 it.it_interval.tv_usec = 20;
131 it.it_value.tv_sec = 30;
132 it.it_value.tv_usec = 40;
133 if (support_itimer_support_time64())
135 TEST_COMPARE (setitimer (timers[i], &it, NULL), 0);
137 TEST_COMPARE (setitimer (timers[i], &(struct itimerval) { 0 },
138 &it_old),
140 if (timers[i] == ITIMER_REAL)
142 TEST_COMPARE (it.it_interval.tv_sec, it_old.it_interval.tv_sec);
143 TEST_COMPARE (it.it_interval.tv_usec, it_old.it_interval.tv_usec);
146 else
148 TEST_COMPARE (setitimer (timers[i], &it, NULL), -1);
149 TEST_COMPARE (errno, EOVERFLOW);
154 struct sigaction sa = { .sa_handler = alrm_handler, .sa_flags = 0 };
155 sigemptyset (&sa.sa_mask);
156 xsigaction (SIGALRM, &sa, NULL);
159 /* Setup a timer to 0.1s and sleep for 1s and check to 3 signal handler
160 execution. */
161 it.it_interval.tv_sec = 0;
162 it.it_interval.tv_usec = 100000;
163 it.it_value.tv_sec = 0;
164 it.it_value.tv_usec = 100000;
166 /* Check ITIMER_VIRTUAL and ITIMER_PROF would require to generate load
167 and be subject to system load. */
168 cnt = 0;
169 TEST_COMPARE (setitimer (ITIMER_REAL, &it, NULL), 0);
170 intr_sleep (1);
171 TEST_COMPARE (cnt, 3);
172 TEST_COMPARE (setitimer (ITIMER_REAL, &(struct itimerval) { 0 }, NULL), 0);
174 return 0;
177 #include <support/test-driver.c>