]> granicus.if.org Git - strace/blob - tests/clock_nanosleep.c
Use <asm/unistd.h> instead of <sys/syscall.h>
[strace] / tests / clock_nanosleep.c
1 /*
2  * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include "tests.h"
29 #include <assert.h>
30 #include <stdio.h>
31 #include <stdint.h>
32 #include <signal.h>
33 #include <time.h>
34 #include <unistd.h>
35 #include <sys/time.h>
36 #include <asm/unistd.h>
37
38 static void
39 handler(int signo)
40 {
41 }
42
43 int
44 main(void)
45 {
46         struct {
47                 struct timespec ts;
48                 uint32_t pad[2];
49         } req = {
50                 .ts.tv_nsec = 0xc0de1,
51                 .pad = { 0xdeadbeef, 0xbadc0ded }
52         }, rem = {
53                 .ts = { .tv_sec = 0xc0de2, .tv_nsec = 0xc0de3 },
54                 .pad = { 0xdeadbeef, 0xbadc0ded }
55         };
56         const sigset_t set = {};
57         const struct sigaction act = { .sa_handler = handler };
58         const struct itimerval itv = {
59                 .it_interval.tv_usec = 222222,
60                 .it_value.tv_usec = 111111
61         };
62
63         if (syscall(__NR_clock_nanosleep, CLOCK_REALTIME, 0, &req.ts, NULL))
64                 perror_msg_and_skip("clock_nanosleep CLOCK_REALTIME");
65         printf("clock_nanosleep(CLOCK_REALTIME, 0, {%jd, %jd}, NULL) = 0\n",
66                (intmax_t) req.ts.tv_sec, (intmax_t) req.ts.tv_nsec);
67
68         assert(syscall(__NR_clock_nanosleep, CLOCK_REALTIME, 0,
69                        NULL, &rem.ts) == -1);
70         printf("clock_nanosleep(CLOCK_REALTIME, 0, NULL, %p)"
71                " = -1 EFAULT (%m)\n", &rem.ts);
72
73         assert(syscall(__NR_clock_nanosleep, CLOCK_REALTIME, 0,
74                        &req.ts, &rem.ts) == 0);
75         printf("clock_nanosleep(CLOCK_REALTIME, 0, {%jd, %jd}, %p) = 0\n",
76                (intmax_t) req.ts.tv_sec, (intmax_t) req.ts.tv_nsec, &rem.ts);
77
78         req.ts.tv_nsec = 999999999 + 1;
79         assert(syscall(__NR_clock_nanosleep, CLOCK_MONOTONIC, 0,
80                        &req.ts, &rem.ts) == -1);
81         printf("clock_nanosleep(CLOCK_MONOTONIC, 0"
82                ", {%jd, %jd}, %p) = -1 EINVAL (%m)\n",
83                (intmax_t) req.ts.tv_sec, (intmax_t) req.ts.tv_nsec, &rem.ts);
84
85         assert(sigaction(SIGALRM, &act, NULL) == 0);
86         assert(sigprocmask(SIG_SETMASK, &set, NULL) == 0);
87
88         if (setitimer(ITIMER_REAL, &itv, NULL))
89                 perror_msg_and_skip("setitimer");
90         printf("setitimer(ITIMER_REAL, {it_interval={%jd, %jd}"
91                ", it_value={%jd, %jd}}, NULL) = 0\n",
92                (intmax_t) itv.it_interval.tv_sec,
93                (intmax_t) itv.it_interval.tv_usec,
94                (intmax_t) itv.it_value.tv_sec,
95                (intmax_t) itv.it_value.tv_usec);
96
97         --req.ts.tv_nsec;
98         assert(syscall(__NR_clock_nanosleep, CLOCK_REALTIME, 0,
99                        &req.ts, &rem.ts) == -1);
100         printf("clock_nanosleep(CLOCK_REALTIME, 0, {%jd, %jd}, {%jd, %jd})"
101                " = ? ERESTART_RESTARTBLOCK (Interrupted by signal)\n",
102                (intmax_t) req.ts.tv_sec, (intmax_t) req.ts.tv_nsec,
103                (intmax_t) rem.ts.tv_sec, (intmax_t) rem.ts.tv_nsec);
104         puts("--- SIGALRM {si_signo=SIGALRM, si_code=SI_KERNEL} ---");
105
106         assert(syscall(__NR_clock_gettime, CLOCK_REALTIME, &req.ts) == 0);
107         printf("clock_gettime(CLOCK_REALTIME, {%jd, %jd}) = 0\n",
108                (intmax_t) req.ts.tv_sec, (intmax_t) req.ts.tv_nsec);
109
110         ++req.ts.tv_sec;
111         rem.ts.tv_sec = 0xc0de4;
112         rem.ts.tv_nsec = 0xc0de5;
113         assert(syscall(__NR_clock_nanosleep, CLOCK_REALTIME, TIMER_ABSTIME,
114                        &req.ts, &rem.ts) == -1);
115         printf("clock_nanosleep(CLOCK_REALTIME, TIMER_ABSTIME, {%jd, %jd}, %p)"
116                " = ? ERESTARTNOHAND (To be restarted if no handler)\n",
117                (intmax_t) req.ts.tv_sec, (intmax_t) req.ts.tv_nsec, &rem.ts);
118         puts("--- SIGALRM {si_signo=SIGALRM, si_code=SI_KERNEL} ---");
119
120         puts("+++ exited with 0 +++");
121         return 0;
122 }