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