##// END OF EJS Templates
fuzz: try *even harder* to prevent Python from looking up usernames...
Augie Fackler -
r40316:170cd2a5 default
parent child Browse files
Show More
@@ -1,79 +1,81
1 1 #include <Python.h>
2 2 #include <assert.h>
3 3 #include <stdlib.h>
4 4 #include <unistd.h>
5 5
6 6 #include <string>
7 7
8 8 extern "C" {
9 9
10 10 /* TODO: use Python 3 for this fuzzing? */
11 11 PyMODINIT_FUNC initparsers(void);
12 12
13 13 static char cpypath[8192] = "\0";
14 14
15 15 extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv)
16 16 {
17 17 const std::string subdir = "/sanpy/lib/python2.7";
18 18 /* HACK ALERT: we need a full Python installation built without
19 19 pymalloc and with ASAN, so we dump one in
20 20 $OUT/sanpy/lib/python2.7. This helps us wire that up. */
21 21 std::string selfpath(*argv[0]);
22 22 std::string pypath;
23 23 auto pos = selfpath.rfind("/");
24 24 if (pos == std::string::npos) {
25 25 char wd[8192];
26 26 getcwd(wd, 8192);
27 27 pypath = std::string(wd) + subdir;
28 28 } else {
29 29 pypath = selfpath.substr(0, pos) + subdir;
30 30 }
31 31 strncpy(cpypath, pypath.c_str(), pypath.size());
32 32 setenv("PYTHONPATH", cpypath, 1);
33 33 setenv("PYTHONNOUSERSITE", "1", 1);
34 /* prevent Python from looking up users in the fuzz environment */
35 setenv("PYTHONUSERBASE", cpypath, 1);
34 36 Py_SetPythonHome(cpypath);
35 37 Py_InitializeEx(0);
36 38 return 0;
37 39 }
38 40
39 41 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
40 42 {
41 43 initparsers();
42 44 PyObject *mtext =
43 45 PyBytes_FromStringAndSize((const char *)Data, (Py_ssize_t)Size);
44 46 PyObject *mainmod = PyImport_AddModule("__main__");
45 47 PyObject *globals = PyModule_GetDict(mainmod);
46 48 PyObject *locals = PyDict_New();
47 49 PyDict_SetItemString(locals, "mdata", mtext);
48 50 PyCodeObject *code =
49 51 (PyCodeObject *)Py_CompileString(R"py(
50 52 from parsers import lazymanifest
51 53 try:
52 54 lm = lazymanifest(mdata)
53 55 # iterate the whole thing, which causes the code to fully parse
54 56 # every line in the manifest
55 57 list(lm.iterentries())
56 58 lm[b'xyzzy'] = (b'\0' * 20, 'x')
57 59 # do an insert, text should change
58 60 assert lm.text() != mdata, "insert should change text and didn't: %r %r" % (lm.text(), mdata)
59 61 del lm[b'xyzzy']
60 62 # should be back to the same
61 63 assert lm.text() == mdata, "delete should have restored text but didn't: %r %r" % (lm.text(), mdata)
62 64 except Exception as e:
63 65 pass
64 66 # uncomment this print if you're editing this Python code
65 67 # to debug failures.
66 68 # print e
67 69 )py",
68 70 "fuzzer", Py_file_input);
69 71 PyObject *res = PyEval_EvalCode(code, globals, locals);
70 72 if (!res) {
71 73 PyErr_Print();
72 74 }
73 75 Py_XDECREF(res);
74 76 Py_DECREF(code);
75 77 Py_DECREF(locals);
76 78 Py_DECREF(mtext);
77 79 return 0; // Non-zero return values are reserved for future use.
78 80 }
79 81 }
General Comments 0
You need to be logged in to leave comments. Login now