mitmproxy/libmproxy/protocol/rawtcp.py

67 lines
2.3 KiB
Python
Raw Normal View History

from __future__ import (absolute_import, print_function, division)
2015-08-29 21:08:16 +00:00
import socket
import select
from OpenSSL import SSL
2015-08-14 08:41:11 +00:00
2015-08-29 21:08:16 +00:00
from netlib.tcp import NetLibError
from netlib.utils import cleanBin
2015-08-29 23:21:58 +00:00
from ..exceptions import ProtocolException
2015-08-30 13:27:29 +00:00
from .base import Layer
2015-07-24 16:29:13 +00:00
2015-08-30 13:27:29 +00:00
class RawTCPLayer(Layer):
2015-08-29 21:08:16 +00:00
chunk_size = 4096
def __init__(self, ctx, logging=True):
self.logging = logging
2015-08-30 13:27:29 +00:00
super(RawTCPLayer, self).__init__(ctx)
2015-08-29 21:08:16 +00:00
2015-07-24 16:29:13 +00:00
def __call__(self):
2015-08-18 13:59:44 +00:00
self.connect()
2015-08-29 21:08:16 +00:00
buf = memoryview(bytearray(self.chunk_size))
client = self.client_conn.connection
server = self.server_conn.connection
conns = [client, server]
try:
2015-08-29 21:08:16 +00:00
while True:
r, _, _ = select.select(conns, [], [], 10)
for conn in r:
2015-08-29 23:21:58 +00:00
dst = server if conn == client else client
2015-08-29 21:08:16 +00:00
size = conn.recv_into(buf, self.chunk_size)
if not size:
conns.remove(conn)
# Shutdown connection to the other peer
if isinstance(conn, SSL.Connection):
# We can't half-close a connection, so we just close everything here.
# Sockets will be cleaned up on a higher level.
return
else:
2015-08-29 23:21:58 +00:00
dst.shutdown(socket.SHUT_WR)
2015-08-29 21:08:16 +00:00
if len(conns) == 0:
return
continue
dst.sendall(buf[:size])
2015-08-29 21:08:16 +00:00
if self.logging:
# log messages are prepended with the client address,
# hence the "weird" direction string.
if dst == server:
2015-08-29 23:21:58 +00:00
direction = "-> tcp -> {}".format(repr(self.server_conn.address))
2015-08-29 21:08:16 +00:00
else:
2015-08-29 23:21:58 +00:00
direction = "<- tcp <- {}".format(repr(self.server_conn.address))
2015-08-29 21:08:16 +00:00
data = cleanBin(buf[:size].tobytes())
self.log(
"{}\r\n{}".format(direction, data),
"info"
)
2015-07-24 16:29:13 +00:00
2015-08-29 21:08:16 +00:00
except (socket.error, NetLibError, SSL.Error) as e:
2015-08-29 23:21:58 +00:00
raise ProtocolException("TCP connection closed unexpectedly: {}".format(repr(e)), e)