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