213 lines
7.8 KiB
Python
213 lines
7.8 KiB
Python
"""
|
|
egress_proxy.py - localhost pinning forward-proxy for the browser.
|
|
|
|
context.route() sees URLs, not IPs, so it cannot stop DNS rebinding: Chromium
|
|
resolves the target host itself at connect time, and an attacker can answer
|
|
"public" to our up-front validation and "169.254.169.254" to the browser.
|
|
|
|
This proxy is the real control. Chromium is pointed at it (proxy_config), so it
|
|
never resolves the target itself - it asks us to CONNECT host:port. We run the
|
|
single egress rule (egress_broker.resolve_and_pin: resolve once, reject any
|
|
non-global IP, pin one IP), dial the PINNED IP ourselves, and splice raw bytes.
|
|
TLS stays end-to-end (we tunnel ciphertext; Chromium verifies the cert/SNI
|
|
against the real host - no MITM).
|
|
|
|
Bound to 127.0.0.1 on an ephemeral port; started at server boot.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
import logging
|
|
from urllib.parse import urlsplit
|
|
|
|
from egress_broker import EgressBlocked, resolve_and_pin
|
|
|
|
logger = logging.getLogger("crawl4ai.egress")
|
|
|
|
_CONNECT_OK = b"HTTP/1.1 200 Connection established\r\n\r\n"
|
|
_BLOCKED = b"HTTP/1.1 403 Forbidden\r\nContent-Length: 11\r\n\r\nURL blocked"
|
|
_BAD = b"HTTP/1.1 400 Bad Request\r\nContent-Length: 11\r\n\r\nBad Request"
|
|
_MAX_HEADER_BYTES = 64 * 1024
|
|
|
|
|
|
class PinningProxy:
|
|
"""Async HTTP forward-proxy that connects only to pinned, global IPs."""
|
|
|
|
def __init__(self, host: str = "127.0.0.1", port: int = 0):
|
|
self._host = host
|
|
self._port = port
|
|
self._server: asyncio.AbstractServer | None = None
|
|
self.bound_host: str | None = None
|
|
self.bound_port: int | None = None
|
|
|
|
@property
|
|
def url(self) -> str | None:
|
|
if self.bound_port is None:
|
|
return None
|
|
return f"http://{self.bound_host}:{self.bound_port}"
|
|
|
|
async def start(self) -> str:
|
|
self._server = await asyncio.start_server(self._handle, self._host, self._port)
|
|
sock = self._server.sockets[0]
|
|
self.bound_host, self.bound_port = sock.getsockname()[:2]
|
|
logger.info("egress pinning proxy listening on %s", self.url)
|
|
return self.url
|
|
|
|
async def stop(self) -> None:
|
|
if self._server is not None:
|
|
self._server.close()
|
|
try:
|
|
await self._server.wait_closed()
|
|
except Exception:
|
|
pass
|
|
|
|
# ─────────────────────────── connection handling ───────────────────────────
|
|
async def _handle(self, reader: asyncio.StreamReader, writer: asyncio.StreamWriter):
|
|
try:
|
|
request_line = await asyncio.wait_for(reader.readline(), timeout=30)
|
|
if not request_line:
|
|
return
|
|
parts = request_line.split()
|
|
if len(parts) < 3:
|
|
await self._reply(writer, _BAD)
|
|
return
|
|
method = parts[0].decode("latin-1", "replace").upper()
|
|
target = parts[1].decode("latin-1", "replace")
|
|
|
|
if method == "CONNECT":
|
|
await self._handle_connect(target, reader, writer)
|
|
else:
|
|
await self._handle_absolute(method, target, request_line, reader, writer)
|
|
except asyncio.TimeoutError:
|
|
await self._reply(writer, _BAD)
|
|
except Exception as e:
|
|
logger.debug("proxy connection error: %s", e)
|
|
await self._safe_close(writer)
|
|
|
|
async def _handle_connect(self, target, client_reader, client_writer):
|
|
# target is "host:port"
|
|
host, _, port_s = target.rpartition(":")
|
|
if not host or not port_s.isdigit():
|
|
await self._reply(client_writer, _BAD)
|
|
return
|
|
try:
|
|
pin = resolve_and_pin(f"https://{host}:{port_s}")
|
|
except EgressBlocked:
|
|
await self._reply(client_writer, _BLOCKED)
|
|
return
|
|
|
|
# Drain the rest of the client's CONNECT headers.
|
|
await self._drain_headers(client_reader)
|
|
|
|
try:
|
|
up_reader, up_writer = await asyncio.wait_for(
|
|
asyncio.open_connection(pin.ip, int(port_s)), timeout=30
|
|
)
|
|
except Exception:
|
|
await self._reply(client_writer, _BLOCKED)
|
|
return
|
|
|
|
client_writer.write(_CONNECT_OK)
|
|
await client_writer.drain()
|
|
await self._splice(client_reader, client_writer, up_reader, up_writer)
|
|
|
|
async def _handle_absolute(self, method, target, request_line, client_reader, client_writer):
|
|
# Plain HTTP proxying: target is an absolute URI "http://host/path".
|
|
sp = urlsplit(target)
|
|
if sp.scheme != "http" or not sp.hostname:
|
|
await self._reply(client_writer, _BAD)
|
|
return
|
|
port = sp.port or 80
|
|
try:
|
|
pin = resolve_and_pin(f"http://{sp.hostname}:{port}")
|
|
except EgressBlocked:
|
|
await self._reply(client_writer, _BLOCKED)
|
|
return
|
|
|
|
headers = await self._read_headers(client_reader)
|
|
path = sp.path or "/"
|
|
if sp.query:
|
|
path += "?" + sp.query
|
|
try:
|
|
up_reader, up_writer = await asyncio.wait_for(
|
|
asyncio.open_connection(pin.ip, port), timeout=30
|
|
)
|
|
except Exception:
|
|
await self._reply(client_writer, _BLOCKED)
|
|
return
|
|
# Re-issue in origin form with Host preserved.
|
|
out = f"{method} {path} HTTP/1.1\r\n".encode("latin-1")
|
|
out += b"Host: " + sp.hostname.encode("latin-1")
|
|
if sp.port:
|
|
out += f":{sp.port}".encode("latin-1")
|
|
out += b"\r\n" + headers + b"\r\n"
|
|
up_writer.write(out)
|
|
await up_writer.drain()
|
|
await self._splice(client_reader, client_writer, up_reader, up_writer)
|
|
|
|
# ─────────────────────────── helpers ───────────────────────────
|
|
async def _drain_headers(self, reader):
|
|
read = 0
|
|
while True:
|
|
line = await asyncio.wait_for(reader.readline(), timeout=30)
|
|
read += len(line)
|
|
if line in (b"\r\n", b"\n", b""):
|
|
return
|
|
if read > _MAX_HEADER_BYTES:
|
|
return
|
|
|
|
async def _read_headers(self, reader) -> bytes:
|
|
buf = b""
|
|
while True:
|
|
line = await asyncio.wait_for(reader.readline(), timeout=30)
|
|
if line in (b"\r\n", b"\n", b""):
|
|
break
|
|
buf += line
|
|
if len(buf) > _MAX_HEADER_BYTES:
|
|
break
|
|
# strip any proxy-only / connection headers
|
|
kept = []
|
|
for ln in buf.split(b"\r\n"):
|
|
name = ln.split(b":", 1)[0].strip().lower()
|
|
if name in (b"proxy-connection", b"proxy-authorization", b"host"):
|
|
continue
|
|
if ln:
|
|
kept.append(ln)
|
|
return (b"\r\n".join(kept) + b"\r\n") if kept else b""
|
|
|
|
async def _splice(self, c_reader, c_writer, u_reader, u_writer):
|
|
async def pipe(src, dst):
|
|
try:
|
|
while True:
|
|
data = await src.read(65536)
|
|
if not data:
|
|
break
|
|
dst.write(data)
|
|
await dst.drain()
|
|
except Exception:
|
|
pass
|
|
finally:
|
|
await self._safe_close(dst)
|
|
|
|
await asyncio.gather(
|
|
pipe(c_reader, u_writer),
|
|
pipe(u_reader, c_writer),
|
|
)
|
|
|
|
async def _reply(self, writer, payload: bytes):
|
|
try:
|
|
writer.write(payload)
|
|
await writer.drain()
|
|
except Exception:
|
|
pass
|
|
await self._safe_close(writer)
|
|
|
|
@staticmethod
|
|
async def _safe_close(writer):
|
|
try:
|
|
if not writer.is_closing():
|
|
writer.close()
|
|
except Exception:
|
|
pass
|