Spaces:
Sleeping
Sleeping
File size: 16,271 Bytes
bdc2878 | 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 | """ProxyDirectory — control-plane proxy pool coordinator.
Maintains the list of EgressNodes and ClearanceBundles.
Selection delegates to the dataplane ProxyTable; this module owns
configuration loading and clearance refresh lifecycle.
"""
import asyncio
from urllib.parse import urlparse
from app.platform.logging.logger import logger
from app.platform.config.snapshot import get_config
from app.platform.runtime.clock import now_ms
from app.platform.runtime.ids import next_hex
from .config import resolve_clearance_config
from .models import (
EgressMode,
ClearanceMode,
EgressNode,
ClearanceBundle,
ProxyLease,
ProxyFeedback,
ProxyFeedbackKind,
RequestKind,
ProxyScope,
)
from .providers.manual import ManualClearanceProvider
from .providers.flaresolverr import FlareSolverrClearanceProvider
_DEFAULT_CLEARANCE_ORIGIN = "https://grok.com"
BundleKey = tuple[str, str]
def _clearance_host(clearance_origin: str | None) -> str:
host = urlparse(clearance_origin or _DEFAULT_CLEARANCE_ORIGIN).hostname
return (host or "grok.com").lower()
class ProxyDirectory:
"""Owns egress nodes and clearance bundles.
Thread-safety: all mutations are protected by ``_lock``.
"""
def __init__(self) -> None:
self._nodes: list[EgressNode] = []
self._resource_nodes: list[EgressNode] = [] # for media downloads
self._bundles: dict[BundleKey, ClearanceBundle] = {}
self._lock = asyncio.Lock()
# Single-flight guard: at most one FlareSolverr call per proxy+host key.
# Other coroutines wait on the Event until the active refresh completes.
self._refresh_events: dict[BundleKey, asyncio.Event] = {}
self._manual = ManualClearanceProvider()
self._flare = FlareSolverrClearanceProvider()
self._egress_mode: EgressMode = EgressMode.DIRECT
self._clearance_mode: ClearanceMode = ClearanceMode.NONE
self._config_sig: tuple | None = None
# Pool cursor for PROXY_POOL mode: sticky routing with failure-driven rotate.
# Incremented on node failure; all callers see the same cursor under _lock.
self._pool_cursor: int = 0
# ------------------------------------------------------------------
# Lifecycle
# ------------------------------------------------------------------
async def load(self) -> None:
"""Load proxy configuration from the current config snapshot."""
cfg = get_config()
egress_mode = EgressMode(cfg.get_str("proxy.egress.mode", "direct"))
clearance_mode = ClearanceMode.parse(
cfg.get_str("proxy.clearance.mode", "none")
)
base_url = cfg.get_str("proxy.egress.proxy_url", "")
res_url = cfg.get_str("proxy.egress.resource_proxy_url", "")
base_pool = tuple(cfg.get_list("proxy.egress.proxy_pool", []))
res_pool = tuple(cfg.get_list("proxy.egress.resource_proxy_pool", []))
clearance = resolve_clearance_config(cfg)
config_sig = (
egress_mode.value,
clearance_mode.value,
base_url,
res_url,
base_pool,
res_pool,
cfg.get_str("proxy.clearance.flaresolverr_url", ""),
clearance.cf_cookies,
clearance.user_agent,
clearance.cf_clearance,
clearance.browser,
cfg.get_int("proxy.clearance.timeout_sec", 60),
)
nodes: list[EgressNode] = []
resource_nodes: list[EgressNode] = []
if egress_mode == EgressMode.SINGLE_PROXY:
if base_url:
nodes.append(EgressNode(node_id="single", proxy_url=base_url))
if res_url:
resource_nodes.append(
EgressNode(node_id="res-single", proxy_url=res_url)
)
elif egress_mode == EgressMode.PROXY_POOL:
for i, url in enumerate(base_pool):
nodes.append(EgressNode(node_id=f"pool-{i}", proxy_url=url))
for i, url in enumerate(res_pool):
resource_nodes.append(
EgressNode(node_id=f"res-pool-{i}", proxy_url=url)
)
valid_affinities = {n.proxy_url or "direct" for n in [*nodes, *resource_nodes]}
if not valid_affinities:
valid_affinities = {"direct"}
async with self._lock:
if self._config_sig == config_sig:
return
from .models import ClearanceBundleState
self._egress_mode = egress_mode
self._clearance_mode = clearance_mode
self._nodes = nodes
self._resource_nodes = resource_nodes
self._pool_cursor = 0
self._bundles = {
key: bundle.model_copy(update={"state": ClearanceBundleState.INVALID})
for key, bundle in self._bundles.items()
if key[0] in valid_affinities
}
self._refresh_events = {
key: event
for key, event in self._refresh_events.items()
if key[0] in valid_affinities
}
self._config_sig = config_sig
logger.info(
"proxy directory loaded: egress_mode={} clearance_mode={} node_count={} resource_node_count={}",
egress_mode,
clearance_mode,
len(nodes),
len(resource_nodes),
)
# ------------------------------------------------------------------
# Acquisition
# ------------------------------------------------------------------
async def acquire(
self,
*,
scope: ProxyScope = ProxyScope.APP,
kind: RequestKind = RequestKind.HTTP,
resource: bool = False,
clearance_origin: str | None = None,
) -> ProxyLease:
"""Return a ProxyLease for the next request.
For DIRECT mode, returns a lease with no proxy or clearance.
"""
proxy_url = await self._pick_proxy_url(resource=resource)
affinity = proxy_url or "direct"
clearance_host = _clearance_host(clearance_origin)
bundle = await self._get_or_build_bundle(
affinity_key=affinity,
proxy_url=proxy_url or "",
clearance_origin=clearance_origin or _DEFAULT_CLEARANCE_ORIGIN,
)
return ProxyLease(
lease_id=next_hex(),
proxy_url=proxy_url,
cf_cookies=bundle.cf_cookies if bundle else "",
user_agent=bundle.user_agent if bundle else "",
clearance_host=clearance_host,
scope=scope,
kind=kind,
acquired_at=now_ms(),
)
async def feedback(self, lease: ProxyLease, result: ProxyFeedback) -> None:
"""Apply upstream feedback to the appropriate egress node."""
if result.kind in (
ProxyFeedbackKind.CHALLENGE,
ProxyFeedbackKind.UNAUTHORIZED,
):
# Invalidate associated clearance bundle.
key = (lease.proxy_url or "direct", lease.clearance_host)
async with self._lock:
from .models import ClearanceBundleState
bundle = self._bundles.get(key)
if bundle:
self._bundles[key] = bundle.model_copy(
update={"state": ClearanceBundleState.INVALID}
)
# In PROXY_POOL mode, rotate to the next node on any failure so the
# next acquire() prefers a different egress rather than hammering the
# same broken node.
if (
self._egress_mode == EgressMode.PROXY_POOL
and lease.proxy_url
and result.kind
in (
ProxyFeedbackKind.CHALLENGE,
ProxyFeedbackKind.UNAUTHORIZED,
ProxyFeedbackKind.FORBIDDEN,
ProxyFeedbackKind.TRANSPORT_ERROR,
)
):
async with self._lock:
self._pool_cursor += 1
logger.debug(
"proxy pool cursor advanced: proxy={} kind={} cursor={}",
lease.proxy_url,
result.kind,
self._pool_cursor,
)
# ------------------------------------------------------------------
# Internal
# ------------------------------------------------------------------
async def _pick_proxy_url(self, resource: bool = False) -> str | None:
if self._egress_mode == EgressMode.DIRECT:
return None
async with self._lock:
# Prefer resource-specific nodes when available; fall back to base nodes.
nodes = (
self._resource_nodes
if resource and self._resource_nodes
else self._nodes
)
if not nodes:
return None
if self._egress_mode == EgressMode.SINGLE_PROXY:
return nodes[0].proxy_url
# PROXY_POOL: sticky routing — use current cursor, rotate on failure.
idx = self._pool_cursor % len(nodes)
return nodes[idx].proxy_url
async def _get_or_build_bundle(
self,
*,
affinity_key: str,
proxy_url: str,
clearance_origin: str,
) -> ClearanceBundle | None:
if self._clearance_mode == ClearanceMode.NONE:
return None
clearance_host = _clearance_host(clearance_origin)
key: BundleKey = (affinity_key, clearance_host)
# Single-flight: only one coroutine fetches clearance per proxy+host key.
# Concurrent callers wait on the Event and retry once it fires.
while True:
async with self._lock:
bundle = self._bundles.get(key)
if bundle and bundle.state.value == 0: # VALID
return bundle
event = self._refresh_events.get(key)
if event is None:
# This coroutine wins the right to refresh.
event = asyncio.Event()
self._refresh_events[key] = event
break
# Another coroutine is already refreshing — wait for it, then retry.
await event.wait()
try:
if self._clearance_mode == ClearanceMode.MANUAL:
bundle = self._manual.build_bundle(
affinity_key=affinity_key,
clearance_host=clearance_host,
)
else:
bundle = await self._flare.refresh_bundle(
affinity_key=affinity_key,
proxy_url=proxy_url,
target_url=clearance_origin,
)
if bundle:
async with self._lock:
self._bundles[key] = bundle
return bundle
finally:
async with self._lock:
self._refresh_events.pop(key, None)
event.set() # Wake all waiters so they retry with the new bundle.
# ------------------------------------------------------------------
# Clearance lifecycle helpers (used by ProxyClearanceScheduler)
# ------------------------------------------------------------------
async def invalidate_clearance(self) -> None:
"""Mark all cached clearance bundles as invalid.
The next ``acquire()`` call for each affinity key will trigger a fresh
FlareSolverr fetch (serialised by the single-flight guard).
"""
from .models import ClearanceBundleState
async with self._lock:
self._bundles = {
k: b.model_copy(update={"state": ClearanceBundleState.INVALID})
for k, b in self._bundles.items()
}
logger.debug("clearance bundles invalidated: count={}", len(self._bundles))
async def warm_up(self) -> None:
"""Pre-fetch clearance bundles for all configured affinity keys.
Called once at startup so the first real request does not have to wait
for FlareSolverr. Does NOT invalidate existing bundles first.
"""
if self._clearance_mode == ClearanceMode.NONE:
return
async with self._lock:
nodes = list(self._nodes)
affinity_keys = (
[(n.proxy_url or "direct", n.proxy_url or "") for n in nodes]
if nodes
else [("direct", "")]
)
for affinity, proxy_url in affinity_keys:
await self._get_or_build_bundle(
affinity_key=affinity,
proxy_url=proxy_url,
clearance_origin=_DEFAULT_CLEARANCE_ORIGIN,
)
async def refresh_clearance_safe(self) -> None:
"""Scheduled clearance refresh: build new bundles then swap atomically.
Unlike ``invalidate_clearance() + warm_up()``, this never discards a
working bundle before a replacement is ready. If FlareSolverr is
temporarily unavailable the old bundle remains valid and continues to
serve requests.
"""
if self._clearance_mode == ClearanceMode.NONE:
return
async with self._lock:
nodes = list(self._nodes)
existing = list(self._bundles.keys())
refresh_targets: dict[BundleKey, tuple[str, str]] = {}
default_items = (
[(n.proxy_url or "direct", n.proxy_url or "") for n in nodes]
if nodes
else [("direct", "")]
)
for affinity, proxy_url in default_items:
key: BundleKey = (affinity, _clearance_host(_DEFAULT_CLEARANCE_ORIGIN))
refresh_targets[key] = (proxy_url, _DEFAULT_CLEARANCE_ORIGIN)
for key in existing:
affinity, clearance_host = key
refresh_targets.setdefault(
key,
("" if affinity == "direct" else affinity, f"https://{clearance_host}"),
)
for key, (proxy_url, clearance_origin) in refresh_targets.items():
affinity, clearance_host = key
if self._clearance_mode == ClearanceMode.MANUAL:
new_bundle = self._manual.build_bundle(
affinity_key=affinity,
clearance_host=clearance_host,
)
else:
new_bundle = await self._flare.refresh_bundle(
affinity_key=affinity,
proxy_url=proxy_url,
target_url=clearance_origin,
)
if new_bundle:
async with self._lock:
self._bundles[key] = new_bundle
logger.debug("clearance bundle refreshed: bundle={}", key)
else:
logger.warning(
"clearance refresh failed, keeping old bundle: bundle={}",
key,
)
# ------------------------------------------------------------------
# Properties
# ------------------------------------------------------------------
@property
def egress_mode(self) -> EgressMode:
return self._egress_mode
@property
def clearance_mode(self) -> ClearanceMode:
return self._clearance_mode
@property
def node_count(self) -> int:
return len(self._nodes)
@property
def nodes(self) -> list[EgressNode]:
"""Read-only snapshot of the current egress node list."""
return list(self._nodes)
@property
def bundles(self) -> dict[BundleKey, ClearanceBundle]:
"""Read-only snapshot of the current clearance bundles."""
return dict(self._bundles)
# ---------------------------------------------------------------------------
# Module-level singleton
# ---------------------------------------------------------------------------
_directory: ProxyDirectory | None = None
async def get_proxy_directory() -> ProxyDirectory:
"""Return the module-level ProxyDirectory, reloading config if it changed."""
global _directory
if _directory is None:
_directory = ProxyDirectory()
await _directory.load()
return _directory
__all__ = ["ProxyDirectory", "get_proxy_directory"]
|