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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
|
/* $OpenBSD: systrace-translate.c,v 1.9 2002/07/30 06:07:06 itojun Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Niels Provos.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/tree.h>
#include <inttypes.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include <pwd.h>
#include <err.h>
#include "../../sys/compat/linux/linux_types.h"
#include "../../sys/compat/linux/linux_fcntl.h"
#include "intercept.h"
#include "systrace.h"
#define FL(w,c) do { \
if (flags & (w)) \
*p++ = (c); \
} while (0)
static int print_oflags(char *, size_t, struct intercept_translate *);
static int linux_print_oflags(char *, size_t, struct intercept_translate *);
static int print_modeflags(char *, size_t, struct intercept_translate *);
static int print_number(char *, size_t, struct intercept_translate *);
static int print_uname(char *, size_t, struct intercept_translate *);
static int print_uname(char *, size_t, struct intercept_translate *);
static int get_argv(struct intercept_translate *, int, pid_t, void *);
static int print_argv(char *, size_t, struct intercept_translate *);
static int
print_oflags(char *buf, size_t buflen, struct intercept_translate *tl)
{
char str[32], *p;
int flags = (intptr_t)tl->trans_addr;
int isread = 0;
p = str;
switch (flags & O_ACCMODE) {
case O_RDONLY:
strcpy(p, "ro");
isread = 1;
break;
case O_WRONLY:
strcpy(p, "wo");
break;
case O_RDWR:
strcpy(p, "rw");
break;
default:
strcpy(p, "--");
break;
}
/* XXX - Open handling of alias */
if (isread)
systrace_switch_alias("native", "open", "native", "fsread");
else
systrace_switch_alias("native", "open", "native", "fswrite");
p += 2;
FL(O_NONBLOCK, 'n');
FL(O_APPEND, 'a');
FL(O_CREAT, 'c');
FL(O_TRUNC, 't');
*p = '\0';
strlcpy(buf, str, buflen);
return (0);
}
static int
linux_print_oflags(char *buf, size_t buflen, struct intercept_translate *tl)
{
char str[32], *p;
int flags = (intptr_t)tl->trans_addr;
int isread = 0;
p = str;
switch (flags & LINUX_O_ACCMODE) {
case LINUX_O_RDONLY:
strcpy(p, "ro");
isread = 1;
break;
case LINUX_O_WRONLY:
strcpy(p, "wo");
break;
case LINUX_O_RDWR:
strcpy(p, "rw");
break;
default:
strcpy(p, "--");
break;
}
/* XXX - Open handling of alias */
if (isread)
systrace_switch_alias("linux", "open", "linux", "fsread");
else
systrace_switch_alias("linux", "open", "linux", "fswrite");
p += 2;
FL(LINUX_O_APPEND, 'a');
FL(LINUX_O_CREAT, 'c');
FL(LINUX_O_TRUNC, 't');
*p = '\0';
strlcpy(buf, str, buflen);
return (0);
}
static int
print_modeflags(char *buf, size_t buflen, struct intercept_translate *tl)
{
int mode = (intptr_t)tl->trans_addr;
mode &= 00007777;
snprintf(buf, buflen, "%o", mode);
return (0);
}
static int
print_number(char *buf, size_t buflen, struct intercept_translate *tl)
{
int number = (intptr_t)tl->trans_addr;
snprintf(buf, buflen, "%d", number);
return (0);
}
static int
print_uname(char *buf, size_t buflen, struct intercept_translate *tl)
{
struct passwd *pw;
uid_t uid = (intptr_t)tl->trans_addr;
pw = getpwuid(uid);
snprintf(buf, buflen, "%s", pw != NULL ? pw->pw_name : "<unknown>");
return (0);
}
static int
get_argv(struct intercept_translate *trans, int fd, pid_t pid, void *addr)
{
char *arg;
char buf[_POSIX2_LINE_MAX], *p;
int i, off = 0, len;
extern struct intercept_system intercept;
buf[0] = '\0';
while (1) {
if (intercept.io(fd, pid, INTERCEPT_READ, (char *)addr + off,
(void *)&arg, sizeof(char *)) == -1) {
warn("%s: ioctl", __func__);
return (NULL);
}
if (arg == NULL)
break;
p = intercept_get_string(fd, pid, arg);
if (p == NULL)
return (-1);
if (i > 0)
strlcat(buf, " ", sizeof(buf));
strlcat(buf, p, sizeof(buf));
off += sizeof(char *);
}
len = strlen(buf) + 1;
trans->trans_data = malloc(len);
if (trans->trans_data == NULL)
return (-1);
/* XXX - No argument replacement */
trans->trans_size = 0;
memcpy(trans->trans_data, buf, len);
return (0);
}
static int
print_argv(char *buf, size_t buflen, struct intercept_translate *tl)
{
snprintf(buf, buflen, "%s", (char *)tl->trans_data);
return (0);
}
struct intercept_translate trargv = {
"argv",
get_argv, print_argv,
};
struct intercept_translate oflags = {
"oflags",
NULL, print_oflags,
};
struct intercept_translate linux_oflags = {
"oflags",
NULL, linux_print_oflags,
};
struct intercept_translate modeflags = {
"mode",
NULL, print_modeflags,
};
struct intercept_translate uidt = {
"uid",
NULL, print_number,
};
struct intercept_translate uname = {
"uname",
NULL, print_uname,
};
struct intercept_translate gidt = {
"gid",
NULL, print_number,
};
struct intercept_translate fdt = {
"fd",
NULL, print_number,
};
|