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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
|
/* sb2-show:
* SB2 Mapping rule testing utility
*
* Copyright (c) 2008 Nokia Corporation. All rights reserved.
* Author: Lauri T. Aarnio
* Licensed under LGPL version 2.1, see top level LICENSE file for details.
*/
#include <unistd.h>
#include <config.h>
#include <config_hardcoded.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/resource.h>
#include <sys/time.h>
#include "exported.h"
#include "sb2.h"
static void usage_exit(const char *progname, const char *errmsg, int exitstatus)
{
if (errmsg)
fprintf(stderr, "%s: Error: %s\n", progname, errmsg);
fprintf(stderr,
"\n%s: Usage:\n"
"\t%s [options] command [parameters]\n"
"\nOptions:\n"
"\t-b binary_name\tshow using binary_name as name of "
"the calling program\n"
"\t-f function\tshow using 'function' as callers name\n"
"\t-D\tignore directories while verifying path lists\n"
"\t-v\tverbose.\n"
"\t-t"
"\treport elapsed time (real time elapsed while "
"executing 'command')\n"
"\t-x filename"
"\tLoad and execute Lua code from file before "
"executing 'command'\n"
"\t-X filename"
"\tLoad and execute Lua code from file after "
"executing 'command'\n"
"\nCommands:\n"
"\tpath [path1] [path2].."
"\tShow mappings of pathnames\n"
"\trealcwd"
"\tShow real current working directory\n"
"\texec file argv0 [argv1] [argv2].."
"\tShow execve() modifications\n"
"\tlog-error 'message'"
"\tAdd an error message to the log\n"
"\tlog-warning 'message'"
"\tAdd a warning message to the log\n"
"\tverify-pathlist-mappings required-prefix [ignorelist]"
"\tread list of paths from stdin and\n"
"\t\tcheck that all paths will be mapped to required prefix\n"
"\tvar variablename"
"\tShow value of a string variable\n"
"\texecluafile filename"
"\tLoad and execute Lua code from file\n"
"\t\t(useful for debugging and/or benchmarking sb2 itself)\n"
"\n'%s' must be executed inside sb2 sandbox"
" (see the 'sb2' command)\n",
progname, progname, progname);
exit(exitstatus);
}
static int command_show_variable(
int verbose,
const char *progname,
const char *varname)
{
char *value = sb2__read_string_variable_from_lua__(varname);
if (value) {
if (verbose) printf("%s = \"%s\"\n", varname, value);
else printf("%s\n", value);
free(value);
return(0);
}
/* failed */
if (verbose) printf("%s: %s does not exist\n",
progname, varname);
return(1);
}
static int elem_count(char *const *elems)
{
int count = 0;
char **p = (char **)elems;
while (*p) {
p++; count++;
}
return count;
}
static char **join_env_vecs(char **env1, char **env2)
{
int elemc1 = (env1 ? elem_count(env1) : 0);
int elemc2 = (env2 ? elem_count(env2) : 0);
char **p;
int i;
char **new_elems;
new_elems = (char **)calloc(elemc1 + elemc2 + 1, sizeof(char *));
for (i = 0, p = env1; p && *p; p++) {
int insert_to_new_elems = 1;
/* variables in "env2" override "env1": */
if (env2) {
char *cp = strchr(*p, '=');
int namelen = 0;
if (cp) namelen = cp - *p;
if (namelen) {
char **p2;
for (p2 = env2; p2 && *p2; p2++) {
if (!strncmp(*p,*p2,namelen+1)) {
/* same variable found from
* env2, ignore the value from
* env1 */
insert_to_new_elems = 0; break;
}
}
}
}
if (insert_to_new_elems)
new_elems[i++] = strdup(*p);
}
for (p = env2; p && *p; p++) {
new_elems[i++] = strdup(*p);
}
new_elems[i] = NULL;
return(new_elems);
}
static int compar_strvec_elems(const void *e1, const void *e2)
{
char **s1 = (char **)e1, **s2 = (char **)e2;
return(strcmp(*s1,*s2));
}
static int diff_strvecs(char **orig_vec, char **new_vec, int verbose)
{
char **op = orig_vec;
char **np = new_vec;
int num_diffs = 0;
while (op && *op && np && *np) {
int r = strcmp(*op,*np);
if (r == 0) {
if (verbose)
printf("%15s: %s\n", "unmodified", *op);
op++, np++;
} else {
const char *cp = strchr(*op,'=');
int namelen = 0;
if (cp) namelen = cp - *op;
if (namelen) {
if (!strncmp(*op,*np,namelen+1)) {
/* same name: value was modified */
printf("%15s: %s\n", "modified, old",
*op);
printf("%15s: %s\n", " new",
*np);
op++, np++;
num_diffs++;
continue;
}
}
/* not modified. Something was added or removed. */
if (r < 0) {
printf("%15s: %s\n", "removed", *op);
op++;
num_diffs++;
continue;
}
printf("%15s: %s\n", "added", *np);
num_diffs++;
np++;
}
}
/* now either "op" or "np" or both have been processed*/
while (op && *op) {
printf("%15s: %s\n", "Removed", *op);
num_diffs++;
op++;
}
while (np && *np) {
printf("%15s: %s\n", "Added", *np);
num_diffs++;
np++;
}
return(num_diffs);
}
/* sort argv / envp */
static void sort_strvec(char **elems)
{
qsort(elems, elem_count(elems), sizeof(char *), compar_strvec_elems);
}
static void command_show_exec(
const char *binary_name,
const char *fn_name,
const char *progname,
int argc, char **argv,
char **additional_env,
int verbose)
{
char *new_file;
char **new_argv;
char **new_envp;
char **orig_env0;
char **orig_env;
char *mapped_path = NULL;
int readonly_flag;
int i;
char *ba[2];
if (argc < 1) {
usage_exit(progname, "Too few parameters for this command", 1);
}
/* fix __SB2_BINARYNAME in the environment that is going to be
* given to sb2show__execve_mods__() (otherwise it would be "sb2-show"
*/
asprintf(&ba[0], "__SB2_BINARYNAME=%s", binary_name);
ba[1] = NULL;
orig_env0 = join_env_vecs(environ, ba);
/* add user-specified environment varaibles */
orig_env = join_env_vecs(orig_env0, additional_env);
if (sb2show__execve_mods__(argv[0], argv, orig_env,
&new_file, &new_argv, &new_envp) < 0) {
printf("Exec denied.\n");
} else {
printf("File\t%s\n", new_file);
/* do_exec() will map the path just after argvenvp modifications
* have been done, do that here also
*/
mapped_path = sb2show__map_path2__(binary_name, "", fn_name,
new_file, &readonly_flag);
printf("Mapped\t%s%s\n", mapped_path, (readonly_flag ? " (readonly)" : ""));
for (i = 0; new_argv[i]; i++) {
printf("argv[%d]\t%s\n", i, new_argv[i]);
}
/* compare orig. and new envs. a very simple diff. */
sort_strvec(orig_env);
sort_strvec(new_envp);
printf("Environment:\n");
if (diff_strvecs(orig_env, new_envp, verbose) == 0) {
printf(" (no changes)\n");
}
}
}
static void command_show_path(const char *binary_name,
const char *fn_name, char **argv)
{
char *mapped_path = NULL;
int readonly_flag;
while (*argv) {
mapped_path = sb2show__map_path2__(binary_name, "",
fn_name, *argv, &readonly_flag);
printf("%s => %s%s\n",
*argv, mapped_path,
(readonly_flag ? " (readonly)" : ""));
argv++;
}
}
static void command_show_realcwd(const char *binary_name, const char *fn_name)
{
char *real_cwd_path = NULL;
real_cwd_path = sb2show__get_real_cwd__(binary_name, fn_name);
printf("%s\n", real_cwd_path ? real_cwd_path : "<null>");
}
/* read paths from stdin, report paths that are not mapped to specified
* directory.
* returns 0 if all OK, 1 if one or more paths were not mapped.
*/
static int command_verify_pathlist_mappings(
const char *binary_name,
const char *fn_name,
int ignore_directories,
int verbose,
const char *progname,
char **argv)
{
int destination_prefix_len;
char path_buf[PATH_MAX + 1];
const char *required_destination_prefix = argv[0];
int result = 0;
if (!required_destination_prefix) {
usage_exit(progname, "'destination_prefix' is missing", 1);
}
destination_prefix_len = strlen(required_destination_prefix);
while (fgets(path_buf, sizeof(path_buf), stdin)) {
int len = strlen(path_buf);
char *mapped_path = NULL;
int readonly_flag;
int destination_prefix_cmp_result;
char **ignore_path;
int ignore_this = 0;
if ((len > 0) && (path_buf[len-1] == '\n')) {
path_buf[--len] = '\0';
}
if (len == 0) continue;
for (ignore_path = argv+1; *ignore_path; ignore_path++) {
int ign_len = strlen(*ignore_path);
if (!strncmp(path_buf, *ignore_path, ign_len)) {
ignore_this = 1;
if (verbose)
printf("IGNORED by prefix: %s\n",
path_buf);
break;
}
}
if (ignore_this) continue;
mapped_path = sb2show__map_path2__(binary_name, "",
fn_name, path_buf, &readonly_flag);
if (ignore_directories) {
struct stat statbuf;
if ((stat(mapped_path, &statbuf) == 0) &&
S_ISDIR(statbuf.st_mode)) {
if (verbose)
printf("%s => %s: dir, ignored\n",
path_buf, mapped_path);
continue;
}
}
destination_prefix_cmp_result = strncmp(mapped_path,
required_destination_prefix, destination_prefix_len);
if (destination_prefix_cmp_result) {
result = 1;
if (verbose)
printf("%s => %s%s: NOT OK\n",
path_buf, mapped_path,
(readonly_flag ? " (readonly)" : ""));
} else {
/* mapped OK. */
if (verbose)
printf("%s => %s%s: Ok\n",
path_buf, mapped_path,
(readonly_flag ? " (readonly)" : ""));
}
}
return (result);
}
static void command_log(char **argv, int loglevel)
{
SB_LOG(loglevel, "%s", argv[0]);
}
int main(int argc, char *argv[])
{
int opt;
char *progname = argv[0];
char *function_name = "ANYFUNCTION";
char *binary_name = "ANYBINARY";
int ignore_directories = 0;
int verbose = 0;
int report_time = 0;
struct timeval start_time, stop_time;
int ret = 0;
char *pre_cmd_file = NULL;
char *post_cmd_file = NULL;
char **additional_env = NULL;
#if 0 || defined(enable_this_after_sb2_preload_library_startup_has_been_fixed)
/* FIXME: this should be able to check if we are inside the sb2
* sandbox, but that is not currently possible (instead initialization
* of the preload library will fail even before main() is entered.
* this happens because the preload library was not designed to
* be used as ordinary library, which is exactly what we are doing
* now... initialization code of the library should be modified.
*/
/* check that we are running inside 'sb2' environment */
if (!getenv("SBOX_SESSION_DIR")) {
usage_exit(progname, "Not inside scratchboxed environment", 1);
}
#endif
while ((opt = getopt(argc, argv, "hm:f:b:Dvtx:X:E:")) != -1) {
switch (opt) {
case 'h': usage_exit(progname, NULL, 0); break;
case 'm':
fprintf(stderr,
"%s: Warning: option -m is obsolete\n",
argv[0]);
break;
case 'f': function_name = optarg; break;
case 'b': binary_name = optarg; break;
case 'D': ignore_directories = 1; break;
case 'v': verbose = 1; break;
case 't': report_time = 1; break;
case 'x': pre_cmd_file = optarg; break;
case 'X': post_cmd_file = optarg; break;
case 'E':
if (!strchr(optarg,'=')) {
fprintf(stderr,
"%s: Error: parameter error in -E\n",
argv[0]);
} else if (!additional_env) {
additional_env = calloc(2, sizeof(char*));
additional_env[0] = strdup(optarg);
} else {
int n_elem = elem_count(additional_env);
additional_env = realloc(additional_env,
(n_elem+2)*sizeof(char*));
additional_env[n_elem] = strdup(optarg);
additional_env[n_elem+1] = NULL;
}
break;
default: usage_exit(progname, "Illegal option", 1); break;
}
}
/* check parameters */
if (optind >= argc)
usage_exit(progname, "Wrong number of parameters", 1);
/* Execute the "pre-command" file before starting the clock (if both
* -x and -t options were used)
*/
if (pre_cmd_file)
sb2__load_and_execute_lua_file__(pre_cmd_file);
if (report_time) {
if (gettimeofday(&start_time, (struct timezone *)NULL) < 0) {
fprintf(stderr, "%s: Failed to get time\n", progname);
report_time = 0;
}
}
/* params ok, go and perform the action */
if (!strcmp(argv[optind], "path")) {
command_show_path(binary_name, function_name,
argv + optind + 1);
} else if (!strcmp(argv[optind], "realcwd")) {
command_show_realcwd(binary_name, function_name);
} else if (!strcmp(argv[optind], "exec")) {
command_show_exec(binary_name, function_name,
progname, argc - (optind+1), argv + optind + 1,
additional_env, verbose);
} else if (!strcmp(argv[optind], "log-error")) {
command_log(argv + optind + 1, SB_LOGLEVEL_ERROR);
} else if (!strcmp(argv[optind], "log-warning")) {
command_log(argv + optind + 1, SB_LOGLEVEL_WARNING);
} else if (!strcmp(argv[optind], "verify-pathlist-mappings")) {
ret = command_verify_pathlist_mappings(binary_name,
function_name, ignore_directories,
verbose, progname, argv + optind + 1);
} else if (!strcmp(argv[optind], "var")) {
ret = command_show_variable(verbose, progname, argv[optind+1]);
} else if (!strcmp(argv[optind], "execluafile")) {
sb2__load_and_execute_lua_file__(argv[optind+1]);
} else {
usage_exit(progname, "Unknown command", 1);
}
if (report_time) {
if (gettimeofday(&stop_time, (struct timezone *)NULL) < 0) {
fprintf(stderr, "%s: Failed to get time\n", progname);
} else {
long secs;
long usecs;
secs = stop_time.tv_sec - start_time.tv_sec;
usecs = stop_time.tv_usec - start_time.tv_usec;
if (usecs < 0) {
usecs += 1000000;
secs--;
}
printf("TIME: %ld.%06ld\n", secs, usecs);
}
}
/* Execute the "prost-command" file after the clock has been stopped
* (if both -X and -t options were used)
*/
if (post_cmd_file)
sb2__load_and_execute_lua_file__(post_cmd_file);
return(ret);
}
|