]> granicus.if.org Git - strace/blob - tests/nanosleep.c
tests: do not check decoding of setitimer syscall outside xetitimer.test
[strace] / tests / nanosleep.c
1 /*
2  * Check decoding of nanosleep syscall.
3  *
4  * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include "tests.h"
31 #include <assert.h>
32 #include <stdio.h>
33 #include <stdint.h>
34 #include <signal.h>
35 #include <time.h>
36 #include <sys/time.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 = { .it_value.tv_usec = 111111 };
59
60         if (nanosleep(&req.ts, NULL))
61                 perror_msg_and_fail("nanosleep");
62         printf("nanosleep({tv_sec=%jd, tv_nsec=%jd}, NULL) = 0\n",
63                (intmax_t) req.ts.tv_sec, (intmax_t) req.ts.tv_nsec);
64
65         assert(nanosleep(NULL, &rem.ts) == -1);
66         printf("nanosleep(NULL, %p) = -1 EFAULT (%m)\n", &rem.ts);
67
68         if (nanosleep(&req.ts, &rem.ts))
69                 perror_msg_and_fail("nanosleep");
70         printf("nanosleep({tv_sec=%jd, tv_nsec=%jd}, %p) = 0\n",
71                (intmax_t) req.ts.tv_sec, (intmax_t) req.ts.tv_nsec, &rem.ts);
72
73         req.ts.tv_nsec = 1000000000;
74         assert(nanosleep(&req.ts, &rem.ts) == -1);
75         printf("nanosleep({tv_sec=%jd, tv_nsec=%jd}, %p) = -1 EINVAL (%m)\n",
76                (intmax_t) req.ts.tv_sec, (intmax_t) req.ts.tv_nsec, &rem.ts);
77
78         assert(sigaction(SIGALRM, &act, NULL) == 0);
79         assert(sigprocmask(SIG_SETMASK, &set, NULL) == 0);
80
81         if (setitimer(ITIMER_REAL, &itv, NULL))
82                 perror_msg_and_skip("setitimer");
83
84         req.ts.tv_nsec = 999999999;
85         assert(nanosleep(&req.ts, &rem.ts) == -1);
86         printf("nanosleep({tv_sec=%jd, tv_nsec=%jd}, {tv_sec=%jd, tv_nsec=%jd})"
87                " = ? ERESTART_RESTARTBLOCK (Interrupted by signal)\n",
88                (intmax_t) req.ts.tv_sec, (intmax_t) req.ts.tv_nsec,
89                (intmax_t) rem.ts.tv_sec, (intmax_t) rem.ts.tv_nsec);
90         puts("--- SIGALRM {si_signo=SIGALRM, si_code=SI_KERNEL} ---");
91
92         puts("+++ exited with 0 +++");
93         return 0;
94 }