-
Notifications
You must be signed in to change notification settings - Fork 161
/
node.py
executable file
·63 lines (44 loc) · 1.79 KB
/
node.py
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
#!/usr/bin/env python
import os
import sys
import resource
import subprocess
import nodeprofile
import driller.config as config
import logging
l = logging.getLogger("driller.node")
def check_exec(d, p):
path = os.path.join(d, p)
return not os.path.isdir(path) and os.access(path, os.X_OK)
def binary_dir_sane():
if not os.path.isdir(config.BINARY_DIR):
l.error("the binary directory specified in the config is not a directory")
return False
if not any(filter(lambda x: check_exec(config.BINARY_DIR, x), os.listdir(config.BINARY_DIR))):
l.error("no binary files detected in binary directory specified")
return False
return True
def driller_node(n, outfile, errfile):
if not binary_dir_sane():
return 1
l.info("spinning up a driller node with %d workers", n)
args = ["celery", "-A", "driller.tasks", "worker", "-c", str(n), "-Q", "driller", "--loglevel=info", "-n", "driller.%h"]
with open(outfile, "w") as o:
with open(errfile, "w") as e:
subprocess.Popen(args, stdout=o, stderr=e)
def fuzzer_node(n, outfile, errfile):
if not binary_dir_sane():
return 1
l.info("spinning up a fuzzer node with %d workers", n)
args = ["celery", "-A", "driller.tasks", "worker", "-c", str(n), "-Q", "fuzzer", "--loglevel=info", "-Ofair", "-n", "fuzzer.%h"]
with open(outfile, "w") as o:
with open(errfile, "w") as e:
subprocess.Popen(args, stdout=o, stderr=e)
def main(argv):
l.setLevel("INFO")
if nodeprofile.DRILLER_WORKERS:
driller_node(nodeprofile.DRILLER_WORKERS, "driller-out.log", "driller-err.log")
if nodeprofile.FUZZER_WORKERS:
fuzzer_node(nodeprofile.FUZZER_WORKERS, "fuzzer-out.log", "fuzzer-err.log")
if __name__ == "__main__":
sys.exit(main(sys.argv))