mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-03-28 01:44:17 +08:00
373 lines
11 KiB
Python
373 lines
11 KiB
Python
import functools
|
|
import threading
|
|
import contextlib
|
|
import queue
|
|
|
|
from mitmproxy import addons
|
|
from mitmproxy import options
|
|
from . import ctx as mitmproxy_ctx
|
|
from netlib import basethread
|
|
from . import exceptions
|
|
|
|
|
|
Events = frozenset([
|
|
"clientconnect",
|
|
"clientdisconnect",
|
|
"serverconnect",
|
|
"serverdisconnect",
|
|
|
|
"tcp_start",
|
|
"tcp_message",
|
|
"tcp_error",
|
|
"tcp_end",
|
|
|
|
"request",
|
|
"requestheaders",
|
|
"response",
|
|
"responseheaders",
|
|
"error",
|
|
|
|
"intercept",
|
|
"resume",
|
|
|
|
"websocket_handshake",
|
|
|
|
"next_layer",
|
|
|
|
"configure",
|
|
"done",
|
|
"log",
|
|
"start",
|
|
"tick",
|
|
])
|
|
|
|
|
|
class LogEntry:
|
|
def __init__(self, msg, level):
|
|
self.msg = msg
|
|
self.level = level
|
|
|
|
|
|
class Log:
|
|
"""
|
|
The central logger, exposed to scripts as mitmproxy.ctx.log.
|
|
"""
|
|
def __init__(self, master):
|
|
self.master = master
|
|
|
|
def debug(self, txt):
|
|
"""
|
|
Log with level debug.
|
|
"""
|
|
self(txt, "debug")
|
|
|
|
def info(self, txt):
|
|
"""
|
|
Log with level info.
|
|
"""
|
|
self(txt, "info")
|
|
|
|
def warn(self, txt):
|
|
"""
|
|
Log with level warn.
|
|
"""
|
|
self(txt, "warn")
|
|
|
|
def error(self, txt):
|
|
"""
|
|
Log with level error.
|
|
"""
|
|
self(txt, "error")
|
|
|
|
def __call__(self, text, level="info"):
|
|
self.master.add_log(text, level)
|
|
|
|
|
|
class Master:
|
|
"""
|
|
The master handles mitmproxy's main event loop.
|
|
"""
|
|
def __init__(self, opts, server):
|
|
self.options = opts or options.Options()
|
|
self.addons = addons.Addons(self)
|
|
self.event_queue = queue.Queue()
|
|
self.should_exit = threading.Event()
|
|
self.server = server
|
|
channel = Channel(self.event_queue, self.should_exit)
|
|
server.set_channel(channel)
|
|
|
|
@contextlib.contextmanager
|
|
def handlecontext(self):
|
|
# Handlecontexts also have to nest - leave cleanup to the outermost
|
|
if mitmproxy_ctx.master:
|
|
yield
|
|
return
|
|
mitmproxy_ctx.master = self
|
|
mitmproxy_ctx.log = Log(self)
|
|
try:
|
|
yield
|
|
finally:
|
|
mitmproxy_ctx.master = None
|
|
mitmproxy_ctx.log = None
|
|
|
|
def tell(self, mtype, m):
|
|
m.reply = DummyReply()
|
|
self.event_queue.put((mtype, m))
|
|
|
|
def add_log(self, e, level):
|
|
"""
|
|
level: debug, info, warn, error
|
|
"""
|
|
with self.handlecontext():
|
|
self.addons("log", LogEntry(e, level))
|
|
|
|
def start(self):
|
|
self.should_exit.clear()
|
|
ServerThread(self.server).start()
|
|
|
|
def run(self):
|
|
self.start()
|
|
try:
|
|
while not self.should_exit.is_set():
|
|
# Don't choose a very small timeout in Python 2:
|
|
# https://github.com/mitmproxy/mitmproxy/issues/443
|
|
# TODO: Lower the timeout value if we move to Python 3.
|
|
self.tick(0.1)
|
|
finally:
|
|
self.shutdown()
|
|
|
|
def tick(self, timeout):
|
|
with self.handlecontext():
|
|
self.addons("tick")
|
|
changed = False
|
|
try:
|
|
mtype, obj = self.event_queue.get(timeout=timeout)
|
|
if mtype not in Events:
|
|
raise exceptions.ControlException("Unknown event %s" % repr(mtype))
|
|
handle_func = getattr(self, mtype)
|
|
if not callable(handle_func):
|
|
raise exceptions.ControlException("Handler %s not callable" % mtype)
|
|
if not handle_func.__dict__.get("__handler"):
|
|
raise exceptions.ControlException(
|
|
"Handler function %s is not decorated with controller.handler" % (
|
|
handle_func
|
|
)
|
|
)
|
|
handle_func(obj)
|
|
self.event_queue.task_done()
|
|
changed = True
|
|
except queue.Empty:
|
|
pass
|
|
return changed
|
|
|
|
def shutdown(self):
|
|
self.server.shutdown()
|
|
self.should_exit.set()
|
|
self.addons.done()
|
|
|
|
|
|
class ServerThread(basethread.BaseThread):
|
|
def __init__(self, server):
|
|
self.server = server
|
|
address = getattr(self.server, "address", None)
|
|
super().__init__(
|
|
"ServerThread ({})".format(repr(address))
|
|
)
|
|
|
|
def run(self):
|
|
self.server.serve_forever()
|
|
|
|
|
|
class Channel:
|
|
"""
|
|
The only way for the proxy server to communicate with the master
|
|
is to use the channel it has been given.
|
|
"""
|
|
def __init__(self, q, should_exit):
|
|
self.q = q
|
|
self.should_exit = should_exit
|
|
|
|
def ask(self, mtype, m):
|
|
"""
|
|
Decorate a message with a reply attribute, and send it to the
|
|
master. Then wait for a response.
|
|
|
|
Raises:
|
|
exceptions.Kill: All connections should be closed immediately.
|
|
"""
|
|
m.reply = Reply(m)
|
|
self.q.put((mtype, m))
|
|
while not self.should_exit.is_set():
|
|
try:
|
|
# The timeout is here so we can handle a should_exit event.
|
|
g = m.reply.q.get(timeout=0.5)
|
|
except queue.Empty: # pragma: no cover
|
|
continue
|
|
if g == exceptions.Kill:
|
|
raise exceptions.Kill()
|
|
return g
|
|
m.reply._state = "committed" # suppress error message in __del__
|
|
raise exceptions.Kill()
|
|
|
|
def tell(self, mtype, m):
|
|
"""
|
|
Decorate a message with a dummy reply attribute, send it to the
|
|
master, then return immediately.
|
|
"""
|
|
m.reply = DummyReply()
|
|
self.q.put((mtype, m))
|
|
|
|
|
|
def handler(f):
|
|
@functools.wraps(f)
|
|
def wrapper(master, message):
|
|
if not hasattr(message, "reply"):
|
|
raise exceptions.ControlException("Message %s has no reply attribute" % message)
|
|
|
|
# DummyReplys may be reused multiple times.
|
|
# We only clear them up on the next handler so that we can access value and
|
|
# state in the meantime.
|
|
if isinstance(message.reply, DummyReply):
|
|
message.reply.reset()
|
|
|
|
# The following ensures that inheritance with wrapped handlers in the
|
|
# base class works. If we're the first handler, then responsibility for
|
|
# acking is ours. If not, it's someone else's and we ignore it.
|
|
handling = False
|
|
# We're the first handler - ack responsibility is ours
|
|
if message.reply.state == "unhandled":
|
|
handling = True
|
|
message.reply.handle()
|
|
|
|
with master.handlecontext():
|
|
ret = f(master, message)
|
|
if handling:
|
|
master.addons(f.__name__, message)
|
|
|
|
# Reset the handled flag - it's common for us to feed the same object
|
|
# through handlers repeatedly, so we don't want this to persist across
|
|
# calls.
|
|
if handling and message.reply.state == "handled":
|
|
message.reply.take()
|
|
if not message.reply.has_message:
|
|
message.reply.ack()
|
|
message.reply.commit()
|
|
|
|
# DummyReplys may be reused multiple times.
|
|
if isinstance(message.reply, DummyReply):
|
|
message.reply.mark_reset()
|
|
return ret
|
|
# Mark this function as a handler wrapper
|
|
wrapper.__dict__["__handler"] = True
|
|
return wrapper
|
|
|
|
|
|
NO_REPLY = object() # special object we can distinguish from a valid "None" reply.
|
|
|
|
|
|
class Reply:
|
|
"""
|
|
Messages sent through a channel are decorated with a "reply" attribute.
|
|
This object is used to respond to the message through the return
|
|
channel.
|
|
"""
|
|
def __init__(self, obj):
|
|
self.obj = obj
|
|
self.q = queue.Queue() # type: queue.Queue
|
|
|
|
self._state = "unhandled" # "unhandled" -> "handled" -> "taken" -> "committed"
|
|
self.value = NO_REPLY # holds the reply value. May change before things are actually commited.
|
|
|
|
@property
|
|
def state(self):
|
|
"""
|
|
The state the reply is currently in. A normal reply object goes sequentially through the following lifecycle:
|
|
|
|
1. unhandled: Initial State.
|
|
2. handled: The reply object has been handled by the topmost handler function.
|
|
3. taken: The reply object has been taken to be commited.
|
|
4. committed: The reply has been sent back to the requesting party.
|
|
|
|
This attribute is read-only and can only be modified by calling one of state transition functions.
|
|
"""
|
|
return self._state
|
|
|
|
@property
|
|
def has_message(self):
|
|
return self.value != NO_REPLY
|
|
|
|
def handle(self):
|
|
"""
|
|
Reply are handled by controller.handlers, which may be nested. The first handler takes
|
|
responsibility and handles the reply.
|
|
"""
|
|
if self.state != "unhandled":
|
|
raise exceptions.ControlException("Reply is {}, but expected it to be unhandled.".format(self.state))
|
|
self._state = "handled"
|
|
|
|
def take(self):
|
|
"""
|
|
Scripts or other parties make "take" a reply out of a normal flow.
|
|
For example, intercepted flows are taken out so that the connection thread does not proceed.
|
|
"""
|
|
if self.state != "handled":
|
|
raise exceptions.ControlException("Reply is {}, but expected it to be handled.".format(self.state))
|
|
self._state = "taken"
|
|
|
|
def commit(self):
|
|
"""
|
|
Ultimately, messages are commited. This is done either automatically by the handler
|
|
if the message is not taken or manually by the entity which called .take().
|
|
"""
|
|
if self.state != "taken":
|
|
raise exceptions.ControlException("Reply is {}, but expected it to be taken.".format(self.state))
|
|
if not self.has_message:
|
|
raise exceptions.ControlException("There is no reply message.")
|
|
self._state = "committed"
|
|
self.q.put(self.value)
|
|
|
|
def ack(self, force=False):
|
|
self.send(self.obj, force)
|
|
|
|
def kill(self, force=False):
|
|
self.send(exceptions.Kill, force)
|
|
|
|
def send(self, msg, force=False):
|
|
if self.state not in ("handled", "taken"):
|
|
raise exceptions.ControlException(
|
|
"Reply is {}, did not expect a call to .send().".format(self.state)
|
|
)
|
|
if self.has_message and not force:
|
|
raise exceptions.ControlException("There is already a reply message.")
|
|
self.value = msg
|
|
|
|
def __del__(self):
|
|
if self.state != "committed":
|
|
# This will be ignored by the interpreter, but emit a warning
|
|
raise exceptions.ControlException("Uncommitted reply: %s" % self.obj)
|
|
|
|
|
|
class DummyReply(Reply):
|
|
"""
|
|
A reply object that is not connected to anything. In contrast to regular Reply objects,
|
|
DummyReply objects are reset to "unhandled" at the end of an handler so that they can be used
|
|
multiple times. Useful when we need an object to seem like it has a channel,
|
|
and during testing.
|
|
"""
|
|
def __init__(self):
|
|
super().__init__(None)
|
|
self._should_reset = False
|
|
|
|
def mark_reset(self):
|
|
if self.state != "committed":
|
|
raise exceptions.ControlException("Uncommitted reply: %s" % self.obj)
|
|
self._should_reset = True
|
|
|
|
def reset(self):
|
|
if self._should_reset:
|
|
self._state = "unhandled"
|
|
self.value = NO_REPLY
|
|
|
|
def __del__(self):
|
|
pass
|