1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/**
* Syscall resolver
*
* Copyright (c) 2012 Red Hat <pmoore@redhat.com>
* Author: Paul Moore <paul@paul-moore.com>
*/
/*
* This library is free software; you can redistribute it and/or modify it
* under the terms of version 2.1 of the GNU Lesser General Public License as
* published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, see <http://www.gnu.org/licenses>.
*/
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <unistd.h>
#include <seccomp.h>
/**
* Print the usage information to stderr and exit
* @param program the name of the current program being invoked
*
* Print the usage information and exit with EINVAL.
*
*/
static void exit_usage(const char *program)
{
fprintf(stderr,
"usage: %s [-h] [-a <arch>] [-t] <name>|<number>\n",
program);
exit(EINVAL);
}
/**
* main
*/
int main(int argc, char *argv[])
{
int opt;
int translate = 0;
uint32_t arch;
int sys_num;
const char *sys_name;
arch = seccomp_arch_native();
/* parse the command line */
while ((opt = getopt(argc, argv, "a:ht")) > 0) {
switch (opt) {
case 'a':
arch = seccomp_arch_resolve_name(optarg);
if (arch == 0)
exit_usage(argv[0]);
break;
case 't':
translate = 1;
break;
case 'h':
default:
/* usage information */
exit_usage(argv[0]);
}
}
/* sanity checks */
if (optind >= argc)
exit_usage(argv[0]);
/* perform the syscall lookup */
if (isdigit(argv[optind][0]) || argv[optind][0] == '-') {
sys_num = atoi(argv[optind]);
sys_name = seccomp_syscall_resolve_num_arch(arch, sys_num);
printf("%s\n", (sys_name ? sys_name : "UNKNOWN"));
} else if (translate) {
sys_num = seccomp_syscall_resolve_name_rewrite(arch,
argv[optind]);
printf("%d\n", sys_num);
} else {
sys_num = seccomp_syscall_resolve_name_arch(arch, argv[optind]);
printf("%d\n", sys_num);
}
return 0;
}
|