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