aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/protocol2/socks.py
blob: 9ca30bb49011380bfcb372a798f66ffb2b7ea851 (plain)
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
from __future__ import (absolute_import, print_function, division, unicode_literals)

from ..proxy import ProxyError, Socks5ProxyMode, ProxyError2
from .layer import Layer, ServerConnectionMixin


class Socks5IncomingLayer(Layer, ServerConnectionMixin):
    def __call__(self):
        try:
            s5mode = Socks5ProxyMode(self.config.ssl_ports)
            address = s5mode.get_upstream_server(self.client_conn)[2:]
        except ProxyError as e:
            # TODO: Unmonkeypatch
            raise ProxyError2(str(e), e)

        self._set_address(address)

        if address[1] == 443:
            layer = AutoLayer(self)
        else:
            layer = AutoLayer(self)
        for message in layer():
            if not self._handle_server_message(message):
                yield message

from .auto import AutoLayer