]> granicus.if.org Git - strace/blob - tests/ksysent.c
tests: use fixed timestamps in utime related tests
[strace] / tests / ksysent.c
1 /*
2  * Validate syscallent.h file.
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 "sysent.h"
32 #include <stdio.h>
33 #include <string.h>
34 #include <asm/unistd.h>
35
36 #define TD 0
37 #define TF 0
38 #define TI 0
39 #define TN 0
40 #define TP 0
41 #define TS 0
42 #define TM 0
43 #define TSF 0
44 #define NF 0
45 #define MA 0
46 #define SI 0
47 #define SE 0
48 #define CST 0
49 #define SEN(arg) 0,0
50
51 static const struct_sysent syscallent[] = {
52 #include "syscallent.h"
53 };
54
55 typedef const char *pstr_t;
56 static const pstr_t ksyslist[] = {
57 #include "ksysent.h"
58 };
59
60 int
61 main(void)
62 {
63         int rc = 0;
64         unsigned int i;
65
66         for (i = 0; i < ARRAY_SIZE(ksyslist); ++i) {
67                 if (!ksyslist[i])
68                         continue;
69                 if (i >= ARRAY_SIZE(syscallent) || !syscallent[i].sys_name) {
70                         fprintf(stderr, "warning: \"%s\" syscall #%u"
71                                 " is missing in syscallent.h\n",
72                                 ksyslist[i], i);
73                         continue;
74                 }
75 #ifdef SYS_socket_nsubcalls
76                 if (i >= SYS_socket_subcall &&
77                     i < SYS_socket_subcall + SYS_socket_nsubcalls) {
78                         fprintf(stderr, "error: \"%s\" syscall #%u"
79                                 " is a socket subcall in syscallent.h\n",
80                                 ksyslist[i], i);
81                         rc = 1;
82                         continue;
83                 }
84 #endif
85 #ifdef SYS_ipc_nsubcalls
86                 if (i >= SYS_ipc_subcall &&
87                     i < SYS_ipc_subcall + SYS_ipc_nsubcalls) {
88                         fprintf(stderr, "error: \"%s\" syscall #%u"
89                                 " is an ipc subcall in syscallent.h\n",
90                                 ksyslist[i], i);
91                         rc = 1;
92                         continue;
93                 }
94 #endif
95                 if (strcmp(ksyslist[i], syscallent[i].sys_name)) {
96                         fprintf(stderr, "error: \"%s\" syscall #%u"
97                                 " is \"%s\" in syscallent.h\n",
98                                 ksyslist[i], i, syscallent[i].sys_name);
99                         rc = 1;
100                         continue;
101                 }
102         }
103
104         for (i = 0; i < ARRAY_SIZE(syscallent); ++i) {
105                 if (!syscallent[i].sys_name
106 #ifdef SYS_socket_nsubcalls
107                     || (i >= SYS_socket_subcall &&
108                         i < SYS_socket_subcall + SYS_socket_nsubcalls)
109 #endif
110 #ifdef SYS_ipc_nsubcalls
111                     || (i >= SYS_ipc_subcall &&
112                         i < SYS_ipc_subcall + SYS_ipc_nsubcalls)
113 #endif
114 #ifdef ARM_FIRST_SHUFFLED_SYSCALL
115                     || (i >= ARM_FIRST_SHUFFLED_SYSCALL &&
116                         i <= ARM_FIRST_SHUFFLED_SYSCALL +
117                             ARM_LAST_SPECIAL_SYSCALL + 1)
118 #endif
119                    )
120                         continue;
121                 if (i >= ARRAY_SIZE(ksyslist) || !ksyslist[i]) {
122                         fprintf(stderr, "note: unknown syscall #%u"
123                                 " is \"%s\" in syscallent.h\n",
124                                 i, syscallent[i].sys_name);
125                 }
126         }
127
128         return rc;
129 }