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