//===-- klee_init_env.c ---------------------------------------------------===// // // The KLEE Symbolic Virtual Machine // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #include "klee/klee.h" #ifndef _LARGEFILE64_SOURCE #define _LARGEFILE64_SOURCE #endif #include "fd.h" #include #include #include #include #include #include static void __emit_error(const char *msg) { klee_report_error(__FILE__, __LINE__, msg, "user.err"); } /* Helper function that converts a string to an integer, and terminates the program with an error message is the string is not a proper number */ static long int __str_to_int(char *s, const char *error_msg) { long int res = 0; char c; if (!*s) __emit_error(error_msg); while ((c = *s++)) { if (c == '\0') { break; } else if (c>='0' && c<='9') { res = res*10 + (c - '0'); } else { __emit_error(error_msg); } } return res; } static int __isprint(const char c) { /* Assume ASCII */ return (32 <= c && c <= 126); } static int __streq(const char *a, const char *b) { while (*a == *b) { if (!*a) return 1; a++; b++; } return 0; } static char *__get_sym_str(int numChars, char *name) { int i; char *s = malloc(numChars+1); klee_mark_global(s); klee_make_symbolic(s, numChars+1, name); for (i=0; i - Replace by a symbolic argument with length N\n\ -sym-args - Replace by at least MIN arguments and at most\n\ MAX arguments, each with maximum length N\n\ -sym-files - Make NUM symbolic files ('A', 'B', 'C', etc.),\n\ each with size N\n\ -sym-stdin - Make stdin symbolic with size N.\n\ -sym-stdout - Make stdout symbolic.\n\ -save-all-writes - Allow write operations to execute as expected\n\ even if they exceed the file size. If set to 0, all\n\ writes exceeding the initial file size are discarded.\n\ Note: file offset is always incremented.\n\ -max-fail - Allow up to N injected failures\n\ -fd-fail - Shortcut for '-max-fail 1'\n\n"); } while (k < argc) { if (__streq(argv[k], "--sym-arg") || __streq(argv[k], "-sym-arg")) { const char *msg = "--sym-arg expects an integer argument "; if (++k == argc) __emit_error(msg); max_len = __str_to_int(argv[k++], msg); sym_arg_name[3] = '0' + sym_arg_num++; __add_arg(&new_argc, new_argv, __get_sym_str(max_len, sym_arg_name), 1024); } else if (__streq(argv[k], "--sym-args") || __streq(argv[k], "-sym-args")) { const char *msg = "--sym-args expects three integer arguments "; if (k+3 >= argc) __emit_error(msg); k++; min_argvs = __str_to_int(argv[k++], msg); max_argvs = __str_to_int(argv[k++], msg); max_len = __str_to_int(argv[k++], msg); n_args = klee_range(min_argvs, max_argvs+1, "n_args"); for (i=0; i < n_args; i++) { sym_arg_name[3] = '0' + sym_arg_num++; __add_arg(&new_argc, new_argv, __get_sym_str(max_len, sym_arg_name), 1024); } } else if (__streq(argv[k], "--sym-files") || __streq(argv[k], "-sym-files")) { const char* msg = "--sym-files expects two integer arguments "; if (k+2 >= argc) __emit_error(msg); k++; sym_files = __str_to_int(argv[k++], msg); sym_file_len = __str_to_int(argv[k++], msg); } else if (__streq(argv[k], "--sym-stdin") || __streq(argv[k], "-sym-stdin")) { const char *msg = "--sym-stdin expects one integer argument "; if (++k == argc) __emit_error(msg); sym_stdin_len = __str_to_int(argv[k++], msg); } else if (__streq(argv[k], "--sym-stdout") || __streq(argv[k], "-sym-stdout")) { sym_stdout_flag = 1; k++; } else if (__streq(argv[k], "--save-all-writes") || __streq(argv[k], "-save-all-writes")) { save_all_writes_flag = 1; k++; } else if (__streq(argv[k], "--fd-fail") || __streq(argv[k], "-fd-fail")) { fd_fail = 1; k++; } else if (__streq(argv[k], "--max-fail") || __streq(argv[k], "-max-fail")) { const char *msg = "--max-fail expects an integer argument "; if (++k == argc) __emit_error(msg); fd_fail = __str_to_int(argv[k++], msg); } else { /* simply copy arguments */ __add_arg(&new_argc, new_argv, argv[k++], 1024); } } final_argv = (char**) malloc((new_argc+1) * sizeof(*final_argv)); klee_mark_global(final_argv); memcpy(final_argv, new_argv, new_argc * sizeof(*final_argv)); final_argv[new_argc] = 0; *argcPtr = new_argc; *argvPtr = final_argv; klee_init_fds(sym_files, sym_file_len, sym_stdin_len, sym_stdout_flag, save_all_writes_flag, fd_fail); }