2014-03-10 21:36:47 +00:00
|
|
|
from __future__ import absolute_import
|
2014-01-12 10:01:59 +00:00
|
|
|
import os, traceback, threading, shlex
|
2014-03-10 21:36:47 +00:00
|
|
|
from . import controller
|
2011-08-03 01:20:36 +00:00
|
|
|
|
|
|
|
class ScriptError(Exception):
|
|
|
|
pass
|
|
|
|
|
2011-01-31 00:26:56 +00:00
|
|
|
|
2014-01-11 23:49:19 +00:00
|
|
|
class ScriptContext:
|
|
|
|
def __init__(self, master):
|
|
|
|
self._master = master
|
|
|
|
|
2014-03-13 00:04:45 +00:00
|
|
|
def log(self, message, level="info"):
|
2014-01-11 23:49:19 +00:00
|
|
|
"""
|
|
|
|
Logs an event.
|
|
|
|
|
2014-03-13 00:04:45 +00:00
|
|
|
By default, only events with level "error" get displayed. This can be controlled with the "-v" switch.
|
|
|
|
How log messages are handled depends on the front-end. mitmdump will print them to stdout,
|
|
|
|
mitmproxy sends output to the eventlog for display ("e" keyboard shortcut).
|
2014-01-11 23:49:19 +00:00
|
|
|
"""
|
2014-03-13 00:04:45 +00:00
|
|
|
self._master.add_event(message, level)
|
2014-01-11 23:49:19 +00:00
|
|
|
|
|
|
|
def duplicate_flow(self, f):
|
|
|
|
"""
|
|
|
|
Returns a duplicate of the specified flow. The flow is also
|
|
|
|
injected into the current state, and is ready for editing, replay,
|
|
|
|
etc.
|
|
|
|
"""
|
|
|
|
self._master.pause_scripts = True
|
|
|
|
f = self._master.duplicate_flow(f)
|
|
|
|
self._master.pause_scripts = False
|
|
|
|
return f
|
|
|
|
|
|
|
|
def replay_request(self, f):
|
|
|
|
"""
|
|
|
|
Replay the request on the current flow. The response will be added
|
|
|
|
to the flow object.
|
|
|
|
"""
|
|
|
|
self._master.replay_request(f)
|
|
|
|
|
|
|
|
|
2011-08-03 01:20:36 +00:00
|
|
|
class Script:
|
2011-01-31 00:26:56 +00:00
|
|
|
"""
|
2011-08-03 01:20:36 +00:00
|
|
|
The instantiator should do something along this vein:
|
|
|
|
|
2013-06-13 14:04:04 +00:00
|
|
|
s = Script(argv, master)
|
2011-08-03 01:20:36 +00:00
|
|
|
s.load()
|
2011-01-31 00:26:56 +00:00
|
|
|
"""
|
2014-01-12 10:01:59 +00:00
|
|
|
def __init__(self, command, master):
|
|
|
|
self.command = command
|
2014-01-13 01:15:17 +00:00
|
|
|
self.argv = self.parse_command(command)
|
2014-01-11 23:49:19 +00:00
|
|
|
self.ctx = ScriptContext(master)
|
2011-08-03 01:20:36 +00:00
|
|
|
self.ns = None
|
2014-01-12 00:59:32 +00:00
|
|
|
self.load()
|
2011-08-03 01:20:36 +00:00
|
|
|
|
2014-01-13 01:15:17 +00:00
|
|
|
@classmethod
|
|
|
|
def parse_command(klass, command):
|
2014-08-06 23:30:47 +00:00
|
|
|
args = shlex.split(command)
|
2014-01-13 01:15:17 +00:00
|
|
|
args[0] = os.path.expanduser(args[0])
|
|
|
|
if not os.path.exists(args[0]):
|
2014-08-06 23:30:47 +00:00
|
|
|
raise ScriptError(("Script file not found: %s.\r\n"
|
|
|
|
"If you script path contains spaces, "
|
|
|
|
"make sure to wrap it in additional quotes, e.g. -s \"'./foo bar/baz.py' --args\".") % args[0])
|
2014-01-13 01:15:17 +00:00
|
|
|
elif not os.path.isfile(args[0]):
|
|
|
|
raise ScriptError("Not a file: %s" % args[0])
|
|
|
|
return args
|
|
|
|
|
2011-08-03 01:20:36 +00:00
|
|
|
def load(self):
|
|
|
|
"""
|
|
|
|
Loads a module.
|
|
|
|
|
|
|
|
Raises ScriptError on failure, with argument equal to an error
|
|
|
|
message that may be a formatted traceback.
|
|
|
|
"""
|
|
|
|
ns = {}
|
|
|
|
try:
|
2014-01-13 01:15:17 +00:00
|
|
|
execfile(self.argv[0], ns, ns)
|
2011-08-03 01:20:36 +00:00
|
|
|
except Exception, v:
|
|
|
|
raise ScriptError(traceback.format_exc(v))
|
2013-06-17 14:48:06 +00:00
|
|
|
self.ns = ns
|
|
|
|
r = self.run("start", self.argv)
|
|
|
|
if not r[0] and r[1]:
|
|
|
|
raise ScriptError(r[1][1])
|
2013-06-13 14:04:04 +00:00
|
|
|
|
|
|
|
def unload(self):
|
|
|
|
return self.run("done")
|
2011-08-03 01:20:36 +00:00
|
|
|
|
|
|
|
def run(self, name, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Runs a plugin method.
|
|
|
|
|
|
|
|
Returns:
|
2011-01-31 00:26:56 +00:00
|
|
|
|
2011-08-03 01:20:36 +00:00
|
|
|
(True, retval) on success.
|
|
|
|
(False, None) on nonexistent method.
|
2012-06-03 01:41:44 +00:00
|
|
|
(False, (exc, traceback string)) if there was an exception.
|
2011-08-03 01:20:36 +00:00
|
|
|
"""
|
|
|
|
f = self.ns.get(name)
|
|
|
|
if f:
|
|
|
|
try:
|
|
|
|
return (True, f(self.ctx, *args, **kwargs))
|
|
|
|
except Exception, v:
|
|
|
|
return (False, (v, traceback.format_exc(v)))
|
|
|
|
else:
|
|
|
|
return (False, None)
|
2013-12-15 01:43:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
def _handle_concurrent_reply(fn, o, args=[], kwargs={}):
|
|
|
|
reply = o.reply
|
|
|
|
o.reply = controller.DummyReply()
|
2014-05-15 12:16:05 +00:00
|
|
|
if hasattr(reply, "q"):
|
|
|
|
o.reply.q = reply.q
|
2013-12-15 01:43:16 +00:00
|
|
|
def run():
|
|
|
|
fn(*args, **kwargs)
|
2014-05-15 12:16:05 +00:00
|
|
|
reply()
|
2014-02-07 06:08:59 +00:00
|
|
|
threading.Thread(target=run, name="ScriptThread").start()
|
2013-12-15 01:43:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
def concurrent(fn):
|
|
|
|
if fn.func_name in ["request", "response", "error"]:
|
|
|
|
def _concurrent(ctx, flow):
|
|
|
|
r = getattr(flow, fn.func_name)
|
|
|
|
_handle_concurrent_reply(fn, r, [ctx, flow])
|
|
|
|
return _concurrent
|
2013-12-16 21:10:06 +00:00
|
|
|
elif fn.func_name in ["clientconnect", "serverconnect", "clientdisconnect"]:
|
2013-12-15 01:43:16 +00:00
|
|
|
def _concurrent(ctx, conn):
|
|
|
|
_handle_concurrent_reply(fn, conn, [ctx, conn])
|
|
|
|
return _concurrent
|
2014-01-11 23:49:19 +00:00
|
|
|
raise NotImplementedError("Concurrent decorator not supported for this method.")
|