Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0ae882731a | |||
| 53d73c7dc6 | |||
| b4b8bd925d | |||
| 5ac44b898b | |||
| 9b4393b5ac | |||
| 02b4ed8018 | |||
| e4e4b4f1ec | |||
| d361a21543 | |||
| 106713a546 | |||
| 101675b5f8 | |||
| 9fac17bc39 | |||
| 2e3cf515a4 | |||
| 754d32fd34 | |||
| f0b7c27996 | |||
| db932e8acc | |||
| 455d5bb757 | |||
| fa2a27df6d | |||
| 7b2ccbdd11 | |||
| 8409984fcc | |||
| af10d189a3 | |||
| 0b4d180cdf | |||
| 7b3545d1b5 | |||
| e837419d5d | |||
| 487a603fa3 | |||
| d6fdd3fc86 | |||
| 344f224c89 | |||
| 6bbd2b3ee1 | |||
| c44216df28 | |||
| f80cdcf41c |
117
changelog.md
117
changelog.md
@@ -1,5 +1,122 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2026-02-19 - 25.7.5 - fix(rustproxy)
|
||||||
|
prune stale per-route metrics, add per-route rate limiter caching and regex cache, and improve connection tracking cleanup to prevent memory growth
|
||||||
|
|
||||||
|
- Prune per-route metrics for routes removed from configuration via MetricsCollector::retain_routes invoked during route table updates
|
||||||
|
- Introduce per-route shared RateLimiter instances (DashMap) with a request-count-triggered periodic cleanup to avoid stale limiters
|
||||||
|
- Cache compiled URL-rewrite regexes (regex_cache) to avoid recompiling patterns on every request and insert compiled regex on first use
|
||||||
|
- Improve upstream connection tracking to remove zero-count entries and guard against underflow, preventing unbounded DashMap growth
|
||||||
|
- Evict per-IP metrics and timestamps when the last connection for an IP closes so per-IP DashMap entries are fully freed
|
||||||
|
- Add unit tests validating connection tracking cleanup, per-IP eviction, and route-metrics retention behavior
|
||||||
|
|
||||||
|
## 2026-02-19 - 25.7.4 - fix(smart-proxy)
|
||||||
|
include proxy IPs in smart proxy configuration
|
||||||
|
|
||||||
|
- Add proxyIps: this.settings.proxyIPs to proxy options in ts/proxies/smart-proxy/smart-proxy.ts
|
||||||
|
- Ensures proxy IPs from settings are passed into the proxy implementation (enables proxy IP filtering/whitelisting)
|
||||||
|
|
||||||
|
## 2026-02-16 - 25.7.3 - fix(metrics)
|
||||||
|
centralize connection-closed reporting via ConnectionGuard and remove duplicate explicit metrics.connection_closed calls
|
||||||
|
|
||||||
|
- Removed numerous explicit metrics.connection_closed calls from rust/crates/rustproxy-http/src/proxy_service.rs so connection teardown and byte counting are handled by the connection guard / counting body instead of ad-hoc calls.
|
||||||
|
- Simplified ConnectionGuard in rust/crates/rustproxy-passthrough/src/tcp_listener.rs: removed the disarm flag and disarm() method so Drop always reports connection_closed.
|
||||||
|
- Stopped disarming the TCP-level guard when handing connections off to HTTP proxy paths (HTTP/WebSocket/streaming flows) to avoid missing or double-reporting metrics.
|
||||||
|
- Fixes incorrect/duplicate connection-closed metric emission and ensures consistent byte/connection accounting during streaming and WebSocket upgrades.
|
||||||
|
|
||||||
|
## 2026-02-16 - 25.7.2 - fix(rustproxy-http)
|
||||||
|
preserve original Host header when proxying and add X-Forwarded-* headers; add TLS WebSocket echo backend helper and integration test for terminate-and-reencrypt websocket
|
||||||
|
|
||||||
|
- Preserve the client's original Host header instead of replacing it with backend host:port when proxying requests.
|
||||||
|
- Add standard reverse-proxy headers: X-Forwarded-For (appends client IP), X-Forwarded-Host, and X-Forwarded-Proto for upstream requests.
|
||||||
|
- Ensure raw TCP/HTTP upstream requests copy original headers and skip X-Forwarded-* (which are added explicitly).
|
||||||
|
- Add start_tls_ws_echo_backend test helper to start a TLS WebSocket echo backend for tests.
|
||||||
|
- Add integration test test_terminate_and_reencrypt_websocket to verify WS upgrade through terminate-and-reencrypt TLS path.
|
||||||
|
- Rename unused parameter upstream to _upstream in proxy_service functions to avoid warnings.
|
||||||
|
|
||||||
|
## 2026-02-16 - 25.7.1 - fix(proxy)
|
||||||
|
use TLS to backends for terminate-and-reencrypt routes
|
||||||
|
|
||||||
|
- Set upstream.use_tls = true when a route's TLS mode is TerminateAndReencrypt so the proxy re-encrypts to backend servers.
|
||||||
|
- Add start_tls_http_backend test helper and update integration tests to run TLS-enabled backend servers validating re-encryption behavior.
|
||||||
|
- Make the selected upstream mutable to allow toggling the use_tls flag during request handling.
|
||||||
|
|
||||||
|
## 2026-02-16 - 25.7.0 - feat(routes)
|
||||||
|
add protocol-based route matching and ensure terminate-and-reencrypt routes HTTP through the full HTTP proxy; update docs and tests
|
||||||
|
|
||||||
|
- Introduce a new 'protocol' match field for routes (supports 'http' and 'tcp') and preserve it through cloning/merging.
|
||||||
|
- Add Rust integration test verifying terminate-and-reencrypt decrypts TLS and routes HTTP traffic via the HTTP proxy (per-request Host/path routing) instead of raw tunneling.
|
||||||
|
- Add TypeScript unit tests covering protocol field validation, preservation, interaction with terminate-and-reencrypt, cloning, merging, and matching behavior.
|
||||||
|
- Update README with a Protocol-Specific Routing section and clarify terminate-and-reencrypt behavior (HTTP routed via HTTP proxy; non-HTTP uses raw TLS-to-TLS tunnel).
|
||||||
|
- Example config: include health check thresholds (unhealthyThreshold and healthyThreshold) in the sample healthCheck settings.
|
||||||
|
|
||||||
|
## 2026-02-16 - 25.6.0 - feat(rustproxy)
|
||||||
|
add protocol-based routing and backend TLS re-encryption support
|
||||||
|
|
||||||
|
- Introduce optional route_match.protocol ("http" | "tcp") in Rust and TypeScript route types to allow protocol-restricted routing.
|
||||||
|
- RouteManager: respect protocol field during matching and treat TLS connections without SNI as not matching domain-restricted routes (except wildcard-only routes).
|
||||||
|
- HTTP proxy: add BackendStream abstraction to unify plain TCP and tokio-rustls TLS backend streams, and support connecting to upstreams over TLS (upstream.use_tls) with an InsecureBackendVerifier for internal/self-signed backends.
|
||||||
|
- WebSocket and HTTP forwarding updated to use BackendStream so upstream TLS is handled transparently.
|
||||||
|
- Passthrough listener: perform post-termination protocol detection for TerminateAndReencrypt; route HTTP flows into HttpProxyService and handle non-HTTP as TLS-to-TLS tunnel.
|
||||||
|
- Add tests for protocol matching, TLS/no-SNI behavior, and other routing edge cases.
|
||||||
|
- Add rustls and tokio-rustls dependencies (Cargo.toml/Cargo.lock updates).
|
||||||
|
|
||||||
|
## 2026-02-16 - 25.5.0 - feat(tls)
|
||||||
|
add shared TLS acceptor with SNI resolver and session resumption; prefer shared acceptor and fall back to per-connection when routes specify custom TLS versions
|
||||||
|
|
||||||
|
- Add CertResolver that pre-parses PEM certs/keys into CertifiedKey instances for SNI-based lookup and cheap runtime resolution
|
||||||
|
- Introduce build_shared_tls_acceptor to create a shared ServerConfig with session cache (4096) and Ticketer for session ticket resumption
|
||||||
|
- Add ArcSwap<Option<TlsAcceptor>> shared_tls_acceptor to tcp_listener for hot-reloadable, pre-built acceptor and update accept loop/handlers to use it
|
||||||
|
- set_tls_configs now attempts to build and store the shared TLS acceptor, falling back to per-connection acceptors on failure; raw PEM configs are still retained for route-level fallbacks
|
||||||
|
- Add get_tls_acceptor helper: prefer shared acceptor for performance and session resumption, but build per-connection acceptor when a route requests custom TLS versions
|
||||||
|
|
||||||
|
## 2026-02-16 - 25.4.0 - feat(rustproxy)
|
||||||
|
support dynamically loaded TLS certificates via loadCertificate IPC and include them in listener TLS configs for rebuilds and hot-swap
|
||||||
|
|
||||||
|
- Adds loaded_certs: HashMap<String, TlsCertConfig> to RustProxy to store certificates loaded at runtime
|
||||||
|
- Merge loaded_certs into tls_configs in rebuild and listener hot-swap paths so dynamically loaded certs are served immediately
|
||||||
|
- Persist loaded certificates on loadCertificate so future rebuilds include them
|
||||||
|
|
||||||
|
## 2026-02-15 - 25.3.1 - fix(plugins)
|
||||||
|
remove unused dependencies and simplify plugin exports
|
||||||
|
|
||||||
|
- Removed multiple dependencies from package.json to reduce dependency footprint: @push.rocks/lik, @push.rocks/smartacme, @push.rocks/smartdelay, @push.rocks/smartfile, @push.rocks/smartnetwork, @push.rocks/smartpromise, @push.rocks/smartrequest, @push.rocks/smartrx, @push.rocks/smartstring, @push.rocks/taskbuffer, @types/minimatch, @types/ws, pretty-ms, ws
|
||||||
|
- ts/plugins.ts: stopped importing/exporting node:https and many push.rocks and third-party modules; plugins now only re-export core node modules (without https), tsclass, smartcrypto, smartlog (+ destination-local), smartrust, and minimatch
|
||||||
|
- Intended effect: trim surface area and remove unused/optional integrations; patch-level change (no feature/API additions)
|
||||||
|
|
||||||
|
## 2026-02-14 - 25.3.0 - feat(smart-proxy)
|
||||||
|
add background concurrent certificate provisioning with per-domain timeouts and concurrency control
|
||||||
|
|
||||||
|
- Add ISmartProxyOptions settings: certProvisionTimeout (ms) and certProvisionConcurrency (default 4)
|
||||||
|
- Run certProvisionFunction as fire-and-forget background tasks (stores promise on start/route-update and awaited on stop)
|
||||||
|
- Provision certificates in parallel with a concurrency limit using a new ConcurrencySemaphore utility
|
||||||
|
- Introduce per-domain timeout handling (default 300000ms) via withTimeout and surface timeout errors as certificate-failed events
|
||||||
|
- Refactor provisioning into provisionSingleDomain to isolate domain handling, ACME fallback preserved
|
||||||
|
- Run provisioning outside route update mutex so route updates are not blocked by slow provisioning
|
||||||
|
|
||||||
|
## 2026-02-14 - 25.2.2 - fix(smart-proxy)
|
||||||
|
start metrics polling before certificate provisioning to avoid blocking metrics collection
|
||||||
|
|
||||||
|
- Start metrics polling immediately after Rust engine startup so metrics are available without waiting for certificate provisioning.
|
||||||
|
- Run certProvisionFunction after startup because ACME/DNS-01 provisioning can hang or be slow and must not block observability.
|
||||||
|
- Code change in ts/proxies/smart-proxy/smart-proxy.ts: metricsAdapter.startPolling() moved to run before provisionCertificatesViaCallback().
|
||||||
|
|
||||||
|
## 2026-02-14 - 25.2.1 - fix(smartproxy)
|
||||||
|
no changes detected in git diff
|
||||||
|
|
||||||
|
- The provided diff contains no file changes; no code or documentation updates to release.
|
||||||
|
|
||||||
|
## 2026-02-14 - 25.2.0 - feat(metrics)
|
||||||
|
add per-IP and HTTP-request metrics, propagate source IP through proxy paths, and expose new metrics to the TS adapter
|
||||||
|
|
||||||
|
- Add per-IP tracking and IpMetrics in MetricsCollector (active/total connections, bytes, throughput).
|
||||||
|
- Add HTTP request counters and tracking (total_http_requests, http_requests_per_sec, recent counters and tests).
|
||||||
|
- Include throughput history (ThroughputSample serialization, retention and snapshotting) and expose history in snapshots.
|
||||||
|
- Propagate source IP through HTTP and passthrough code paths: CountingBody.record_bytes and MetricsCollector methods now accept source_ip; connection_opened/closed calls include source IP.
|
||||||
|
- Introduce ForwardMetricsCtx to carry metrics context (collector, route_id, source_ip) into passthrough forwarding routines; update ConnectionGuard to include source_ip.
|
||||||
|
- TypeScript adapter (rust-metrics-adapter.ts) updated to return per-IP counts, top IPs, per-IP throughput, throughput history mapping, and HTTP request rates/total where available.
|
||||||
|
- Numerous unit tests added for per-IP tracking, HTTP request tracking, throughput history and ThroughputTracker.history behavior.
|
||||||
|
|
||||||
## 2026-02-13 - 25.1.0 - feat(metrics)
|
## 2026-02-13 - 25.1.0 - feat(metrics)
|
||||||
add real-time throughput sampling and byte-counting metrics
|
add real-time throughput sampling and byte-counting metrics
|
||||||
|
|
||||||
|
|||||||
281
deno.lock
generated
281
deno.lock
generated
@@ -5,29 +5,15 @@
|
|||||||
"npm:@git.zone/tsrun@^2.0.1": "2.0.1",
|
"npm:@git.zone/tsrun@^2.0.1": "2.0.1",
|
||||||
"npm:@git.zone/tsrust@^1.3.0": "1.3.0",
|
"npm:@git.zone/tsrust@^1.3.0": "1.3.0",
|
||||||
"npm:@git.zone/tstest@^3.1.8": "3.1.8_@push.rocks+smartserve@2.0.1_typescript@5.9.3",
|
"npm:@git.zone/tstest@^3.1.8": "3.1.8_@push.rocks+smartserve@2.0.1_typescript@5.9.3",
|
||||||
"npm:@push.rocks/lik@^6.2.2": "6.2.2",
|
|
||||||
"npm:@push.rocks/smartacme@8": "8.0.0_@push.rocks+smartserve@2.0.1",
|
|
||||||
"npm:@push.rocks/smartcrypto@^2.0.4": "2.0.4",
|
"npm:@push.rocks/smartcrypto@^2.0.4": "2.0.4",
|
||||||
"npm:@push.rocks/smartdelay@^3.0.5": "3.0.5",
|
|
||||||
"npm:@push.rocks/smartfile@^13.1.2": "13.1.2",
|
|
||||||
"npm:@push.rocks/smartlog@^3.1.10": "3.1.10",
|
"npm:@push.rocks/smartlog@^3.1.10": "3.1.10",
|
||||||
"npm:@push.rocks/smartnetwork@^4.4.0": "4.4.0",
|
|
||||||
"npm:@push.rocks/smartpromise@^4.2.3": "4.2.3",
|
|
||||||
"npm:@push.rocks/smartrequest@^5.0.1": "5.0.1",
|
|
||||||
"npm:@push.rocks/smartrust@^1.2.1": "1.2.1",
|
"npm:@push.rocks/smartrust@^1.2.1": "1.2.1",
|
||||||
"npm:@push.rocks/smartrx@^3.0.10": "3.0.10",
|
|
||||||
"npm:@push.rocks/smartserve@^2.0.1": "2.0.1",
|
"npm:@push.rocks/smartserve@^2.0.1": "2.0.1",
|
||||||
"npm:@push.rocks/smartstring@^4.1.0": "4.1.0",
|
|
||||||
"npm:@push.rocks/taskbuffer@^4.2.0": "4.2.0",
|
|
||||||
"npm:@tsclass/tsclass@^9.3.0": "9.3.0",
|
"npm:@tsclass/tsclass@^9.3.0": "9.3.0",
|
||||||
"npm:@types/minimatch@6": "6.0.0",
|
|
||||||
"npm:@types/node@^25.2.3": "25.2.3",
|
"npm:@types/node@^25.2.3": "25.2.3",
|
||||||
"npm:@types/ws@^8.18.1": "8.18.1",
|
|
||||||
"npm:minimatch@^10.2.0": "10.2.0",
|
"npm:minimatch@^10.2.0": "10.2.0",
|
||||||
"npm:pretty-ms@^9.3.0": "9.3.0",
|
|
||||||
"npm:typescript@^5.9.3": "5.9.3",
|
"npm:typescript@^5.9.3": "5.9.3",
|
||||||
"npm:why-is-node-running@^3.2.2": "3.2.2",
|
"npm:why-is-node-running@^3.2.2": "3.2.2"
|
||||||
"npm:ws@^8.19.0": "8.19.0"
|
|
||||||
},
|
},
|
||||||
"npm": {
|
"npm": {
|
||||||
"@api.global/typedrequest-interfaces@2.0.2": {
|
"@api.global/typedrequest-interfaces@2.0.2": {
|
||||||
@@ -117,7 +103,7 @@
|
|||||||
"@push.rocks/smartsitemap",
|
"@push.rocks/smartsitemap",
|
||||||
"@push.rocks/smartstream",
|
"@push.rocks/smartstream",
|
||||||
"@push.rocks/smarttime",
|
"@push.rocks/smarttime",
|
||||||
"@push.rocks/taskbuffer@3.5.0",
|
"@push.rocks/taskbuffer",
|
||||||
"@push.rocks/webrequest@3.0.37",
|
"@push.rocks/webrequest@3.0.37",
|
||||||
"@push.rocks/webstore",
|
"@push.rocks/webstore",
|
||||||
"@tsclass/tsclass@9.3.0",
|
"@tsclass/tsclass@9.3.0",
|
||||||
@@ -164,19 +150,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@api.global/typedsocket/-/typedsocket-3.1.1.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@api.global/typedsocket/-/typedsocket-3.1.1.tgz"
|
||||||
},
|
},
|
||||||
"@apiclient.xyz/cloudflare@6.4.3": {
|
|
||||||
"integrity": "sha512-ztegUdUO3Zd4mUoTSylKlCEKPBMHEcggrLelR+7CiblM4beHMwopMVlryBmiCY7bOVbUSPoK0xsVTF7VIy3p/A==",
|
|
||||||
"dependencies": [
|
|
||||||
"@push.rocks/smartdelay",
|
|
||||||
"@push.rocks/smartlog",
|
|
||||||
"@push.rocks/smartpromise",
|
|
||||||
"@push.rocks/smartrequest@5.0.1",
|
|
||||||
"@push.rocks/smartstring",
|
|
||||||
"@tsclass/tsclass@9.3.0",
|
|
||||||
"cloudflare"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/@apiclient.xyz/cloudflare/-/cloudflare-6.4.3.tgz"
|
|
||||||
},
|
|
||||||
"@aws-crypto/crc32@5.2.0": {
|
"@aws-crypto/crc32@5.2.0": {
|
||||||
"integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
|
"integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -1590,7 +1563,7 @@
|
|||||||
"@push.rocks/smartpromise",
|
"@push.rocks/smartpromise",
|
||||||
"@push.rocks/smartstring",
|
"@push.rocks/smartstring",
|
||||||
"@push.rocks/smartunique",
|
"@push.rocks/smartunique",
|
||||||
"@push.rocks/taskbuffer@3.5.0",
|
"@push.rocks/taskbuffer",
|
||||||
"@tsclass/tsclass@9.3.0"
|
"@tsclass/tsclass@9.3.0"
|
||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@push.rocks/levelcache/-/levelcache-3.2.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@push.rocks/levelcache/-/levelcache-3.2.0.tgz"
|
||||||
@@ -1603,7 +1576,7 @@
|
|||||||
"@push.rocks/smartpromise",
|
"@push.rocks/smartpromise",
|
||||||
"@push.rocks/smartrx",
|
"@push.rocks/smartrx",
|
||||||
"@push.rocks/smarttime",
|
"@push.rocks/smarttime",
|
||||||
"@types/minimatch@5.1.2",
|
"@types/minimatch",
|
||||||
"@types/symbol-tree",
|
"@types/symbol-tree",
|
||||||
"symbol-tree"
|
"symbol-tree"
|
||||||
],
|
],
|
||||||
@@ -1632,7 +1605,7 @@
|
|||||||
"@push.rocks/smartpath@6.0.0",
|
"@push.rocks/smartpath@6.0.0",
|
||||||
"@push.rocks/smartpromise",
|
"@push.rocks/smartpromise",
|
||||||
"@push.rocks/smartrx",
|
"@push.rocks/smartrx",
|
||||||
"@push.rocks/taskbuffer@3.5.0",
|
"@push.rocks/taskbuffer",
|
||||||
"@tsclass/tsclass@9.3.0"
|
"@tsclass/tsclass@9.3.0"
|
||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@push.rocks/npmextra/-/npmextra-5.3.3.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@push.rocks/npmextra/-/npmextra-5.3.3.tgz"
|
||||||
@@ -1648,28 +1621,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@push.rocks/qenv/-/qenv-6.1.3.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@push.rocks/qenv/-/qenv-6.1.3.tgz"
|
||||||
},
|
},
|
||||||
"@push.rocks/smartacme@8.0.0_@push.rocks+smartserve@2.0.1": {
|
|
||||||
"integrity": "sha512-Oq+m+LX4IG0p4qCGZLEwa6UlMo5Hfq7paRjpREwQNsaGSKl23xsjsEJLxjxkePwaXnaIkHEwU/5MtrEkg2uKEQ==",
|
|
||||||
"dependencies": [
|
|
||||||
"@api.global/typedserver@3.0.80_@push.rocks+smartserve@2.0.1",
|
|
||||||
"@apiclient.xyz/cloudflare",
|
|
||||||
"@push.rocks/lik",
|
|
||||||
"@push.rocks/smartdata",
|
|
||||||
"@push.rocks/smartdelay",
|
|
||||||
"@push.rocks/smartdns@6.2.2",
|
|
||||||
"@push.rocks/smartfile@11.2.7",
|
|
||||||
"@push.rocks/smartlog",
|
|
||||||
"@push.rocks/smartnetwork",
|
|
||||||
"@push.rocks/smartpromise",
|
|
||||||
"@push.rocks/smartrequest@2.1.0",
|
|
||||||
"@push.rocks/smartstring",
|
|
||||||
"@push.rocks/smarttime",
|
|
||||||
"@push.rocks/smartunique",
|
|
||||||
"@tsclass/tsclass@9.3.0",
|
|
||||||
"acme-client"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/@push.rocks/smartacme/-/smartacme-8.0.0.tgz"
|
|
||||||
},
|
|
||||||
"@push.rocks/smartarchive@4.2.4": {
|
"@push.rocks/smartarchive@4.2.4": {
|
||||||
"integrity": "sha512-uiqVAXPxmr8G5rv3uZvZFMOCt8l7cZC3nzvsy4YQqKf/VkPhKIEX+b7LkAeNlxPSYUiBQUkNRoawg9+5BaMcHg==",
|
"integrity": "sha512-uiqVAXPxmr8G5rv3uZvZFMOCt8l7cZC3nzvsy4YQqKf/VkPhKIEX+b7LkAeNlxPSYUiBQUkNRoawg9+5BaMcHg==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -1805,7 +1756,7 @@
|
|||||||
"@push.rocks/smartstring",
|
"@push.rocks/smartstring",
|
||||||
"@push.rocks/smarttime",
|
"@push.rocks/smarttime",
|
||||||
"@push.rocks/smartunique",
|
"@push.rocks/smartunique",
|
||||||
"@push.rocks/taskbuffer@3.5.0",
|
"@push.rocks/taskbuffer",
|
||||||
"@tsclass/tsclass@9.3.0",
|
"@tsclass/tsclass@9.3.0",
|
||||||
"mongodb"
|
"mongodb"
|
||||||
],
|
],
|
||||||
@@ -1818,23 +1769,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@push.rocks/smartdelay/-/smartdelay-3.0.5.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@push.rocks/smartdelay/-/smartdelay-3.0.5.tgz"
|
||||||
},
|
},
|
||||||
"@push.rocks/smartdns@6.2.2": {
|
|
||||||
"integrity": "sha512-MhJcHujbyIuwIIFdnXb2OScGtRjNsliLUS8GoAurFsKtcCOaA0ytfP+PNzkukyBufjb1nMiJF3rjhswXdHakAQ==",
|
|
||||||
"dependencies": [
|
|
||||||
"@push.rocks/smartdelay",
|
|
||||||
"@push.rocks/smartenv@5.0.13",
|
|
||||||
"@push.rocks/smartpromise",
|
|
||||||
"@push.rocks/smartrequest@2.1.0",
|
|
||||||
"@tsclass/tsclass@5.0.0",
|
|
||||||
"@types/dns-packet",
|
|
||||||
"@types/elliptic",
|
|
||||||
"acme-client",
|
|
||||||
"dns-packet",
|
|
||||||
"elliptic",
|
|
||||||
"minimatch@10.2.0"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/@push.rocks/smartdns/-/smartdns-6.2.2.tgz"
|
|
||||||
},
|
|
||||||
"@push.rocks/smartdns@7.8.0": {
|
"@push.rocks/smartdns@7.8.0": {
|
||||||
"integrity": "sha512-5FX74AAgQSqWPZkpTsI/BbUKBQpZKSvs+UdX9IZpwcuPldI+K7D1WeE02mMAGd1Ncd/sYAMor5CTlhnG6L+QhQ==",
|
"integrity": "sha512-5FX74AAgQSqWPZkpTsI/BbUKBQpZKSvs+UdX9IZpwcuPldI+K7D1WeE02mMAGd1Ncd/sYAMor5CTlhnG6L+QhQ==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -2095,7 +2029,7 @@
|
|||||||
"@push.rocks/smartnetwork@4.4.0": {
|
"@push.rocks/smartnetwork@4.4.0": {
|
||||||
"integrity": "sha512-OvFtz41cvQ7lcXwaIOhghNUUlNoMxvwKDctbDvMyuZyEH08SpLjhyv2FuKbKL/mgwA/WxakTbohoC8SW7t+kiw==",
|
"integrity": "sha512-OvFtz41cvQ7lcXwaIOhghNUUlNoMxvwKDctbDvMyuZyEH08SpLjhyv2FuKbKL/mgwA/WxakTbohoC8SW7t+kiw==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"@push.rocks/smartdns@7.8.0",
|
"@push.rocks/smartdns",
|
||||||
"@push.rocks/smartping",
|
"@push.rocks/smartping",
|
||||||
"@push.rocks/smartpromise",
|
"@push.rocks/smartpromise",
|
||||||
"@push.rocks/smartstring",
|
"@push.rocks/smartstring",
|
||||||
@@ -2449,20 +2383,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@push.rocks/taskbuffer/-/taskbuffer-3.5.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@push.rocks/taskbuffer/-/taskbuffer-3.5.0.tgz"
|
||||||
},
|
},
|
||||||
"@push.rocks/taskbuffer@4.2.0": {
|
|
||||||
"integrity": "sha512-ttoBe5y/WXkAo5/wSMcC/Y4Zbyw4XG8kwAsEaqnAPCxa3M9MI1oV/yM1e9gU1IH97HVPidzbTxRU5/PcHDdUsg==",
|
|
||||||
"dependencies": [
|
|
||||||
"@design.estate/dees-element",
|
|
||||||
"@push.rocks/lik",
|
|
||||||
"@push.rocks/smartdelay",
|
|
||||||
"@push.rocks/smartlog",
|
|
||||||
"@push.rocks/smartpromise",
|
|
||||||
"@push.rocks/smartrx",
|
|
||||||
"@push.rocks/smarttime",
|
|
||||||
"@push.rocks/smartunique"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/@push.rocks/taskbuffer/-/taskbuffer-4.2.0.tgz"
|
|
||||||
},
|
|
||||||
"@push.rocks/webrequest@3.0.37": {
|
"@push.rocks/webrequest@3.0.37": {
|
||||||
"integrity": "sha512-fLN7kP6GeHFxE4UH4r9C9pjcQb0QkJxHeAMwXvbOqB9hh0MFNKhtGU7GoaTn8SVRGRMPc9UqZVNwo6u5l8Wn0A==",
|
"integrity": "sha512-fLN7kP6GeHFxE4UH4r9C9pjcQb0QkJxHeAMwXvbOqB9hh0MFNKhtGU7GoaTn8SVRGRMPc9UqZVNwo6u5l8Wn0A==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -3317,13 +3237,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@tsclass/tsclass/-/tsclass-4.4.4.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@tsclass/tsclass/-/tsclass-4.4.4.tgz"
|
||||||
},
|
},
|
||||||
"@tsclass/tsclass@5.0.0": {
|
|
||||||
"integrity": "sha512-2X66VCk0Oe1L01j6GQHC6F9Gj7lpZPPSUTDNax7e29lm4OqBTyAzTR3ePR8coSbWBwsmRV8awLRSrSI+swlqWA==",
|
|
||||||
"dependencies": [
|
|
||||||
"type-fest@4.41.0"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/@tsclass/tsclass/-/tsclass-5.0.0.tgz"
|
|
||||||
},
|
|
||||||
"@tsclass/tsclass@9.3.0": {
|
"@tsclass/tsclass@9.3.0": {
|
||||||
"integrity": "sha512-KD3oTUN3RGu67tgjNHgWWZGsdYipr1RUDxQ9MMKSgIJ6oNZ4q5m2rg0ibrgyHWkAjTPlHVa6kHP3uVOY+8bnHw==",
|
"integrity": "sha512-KD3oTUN3RGu67tgjNHgWWZGsdYipr1RUDxQ9MMKSgIJ6oNZ4q5m2rg0ibrgyHWkAjTPlHVa6kHP3uVOY+8bnHw==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -3338,13 +3251,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@tybys/wasm-util/-/wasm-util-0.10.1.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@tybys/wasm-util/-/wasm-util-0.10.1.tgz"
|
||||||
},
|
},
|
||||||
"@types/bn.js@5.2.0": {
|
|
||||||
"integrity": "sha512-DLbJ1BPqxvQhIGbeu8VbUC1DiAiahHtAYvA0ZEAa4P31F7IaArc8z3C3BRQdWX4mtLQuABG4yzp76ZrS02Ui1Q==",
|
|
||||||
"dependencies": [
|
|
||||||
"@types/node@24.2.0"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/@types/bn.js/-/bn.js-5.2.0.tgz"
|
|
||||||
},
|
|
||||||
"@types/body-parser@1.19.6": {
|
"@types/body-parser@1.19.6": {
|
||||||
"integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==",
|
"integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -3393,13 +3299,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@types/dns-packet/-/dns-packet-5.6.5.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@types/dns-packet/-/dns-packet-5.6.5.tgz"
|
||||||
},
|
},
|
||||||
"@types/elliptic@6.4.18": {
|
|
||||||
"integrity": "sha512-UseG6H5vjRiNpQvrhy4VF/JXdA3V/Fp5amvveaL+fs28BZ6xIKJBPnUPRlEaZpysD9MbpfaLi8lbl7PGUAkpWw==",
|
|
||||||
"dependencies": [
|
|
||||||
"@types/bn.js"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/@types/elliptic/-/elliptic-6.4.18.tgz"
|
|
||||||
},
|
|
||||||
"@types/express-serve-static-core@5.1.1": {
|
"@types/express-serve-static-core@5.1.1": {
|
||||||
"integrity": "sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==",
|
"integrity": "sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -3481,14 +3380,6 @@
|
|||||||
"integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==",
|
"integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/@types/minimatch/-/minimatch-5.1.2.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@types/minimatch/-/minimatch-5.1.2.tgz"
|
||||||
},
|
},
|
||||||
"@types/minimatch@6.0.0": {
|
|
||||||
"integrity": "sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==",
|
|
||||||
"dependencies": [
|
|
||||||
"minimatch@10.2.0"
|
|
||||||
],
|
|
||||||
"deprecated": true,
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/@types/minimatch/-/minimatch-6.0.0.tgz"
|
|
||||||
},
|
|
||||||
"@types/ms@2.1.0": {
|
"@types/ms@2.1.0": {
|
||||||
"integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
|
"integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/@types/ms/-/ms-2.1.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@types/ms/-/ms-2.1.0.tgz"
|
||||||
@@ -3500,14 +3391,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@types/mute-stream/-/mute-stream-0.0.4.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@types/mute-stream/-/mute-stream-0.0.4.tgz"
|
||||||
},
|
},
|
||||||
"@types/node-fetch@2.6.13": {
|
|
||||||
"integrity": "sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==",
|
|
||||||
"dependencies": [
|
|
||||||
"@types/node@24.2.0",
|
|
||||||
"form-data"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/@types/node-fetch/-/node-fetch-2.6.13.tgz"
|
|
||||||
},
|
|
||||||
"@types/node-forge@1.3.14": {
|
"@types/node-forge@1.3.14": {
|
||||||
"integrity": "sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==",
|
"integrity": "sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -3515,13 +3398,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/@types/node-forge/-/node-forge-1.3.14.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@types/node-forge/-/node-forge-1.3.14.tgz"
|
||||||
},
|
},
|
||||||
"@types/node@18.19.130": {
|
|
||||||
"integrity": "sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==",
|
|
||||||
"dependencies": [
|
|
||||||
"undici-types@5.26.5"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/@types/node/-/node-18.19.130.tgz"
|
|
||||||
},
|
|
||||||
"@types/node@22.19.11": {
|
"@types/node@22.19.11": {
|
||||||
"integrity": "sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==",
|
"integrity": "sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -3660,13 +3536,6 @@
|
|||||||
"integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
|
"integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/@ungap/structured-clone/-/structured-clone-1.3.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@ungap/structured-clone/-/structured-clone-1.3.0.tgz"
|
||||||
},
|
},
|
||||||
"abort-controller@3.0.0": {
|
|
||||||
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
|
|
||||||
"dependencies": [
|
|
||||||
"event-target-shim"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/abort-controller/-/abort-controller-3.0.0.tgz"
|
|
||||||
},
|
|
||||||
"accepts@1.3.8": {
|
"accepts@1.3.8": {
|
||||||
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
|
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -3849,10 +3718,6 @@
|
|||||||
"integrity": "sha512-RkaJzeJKDbaDWTIPiJwubyljaEPwpVWkm9Rt5h9Nd6h7tEXTJ3VB4qxdZBioV7JO5yLUaOKwz7vDOzlncUsegw==",
|
"integrity": "sha512-RkaJzeJKDbaDWTIPiJwubyljaEPwpVWkm9Rt5h9Nd6h7tEXTJ3VB4qxdZBioV7JO5yLUaOKwz7vDOzlncUsegw==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/basic-ftp/-/basic-ftp-5.1.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/basic-ftp/-/basic-ftp-5.1.0.tgz"
|
||||||
},
|
},
|
||||||
"bn.js@4.12.2": {
|
|
||||||
"integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/bn.js/-/bn.js-4.12.2.tgz"
|
|
||||||
},
|
|
||||||
"body-parser@2.2.2": {
|
"body-parser@2.2.2": {
|
||||||
"integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
|
"integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -3904,10 +3769,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/broadcast-channel/-/broadcast-channel-7.3.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/broadcast-channel/-/broadcast-channel-7.3.0.tgz"
|
||||||
},
|
},
|
||||||
"brorand@1.1.0": {
|
|
||||||
"integrity": "12c25efe40a45e3c323eb8675a0a0ce57b22371f",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/brorand/-/brorand-1.1.0.tgz"
|
|
||||||
},
|
|
||||||
"bson@6.10.4": {
|
"bson@6.10.4": {
|
||||||
"integrity": "sha512-WIsKqkSC0ABoBJuT1LEX+2HEvNmNKKgnTAyd0fL8qzK4SH2i9NXg+t08YtdZp/V9IZ33cxe3iV4yM0qg8lMQng==",
|
"integrity": "sha512-WIsKqkSC0ABoBJuT1LEX+2HEvNmNKKgnTAyd0fL8qzK4SH2i9NXg+t08YtdZp/V9IZ33cxe3iV4yM0qg8lMQng==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/bson/-/bson-6.10.4.tgz"
|
"tarball": "https://verdaccio.lossless.digital/bson/-/bson-6.10.4.tgz"
|
||||||
@@ -4051,19 +3912,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/cliui/-/cliui-8.0.1.tgz"
|
"tarball": "https://verdaccio.lossless.digital/cliui/-/cliui-8.0.1.tgz"
|
||||||
},
|
},
|
||||||
"cloudflare@5.2.0": {
|
|
||||||
"integrity": "sha512-dVzqDpPFYR9ApEC9e+JJshFJZXcw4HzM8W+3DHzO5oy9+8rLC53G7x6fEf9A7/gSuSCxuvndzui5qJKftfIM9A==",
|
|
||||||
"dependencies": [
|
|
||||||
"@types/node@18.19.130",
|
|
||||||
"@types/node-fetch",
|
|
||||||
"abort-controller",
|
|
||||||
"agentkeepalive",
|
|
||||||
"form-data-encoder@1.7.2",
|
|
||||||
"formdata-node",
|
|
||||||
"node-fetch"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/cloudflare/-/cloudflare-5.2.0.tgz"
|
|
||||||
},
|
|
||||||
"color-convert@2.0.1": {
|
"color-convert@2.0.1": {
|
||||||
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -4286,19 +4134,6 @@
|
|||||||
"integrity": "590c61156b0ae2f4f0255732a158b266bc56b21d",
|
"integrity": "590c61156b0ae2f4f0255732a158b266bc56b21d",
|
||||||
"tarball": "https://verdaccio.lossless.digital/ee-first/-/ee-first-1.1.1.tgz"
|
"tarball": "https://verdaccio.lossless.digital/ee-first/-/ee-first-1.1.1.tgz"
|
||||||
},
|
},
|
||||||
"elliptic@6.6.1": {
|
|
||||||
"integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==",
|
|
||||||
"dependencies": [
|
|
||||||
"bn.js",
|
|
||||||
"brorand",
|
|
||||||
"hash.js",
|
|
||||||
"hmac-drbg",
|
|
||||||
"inherits",
|
|
||||||
"minimalistic-assert",
|
|
||||||
"minimalistic-crypto-utils"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/elliptic/-/elliptic-6.6.1.tgz"
|
|
||||||
},
|
|
||||||
"emoji-regex@8.0.0": {
|
"emoji-regex@8.0.0": {
|
||||||
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/emoji-regex/-/emoji-regex-8.0.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/emoji-regex/-/emoji-regex-8.0.0.tgz"
|
||||||
@@ -4464,10 +4299,6 @@
|
|||||||
"integrity": "41ae2eeb65efa62268aebfea83ac7d79299b0887",
|
"integrity": "41ae2eeb65efa62268aebfea83ac7d79299b0887",
|
||||||
"tarball": "https://verdaccio.lossless.digital/etag/-/etag-1.8.1.tgz"
|
"tarball": "https://verdaccio.lossless.digital/etag/-/etag-1.8.1.tgz"
|
||||||
},
|
},
|
||||||
"event-target-shim@5.0.1": {
|
|
||||||
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/event-target-shim/-/event-target-shim-5.0.1.tgz"
|
|
||||||
},
|
|
||||||
"eventemitter3@4.0.7": {
|
"eventemitter3@4.0.7": {
|
||||||
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
|
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/eventemitter3/-/eventemitter3-4.0.7.tgz"
|
"tarball": "https://verdaccio.lossless.digital/eventemitter3/-/eventemitter3-4.0.7.tgz"
|
||||||
@@ -4684,10 +4515,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/foreground-child/-/foreground-child-3.3.1.tgz"
|
"tarball": "https://verdaccio.lossless.digital/foreground-child/-/foreground-child-3.3.1.tgz"
|
||||||
},
|
},
|
||||||
"form-data-encoder@1.7.2": {
|
|
||||||
"integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/form-data-encoder/-/form-data-encoder-1.7.2.tgz"
|
|
||||||
},
|
|
||||||
"form-data-encoder@2.1.4": {
|
"form-data-encoder@2.1.4": {
|
||||||
"integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==",
|
"integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/form-data-encoder/-/form-data-encoder-2.1.4.tgz"
|
"tarball": "https://verdaccio.lossless.digital/form-data-encoder/-/form-data-encoder-2.1.4.tgz"
|
||||||
@@ -4707,14 +4534,6 @@
|
|||||||
"integrity": "d6170107e9efdc4ed30c9dc39016df942b5cb58b",
|
"integrity": "d6170107e9efdc4ed30c9dc39016df942b5cb58b",
|
||||||
"tarball": "https://verdaccio.lossless.digital/format/-/format-0.2.2.tgz"
|
"tarball": "https://verdaccio.lossless.digital/format/-/format-0.2.2.tgz"
|
||||||
},
|
},
|
||||||
"formdata-node@4.4.1": {
|
|
||||||
"integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==",
|
|
||||||
"dependencies": [
|
|
||||||
"node-domexception",
|
|
||||||
"web-streams-polyfill"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/formdata-node/-/formdata-node-4.4.1.tgz"
|
|
||||||
},
|
|
||||||
"forwarded@0.2.0": {
|
"forwarded@0.2.0": {
|
||||||
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/forwarded/-/forwarded-0.2.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/forwarded/-/forwarded-0.2.0.tgz"
|
||||||
@@ -4846,7 +4665,7 @@
|
|||||||
"cacheable-lookup",
|
"cacheable-lookup",
|
||||||
"cacheable-request",
|
"cacheable-request",
|
||||||
"decompress-response",
|
"decompress-response",
|
||||||
"form-data-encoder@2.1.4",
|
"form-data-encoder",
|
||||||
"get-stream@6.0.1",
|
"get-stream@6.0.1",
|
||||||
"http2-wrapper",
|
"http2-wrapper",
|
||||||
"lowercase-keys",
|
"lowercase-keys",
|
||||||
@@ -4863,7 +4682,7 @@
|
|||||||
"integrity": "sha512-KyrFvnl+J9US63TEzwoiJOQzZBJY7KgBushJA8X61DMbNsH+2ONkDuLDnCnwUiPTF42tLoEmrPyoqbenVA5zrg==",
|
"integrity": "sha512-KyrFvnl+J9US63TEzwoiJOQzZBJY7KgBushJA8X61DMbNsH+2ONkDuLDnCnwUiPTF42tLoEmrPyoqbenVA5zrg==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"entities",
|
"entities",
|
||||||
"webidl-conversions@7.0.0",
|
"webidl-conversions",
|
||||||
"whatwg-mimetype"
|
"whatwg-mimetype"
|
||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/happy-dom/-/happy-dom-15.11.7.tgz"
|
"tarball": "https://verdaccio.lossless.digital/happy-dom/-/happy-dom-15.11.7.tgz"
|
||||||
@@ -4886,14 +4705,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/has-tostringtag/-/has-tostringtag-1.0.2.tgz"
|
"tarball": "https://verdaccio.lossless.digital/has-tostringtag/-/has-tostringtag-1.0.2.tgz"
|
||||||
},
|
},
|
||||||
"hash.js@1.1.7": {
|
|
||||||
"integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
|
|
||||||
"dependencies": [
|
|
||||||
"inherits",
|
|
||||||
"minimalistic-assert"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/hash.js/-/hash.js-1.1.7.tgz"
|
|
||||||
},
|
|
||||||
"hasown@2.0.2": {
|
"hasown@2.0.2": {
|
||||||
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -4939,15 +4750,6 @@
|
|||||||
"bin": true,
|
"bin": true,
|
||||||
"tarball": "https://verdaccio.lossless.digital/he/-/he-1.2.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/he/-/he-1.2.0.tgz"
|
||||||
},
|
},
|
||||||
"hmac-drbg@1.0.1": {
|
|
||||||
"integrity": "d2745701025a6c775a6c545793ed502fc0c649a1",
|
|
||||||
"dependencies": [
|
|
||||||
"hash.js",
|
|
||||||
"minimalistic-assert",
|
|
||||||
"minimalistic-crypto-utils"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/hmac-drbg/-/hmac-drbg-1.0.1.tgz"
|
|
||||||
},
|
|
||||||
"html-minifier@4.0.0": {
|
"html-minifier@4.0.0": {
|
||||||
"integrity": "sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==",
|
"integrity": "sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -5845,14 +5647,6 @@
|
|||||||
"integrity": "sha512-UeX942qZpofn5L97h295SkS7j/ADf7Qac8gdRCMBPxi0/1m70aeB2owLFvWbyuMj1dowonlivlVRQVDx+6h+7Q==",
|
"integrity": "sha512-UeX942qZpofn5L97h295SkS7j/ADf7Qac8gdRCMBPxi0/1m70aeB2owLFvWbyuMj1dowonlivlVRQVDx+6h+7Q==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/mingo/-/mingo-7.2.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/mingo/-/mingo-7.2.0.tgz"
|
||||||
},
|
},
|
||||||
"minimalistic-assert@1.0.1": {
|
|
||||||
"integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"
|
|
||||||
},
|
|
||||||
"minimalistic-crypto-utils@1.0.1": {
|
|
||||||
"integrity": "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"
|
|
||||||
},
|
|
||||||
"minimatch@10.2.0": {
|
"minimatch@10.2.0": {
|
||||||
"integrity": "sha512-ugkC31VaVg9cF0DFVoADH12k6061zNZkZON+aX8AWsR9GhPcErkcMBceb6znR8wLERM2AkkOxy2nWRLpT9Jq5w==",
|
"integrity": "sha512-ugkC31VaVg9cF0DFVoADH12k6061zNZkZON+aX8AWsR9GhPcErkcMBceb6znR8wLERM2AkkOxy2nWRLpT9Jq5w==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -5890,7 +5684,7 @@
|
|||||||
"integrity": "sha512-rMO7CGo/9BFwyZABcKAWL8UJwH/Kc2x0g72uhDWzG48URRax5TCIcJ7Rc3RZqffZzO/Gwff/jyKwCU9TN8gehA==",
|
"integrity": "sha512-rMO7CGo/9BFwyZABcKAWL8UJwH/Kc2x0g72uhDWzG48URRax5TCIcJ7Rc3RZqffZzO/Gwff/jyKwCU9TN8gehA==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"@types/whatwg-url",
|
"@types/whatwg-url",
|
||||||
"whatwg-url@14.2.0"
|
"whatwg-url"
|
||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.2.tgz"
|
"tarball": "https://verdaccio.lossless.digital/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.2.tgz"
|
||||||
},
|
},
|
||||||
@@ -5969,17 +5763,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/no-case/-/no-case-2.3.2.tgz"
|
"tarball": "https://verdaccio.lossless.digital/no-case/-/no-case-2.3.2.tgz"
|
||||||
},
|
},
|
||||||
"node-domexception@1.0.0": {
|
|
||||||
"integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/node-domexception/-/node-domexception-1.0.0.tgz"
|
|
||||||
},
|
|
||||||
"node-fetch@2.7.0": {
|
|
||||||
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
|
|
||||||
"dependencies": [
|
|
||||||
"whatwg-url@5.0.0"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/node-fetch/-/node-fetch-2.7.0.tgz"
|
|
||||||
},
|
|
||||||
"node-forge@1.3.3": {
|
"node-forge@1.3.3": {
|
||||||
"integrity": "sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==",
|
"integrity": "sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/node-forge/-/node-forge-1.3.3.tgz"
|
"tarball": "https://verdaccio.lossless.digital/node-forge/-/node-forge-1.3.3.tgz"
|
||||||
@@ -6913,10 +6696,6 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/token-types/-/token-types-6.1.2.tgz"
|
"tarball": "https://verdaccio.lossless.digital/token-types/-/token-types-6.1.2.tgz"
|
||||||
},
|
},
|
||||||
"tr46@0.0.3": {
|
|
||||||
"integrity": "8184fd347dac9cdc185992f3a6622e14b9d9ab6a",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/tr46/-/tr46-0.0.3.tgz"
|
|
||||||
},
|
|
||||||
"tr46@5.1.1": {
|
"tr46@5.1.1": {
|
||||||
"integrity": "sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==",
|
"integrity": "sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -7014,10 +6793,6 @@
|
|||||||
"integrity": "sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==",
|
"integrity": "sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/uint8array-extras/-/uint8array-extras-1.5.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/uint8array-extras/-/uint8array-extras-1.5.0.tgz"
|
||||||
},
|
},
|
||||||
"undici-types@5.26.5": {
|
|
||||||
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/undici-types/-/undici-types-5.26.5.tgz"
|
|
||||||
},
|
|
||||||
"undici-types@6.21.0": {
|
"undici-types@6.21.0": {
|
||||||
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/undici-types/-/undici-types-6.21.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/undici-types/-/undici-types-6.21.0.tgz"
|
||||||
@@ -7134,18 +6909,10 @@
|
|||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/vfile/-/vfile-6.0.3.tgz"
|
"tarball": "https://verdaccio.lossless.digital/vfile/-/vfile-6.0.3.tgz"
|
||||||
},
|
},
|
||||||
"web-streams-polyfill@4.0.0-beta.3": {
|
|
||||||
"integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz"
|
|
||||||
},
|
|
||||||
"webdriver-bidi-protocol@0.4.0": {
|
"webdriver-bidi-protocol@0.4.0": {
|
||||||
"integrity": "sha512-U9VIlNRrq94d1xxR9JrCEAx5Gv/2W7ERSv8oWRoNe/QYbfccS0V3h/H6qeNeCRJxXGMhhnkqvwNrvPAYeuP9VA==",
|
"integrity": "sha512-U9VIlNRrq94d1xxR9JrCEAx5Gv/2W7ERSv8oWRoNe/QYbfccS0V3h/H6qeNeCRJxXGMhhnkqvwNrvPAYeuP9VA==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/webdriver-bidi-protocol/-/webdriver-bidi-protocol-0.4.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/webdriver-bidi-protocol/-/webdriver-bidi-protocol-0.4.0.tgz"
|
||||||
},
|
},
|
||||||
"webidl-conversions@3.0.1": {
|
|
||||||
"integrity": "24534275e2a7bc6be7bc86611cc16ae0a5654871",
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/webidl-conversions/-/webidl-conversions-3.0.1.tgz"
|
|
||||||
},
|
|
||||||
"webidl-conversions@7.0.0": {
|
"webidl-conversions@7.0.0": {
|
||||||
"integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
|
"integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
|
||||||
"tarball": "https://verdaccio.lossless.digital/webidl-conversions/-/webidl-conversions-7.0.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/webidl-conversions/-/webidl-conversions-7.0.0.tgz"
|
||||||
@@ -7157,19 +6924,11 @@
|
|||||||
"whatwg-url@14.2.0": {
|
"whatwg-url@14.2.0": {
|
||||||
"integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==",
|
"integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"tr46@5.1.1",
|
"tr46",
|
||||||
"webidl-conversions@7.0.0"
|
"webidl-conversions"
|
||||||
],
|
],
|
||||||
"tarball": "https://verdaccio.lossless.digital/whatwg-url/-/whatwg-url-14.2.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/whatwg-url/-/whatwg-url-14.2.0.tgz"
|
||||||
},
|
},
|
||||||
"whatwg-url@5.0.0": {
|
|
||||||
"integrity": "966454e8765462e37644d3626f6742ce8b70965d",
|
|
||||||
"dependencies": [
|
|
||||||
"tr46@0.0.3",
|
|
||||||
"webidl-conversions@3.0.1"
|
|
||||||
],
|
|
||||||
"tarball": "https://verdaccio.lossless.digital/whatwg-url/-/whatwg-url-5.0.0.tgz"
|
|
||||||
},
|
|
||||||
"which@2.0.2": {
|
"which@2.0.2": {
|
||||||
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@@ -7295,29 +7054,15 @@
|
|||||||
"npm:@git.zone/tsrun@^2.0.1",
|
"npm:@git.zone/tsrun@^2.0.1",
|
||||||
"npm:@git.zone/tsrust@^1.3.0",
|
"npm:@git.zone/tsrust@^1.3.0",
|
||||||
"npm:@git.zone/tstest@^3.1.8",
|
"npm:@git.zone/tstest@^3.1.8",
|
||||||
"npm:@push.rocks/lik@^6.2.2",
|
|
||||||
"npm:@push.rocks/smartacme@8",
|
|
||||||
"npm:@push.rocks/smartcrypto@^2.0.4",
|
"npm:@push.rocks/smartcrypto@^2.0.4",
|
||||||
"npm:@push.rocks/smartdelay@^3.0.5",
|
|
||||||
"npm:@push.rocks/smartfile@^13.1.2",
|
|
||||||
"npm:@push.rocks/smartlog@^3.1.10",
|
"npm:@push.rocks/smartlog@^3.1.10",
|
||||||
"npm:@push.rocks/smartnetwork@^4.4.0",
|
|
||||||
"npm:@push.rocks/smartpromise@^4.2.3",
|
|
||||||
"npm:@push.rocks/smartrequest@^5.0.1",
|
|
||||||
"npm:@push.rocks/smartrust@^1.2.1",
|
"npm:@push.rocks/smartrust@^1.2.1",
|
||||||
"npm:@push.rocks/smartrx@^3.0.10",
|
|
||||||
"npm:@push.rocks/smartserve@^2.0.1",
|
"npm:@push.rocks/smartserve@^2.0.1",
|
||||||
"npm:@push.rocks/smartstring@^4.1.0",
|
|
||||||
"npm:@push.rocks/taskbuffer@^4.2.0",
|
|
||||||
"npm:@tsclass/tsclass@^9.3.0",
|
"npm:@tsclass/tsclass@^9.3.0",
|
||||||
"npm:@types/minimatch@6",
|
|
||||||
"npm:@types/node@^25.2.3",
|
"npm:@types/node@^25.2.3",
|
||||||
"npm:@types/ws@^8.18.1",
|
|
||||||
"npm:minimatch@^10.2.0",
|
"npm:minimatch@^10.2.0",
|
||||||
"npm:pretty-ms@^9.3.0",
|
|
||||||
"npm:typescript@^5.9.3",
|
"npm:typescript@^5.9.3",
|
||||||
"npm:why-is-node-running@^3.2.2",
|
"npm:why-is-node-running@^3.2.2"
|
||||||
"npm:ws@^8.19.0"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
package.json
18
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartproxy",
|
"name": "@push.rocks/smartproxy",
|
||||||
"version": "25.1.0",
|
"version": "25.7.5",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A powerful proxy package with unified route-based configuration for high traffic management. Features include SSL/TLS support, flexible routing patterns, WebSocket handling, advanced security options, and automatic ACME certificate management.",
|
"description": "A powerful proxy package with unified route-based configuration for high traffic management. Features include SSL/TLS support, flexible routing patterns, WebSocket handling, advanced security options, and automatic ACME certificate management.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@@ -25,25 +25,11 @@
|
|||||||
"why-is-node-running": "^3.2.2"
|
"why-is-node-running": "^3.2.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@push.rocks/lik": "^6.2.2",
|
|
||||||
"@push.rocks/smartacme": "^8.0.0",
|
|
||||||
"@push.rocks/smartcrypto": "^2.0.4",
|
"@push.rocks/smartcrypto": "^2.0.4",
|
||||||
"@push.rocks/smartdelay": "^3.0.5",
|
|
||||||
"@push.rocks/smartfile": "^13.1.2",
|
|
||||||
"@push.rocks/smartlog": "^3.1.10",
|
"@push.rocks/smartlog": "^3.1.10",
|
||||||
"@push.rocks/smartnetwork": "^4.4.0",
|
|
||||||
"@push.rocks/smartpromise": "^4.2.3",
|
|
||||||
"@push.rocks/smartrequest": "^5.0.1",
|
|
||||||
"@push.rocks/smartrust": "^1.2.1",
|
"@push.rocks/smartrust": "^1.2.1",
|
||||||
"@push.rocks/smartrx": "^3.0.10",
|
|
||||||
"@push.rocks/smartstring": "^4.1.0",
|
|
||||||
"@push.rocks/taskbuffer": "^4.2.0",
|
|
||||||
"@tsclass/tsclass": "^9.3.0",
|
"@tsclass/tsclass": "^9.3.0",
|
||||||
"@types/minimatch": "^6.0.0",
|
"minimatch": "^10.2.0"
|
||||||
"@types/ws": "^8.18.1",
|
|
||||||
"minimatch": "^10.2.0",
|
|
||||||
"pretty-ms": "^9.3.0",
|
|
||||||
"ws": "^8.19.0"
|
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"ts/**/*",
|
"ts/**/*",
|
||||||
|
|||||||
372
pnpm-lock.yaml
generated
372
pnpm-lock.yaml
generated
@@ -8,63 +8,21 @@ importers:
|
|||||||
|
|
||||||
.:
|
.:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/lik':
|
|
||||||
specifier: ^6.2.2
|
|
||||||
version: 6.2.2
|
|
||||||
'@push.rocks/smartacme':
|
|
||||||
specifier: ^8.0.0
|
|
||||||
version: 8.0.0(socks@2.8.7)
|
|
||||||
'@push.rocks/smartcrypto':
|
'@push.rocks/smartcrypto':
|
||||||
specifier: ^2.0.4
|
specifier: ^2.0.4
|
||||||
version: 2.0.4
|
version: 2.0.4
|
||||||
'@push.rocks/smartdelay':
|
|
||||||
specifier: ^3.0.5
|
|
||||||
version: 3.0.5
|
|
||||||
'@push.rocks/smartfile':
|
|
||||||
specifier: ^13.1.2
|
|
||||||
version: 13.1.2
|
|
||||||
'@push.rocks/smartlog':
|
'@push.rocks/smartlog':
|
||||||
specifier: ^3.1.10
|
specifier: ^3.1.10
|
||||||
version: 3.1.10
|
version: 3.1.10
|
||||||
'@push.rocks/smartnetwork':
|
|
||||||
specifier: ^4.4.0
|
|
||||||
version: 4.4.0
|
|
||||||
'@push.rocks/smartpromise':
|
|
||||||
specifier: ^4.2.3
|
|
||||||
version: 4.2.3
|
|
||||||
'@push.rocks/smartrequest':
|
|
||||||
specifier: ^5.0.1
|
|
||||||
version: 5.0.1
|
|
||||||
'@push.rocks/smartrust':
|
'@push.rocks/smartrust':
|
||||||
specifier: ^1.2.1
|
specifier: ^1.2.1
|
||||||
version: 1.2.1
|
version: 1.2.1
|
||||||
'@push.rocks/smartrx':
|
|
||||||
specifier: ^3.0.10
|
|
||||||
version: 3.0.10
|
|
||||||
'@push.rocks/smartstring':
|
|
||||||
specifier: ^4.1.0
|
|
||||||
version: 4.1.0
|
|
||||||
'@push.rocks/taskbuffer':
|
|
||||||
specifier: ^4.2.0
|
|
||||||
version: 4.2.0
|
|
||||||
'@tsclass/tsclass':
|
'@tsclass/tsclass':
|
||||||
specifier: ^9.3.0
|
specifier: ^9.3.0
|
||||||
version: 9.3.0
|
version: 9.3.0
|
||||||
'@types/minimatch':
|
|
||||||
specifier: ^6.0.0
|
|
||||||
version: 6.0.0
|
|
||||||
'@types/ws':
|
|
||||||
specifier: ^8.18.1
|
|
||||||
version: 8.18.1
|
|
||||||
minimatch:
|
minimatch:
|
||||||
specifier: ^10.2.0
|
specifier: ^10.2.0
|
||||||
version: 10.2.0
|
version: 10.2.0
|
||||||
pretty-ms:
|
|
||||||
specifier: ^9.3.0
|
|
||||||
version: 9.3.0
|
|
||||||
ws:
|
|
||||||
specifier: ^8.19.0
|
|
||||||
version: 8.19.0
|
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@git.zone/tsbuild':
|
'@git.zone/tsbuild':
|
||||||
specifier: ^4.1.2
|
specifier: ^4.1.2
|
||||||
@@ -113,9 +71,6 @@ packages:
|
|||||||
'@push.rocks/smartserve':
|
'@push.rocks/smartserve':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@apiclient.xyz/cloudflare@6.4.3':
|
|
||||||
resolution: {integrity: sha512-ztegUdUO3Zd4mUoTSylKlCEKPBMHEcggrLelR+7CiblM4beHMwopMVlryBmiCY7bOVbUSPoK0xsVTF7VIy3p/A==}
|
|
||||||
|
|
||||||
'@aws-crypto/crc32@5.2.0':
|
'@aws-crypto/crc32@5.2.0':
|
||||||
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
|
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
|
||||||
engines: {node: '>=16.0.0'}
|
engines: {node: '>=16.0.0'}
|
||||||
@@ -312,15 +267,9 @@ packages:
|
|||||||
'@design.estate/dees-domtools@2.3.6':
|
'@design.estate/dees-domtools@2.3.6':
|
||||||
resolution: {integrity: sha512-cKaPNtSpp/ZuuXVx2dXO3K2FU3/HjC4ZkqtXb8Kl6yy9rNDbgtjcI4PuOk9Ux1SJzw7FgcxqVh7OSEV60htbmg==}
|
resolution: {integrity: sha512-cKaPNtSpp/ZuuXVx2dXO3K2FU3/HjC4ZkqtXb8Kl6yy9rNDbgtjcI4PuOk9Ux1SJzw7FgcxqVh7OSEV60htbmg==}
|
||||||
|
|
||||||
'@design.estate/dees-domtools@2.3.8':
|
|
||||||
resolution: {integrity: sha512-jUG9GMvPxKMwmRIZ9oLTL3c8hHvHuiwIk8cTrYnuZzGO/uJJ5/czk9o6LRXUuCOOG7TRLtqgOpK8EEQgaadfZA==}
|
|
||||||
|
|
||||||
'@design.estate/dees-element@2.1.3':
|
'@design.estate/dees-element@2.1.3':
|
||||||
resolution: {integrity: sha512-TjXWxVcdSPaT1IOk31ckfxvAZnJLuTxhFGsNCKoh63/UE2FVf6slp8//UFvN+ADigiA9ZsY0azkY99XbJCwDDA==}
|
resolution: {integrity: sha512-TjXWxVcdSPaT1IOk31ckfxvAZnJLuTxhFGsNCKoh63/UE2FVf6slp8//UFvN+ADigiA9ZsY0azkY99XbJCwDDA==}
|
||||||
|
|
||||||
'@design.estate/dees-element@2.1.6':
|
|
||||||
resolution: {integrity: sha512-7zyHkUjB8UEQgT9VbB2IJtc/yuPt9CI5JGel3b6BxA1kecY64ceIjFvof1uIkc0QP8q2fMLLY45r1c+9zDTjzg==}
|
|
||||||
|
|
||||||
'@emnapi/core@1.8.1':
|
'@emnapi/core@1.8.1':
|
||||||
resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==}
|
resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==}
|
||||||
|
|
||||||
@@ -580,15 +529,9 @@ packages:
|
|||||||
'@lit-labs/ssr-dom-shim@1.4.0':
|
'@lit-labs/ssr-dom-shim@1.4.0':
|
||||||
resolution: {integrity: sha512-ficsEARKnmmW5njugNYKipTm4SFnbik7CXtoencDZzmzo/dQ+2Q0bgkzJuoJP20Aj0F+izzJjOqsnkd6F/o1bw==}
|
resolution: {integrity: sha512-ficsEARKnmmW5njugNYKipTm4SFnbik7CXtoencDZzmzo/dQ+2Q0bgkzJuoJP20Aj0F+izzJjOqsnkd6F/o1bw==}
|
||||||
|
|
||||||
'@lit-labs/ssr-dom-shim@1.5.1':
|
|
||||||
resolution: {integrity: sha512-Aou5UdlSpr5whQe8AA/bZG0jMj96CoJIWbGfZ91qieWu5AWUMKw8VR/pAkQkJYvBNhmCcWnZlyyk5oze8JIqYA==}
|
|
||||||
|
|
||||||
'@lit/reactive-element@2.1.1':
|
'@lit/reactive-element@2.1.1':
|
||||||
resolution: {integrity: sha512-N+dm5PAYdQ8e6UlywyyrgI2t++wFGXfHx+dSJ1oBrg6FAxUj40jId++EaRm80MKX5JnlH1sBsyZ5h0bcZKemCg==}
|
resolution: {integrity: sha512-N+dm5PAYdQ8e6UlywyyrgI2t++wFGXfHx+dSJ1oBrg6FAxUj40jId++EaRm80MKX5JnlH1sBsyZ5h0bcZKemCg==}
|
||||||
|
|
||||||
'@lit/reactive-element@2.1.2':
|
|
||||||
resolution: {integrity: sha512-pbCDiVMnne1lYUIaYNN5wrwQXDtHaYtg7YEFPeW+hws6U47WeFvISGUWekPGKWOP1ygrs0ef0o1VJMk1exos5A==}
|
|
||||||
|
|
||||||
'@mixmark-io/domino@2.2.0':
|
'@mixmark-io/domino@2.2.0':
|
||||||
resolution: {integrity: sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==}
|
resolution: {integrity: sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==}
|
||||||
|
|
||||||
@@ -706,9 +649,6 @@ packages:
|
|||||||
'@push.rocks/qenv@6.1.3':
|
'@push.rocks/qenv@6.1.3':
|
||||||
resolution: {integrity: sha512-+z2hsAU/7CIgpYLFqvda8cn9rUBMHqLdQLjsFfRn5jPoD7dJ5rFlpkbhfM4Ws8mHMniwWaxGKo+q/YBhtzRBLg==}
|
resolution: {integrity: sha512-+z2hsAU/7CIgpYLFqvda8cn9rUBMHqLdQLjsFfRn5jPoD7dJ5rFlpkbhfM4Ws8mHMniwWaxGKo+q/YBhtzRBLg==}
|
||||||
|
|
||||||
'@push.rocks/smartacme@8.0.0':
|
|
||||||
resolution: {integrity: sha512-Oq+m+LX4IG0p4qCGZLEwa6UlMo5Hfq7paRjpREwQNsaGSKl23xsjsEJLxjxkePwaXnaIkHEwU/5MtrEkg2uKEQ==}
|
|
||||||
|
|
||||||
'@push.rocks/smartarchive@4.2.4':
|
'@push.rocks/smartarchive@4.2.4':
|
||||||
resolution: {integrity: sha512-uiqVAXPxmr8G5rv3uZvZFMOCt8l7cZC3nzvsy4YQqKf/VkPhKIEX+b7LkAeNlxPSYUiBQUkNRoawg9+5BaMcHg==}
|
resolution: {integrity: sha512-uiqVAXPxmr8G5rv3uZvZFMOCt8l7cZC3nzvsy4YQqKf/VkPhKIEX+b7LkAeNlxPSYUiBQUkNRoawg9+5BaMcHg==}
|
||||||
|
|
||||||
@@ -746,9 +686,6 @@ packages:
|
|||||||
'@push.rocks/smartdelay@3.0.5':
|
'@push.rocks/smartdelay@3.0.5':
|
||||||
resolution: {integrity: sha512-mUuI7kj2f7ztjpic96FvRIlf2RsKBa5arw81AHNsndbxO6asRcxuWL8dTVxouEIK8YsBUlj0AsrCkHhMbLQdHw==}
|
resolution: {integrity: sha512-mUuI7kj2f7ztjpic96FvRIlf2RsKBa5arw81AHNsndbxO6asRcxuWL8dTVxouEIK8YsBUlj0AsrCkHhMbLQdHw==}
|
||||||
|
|
||||||
'@push.rocks/smartdns@6.2.2':
|
|
||||||
resolution: {integrity: sha512-MhJcHujbyIuwIIFdnXb2OScGtRjNsliLUS8GoAurFsKtcCOaA0ytfP+PNzkukyBufjb1nMiJF3rjhswXdHakAQ==}
|
|
||||||
|
|
||||||
'@push.rocks/smartdns@7.6.1':
|
'@push.rocks/smartdns@7.6.1':
|
||||||
resolution: {integrity: sha512-nnP5+A2GOt0WsHrYhtKERmjdEHUchc+QbCCBEqlyeQTn+mNfx2WZvKVI1DFRJt8lamvzxP6Hr/BSe3WHdh4Snw==}
|
resolution: {integrity: sha512-nnP5+A2GOt0WsHrYhtKERmjdEHUchc+QbCCBEqlyeQTn+mNfx2WZvKVI1DFRJt8lamvzxP6Hr/BSe3WHdh4Snw==}
|
||||||
|
|
||||||
@@ -797,9 +734,6 @@ packages:
|
|||||||
'@push.rocks/smartjson@5.2.0':
|
'@push.rocks/smartjson@5.2.0':
|
||||||
resolution: {integrity: sha512-710e8UwovRfPgUtaBHcd6unaODUjV5fjxtGcGCqtaTcmvOV6VpasdVfT66xMDzQmWH2E9ZfHDJeso9HdDQzNQA==}
|
resolution: {integrity: sha512-710e8UwovRfPgUtaBHcd6unaODUjV5fjxtGcGCqtaTcmvOV6VpasdVfT66xMDzQmWH2E9ZfHDJeso9HdDQzNQA==}
|
||||||
|
|
||||||
'@push.rocks/smartjson@6.0.0':
|
|
||||||
resolution: {integrity: sha512-FYfJnmukt66WePn6xrVZ3BLmRQl9W82LcsICK3VU9sGW7kasig090jKXPm+yX8ibQcZAO/KyR/Q8tMIYZNxGew==}
|
|
||||||
|
|
||||||
'@push.rocks/smartlog-destination-devtools@1.0.12':
|
'@push.rocks/smartlog-destination-devtools@1.0.12':
|
||||||
resolution: {integrity: sha512-zvsIkrqByc0JRaBgIyhh+PSz2SY/e/bmhZdUcr/OW6pudgAcqe2sso68EzrKux0w9OMl1P9ZnzF3FpCZPFWD/A==}
|
resolution: {integrity: sha512-zvsIkrqByc0JRaBgIyhh+PSz2SY/e/bmhZdUcr/OW6pudgAcqe2sso68EzrKux0w9OMl1P9ZnzF3FpCZPFWD/A==}
|
||||||
|
|
||||||
@@ -902,9 +836,6 @@ packages:
|
|||||||
'@push.rocks/smartstate@2.0.27':
|
'@push.rocks/smartstate@2.0.27':
|
||||||
resolution: {integrity: sha512-q4UKir7GV3hakJWXQR4DoA4tUVwT5GRkJ/MtanHYF0wZLHfS19+nGmyO9y974zk3eT9hmy3+Lq5cKtU2W6+Y3w==}
|
resolution: {integrity: sha512-q4UKir7GV3hakJWXQR4DoA4tUVwT5GRkJ/MtanHYF0wZLHfS19+nGmyO9y974zk3eT9hmy3+Lq5cKtU2W6+Y3w==}
|
||||||
|
|
||||||
'@push.rocks/smartstate@2.0.30':
|
|
||||||
resolution: {integrity: sha512-IuNW8XtSumXIr7g7MIFyWg5PBwLF2mwsymTJbSEycK2Pa9ZLk4yjRHnR907xCilxgiMU9ixQZyNdpa5MMF999A==}
|
|
||||||
|
|
||||||
'@push.rocks/smartstream@3.2.5':
|
'@push.rocks/smartstream@3.2.5':
|
||||||
resolution: {integrity: sha512-PLGGIFDy8JLNVUnnntMSIYN4W081YSbNC7Y/sWpvUT8PAXtbEXXUiDFgK5o3gcI0ptpKQxHAwxhzNlPj0sbFVg==}
|
resolution: {integrity: sha512-PLGGIFDy8JLNVUnnntMSIYN4W081YSbNC7Y/sWpvUT8PAXtbEXXUiDFgK5o3gcI0ptpKQxHAwxhzNlPj0sbFVg==}
|
||||||
|
|
||||||
@@ -935,9 +866,6 @@ packages:
|
|||||||
'@push.rocks/taskbuffer@3.5.0':
|
'@push.rocks/taskbuffer@3.5.0':
|
||||||
resolution: {integrity: sha512-Y9WwIEIyp6oVFdj06j84tfrZIvjhbMb3DF52rYxlTeYLk3W7RPhSg1bGPCbtkXWeKdBrSe37V90BkOG7Qq8Pqg==}
|
resolution: {integrity: sha512-Y9WwIEIyp6oVFdj06j84tfrZIvjhbMb3DF52rYxlTeYLk3W7RPhSg1bGPCbtkXWeKdBrSe37V90BkOG7Qq8Pqg==}
|
||||||
|
|
||||||
'@push.rocks/taskbuffer@4.2.0':
|
|
||||||
resolution: {integrity: sha512-ttoBe5y/WXkAo5/wSMcC/Y4Zbyw4XG8kwAsEaqnAPCxa3M9MI1oV/yM1e9gU1IH97HVPidzbTxRU5/PcHDdUsg==}
|
|
||||||
|
|
||||||
'@push.rocks/webrequest@3.0.37':
|
'@push.rocks/webrequest@3.0.37':
|
||||||
resolution: {integrity: sha512-fLN7kP6GeHFxE4UH4r9C9pjcQb0QkJxHeAMwXvbOqB9hh0MFNKhtGU7GoaTn8SVRGRMPc9UqZVNwo6u5l8Wn0A==}
|
resolution: {integrity: sha512-fLN7kP6GeHFxE4UH4r9C9pjcQb0QkJxHeAMwXvbOqB9hh0MFNKhtGU7GoaTn8SVRGRMPc9UqZVNwo6u5l8Wn0A==}
|
||||||
|
|
||||||
@@ -1368,20 +1296,6 @@ packages:
|
|||||||
'@tempfix/idb@8.0.3':
|
'@tempfix/idb@8.0.3':
|
||||||
resolution: {integrity: sha512-hPJQKO7+oAIY+pDNImrZ9QAINbz9KmwT+yO4iRVwdPanok2YKpaUxdJzIvCUwY0YgAawlvYdffbLvRLV5hbs2g==}
|
resolution: {integrity: sha512-hPJQKO7+oAIY+pDNImrZ9QAINbz9KmwT+yO4iRVwdPanok2YKpaUxdJzIvCUwY0YgAawlvYdffbLvRLV5hbs2g==}
|
||||||
|
|
||||||
'@tempfix/lenis@1.3.20':
|
|
||||||
resolution: {integrity: sha512-ypeB0FuHLHOCQXW4d0RQ69txPJJH+1CHcpsZIUdcv2t1vR0IVyQr2vHihtde9UOXhjzqEnUphWon/UcJNsa0YA==}
|
|
||||||
peerDependencies:
|
|
||||||
'@nuxt/kit': '>=3.0.0'
|
|
||||||
react: '>=17.0.0'
|
|
||||||
vue: '>=3.0.0'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
'@nuxt/kit':
|
|
||||||
optional: true
|
|
||||||
react:
|
|
||||||
optional: true
|
|
||||||
vue:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@tokenizer/inflate@0.4.1':
|
'@tokenizer/inflate@0.4.1':
|
||||||
resolution: {integrity: sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==}
|
resolution: {integrity: sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
@@ -1395,9 +1309,6 @@ packages:
|
|||||||
'@tsclass/tsclass@4.4.4':
|
'@tsclass/tsclass@4.4.4':
|
||||||
resolution: {integrity: sha512-YZOAF+u+r4u5rCev2uUd1KBTBdfyFdtDmcv4wuN+864lMccbdfRICR3SlJwCfYS1lbeV3QNLYGD30wjRXgvCJA==}
|
resolution: {integrity: sha512-YZOAF+u+r4u5rCev2uUd1KBTBdfyFdtDmcv4wuN+864lMccbdfRICR3SlJwCfYS1lbeV3QNLYGD30wjRXgvCJA==}
|
||||||
|
|
||||||
'@tsclass/tsclass@5.0.0':
|
|
||||||
resolution: {integrity: sha512-2X66VCk0Oe1L01j6GQHC6F9Gj7lpZPPSUTDNax7e29lm4OqBTyAzTR3ePR8coSbWBwsmRV8awLRSrSI+swlqWA==}
|
|
||||||
|
|
||||||
'@tsclass/tsclass@9.3.0':
|
'@tsclass/tsclass@9.3.0':
|
||||||
resolution: {integrity: sha512-KD3oTUN3RGu67tgjNHgWWZGsdYipr1RUDxQ9MMKSgIJ6oNZ4q5m2rg0ibrgyHWkAjTPlHVa6kHP3uVOY+8bnHw==}
|
resolution: {integrity: sha512-KD3oTUN3RGu67tgjNHgWWZGsdYipr1RUDxQ9MMKSgIJ6oNZ4q5m2rg0ibrgyHWkAjTPlHVa6kHP3uVOY+8bnHw==}
|
||||||
|
|
||||||
@@ -1470,25 +1381,15 @@ packages:
|
|||||||
'@types/minimatch@5.1.2':
|
'@types/minimatch@5.1.2':
|
||||||
resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
|
resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
|
||||||
|
|
||||||
'@types/minimatch@6.0.0':
|
|
||||||
resolution: {integrity: sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==}
|
|
||||||
deprecated: This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed.
|
|
||||||
|
|
||||||
'@types/ms@2.1.0':
|
'@types/ms@2.1.0':
|
||||||
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
|
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
|
||||||
|
|
||||||
'@types/mute-stream@0.0.4':
|
'@types/mute-stream@0.0.4':
|
||||||
resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==}
|
resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==}
|
||||||
|
|
||||||
'@types/node-fetch@2.6.13':
|
|
||||||
resolution: {integrity: sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==}
|
|
||||||
|
|
||||||
'@types/node-forge@1.3.14':
|
'@types/node-forge@1.3.14':
|
||||||
resolution: {integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==}
|
resolution: {integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==}
|
||||||
|
|
||||||
'@types/node@18.19.130':
|
|
||||||
resolution: {integrity: sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==}
|
|
||||||
|
|
||||||
'@types/node@22.19.11':
|
'@types/node@22.19.11':
|
||||||
resolution: {integrity: sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==}
|
resolution: {integrity: sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==}
|
||||||
|
|
||||||
@@ -1564,10 +1465,6 @@ packages:
|
|||||||
'@ungap/structured-clone@1.3.0':
|
'@ungap/structured-clone@1.3.0':
|
||||||
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
|
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
|
||||||
|
|
||||||
abort-controller@3.0.0:
|
|
||||||
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
|
|
||||||
engines: {node: '>=6.5'}
|
|
||||||
|
|
||||||
accepts@1.3.8:
|
accepts@1.3.8:
|
||||||
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
|
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
|
||||||
engines: {node: '>= 0.6'}
|
engines: {node: '>= 0.6'}
|
||||||
@@ -1808,9 +1705,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
|
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
|
|
||||||
cloudflare@5.2.0:
|
|
||||||
resolution: {integrity: sha512-dVzqDpPFYR9ApEC9e+JJshFJZXcw4HzM8W+3DHzO5oy9+8rLC53G7x6fEf9A7/gSuSCxuvndzui5qJKftfIM9A==}
|
|
||||||
|
|
||||||
color-convert@2.0.1:
|
color-convert@2.0.1:
|
||||||
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
||||||
engines: {node: '>=7.0.0'}
|
engines: {node: '>=7.0.0'}
|
||||||
@@ -2059,10 +1953,6 @@ packages:
|
|||||||
resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=}
|
resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=}
|
||||||
engines: {node: '>= 0.6'}
|
engines: {node: '>= 0.6'}
|
||||||
|
|
||||||
event-target-shim@5.0.1:
|
|
||||||
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
|
|
||||||
engines: {node: '>=6'}
|
|
||||||
|
|
||||||
eventemitter3@4.0.7:
|
eventemitter3@4.0.7:
|
||||||
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
||||||
|
|
||||||
@@ -2168,9 +2058,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
|
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
|
|
||||||
form-data-encoder@1.7.2:
|
|
||||||
resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==}
|
|
||||||
|
|
||||||
form-data-encoder@2.1.4:
|
form-data-encoder@2.1.4:
|
||||||
resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
|
resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
|
||||||
engines: {node: '>= 14.17'}
|
engines: {node: '>= 14.17'}
|
||||||
@@ -2183,10 +2070,6 @@ packages:
|
|||||||
resolution: {integrity: sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=}
|
resolution: {integrity: sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=}
|
||||||
engines: {node: '>=0.4.x'}
|
engines: {node: '>=0.4.x'}
|
||||||
|
|
||||||
formdata-node@4.4.1:
|
|
||||||
resolution: {integrity: sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==}
|
|
||||||
engines: {node: '>= 12.20'}
|
|
||||||
|
|
||||||
forwarded@0.2.0:
|
forwarded@0.2.0:
|
||||||
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
|
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
|
||||||
engines: {node: '>= 0.6'}
|
engines: {node: '>= 0.6'}
|
||||||
@@ -2478,21 +2361,12 @@ packages:
|
|||||||
lit-element@4.2.1:
|
lit-element@4.2.1:
|
||||||
resolution: {integrity: sha512-WGAWRGzirAgyphK2urmYOV72tlvnxw7YfyLDgQ+OZnM9vQQBQnumQ7jUJe6unEzwGU3ahFOjuz1iz1jjrpCPuw==}
|
resolution: {integrity: sha512-WGAWRGzirAgyphK2urmYOV72tlvnxw7YfyLDgQ+OZnM9vQQBQnumQ7jUJe6unEzwGU3ahFOjuz1iz1jjrpCPuw==}
|
||||||
|
|
||||||
lit-element@4.2.2:
|
|
||||||
resolution: {integrity: sha512-aFKhNToWxoyhkNDmWZwEva2SlQia+jfG0fjIWV//YeTaWrVnOxD89dPKfigCUspXFmjzOEUQpOkejH5Ly6sG0w==}
|
|
||||||
|
|
||||||
lit-html@3.3.1:
|
lit-html@3.3.1:
|
||||||
resolution: {integrity: sha512-S9hbyDu/vs1qNrithiNyeyv64c9yqiW9l+DBgI18fL+MTvOtWoFR0FWiyq1TxaYef5wNlpEmzlXoBlZEO+WjoA==}
|
resolution: {integrity: sha512-S9hbyDu/vs1qNrithiNyeyv64c9yqiW9l+DBgI18fL+MTvOtWoFR0FWiyq1TxaYef5wNlpEmzlXoBlZEO+WjoA==}
|
||||||
|
|
||||||
lit-html@3.3.2:
|
|
||||||
resolution: {integrity: sha512-Qy9hU88zcmaxBXcc10ZpdK7cOLXvXpRoBxERdtqV9QOrfpMZZ6pSYP91LhpPtap3sFMUiL7Tw2RImbe0Al2/kw==}
|
|
||||||
|
|
||||||
lit@3.3.1:
|
lit@3.3.1:
|
||||||
resolution: {integrity: sha512-Ksr/8L3PTapbdXJCk+EJVB78jDodUMaP54gD24W186zGRARvwrsPfS60wae/SSCTCNZVPd1chXqio1qHQmu4NA==}
|
resolution: {integrity: sha512-Ksr/8L3PTapbdXJCk+EJVB78jDodUMaP54gD24W186zGRARvwrsPfS60wae/SSCTCNZVPd1chXqio1qHQmu4NA==}
|
||||||
|
|
||||||
lit@3.3.2:
|
|
||||||
resolution: {integrity: sha512-NF9zbsP79l4ao2SNrH3NkfmFgN/hBYSQo90saIVI1o5GpjAdCPVstVzO1MrLOakHoEhYkrtRjPK6Ob521aoYWQ==}
|
|
||||||
|
|
||||||
locate-path@5.0.0:
|
locate-path@5.0.0:
|
||||||
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
|
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -2848,19 +2722,6 @@ packages:
|
|||||||
no-case@2.3.2:
|
no-case@2.3.2:
|
||||||
resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
|
resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
|
||||||
|
|
||||||
node-domexception@1.0.0:
|
|
||||||
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
|
|
||||||
engines: {node: '>=10.5.0'}
|
|
||||||
|
|
||||||
node-fetch@2.7.0:
|
|
||||||
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
|
|
||||||
engines: {node: 4.x || >=6.0.0}
|
|
||||||
peerDependencies:
|
|
||||||
encoding: ^0.1.0
|
|
||||||
peerDependenciesMeta:
|
|
||||||
encoding:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
node-forge@1.3.3:
|
node-forge@1.3.3:
|
||||||
resolution: {integrity: sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==}
|
resolution: {integrity: sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==}
|
||||||
engines: {node: '>= 6.13.0'}
|
engines: {node: '>= 6.13.0'}
|
||||||
@@ -3383,9 +3244,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww==}
|
resolution: {integrity: sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww==}
|
||||||
engines: {node: '>=14.16'}
|
engines: {node: '>=14.16'}
|
||||||
|
|
||||||
tr46@0.0.3:
|
|
||||||
resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=}
|
|
||||||
|
|
||||||
tr46@5.1.1:
|
tr46@5.1.1:
|
||||||
resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
|
resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
@@ -3454,9 +3312,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==}
|
resolution: {integrity: sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
undici-types@5.26.5:
|
|
||||||
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
|
|
||||||
|
|
||||||
undici-types@6.21.0:
|
undici-types@6.21.0:
|
||||||
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
||||||
|
|
||||||
@@ -3516,16 +3371,9 @@ packages:
|
|||||||
vfile@6.0.3:
|
vfile@6.0.3:
|
||||||
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
|
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
|
||||||
|
|
||||||
web-streams-polyfill@4.0.0-beta.3:
|
|
||||||
resolution: {integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==}
|
|
||||||
engines: {node: '>= 14'}
|
|
||||||
|
|
||||||
webdriver-bidi-protocol@0.4.0:
|
webdriver-bidi-protocol@0.4.0:
|
||||||
resolution: {integrity: sha512-U9VIlNRrq94d1xxR9JrCEAx5Gv/2W7ERSv8oWRoNe/QYbfccS0V3h/H6qeNeCRJxXGMhhnkqvwNrvPAYeuP9VA==}
|
resolution: {integrity: sha512-U9VIlNRrq94d1xxR9JrCEAx5Gv/2W7ERSv8oWRoNe/QYbfccS0V3h/H6qeNeCRJxXGMhhnkqvwNrvPAYeuP9VA==}
|
||||||
|
|
||||||
webidl-conversions@3.0.1:
|
|
||||||
resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=}
|
|
||||||
|
|
||||||
webidl-conversions@7.0.0:
|
webidl-conversions@7.0.0:
|
||||||
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
|
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
@@ -3538,9 +3386,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==}
|
resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
whatwg-url@5.0.0:
|
|
||||||
resolution: {integrity: sha1-lmRU6HZUYuN2RNNib2dCzotwll0=}
|
|
||||||
|
|
||||||
which@2.0.2:
|
which@2.0.2:
|
||||||
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
||||||
engines: {node: '>= 8'}
|
engines: {node: '>= 8'}
|
||||||
@@ -3719,18 +3564,6 @@ snapshots:
|
|||||||
- utf-8-validate
|
- utf-8-validate
|
||||||
- vue
|
- vue
|
||||||
|
|
||||||
'@apiclient.xyz/cloudflare@6.4.3':
|
|
||||||
dependencies:
|
|
||||||
'@push.rocks/smartdelay': 3.0.5
|
|
||||||
'@push.rocks/smartlog': 3.1.10
|
|
||||||
'@push.rocks/smartpromise': 4.2.3
|
|
||||||
'@push.rocks/smartrequest': 5.0.1
|
|
||||||
'@push.rocks/smartstring': 4.1.0
|
|
||||||
'@tsclass/tsclass': 9.3.0
|
|
||||||
cloudflare: 5.2.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- encoding
|
|
||||||
|
|
||||||
'@aws-crypto/crc32@5.2.0':
|
'@aws-crypto/crc32@5.2.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@aws-crypto/util': 5.2.0
|
'@aws-crypto/util': 5.2.0
|
||||||
@@ -4271,32 +4104,6 @@ snapshots:
|
|||||||
- supports-color
|
- supports-color
|
||||||
- vue
|
- vue
|
||||||
|
|
||||||
'@design.estate/dees-domtools@2.3.8':
|
|
||||||
dependencies:
|
|
||||||
'@api.global/typedrequest': 3.2.5
|
|
||||||
'@design.estate/dees-comms': 1.0.30
|
|
||||||
'@push.rocks/lik': 6.2.2
|
|
||||||
'@push.rocks/smartdelay': 3.0.5
|
|
||||||
'@push.rocks/smartjson': 5.2.0
|
|
||||||
'@push.rocks/smartmarkdown': 3.0.3
|
|
||||||
'@push.rocks/smartpromise': 4.2.3
|
|
||||||
'@push.rocks/smartrouter': 1.3.3
|
|
||||||
'@push.rocks/smartrx': 3.0.10
|
|
||||||
'@push.rocks/smartstate': 2.0.30
|
|
||||||
'@push.rocks/smartstring': 4.1.0
|
|
||||||
'@push.rocks/smarturl': 3.1.0
|
|
||||||
'@push.rocks/webrequest': 3.0.37
|
|
||||||
'@push.rocks/websetup': 3.0.19
|
|
||||||
'@push.rocks/webstore': 2.0.20
|
|
||||||
'@tempfix/lenis': 1.3.20
|
|
||||||
lit: 3.3.2
|
|
||||||
sweet-scroll: 4.0.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@nuxt/kit'
|
|
||||||
- react
|
|
||||||
- supports-color
|
|
||||||
- vue
|
|
||||||
|
|
||||||
'@design.estate/dees-element@2.1.3':
|
'@design.estate/dees-element@2.1.3':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@design.estate/dees-domtools': 2.3.6
|
'@design.estate/dees-domtools': 2.3.6
|
||||||
@@ -4309,18 +4116,6 @@ snapshots:
|
|||||||
- supports-color
|
- supports-color
|
||||||
- vue
|
- vue
|
||||||
|
|
||||||
'@design.estate/dees-element@2.1.6':
|
|
||||||
dependencies:
|
|
||||||
'@design.estate/dees-domtools': 2.3.8
|
|
||||||
'@push.rocks/isounique': 1.0.5
|
|
||||||
'@push.rocks/smartrx': 3.0.10
|
|
||||||
lit: 3.3.2
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@nuxt/kit'
|
|
||||||
- react
|
|
||||||
- supports-color
|
|
||||||
- vue
|
|
||||||
|
|
||||||
'@emnapi/core@1.8.1':
|
'@emnapi/core@1.8.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@emnapi/wasi-threads': 1.1.0
|
'@emnapi/wasi-threads': 1.1.0
|
||||||
@@ -4660,16 +4455,10 @@ snapshots:
|
|||||||
|
|
||||||
'@lit-labs/ssr-dom-shim@1.4.0': {}
|
'@lit-labs/ssr-dom-shim@1.4.0': {}
|
||||||
|
|
||||||
'@lit-labs/ssr-dom-shim@1.5.1': {}
|
|
||||||
|
|
||||||
'@lit/reactive-element@2.1.1':
|
'@lit/reactive-element@2.1.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@lit-labs/ssr-dom-shim': 1.4.0
|
'@lit-labs/ssr-dom-shim': 1.4.0
|
||||||
|
|
||||||
'@lit/reactive-element@2.1.2':
|
|
||||||
dependencies:
|
|
||||||
'@lit-labs/ssr-dom-shim': 1.5.1
|
|
||||||
|
|
||||||
'@mixmark-io/domino@2.2.0': {}
|
'@mixmark-io/domino@2.2.0': {}
|
||||||
|
|
||||||
'@module-federation/error-codes@0.22.0': {}
|
'@module-federation/error-codes@0.22.0': {}
|
||||||
@@ -4934,40 +4723,6 @@ snapshots:
|
|||||||
'@push.rocks/smartlog': 3.1.10
|
'@push.rocks/smartlog': 3.1.10
|
||||||
'@push.rocks/smartpath': 6.0.0
|
'@push.rocks/smartpath': 6.0.0
|
||||||
|
|
||||||
'@push.rocks/smartacme@8.0.0(socks@2.8.7)':
|
|
||||||
dependencies:
|
|
||||||
'@api.global/typedserver': 3.0.80(@push.rocks/smartserve@2.0.1)
|
|
||||||
'@apiclient.xyz/cloudflare': 6.4.3
|
|
||||||
'@push.rocks/lik': 6.2.2
|
|
||||||
'@push.rocks/smartdata': 5.16.7(socks@2.8.7)
|
|
||||||
'@push.rocks/smartdelay': 3.0.5
|
|
||||||
'@push.rocks/smartdns': 6.2.2
|
|
||||||
'@push.rocks/smartfile': 11.2.7
|
|
||||||
'@push.rocks/smartlog': 3.1.10
|
|
||||||
'@push.rocks/smartnetwork': 4.4.0
|
|
||||||
'@push.rocks/smartpromise': 4.2.3
|
|
||||||
'@push.rocks/smartrequest': 2.1.0
|
|
||||||
'@push.rocks/smartstring': 4.1.0
|
|
||||||
'@push.rocks/smarttime': 4.1.1
|
|
||||||
'@push.rocks/smartunique': 3.0.9
|
|
||||||
'@tsclass/tsclass': 9.3.0
|
|
||||||
acme-client: 5.4.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@aws-sdk/credential-providers'
|
|
||||||
- '@mongodb-js/zstd'
|
|
||||||
- '@nuxt/kit'
|
|
||||||
- bare-abort-controller
|
|
||||||
- encoding
|
|
||||||
- gcp-metadata
|
|
||||||
- kerberos
|
|
||||||
- mongodb-client-encryption
|
|
||||||
- react
|
|
||||||
- react-native-b4a
|
|
||||||
- snappy
|
|
||||||
- socks
|
|
||||||
- supports-color
|
|
||||||
- vue
|
|
||||||
|
|
||||||
'@push.rocks/smartarchive@4.2.4':
|
'@push.rocks/smartarchive@4.2.4':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/smartdelay': 3.0.5
|
'@push.rocks/smartdelay': 3.0.5
|
||||||
@@ -5109,22 +4864,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/smartpromise': 4.2.3
|
'@push.rocks/smartpromise': 4.2.3
|
||||||
|
|
||||||
'@push.rocks/smartdns@6.2.2':
|
|
||||||
dependencies:
|
|
||||||
'@push.rocks/smartdelay': 3.0.5
|
|
||||||
'@push.rocks/smartenv': 5.0.13
|
|
||||||
'@push.rocks/smartpromise': 4.2.3
|
|
||||||
'@push.rocks/smartrequest': 2.1.0
|
|
||||||
'@tsclass/tsclass': 5.0.0
|
|
||||||
'@types/dns-packet': 5.6.5
|
|
||||||
'@types/elliptic': 6.4.18
|
|
||||||
acme-client: 5.4.0
|
|
||||||
dns-packet: 5.6.1
|
|
||||||
elliptic: 6.6.1
|
|
||||||
minimatch: 10.2.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
|
|
||||||
'@push.rocks/smartdns@7.6.1':
|
'@push.rocks/smartdns@7.6.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/smartdelay': 3.0.5
|
'@push.rocks/smartdelay': 3.0.5
|
||||||
@@ -5247,13 +4986,6 @@ snapshots:
|
|||||||
fast-json-stable-stringify: 2.1.0
|
fast-json-stable-stringify: 2.1.0
|
||||||
lodash.clonedeep: 4.5.0
|
lodash.clonedeep: 4.5.0
|
||||||
|
|
||||||
'@push.rocks/smartjson@6.0.0':
|
|
||||||
dependencies:
|
|
||||||
'@push.rocks/smartenv': 6.0.0
|
|
||||||
'@push.rocks/smartstring': 4.1.0
|
|
||||||
fast-json-stable-stringify: 2.1.0
|
|
||||||
lodash.clonedeep: 4.5.0
|
|
||||||
|
|
||||||
'@push.rocks/smartlog-destination-devtools@1.0.12':
|
'@push.rocks/smartlog-destination-devtools@1.0.12':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/smartlog-interfaces': 3.0.2
|
'@push.rocks/smartlog-interfaces': 3.0.2
|
||||||
@@ -5584,15 +5316,6 @@ snapshots:
|
|||||||
'@push.rocks/smartrx': 3.0.10
|
'@push.rocks/smartrx': 3.0.10
|
||||||
'@push.rocks/webstore': 2.0.20
|
'@push.rocks/webstore': 2.0.20
|
||||||
|
|
||||||
'@push.rocks/smartstate@2.0.30':
|
|
||||||
dependencies:
|
|
||||||
'@push.rocks/lik': 6.2.2
|
|
||||||
'@push.rocks/smarthash': 3.2.6
|
|
||||||
'@push.rocks/smartjson': 6.0.0
|
|
||||||
'@push.rocks/smartpromise': 4.2.3
|
|
||||||
'@push.rocks/smartrx': 3.0.10
|
|
||||||
'@push.rocks/webstore': 2.0.20
|
|
||||||
|
|
||||||
'@push.rocks/smartstream@3.2.5':
|
'@push.rocks/smartstream@3.2.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/lik': 6.2.2
|
'@push.rocks/lik': 6.2.2
|
||||||
@@ -5657,22 +5380,6 @@ snapshots:
|
|||||||
- supports-color
|
- supports-color
|
||||||
- vue
|
- vue
|
||||||
|
|
||||||
'@push.rocks/taskbuffer@4.2.0':
|
|
||||||
dependencies:
|
|
||||||
'@design.estate/dees-element': 2.1.6
|
|
||||||
'@push.rocks/lik': 6.2.2
|
|
||||||
'@push.rocks/smartdelay': 3.0.5
|
|
||||||
'@push.rocks/smartlog': 3.1.10
|
|
||||||
'@push.rocks/smartpromise': 4.2.3
|
|
||||||
'@push.rocks/smartrx': 3.0.10
|
|
||||||
'@push.rocks/smarttime': 4.1.1
|
|
||||||
'@push.rocks/smartunique': 3.0.9
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@nuxt/kit'
|
|
||||||
- react
|
|
||||||
- supports-color
|
|
||||||
- vue
|
|
||||||
|
|
||||||
'@push.rocks/webrequest@3.0.37':
|
'@push.rocks/webrequest@3.0.37':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/smartdelay': 3.0.5
|
'@push.rocks/smartdelay': 3.0.5
|
||||||
@@ -6201,8 +5908,6 @@ snapshots:
|
|||||||
|
|
||||||
'@tempfix/idb@8.0.3': {}
|
'@tempfix/idb@8.0.3': {}
|
||||||
|
|
||||||
'@tempfix/lenis@1.3.20': {}
|
|
||||||
|
|
||||||
'@tokenizer/inflate@0.4.1':
|
'@tokenizer/inflate@0.4.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
@@ -6218,10 +5923,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
type-fest: 4.41.0
|
type-fest: 4.41.0
|
||||||
|
|
||||||
'@tsclass/tsclass@5.0.0':
|
|
||||||
dependencies:
|
|
||||||
type-fest: 4.41.0
|
|
||||||
|
|
||||||
'@tsclass/tsclass@9.3.0':
|
'@tsclass/tsclass@9.3.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
type-fest: 4.41.0
|
type-fest: 4.41.0
|
||||||
@@ -6315,29 +6016,16 @@ snapshots:
|
|||||||
|
|
||||||
'@types/minimatch@5.1.2': {}
|
'@types/minimatch@5.1.2': {}
|
||||||
|
|
||||||
'@types/minimatch@6.0.0':
|
|
||||||
dependencies:
|
|
||||||
minimatch: 10.2.0
|
|
||||||
|
|
||||||
'@types/ms@2.1.0': {}
|
'@types/ms@2.1.0': {}
|
||||||
|
|
||||||
'@types/mute-stream@0.0.4':
|
'@types/mute-stream@0.0.4':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 25.2.3
|
'@types/node': 25.2.3
|
||||||
|
|
||||||
'@types/node-fetch@2.6.13':
|
|
||||||
dependencies:
|
|
||||||
'@types/node': 25.2.3
|
|
||||||
form-data: 4.0.5
|
|
||||||
|
|
||||||
'@types/node-forge@1.3.14':
|
'@types/node-forge@1.3.14':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 25.2.3
|
'@types/node': 25.2.3
|
||||||
|
|
||||||
'@types/node@18.19.130':
|
|
||||||
dependencies:
|
|
||||||
undici-types: 5.26.5
|
|
||||||
|
|
||||||
'@types/node@22.19.11':
|
'@types/node@22.19.11':
|
||||||
dependencies:
|
dependencies:
|
||||||
undici-types: 6.21.0
|
undici-types: 6.21.0
|
||||||
@@ -6410,10 +6098,6 @@ snapshots:
|
|||||||
|
|
||||||
'@ungap/structured-clone@1.3.0': {}
|
'@ungap/structured-clone@1.3.0': {}
|
||||||
|
|
||||||
abort-controller@3.0.0:
|
|
||||||
dependencies:
|
|
||||||
event-target-shim: 5.0.1
|
|
||||||
|
|
||||||
accepts@1.3.8:
|
accepts@1.3.8:
|
||||||
dependencies:
|
dependencies:
|
||||||
mime-types: 2.1.35
|
mime-types: 2.1.35
|
||||||
@@ -6660,18 +6344,6 @@ snapshots:
|
|||||||
strip-ansi: 6.0.1
|
strip-ansi: 6.0.1
|
||||||
wrap-ansi: 7.0.0
|
wrap-ansi: 7.0.0
|
||||||
|
|
||||||
cloudflare@5.2.0:
|
|
||||||
dependencies:
|
|
||||||
'@types/node': 18.19.130
|
|
||||||
'@types/node-fetch': 2.6.13
|
|
||||||
abort-controller: 3.0.0
|
|
||||||
agentkeepalive: 4.6.0
|
|
||||||
form-data-encoder: 1.7.2
|
|
||||||
formdata-node: 4.4.1
|
|
||||||
node-fetch: 2.7.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- encoding
|
|
||||||
|
|
||||||
color-convert@2.0.1:
|
color-convert@2.0.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
color-name: 1.1.4
|
color-name: 1.1.4
|
||||||
@@ -6923,8 +6595,6 @@ snapshots:
|
|||||||
|
|
||||||
etag@1.8.1: {}
|
etag@1.8.1: {}
|
||||||
|
|
||||||
event-target-shim@5.0.1: {}
|
|
||||||
|
|
||||||
eventemitter3@4.0.7: {}
|
eventemitter3@4.0.7: {}
|
||||||
|
|
||||||
events-universal@1.0.1:
|
events-universal@1.0.1:
|
||||||
@@ -7076,8 +6746,6 @@ snapshots:
|
|||||||
cross-spawn: 7.0.6
|
cross-spawn: 7.0.6
|
||||||
signal-exit: 4.1.0
|
signal-exit: 4.1.0
|
||||||
|
|
||||||
form-data-encoder@1.7.2: {}
|
|
||||||
|
|
||||||
form-data-encoder@2.1.4: {}
|
form-data-encoder@2.1.4: {}
|
||||||
|
|
||||||
form-data@4.0.5:
|
form-data@4.0.5:
|
||||||
@@ -7090,11 +6758,6 @@ snapshots:
|
|||||||
|
|
||||||
format@0.2.2: {}
|
format@0.2.2: {}
|
||||||
|
|
||||||
formdata-node@4.4.1:
|
|
||||||
dependencies:
|
|
||||||
node-domexception: 1.0.0
|
|
||||||
web-streams-polyfill: 4.0.0-beta.3
|
|
||||||
|
|
||||||
forwarded@0.2.0: {}
|
forwarded@0.2.0: {}
|
||||||
|
|
||||||
fresh@2.0.0: {}
|
fresh@2.0.0: {}
|
||||||
@@ -7412,32 +7075,16 @@ snapshots:
|
|||||||
'@lit/reactive-element': 2.1.1
|
'@lit/reactive-element': 2.1.1
|
||||||
lit-html: 3.3.1
|
lit-html: 3.3.1
|
||||||
|
|
||||||
lit-element@4.2.2:
|
|
||||||
dependencies:
|
|
||||||
'@lit-labs/ssr-dom-shim': 1.5.1
|
|
||||||
'@lit/reactive-element': 2.1.2
|
|
||||||
lit-html: 3.3.2
|
|
||||||
|
|
||||||
lit-html@3.3.1:
|
lit-html@3.3.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/trusted-types': 2.0.7
|
'@types/trusted-types': 2.0.7
|
||||||
|
|
||||||
lit-html@3.3.2:
|
|
||||||
dependencies:
|
|
||||||
'@types/trusted-types': 2.0.7
|
|
||||||
|
|
||||||
lit@3.3.1:
|
lit@3.3.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@lit/reactive-element': 2.1.1
|
'@lit/reactive-element': 2.1.1
|
||||||
lit-element: 4.2.1
|
lit-element: 4.2.1
|
||||||
lit-html: 3.3.1
|
lit-html: 3.3.1
|
||||||
|
|
||||||
lit@3.3.2:
|
|
||||||
dependencies:
|
|
||||||
'@lit/reactive-element': 2.1.2
|
|
||||||
lit-element: 4.2.2
|
|
||||||
lit-html: 3.3.2
|
|
||||||
|
|
||||||
locate-path@5.0.0:
|
locate-path@5.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
p-locate: 4.1.0
|
p-locate: 4.1.0
|
||||||
@@ -8001,12 +7648,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
lower-case: 1.1.4
|
lower-case: 1.1.4
|
||||||
|
|
||||||
node-domexception@1.0.0: {}
|
|
||||||
|
|
||||||
node-fetch@2.7.0:
|
|
||||||
dependencies:
|
|
||||||
whatwg-url: 5.0.0
|
|
||||||
|
|
||||||
node-forge@1.3.3: {}
|
node-forge@1.3.3: {}
|
||||||
|
|
||||||
normalize-newline@4.1.0:
|
normalize-newline@4.1.0:
|
||||||
@@ -8652,8 +8293,6 @@ snapshots:
|
|||||||
'@tokenizer/token': 0.3.0
|
'@tokenizer/token': 0.3.0
|
||||||
ieee754: 1.2.1
|
ieee754: 1.2.1
|
||||||
|
|
||||||
tr46@0.0.3: {}
|
|
||||||
|
|
||||||
tr46@5.1.1:
|
tr46@5.1.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
punycode: 2.3.1
|
punycode: 2.3.1
|
||||||
@@ -8705,8 +8344,6 @@ snapshots:
|
|||||||
|
|
||||||
uint8array-extras@1.5.0: {}
|
uint8array-extras@1.5.0: {}
|
||||||
|
|
||||||
undici-types@5.26.5: {}
|
|
||||||
|
|
||||||
undici-types@6.21.0: {}
|
undici-types@6.21.0: {}
|
||||||
|
|
||||||
undici-types@7.16.0: {}
|
undici-types@7.16.0: {}
|
||||||
@@ -8773,12 +8410,8 @@ snapshots:
|
|||||||
'@types/unist': 3.0.3
|
'@types/unist': 3.0.3
|
||||||
vfile-message: 4.0.3
|
vfile-message: 4.0.3
|
||||||
|
|
||||||
web-streams-polyfill@4.0.0-beta.3: {}
|
|
||||||
|
|
||||||
webdriver-bidi-protocol@0.4.0: {}
|
webdriver-bidi-protocol@0.4.0: {}
|
||||||
|
|
||||||
webidl-conversions@3.0.1: {}
|
|
||||||
|
|
||||||
webidl-conversions@7.0.0: {}
|
webidl-conversions@7.0.0: {}
|
||||||
|
|
||||||
whatwg-mimetype@3.0.0: {}
|
whatwg-mimetype@3.0.0: {}
|
||||||
@@ -8788,11 +8421,6 @@ snapshots:
|
|||||||
tr46: 5.1.1
|
tr46: 5.1.1
|
||||||
webidl-conversions: 7.0.0
|
webidl-conversions: 7.0.0
|
||||||
|
|
||||||
whatwg-url@5.0.0:
|
|
||||||
dependencies:
|
|
||||||
tr46: 0.0.3
|
|
||||||
webidl-conversions: 3.0.1
|
|
||||||
|
|
||||||
which@2.0.2:
|
which@2.0.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
isexe: 2.0.0
|
isexe: 2.0.0
|
||||||
|
|||||||
57
readme.md
57
readme.md
@@ -27,7 +27,7 @@ Whether you're building microservices, deploying edge infrastructure, or need a
|
|||||||
| 🦀 **Rust-Powered Engine** | All networking handled by a high-performance Rust binary via IPC |
|
| 🦀 **Rust-Powered Engine** | All networking handled by a high-performance Rust binary via IPC |
|
||||||
| 🔀 **Unified Route-Based Config** | Clean match/action patterns for intuitive traffic routing |
|
| 🔀 **Unified Route-Based Config** | Clean match/action patterns for intuitive traffic routing |
|
||||||
| 🔒 **Automatic SSL/TLS** | Zero-config HTTPS with Let's Encrypt ACME integration |
|
| 🔒 **Automatic SSL/TLS** | Zero-config HTTPS with Let's Encrypt ACME integration |
|
||||||
| 🎯 **Flexible Matching** | Route by port, domain, path, client IP, TLS version, headers, or custom logic |
|
| 🎯 **Flexible Matching** | Route by port, domain, path, protocol, client IP, TLS version, headers, or custom logic |
|
||||||
| 🚄 **High-Performance** | Choose between user-space or kernel-level (NFTables) forwarding |
|
| 🚄 **High-Performance** | Choose between user-space or kernel-level (NFTables) forwarding |
|
||||||
| ⚖️ **Load Balancing** | Round-robin, least-connections, IP-hash with health checks |
|
| ⚖️ **Load Balancing** | Round-robin, least-connections, IP-hash with health checks |
|
||||||
| 🛡️ **Enterprise Security** | IP filtering, rate limiting, basic auth, JWT auth, connection limits |
|
| 🛡️ **Enterprise Security** | IP filtering, rate limiting, basic auth, JWT auth, connection limits |
|
||||||
@@ -89,7 +89,7 @@ SmartProxy uses a powerful **match/action** pattern that makes routing predictab
|
|||||||
```
|
```
|
||||||
|
|
||||||
Every route consists of:
|
Every route consists of:
|
||||||
- **Match** — What traffic to capture (ports, domains, paths, IPs, headers)
|
- **Match** — What traffic to capture (ports, domains, paths, protocol, IPs, headers)
|
||||||
- **Action** — What to do with it (`forward` or `socket-handler`)
|
- **Action** — What to do with it (`forward` or `socket-handler`)
|
||||||
- **Security** (optional) — IP allow/block lists, rate limits, authentication
|
- **Security** (optional) — IP allow/block lists, rate limits, authentication
|
||||||
- **Headers** (optional) — Request/response header manipulation with template variables
|
- **Headers** (optional) — Request/response header manipulation with template variables
|
||||||
@@ -103,7 +103,7 @@ SmartProxy supports three TLS handling modes:
|
|||||||
|------|-------------|----------|
|
|------|-------------|----------|
|
||||||
| `passthrough` | Forward encrypted traffic as-is (SNI-based routing) | Backend handles TLS |
|
| `passthrough` | Forward encrypted traffic as-is (SNI-based routing) | Backend handles TLS |
|
||||||
| `terminate` | Decrypt at proxy, forward plain HTTP to backend | Standard reverse proxy |
|
| `terminate` | Decrypt at proxy, forward plain HTTP to backend | Standard reverse proxy |
|
||||||
| `terminate-and-reencrypt` | Decrypt, then re-encrypt to backend | Zero-trust environments |
|
| `terminate-and-reencrypt` | Decrypt at proxy, re-encrypt to backend. HTTP traffic gets full per-request routing (Host header, path matching) via the HTTP proxy; non-HTTP traffic uses a raw TLS-to-TLS tunnel | Zero-trust / defense-in-depth environments |
|
||||||
|
|
||||||
## 💡 Common Use Cases
|
## 💡 Common Use Cases
|
||||||
|
|
||||||
@@ -135,13 +135,13 @@ const proxy = new SmartProxy({
|
|||||||
],
|
],
|
||||||
{
|
{
|
||||||
tls: { mode: 'terminate', certificate: 'auto' },
|
tls: { mode: 'terminate', certificate: 'auto' },
|
||||||
loadBalancing: {
|
algorithm: 'round-robin',
|
||||||
algorithm: 'round-robin',
|
healthCheck: {
|
||||||
healthCheck: {
|
path: '/health',
|
||||||
path: '/health',
|
interval: 30000,
|
||||||
interval: 30000,
|
timeout: 5000,
|
||||||
timeout: 5000
|
unhealthyThreshold: 3,
|
||||||
}
|
healthyThreshold: 2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
@@ -318,6 +318,42 @@ const proxy = new SmartProxy({
|
|||||||
|
|
||||||
> **Note:** Routes with dynamic functions (host/port callbacks) are automatically relayed through the TypeScript socket handler server, since JavaScript functions can't be serialized to Rust.
|
> **Note:** Routes with dynamic functions (host/port callbacks) are automatically relayed through the TypeScript socket handler server, since JavaScript functions can't be serialized to Rust.
|
||||||
|
|
||||||
|
### 🔀 Protocol-Specific Routing
|
||||||
|
|
||||||
|
Restrict routes to specific application-layer protocols. When `protocol` is set, the Rust engine detects the protocol after connection (or after TLS termination) and only matches routes that accept that protocol:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
// HTTP-only route (rejects raw TCP connections)
|
||||||
|
const httpOnlyRoute: IRouteConfig = {
|
||||||
|
name: 'http-api',
|
||||||
|
match: {
|
||||||
|
ports: 443,
|
||||||
|
domains: 'api.example.com',
|
||||||
|
protocol: 'http', // Only match HTTP/1.1, HTTP/2, and WebSocket upgrades
|
||||||
|
},
|
||||||
|
action: {
|
||||||
|
type: 'forward',
|
||||||
|
targets: [{ host: 'api-backend', port: 8080 }],
|
||||||
|
tls: { mode: 'terminate', certificate: 'auto' }
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Raw TCP route (rejects HTTP traffic)
|
||||||
|
const tcpOnlyRoute: IRouteConfig = {
|
||||||
|
name: 'database-proxy',
|
||||||
|
match: {
|
||||||
|
ports: 5432,
|
||||||
|
protocol: 'tcp', // Only match non-HTTP TCP streams
|
||||||
|
},
|
||||||
|
action: {
|
||||||
|
type: 'forward',
|
||||||
|
targets: [{ host: 'db-server', port: 5432 }]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
> **Note:** Omitting `protocol` (the default) matches any protocol. For TLS routes, protocol detection happens *after* TLS termination — during the initial SNI-based route match, `protocol` is not yet known and the route is allowed to match. The protocol restriction is enforced after the proxy peeks at the decrypted data.
|
||||||
|
|
||||||
### 🔒 Security Controls
|
### 🔒 Security Controls
|
||||||
|
|
||||||
Comprehensive per-route security options:
|
Comprehensive per-route security options:
|
||||||
@@ -549,6 +585,7 @@ interface IRouteMatch {
|
|||||||
clientIp?: string[]; // ['10.0.0.0/8', '192.168.*']
|
clientIp?: string[]; // ['10.0.0.0/8', '192.168.*']
|
||||||
tlsVersion?: string[]; // ['TLSv1.2', 'TLSv1.3']
|
tlsVersion?: string[]; // ['TLSv1.2', 'TLSv1.3']
|
||||||
headers?: Record<string, string | RegExp>; // Match by HTTP headers
|
headers?: Record<string, string | RegExp>; // Match by HTTP headers
|
||||||
|
protocol?: 'http' | 'tcp'; // Match specific protocol ('http' includes h2 + WebSocket upgrades)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
2
rust/Cargo.lock
generated
2
rust/Cargo.lock
generated
@@ -966,12 +966,14 @@ dependencies = [
|
|||||||
"hyper",
|
"hyper",
|
||||||
"hyper-util",
|
"hyper-util",
|
||||||
"regex",
|
"regex",
|
||||||
|
"rustls",
|
||||||
"rustproxy-config",
|
"rustproxy-config",
|
||||||
"rustproxy-metrics",
|
"rustproxy-metrics",
|
||||||
"rustproxy-routing",
|
"rustproxy-routing",
|
||||||
"rustproxy-security",
|
"rustproxy-security",
|
||||||
"thiserror 2.0.18",
|
"thiserror 2.0.18",
|
||||||
"tokio",
|
"tokio",
|
||||||
|
"tokio-rustls",
|
||||||
"tokio-util",
|
"tokio-util",
|
||||||
"tracing",
|
"tracing",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ pub fn create_http_route(
|
|||||||
client_ip: None,
|
client_ip: None,
|
||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
|
protocol: None,
|
||||||
},
|
},
|
||||||
action: RouteAction {
|
action: RouteAction {
|
||||||
action_type: RouteActionType::Forward,
|
action_type: RouteActionType::Forward,
|
||||||
@@ -108,6 +109,7 @@ pub fn create_http_to_https_redirect(
|
|||||||
client_ip: None,
|
client_ip: None,
|
||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
|
protocol: None,
|
||||||
},
|
},
|
||||||
action: RouteAction {
|
action: RouteAction {
|
||||||
action_type: RouteActionType::Forward,
|
action_type: RouteActionType::Forward,
|
||||||
@@ -200,6 +202,7 @@ pub fn create_load_balancer_route(
|
|||||||
client_ip: None,
|
client_ip: None,
|
||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
|
protocol: None,
|
||||||
},
|
},
|
||||||
action: RouteAction {
|
action: RouteAction {
|
||||||
action_type: RouteActionType::Forward,
|
action_type: RouteActionType::Forward,
|
||||||
|
|||||||
@@ -114,6 +114,10 @@ pub struct RouteMatch {
|
|||||||
/// Match specific HTTP headers
|
/// Match specific HTTP headers
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub headers: Option<HashMap<String, String>>,
|
pub headers: Option<HashMap<String, String>>,
|
||||||
|
|
||||||
|
/// Match specific protocol: "http" (includes h2 + websocket) or "tcp"
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub protocol: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
// ─── Target Match ────────────────────────────────────────────────────
|
// ─── Target Match ────────────────────────────────────────────────────
|
||||||
|
|||||||
@@ -18,6 +18,8 @@ http-body = { workspace = true }
|
|||||||
http-body-util = { workspace = true }
|
http-body-util = { workspace = true }
|
||||||
bytes = { workspace = true }
|
bytes = { workspace = true }
|
||||||
tokio = { workspace = true }
|
tokio = { workspace = true }
|
||||||
|
rustls = { workspace = true }
|
||||||
|
tokio-rustls = { workspace = true }
|
||||||
tracing = { workspace = true }
|
tracing = { workspace = true }
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ pub struct CountingBody<B> {
|
|||||||
counted_bytes: AtomicU64,
|
counted_bytes: AtomicU64,
|
||||||
metrics: Arc<MetricsCollector>,
|
metrics: Arc<MetricsCollector>,
|
||||||
route_id: Option<String>,
|
route_id: Option<String>,
|
||||||
|
source_ip: Option<String>,
|
||||||
/// Whether we count bytes as "in" (request body) or "out" (response body).
|
/// Whether we count bytes as "in" (request body) or "out" (response body).
|
||||||
direction: Direction,
|
direction: Direction,
|
||||||
/// Whether we've already reported the bytes (to avoid double-reporting on drop).
|
/// Whether we've already reported the bytes (to avoid double-reporting on drop).
|
||||||
@@ -41,6 +42,7 @@ impl<B> CountingBody<B> {
|
|||||||
inner: B,
|
inner: B,
|
||||||
metrics: Arc<MetricsCollector>,
|
metrics: Arc<MetricsCollector>,
|
||||||
route_id: Option<String>,
|
route_id: Option<String>,
|
||||||
|
source_ip: Option<String>,
|
||||||
direction: Direction,
|
direction: Direction,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
Self {
|
Self {
|
||||||
@@ -48,6 +50,7 @@ impl<B> CountingBody<B> {
|
|||||||
counted_bytes: AtomicU64::new(0),
|
counted_bytes: AtomicU64::new(0),
|
||||||
metrics,
|
metrics,
|
||||||
route_id,
|
route_id,
|
||||||
|
source_ip,
|
||||||
direction,
|
direction,
|
||||||
reported: false,
|
reported: false,
|
||||||
}
|
}
|
||||||
@@ -66,9 +69,10 @@ impl<B> CountingBody<B> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let route_id = self.route_id.as_deref();
|
let route_id = self.route_id.as_deref();
|
||||||
|
let source_ip = self.source_ip.as_deref();
|
||||||
match self.direction {
|
match self.direction {
|
||||||
Direction::In => self.metrics.record_bytes(bytes, 0, route_id),
|
Direction::In => self.metrics.record_bytes(bytes, 0, route_id, source_ip),
|
||||||
Direction::Out => self.metrics.record_bytes(0, bytes, route_id),
|
Direction::Out => self.metrics.record_bytes(0, bytes, route_id, source_ip),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ use std::sync::Arc;
|
|||||||
use std::sync::atomic::{AtomicU64, Ordering};
|
use std::sync::atomic::{AtomicU64, Ordering};
|
||||||
|
|
||||||
use bytes::Bytes;
|
use bytes::Bytes;
|
||||||
|
use dashmap::DashMap;
|
||||||
use http_body_util::{BodyExt, Full, combinators::BoxBody};
|
use http_body_util::{BodyExt, Full, combinators::BoxBody};
|
||||||
use hyper::body::Incoming;
|
use hyper::body::Incoming;
|
||||||
use hyper::{Request, Response, StatusCode};
|
use hyper::{Request, Response, StatusCode};
|
||||||
@@ -18,8 +19,12 @@ use tokio::net::TcpStream;
|
|||||||
use tokio_util::sync::CancellationToken;
|
use tokio_util::sync::CancellationToken;
|
||||||
use tracing::{debug, error, info, warn};
|
use tracing::{debug, error, info, warn};
|
||||||
|
|
||||||
|
use std::pin::Pin;
|
||||||
|
use std::task::{Context, Poll};
|
||||||
|
|
||||||
use rustproxy_routing::RouteManager;
|
use rustproxy_routing::RouteManager;
|
||||||
use rustproxy_metrics::MetricsCollector;
|
use rustproxy_metrics::MetricsCollector;
|
||||||
|
use rustproxy_security::RateLimiter;
|
||||||
|
|
||||||
use crate::counting_body::{CountingBody, Direction};
|
use crate::counting_body::{CountingBody, Direction};
|
||||||
use crate::request_filter::RequestFilter;
|
use crate::request_filter::RequestFilter;
|
||||||
@@ -35,6 +40,125 @@ const DEFAULT_WS_INACTIVITY_TIMEOUT: std::time::Duration = std::time::Duration::
|
|||||||
/// Default WebSocket max lifetime (24 hours).
|
/// Default WebSocket max lifetime (24 hours).
|
||||||
const DEFAULT_WS_MAX_LIFETIME: std::time::Duration = std::time::Duration::from_secs(86400);
|
const DEFAULT_WS_MAX_LIFETIME: std::time::Duration = std::time::Duration::from_secs(86400);
|
||||||
|
|
||||||
|
/// Backend stream that can be either plain TCP or TLS-wrapped.
|
||||||
|
/// Used for `terminate-and-reencrypt` mode where the backend requires TLS.
|
||||||
|
pub(crate) enum BackendStream {
|
||||||
|
Plain(TcpStream),
|
||||||
|
Tls(tokio_rustls::client::TlsStream<TcpStream>),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl tokio::io::AsyncRead for BackendStream {
|
||||||
|
fn poll_read(
|
||||||
|
self: Pin<&mut Self>,
|
||||||
|
cx: &mut Context<'_>,
|
||||||
|
buf: &mut tokio::io::ReadBuf<'_>,
|
||||||
|
) -> Poll<std::io::Result<()>> {
|
||||||
|
match self.get_mut() {
|
||||||
|
BackendStream::Plain(s) => Pin::new(s).poll_read(cx, buf),
|
||||||
|
BackendStream::Tls(s) => Pin::new(s).poll_read(cx, buf),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl tokio::io::AsyncWrite for BackendStream {
|
||||||
|
fn poll_write(
|
||||||
|
self: Pin<&mut Self>,
|
||||||
|
cx: &mut Context<'_>,
|
||||||
|
buf: &[u8],
|
||||||
|
) -> Poll<std::io::Result<usize>> {
|
||||||
|
match self.get_mut() {
|
||||||
|
BackendStream::Plain(s) => Pin::new(s).poll_write(cx, buf),
|
||||||
|
BackendStream::Tls(s) => Pin::new(s).poll_write(cx, buf),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<std::io::Result<()>> {
|
||||||
|
match self.get_mut() {
|
||||||
|
BackendStream::Plain(s) => Pin::new(s).poll_flush(cx),
|
||||||
|
BackendStream::Tls(s) => Pin::new(s).poll_flush(cx),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<std::io::Result<()>> {
|
||||||
|
match self.get_mut() {
|
||||||
|
BackendStream::Plain(s) => Pin::new(s).poll_shutdown(cx),
|
||||||
|
BackendStream::Tls(s) => Pin::new(s).poll_shutdown(cx),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Connect to a backend over TLS. Uses InsecureVerifier for internal backends
|
||||||
|
/// with self-signed certs (same pattern as tls_handler::connect_tls).
|
||||||
|
async fn connect_tls_backend(
|
||||||
|
host: &str,
|
||||||
|
port: u16,
|
||||||
|
) -> Result<tokio_rustls::client::TlsStream<TcpStream>, Box<dyn std::error::Error + Send + Sync>> {
|
||||||
|
let _ = rustls::crypto::ring::default_provider().install_default();
|
||||||
|
let config = rustls::ClientConfig::builder()
|
||||||
|
.dangerous()
|
||||||
|
.with_custom_certificate_verifier(Arc::new(InsecureBackendVerifier))
|
||||||
|
.with_no_client_auth();
|
||||||
|
|
||||||
|
let connector = tokio_rustls::TlsConnector::from(Arc::new(config));
|
||||||
|
let stream = TcpStream::connect(format!("{}:{}", host, port)).await?;
|
||||||
|
stream.set_nodelay(true)?;
|
||||||
|
|
||||||
|
let server_name = rustls::pki_types::ServerName::try_from(host.to_string())?;
|
||||||
|
let tls_stream = connector.connect(server_name, stream).await?;
|
||||||
|
debug!("Backend TLS connection established to {}:{}", host, port);
|
||||||
|
Ok(tls_stream)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Insecure certificate verifier for backend TLS connections.
|
||||||
|
/// Internal backends may use self-signed certs.
|
||||||
|
#[derive(Debug)]
|
||||||
|
struct InsecureBackendVerifier;
|
||||||
|
|
||||||
|
impl rustls::client::danger::ServerCertVerifier for InsecureBackendVerifier {
|
||||||
|
fn verify_server_cert(
|
||||||
|
&self,
|
||||||
|
_end_entity: &rustls::pki_types::CertificateDer<'_>,
|
||||||
|
_intermediates: &[rustls::pki_types::CertificateDer<'_>],
|
||||||
|
_server_name: &rustls::pki_types::ServerName<'_>,
|
||||||
|
_ocsp_response: &[u8],
|
||||||
|
_now: rustls::pki_types::UnixTime,
|
||||||
|
) -> Result<rustls::client::danger::ServerCertVerified, rustls::Error> {
|
||||||
|
Ok(rustls::client::danger::ServerCertVerified::assertion())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn verify_tls12_signature(
|
||||||
|
&self,
|
||||||
|
_message: &[u8],
|
||||||
|
_cert: &rustls::pki_types::CertificateDer<'_>,
|
||||||
|
_dss: &rustls::DigitallySignedStruct,
|
||||||
|
) -> Result<rustls::client::danger::HandshakeSignatureValid, rustls::Error> {
|
||||||
|
Ok(rustls::client::danger::HandshakeSignatureValid::assertion())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn verify_tls13_signature(
|
||||||
|
&self,
|
||||||
|
_message: &[u8],
|
||||||
|
_cert: &rustls::pki_types::CertificateDer<'_>,
|
||||||
|
_dss: &rustls::DigitallySignedStruct,
|
||||||
|
) -> Result<rustls::client::danger::HandshakeSignatureValid, rustls::Error> {
|
||||||
|
Ok(rustls::client::danger::HandshakeSignatureValid::assertion())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn supported_verify_schemes(&self) -> Vec<rustls::SignatureScheme> {
|
||||||
|
vec![
|
||||||
|
rustls::SignatureScheme::RSA_PKCS1_SHA256,
|
||||||
|
rustls::SignatureScheme::RSA_PKCS1_SHA384,
|
||||||
|
rustls::SignatureScheme::RSA_PKCS1_SHA512,
|
||||||
|
rustls::SignatureScheme::ECDSA_NISTP256_SHA256,
|
||||||
|
rustls::SignatureScheme::ECDSA_NISTP384_SHA384,
|
||||||
|
rustls::SignatureScheme::ED25519,
|
||||||
|
rustls::SignatureScheme::RSA_PSS_SHA256,
|
||||||
|
rustls::SignatureScheme::RSA_PSS_SHA384,
|
||||||
|
rustls::SignatureScheme::RSA_PSS_SHA512,
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// HTTP proxy service that processes HTTP traffic.
|
/// HTTP proxy service that processes HTTP traffic.
|
||||||
pub struct HttpProxyService {
|
pub struct HttpProxyService {
|
||||||
route_manager: Arc<RouteManager>,
|
route_manager: Arc<RouteManager>,
|
||||||
@@ -42,6 +166,12 @@ pub struct HttpProxyService {
|
|||||||
upstream_selector: UpstreamSelector,
|
upstream_selector: UpstreamSelector,
|
||||||
/// Timeout for connecting to upstream backends.
|
/// Timeout for connecting to upstream backends.
|
||||||
connect_timeout: std::time::Duration,
|
connect_timeout: std::time::Duration,
|
||||||
|
/// Per-route rate limiters (keyed by route ID).
|
||||||
|
route_rate_limiters: Arc<DashMap<String, Arc<RateLimiter>>>,
|
||||||
|
/// Request counter for periodic rate limiter cleanup.
|
||||||
|
request_counter: AtomicU64,
|
||||||
|
/// Cache of compiled URL rewrite regexes (keyed by pattern string).
|
||||||
|
regex_cache: DashMap<String, Regex>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl HttpProxyService {
|
impl HttpProxyService {
|
||||||
@@ -51,6 +181,9 @@ impl HttpProxyService {
|
|||||||
metrics,
|
metrics,
|
||||||
upstream_selector: UpstreamSelector::new(),
|
upstream_selector: UpstreamSelector::new(),
|
||||||
connect_timeout: DEFAULT_CONNECT_TIMEOUT,
|
connect_timeout: DEFAULT_CONNECT_TIMEOUT,
|
||||||
|
route_rate_limiters: Arc::new(DashMap::new()),
|
||||||
|
request_counter: AtomicU64::new(0),
|
||||||
|
regex_cache: DashMap::new(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -65,6 +198,9 @@ impl HttpProxyService {
|
|||||||
metrics,
|
metrics,
|
||||||
upstream_selector: UpstreamSelector::new(),
|
upstream_selector: UpstreamSelector::new(),
|
||||||
connect_timeout,
|
connect_timeout,
|
||||||
|
route_rate_limiters: Arc::new(DashMap::new()),
|
||||||
|
request_counter: AtomicU64::new(0),
|
||||||
|
regex_cache: DashMap::new(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -173,6 +309,7 @@ impl HttpProxyService {
|
|||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: Some(&headers),
|
headers: Some(&headers),
|
||||||
is_tls: false,
|
is_tls: false,
|
||||||
|
protocol: Some("http"),
|
||||||
};
|
};
|
||||||
|
|
||||||
let route_match = match self.route_manager.find_route(&ctx) {
|
let route_match = match self.route_manager.find_route(&ctx) {
|
||||||
@@ -184,20 +321,39 @@ impl HttpProxyService {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let route_id = route_match.route.id.as_deref();
|
let route_id = route_match.route.id.as_deref();
|
||||||
self.metrics.connection_opened(route_id);
|
let ip_str = peer_addr.ip().to_string();
|
||||||
|
self.metrics.record_http_request();
|
||||||
|
|
||||||
// Apply request filters (IP check, rate limiting, auth)
|
// Apply request filters (IP check, rate limiting, auth)
|
||||||
if let Some(ref security) = route_match.route.security {
|
if let Some(ref security) = route_match.route.security {
|
||||||
if let Some(response) = RequestFilter::apply(security, &req, &peer_addr) {
|
// Look up or create a shared rate limiter for this route
|
||||||
self.metrics.connection_closed(route_id);
|
let rate_limiter = security.rate_limit.as_ref()
|
||||||
|
.filter(|rl| rl.enabled)
|
||||||
|
.map(|rl| {
|
||||||
|
let route_key = route_id.unwrap_or("__default__").to_string();
|
||||||
|
self.route_rate_limiters
|
||||||
|
.entry(route_key)
|
||||||
|
.or_insert_with(|| Arc::new(RateLimiter::new(rl.max_requests, rl.window)))
|
||||||
|
.clone()
|
||||||
|
});
|
||||||
|
if let Some(response) = RequestFilter::apply_with_rate_limiter(
|
||||||
|
security, &req, &peer_addr, rate_limiter.as_ref(),
|
||||||
|
) {
|
||||||
return Ok(response);
|
return Ok(response);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Periodic rate limiter cleanup (every 1000 requests)
|
||||||
|
let count = self.request_counter.fetch_add(1, Ordering::Relaxed);
|
||||||
|
if count % 1000 == 0 {
|
||||||
|
for entry in self.route_rate_limiters.iter() {
|
||||||
|
entry.value().cleanup();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Check for test response (returns immediately, no upstream needed)
|
// Check for test response (returns immediately, no upstream needed)
|
||||||
if let Some(ref advanced) = route_match.route.action.advanced {
|
if let Some(ref advanced) = route_match.route.action.advanced {
|
||||||
if let Some(ref test_response) = advanced.test_response {
|
if let Some(ref test_response) = advanced.test_response {
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(Self::build_test_response(test_response));
|
return Ok(Self::build_test_response(test_response));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -205,7 +361,6 @@ impl HttpProxyService {
|
|||||||
// Check for static file serving
|
// Check for static file serving
|
||||||
if let Some(ref advanced) = route_match.route.action.advanced {
|
if let Some(ref advanced) = route_match.route.action.advanced {
|
||||||
if let Some(ref static_files) = advanced.static_files {
|
if let Some(ref static_files) = advanced.static_files {
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(Self::serve_static_file(&path, static_files));
|
return Ok(Self::serve_static_file(&path, static_files));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -214,12 +369,19 @@ impl HttpProxyService {
|
|||||||
let target = match route_match.target {
|
let target = match route_match.target {
|
||||||
Some(t) => t,
|
Some(t) => t,
|
||||||
None => {
|
None => {
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "No target available"));
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "No target available"));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let upstream = self.upstream_selector.select(target, &peer_addr, port);
|
let mut upstream = self.upstream_selector.select(target, &peer_addr, port);
|
||||||
|
|
||||||
|
// If the route uses terminate-and-reencrypt, always re-encrypt to backend
|
||||||
|
if let Some(ref tls) = route_match.route.action.tls {
|
||||||
|
if tls.mode == rustproxy_config::TlsMode::TerminateAndReencrypt {
|
||||||
|
upstream.use_tls = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let upstream_key = format!("{}:{}", upstream.host, upstream.port);
|
let upstream_key = format!("{}:{}", upstream.host, upstream.port);
|
||||||
self.upstream_selector.connection_started(&upstream_key);
|
self.upstream_selector.connection_started(&upstream_key);
|
||||||
|
|
||||||
@@ -232,7 +394,7 @@ impl HttpProxyService {
|
|||||||
|
|
||||||
if is_websocket {
|
if is_websocket {
|
||||||
let result = self.handle_websocket_upgrade(
|
let result = self.handle_websocket_upgrade(
|
||||||
req, peer_addr, &upstream, route_match.route, route_id, &upstream_key, cancel,
|
req, peer_addr, &upstream, route_match.route, route_id, &upstream_key, cancel, &ip_str,
|
||||||
).await;
|
).await;
|
||||||
// Note: for WebSocket, connection_ended is called inside
|
// Note: for WebSocket, connection_ended is called inside
|
||||||
// the spawned tunnel task when the connection closes.
|
// the spawned tunnel task when the connection closes.
|
||||||
@@ -251,7 +413,7 @@ impl HttpProxyService {
|
|||||||
Some(q) => format!("{}?{}", path, q),
|
Some(q) => format!("{}?{}", path, q),
|
||||||
None => path.clone(),
|
None => path.clone(),
|
||||||
};
|
};
|
||||||
Self::apply_url_rewrite(&raw_path, &route_match.route)
|
self.apply_url_rewrite(&raw_path, &route_match.route)
|
||||||
};
|
};
|
||||||
|
|
||||||
// Build upstream request - stream body instead of buffering
|
// Build upstream request - stream body instead of buffering
|
||||||
@@ -271,35 +433,99 @@ impl HttpProxyService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Connect to upstream with timeout
|
// Add standard reverse-proxy headers (X-Forwarded-*)
|
||||||
let upstream_stream = match tokio::time::timeout(
|
{
|
||||||
self.connect_timeout,
|
let original_host = parts.headers.get("host")
|
||||||
TcpStream::connect(format!("{}:{}", upstream.host, upstream.port)),
|
.and_then(|h| h.to_str().ok())
|
||||||
).await {
|
.unwrap_or("");
|
||||||
Ok(Ok(s)) => s,
|
let forwarded_proto = if route_match.route.action.tls.as_ref()
|
||||||
Ok(Err(e)) => {
|
.map(|t| matches!(t.mode,
|
||||||
error!("Failed to connect to upstream {}:{}: {}", upstream.host, upstream.port, e);
|
rustproxy_config::TlsMode::Terminate
|
||||||
self.upstream_selector.connection_ended(&upstream_key);
|
| rustproxy_config::TlsMode::TerminateAndReencrypt))
|
||||||
self.metrics.connection_closed(route_id);
|
.unwrap_or(false)
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend unavailable"));
|
{
|
||||||
|
"https"
|
||||||
|
} else {
|
||||||
|
"http"
|
||||||
|
};
|
||||||
|
|
||||||
|
// X-Forwarded-For: append client IP to existing chain
|
||||||
|
let client_ip = peer_addr.ip().to_string();
|
||||||
|
let xff_value = if let Some(existing) = upstream_headers.get("x-forwarded-for") {
|
||||||
|
format!("{}, {}", existing.to_str().unwrap_or(""), client_ip)
|
||||||
|
} else {
|
||||||
|
client_ip
|
||||||
|
};
|
||||||
|
if let Ok(val) = hyper::header::HeaderValue::from_str(&xff_value) {
|
||||||
|
upstream_headers.insert(
|
||||||
|
hyper::header::HeaderName::from_static("x-forwarded-for"),
|
||||||
|
val,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
Err(_) => {
|
// X-Forwarded-Host: original Host header
|
||||||
error!("Upstream connect timeout for {}:{}", upstream.host, upstream.port);
|
if let Ok(val) = hyper::header::HeaderValue::from_str(original_host) {
|
||||||
self.upstream_selector.connection_ended(&upstream_key);
|
upstream_headers.insert(
|
||||||
self.metrics.connection_closed(route_id);
|
hyper::header::HeaderName::from_static("x-forwarded-host"),
|
||||||
return Ok(error_response(StatusCode::GATEWAY_TIMEOUT, "Backend connect timeout"));
|
val,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// X-Forwarded-Proto: original client protocol
|
||||||
|
if let Ok(val) = hyper::header::HeaderValue::from_str(forwarded_proto) {
|
||||||
|
upstream_headers.insert(
|
||||||
|
hyper::header::HeaderName::from_static("x-forwarded-proto"),
|
||||||
|
val,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Connect to upstream with timeout (TLS if upstream.use_tls is set)
|
||||||
|
let backend = if upstream.use_tls {
|
||||||
|
match tokio::time::timeout(
|
||||||
|
self.connect_timeout,
|
||||||
|
connect_tls_backend(&upstream.host, upstream.port),
|
||||||
|
).await {
|
||||||
|
Ok(Ok(tls)) => BackendStream::Tls(tls),
|
||||||
|
Ok(Err(e)) => {
|
||||||
|
error!("Failed TLS connect to upstream {}:{}: {}", upstream.host, upstream.port, e);
|
||||||
|
self.upstream_selector.connection_ended(&upstream_key);
|
||||||
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend TLS unavailable"));
|
||||||
|
}
|
||||||
|
Err(_) => {
|
||||||
|
error!("Upstream TLS connect timeout for {}:{}", upstream.host, upstream.port);
|
||||||
|
self.upstream_selector.connection_ended(&upstream_key);
|
||||||
|
return Ok(error_response(StatusCode::GATEWAY_TIMEOUT, "Backend TLS connect timeout"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
match tokio::time::timeout(
|
||||||
|
self.connect_timeout,
|
||||||
|
TcpStream::connect(format!("{}:{}", upstream.host, upstream.port)),
|
||||||
|
).await {
|
||||||
|
Ok(Ok(s)) => {
|
||||||
|
s.set_nodelay(true).ok();
|
||||||
|
BackendStream::Plain(s)
|
||||||
|
}
|
||||||
|
Ok(Err(e)) => {
|
||||||
|
error!("Failed to connect to upstream {}:{}: {}", upstream.host, upstream.port, e);
|
||||||
|
self.upstream_selector.connection_ended(&upstream_key);
|
||||||
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend unavailable"));
|
||||||
|
}
|
||||||
|
Err(_) => {
|
||||||
|
error!("Upstream connect timeout for {}:{}", upstream.host, upstream.port);
|
||||||
|
self.upstream_selector.connection_ended(&upstream_key);
|
||||||
|
return Ok(error_response(StatusCode::GATEWAY_TIMEOUT, "Backend connect timeout"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
upstream_stream.set_nodelay(true).ok();
|
|
||||||
|
|
||||||
let io = TokioIo::new(upstream_stream);
|
let io = TokioIo::new(backend);
|
||||||
|
|
||||||
let result = if use_h2 {
|
let result = if use_h2 {
|
||||||
// HTTP/2 backend
|
// HTTP/2 backend
|
||||||
self.forward_h2(io, parts, body, upstream_headers, &upstream_path, &upstream, route_match.route, route_id).await
|
self.forward_h2(io, parts, body, upstream_headers, &upstream_path, &upstream, route_match.route, route_id, &ip_str).await
|
||||||
} else {
|
} else {
|
||||||
// HTTP/1.1 backend (default)
|
// HTTP/1.1 backend (default)
|
||||||
self.forward_h1(io, parts, body, upstream_headers, &upstream_path, &upstream, route_match.route, route_id).await
|
self.forward_h1(io, parts, body, upstream_headers, &upstream_path, &upstream, route_match.route, route_id, &ip_str).await
|
||||||
};
|
};
|
||||||
self.upstream_selector.connection_ended(&upstream_key);
|
self.upstream_selector.connection_ended(&upstream_key);
|
||||||
result
|
result
|
||||||
@@ -308,20 +534,20 @@ impl HttpProxyService {
|
|||||||
/// Forward request to backend via HTTP/1.1 with body streaming.
|
/// Forward request to backend via HTTP/1.1 with body streaming.
|
||||||
async fn forward_h1(
|
async fn forward_h1(
|
||||||
&self,
|
&self,
|
||||||
io: TokioIo<TcpStream>,
|
io: TokioIo<BackendStream>,
|
||||||
parts: hyper::http::request::Parts,
|
parts: hyper::http::request::Parts,
|
||||||
body: Incoming,
|
body: Incoming,
|
||||||
upstream_headers: hyper::HeaderMap,
|
upstream_headers: hyper::HeaderMap,
|
||||||
upstream_path: &str,
|
upstream_path: &str,
|
||||||
upstream: &crate::upstream_selector::UpstreamSelection,
|
_upstream: &crate::upstream_selector::UpstreamSelection,
|
||||||
route: &rustproxy_config::RouteConfig,
|
route: &rustproxy_config::RouteConfig,
|
||||||
route_id: Option<&str>,
|
route_id: Option<&str>,
|
||||||
|
source_ip: &str,
|
||||||
) -> Result<Response<BoxBody<Bytes, hyper::Error>>, hyper::Error> {
|
) -> Result<Response<BoxBody<Bytes, hyper::Error>>, hyper::Error> {
|
||||||
let (mut sender, conn) = match hyper::client::conn::http1::handshake(io).await {
|
let (mut sender, conn) = match hyper::client::conn::http1::handshake(io).await {
|
||||||
Ok(h) => h,
|
Ok(h) => h,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
error!("Upstream handshake failed: {}", e);
|
error!("Upstream handshake failed: {}", e);
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend handshake failed"));
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend handshake failed"));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -339,11 +565,6 @@ impl HttpProxyService {
|
|||||||
|
|
||||||
if let Some(headers) = upstream_req.headers_mut() {
|
if let Some(headers) = upstream_req.headers_mut() {
|
||||||
*headers = upstream_headers;
|
*headers = upstream_headers;
|
||||||
if let Ok(host_val) = hyper::header::HeaderValue::from_str(
|
|
||||||
&format!("{}:{}", upstream.host, upstream.port)
|
|
||||||
) {
|
|
||||||
headers.insert(hyper::header::HOST, host_val);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wrap the request body in CountingBody to track bytes_in
|
// Wrap the request body in CountingBody to track bytes_in
|
||||||
@@ -351,6 +572,7 @@ impl HttpProxyService {
|
|||||||
body,
|
body,
|
||||||
Arc::clone(&self.metrics),
|
Arc::clone(&self.metrics),
|
||||||
route_id.map(|s| s.to_string()),
|
route_id.map(|s| s.to_string()),
|
||||||
|
Some(source_ip.to_string()),
|
||||||
Direction::In,
|
Direction::In,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -361,32 +583,31 @@ impl HttpProxyService {
|
|||||||
Ok(resp) => resp,
|
Ok(resp) => resp,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
error!("Upstream request failed: {}", e);
|
error!("Upstream request failed: {}", e);
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend request failed"));
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend request failed"));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
self.build_streaming_response(upstream_response, route, route_id).await
|
self.build_streaming_response(upstream_response, route, route_id, source_ip).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Forward request to backend via HTTP/2 with body streaming.
|
/// Forward request to backend via HTTP/2 with body streaming.
|
||||||
async fn forward_h2(
|
async fn forward_h2(
|
||||||
&self,
|
&self,
|
||||||
io: TokioIo<TcpStream>,
|
io: TokioIo<BackendStream>,
|
||||||
parts: hyper::http::request::Parts,
|
parts: hyper::http::request::Parts,
|
||||||
body: Incoming,
|
body: Incoming,
|
||||||
upstream_headers: hyper::HeaderMap,
|
upstream_headers: hyper::HeaderMap,
|
||||||
upstream_path: &str,
|
upstream_path: &str,
|
||||||
upstream: &crate::upstream_selector::UpstreamSelection,
|
_upstream: &crate::upstream_selector::UpstreamSelection,
|
||||||
route: &rustproxy_config::RouteConfig,
|
route: &rustproxy_config::RouteConfig,
|
||||||
route_id: Option<&str>,
|
route_id: Option<&str>,
|
||||||
|
source_ip: &str,
|
||||||
) -> Result<Response<BoxBody<Bytes, hyper::Error>>, hyper::Error> {
|
) -> Result<Response<BoxBody<Bytes, hyper::Error>>, hyper::Error> {
|
||||||
let exec = hyper_util::rt::TokioExecutor::new();
|
let exec = hyper_util::rt::TokioExecutor::new();
|
||||||
let (mut sender, conn) = match hyper::client::conn::http2::handshake(exec, io).await {
|
let (mut sender, conn) = match hyper::client::conn::http2::handshake(exec, io).await {
|
||||||
Ok(h) => h,
|
Ok(h) => h,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
error!("HTTP/2 upstream handshake failed: {}", e);
|
error!("HTTP/2 upstream handshake failed: {}", e);
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend H2 handshake failed"));
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend H2 handshake failed"));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -403,11 +624,6 @@ impl HttpProxyService {
|
|||||||
|
|
||||||
if let Some(headers) = upstream_req.headers_mut() {
|
if let Some(headers) = upstream_req.headers_mut() {
|
||||||
*headers = upstream_headers;
|
*headers = upstream_headers;
|
||||||
if let Ok(host_val) = hyper::header::HeaderValue::from_str(
|
|
||||||
&format!("{}:{}", upstream.host, upstream.port)
|
|
||||||
) {
|
|
||||||
headers.insert(hyper::header::HOST, host_val);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wrap the request body in CountingBody to track bytes_in
|
// Wrap the request body in CountingBody to track bytes_in
|
||||||
@@ -415,6 +631,7 @@ impl HttpProxyService {
|
|||||||
body,
|
body,
|
||||||
Arc::clone(&self.metrics),
|
Arc::clone(&self.metrics),
|
||||||
route_id.map(|s| s.to_string()),
|
route_id.map(|s| s.to_string()),
|
||||||
|
Some(source_ip.to_string()),
|
||||||
Direction::In,
|
Direction::In,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -425,24 +642,23 @@ impl HttpProxyService {
|
|||||||
Ok(resp) => resp,
|
Ok(resp) => resp,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
error!("HTTP/2 upstream request failed: {}", e);
|
error!("HTTP/2 upstream request failed: {}", e);
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend H2 request failed"));
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend H2 request failed"));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
self.build_streaming_response(upstream_response, route, route_id).await
|
self.build_streaming_response(upstream_response, route, route_id, source_ip).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Build the client-facing response from an upstream response, streaming the body.
|
/// Build the client-facing response from an upstream response, streaming the body.
|
||||||
///
|
///
|
||||||
/// The response body is wrapped in a `CountingBody` that counts bytes as they
|
/// The response body is wrapped in a `CountingBody` that counts bytes as they
|
||||||
/// stream from upstream to client. When the body is fully consumed (or dropped),
|
/// stream from upstream to client.
|
||||||
/// it reports byte counts to the metrics collector and calls `connection_closed`.
|
|
||||||
async fn build_streaming_response(
|
async fn build_streaming_response(
|
||||||
&self,
|
&self,
|
||||||
upstream_response: Response<Incoming>,
|
upstream_response: Response<Incoming>,
|
||||||
route: &rustproxy_config::RouteConfig,
|
route: &rustproxy_config::RouteConfig,
|
||||||
route_id: Option<&str>,
|
route_id: Option<&str>,
|
||||||
|
source_ip: &str,
|
||||||
) -> Result<Response<BoxBody<Bytes, hyper::Error>>, hyper::Error> {
|
) -> Result<Response<BoxBody<Bytes, hyper::Error>>, hyper::Error> {
|
||||||
let (resp_parts, resp_body) = upstream_response.into_parts();
|
let (resp_parts, resp_body) = upstream_response.into_parts();
|
||||||
|
|
||||||
@@ -461,14 +677,10 @@ impl HttpProxyService {
|
|||||||
resp_body,
|
resp_body,
|
||||||
Arc::clone(&self.metrics),
|
Arc::clone(&self.metrics),
|
||||||
route_id.map(|s| s.to_string()),
|
route_id.map(|s| s.to_string()),
|
||||||
|
Some(source_ip.to_string()),
|
||||||
Direction::Out,
|
Direction::Out,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Close the connection metric now — the HTTP request/response cycle is done
|
|
||||||
// from the proxy's perspective once we hand the streaming body to hyper.
|
|
||||||
// Bytes will still be counted as they flow.
|
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
|
|
||||||
let body: BoxBody<Bytes, hyper::Error> = BoxBody::new(counting_body);
|
let body: BoxBody<Bytes, hyper::Error> = BoxBody::new(counting_body);
|
||||||
|
|
||||||
Ok(response.body(body).unwrap())
|
Ok(response.body(body).unwrap())
|
||||||
@@ -484,6 +696,7 @@ impl HttpProxyService {
|
|||||||
route_id: Option<&str>,
|
route_id: Option<&str>,
|
||||||
upstream_key: &str,
|
upstream_key: &str,
|
||||||
cancel: CancellationToken,
|
cancel: CancellationToken,
|
||||||
|
source_ip: &str,
|
||||||
) -> Result<Response<BoxBody<Bytes, hyper::Error>>, hyper::Error> {
|
) -> Result<Response<BoxBody<Bytes, hyper::Error>>, hyper::Error> {
|
||||||
use tokio::io::{AsyncReadExt, AsyncWriteExt};
|
use tokio::io::{AsyncReadExt, AsyncWriteExt};
|
||||||
|
|
||||||
@@ -499,7 +712,6 @@ impl HttpProxyService {
|
|||||||
.unwrap_or("");
|
.unwrap_or("");
|
||||||
if !allowed_origins.is_empty() && !allowed_origins.iter().any(|o| o == "*" || o == origin) {
|
if !allowed_origins.is_empty() && !allowed_origins.iter().any(|o| o == "*" || o == origin) {
|
||||||
self.upstream_selector.connection_ended(upstream_key);
|
self.upstream_selector.connection_ended(upstream_key);
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(StatusCode::FORBIDDEN, "Origin not allowed"));
|
return Ok(error_response(StatusCode::FORBIDDEN, "Origin not allowed"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -507,26 +719,45 @@ impl HttpProxyService {
|
|||||||
|
|
||||||
info!("WebSocket upgrade from {} -> {}:{}", peer_addr, upstream.host, upstream.port);
|
info!("WebSocket upgrade from {} -> {}:{}", peer_addr, upstream.host, upstream.port);
|
||||||
|
|
||||||
// Connect to upstream with timeout
|
// Connect to upstream with timeout (TLS if upstream.use_tls is set)
|
||||||
let mut upstream_stream = match tokio::time::timeout(
|
let mut upstream_stream: BackendStream = if upstream.use_tls {
|
||||||
self.connect_timeout,
|
match tokio::time::timeout(
|
||||||
TcpStream::connect(format!("{}:{}", upstream.host, upstream.port)),
|
self.connect_timeout,
|
||||||
).await {
|
connect_tls_backend(&upstream.host, upstream.port),
|
||||||
Ok(Ok(s)) => s,
|
).await {
|
||||||
Ok(Err(e)) => {
|
Ok(Ok(tls)) => BackendStream::Tls(tls),
|
||||||
error!("WebSocket: failed to connect upstream {}:{}: {}", upstream.host, upstream.port, e);
|
Ok(Err(e)) => {
|
||||||
self.upstream_selector.connection_ended(upstream_key);
|
error!("WebSocket: failed TLS connect upstream {}:{}: {}", upstream.host, upstream.port, e);
|
||||||
self.metrics.connection_closed(route_id);
|
self.upstream_selector.connection_ended(upstream_key);
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend unavailable"));
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend TLS unavailable"));
|
||||||
|
}
|
||||||
|
Err(_) => {
|
||||||
|
error!("WebSocket: upstream TLS connect timeout for {}:{}", upstream.host, upstream.port);
|
||||||
|
self.upstream_selector.connection_ended(upstream_key);
|
||||||
|
return Ok(error_response(StatusCode::GATEWAY_TIMEOUT, "Backend TLS connect timeout"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Err(_) => {
|
} else {
|
||||||
error!("WebSocket: upstream connect timeout for {}:{}", upstream.host, upstream.port);
|
match tokio::time::timeout(
|
||||||
self.upstream_selector.connection_ended(upstream_key);
|
self.connect_timeout,
|
||||||
self.metrics.connection_closed(route_id);
|
TcpStream::connect(format!("{}:{}", upstream.host, upstream.port)),
|
||||||
return Ok(error_response(StatusCode::GATEWAY_TIMEOUT, "Backend connect timeout"));
|
).await {
|
||||||
|
Ok(Ok(s)) => {
|
||||||
|
s.set_nodelay(true).ok();
|
||||||
|
BackendStream::Plain(s)
|
||||||
|
}
|
||||||
|
Ok(Err(e)) => {
|
||||||
|
error!("WebSocket: failed to connect upstream {}:{}: {}", upstream.host, upstream.port, e);
|
||||||
|
self.upstream_selector.connection_ended(upstream_key);
|
||||||
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend unavailable"));
|
||||||
|
}
|
||||||
|
Err(_) => {
|
||||||
|
error!("WebSocket: upstream connect timeout for {}:{}", upstream.host, upstream.port);
|
||||||
|
self.upstream_selector.connection_ended(upstream_key);
|
||||||
|
return Ok(error_response(StatusCode::GATEWAY_TIMEOUT, "Backend connect timeout"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
upstream_stream.set_nodelay(true).ok();
|
|
||||||
|
|
||||||
let path = req.uri().path().to_string();
|
let path = req.uri().path().to_string();
|
||||||
let upstream_path = {
|
let upstream_path = {
|
||||||
@@ -553,13 +784,44 @@ impl HttpProxyService {
|
|||||||
parts.method, upstream_path
|
parts.method, upstream_path
|
||||||
);
|
);
|
||||||
|
|
||||||
let upstream_host = format!("{}:{}", upstream.host, upstream.port);
|
// Copy all original headers (preserving the client's Host header).
|
||||||
|
// Skip X-Forwarded-* since we set them ourselves below.
|
||||||
for (name, value) in parts.headers.iter() {
|
for (name, value) in parts.headers.iter() {
|
||||||
if name == hyper::header::HOST {
|
let name_str = name.as_str();
|
||||||
raw_request.push_str(&format!("host: {}\r\n", upstream_host));
|
if name_str == "x-forwarded-for"
|
||||||
} else {
|
|| name_str == "x-forwarded-host"
|
||||||
raw_request.push_str(&format!("{}: {}\r\n", name, value.to_str().unwrap_or("")));
|
|| name_str == "x-forwarded-proto"
|
||||||
|
{
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
raw_request.push_str(&format!("{}: {}\r\n", name, value.to_str().unwrap_or("")));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add standard reverse-proxy headers (X-Forwarded-*)
|
||||||
|
{
|
||||||
|
let original_host = parts.headers.get("host")
|
||||||
|
.and_then(|h| h.to_str().ok())
|
||||||
|
.unwrap_or("");
|
||||||
|
let forwarded_proto = if route.action.tls.as_ref()
|
||||||
|
.map(|t| matches!(t.mode,
|
||||||
|
rustproxy_config::TlsMode::Terminate
|
||||||
|
| rustproxy_config::TlsMode::TerminateAndReencrypt))
|
||||||
|
.unwrap_or(false)
|
||||||
|
{
|
||||||
|
"https"
|
||||||
|
} else {
|
||||||
|
"http"
|
||||||
|
};
|
||||||
|
|
||||||
|
let client_ip = peer_addr.ip().to_string();
|
||||||
|
let xff_value = if let Some(existing) = parts.headers.get("x-forwarded-for") {
|
||||||
|
format!("{}, {}", existing.to_str().unwrap_or(""), client_ip)
|
||||||
|
} else {
|
||||||
|
client_ip
|
||||||
|
};
|
||||||
|
raw_request.push_str(&format!("x-forwarded-for: {}\r\n", xff_value));
|
||||||
|
raw_request.push_str(&format!("x-forwarded-host: {}\r\n", original_host));
|
||||||
|
raw_request.push_str(&format!("x-forwarded-proto: {}\r\n", forwarded_proto));
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(ref route_headers) = route.headers {
|
if let Some(ref route_headers) = route.headers {
|
||||||
@@ -584,7 +846,6 @@ impl HttpProxyService {
|
|||||||
if let Err(e) = upstream_stream.write_all(raw_request.as_bytes()).await {
|
if let Err(e) = upstream_stream.write_all(raw_request.as_bytes()).await {
|
||||||
error!("WebSocket: failed to send upgrade request to upstream: {}", e);
|
error!("WebSocket: failed to send upgrade request to upstream: {}", e);
|
||||||
self.upstream_selector.connection_ended(upstream_key);
|
self.upstream_selector.connection_ended(upstream_key);
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend write failed"));
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend write failed"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -595,7 +856,6 @@ impl HttpProxyService {
|
|||||||
Ok(0) => {
|
Ok(0) => {
|
||||||
error!("WebSocket: upstream closed before completing handshake");
|
error!("WebSocket: upstream closed before completing handshake");
|
||||||
self.upstream_selector.connection_ended(upstream_key);
|
self.upstream_selector.connection_ended(upstream_key);
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend closed"));
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend closed"));
|
||||||
}
|
}
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
@@ -609,14 +869,12 @@ impl HttpProxyService {
|
|||||||
if response_buf.len() > 8192 {
|
if response_buf.len() > 8192 {
|
||||||
error!("WebSocket: upstream response headers too large");
|
error!("WebSocket: upstream response headers too large");
|
||||||
self.upstream_selector.connection_ended(upstream_key);
|
self.upstream_selector.connection_ended(upstream_key);
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend response too large"));
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend response too large"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
error!("WebSocket: failed to read upstream response: {}", e);
|
error!("WebSocket: failed to read upstream response: {}", e);
|
||||||
self.upstream_selector.connection_ended(upstream_key);
|
self.upstream_selector.connection_ended(upstream_key);
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend read failed"));
|
return Ok(error_response(StatusCode::BAD_GATEWAY, "Backend read failed"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -634,7 +892,6 @@ impl HttpProxyService {
|
|||||||
if status_code != 101 {
|
if status_code != 101 {
|
||||||
debug!("WebSocket: upstream rejected upgrade with status {}", status_code);
|
debug!("WebSocket: upstream rejected upgrade with status {}", status_code);
|
||||||
self.upstream_selector.connection_ended(upstream_key);
|
self.upstream_selector.connection_ended(upstream_key);
|
||||||
self.metrics.connection_closed(route_id);
|
|
||||||
return Ok(error_response(
|
return Ok(error_response(
|
||||||
StatusCode::from_u16(status_code).unwrap_or(StatusCode::BAD_GATEWAY),
|
StatusCode::from_u16(status_code).unwrap_or(StatusCode::BAD_GATEWAY),
|
||||||
"WebSocket upgrade rejected by backend",
|
"WebSocket upgrade rejected by backend",
|
||||||
@@ -668,6 +925,7 @@ impl HttpProxyService {
|
|||||||
|
|
||||||
let metrics = Arc::clone(&self.metrics);
|
let metrics = Arc::clone(&self.metrics);
|
||||||
let route_id_owned = route_id.map(|s| s.to_string());
|
let route_id_owned = route_id.map(|s| s.to_string());
|
||||||
|
let source_ip_owned = source_ip.to_string();
|
||||||
let upstream_selector = self.upstream_selector.clone();
|
let upstream_selector = self.upstream_selector.clone();
|
||||||
let upstream_key_owned = upstream_key.to_string();
|
let upstream_key_owned = upstream_key.to_string();
|
||||||
|
|
||||||
@@ -677,9 +935,6 @@ impl HttpProxyService {
|
|||||||
Err(e) => {
|
Err(e) => {
|
||||||
debug!("WebSocket: client upgrade failed: {}", e);
|
debug!("WebSocket: client upgrade failed: {}", e);
|
||||||
upstream_selector.connection_ended(&upstream_key_owned);
|
upstream_selector.connection_ended(&upstream_key_owned);
|
||||||
if let Some(ref rid) = route_id_owned {
|
|
||||||
metrics.connection_closed(Some(rid.as_str()));
|
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -783,8 +1038,7 @@ impl HttpProxyService {
|
|||||||
|
|
||||||
upstream_selector.connection_ended(&upstream_key_owned);
|
upstream_selector.connection_ended(&upstream_key_owned);
|
||||||
if let Some(ref rid) = route_id_owned {
|
if let Some(ref rid) = route_id_owned {
|
||||||
metrics.record_bytes(bytes_in, bytes_out, Some(rid.as_str()));
|
metrics.record_bytes(bytes_in, bytes_out, Some(rid.as_str()), Some(&source_ip_owned));
|
||||||
metrics.connection_closed(Some(rid.as_str()));
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -814,8 +1068,8 @@ impl HttpProxyService {
|
|||||||
response.body(BoxBody::new(body)).unwrap()
|
response.body(BoxBody::new(body)).unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Apply URL rewriting rules from route config.
|
/// Apply URL rewriting rules from route config, using the compiled regex cache.
|
||||||
fn apply_url_rewrite(path: &str, route: &rustproxy_config::RouteConfig) -> String {
|
fn apply_url_rewrite(&self, path: &str, route: &rustproxy_config::RouteConfig) -> String {
|
||||||
let rewrite = match route.action.advanced.as_ref()
|
let rewrite = match route.action.advanced.as_ref()
|
||||||
.and_then(|a| a.url_rewrite.as_ref())
|
.and_then(|a| a.url_rewrite.as_ref())
|
||||||
{
|
{
|
||||||
@@ -834,10 +1088,20 @@ impl HttpProxyService {
|
|||||||
(path.to_string(), String::new())
|
(path.to_string(), String::new())
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Look up or compile the regex, caching for future requests
|
||||||
|
let cached = self.regex_cache.get(&rewrite.pattern);
|
||||||
|
if let Some(re) = cached {
|
||||||
|
let result = re.replace_all(&subject, rewrite.target.as_str());
|
||||||
|
return format!("{}{}", result, suffix);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not cached — compile and insert
|
||||||
match Regex::new(&rewrite.pattern) {
|
match Regex::new(&rewrite.pattern) {
|
||||||
Ok(re) => {
|
Ok(re) => {
|
||||||
let result = re.replace_all(&subject, rewrite.target.as_str());
|
let result = re.replace_all(&subject, rewrite.target.as_str());
|
||||||
format!("{}{}", result, suffix)
|
let out = format!("{}{}", result, suffix);
|
||||||
|
self.regex_cache.insert(rewrite.pattern.clone(), re);
|
||||||
|
out
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
warn!("Invalid URL rewrite pattern '{}': {}", rewrite.pattern, e);
|
warn!("Invalid URL rewrite pattern '{}': {}", rewrite.pattern, e);
|
||||||
@@ -964,6 +1228,9 @@ impl Default for HttpProxyService {
|
|||||||
metrics: Arc::new(MetricsCollector::new()),
|
metrics: Arc::new(MetricsCollector::new()),
|
||||||
upstream_selector: UpstreamSelector::new(),
|
upstream_selector: UpstreamSelector::new(),
|
||||||
connect_timeout: DEFAULT_CONNECT_TIMEOUT,
|
connect_timeout: DEFAULT_CONNECT_TIMEOUT,
|
||||||
|
route_rate_limiters: Arc::new(DashMap::new()),
|
||||||
|
request_counter: AtomicU64::new(0),
|
||||||
|
regex_cache: DashMap::new(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -115,10 +115,18 @@ impl UpstreamSelector {
|
|||||||
/// Record that a connection to the given host has ended.
|
/// Record that a connection to the given host has ended.
|
||||||
pub fn connection_ended(&self, host: &str) {
|
pub fn connection_ended(&self, host: &str) {
|
||||||
if let Some(counter) = self.active_connections.get(host) {
|
if let Some(counter) = self.active_connections.get(host) {
|
||||||
let prev = counter.value().fetch_sub(1, Ordering::Relaxed);
|
let prev = counter.value().load(Ordering::Relaxed);
|
||||||
// Guard against underflow (shouldn't happen, but be safe)
|
|
||||||
if prev == 0 {
|
if prev == 0 {
|
||||||
counter.value().store(0, Ordering::Relaxed);
|
// Already at zero — just clean up the entry
|
||||||
|
drop(counter);
|
||||||
|
self.active_connections.remove(host);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
counter.value().fetch_sub(1, Ordering::Relaxed);
|
||||||
|
// Clean up zero-count entries to prevent memory growth
|
||||||
|
if prev <= 1 {
|
||||||
|
drop(counter);
|
||||||
|
self.active_connections.remove(host);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -204,6 +212,31 @@ mod tests {
|
|||||||
assert_eq!(r4.host, "a");
|
assert_eq!(r4.host, "a");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_connection_tracking_cleanup() {
|
||||||
|
let selector = UpstreamSelector::new();
|
||||||
|
|
||||||
|
selector.connection_started("backend:8080");
|
||||||
|
selector.connection_started("backend:8080");
|
||||||
|
assert_eq!(
|
||||||
|
selector.active_connections.get("backend:8080").unwrap().load(Ordering::Relaxed),
|
||||||
|
2
|
||||||
|
);
|
||||||
|
|
||||||
|
selector.connection_ended("backend:8080");
|
||||||
|
assert_eq!(
|
||||||
|
selector.active_connections.get("backend:8080").unwrap().load(Ordering::Relaxed),
|
||||||
|
1
|
||||||
|
);
|
||||||
|
|
||||||
|
// Last connection ends — entry should be removed entirely
|
||||||
|
selector.connection_ended("backend:8080");
|
||||||
|
assert!(selector.active_connections.get("backend:8080").is_none());
|
||||||
|
|
||||||
|
// Ending on a non-existent key should not panic
|
||||||
|
selector.connection_ended("nonexistent:9999");
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_ip_hash_consistent() {
|
fn test_ip_hash_consistent() {
|
||||||
let selector = UpstreamSelector::new();
|
let selector = UpstreamSelector::new();
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
use dashmap::DashMap;
|
use dashmap::DashMap;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
use std::collections::HashSet;
|
||||||
use std::sync::atomic::{AtomicU64, Ordering};
|
use std::sync::atomic::{AtomicU64, Ordering};
|
||||||
use std::sync::Mutex;
|
use std::sync::Mutex;
|
||||||
|
|
||||||
use crate::throughput::ThroughputTracker;
|
use crate::throughput::{ThroughputSample, ThroughputTracker};
|
||||||
|
|
||||||
/// Aggregated metrics snapshot.
|
/// Aggregated metrics snapshot.
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
@@ -18,6 +19,11 @@ pub struct Metrics {
|
|||||||
pub throughput_recent_in_bytes_per_sec: u64,
|
pub throughput_recent_in_bytes_per_sec: u64,
|
||||||
pub throughput_recent_out_bytes_per_sec: u64,
|
pub throughput_recent_out_bytes_per_sec: u64,
|
||||||
pub routes: std::collections::HashMap<String, RouteMetrics>,
|
pub routes: std::collections::HashMap<String, RouteMetrics>,
|
||||||
|
pub ips: std::collections::HashMap<String, IpMetrics>,
|
||||||
|
pub throughput_history: Vec<ThroughputSample>,
|
||||||
|
pub total_http_requests: u64,
|
||||||
|
pub http_requests_per_sec: u64,
|
||||||
|
pub http_requests_per_sec_recent: u64,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Per-route metrics.
|
/// Per-route metrics.
|
||||||
@@ -34,6 +40,18 @@ pub struct RouteMetrics {
|
|||||||
pub throughput_recent_out_bytes_per_sec: u64,
|
pub throughput_recent_out_bytes_per_sec: u64,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Per-IP metrics.
|
||||||
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
|
#[serde(rename_all = "camelCase")]
|
||||||
|
pub struct IpMetrics {
|
||||||
|
pub active_connections: u64,
|
||||||
|
pub total_connections: u64,
|
||||||
|
pub bytes_in: u64,
|
||||||
|
pub bytes_out: u64,
|
||||||
|
pub throughput_in_bytes_per_sec: u64,
|
||||||
|
pub throughput_out_bytes_per_sec: u64,
|
||||||
|
}
|
||||||
|
|
||||||
/// Statistics snapshot.
|
/// Statistics snapshot.
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
@@ -48,6 +66,9 @@ pub struct Statistics {
|
|||||||
/// Default retention for throughput samples (1 hour).
|
/// Default retention for throughput samples (1 hour).
|
||||||
const DEFAULT_RETENTION_SECONDS: usize = 3600;
|
const DEFAULT_RETENTION_SECONDS: usize = 3600;
|
||||||
|
|
||||||
|
/// Maximum number of IPs to include in a snapshot (top by active connections).
|
||||||
|
const MAX_IPS_IN_SNAPSHOT: usize = 100;
|
||||||
|
|
||||||
/// Metrics collector tracking connections and throughput.
|
/// Metrics collector tracking connections and throughput.
|
||||||
///
|
///
|
||||||
/// Design: The hot path (`record_bytes`) is entirely lock-free — it only touches
|
/// Design: The hot path (`record_bytes`) is entirely lock-free — it only touches
|
||||||
@@ -67,6 +88,19 @@ pub struct MetricsCollector {
|
|||||||
route_bytes_in: DashMap<String, AtomicU64>,
|
route_bytes_in: DashMap<String, AtomicU64>,
|
||||||
route_bytes_out: DashMap<String, AtomicU64>,
|
route_bytes_out: DashMap<String, AtomicU64>,
|
||||||
|
|
||||||
|
// ── Per-IP tracking ──
|
||||||
|
ip_connections: DashMap<String, AtomicU64>,
|
||||||
|
ip_total_connections: DashMap<String, AtomicU64>,
|
||||||
|
ip_bytes_in: DashMap<String, AtomicU64>,
|
||||||
|
ip_bytes_out: DashMap<String, AtomicU64>,
|
||||||
|
ip_pending_tp: DashMap<String, (AtomicU64, AtomicU64)>,
|
||||||
|
ip_throughput: DashMap<String, Mutex<ThroughputTracker>>,
|
||||||
|
|
||||||
|
// ── HTTP request tracking ──
|
||||||
|
total_http_requests: AtomicU64,
|
||||||
|
pending_http_requests: AtomicU64,
|
||||||
|
http_request_throughput: Mutex<ThroughputTracker>,
|
||||||
|
|
||||||
// ── Lock-free pending throughput counters (hot path) ──
|
// ── Lock-free pending throughput counters (hot path) ──
|
||||||
global_pending_tp_in: AtomicU64,
|
global_pending_tp_in: AtomicU64,
|
||||||
global_pending_tp_out: AtomicU64,
|
global_pending_tp_out: AtomicU64,
|
||||||
@@ -94,6 +128,15 @@ impl MetricsCollector {
|
|||||||
route_total_connections: DashMap::new(),
|
route_total_connections: DashMap::new(),
|
||||||
route_bytes_in: DashMap::new(),
|
route_bytes_in: DashMap::new(),
|
||||||
route_bytes_out: DashMap::new(),
|
route_bytes_out: DashMap::new(),
|
||||||
|
ip_connections: DashMap::new(),
|
||||||
|
ip_total_connections: DashMap::new(),
|
||||||
|
ip_bytes_in: DashMap::new(),
|
||||||
|
ip_bytes_out: DashMap::new(),
|
||||||
|
ip_pending_tp: DashMap::new(),
|
||||||
|
ip_throughput: DashMap::new(),
|
||||||
|
total_http_requests: AtomicU64::new(0),
|
||||||
|
pending_http_requests: AtomicU64::new(0),
|
||||||
|
http_request_throughput: Mutex::new(ThroughputTracker::new(retention_seconds)),
|
||||||
global_pending_tp_in: AtomicU64::new(0),
|
global_pending_tp_in: AtomicU64::new(0),
|
||||||
global_pending_tp_out: AtomicU64::new(0),
|
global_pending_tp_out: AtomicU64::new(0),
|
||||||
route_pending_tp: DashMap::new(),
|
route_pending_tp: DashMap::new(),
|
||||||
@@ -104,7 +147,7 @@ impl MetricsCollector {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Record a new connection.
|
/// Record a new connection.
|
||||||
pub fn connection_opened(&self, route_id: Option<&str>) {
|
pub fn connection_opened(&self, route_id: Option<&str>, source_ip: Option<&str>) {
|
||||||
self.active_connections.fetch_add(1, Ordering::Relaxed);
|
self.active_connections.fetch_add(1, Ordering::Relaxed);
|
||||||
self.total_connections.fetch_add(1, Ordering::Relaxed);
|
self.total_connections.fetch_add(1, Ordering::Relaxed);
|
||||||
|
|
||||||
@@ -118,10 +161,21 @@ impl MetricsCollector {
|
|||||||
.or_insert_with(|| AtomicU64::new(0))
|
.or_insert_with(|| AtomicU64::new(0))
|
||||||
.fetch_add(1, Ordering::Relaxed);
|
.fetch_add(1, Ordering::Relaxed);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let Some(ip) = source_ip {
|
||||||
|
self.ip_connections
|
||||||
|
.entry(ip.to_string())
|
||||||
|
.or_insert_with(|| AtomicU64::new(0))
|
||||||
|
.fetch_add(1, Ordering::Relaxed);
|
||||||
|
self.ip_total_connections
|
||||||
|
.entry(ip.to_string())
|
||||||
|
.or_insert_with(|| AtomicU64::new(0))
|
||||||
|
.fetch_add(1, Ordering::Relaxed);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Record a connection closing.
|
/// Record a connection closing.
|
||||||
pub fn connection_closed(&self, route_id: Option<&str>) {
|
pub fn connection_closed(&self, route_id: Option<&str>, source_ip: Option<&str>) {
|
||||||
self.active_connections.fetch_sub(1, Ordering::Relaxed);
|
self.active_connections.fetch_sub(1, Ordering::Relaxed);
|
||||||
|
|
||||||
if let Some(route_id) = route_id {
|
if let Some(route_id) = route_id {
|
||||||
@@ -132,13 +186,33 @@ impl MetricsCollector {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let Some(ip) = source_ip {
|
||||||
|
if let Some(counter) = self.ip_connections.get(ip) {
|
||||||
|
let val = counter.load(Ordering::Relaxed);
|
||||||
|
if val > 0 {
|
||||||
|
counter.fetch_sub(1, Ordering::Relaxed);
|
||||||
|
}
|
||||||
|
// Clean up zero-count entries to prevent memory growth
|
||||||
|
if val <= 1 {
|
||||||
|
drop(counter);
|
||||||
|
self.ip_connections.remove(ip);
|
||||||
|
// Evict all per-IP tracking data for this IP
|
||||||
|
self.ip_total_connections.remove(ip);
|
||||||
|
self.ip_bytes_in.remove(ip);
|
||||||
|
self.ip_bytes_out.remove(ip);
|
||||||
|
self.ip_pending_tp.remove(ip);
|
||||||
|
self.ip_throughput.remove(ip);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Record bytes transferred (lock-free hot path).
|
/// Record bytes transferred (lock-free hot path).
|
||||||
///
|
///
|
||||||
/// Called per-chunk in the TCP copy loop. Only touches AtomicU64 counters —
|
/// Called per-chunk in the TCP copy loop. Only touches AtomicU64 counters —
|
||||||
/// no Mutex is taken. The throughput trackers are fed during `sample_all()`.
|
/// no Mutex is taken. The throughput trackers are fed during `sample_all()`.
|
||||||
pub fn record_bytes(&self, bytes_in: u64, bytes_out: u64, route_id: Option<&str>) {
|
pub fn record_bytes(&self, bytes_in: u64, bytes_out: u64, route_id: Option<&str>, source_ip: Option<&str>) {
|
||||||
self.total_bytes_in.fetch_add(bytes_in, Ordering::Relaxed);
|
self.total_bytes_in.fetch_add(bytes_in, Ordering::Relaxed);
|
||||||
self.total_bytes_out.fetch_add(bytes_out, Ordering::Relaxed);
|
self.total_bytes_out.fetch_add(bytes_out, Ordering::Relaxed);
|
||||||
|
|
||||||
@@ -163,6 +237,30 @@ impl MetricsCollector {
|
|||||||
entry.0.fetch_add(bytes_in, Ordering::Relaxed);
|
entry.0.fetch_add(bytes_in, Ordering::Relaxed);
|
||||||
entry.1.fetch_add(bytes_out, Ordering::Relaxed);
|
entry.1.fetch_add(bytes_out, Ordering::Relaxed);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let Some(ip) = source_ip {
|
||||||
|
self.ip_bytes_in
|
||||||
|
.entry(ip.to_string())
|
||||||
|
.or_insert_with(|| AtomicU64::new(0))
|
||||||
|
.fetch_add(bytes_in, Ordering::Relaxed);
|
||||||
|
self.ip_bytes_out
|
||||||
|
.entry(ip.to_string())
|
||||||
|
.or_insert_with(|| AtomicU64::new(0))
|
||||||
|
.fetch_add(bytes_out, Ordering::Relaxed);
|
||||||
|
|
||||||
|
// Accumulate into per-IP pending throughput counters (lock-free)
|
||||||
|
let entry = self.ip_pending_tp
|
||||||
|
.entry(ip.to_string())
|
||||||
|
.or_insert_with(|| (AtomicU64::new(0), AtomicU64::new(0)));
|
||||||
|
entry.0.fetch_add(bytes_in, Ordering::Relaxed);
|
||||||
|
entry.1.fetch_add(bytes_out, Ordering::Relaxed);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Record an HTTP request (called once per request in the HTTP proxy).
|
||||||
|
pub fn record_http_request(&self) {
|
||||||
|
self.total_http_requests.fetch_add(1, Ordering::Relaxed);
|
||||||
|
self.pending_http_requests.fetch_add(1, Ordering::Relaxed);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Take a throughput sample on all trackers (cold path, call at 1Hz or configured interval).
|
/// Take a throughput sample on all trackers (cold path, call at 1Hz or configured interval).
|
||||||
@@ -213,6 +311,53 @@ impl MetricsCollector {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Drain per-IP pending bytes and feed into IP throughput trackers
|
||||||
|
let mut ip_samples: Vec<(String, u64, u64)> = Vec::new();
|
||||||
|
for entry in self.ip_pending_tp.iter() {
|
||||||
|
let ip = entry.key().clone();
|
||||||
|
let pending_in = entry.value().0.swap(0, Ordering::Relaxed);
|
||||||
|
let pending_out = entry.value().1.swap(0, Ordering::Relaxed);
|
||||||
|
ip_samples.push((ip, pending_in, pending_out));
|
||||||
|
}
|
||||||
|
for (ip, pending_in, pending_out) in &ip_samples {
|
||||||
|
self.ip_throughput
|
||||||
|
.entry(ip.clone())
|
||||||
|
.or_insert_with(|| Mutex::new(ThroughputTracker::new(retention)));
|
||||||
|
if let Some(tracker_ref) = self.ip_throughput.get(ip) {
|
||||||
|
if let Ok(mut tracker) = tracker_ref.value().lock() {
|
||||||
|
tracker.record_bytes(*pending_in, *pending_out);
|
||||||
|
tracker.sample();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Sample idle IP trackers
|
||||||
|
for entry in self.ip_throughput.iter() {
|
||||||
|
if !self.ip_pending_tp.contains_key(entry.key()) {
|
||||||
|
if let Ok(mut tracker) = entry.value().lock() {
|
||||||
|
tracker.sample();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Drain pending HTTP request count and feed into HTTP throughput tracker
|
||||||
|
let pending_reqs = self.pending_http_requests.swap(0, Ordering::Relaxed);
|
||||||
|
if let Ok(mut tracker) = self.http_request_throughput.lock() {
|
||||||
|
// Use bytes_in field to track request count (each request = 1 "byte")
|
||||||
|
tracker.record_bytes(pending_reqs, 0);
|
||||||
|
tracker.sample();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Remove per-route metrics for route IDs that are no longer active.
|
||||||
|
/// Call this after `update_routes()` to prune stale entries.
|
||||||
|
pub fn retain_routes(&self, active_route_ids: &HashSet<String>) {
|
||||||
|
self.route_connections.retain(|k, _| active_route_ids.contains(k));
|
||||||
|
self.route_total_connections.retain(|k, _| active_route_ids.contains(k));
|
||||||
|
self.route_bytes_in.retain(|k, _| active_route_ids.contains(k));
|
||||||
|
self.route_bytes_out.retain(|k, _| active_route_ids.contains(k));
|
||||||
|
self.route_pending_tp.retain(|k, _| active_route_ids.contains(k));
|
||||||
|
self.route_throughput.retain(|k, _| active_route_ids.contains(k));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get current active connection count.
|
/// Get current active connection count.
|
||||||
@@ -235,19 +380,21 @@ impl MetricsCollector {
|
|||||||
self.total_bytes_out.load(Ordering::Relaxed)
|
self.total_bytes_out.load(Ordering::Relaxed)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get a full metrics snapshot including per-route data.
|
/// Get a full metrics snapshot including per-route and per-IP data.
|
||||||
pub fn snapshot(&self) -> Metrics {
|
pub fn snapshot(&self) -> Metrics {
|
||||||
let mut routes = std::collections::HashMap::new();
|
let mut routes = std::collections::HashMap::new();
|
||||||
|
|
||||||
// Get global throughput (instant = last 1 sample, recent = last 10 samples)
|
// Get global throughput (instant = last 1 sample, recent = last 10 samples)
|
||||||
let (global_tp_in, global_tp_out, global_recent_in, global_recent_out) = self.global_throughput
|
let (global_tp_in, global_tp_out, global_recent_in, global_recent_out, throughput_history) =
|
||||||
.lock()
|
self.global_throughput
|
||||||
.map(|t| {
|
.lock()
|
||||||
let (i_in, i_out) = t.instant();
|
.map(|t| {
|
||||||
let (r_in, r_out) = t.recent();
|
let (i_in, i_out) = t.instant();
|
||||||
(i_in, i_out, r_in, r_out)
|
let (r_in, r_out) = t.recent();
|
||||||
})
|
let history = t.history(60);
|
||||||
.unwrap_or((0, 0, 0, 0));
|
(i_in, i_out, r_in, r_out, history)
|
||||||
|
})
|
||||||
|
.unwrap_or((0, 0, 0, 0, Vec::new()));
|
||||||
|
|
||||||
// Collect per-route metrics
|
// Collect per-route metrics
|
||||||
for entry in self.route_total_connections.iter() {
|
for entry in self.route_total_connections.iter() {
|
||||||
@@ -287,6 +434,56 @@ impl MetricsCollector {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Collect per-IP metrics — only IPs with active connections or total > 0,
|
||||||
|
// capped at top MAX_IPS_IN_SNAPSHOT sorted by active count
|
||||||
|
let mut ip_entries: Vec<(String, u64, u64, u64, u64, u64, u64)> = Vec::new();
|
||||||
|
for entry in self.ip_total_connections.iter() {
|
||||||
|
let ip = entry.key().clone();
|
||||||
|
let total = entry.value().load(Ordering::Relaxed);
|
||||||
|
let active = self.ip_connections
|
||||||
|
.get(&ip)
|
||||||
|
.map(|c| c.load(Ordering::Relaxed))
|
||||||
|
.unwrap_or(0);
|
||||||
|
let bytes_in = self.ip_bytes_in
|
||||||
|
.get(&ip)
|
||||||
|
.map(|c| c.load(Ordering::Relaxed))
|
||||||
|
.unwrap_or(0);
|
||||||
|
let bytes_out = self.ip_bytes_out
|
||||||
|
.get(&ip)
|
||||||
|
.map(|c| c.load(Ordering::Relaxed))
|
||||||
|
.unwrap_or(0);
|
||||||
|
let (tp_in, tp_out) = self.ip_throughput
|
||||||
|
.get(&ip)
|
||||||
|
.and_then(|entry| entry.value().lock().ok().map(|t| t.instant()))
|
||||||
|
.unwrap_or((0, 0));
|
||||||
|
ip_entries.push((ip, active, total, bytes_in, bytes_out, tp_in, tp_out));
|
||||||
|
}
|
||||||
|
// Sort by active connections descending, then cap
|
||||||
|
ip_entries.sort_by(|a, b| b.1.cmp(&a.1));
|
||||||
|
ip_entries.truncate(MAX_IPS_IN_SNAPSHOT);
|
||||||
|
|
||||||
|
let mut ips = std::collections::HashMap::new();
|
||||||
|
for (ip, active, total, bytes_in, bytes_out, tp_in, tp_out) in ip_entries {
|
||||||
|
ips.insert(ip, IpMetrics {
|
||||||
|
active_connections: active,
|
||||||
|
total_connections: total,
|
||||||
|
bytes_in,
|
||||||
|
bytes_out,
|
||||||
|
throughput_in_bytes_per_sec: tp_in,
|
||||||
|
throughput_out_bytes_per_sec: tp_out,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// HTTP request rates
|
||||||
|
let (http_rps, http_rps_recent) = self.http_request_throughput
|
||||||
|
.lock()
|
||||||
|
.map(|t| {
|
||||||
|
let (instant, _) = t.instant();
|
||||||
|
let (recent, _) = t.recent();
|
||||||
|
(instant, recent)
|
||||||
|
})
|
||||||
|
.unwrap_or((0, 0));
|
||||||
|
|
||||||
Metrics {
|
Metrics {
|
||||||
active_connections: self.active_connections(),
|
active_connections: self.active_connections(),
|
||||||
total_connections: self.total_connections(),
|
total_connections: self.total_connections(),
|
||||||
@@ -297,6 +494,11 @@ impl MetricsCollector {
|
|||||||
throughput_recent_in_bytes_per_sec: global_recent_in,
|
throughput_recent_in_bytes_per_sec: global_recent_in,
|
||||||
throughput_recent_out_bytes_per_sec: global_recent_out,
|
throughput_recent_out_bytes_per_sec: global_recent_out,
|
||||||
routes,
|
routes,
|
||||||
|
ips,
|
||||||
|
throughput_history,
|
||||||
|
total_http_requests: self.total_http_requests.load(Ordering::Relaxed),
|
||||||
|
http_requests_per_sec: http_rps,
|
||||||
|
http_requests_per_sec_recent: http_rps_recent,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -321,10 +523,10 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_connection_opened_increments() {
|
fn test_connection_opened_increments() {
|
||||||
let collector = MetricsCollector::new();
|
let collector = MetricsCollector::new();
|
||||||
collector.connection_opened(None);
|
collector.connection_opened(None, None);
|
||||||
assert_eq!(collector.active_connections(), 1);
|
assert_eq!(collector.active_connections(), 1);
|
||||||
assert_eq!(collector.total_connections(), 1);
|
assert_eq!(collector.total_connections(), 1);
|
||||||
collector.connection_opened(None);
|
collector.connection_opened(None, None);
|
||||||
assert_eq!(collector.active_connections(), 2);
|
assert_eq!(collector.active_connections(), 2);
|
||||||
assert_eq!(collector.total_connections(), 2);
|
assert_eq!(collector.total_connections(), 2);
|
||||||
}
|
}
|
||||||
@@ -332,10 +534,10 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_connection_closed_decrements() {
|
fn test_connection_closed_decrements() {
|
||||||
let collector = MetricsCollector::new();
|
let collector = MetricsCollector::new();
|
||||||
collector.connection_opened(None);
|
collector.connection_opened(None, None);
|
||||||
collector.connection_opened(None);
|
collector.connection_opened(None, None);
|
||||||
assert_eq!(collector.active_connections(), 2);
|
assert_eq!(collector.active_connections(), 2);
|
||||||
collector.connection_closed(None);
|
collector.connection_closed(None, None);
|
||||||
assert_eq!(collector.active_connections(), 1);
|
assert_eq!(collector.active_connections(), 1);
|
||||||
// total_connections should stay at 2
|
// total_connections should stay at 2
|
||||||
assert_eq!(collector.total_connections(), 2);
|
assert_eq!(collector.total_connections(), 2);
|
||||||
@@ -344,23 +546,23 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_route_specific_tracking() {
|
fn test_route_specific_tracking() {
|
||||||
let collector = MetricsCollector::new();
|
let collector = MetricsCollector::new();
|
||||||
collector.connection_opened(Some("route-a"));
|
collector.connection_opened(Some("route-a"), None);
|
||||||
collector.connection_opened(Some("route-a"));
|
collector.connection_opened(Some("route-a"), None);
|
||||||
collector.connection_opened(Some("route-b"));
|
collector.connection_opened(Some("route-b"), None);
|
||||||
|
|
||||||
assert_eq!(collector.active_connections(), 3);
|
assert_eq!(collector.active_connections(), 3);
|
||||||
assert_eq!(collector.total_connections(), 3);
|
assert_eq!(collector.total_connections(), 3);
|
||||||
|
|
||||||
collector.connection_closed(Some("route-a"));
|
collector.connection_closed(Some("route-a"), None);
|
||||||
assert_eq!(collector.active_connections(), 2);
|
assert_eq!(collector.active_connections(), 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_record_bytes() {
|
fn test_record_bytes() {
|
||||||
let collector = MetricsCollector::new();
|
let collector = MetricsCollector::new();
|
||||||
collector.record_bytes(100, 200, Some("route-a"));
|
collector.record_bytes(100, 200, Some("route-a"), None);
|
||||||
collector.record_bytes(50, 75, Some("route-a"));
|
collector.record_bytes(50, 75, Some("route-a"), None);
|
||||||
collector.record_bytes(25, 30, None);
|
collector.record_bytes(25, 30, None, None);
|
||||||
|
|
||||||
let total_in = collector.total_bytes_in.load(Ordering::Relaxed);
|
let total_in = collector.total_bytes_in.load(Ordering::Relaxed);
|
||||||
let total_out = collector.total_bytes_out.load(Ordering::Relaxed);
|
let total_out = collector.total_bytes_out.load(Ordering::Relaxed);
|
||||||
@@ -377,11 +579,11 @@ mod tests {
|
|||||||
let collector = MetricsCollector::with_retention(60);
|
let collector = MetricsCollector::with_retention(60);
|
||||||
|
|
||||||
// Open a connection so the route appears in the snapshot
|
// Open a connection so the route appears in the snapshot
|
||||||
collector.connection_opened(Some("route-a"));
|
collector.connection_opened(Some("route-a"), None);
|
||||||
|
|
||||||
// Record some bytes
|
// Record some bytes
|
||||||
collector.record_bytes(1000, 2000, Some("route-a"));
|
collector.record_bytes(1000, 2000, Some("route-a"), None);
|
||||||
collector.record_bytes(500, 750, None);
|
collector.record_bytes(500, 750, None, None);
|
||||||
|
|
||||||
// Take a sample (simulates the 1Hz tick)
|
// Take a sample (simulates the 1Hz tick)
|
||||||
collector.sample_all();
|
collector.sample_all();
|
||||||
@@ -400,11 +602,150 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_throughput_zero_before_sampling() {
|
fn test_throughput_zero_before_sampling() {
|
||||||
let collector = MetricsCollector::with_retention(60);
|
let collector = MetricsCollector::with_retention(60);
|
||||||
collector.record_bytes(1000, 2000, None);
|
collector.record_bytes(1000, 2000, None, None);
|
||||||
|
|
||||||
// Without sampling, throughput should be 0
|
// Without sampling, throughput should be 0
|
||||||
let snapshot = collector.snapshot();
|
let snapshot = collector.snapshot();
|
||||||
assert_eq!(snapshot.throughput_in_bytes_per_sec, 0);
|
assert_eq!(snapshot.throughput_in_bytes_per_sec, 0);
|
||||||
assert_eq!(snapshot.throughput_out_bytes_per_sec, 0);
|
assert_eq!(snapshot.throughput_out_bytes_per_sec, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_per_ip_tracking() {
|
||||||
|
let collector = MetricsCollector::with_retention(60);
|
||||||
|
|
||||||
|
collector.connection_opened(Some("route-a"), Some("1.2.3.4"));
|
||||||
|
collector.connection_opened(Some("route-a"), Some("1.2.3.4"));
|
||||||
|
collector.connection_opened(Some("route-b"), Some("5.6.7.8"));
|
||||||
|
|
||||||
|
// Check IP active connections (drop DashMap refs immediately to avoid deadlock)
|
||||||
|
assert_eq!(
|
||||||
|
collector.ip_connections.get("1.2.3.4").unwrap().load(Ordering::Relaxed),
|
||||||
|
2
|
||||||
|
);
|
||||||
|
assert_eq!(
|
||||||
|
collector.ip_connections.get("5.6.7.8").unwrap().load(Ordering::Relaxed),
|
||||||
|
1
|
||||||
|
);
|
||||||
|
|
||||||
|
// Record bytes per IP
|
||||||
|
collector.record_bytes(100, 200, Some("route-a"), Some("1.2.3.4"));
|
||||||
|
collector.record_bytes(300, 400, Some("route-b"), Some("5.6.7.8"));
|
||||||
|
collector.sample_all();
|
||||||
|
|
||||||
|
let snapshot = collector.snapshot();
|
||||||
|
assert_eq!(snapshot.ips.len(), 2);
|
||||||
|
let ip1_metrics = snapshot.ips.get("1.2.3.4").unwrap();
|
||||||
|
assert_eq!(ip1_metrics.active_connections, 2);
|
||||||
|
assert_eq!(ip1_metrics.bytes_in, 100);
|
||||||
|
|
||||||
|
// Close connections
|
||||||
|
collector.connection_closed(Some("route-a"), Some("1.2.3.4"));
|
||||||
|
assert_eq!(
|
||||||
|
collector.ip_connections.get("1.2.3.4").unwrap().load(Ordering::Relaxed),
|
||||||
|
1
|
||||||
|
);
|
||||||
|
|
||||||
|
// Close last connection for IP — should be cleaned up
|
||||||
|
collector.connection_closed(Some("route-a"), Some("1.2.3.4"));
|
||||||
|
assert!(collector.ip_connections.get("1.2.3.4").is_none());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_per_ip_full_eviction_on_last_close() {
|
||||||
|
let collector = MetricsCollector::with_retention(60);
|
||||||
|
|
||||||
|
// Open connections from two IPs
|
||||||
|
collector.connection_opened(Some("route-a"), Some("10.0.0.1"));
|
||||||
|
collector.connection_opened(Some("route-a"), Some("10.0.0.1"));
|
||||||
|
collector.connection_opened(Some("route-b"), Some("10.0.0.2"));
|
||||||
|
|
||||||
|
// Record bytes to populate per-IP DashMaps
|
||||||
|
collector.record_bytes(100, 200, Some("route-a"), Some("10.0.0.1"));
|
||||||
|
collector.record_bytes(300, 400, Some("route-b"), Some("10.0.0.2"));
|
||||||
|
collector.sample_all();
|
||||||
|
|
||||||
|
// Verify per-IP data exists
|
||||||
|
assert!(collector.ip_total_connections.get("10.0.0.1").is_some());
|
||||||
|
assert!(collector.ip_bytes_in.get("10.0.0.1").is_some());
|
||||||
|
assert!(collector.ip_throughput.get("10.0.0.1").is_some());
|
||||||
|
|
||||||
|
// Close all connections for 10.0.0.1
|
||||||
|
collector.connection_closed(Some("route-a"), Some("10.0.0.1"));
|
||||||
|
collector.connection_closed(Some("route-a"), Some("10.0.0.1"));
|
||||||
|
|
||||||
|
// All per-IP data for 10.0.0.1 should be evicted
|
||||||
|
assert!(collector.ip_connections.get("10.0.0.1").is_none());
|
||||||
|
assert!(collector.ip_total_connections.get("10.0.0.1").is_none());
|
||||||
|
assert!(collector.ip_bytes_in.get("10.0.0.1").is_none());
|
||||||
|
assert!(collector.ip_bytes_out.get("10.0.0.1").is_none());
|
||||||
|
assert!(collector.ip_pending_tp.get("10.0.0.1").is_none());
|
||||||
|
assert!(collector.ip_throughput.get("10.0.0.1").is_none());
|
||||||
|
|
||||||
|
// 10.0.0.2 should still have data
|
||||||
|
assert!(collector.ip_connections.get("10.0.0.2").is_some());
|
||||||
|
assert!(collector.ip_total_connections.get("10.0.0.2").is_some());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_http_request_tracking() {
|
||||||
|
let collector = MetricsCollector::with_retention(60);
|
||||||
|
|
||||||
|
collector.record_http_request();
|
||||||
|
collector.record_http_request();
|
||||||
|
collector.record_http_request();
|
||||||
|
|
||||||
|
assert_eq!(collector.total_http_requests.load(Ordering::Relaxed), 3);
|
||||||
|
|
||||||
|
collector.sample_all();
|
||||||
|
|
||||||
|
let snapshot = collector.snapshot();
|
||||||
|
assert_eq!(snapshot.total_http_requests, 3);
|
||||||
|
assert_eq!(snapshot.http_requests_per_sec, 3);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_retain_routes_prunes_stale() {
|
||||||
|
let collector = MetricsCollector::with_retention(60);
|
||||||
|
|
||||||
|
// Create metrics for 3 routes
|
||||||
|
collector.connection_opened(Some("route-a"), None);
|
||||||
|
collector.connection_opened(Some("route-b"), None);
|
||||||
|
collector.connection_opened(Some("route-c"), None);
|
||||||
|
collector.record_bytes(100, 200, Some("route-a"), None);
|
||||||
|
collector.record_bytes(100, 200, Some("route-b"), None);
|
||||||
|
collector.record_bytes(100, 200, Some("route-c"), None);
|
||||||
|
collector.sample_all();
|
||||||
|
|
||||||
|
// Now "route-b" is removed from config
|
||||||
|
let active = HashSet::from(["route-a".to_string(), "route-c".to_string()]);
|
||||||
|
collector.retain_routes(&active);
|
||||||
|
|
||||||
|
// route-b entries should be gone
|
||||||
|
assert!(collector.route_connections.get("route-b").is_none());
|
||||||
|
assert!(collector.route_total_connections.get("route-b").is_none());
|
||||||
|
assert!(collector.route_bytes_in.get("route-b").is_none());
|
||||||
|
assert!(collector.route_bytes_out.get("route-b").is_none());
|
||||||
|
assert!(collector.route_throughput.get("route-b").is_none());
|
||||||
|
|
||||||
|
// route-a and route-c should still exist
|
||||||
|
assert!(collector.route_total_connections.get("route-a").is_some());
|
||||||
|
assert!(collector.route_total_connections.get("route-c").is_some());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_throughput_history_in_snapshot() {
|
||||||
|
let collector = MetricsCollector::with_retention(60);
|
||||||
|
|
||||||
|
for i in 1..=5 {
|
||||||
|
collector.record_bytes(i * 100, i * 200, None, None);
|
||||||
|
collector.sample_all();
|
||||||
|
}
|
||||||
|
|
||||||
|
let snapshot = collector.snapshot();
|
||||||
|
assert_eq!(snapshot.throughput_history.len(), 5);
|
||||||
|
// History should be chronological (oldest first)
|
||||||
|
assert_eq!(snapshot.throughput_history[0].bytes_in, 100);
|
||||||
|
assert_eq!(snapshot.throughput_history[4].bytes_in, 500);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
|
use serde::{Deserialize, Serialize};
|
||||||
use std::sync::atomic::{AtomicU64, Ordering};
|
use std::sync::atomic::{AtomicU64, Ordering};
|
||||||
use std::time::{Instant, SystemTime, UNIX_EPOCH};
|
use std::time::{Instant, SystemTime, UNIX_EPOCH};
|
||||||
|
|
||||||
/// A single throughput sample.
|
/// A single throughput sample.
|
||||||
#[derive(Debug, Clone, Copy)]
|
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
|
||||||
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct ThroughputSample {
|
pub struct ThroughputSample {
|
||||||
pub timestamp_ms: u64,
|
pub timestamp_ms: u64,
|
||||||
pub bytes_in: u64,
|
pub bytes_in: u64,
|
||||||
@@ -106,6 +108,27 @@ impl ThroughputTracker {
|
|||||||
self.throughput(10)
|
self.throughput(10)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Return the last N samples in chronological order (oldest first).
|
||||||
|
pub fn history(&self, window_seconds: usize) -> Vec<ThroughputSample> {
|
||||||
|
let window = window_seconds.min(self.count);
|
||||||
|
if window == 0 {
|
||||||
|
return Vec::new();
|
||||||
|
}
|
||||||
|
let mut result = Vec::with_capacity(window);
|
||||||
|
for i in 0..window {
|
||||||
|
let idx = if self.write_index >= i + 1 {
|
||||||
|
self.write_index - i - 1
|
||||||
|
} else {
|
||||||
|
self.capacity - (i + 1 - self.write_index)
|
||||||
|
};
|
||||||
|
if idx < self.samples.len() {
|
||||||
|
result.push(self.samples[idx]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
result.reverse(); // Return oldest-first (chronological)
|
||||||
|
result
|
||||||
|
}
|
||||||
|
|
||||||
/// How long this tracker has been alive.
|
/// How long this tracker has been alive.
|
||||||
pub fn uptime(&self) -> std::time::Duration {
|
pub fn uptime(&self) -> std::time::Duration {
|
||||||
self.created_at.elapsed()
|
self.created_at.elapsed()
|
||||||
@@ -170,4 +193,40 @@ mod tests {
|
|||||||
std::thread::sleep(std::time::Duration::from_millis(10));
|
std::thread::sleep(std::time::Duration::from_millis(10));
|
||||||
assert!(tracker.uptime().as_millis() >= 10);
|
assert!(tracker.uptime().as_millis() >= 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_history_returns_chronological() {
|
||||||
|
let mut tracker = ThroughputTracker::new(60);
|
||||||
|
for i in 1..=5 {
|
||||||
|
tracker.record_bytes(i * 100, i * 200);
|
||||||
|
tracker.sample();
|
||||||
|
}
|
||||||
|
let history = tracker.history(5);
|
||||||
|
assert_eq!(history.len(), 5);
|
||||||
|
// First sample should have 100 bytes_in, last should have 500
|
||||||
|
assert_eq!(history[0].bytes_in, 100);
|
||||||
|
assert_eq!(history[4].bytes_in, 500);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_history_wraps_around() {
|
||||||
|
let mut tracker = ThroughputTracker::new(3); // Small capacity
|
||||||
|
for i in 1..=5 {
|
||||||
|
tracker.record_bytes(i * 100, i * 200);
|
||||||
|
tracker.sample();
|
||||||
|
}
|
||||||
|
// Only last 3 should be retained
|
||||||
|
let history = tracker.history(10); // Ask for more than available
|
||||||
|
assert_eq!(history.len(), 3);
|
||||||
|
assert_eq!(history[0].bytes_in, 300);
|
||||||
|
assert_eq!(history[1].bytes_in, 400);
|
||||||
|
assert_eq!(history[2].bytes_in, 500);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_history_empty() {
|
||||||
|
let tracker = ThroughputTracker::new(60);
|
||||||
|
let history = tracker.history(10);
|
||||||
|
assert!(history.is_empty());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -95,10 +95,11 @@ impl ConnectionTracker {
|
|||||||
pub fn connection_closed(&self, ip: &IpAddr) {
|
pub fn connection_closed(&self, ip: &IpAddr) {
|
||||||
if let Some(counter) = self.active.get(ip) {
|
if let Some(counter) = self.active.get(ip) {
|
||||||
let prev = counter.value().fetch_sub(1, Ordering::Relaxed);
|
let prev = counter.value().fetch_sub(1, Ordering::Relaxed);
|
||||||
// Clean up zero entries
|
// Clean up zero entries to prevent memory growth
|
||||||
if prev <= 1 {
|
if prev <= 1 {
|
||||||
drop(counter);
|
drop(counter);
|
||||||
self.active.remove(ip);
|
self.active.remove(ip);
|
||||||
|
self.timestamps.remove(ip);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -205,10 +206,13 @@ impl ConnectionTracker {
|
|||||||
let zombies = tracker.scan_zombies();
|
let zombies = tracker.scan_zombies();
|
||||||
if !zombies.is_empty() {
|
if !zombies.is_empty() {
|
||||||
warn!(
|
warn!(
|
||||||
"Detected {} zombie connection(s): {:?}",
|
"Cleaning up {} zombie connection(s): {:?}",
|
||||||
zombies.len(),
|
zombies.len(),
|
||||||
zombies
|
zombies
|
||||||
);
|
);
|
||||||
|
for id in &zombies {
|
||||||
|
tracker.unregister_connection(*id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -304,6 +308,30 @@ mod tests {
|
|||||||
assert_eq!(tracker.tracked_ips(), 1);
|
assert_eq!(tracker.tracked_ips(), 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_timestamps_cleaned_on_last_close() {
|
||||||
|
let tracker = ConnectionTracker::new(None, Some(100));
|
||||||
|
let ip: IpAddr = "10.0.0.1".parse().unwrap();
|
||||||
|
|
||||||
|
// try_accept populates the timestamps map (when rate limiting is enabled)
|
||||||
|
assert!(tracker.try_accept(&ip));
|
||||||
|
tracker.connection_opened(&ip);
|
||||||
|
assert!(tracker.try_accept(&ip));
|
||||||
|
tracker.connection_opened(&ip);
|
||||||
|
|
||||||
|
// Timestamps should exist
|
||||||
|
assert!(tracker.timestamps.get(&ip).is_some());
|
||||||
|
|
||||||
|
// Close one connection — timestamps should still exist
|
||||||
|
tracker.connection_closed(&ip);
|
||||||
|
assert!(tracker.timestamps.get(&ip).is_some());
|
||||||
|
|
||||||
|
// Close last connection — timestamps should be cleaned up
|
||||||
|
tracker.connection_closed(&ip);
|
||||||
|
assert!(tracker.timestamps.get(&ip).is_none());
|
||||||
|
assert!(tracker.active.get(&ip).is_none());
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_register_unregister_connection() {
|
fn test_register_unregister_connection() {
|
||||||
let tracker = ConnectionTracker::new(None, None);
|
let tracker = ConnectionTracker::new(None, None);
|
||||||
|
|||||||
@@ -7,6 +7,14 @@ use tracing::debug;
|
|||||||
|
|
||||||
use rustproxy_metrics::MetricsCollector;
|
use rustproxy_metrics::MetricsCollector;
|
||||||
|
|
||||||
|
/// Context for forwarding metrics, replacing the growing tuple pattern.
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct ForwardMetricsCtx {
|
||||||
|
pub collector: Arc<MetricsCollector>,
|
||||||
|
pub route_id: Option<String>,
|
||||||
|
pub source_ip: Option<String>,
|
||||||
|
}
|
||||||
|
|
||||||
/// Perform bidirectional TCP forwarding between client and backend.
|
/// Perform bidirectional TCP forwarding between client and backend.
|
||||||
///
|
///
|
||||||
/// This is the core data path for passthrough connections.
|
/// This is the core data path for passthrough connections.
|
||||||
@@ -73,13 +81,13 @@ pub async fn forward_bidirectional_with_timeouts(
|
|||||||
inactivity_timeout: std::time::Duration,
|
inactivity_timeout: std::time::Duration,
|
||||||
max_lifetime: std::time::Duration,
|
max_lifetime: std::time::Duration,
|
||||||
cancel: CancellationToken,
|
cancel: CancellationToken,
|
||||||
metrics: Option<(Arc<MetricsCollector>, Option<String>)>,
|
metrics: Option<ForwardMetricsCtx>,
|
||||||
) -> std::io::Result<(u64, u64)> {
|
) -> std::io::Result<(u64, u64)> {
|
||||||
// Send initial data (peeked bytes) to backend
|
// Send initial data (peeked bytes) to backend
|
||||||
if let Some(data) = initial_data {
|
if let Some(data) = initial_data {
|
||||||
backend.write_all(data).await?;
|
backend.write_all(data).await?;
|
||||||
if let Some((ref m, ref rid)) = metrics {
|
if let Some(ref ctx) = metrics {
|
||||||
m.record_bytes(data.len() as u64, 0, rid.as_deref());
|
ctx.collector.record_bytes(data.len() as u64, 0, ctx.route_id.as_deref(), ctx.source_ip.as_deref());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -105,8 +113,8 @@ pub async fn forward_bidirectional_with_timeouts(
|
|||||||
}
|
}
|
||||||
total += n as u64;
|
total += n as u64;
|
||||||
la1.store(start.elapsed().as_millis() as u64, Ordering::Relaxed);
|
la1.store(start.elapsed().as_millis() as u64, Ordering::Relaxed);
|
||||||
if let Some((ref m, ref rid)) = metrics_c2b {
|
if let Some(ref ctx) = metrics_c2b {
|
||||||
m.record_bytes(n as u64, 0, rid.as_deref());
|
ctx.collector.record_bytes(n as u64, 0, ctx.route_id.as_deref(), ctx.source_ip.as_deref());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let _ = backend_write.shutdown().await;
|
let _ = backend_write.shutdown().await;
|
||||||
@@ -128,8 +136,8 @@ pub async fn forward_bidirectional_with_timeouts(
|
|||||||
}
|
}
|
||||||
total += n as u64;
|
total += n as u64;
|
||||||
la2.store(start.elapsed().as_millis() as u64, Ordering::Relaxed);
|
la2.store(start.elapsed().as_millis() as u64, Ordering::Relaxed);
|
||||||
if let Some((ref m, ref rid)) = metrics_b2c {
|
if let Some(ref ctx) = metrics_b2c {
|
||||||
m.record_bytes(0, n as u64, rid.as_deref());
|
ctx.collector.record_bytes(0, n as u64, ctx.route_id.as_deref(), ctx.source_ip.as_deref());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let _ = client_write.shutdown().await;
|
let _ = client_write.shutdown().await;
|
||||||
@@ -182,4 +190,3 @@ pub async fn forward_bidirectional_with_timeouts(
|
|||||||
watchdog.abort();
|
watchdog.abort();
|
||||||
Ok((bytes_in, bytes_out))
|
Ok((bytes_in, bytes_out))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use std::collections::HashMap;
|
|||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use arc_swap::ArcSwap;
|
use arc_swap::ArcSwap;
|
||||||
use tokio::net::TcpListener;
|
use tokio::net::TcpListener;
|
||||||
|
use tokio_rustls::TlsAcceptor;
|
||||||
use tokio_util::sync::CancellationToken;
|
use tokio_util::sync::CancellationToken;
|
||||||
use tracing::{info, error, debug, warn};
|
use tracing::{info, error, debug, warn};
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
@@ -20,30 +21,22 @@ use crate::connection_tracker::ConnectionTracker;
|
|||||||
struct ConnectionGuard {
|
struct ConnectionGuard {
|
||||||
metrics: Arc<MetricsCollector>,
|
metrics: Arc<MetricsCollector>,
|
||||||
route_id: Option<String>,
|
route_id: Option<String>,
|
||||||
disarmed: bool,
|
source_ip: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ConnectionGuard {
|
impl ConnectionGuard {
|
||||||
fn new(metrics: Arc<MetricsCollector>, route_id: Option<&str>) -> Self {
|
fn new(metrics: Arc<MetricsCollector>, route_id: Option<&str>, source_ip: Option<&str>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
metrics,
|
metrics,
|
||||||
route_id: route_id.map(|s| s.to_string()),
|
route_id: route_id.map(|s| s.to_string()),
|
||||||
disarmed: false,
|
source_ip: source_ip.map(|s| s.to_string()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Disarm the guard — prevents the Drop from running.
|
|
||||||
/// Use when handing off to a path that manages its own cleanup (e.g., HTTP proxy).
|
|
||||||
fn disarm(mut self) {
|
|
||||||
self.disarmed = true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Drop for ConnectionGuard {
|
impl Drop for ConnectionGuard {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
if !self.disarmed {
|
self.metrics.connection_closed(self.route_id.as_deref(), self.source_ip.as_deref());
|
||||||
self.metrics.connection_closed(self.route_id.as_deref());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -120,8 +113,10 @@ pub struct TcpListenerManager {
|
|||||||
route_manager: Arc<ArcSwap<RouteManager>>,
|
route_manager: Arc<ArcSwap<RouteManager>>,
|
||||||
/// Shared metrics collector
|
/// Shared metrics collector
|
||||||
metrics: Arc<MetricsCollector>,
|
metrics: Arc<MetricsCollector>,
|
||||||
/// TLS acceptors indexed by domain (ArcSwap for hot-reload visibility in accept loops)
|
/// Raw PEM TLS configs indexed by domain (kept for fallback with custom TLS versions)
|
||||||
tls_configs: Arc<ArcSwap<HashMap<String, TlsCertConfig>>>,
|
tls_configs: Arc<ArcSwap<HashMap<String, TlsCertConfig>>>,
|
||||||
|
/// Shared TLS acceptor (pre-parsed certs + session cache). None when no certs configured.
|
||||||
|
shared_tls_acceptor: Arc<ArcSwap<Option<TlsAcceptor>>>,
|
||||||
/// HTTP proxy service for HTTP-level forwarding
|
/// HTTP proxy service for HTTP-level forwarding
|
||||||
http_proxy: Arc<HttpProxyService>,
|
http_proxy: Arc<HttpProxyService>,
|
||||||
/// Connection configuration
|
/// Connection configuration
|
||||||
@@ -152,6 +147,7 @@ impl TcpListenerManager {
|
|||||||
route_manager: Arc::new(ArcSwap::from(route_manager)),
|
route_manager: Arc::new(ArcSwap::from(route_manager)),
|
||||||
metrics,
|
metrics,
|
||||||
tls_configs: Arc::new(ArcSwap::from(Arc::new(HashMap::new()))),
|
tls_configs: Arc::new(ArcSwap::from(Arc::new(HashMap::new()))),
|
||||||
|
shared_tls_acceptor: Arc::new(ArcSwap::from(Arc::new(None))),
|
||||||
http_proxy,
|
http_proxy,
|
||||||
conn_config: Arc::new(conn_config),
|
conn_config: Arc::new(conn_config),
|
||||||
conn_tracker,
|
conn_tracker,
|
||||||
@@ -177,6 +173,7 @@ impl TcpListenerManager {
|
|||||||
route_manager: Arc::new(ArcSwap::from(route_manager)),
|
route_manager: Arc::new(ArcSwap::from(route_manager)),
|
||||||
metrics,
|
metrics,
|
||||||
tls_configs: Arc::new(ArcSwap::from(Arc::new(HashMap::new()))),
|
tls_configs: Arc::new(ArcSwap::from(Arc::new(HashMap::new()))),
|
||||||
|
shared_tls_acceptor: Arc::new(ArcSwap::from(Arc::new(None))),
|
||||||
http_proxy,
|
http_proxy,
|
||||||
conn_config: Arc::new(conn_config),
|
conn_config: Arc::new(conn_config),
|
||||||
conn_tracker,
|
conn_tracker,
|
||||||
@@ -195,8 +192,26 @@ impl TcpListenerManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Set TLS certificate configurations.
|
/// Set TLS certificate configurations.
|
||||||
|
/// Builds a shared TLS acceptor with pre-parsed certs and session resumption support.
|
||||||
/// Uses ArcSwap so running accept loops immediately see the new certs.
|
/// Uses ArcSwap so running accept loops immediately see the new certs.
|
||||||
pub fn set_tls_configs(&self, configs: HashMap<String, TlsCertConfig>) {
|
pub fn set_tls_configs(&self, configs: HashMap<String, TlsCertConfig>) {
|
||||||
|
if !configs.is_empty() {
|
||||||
|
match tls_handler::CertResolver::new(&configs)
|
||||||
|
.and_then(tls_handler::build_shared_tls_acceptor)
|
||||||
|
{
|
||||||
|
Ok(acceptor) => {
|
||||||
|
info!("Built shared TLS acceptor for {} domain(s)", configs.len());
|
||||||
|
self.shared_tls_acceptor.store(Arc::new(Some(acceptor)));
|
||||||
|
}
|
||||||
|
Err(e) => {
|
||||||
|
warn!("Failed to build shared TLS acceptor: {}, falling back to per-connection", e);
|
||||||
|
self.shared_tls_acceptor.store(Arc::new(None));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
self.shared_tls_acceptor.store(Arc::new(None));
|
||||||
|
}
|
||||||
|
// Keep raw PEM configs for fallback (routes with custom TLS versions)
|
||||||
self.tls_configs.store(Arc::new(configs));
|
self.tls_configs.store(Arc::new(configs));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -222,6 +237,7 @@ impl TcpListenerManager {
|
|||||||
let route_manager_swap = Arc::clone(&self.route_manager);
|
let route_manager_swap = Arc::clone(&self.route_manager);
|
||||||
let metrics = Arc::clone(&self.metrics);
|
let metrics = Arc::clone(&self.metrics);
|
||||||
let tls_configs = Arc::clone(&self.tls_configs);
|
let tls_configs = Arc::clone(&self.tls_configs);
|
||||||
|
let shared_tls_acceptor = Arc::clone(&self.shared_tls_acceptor);
|
||||||
let http_proxy = Arc::clone(&self.http_proxy);
|
let http_proxy = Arc::clone(&self.http_proxy);
|
||||||
let conn_config = Arc::clone(&self.conn_config);
|
let conn_config = Arc::clone(&self.conn_config);
|
||||||
let conn_tracker = Arc::clone(&self.conn_tracker);
|
let conn_tracker = Arc::clone(&self.conn_tracker);
|
||||||
@@ -231,7 +247,7 @@ impl TcpListenerManager {
|
|||||||
let handle = tokio::spawn(async move {
|
let handle = tokio::spawn(async move {
|
||||||
Self::accept_loop(
|
Self::accept_loop(
|
||||||
listener, port, route_manager_swap, metrics, tls_configs,
|
listener, port, route_manager_swap, metrics, tls_configs,
|
||||||
http_proxy, conn_config, conn_tracker, cancel, relay,
|
shared_tls_acceptor, http_proxy, conn_config, conn_tracker, cancel, relay,
|
||||||
).await;
|
).await;
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -320,6 +336,7 @@ impl TcpListenerManager {
|
|||||||
route_manager_swap: Arc<ArcSwap<RouteManager>>,
|
route_manager_swap: Arc<ArcSwap<RouteManager>>,
|
||||||
metrics: Arc<MetricsCollector>,
|
metrics: Arc<MetricsCollector>,
|
||||||
tls_configs: Arc<ArcSwap<HashMap<String, TlsCertConfig>>>,
|
tls_configs: Arc<ArcSwap<HashMap<String, TlsCertConfig>>>,
|
||||||
|
shared_tls_acceptor: Arc<ArcSwap<Option<TlsAcceptor>>>,
|
||||||
http_proxy: Arc<HttpProxyService>,
|
http_proxy: Arc<HttpProxyService>,
|
||||||
conn_config: Arc<ConnectionConfig>,
|
conn_config: Arc<ConnectionConfig>,
|
||||||
conn_tracker: Arc<ConnectionTracker>,
|
conn_tracker: Arc<ConnectionTracker>,
|
||||||
@@ -351,6 +368,8 @@ impl TcpListenerManager {
|
|||||||
let m = Arc::clone(&metrics);
|
let m = Arc::clone(&metrics);
|
||||||
// Load the latest TLS configs from ArcSwap on each connection
|
// Load the latest TLS configs from ArcSwap on each connection
|
||||||
let tc = tls_configs.load_full();
|
let tc = tls_configs.load_full();
|
||||||
|
// Load the latest shared TLS acceptor from ArcSwap
|
||||||
|
let sa = shared_tls_acceptor.load_full();
|
||||||
let hp = Arc::clone(&http_proxy);
|
let hp = Arc::clone(&http_proxy);
|
||||||
let cc = Arc::clone(&conn_config);
|
let cc = Arc::clone(&conn_config);
|
||||||
let ct = Arc::clone(&conn_tracker);
|
let ct = Arc::clone(&conn_tracker);
|
||||||
@@ -360,7 +379,7 @@ impl TcpListenerManager {
|
|||||||
|
|
||||||
tokio::spawn(async move {
|
tokio::spawn(async move {
|
||||||
let result = Self::handle_connection(
|
let result = Self::handle_connection(
|
||||||
stream, port, peer_addr, rm, m, tc, hp, cc, cn, sr,
|
stream, port, peer_addr, rm, m, tc, sa, hp, cc, cn, sr,
|
||||||
).await;
|
).await;
|
||||||
if let Err(e) = result {
|
if let Err(e) = result {
|
||||||
debug!("Connection error from {}: {}", peer_addr, e);
|
debug!("Connection error from {}: {}", peer_addr, e);
|
||||||
@@ -386,6 +405,7 @@ impl TcpListenerManager {
|
|||||||
route_manager: Arc<RouteManager>,
|
route_manager: Arc<RouteManager>,
|
||||||
metrics: Arc<MetricsCollector>,
|
metrics: Arc<MetricsCollector>,
|
||||||
tls_configs: Arc<HashMap<String, TlsCertConfig>>,
|
tls_configs: Arc<HashMap<String, TlsCertConfig>>,
|
||||||
|
shared_tls_acceptor: Arc<Option<TlsAcceptor>>,
|
||||||
http_proxy: Arc<HttpProxyService>,
|
http_proxy: Arc<HttpProxyService>,
|
||||||
conn_config: Arc<ConnectionConfig>,
|
conn_config: Arc<ConnectionConfig>,
|
||||||
cancel: CancellationToken,
|
cancel: CancellationToken,
|
||||||
@@ -395,6 +415,9 @@ impl TcpListenerManager {
|
|||||||
|
|
||||||
stream.set_nodelay(true)?;
|
stream.set_nodelay(true)?;
|
||||||
|
|
||||||
|
// Extract source IP once for all metric calls
|
||||||
|
let ip_str = peer_addr.ip().to_string();
|
||||||
|
|
||||||
// === Fast path: try port-only matching before peeking at data ===
|
// === Fast path: try port-only matching before peeking at data ===
|
||||||
// This handles "server-speaks-first" protocols where the client
|
// This handles "server-speaks-first" protocols where the client
|
||||||
// doesn't send initial data (e.g., SMTP, greeting-based protocols).
|
// doesn't send initial data (e.g., SMTP, greeting-based protocols).
|
||||||
@@ -413,6 +436,7 @@ impl TcpListenerManager {
|
|||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
is_tls: false,
|
is_tls: false,
|
||||||
|
protocol: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
if let Some(quick_match) = route_manager.find_route(&quick_ctx) {
|
if let Some(quick_match) = route_manager.find_route(&quick_ctx) {
|
||||||
@@ -460,8 +484,8 @@ impl TcpListenerManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
metrics.connection_opened(route_id);
|
metrics.connection_opened(route_id, Some(&ip_str));
|
||||||
let _fast_guard = ConnectionGuard::new(Arc::clone(&metrics), route_id);
|
let _fast_guard = ConnectionGuard::new(Arc::clone(&metrics), route_id, Some(&ip_str));
|
||||||
|
|
||||||
let connect_timeout = std::time::Duration::from_millis(conn_config.connection_timeout_ms);
|
let connect_timeout = std::time::Duration::from_millis(conn_config.connection_timeout_ms);
|
||||||
let inactivity_timeout = std::time::Duration::from_millis(conn_config.socket_timeout_ms);
|
let inactivity_timeout = std::time::Duration::from_millis(conn_config.socket_timeout_ms);
|
||||||
@@ -499,13 +523,21 @@ impl TcpListenerManager {
|
|||||||
let (_bytes_in, _bytes_out) = forwarder::forward_bidirectional_with_timeouts(
|
let (_bytes_in, _bytes_out) = forwarder::forward_bidirectional_with_timeouts(
|
||||||
stream, backend_w, None,
|
stream, backend_w, None,
|
||||||
inactivity_timeout, max_lifetime, cancel,
|
inactivity_timeout, max_lifetime, cancel,
|
||||||
Some((Arc::clone(&metrics), route_id.map(|s| s.to_string()))),
|
Some(forwarder::ForwardMetricsCtx {
|
||||||
|
collector: Arc::clone(&metrics),
|
||||||
|
route_id: route_id.map(|s| s.to_string()),
|
||||||
|
source_ip: Some(ip_str.clone()),
|
||||||
|
}),
|
||||||
).await?;
|
).await?;
|
||||||
} else {
|
} else {
|
||||||
let (_bytes_in, _bytes_out) = forwarder::forward_bidirectional_with_timeouts(
|
let (_bytes_in, _bytes_out) = forwarder::forward_bidirectional_with_timeouts(
|
||||||
stream, backend, None,
|
stream, backend, None,
|
||||||
inactivity_timeout, max_lifetime, cancel,
|
inactivity_timeout, max_lifetime, cancel,
|
||||||
Some((Arc::clone(&metrics), route_id.map(|s| s.to_string()))),
|
Some(forwarder::ForwardMetricsCtx {
|
||||||
|
collector: Arc::clone(&metrics),
|
||||||
|
route_id: route_id.map(|s| s.to_string()),
|
||||||
|
source_ip: Some(ip_str.clone()),
|
||||||
|
}),
|
||||||
).await?;
|
).await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -609,6 +641,8 @@ impl TcpListenerManager {
|
|||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
is_tls,
|
is_tls,
|
||||||
|
// For TLS connections, protocol is unknown until after termination
|
||||||
|
protocol: if is_http { Some("http") } else if !is_tls { Some("tcp") } else { None },
|
||||||
};
|
};
|
||||||
|
|
||||||
let route_match = route_manager.find_route(&ctx);
|
let route_match = route_manager.find_route(&ctx);
|
||||||
@@ -646,8 +680,8 @@ impl TcpListenerManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Track connection in metrics — guard ensures connection_closed on all exit paths
|
// Track connection in metrics — guard ensures connection_closed on all exit paths
|
||||||
metrics.connection_opened(route_id);
|
metrics.connection_opened(route_id, Some(&ip_str));
|
||||||
let _conn_guard = ConnectionGuard::new(Arc::clone(&metrics), route_id);
|
let _conn_guard = ConnectionGuard::new(Arc::clone(&metrics), route_id, Some(&ip_str));
|
||||||
|
|
||||||
// Check if this is a socket-handler route that should be relayed to TypeScript
|
// Check if this is a socket-handler route that should be relayed to TypeScript
|
||||||
if route_match.route.action.action_type == RouteActionType::SocketHandler {
|
if route_match.route.action.action_type == RouteActionType::SocketHandler {
|
||||||
@@ -755,18 +789,18 @@ impl TcpListenerManager {
|
|||||||
let (_bytes_in, _bytes_out) = forwarder::forward_bidirectional_with_timeouts(
|
let (_bytes_in, _bytes_out) = forwarder::forward_bidirectional_with_timeouts(
|
||||||
stream, backend, Some(&actual_buf),
|
stream, backend, Some(&actual_buf),
|
||||||
inactivity_timeout, max_lifetime, cancel,
|
inactivity_timeout, max_lifetime, cancel,
|
||||||
Some((Arc::clone(&metrics), route_id.map(|s| s.to_string()))),
|
Some(forwarder::ForwardMetricsCtx {
|
||||||
|
collector: Arc::clone(&metrics),
|
||||||
|
route_id: route_id.map(|s| s.to_string()),
|
||||||
|
source_ip: Some(ip_str.clone()),
|
||||||
|
}),
|
||||||
).await?;
|
).await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
Some(rustproxy_config::TlsMode::Terminate) => {
|
Some(rustproxy_config::TlsMode::Terminate) => {
|
||||||
let tls_config = Self::find_tls_config(&domain, &tls_configs)?;
|
// Use shared acceptor (session resumption) or fall back to per-connection
|
||||||
|
|
||||||
// TLS accept with timeout, applying route-level TLS settings
|
|
||||||
let route_tls = route_match.route.action.tls.as_ref();
|
let route_tls = route_match.route.action.tls.as_ref();
|
||||||
let acceptor = tls_handler::build_tls_acceptor_with_config(
|
let acceptor = Self::get_tls_acceptor(&domain, &tls_configs, &*shared_tls_acceptor, route_tls)?;
|
||||||
&tls_config.cert_pem, &tls_config.key_pem, route_tls,
|
|
||||||
)?;
|
|
||||||
let tls_stream = match tokio::time::timeout(
|
let tls_stream = match tokio::time::timeout(
|
||||||
std::time::Duration::from_millis(conn_config.initial_data_timeout_ms),
|
std::time::Duration::from_millis(conn_config.initial_data_timeout_ms),
|
||||||
tls_handler::accept_tls(stream, &acceptor),
|
tls_handler::accept_tls(stream, &acceptor),
|
||||||
@@ -786,13 +820,20 @@ impl TcpListenerManager {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Check protocol restriction from route config
|
||||||
|
if let Some(ref required_protocol) = route_match.route.route_match.protocol {
|
||||||
|
let detected = if peeked { "http" } else { "tcp" };
|
||||||
|
if required_protocol != detected {
|
||||||
|
debug!("Protocol mismatch: route requires '{}', got '{}'", required_protocol, detected);
|
||||||
|
return Err("Protocol mismatch".into());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if peeked {
|
if peeked {
|
||||||
debug!(
|
debug!(
|
||||||
"TLS Terminate + HTTP: {} -> {}:{} (domain: {:?})",
|
"TLS Terminate + HTTP: {} -> {}:{} (domain: {:?})",
|
||||||
peer_addr, target_host, target_port, domain
|
peer_addr, target_host, target_port, domain
|
||||||
);
|
);
|
||||||
// HTTP proxy manages its own per-request metrics — disarm TCP-level guard
|
|
||||||
_conn_guard.disarm();
|
|
||||||
http_proxy.handle_io(buf_stream, peer_addr, port, cancel.clone()).await;
|
http_proxy.handle_io(buf_stream, peer_addr, port, cancel.clone()).await;
|
||||||
} else {
|
} else {
|
||||||
debug!(
|
debug!(
|
||||||
@@ -816,24 +857,73 @@ impl TcpListenerManager {
|
|||||||
let (_bytes_in, _bytes_out) = Self::forward_bidirectional_split_with_timeouts(
|
let (_bytes_in, _bytes_out) = Self::forward_bidirectional_split_with_timeouts(
|
||||||
tls_read, tls_write, backend_read, backend_write,
|
tls_read, tls_write, backend_read, backend_write,
|
||||||
inactivity_timeout, max_lifetime,
|
inactivity_timeout, max_lifetime,
|
||||||
Some((Arc::clone(&metrics), route_id.map(|s| s.to_string()))),
|
Some(forwarder::ForwardMetricsCtx {
|
||||||
|
collector: Arc::clone(&metrics),
|
||||||
|
route_id: route_id.map(|s| s.to_string()),
|
||||||
|
source_ip: Some(ip_str.clone()),
|
||||||
|
}),
|
||||||
).await;
|
).await;
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
Some(rustproxy_config::TlsMode::TerminateAndReencrypt) => {
|
Some(rustproxy_config::TlsMode::TerminateAndReencrypt) => {
|
||||||
|
// Inline TLS accept + HTTP detection (same pattern as Terminate mode)
|
||||||
let route_tls = route_match.route.action.tls.as_ref();
|
let route_tls = route_match.route.action.tls.as_ref();
|
||||||
Self::handle_tls_terminate_reencrypt(
|
let acceptor = Self::get_tls_acceptor(&domain, &tls_configs, &*shared_tls_acceptor, route_tls)?;
|
||||||
stream, n, &domain, &target_host, target_port,
|
let tls_stream = match tokio::time::timeout(
|
||||||
peer_addr, &tls_configs, Arc::clone(&metrics), route_id, &conn_config, route_tls,
|
std::time::Duration::from_millis(conn_config.initial_data_timeout_ms),
|
||||||
).await
|
tls_handler::accept_tls(stream, &acceptor),
|
||||||
|
).await {
|
||||||
|
Ok(Ok(s)) => s,
|
||||||
|
Ok(Err(e)) => return Err(e),
|
||||||
|
Err(_) => return Err("TLS handshake timeout".into()),
|
||||||
|
};
|
||||||
|
|
||||||
|
// Peek at decrypted data to detect protocol
|
||||||
|
let mut buf_stream = tokio::io::BufReader::new(tls_stream);
|
||||||
|
let is_http_data = {
|
||||||
|
use tokio::io::AsyncBufReadExt;
|
||||||
|
match buf_stream.fill_buf().await {
|
||||||
|
Ok(data) => sni_parser::is_http(data),
|
||||||
|
Err(_) => false,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Check protocol restriction from route config
|
||||||
|
if let Some(ref required_protocol) = route_match.route.route_match.protocol {
|
||||||
|
let detected = if is_http_data { "http" } else { "tcp" };
|
||||||
|
if required_protocol != detected {
|
||||||
|
debug!("Protocol mismatch: route requires '{}', got '{}'", required_protocol, detected);
|
||||||
|
return Err("Protocol mismatch".into());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if is_http_data {
|
||||||
|
// HTTP: full per-request routing via HttpProxyService
|
||||||
|
// (backend TLS handled by HttpProxyService when upstream.use_tls is set)
|
||||||
|
debug!(
|
||||||
|
"TLS Terminate+Reencrypt + HTTP: {} (domain: {:?})",
|
||||||
|
peer_addr, domain
|
||||||
|
);
|
||||||
|
http_proxy.handle_io(buf_stream, peer_addr, port, cancel.clone()).await;
|
||||||
|
} else {
|
||||||
|
// Non-HTTP: TLS-to-TLS tunnel (existing behavior for raw TCP protocols)
|
||||||
|
debug!(
|
||||||
|
"TLS Terminate+Reencrypt + TCP: {} -> {}:{}",
|
||||||
|
peer_addr, target_host, target_port
|
||||||
|
);
|
||||||
|
Self::handle_tls_reencrypt_tunnel(
|
||||||
|
buf_stream, &target_host, target_port,
|
||||||
|
peer_addr, Arc::clone(&metrics), route_id,
|
||||||
|
&conn_config,
|
||||||
|
).await?;
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
if is_http {
|
if is_http {
|
||||||
// Plain HTTP - use HTTP proxy for request-level routing
|
// Plain HTTP - use HTTP proxy for request-level routing
|
||||||
debug!("HTTP proxy: {} on port {}", peer_addr, port);
|
debug!("HTTP proxy: {} on port {}", peer_addr, port);
|
||||||
// HTTP proxy manages its own per-request metrics — disarm TCP-level guard
|
|
||||||
_conn_guard.disarm();
|
|
||||||
http_proxy.handle_connection(stream, peer_addr, port, cancel.clone()).await;
|
http_proxy.handle_connection(stream, peer_addr, port, cancel.clone()).await;
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
@@ -865,7 +955,11 @@ impl TcpListenerManager {
|
|||||||
let (_bytes_in, _bytes_out) = forwarder::forward_bidirectional_with_timeouts(
|
let (_bytes_in, _bytes_out) = forwarder::forward_bidirectional_with_timeouts(
|
||||||
stream, backend, Some(&actual_buf),
|
stream, backend, Some(&actual_buf),
|
||||||
inactivity_timeout, max_lifetime, cancel,
|
inactivity_timeout, max_lifetime, cancel,
|
||||||
Some((Arc::clone(&metrics), route_id.map(|s| s.to_string()))),
|
Some(forwarder::ForwardMetricsCtx {
|
||||||
|
collector: Arc::clone(&metrics),
|
||||||
|
route_id: route_id.map(|s| s.to_string()),
|
||||||
|
source_ip: Some(ip_str.clone()),
|
||||||
|
}),
|
||||||
).await?;
|
).await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@@ -941,12 +1035,14 @@ impl TcpListenerManager {
|
|||||||
let total_in = c2s + initial_len;
|
let total_in = c2s + initial_len;
|
||||||
debug!("Socket handler relay complete for {}: {} bytes in, {} bytes out",
|
debug!("Socket handler relay complete for {}: {} bytes in, {} bytes out",
|
||||||
route_key, total_in, s2c);
|
route_key, total_in, s2c);
|
||||||
metrics.record_bytes(total_in, s2c, route_id);
|
let ip = peer_addr.ip().to_string();
|
||||||
|
metrics.record_bytes(total_in, s2c, route_id, Some(&ip));
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
// Still record the initial data even on error
|
// Still record the initial data even on error
|
||||||
if initial_len > 0 {
|
if initial_len > 0 {
|
||||||
metrics.record_bytes(initial_len, 0, route_id);
|
let ip = peer_addr.ip().to_string();
|
||||||
|
metrics.record_bytes(initial_len, 0, route_id, Some(&ip));
|
||||||
}
|
}
|
||||||
debug!("Socket handler relay ended for {}: {}", route_key, e);
|
debug!("Socket handler relay ended for {}: {}", route_key, e);
|
||||||
}
|
}
|
||||||
@@ -955,40 +1051,18 @@ impl TcpListenerManager {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Handle TLS terminate-and-reencrypt: accept TLS from client, connect TLS to backend.
|
/// Handle non-HTTP TLS-to-TLS tunnel for terminate-and-reencrypt mode.
|
||||||
async fn handle_tls_terminate_reencrypt(
|
/// TLS accept has already been done by the caller; this only connects to the
|
||||||
stream: tokio::net::TcpStream,
|
/// backend over TLS and forwards bidirectionally.
|
||||||
_peek_len: usize,
|
async fn handle_tls_reencrypt_tunnel(
|
||||||
domain: &Option<String>,
|
buf_stream: tokio::io::BufReader<tokio_rustls::server::TlsStream<tokio::net::TcpStream>>,
|
||||||
target_host: &str,
|
target_host: &str,
|
||||||
target_port: u16,
|
target_port: u16,
|
||||||
peer_addr: std::net::SocketAddr,
|
peer_addr: std::net::SocketAddr,
|
||||||
tls_configs: &HashMap<String, TlsCertConfig>,
|
|
||||||
metrics: Arc<MetricsCollector>,
|
metrics: Arc<MetricsCollector>,
|
||||||
route_id: Option<&str>,
|
route_id: Option<&str>,
|
||||||
conn_config: &ConnectionConfig,
|
conn_config: &ConnectionConfig,
|
||||||
route_tls: Option<&rustproxy_config::RouteTls>,
|
|
||||||
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
|
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
|
||||||
let tls_config = Self::find_tls_config(domain, tls_configs)?;
|
|
||||||
let acceptor = tls_handler::build_tls_acceptor_with_config(
|
|
||||||
&tls_config.cert_pem, &tls_config.key_pem, route_tls,
|
|
||||||
)?;
|
|
||||||
|
|
||||||
// Accept TLS from client with timeout
|
|
||||||
let client_tls = match tokio::time::timeout(
|
|
||||||
std::time::Duration::from_millis(conn_config.initial_data_timeout_ms),
|
|
||||||
tls_handler::accept_tls(stream, &acceptor),
|
|
||||||
).await {
|
|
||||||
Ok(Ok(s)) => s,
|
|
||||||
Ok(Err(e)) => return Err(e),
|
|
||||||
Err(_) => return Err("TLS handshake timeout".into()),
|
|
||||||
};
|
|
||||||
|
|
||||||
debug!(
|
|
||||||
"TLS Terminate+Reencrypt: {} -> {}:{} (domain: {:?})",
|
|
||||||
peer_addr, target_host, target_port, domain
|
|
||||||
);
|
|
||||||
|
|
||||||
// Connect to backend over TLS with timeout
|
// Connect to backend over TLS with timeout
|
||||||
let backend_tls = match tokio::time::timeout(
|
let backend_tls = match tokio::time::timeout(
|
||||||
std::time::Duration::from_millis(conn_config.connection_timeout_ms),
|
std::time::Duration::from_millis(conn_config.connection_timeout_ms),
|
||||||
@@ -999,8 +1073,9 @@ impl TcpListenerManager {
|
|||||||
Err(_) => return Err("Backend TLS connection timeout".into()),
|
Err(_) => return Err("Backend TLS connection timeout".into()),
|
||||||
};
|
};
|
||||||
|
|
||||||
// Forward between two TLS streams
|
// Forward between decrypted client stream and backend TLS stream
|
||||||
let (client_read, client_write) = tokio::io::split(client_tls);
|
// (BufReader preserves any already-buffered data from the peek)
|
||||||
|
let (client_read, client_write) = tokio::io::split(buf_stream);
|
||||||
let (backend_read, backend_write) = tokio::io::split(backend_tls);
|
let (backend_read, backend_write) = tokio::io::split(backend_tls);
|
||||||
|
|
||||||
let base_inactivity_ms = conn_config.socket_timeout_ms;
|
let base_inactivity_ms = conn_config.socket_timeout_ms;
|
||||||
@@ -1032,12 +1107,40 @@ impl TcpListenerManager {
|
|||||||
let (_bytes_in, _bytes_out) = Self::forward_bidirectional_split_with_timeouts(
|
let (_bytes_in, _bytes_out) = Self::forward_bidirectional_split_with_timeouts(
|
||||||
client_read, client_write, backend_read, backend_write,
|
client_read, client_write, backend_read, backend_write,
|
||||||
inactivity_timeout, max_lifetime,
|
inactivity_timeout, max_lifetime,
|
||||||
Some((metrics, route_id.map(|s| s.to_string()))),
|
Some(forwarder::ForwardMetricsCtx {
|
||||||
|
collector: metrics,
|
||||||
|
route_id: route_id.map(|s| s.to_string()),
|
||||||
|
source_ip: Some(peer_addr.ip().to_string()),
|
||||||
|
}),
|
||||||
).await;
|
).await;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Get a TLS acceptor, preferring the shared one (with session resumption)
|
||||||
|
/// and falling back to per-connection when custom TLS versions are configured.
|
||||||
|
fn get_tls_acceptor(
|
||||||
|
domain: &Option<String>,
|
||||||
|
tls_configs: &HashMap<String, TlsCertConfig>,
|
||||||
|
shared_tls_acceptor: &Option<TlsAcceptor>,
|
||||||
|
route_tls: Option<&rustproxy_config::RouteTls>,
|
||||||
|
) -> Result<TlsAcceptor, Box<dyn std::error::Error + Send + Sync>> {
|
||||||
|
let has_custom_versions = route_tls
|
||||||
|
.and_then(|t| t.versions.as_ref())
|
||||||
|
.map(|v| !v.is_empty())
|
||||||
|
.unwrap_or(false);
|
||||||
|
|
||||||
|
if !has_custom_versions {
|
||||||
|
if let Some(shared) = shared_tls_acceptor {
|
||||||
|
return Ok(shared.clone()); // TlsAcceptor wraps Arc<ServerConfig>, clone is cheap
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback: per-connection acceptor (custom TLS versions or shared build failed)
|
||||||
|
let tls_config = Self::find_tls_config(domain, tls_configs)?;
|
||||||
|
tls_handler::build_tls_acceptor_with_config(&tls_config.cert_pem, &tls_config.key_pem, route_tls)
|
||||||
|
}
|
||||||
|
|
||||||
/// Find the TLS config for a given domain.
|
/// Find the TLS config for a given domain.
|
||||||
fn find_tls_config<'a>(
|
fn find_tls_config<'a>(
|
||||||
domain: &Option<String>,
|
domain: &Option<String>,
|
||||||
@@ -1078,7 +1181,7 @@ impl TcpListenerManager {
|
|||||||
mut backend_write: W2,
|
mut backend_write: W2,
|
||||||
inactivity_timeout: std::time::Duration,
|
inactivity_timeout: std::time::Duration,
|
||||||
max_lifetime: std::time::Duration,
|
max_lifetime: std::time::Duration,
|
||||||
metrics: Option<(Arc<MetricsCollector>, Option<String>)>,
|
metrics: Option<forwarder::ForwardMetricsCtx>,
|
||||||
) -> (u64, u64)
|
) -> (u64, u64)
|
||||||
where
|
where
|
||||||
R1: tokio::io::AsyncRead + Unpin + Send + 'static,
|
R1: tokio::io::AsyncRead + Unpin + Send + 'static,
|
||||||
@@ -1111,8 +1214,8 @@ impl TcpListenerManager {
|
|||||||
start.elapsed().as_millis() as u64,
|
start.elapsed().as_millis() as u64,
|
||||||
Ordering::Relaxed,
|
Ordering::Relaxed,
|
||||||
);
|
);
|
||||||
if let Some((ref m, ref rid)) = metrics_c2b {
|
if let Some(ref ctx) = metrics_c2b {
|
||||||
m.record_bytes(n as u64, 0, rid.as_deref());
|
ctx.collector.record_bytes(n as u64, 0, ctx.route_id.as_deref(), ctx.source_ip.as_deref());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let _ = backend_write.shutdown().await;
|
let _ = backend_write.shutdown().await;
|
||||||
@@ -1137,8 +1240,8 @@ impl TcpListenerManager {
|
|||||||
start.elapsed().as_millis() as u64,
|
start.elapsed().as_millis() as u64,
|
||||||
Ordering::Relaxed,
|
Ordering::Relaxed,
|
||||||
);
|
);
|
||||||
if let Some((ref m, ref rid)) = metrics_b2c {
|
if let Some(ref ctx) = metrics_b2c {
|
||||||
m.record_bytes(0, n as u64, rid.as_deref());
|
ctx.collector.record_bytes(0, n as u64, ctx.route_id.as_deref(), ctx.source_ip.as_deref());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let _ = client_write.shutdown().await;
|
let _ = client_write.shutdown().await;
|
||||||
|
|||||||
@@ -1,17 +1,99 @@
|
|||||||
|
use std::collections::HashMap;
|
||||||
use std::io::BufReader;
|
use std::io::BufReader;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use rustls::pki_types::{CertificateDer, PrivateKeyDer};
|
use rustls::pki_types::{CertificateDer, PrivateKeyDer};
|
||||||
|
use rustls::server::ResolvesServerCert;
|
||||||
|
use rustls::sign::CertifiedKey;
|
||||||
use rustls::ServerConfig;
|
use rustls::ServerConfig;
|
||||||
use tokio::net::TcpStream;
|
use tokio::net::TcpStream;
|
||||||
use tokio_rustls::{TlsAcceptor, TlsConnector, server::TlsStream as ServerTlsStream};
|
use tokio_rustls::{TlsAcceptor, TlsConnector, server::TlsStream as ServerTlsStream};
|
||||||
use tracing::debug;
|
use tracing::{debug, info};
|
||||||
|
|
||||||
|
use crate::tcp_listener::TlsCertConfig;
|
||||||
|
|
||||||
/// Ensure the default crypto provider is installed.
|
/// Ensure the default crypto provider is installed.
|
||||||
fn ensure_crypto_provider() {
|
fn ensure_crypto_provider() {
|
||||||
let _ = rustls::crypto::ring::default_provider().install_default();
|
let _ = rustls::crypto::ring::default_provider().install_default();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// SNI-based certificate resolver with pre-parsed CertifiedKeys.
|
||||||
|
/// Enables shared ServerConfig across connections — avoids per-connection PEM parsing
|
||||||
|
/// and enables TLS session resumption.
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct CertResolver {
|
||||||
|
certs: HashMap<String, Arc<CertifiedKey>>,
|
||||||
|
fallback: Option<Arc<CertifiedKey>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CertResolver {
|
||||||
|
/// Build a resolver from PEM-encoded cert/key configs.
|
||||||
|
/// Parses all PEM data upfront so connections only do a cheap HashMap lookup.
|
||||||
|
pub fn new(configs: &HashMap<String, TlsCertConfig>) -> Result<Self, Box<dyn std::error::Error + Send + Sync>> {
|
||||||
|
ensure_crypto_provider();
|
||||||
|
let provider = rustls::crypto::ring::default_provider();
|
||||||
|
let mut certs = HashMap::new();
|
||||||
|
let mut fallback = None;
|
||||||
|
|
||||||
|
for (domain, cfg) in configs {
|
||||||
|
let cert_chain = load_certs(&cfg.cert_pem)?;
|
||||||
|
let key = load_private_key(&cfg.key_pem)?;
|
||||||
|
let ck = Arc::new(CertifiedKey::from_der(cert_chain, key, &provider)
|
||||||
|
.map_err(|e| format!("CertifiedKey for {}: {}", domain, e))?);
|
||||||
|
if domain == "*" {
|
||||||
|
fallback = Some(Arc::clone(&ck));
|
||||||
|
}
|
||||||
|
certs.insert(domain.clone(), ck);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If no explicit "*" fallback, use the first available cert
|
||||||
|
if fallback.is_none() {
|
||||||
|
fallback = certs.values().next().map(Arc::clone);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(Self { certs, fallback })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ResolvesServerCert for CertResolver {
|
||||||
|
fn resolve(&self, client_hello: rustls::server::ClientHello<'_>) -> Option<Arc<CertifiedKey>> {
|
||||||
|
let domain = match client_hello.server_name() {
|
||||||
|
Some(name) => name,
|
||||||
|
None => return self.fallback.clone(),
|
||||||
|
};
|
||||||
|
// Exact match
|
||||||
|
if let Some(ck) = self.certs.get(domain) {
|
||||||
|
return Some(Arc::clone(ck));
|
||||||
|
}
|
||||||
|
// Wildcard: sub.example.com → *.example.com
|
||||||
|
if let Some(dot) = domain.find('.') {
|
||||||
|
let wc = format!("*.{}", &domain[dot + 1..]);
|
||||||
|
if let Some(ck) = self.certs.get(&wc) {
|
||||||
|
return Some(Arc::clone(ck));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
self.fallback.clone()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Build a shared TLS acceptor with SNI resolution, session cache, and session tickets.
|
||||||
|
/// The returned acceptor can be reused across all connections (cheap Arc clone).
|
||||||
|
pub fn build_shared_tls_acceptor(resolver: CertResolver) -> Result<TlsAcceptor, Box<dyn std::error::Error + Send + Sync>> {
|
||||||
|
ensure_crypto_provider();
|
||||||
|
let mut config = ServerConfig::builder()
|
||||||
|
.with_no_client_auth()
|
||||||
|
.with_cert_resolver(Arc::new(resolver));
|
||||||
|
|
||||||
|
// Shared session cache — enables session ID resumption across connections
|
||||||
|
config.session_storage = rustls::server::ServerSessionMemoryCache::new(4096);
|
||||||
|
// Session ticket resumption (12-hour lifetime, Chacha20Poly1305 encrypted)
|
||||||
|
config.ticketer = rustls::crypto::ring::Ticketer::new()
|
||||||
|
.map_err(|e| format!("Ticketer: {}", e))?;
|
||||||
|
|
||||||
|
info!("Built shared TLS config with session cache (4096) and ticket support");
|
||||||
|
Ok(TlsAcceptor::from(Arc::new(config)))
|
||||||
|
}
|
||||||
|
|
||||||
/// Build a TLS acceptor from PEM-encoded cert and key data.
|
/// Build a TLS acceptor from PEM-encoded cert and key data.
|
||||||
pub fn build_tls_acceptor(cert_pem: &str, key_pem: &str) -> Result<TlsAcceptor, Box<dyn std::error::Error + Send + Sync>> {
|
pub fn build_tls_acceptor(cert_pem: &str, key_pem: &str) -> Result<TlsAcceptor, Box<dyn std::error::Error + Send + Sync>> {
|
||||||
build_tls_acceptor_with_config(cert_pem, key_pem, None)
|
build_tls_acceptor_with_config(cert_pem, key_pem, None)
|
||||||
|
|||||||
@@ -12,6 +12,8 @@ pub struct MatchContext<'a> {
|
|||||||
pub tls_version: Option<&'a str>,
|
pub tls_version: Option<&'a str>,
|
||||||
pub headers: Option<&'a HashMap<String, String>>,
|
pub headers: Option<&'a HashMap<String, String>>,
|
||||||
pub is_tls: bool,
|
pub is_tls: bool,
|
||||||
|
/// Detected protocol: "http" or "tcp". None when unknown (e.g. pre-TLS-termination).
|
||||||
|
pub protocol: Option<&'a str>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Result of a route match.
|
/// Result of a route match.
|
||||||
@@ -87,9 +89,17 @@ impl RouteManager {
|
|||||||
if !matchers::domain_matches_any(&patterns, domain) {
|
if !matchers::domain_matches_any(&patterns, domain) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
} else if ctx.is_tls {
|
||||||
|
// TLS connection without SNI cannot match a domain-restricted route.
|
||||||
|
// This prevents session-ticket resumption from misrouting when clients
|
||||||
|
// omit SNI (RFC 8446 recommends but doesn't mandate SNI on resumption).
|
||||||
|
// Wildcard-only routes (domains: ["*"]) still match since they accept all.
|
||||||
|
let patterns = domains.to_vec();
|
||||||
|
let is_wildcard_only = patterns.iter().all(|d| *d == "*");
|
||||||
|
if !is_wildcard_only {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// If no domain provided but route requires domain, it depends on context
|
|
||||||
// For TLS passthrough, we need SNI; for other cases we may still match
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path matching
|
// Path matching
|
||||||
@@ -137,6 +147,17 @@ impl RouteManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Protocol matching
|
||||||
|
if let Some(ref required_protocol) = rm.protocol {
|
||||||
|
if let Some(protocol) = ctx.protocol {
|
||||||
|
if required_protocol != protocol {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// If protocol not yet known (None), allow match — protocol will be
|
||||||
|
// validated after detection (post-TLS-termination peek)
|
||||||
|
}
|
||||||
|
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -277,6 +298,7 @@ mod tests {
|
|||||||
client_ip: None,
|
client_ip: None,
|
||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
|
protocol: None,
|
||||||
},
|
},
|
||||||
action: RouteAction {
|
action: RouteAction {
|
||||||
action_type: RouteActionType::Forward,
|
action_type: RouteActionType::Forward,
|
||||||
@@ -327,6 +349,7 @@ mod tests {
|
|||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
is_tls: false,
|
is_tls: false,
|
||||||
|
protocol: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
let result = manager.find_route(&ctx);
|
let result = manager.find_route(&ctx);
|
||||||
@@ -349,6 +372,7 @@ mod tests {
|
|||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
is_tls: false,
|
is_tls: false,
|
||||||
|
protocol: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
let result = manager.find_route(&ctx).unwrap();
|
let result = manager.find_route(&ctx).unwrap();
|
||||||
@@ -372,6 +396,7 @@ mod tests {
|
|||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
is_tls: false,
|
is_tls: false,
|
||||||
|
protocol: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
assert!(manager.find_route(&ctx).is_none());
|
assert!(manager.find_route(&ctx).is_none());
|
||||||
@@ -457,6 +482,116 @@ mod tests {
|
|||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
is_tls: false,
|
is_tls: false,
|
||||||
|
protocol: None,
|
||||||
|
};
|
||||||
|
|
||||||
|
assert!(manager.find_route(&ctx).is_some());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_tls_no_sni_rejects_domain_restricted_route() {
|
||||||
|
let routes = vec![make_route(443, Some("example.com"), 0)];
|
||||||
|
let manager = RouteManager::new(routes);
|
||||||
|
|
||||||
|
// TLS connection without SNI should NOT match a domain-restricted route
|
||||||
|
let ctx = MatchContext {
|
||||||
|
port: 443,
|
||||||
|
domain: None,
|
||||||
|
path: None,
|
||||||
|
client_ip: None,
|
||||||
|
tls_version: None,
|
||||||
|
headers: None,
|
||||||
|
is_tls: true,
|
||||||
|
protocol: None,
|
||||||
|
};
|
||||||
|
|
||||||
|
assert!(manager.find_route(&ctx).is_none());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_tls_no_sni_rejects_wildcard_subdomain_route() {
|
||||||
|
let routes = vec![make_route(443, Some("*.example.com"), 0)];
|
||||||
|
let manager = RouteManager::new(routes);
|
||||||
|
|
||||||
|
// TLS connection without SNI should NOT match *.example.com
|
||||||
|
let ctx = MatchContext {
|
||||||
|
port: 443,
|
||||||
|
domain: None,
|
||||||
|
path: None,
|
||||||
|
client_ip: None,
|
||||||
|
tls_version: None,
|
||||||
|
headers: None,
|
||||||
|
is_tls: true,
|
||||||
|
protocol: None,
|
||||||
|
};
|
||||||
|
|
||||||
|
assert!(manager.find_route(&ctx).is_none());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_tls_no_sni_matches_wildcard_only_route() {
|
||||||
|
let routes = vec![make_route(443, Some("*"), 0)];
|
||||||
|
let manager = RouteManager::new(routes);
|
||||||
|
|
||||||
|
// TLS connection without SNI SHOULD match a wildcard-only route
|
||||||
|
let ctx = MatchContext {
|
||||||
|
port: 443,
|
||||||
|
domain: None,
|
||||||
|
path: None,
|
||||||
|
client_ip: None,
|
||||||
|
tls_version: None,
|
||||||
|
headers: None,
|
||||||
|
is_tls: true,
|
||||||
|
protocol: None,
|
||||||
|
};
|
||||||
|
|
||||||
|
assert!(manager.find_route(&ctx).is_some());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_tls_no_sni_skips_domain_restricted_matches_fallback() {
|
||||||
|
// Two routes: first is domain-restricted, second is wildcard catch-all
|
||||||
|
let routes = vec![
|
||||||
|
make_route(443, Some("specific.com"), 10),
|
||||||
|
make_route(443, Some("*"), 0),
|
||||||
|
];
|
||||||
|
let manager = RouteManager::new(routes);
|
||||||
|
|
||||||
|
// TLS without SNI should skip specific.com and fall through to wildcard
|
||||||
|
let ctx = MatchContext {
|
||||||
|
port: 443,
|
||||||
|
domain: None,
|
||||||
|
path: None,
|
||||||
|
client_ip: None,
|
||||||
|
tls_version: None,
|
||||||
|
headers: None,
|
||||||
|
is_tls: true,
|
||||||
|
protocol: None,
|
||||||
|
};
|
||||||
|
|
||||||
|
let result = manager.find_route(&ctx);
|
||||||
|
assert!(result.is_some());
|
||||||
|
let matched_domains = result.unwrap().route.route_match.domains.as_ref()
|
||||||
|
.map(|d| d.to_vec()).unwrap();
|
||||||
|
assert!(matched_domains.contains(&"*"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_non_tls_no_domain_still_matches_domain_restricted() {
|
||||||
|
// Non-TLS (plain HTTP) without domain should still match domain-restricted routes
|
||||||
|
// (the HTTP proxy layer handles Host-based routing)
|
||||||
|
let routes = vec![make_route(80, Some("example.com"), 0)];
|
||||||
|
let manager = RouteManager::new(routes);
|
||||||
|
|
||||||
|
let ctx = MatchContext {
|
||||||
|
port: 80,
|
||||||
|
domain: None,
|
||||||
|
path: None,
|
||||||
|
client_ip: None,
|
||||||
|
tls_version: None,
|
||||||
|
headers: None,
|
||||||
|
is_tls: false,
|
||||||
|
protocol: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
assert!(manager.find_route(&ctx).is_some());
|
assert!(manager.find_route(&ctx).is_some());
|
||||||
@@ -475,6 +610,7 @@ mod tests {
|
|||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
is_tls: false,
|
is_tls: false,
|
||||||
|
protocol: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
assert!(manager.find_route(&ctx).is_some());
|
assert!(manager.find_route(&ctx).is_some());
|
||||||
@@ -525,6 +661,7 @@ mod tests {
|
|||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
is_tls: false,
|
is_tls: false,
|
||||||
|
protocol: None,
|
||||||
};
|
};
|
||||||
let result = manager.find_route(&ctx).unwrap();
|
let result = manager.find_route(&ctx).unwrap();
|
||||||
assert_eq!(result.target.unwrap().host.first(), "api-backend");
|
assert_eq!(result.target.unwrap().host.first(), "api-backend");
|
||||||
@@ -538,8 +675,102 @@ mod tests {
|
|||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
is_tls: false,
|
is_tls: false,
|
||||||
|
protocol: None,
|
||||||
};
|
};
|
||||||
let result = manager.find_route(&ctx).unwrap();
|
let result = manager.find_route(&ctx).unwrap();
|
||||||
assert_eq!(result.target.unwrap().host.first(), "default-backend");
|
assert_eq!(result.target.unwrap().host.first(), "default-backend");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn make_route_with_protocol(port: u16, domain: Option<&str>, protocol: Option<&str>) -> RouteConfig {
|
||||||
|
let mut route = make_route(port, domain, 0);
|
||||||
|
route.route_match.protocol = protocol.map(|s| s.to_string());
|
||||||
|
route
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_protocol_http_matches_http() {
|
||||||
|
let routes = vec![make_route_with_protocol(80, None, Some("http"))];
|
||||||
|
let manager = RouteManager::new(routes);
|
||||||
|
|
||||||
|
let ctx = MatchContext {
|
||||||
|
port: 80,
|
||||||
|
domain: None,
|
||||||
|
path: None,
|
||||||
|
client_ip: None,
|
||||||
|
tls_version: None,
|
||||||
|
headers: None,
|
||||||
|
is_tls: false,
|
||||||
|
protocol: Some("http"),
|
||||||
|
};
|
||||||
|
assert!(manager.find_route(&ctx).is_some());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_protocol_http_rejects_tcp() {
|
||||||
|
let routes = vec![make_route_with_protocol(80, None, Some("http"))];
|
||||||
|
let manager = RouteManager::new(routes);
|
||||||
|
|
||||||
|
let ctx = MatchContext {
|
||||||
|
port: 80,
|
||||||
|
domain: None,
|
||||||
|
path: None,
|
||||||
|
client_ip: None,
|
||||||
|
tls_version: None,
|
||||||
|
headers: None,
|
||||||
|
is_tls: false,
|
||||||
|
protocol: Some("tcp"),
|
||||||
|
};
|
||||||
|
assert!(manager.find_route(&ctx).is_none());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_protocol_none_matches_any() {
|
||||||
|
// Route with no protocol restriction matches any protocol
|
||||||
|
let routes = vec![make_route_with_protocol(80, None, None)];
|
||||||
|
let manager = RouteManager::new(routes);
|
||||||
|
|
||||||
|
let ctx_http = MatchContext {
|
||||||
|
port: 80,
|
||||||
|
domain: None,
|
||||||
|
path: None,
|
||||||
|
client_ip: None,
|
||||||
|
tls_version: None,
|
||||||
|
headers: None,
|
||||||
|
is_tls: false,
|
||||||
|
protocol: Some("http"),
|
||||||
|
};
|
||||||
|
assert!(manager.find_route(&ctx_http).is_some());
|
||||||
|
|
||||||
|
let ctx_tcp = MatchContext {
|
||||||
|
port: 80,
|
||||||
|
domain: None,
|
||||||
|
path: None,
|
||||||
|
client_ip: None,
|
||||||
|
tls_version: None,
|
||||||
|
headers: None,
|
||||||
|
is_tls: false,
|
||||||
|
protocol: Some("tcp"),
|
||||||
|
};
|
||||||
|
assert!(manager.find_route(&ctx_tcp).is_some());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_protocol_http_matches_when_unknown() {
|
||||||
|
// Route with protocol: "http" should match when ctx.protocol is None
|
||||||
|
// (pre-TLS-termination, protocol not yet known)
|
||||||
|
let routes = vec![make_route_with_protocol(443, None, Some("http"))];
|
||||||
|
let manager = RouteManager::new(routes);
|
||||||
|
|
||||||
|
let ctx = MatchContext {
|
||||||
|
port: 443,
|
||||||
|
domain: None,
|
||||||
|
path: None,
|
||||||
|
client_ip: None,
|
||||||
|
tls_version: None,
|
||||||
|
headers: None,
|
||||||
|
is_tls: true,
|
||||||
|
protocol: None,
|
||||||
|
};
|
||||||
|
assert!(manager.find_route(&ctx).is_some());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
pub mod challenge_server;
|
pub mod challenge_server;
|
||||||
pub mod management;
|
pub mod management;
|
||||||
|
|
||||||
use std::collections::HashMap;
|
use std::collections::{HashMap, HashSet};
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use std::time::Instant;
|
use std::time::Instant;
|
||||||
|
|
||||||
@@ -77,6 +77,8 @@ pub struct RustProxy {
|
|||||||
started_at: Option<Instant>,
|
started_at: Option<Instant>,
|
||||||
/// Shared path to a Unix domain socket for relaying socket-handler connections back to TypeScript.
|
/// Shared path to a Unix domain socket for relaying socket-handler connections back to TypeScript.
|
||||||
socket_handler_relay: Arc<std::sync::RwLock<Option<String>>>,
|
socket_handler_relay: Arc<std::sync::RwLock<Option<String>>>,
|
||||||
|
/// Dynamically loaded certificates (via loadCertificate IPC), independent of CertManager.
|
||||||
|
loaded_certs: HashMap<String, TlsCertConfig>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RustProxy {
|
impl RustProxy {
|
||||||
@@ -118,6 +120,7 @@ impl RustProxy {
|
|||||||
started: false,
|
started: false,
|
||||||
started_at: None,
|
started_at: None,
|
||||||
socket_handler_relay: Arc::new(std::sync::RwLock::new(None)),
|
socket_handler_relay: Arc::new(std::sync::RwLock::new(None)),
|
||||||
|
loaded_certs: HashMap::new(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -268,6 +271,13 @@ impl RustProxy {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Merge dynamically loaded certs (from loadCertificate IPC)
|
||||||
|
for (d, c) in &self.loaded_certs {
|
||||||
|
if !tls_configs.contains_key(d) {
|
||||||
|
tls_configs.insert(d.clone(), c.clone());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if !tls_configs.is_empty() {
|
if !tls_configs.is_empty() {
|
||||||
debug!("Loaded TLS certificates for {} domains", tls_configs.len());
|
debug!("Loaded TLS certificates for {} domains", tls_configs.len());
|
||||||
listener.set_tls_configs(tls_configs);
|
listener.set_tls_configs(tls_configs);
|
||||||
@@ -555,6 +565,12 @@ impl RustProxy {
|
|||||||
vec![]
|
vec![]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Prune per-route metrics for route IDs that no longer exist
|
||||||
|
let active_route_ids: HashSet<String> = routes.iter()
|
||||||
|
.filter_map(|r| r.id.clone())
|
||||||
|
.collect();
|
||||||
|
self.metrics.retain_routes(&active_route_ids);
|
||||||
|
|
||||||
// Atomically swap the route table
|
// Atomically swap the route table
|
||||||
let new_manager = Arc::new(new_manager);
|
let new_manager = Arc::new(new_manager);
|
||||||
self.route_table.store(Arc::clone(&new_manager));
|
self.route_table.store(Arc::clone(&new_manager));
|
||||||
@@ -576,6 +592,12 @@ impl RustProxy {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Merge dynamically loaded certs (from loadCertificate IPC)
|
||||||
|
for (d, c) in &self.loaded_certs {
|
||||||
|
if !tls_configs.contains_key(d) {
|
||||||
|
tls_configs.insert(d.clone(), c.clone());
|
||||||
|
}
|
||||||
|
}
|
||||||
listener.set_tls_configs(tls_configs);
|
listener.set_tls_configs(tls_configs);
|
||||||
|
|
||||||
// Add new ports
|
// Add new ports
|
||||||
@@ -786,6 +808,12 @@ impl RustProxy {
|
|||||||
cm.load_static(domain.to_string(), bundle);
|
cm.load_static(domain.to_string(), bundle);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Persist in loaded_certs so future rebuild calls include this cert
|
||||||
|
self.loaded_certs.insert(domain.to_string(), TlsCertConfig {
|
||||||
|
cert_pem: cert_pem.clone(),
|
||||||
|
key_pem: key_pem.clone(),
|
||||||
|
});
|
||||||
|
|
||||||
// Hot-swap TLS config on the listener
|
// Hot-swap TLS config on the listener
|
||||||
if let Some(ref mut listener) = self.listener_manager {
|
if let Some(ref mut listener) = self.listener_manager {
|
||||||
let mut tls_configs = Self::extract_tls_configs(&self.options.routes);
|
let mut tls_configs = Self::extract_tls_configs(&self.options.routes);
|
||||||
@@ -809,6 +837,13 @@ impl RustProxy {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Merge dynamically loaded certs from previous loadCertificate calls
|
||||||
|
for (d, c) in &self.loaded_certs {
|
||||||
|
if !tls_configs.contains_key(d) {
|
||||||
|
tls_configs.insert(d.clone(), c.clone());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
listener.set_tls_configs(tls_configs);
|
listener.set_tls_configs(tls_configs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -185,6 +185,76 @@ pub async fn wait_for_port(port: u16, timeout_ms: u64) -> bool {
|
|||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Start a TLS HTTP echo backend: accepts TLS, then responds with HTTP JSON
|
||||||
|
/// containing request details. Combines TLS acceptance with HTTP echo behavior.
|
||||||
|
pub async fn start_tls_http_backend(
|
||||||
|
port: u16,
|
||||||
|
backend_name: &str,
|
||||||
|
cert_pem: &str,
|
||||||
|
key_pem: &str,
|
||||||
|
) -> JoinHandle<()> {
|
||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
let acceptor = rustproxy_passthrough::build_tls_acceptor(cert_pem, key_pem)
|
||||||
|
.expect("Failed to build TLS acceptor");
|
||||||
|
let acceptor = Arc::new(acceptor);
|
||||||
|
let name = backend_name.to_string();
|
||||||
|
|
||||||
|
let listener = TcpListener::bind(format!("127.0.0.1:{}", port))
|
||||||
|
.await
|
||||||
|
.unwrap_or_else(|_| panic!("Failed to bind TLS HTTP backend on port {}", port));
|
||||||
|
|
||||||
|
tokio::spawn(async move {
|
||||||
|
loop {
|
||||||
|
let (stream, _) = match listener.accept().await {
|
||||||
|
Ok(conn) => conn,
|
||||||
|
Err(_) => break,
|
||||||
|
};
|
||||||
|
let acc = acceptor.clone();
|
||||||
|
let backend = name.clone();
|
||||||
|
tokio::spawn(async move {
|
||||||
|
let mut tls_stream = match acc.accept(stream).await {
|
||||||
|
Ok(s) => s,
|
||||||
|
Err(_) => return,
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut buf = vec![0u8; 16384];
|
||||||
|
let n = match tls_stream.read(&mut buf).await {
|
||||||
|
Ok(0) | Err(_) => return,
|
||||||
|
Ok(n) => n,
|
||||||
|
};
|
||||||
|
let req_str = String::from_utf8_lossy(&buf[..n]);
|
||||||
|
|
||||||
|
// Parse first line: METHOD PATH HTTP/x.x
|
||||||
|
let first_line = req_str.lines().next().unwrap_or("");
|
||||||
|
let parts: Vec<&str> = first_line.split_whitespace().collect();
|
||||||
|
let method = parts.first().copied().unwrap_or("UNKNOWN");
|
||||||
|
let path = parts.get(1).copied().unwrap_or("/");
|
||||||
|
|
||||||
|
// Extract Host header
|
||||||
|
let host = req_str
|
||||||
|
.lines()
|
||||||
|
.find(|l| l.to_lowercase().starts_with("host:"))
|
||||||
|
.map(|l| l[5..].trim())
|
||||||
|
.unwrap_or("unknown");
|
||||||
|
|
||||||
|
let body = format!(
|
||||||
|
r#"{{"method":"{}","path":"{}","host":"{}","backend":"{}"}}"#,
|
||||||
|
method, path, host, backend
|
||||||
|
);
|
||||||
|
|
||||||
|
let response = format!(
|
||||||
|
"HTTP/1.1 200 OK\r\nContent-Type: application/json\r\nContent-Length: {}\r\nConnection: close\r\n\r\n{}",
|
||||||
|
body.len(),
|
||||||
|
body,
|
||||||
|
);
|
||||||
|
let _ = tls_stream.write_all(response.as_bytes()).await;
|
||||||
|
let _ = tls_stream.shutdown().await;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
/// Helper to create a minimal route config for testing.
|
/// Helper to create a minimal route config for testing.
|
||||||
pub fn make_test_route(
|
pub fn make_test_route(
|
||||||
port: u16,
|
port: u16,
|
||||||
@@ -201,6 +271,7 @@ pub fn make_test_route(
|
|||||||
client_ip: None,
|
client_ip: None,
|
||||||
tls_version: None,
|
tls_version: None,
|
||||||
headers: None,
|
headers: None,
|
||||||
|
protocol: None,
|
||||||
},
|
},
|
||||||
action: rustproxy_config::RouteAction {
|
action: rustproxy_config::RouteAction {
|
||||||
action_type: rustproxy_config::RouteActionType::Forward,
|
action_type: rustproxy_config::RouteActionType::Forward,
|
||||||
@@ -381,6 +452,86 @@ pub fn make_tls_terminate_route(
|
|||||||
route
|
route
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Start a TLS WebSocket echo backend: accepts TLS, performs WS handshake, then echoes data.
|
||||||
|
/// Combines TLS acceptance (like `start_tls_http_backend`) with WebSocket echo (like `start_ws_echo_backend`).
|
||||||
|
pub async fn start_tls_ws_echo_backend(
|
||||||
|
port: u16,
|
||||||
|
cert_pem: &str,
|
||||||
|
key_pem: &str,
|
||||||
|
) -> JoinHandle<()> {
|
||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
let acceptor = rustproxy_passthrough::build_tls_acceptor(cert_pem, key_pem)
|
||||||
|
.expect("Failed to build TLS acceptor");
|
||||||
|
let acceptor = Arc::new(acceptor);
|
||||||
|
|
||||||
|
let listener = TcpListener::bind(format!("127.0.0.1:{}", port))
|
||||||
|
.await
|
||||||
|
.unwrap_or_else(|_| panic!("Failed to bind TLS WS echo backend on port {}", port));
|
||||||
|
|
||||||
|
tokio::spawn(async move {
|
||||||
|
loop {
|
||||||
|
let (stream, _) = match listener.accept().await {
|
||||||
|
Ok(conn) => conn,
|
||||||
|
Err(_) => break,
|
||||||
|
};
|
||||||
|
let acc = acceptor.clone();
|
||||||
|
tokio::spawn(async move {
|
||||||
|
let mut tls_stream = match acc.accept(stream).await {
|
||||||
|
Ok(s) => s,
|
||||||
|
Err(_) => return,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Read the HTTP upgrade request
|
||||||
|
let mut buf = vec![0u8; 4096];
|
||||||
|
let n = match tls_stream.read(&mut buf).await {
|
||||||
|
Ok(0) | Err(_) => return,
|
||||||
|
Ok(n) => n,
|
||||||
|
};
|
||||||
|
|
||||||
|
let req_str = String::from_utf8_lossy(&buf[..n]);
|
||||||
|
|
||||||
|
// Extract Sec-WebSocket-Key for handshake
|
||||||
|
let ws_key = req_str
|
||||||
|
.lines()
|
||||||
|
.find(|l| l.to_lowercase().starts_with("sec-websocket-key:"))
|
||||||
|
.map(|l| l.split(':').nth(1).unwrap_or("").trim().to_string())
|
||||||
|
.unwrap_or_default();
|
||||||
|
|
||||||
|
// Send 101 Switching Protocols
|
||||||
|
let accept_response = format!(
|
||||||
|
"HTTP/1.1 101 Switching Protocols\r\n\
|
||||||
|
Upgrade: websocket\r\n\
|
||||||
|
Connection: Upgrade\r\n\
|
||||||
|
Sec-WebSocket-Accept: {}\r\n\
|
||||||
|
\r\n",
|
||||||
|
ws_key
|
||||||
|
);
|
||||||
|
|
||||||
|
if tls_stream
|
||||||
|
.write_all(accept_response.as_bytes())
|
||||||
|
.await
|
||||||
|
.is_err()
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Echo all data back (raw TCP after upgrade)
|
||||||
|
let mut echo_buf = vec![0u8; 65536];
|
||||||
|
loop {
|
||||||
|
let n = match tls_stream.read(&mut echo_buf).await {
|
||||||
|
Ok(0) | Err(_) => break,
|
||||||
|
Ok(n) => n,
|
||||||
|
};
|
||||||
|
if tls_stream.write_all(&echo_buf[..n]).await.is_err() {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
/// Helper to create a TLS passthrough route for testing.
|
/// Helper to create a TLS passthrough route for testing.
|
||||||
pub fn make_tls_passthrough_route(
|
pub fn make_tls_passthrough_route(
|
||||||
port: u16,
|
port: u16,
|
||||||
|
|||||||
@@ -407,6 +407,305 @@ async fn test_websocket_through_proxy() {
|
|||||||
proxy.stop().await.unwrap();
|
proxy.stop().await.unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Test that terminate-and-reencrypt mode routes HTTP traffic through the
|
||||||
|
/// full HTTP proxy with per-request Host-based routing.
|
||||||
|
///
|
||||||
|
/// This verifies the new behavior: after TLS termination, HTTP data is detected
|
||||||
|
/// and routed through HttpProxyService (like nginx) instead of being blindly tunneled.
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_terminate_and_reencrypt_http_routing() {
|
||||||
|
let backend1_port = next_port();
|
||||||
|
let backend2_port = next_port();
|
||||||
|
let proxy_port = next_port();
|
||||||
|
|
||||||
|
let (cert1, key1) = generate_self_signed_cert("alpha.example.com");
|
||||||
|
let (cert2, key2) = generate_self_signed_cert("beta.example.com");
|
||||||
|
|
||||||
|
// Generate separate backend certs (backends are independent TLS servers)
|
||||||
|
let (backend_cert1, backend_key1) = generate_self_signed_cert("localhost");
|
||||||
|
let (backend_cert2, backend_key2) = generate_self_signed_cert("localhost");
|
||||||
|
|
||||||
|
// Start TLS HTTP echo backends (proxy re-encrypts to these)
|
||||||
|
let _b1 = start_tls_http_backend(backend1_port, "alpha", &backend_cert1, &backend_key1).await;
|
||||||
|
let _b2 = start_tls_http_backend(backend2_port, "beta", &backend_cert2, &backend_key2).await;
|
||||||
|
|
||||||
|
// Create terminate-and-reencrypt routes
|
||||||
|
let mut route1 = make_tls_terminate_route(
|
||||||
|
proxy_port, "alpha.example.com", "127.0.0.1", backend1_port, &cert1, &key1,
|
||||||
|
);
|
||||||
|
route1.action.tls.as_mut().unwrap().mode = rustproxy_config::TlsMode::TerminateAndReencrypt;
|
||||||
|
|
||||||
|
let mut route2 = make_tls_terminate_route(
|
||||||
|
proxy_port, "beta.example.com", "127.0.0.1", backend2_port, &cert2, &key2,
|
||||||
|
);
|
||||||
|
route2.action.tls.as_mut().unwrap().mode = rustproxy_config::TlsMode::TerminateAndReencrypt;
|
||||||
|
|
||||||
|
let options = RustProxyOptions {
|
||||||
|
routes: vec![route1, route2],
|
||||||
|
..Default::default()
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut proxy = RustProxy::new(options).unwrap();
|
||||||
|
proxy.start().await.unwrap();
|
||||||
|
assert!(wait_for_port(proxy_port, 2000).await);
|
||||||
|
|
||||||
|
// Test alpha domain - HTTP request through TLS terminate-and-reencrypt
|
||||||
|
let alpha_result = with_timeout(async {
|
||||||
|
let _ = rustls::crypto::ring::default_provider().install_default();
|
||||||
|
let tls_config = rustls::ClientConfig::builder()
|
||||||
|
.dangerous()
|
||||||
|
.with_custom_certificate_verifier(std::sync::Arc::new(InsecureVerifier))
|
||||||
|
.with_no_client_auth();
|
||||||
|
let connector = tokio_rustls::TlsConnector::from(std::sync::Arc::new(tls_config));
|
||||||
|
|
||||||
|
let stream = tokio::net::TcpStream::connect(format!("127.0.0.1:{}", proxy_port))
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let server_name = rustls::pki_types::ServerName::try_from("alpha.example.com".to_string()).unwrap();
|
||||||
|
let mut tls_stream = connector.connect(server_name, stream).await.unwrap();
|
||||||
|
|
||||||
|
let request = "GET /api/data HTTP/1.1\r\nHost: alpha.example.com\r\nConnection: close\r\n\r\n";
|
||||||
|
tls_stream.write_all(request.as_bytes()).await.unwrap();
|
||||||
|
|
||||||
|
let mut response = Vec::new();
|
||||||
|
tls_stream.read_to_end(&mut response).await.unwrap();
|
||||||
|
String::from_utf8_lossy(&response).to_string()
|
||||||
|
}, 10)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let alpha_body = extract_body(&alpha_result);
|
||||||
|
assert!(
|
||||||
|
alpha_body.contains(r#""backend":"alpha"#),
|
||||||
|
"Expected alpha backend, got: {}",
|
||||||
|
alpha_body
|
||||||
|
);
|
||||||
|
assert!(
|
||||||
|
alpha_body.contains(r#""method":"GET"#),
|
||||||
|
"Expected GET method, got: {}",
|
||||||
|
alpha_body
|
||||||
|
);
|
||||||
|
assert!(
|
||||||
|
alpha_body.contains(r#""path":"/api/data"#),
|
||||||
|
"Expected /api/data path, got: {}",
|
||||||
|
alpha_body
|
||||||
|
);
|
||||||
|
// Verify original Host header is preserved (not replaced with backend IP:port)
|
||||||
|
assert!(
|
||||||
|
alpha_body.contains(r#""host":"alpha.example.com"#),
|
||||||
|
"Expected original Host header alpha.example.com, got: {}",
|
||||||
|
alpha_body
|
||||||
|
);
|
||||||
|
|
||||||
|
// Test beta domain - different host goes to different backend
|
||||||
|
let beta_result = with_timeout(async {
|
||||||
|
let _ = rustls::crypto::ring::default_provider().install_default();
|
||||||
|
let tls_config = rustls::ClientConfig::builder()
|
||||||
|
.dangerous()
|
||||||
|
.with_custom_certificate_verifier(std::sync::Arc::new(InsecureVerifier))
|
||||||
|
.with_no_client_auth();
|
||||||
|
let connector = tokio_rustls::TlsConnector::from(std::sync::Arc::new(tls_config));
|
||||||
|
|
||||||
|
let stream = tokio::net::TcpStream::connect(format!("127.0.0.1:{}", proxy_port))
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let server_name = rustls::pki_types::ServerName::try_from("beta.example.com".to_string()).unwrap();
|
||||||
|
let mut tls_stream = connector.connect(server_name, stream).await.unwrap();
|
||||||
|
|
||||||
|
let request = "GET /other HTTP/1.1\r\nHost: beta.example.com\r\nConnection: close\r\n\r\n";
|
||||||
|
tls_stream.write_all(request.as_bytes()).await.unwrap();
|
||||||
|
|
||||||
|
let mut response = Vec::new();
|
||||||
|
tls_stream.read_to_end(&mut response).await.unwrap();
|
||||||
|
String::from_utf8_lossy(&response).to_string()
|
||||||
|
}, 10)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let beta_body = extract_body(&beta_result);
|
||||||
|
assert!(
|
||||||
|
beta_body.contains(r#""backend":"beta"#),
|
||||||
|
"Expected beta backend, got: {}",
|
||||||
|
beta_body
|
||||||
|
);
|
||||||
|
assert!(
|
||||||
|
beta_body.contains(r#""path":"/other"#),
|
||||||
|
"Expected /other path, got: {}",
|
||||||
|
beta_body
|
||||||
|
);
|
||||||
|
// Verify original Host header is preserved for beta too
|
||||||
|
assert!(
|
||||||
|
beta_body.contains(r#""host":"beta.example.com"#),
|
||||||
|
"Expected original Host header beta.example.com, got: {}",
|
||||||
|
beta_body
|
||||||
|
);
|
||||||
|
|
||||||
|
proxy.stop().await.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Test that WebSocket upgrade works through terminate-and-reencrypt mode.
|
||||||
|
///
|
||||||
|
/// Verifies the full chain: client→TLS→proxy terminates→re-encrypts→TLS→backend WebSocket.
|
||||||
|
/// The proxy's `handle_websocket_upgrade` checks `upstream.use_tls` and calls
|
||||||
|
/// `connect_tls_backend()` when true. This test covers that path.
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_terminate_and_reencrypt_websocket() {
|
||||||
|
let backend_port = next_port();
|
||||||
|
let proxy_port = next_port();
|
||||||
|
let domain = "ws.example.com";
|
||||||
|
|
||||||
|
// Frontend cert (client→proxy TLS)
|
||||||
|
let (frontend_cert, frontend_key) = generate_self_signed_cert(domain);
|
||||||
|
// Backend cert (proxy→backend TLS)
|
||||||
|
let (backend_cert, backend_key) = generate_self_signed_cert("localhost");
|
||||||
|
|
||||||
|
// Start TLS WebSocket echo backend
|
||||||
|
let _backend = start_tls_ws_echo_backend(backend_port, &backend_cert, &backend_key).await;
|
||||||
|
|
||||||
|
// Create terminate-and-reencrypt route
|
||||||
|
let mut route = make_tls_terminate_route(
|
||||||
|
proxy_port,
|
||||||
|
domain,
|
||||||
|
"127.0.0.1",
|
||||||
|
backend_port,
|
||||||
|
&frontend_cert,
|
||||||
|
&frontend_key,
|
||||||
|
);
|
||||||
|
route.action.tls.as_mut().unwrap().mode = rustproxy_config::TlsMode::TerminateAndReencrypt;
|
||||||
|
|
||||||
|
let options = RustProxyOptions {
|
||||||
|
routes: vec![route],
|
||||||
|
..Default::default()
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut proxy = RustProxy::new(options).unwrap();
|
||||||
|
proxy.start().await.unwrap();
|
||||||
|
assert!(wait_for_port(proxy_port, 2000).await);
|
||||||
|
|
||||||
|
let result = with_timeout(
|
||||||
|
async {
|
||||||
|
let _ = rustls::crypto::ring::default_provider().install_default();
|
||||||
|
let tls_config = rustls::ClientConfig::builder()
|
||||||
|
.dangerous()
|
||||||
|
.with_custom_certificate_verifier(std::sync::Arc::new(InsecureVerifier))
|
||||||
|
.with_no_client_auth();
|
||||||
|
let connector =
|
||||||
|
tokio_rustls::TlsConnector::from(std::sync::Arc::new(tls_config));
|
||||||
|
|
||||||
|
let stream = tokio::net::TcpStream::connect(format!("127.0.0.1:{}", proxy_port))
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let server_name =
|
||||||
|
rustls::pki_types::ServerName::try_from(domain.to_string()).unwrap();
|
||||||
|
let mut tls_stream = connector.connect(server_name, stream).await.unwrap();
|
||||||
|
|
||||||
|
// Send WebSocket upgrade request through TLS
|
||||||
|
let request = format!(
|
||||||
|
"GET /ws HTTP/1.1\r\n\
|
||||||
|
Host: {}\r\n\
|
||||||
|
Upgrade: websocket\r\n\
|
||||||
|
Connection: Upgrade\r\n\
|
||||||
|
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==\r\n\
|
||||||
|
Sec-WebSocket-Version: 13\r\n\
|
||||||
|
\r\n",
|
||||||
|
domain
|
||||||
|
);
|
||||||
|
tls_stream.write_all(request.as_bytes()).await.unwrap();
|
||||||
|
|
||||||
|
// Read the 101 response (byte-by-byte until \r\n\r\n)
|
||||||
|
let mut response_buf = Vec::with_capacity(4096);
|
||||||
|
let mut temp = [0u8; 1];
|
||||||
|
loop {
|
||||||
|
let n = tls_stream.read(&mut temp).await.unwrap();
|
||||||
|
if n == 0 {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
response_buf.push(temp[0]);
|
||||||
|
if response_buf.len() >= 4 {
|
||||||
|
let len = response_buf.len();
|
||||||
|
if response_buf[len - 4..] == *b"\r\n\r\n" {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let response_str = String::from_utf8_lossy(&response_buf).to_string();
|
||||||
|
assert!(
|
||||||
|
response_str.contains("101"),
|
||||||
|
"Expected 101 Switching Protocols, got: {}",
|
||||||
|
response_str
|
||||||
|
);
|
||||||
|
assert!(
|
||||||
|
response_str.to_lowercase().contains("upgrade: websocket"),
|
||||||
|
"Expected Upgrade header, got: {}",
|
||||||
|
response_str
|
||||||
|
);
|
||||||
|
|
||||||
|
// After upgrade, send data and verify echo
|
||||||
|
let test_data = b"Hello TLS WebSocket!";
|
||||||
|
tls_stream.write_all(test_data).await.unwrap();
|
||||||
|
|
||||||
|
// Read echoed data
|
||||||
|
let mut echo_buf = vec![0u8; 256];
|
||||||
|
let n = tls_stream.read(&mut echo_buf).await.unwrap();
|
||||||
|
let echoed = &echo_buf[..n];
|
||||||
|
|
||||||
|
assert_eq!(echoed, test_data, "Expected echo of sent data");
|
||||||
|
|
||||||
|
"ok".to_string()
|
||||||
|
},
|
||||||
|
10,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(result, "ok");
|
||||||
|
proxy.stop().await.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Test that the protocol field on route config is accepted and processed.
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_protocol_field_in_route_config() {
|
||||||
|
let backend_port = next_port();
|
||||||
|
let proxy_port = next_port();
|
||||||
|
|
||||||
|
let _backend = start_http_echo_backend(backend_port, "main").await;
|
||||||
|
|
||||||
|
// Create a route with protocol: "http" - should only match HTTP traffic
|
||||||
|
let mut route = make_test_route(proxy_port, None, "127.0.0.1", backend_port);
|
||||||
|
route.route_match.protocol = Some("http".to_string());
|
||||||
|
|
||||||
|
let options = RustProxyOptions {
|
||||||
|
routes: vec![route],
|
||||||
|
..Default::default()
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut proxy = RustProxy::new(options).unwrap();
|
||||||
|
proxy.start().await.unwrap();
|
||||||
|
assert!(wait_for_port(proxy_port, 2000).await);
|
||||||
|
|
||||||
|
// HTTP request should match the route and get proxied
|
||||||
|
let result = with_timeout(async {
|
||||||
|
let response = send_http_request(proxy_port, "example.com", "GET", "/test").await;
|
||||||
|
extract_body(&response).to_string()
|
||||||
|
}, 10)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert!(
|
||||||
|
result.contains(r#""backend":"main"#),
|
||||||
|
"Expected main backend, got: {}",
|
||||||
|
result
|
||||||
|
);
|
||||||
|
assert!(
|
||||||
|
result.contains(r#""path":"/test"#),
|
||||||
|
"Expected /test path, got: {}",
|
||||||
|
result
|
||||||
|
);
|
||||||
|
|
||||||
|
proxy.stop().await.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
/// InsecureVerifier for test TLS client connections.
|
/// InsecureVerifier for test TLS client connections.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
struct InsecureVerifier;
|
struct InsecureVerifier;
|
||||||
|
|||||||
@@ -562,4 +562,168 @@ tap.test('Route Integration - Combining Multiple Route Types', async () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// --------------------------------- Protocol Match Field Tests ---------------------------------
|
||||||
|
|
||||||
|
tap.test('Routes: Should accept protocol field on route match', async () => {
|
||||||
|
// Create a route with protocol: 'http'
|
||||||
|
const httpOnlyRoute: IRouteConfig = {
|
||||||
|
match: {
|
||||||
|
ports: 443,
|
||||||
|
domains: 'api.example.com',
|
||||||
|
protocol: 'http',
|
||||||
|
},
|
||||||
|
action: {
|
||||||
|
type: 'forward',
|
||||||
|
targets: [{ host: 'backend', port: 8080 }],
|
||||||
|
tls: {
|
||||||
|
mode: 'terminate',
|
||||||
|
certificate: 'auto',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
name: 'HTTP-only Route',
|
||||||
|
};
|
||||||
|
|
||||||
|
// Validate the route - protocol field should not cause errors
|
||||||
|
const validation = validateRouteConfig(httpOnlyRoute);
|
||||||
|
expect(validation.valid).toBeTrue();
|
||||||
|
|
||||||
|
// Verify the protocol field is preserved
|
||||||
|
expect(httpOnlyRoute.match.protocol).toEqual('http');
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('Routes: Should accept protocol tcp on route match', async () => {
|
||||||
|
// Create a route with protocol: 'tcp'
|
||||||
|
const tcpOnlyRoute: IRouteConfig = {
|
||||||
|
match: {
|
||||||
|
ports: 443,
|
||||||
|
domains: 'db.example.com',
|
||||||
|
protocol: 'tcp',
|
||||||
|
},
|
||||||
|
action: {
|
||||||
|
type: 'forward',
|
||||||
|
targets: [{ host: 'db-server', port: 5432 }],
|
||||||
|
tls: {
|
||||||
|
mode: 'passthrough',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
name: 'TCP-only Route',
|
||||||
|
};
|
||||||
|
|
||||||
|
const validation = validateRouteConfig(tcpOnlyRoute);
|
||||||
|
expect(validation.valid).toBeTrue();
|
||||||
|
|
||||||
|
expect(tcpOnlyRoute.match.protocol).toEqual('tcp');
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('Routes: Protocol field should work with terminate-and-reencrypt', async () => {
|
||||||
|
// Create a terminate-and-reencrypt route that only accepts HTTP
|
||||||
|
const reencryptRoute = createHttpsTerminateRoute(
|
||||||
|
'secure.example.com',
|
||||||
|
{ host: 'backend', port: 443 },
|
||||||
|
{ reencrypt: true, certificate: 'auto', name: 'Reencrypt HTTP Route' }
|
||||||
|
);
|
||||||
|
|
||||||
|
// Set protocol restriction to http
|
||||||
|
reencryptRoute.match.protocol = 'http';
|
||||||
|
|
||||||
|
// Validate the route
|
||||||
|
const validation = validateRouteConfig(reencryptRoute);
|
||||||
|
expect(validation.valid).toBeTrue();
|
||||||
|
|
||||||
|
// Verify TLS mode
|
||||||
|
expect(reencryptRoute.action.tls?.mode).toEqual('terminate-and-reencrypt');
|
||||||
|
// Verify protocol field is preserved
|
||||||
|
expect(reencryptRoute.match.protocol).toEqual('http');
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('Routes: Protocol field should not affect domain/port matching', async () => {
|
||||||
|
// Routes with and without protocol field should both match the same domain/port
|
||||||
|
const routeWithProtocol: IRouteConfig = {
|
||||||
|
match: {
|
||||||
|
ports: 443,
|
||||||
|
domains: 'example.com',
|
||||||
|
protocol: 'http',
|
||||||
|
},
|
||||||
|
action: {
|
||||||
|
type: 'forward',
|
||||||
|
targets: [{ host: 'backend', port: 8080 }],
|
||||||
|
tls: { mode: 'terminate', certificate: 'auto' },
|
||||||
|
},
|
||||||
|
name: 'With Protocol',
|
||||||
|
priority: 10,
|
||||||
|
};
|
||||||
|
|
||||||
|
const routeWithoutProtocol: IRouteConfig = {
|
||||||
|
match: {
|
||||||
|
ports: 443,
|
||||||
|
domains: 'example.com',
|
||||||
|
},
|
||||||
|
action: {
|
||||||
|
type: 'forward',
|
||||||
|
targets: [{ host: 'fallback', port: 8081 }],
|
||||||
|
tls: { mode: 'terminate', certificate: 'auto' },
|
||||||
|
},
|
||||||
|
name: 'Without Protocol',
|
||||||
|
priority: 5,
|
||||||
|
};
|
||||||
|
|
||||||
|
const routes = [routeWithProtocol, routeWithoutProtocol];
|
||||||
|
|
||||||
|
// Both routes should match the domain/port (protocol is a hint for Rust-side matching)
|
||||||
|
const matches = findMatchingRoutes(routes, { domain: 'example.com', port: 443 });
|
||||||
|
expect(matches.length).toEqual(2);
|
||||||
|
|
||||||
|
// The one with higher priority should be first
|
||||||
|
const best = findBestMatchingRoute(routes, { domain: 'example.com', port: 443 });
|
||||||
|
expect(best).not.toBeUndefined();
|
||||||
|
expect(best!.name).toEqual('With Protocol');
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('Routes: Protocol field preserved through route cloning', async () => {
|
||||||
|
const original: IRouteConfig = {
|
||||||
|
match: {
|
||||||
|
ports: 8443,
|
||||||
|
domains: 'clone-test.example.com',
|
||||||
|
protocol: 'http',
|
||||||
|
},
|
||||||
|
action: {
|
||||||
|
type: 'forward',
|
||||||
|
targets: [{ host: 'backend', port: 3000 }],
|
||||||
|
tls: { mode: 'terminate-and-reencrypt', certificate: 'auto' },
|
||||||
|
},
|
||||||
|
name: 'Clone Test',
|
||||||
|
};
|
||||||
|
|
||||||
|
const cloned = cloneRoute(original);
|
||||||
|
|
||||||
|
// Verify protocol is preserved in clone
|
||||||
|
expect(cloned.match.protocol).toEqual('http');
|
||||||
|
expect(cloned.action.tls?.mode).toEqual('terminate-and-reencrypt');
|
||||||
|
|
||||||
|
// Modify clone should not affect original
|
||||||
|
cloned.match.protocol = 'tcp';
|
||||||
|
expect(original.match.protocol).toEqual('http');
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('Routes: Protocol field preserved through route merging', async () => {
|
||||||
|
const base: IRouteConfig = {
|
||||||
|
match: {
|
||||||
|
ports: 443,
|
||||||
|
domains: 'merge-test.example.com',
|
||||||
|
protocol: 'http',
|
||||||
|
},
|
||||||
|
action: {
|
||||||
|
type: 'forward',
|
||||||
|
targets: [{ host: 'backend', port: 3000 }],
|
||||||
|
tls: { mode: 'terminate-and-reencrypt', certificate: 'auto' },
|
||||||
|
},
|
||||||
|
name: 'Merge Base',
|
||||||
|
};
|
||||||
|
|
||||||
|
// Merge with override that changes name but not protocol
|
||||||
|
const merged = mergeRouteConfigs(base, { name: 'Merged Route' });
|
||||||
|
expect(merged.match.protocol).toEqual('http');
|
||||||
|
expect(merged.name).toEqual('Merged Route');
|
||||||
|
});
|
||||||
|
|
||||||
export default tap.start();
|
export default tap.start();
|
||||||
@@ -168,6 +168,22 @@ tap.test('TCP forward - real-time byte tracking', async (tools) => {
|
|||||||
const byRoute = m.throughput.byRoute();
|
const byRoute = m.throughput.byRoute();
|
||||||
console.log('TCP forward — throughput byRoute:', Array.from(byRoute.entries()));
|
console.log('TCP forward — throughput byRoute:', Array.from(byRoute.entries()));
|
||||||
|
|
||||||
|
// ── v25.2.0: Per-IP tracking (TCP connections) ──
|
||||||
|
const byIP = m.connections.byIP();
|
||||||
|
console.log('TCP forward — connections byIP:', Array.from(byIP.entries()));
|
||||||
|
expect(byIP.size).toBeGreaterThan(0);
|
||||||
|
|
||||||
|
const topIPs = m.connections.topIPs(10);
|
||||||
|
console.log('TCP forward — topIPs:', topIPs);
|
||||||
|
expect(topIPs.length).toBeGreaterThan(0);
|
||||||
|
expect(topIPs[0].ip).toBeTruthy();
|
||||||
|
|
||||||
|
// ── v25.2.0: Throughput history ──
|
||||||
|
const history = m.throughput.history(10);
|
||||||
|
console.log('TCP forward — throughput history length:', history.length);
|
||||||
|
expect(history.length).toBeGreaterThan(0);
|
||||||
|
expect(history[0].timestamp).toBeGreaterThan(0);
|
||||||
|
|
||||||
await proxy.stop();
|
await proxy.stop();
|
||||||
await tools.delayFor(200);
|
await tools.delayFor(200);
|
||||||
});
|
});
|
||||||
@@ -233,6 +249,22 @@ tap.test('HTTP forward - byte totals tracking', async (tools) => {
|
|||||||
expect(bytesIn).toBeGreaterThan(0);
|
expect(bytesIn).toBeGreaterThan(0);
|
||||||
expect(bytesOut).toBeGreaterThan(0);
|
expect(bytesOut).toBeGreaterThan(0);
|
||||||
|
|
||||||
|
// ── v25.2.0: Per-IP tracking (HTTP connections) ──
|
||||||
|
const byIP = m.connections.byIP();
|
||||||
|
console.log('HTTP forward — connections byIP:', Array.from(byIP.entries()));
|
||||||
|
expect(byIP.size).toBeGreaterThan(0);
|
||||||
|
|
||||||
|
const topIPs = m.connections.topIPs(10);
|
||||||
|
console.log('HTTP forward — topIPs:', topIPs);
|
||||||
|
expect(topIPs.length).toBeGreaterThan(0);
|
||||||
|
expect(topIPs[0].ip).toBeTruthy();
|
||||||
|
|
||||||
|
// ── v25.2.0: HTTP request counting ──
|
||||||
|
const totalReqs = m.requests.total();
|
||||||
|
const rps = m.requests.perSecond();
|
||||||
|
console.log(`HTTP forward — requests total: ${totalReqs}, perSecond: ${rps}`);
|
||||||
|
expect(totalReqs).toBeGreaterThan(0);
|
||||||
|
|
||||||
await proxy.stop();
|
await proxy.stop();
|
||||||
await tools.delayFor(200);
|
await tools.delayFor(200);
|
||||||
});
|
});
|
||||||
@@ -607,6 +639,37 @@ tap.test('Throughput sampling - values appear during active HTTP traffic', async
|
|||||||
console.log(`Sampling test — recent throughput: in=${tpRecent.in}, out=${tpRecent.out}`);
|
console.log(`Sampling test — recent throughput: in=${tpRecent.in}, out=${tpRecent.out}`);
|
||||||
expect(tpRecent.in + tpRecent.out).toBeGreaterThan(0);
|
expect(tpRecent.in + tpRecent.out).toBeGreaterThan(0);
|
||||||
|
|
||||||
|
// ── v25.2.0: Per-IP tracking ──
|
||||||
|
const byIP = m.connections.byIP();
|
||||||
|
console.log('Sampling test — connections byIP:', Array.from(byIP.entries()));
|
||||||
|
expect(byIP.size).toBeGreaterThan(0);
|
||||||
|
|
||||||
|
const topIPs = m.connections.topIPs(10);
|
||||||
|
console.log('Sampling test — topIPs:', topIPs);
|
||||||
|
expect(topIPs.length).toBeGreaterThan(0);
|
||||||
|
expect(topIPs[0].ip).toBeTruthy();
|
||||||
|
expect(topIPs[0].count).toBeGreaterThanOrEqual(0);
|
||||||
|
|
||||||
|
// ── v25.2.0: Throughput history ──
|
||||||
|
const history = m.throughput.history(10);
|
||||||
|
console.log(`Sampling test — throughput history: ${history.length} points`);
|
||||||
|
if (history.length > 0) {
|
||||||
|
console.log(' first:', history[0], 'last:', history[history.length - 1]);
|
||||||
|
}
|
||||||
|
expect(history.length).toBeGreaterThan(0);
|
||||||
|
expect(history[0].timestamp).toBeGreaterThan(0);
|
||||||
|
|
||||||
|
// ── v25.2.0: Per-IP throughput ──
|
||||||
|
const tpByIP = m.throughput.byIP();
|
||||||
|
console.log('Sampling test — throughput byIP:', Array.from(tpByIP.entries()));
|
||||||
|
|
||||||
|
// ── v25.2.0: HTTP request counting ──
|
||||||
|
const totalReqs = m.requests.total();
|
||||||
|
const rps = m.requests.perSecond();
|
||||||
|
const rpm = m.requests.perMinute();
|
||||||
|
console.log(`Sampling test — HTTP requests: total=${totalReqs}, perSecond=${rps}, perMinute=${rpm}`);
|
||||||
|
expect(totalReqs).toBeGreaterThan(0);
|
||||||
|
|
||||||
// Stop sending
|
// Stop sending
|
||||||
sending = false;
|
sending = false;
|
||||||
await sendLoop;
|
await sendLoop;
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartproxy',
|
name: '@push.rocks/smartproxy',
|
||||||
version: '25.1.0',
|
version: '25.7.5',
|
||||||
description: 'A powerful proxy package with unified route-based configuration for high traffic management. Features include SSL/TLS support, flexible routing patterns, WebSocket handling, advanced security options, and automatic ACME certificate management.'
|
description: 'A powerful proxy package with unified route-based configuration for high traffic management. Features include SSL/TLS support, flexible routing patterns, WebSocket handling, advanced security options, and automatic ACME certificate management.'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,14 +2,13 @@
|
|||||||
import { EventEmitter } from 'node:events';
|
import { EventEmitter } from 'node:events';
|
||||||
import * as fs from 'node:fs';
|
import * as fs from 'node:fs';
|
||||||
import * as http from 'node:http';
|
import * as http from 'node:http';
|
||||||
import * as https from 'node:https';
|
|
||||||
import * as net from 'node:net';
|
import * as net from 'node:net';
|
||||||
import * as path from 'node:path';
|
import * as path from 'node:path';
|
||||||
import * as tls from 'node:tls';
|
import * as tls from 'node:tls';
|
||||||
import * as url from 'node:url';
|
import * as url from 'node:url';
|
||||||
import * as http2 from 'node:http2';
|
import * as http2 from 'node:http2';
|
||||||
|
|
||||||
export { EventEmitter, fs, http, https, net, path, tls, url, http2 };
|
export { EventEmitter, fs, http, net, path, tls, url, http2 };
|
||||||
|
|
||||||
// tsclass scope
|
// tsclass scope
|
||||||
import * as tsclass from '@tsclass/tsclass';
|
import * as tsclass from '@tsclass/tsclass';
|
||||||
@@ -17,44 +16,19 @@ import * as tsclass from '@tsclass/tsclass';
|
|||||||
export { tsclass };
|
export { tsclass };
|
||||||
|
|
||||||
// pushrocks scope
|
// pushrocks scope
|
||||||
import * as lik from '@push.rocks/lik';
|
|
||||||
import * as smartdelay from '@push.rocks/smartdelay';
|
|
||||||
import * as smartpromise from '@push.rocks/smartpromise';
|
|
||||||
import * as smartrequest from '@push.rocks/smartrequest';
|
|
||||||
import * as smartstring from '@push.rocks/smartstring';
|
|
||||||
import * as smartfile from '@push.rocks/smartfile';
|
|
||||||
import * as smartcrypto from '@push.rocks/smartcrypto';
|
import * as smartcrypto from '@push.rocks/smartcrypto';
|
||||||
import * as smartacme from '@push.rocks/smartacme';
|
|
||||||
import * as smartacmePlugins from '@push.rocks/smartacme/dist_ts/smartacme.plugins.js';
|
|
||||||
import * as smartacmeHandlers from '@push.rocks/smartacme/dist_ts/handlers/index.js';
|
|
||||||
import * as smartlog from '@push.rocks/smartlog';
|
import * as smartlog from '@push.rocks/smartlog';
|
||||||
import * as smartlogDestinationLocal from '@push.rocks/smartlog/destination-local';
|
import * as smartlogDestinationLocal from '@push.rocks/smartlog/destination-local';
|
||||||
import * as taskbuffer from '@push.rocks/taskbuffer';
|
|
||||||
import * as smartrx from '@push.rocks/smartrx';
|
|
||||||
import * as smartrust from '@push.rocks/smartrust';
|
import * as smartrust from '@push.rocks/smartrust';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
lik,
|
|
||||||
smartdelay,
|
|
||||||
smartrequest,
|
|
||||||
smartpromise,
|
|
||||||
smartstring,
|
|
||||||
smartfile,
|
|
||||||
smartcrypto,
|
smartcrypto,
|
||||||
smartacme,
|
|
||||||
smartacmePlugins,
|
|
||||||
smartacmeHandlers,
|
|
||||||
smartlog,
|
smartlog,
|
||||||
smartlogDestinationLocal,
|
smartlogDestinationLocal,
|
||||||
taskbuffer,
|
|
||||||
smartrx,
|
|
||||||
smartrust,
|
smartrust,
|
||||||
};
|
};
|
||||||
|
|
||||||
// third party scope
|
// third party scope
|
||||||
import prettyMs from 'pretty-ms';
|
|
||||||
import * as ws from 'ws';
|
|
||||||
import wsDefault from 'ws';
|
|
||||||
import { minimatch } from 'minimatch';
|
import { minimatch } from 'minimatch';
|
||||||
|
|
||||||
export { prettyMs, ws, wsDefault, minimatch };
|
export { minimatch };
|
||||||
|
|||||||
@@ -180,6 +180,21 @@ export interface ISmartProxyOptions {
|
|||||||
*/
|
*/
|
||||||
certProvisionFallbackToAcme?: boolean;
|
certProvisionFallbackToAcme?: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Per-domain timeout in ms for certProvisionFunction calls.
|
||||||
|
* If a single domain's provisioning takes longer than this, it's aborted
|
||||||
|
* and a certificate-failed event is emitted.
|
||||||
|
* Default: 300000 (5 minutes)
|
||||||
|
*/
|
||||||
|
certProvisionTimeout?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Maximum number of domains to provision certificates for concurrently.
|
||||||
|
* Prevents overwhelming ACME providers when many domains provision at once.
|
||||||
|
* Default: 4
|
||||||
|
*/
|
||||||
|
certProvisionConcurrency?: number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disable the default self-signed fallback certificate.
|
* Disable the default self-signed fallback certificate.
|
||||||
* When false (default), a self-signed cert is generated at startup and loaded
|
* When false (default), a self-signed cert is generated at startup and loaded
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ export interface IRouteMatch {
|
|||||||
clientIp?: string[]; // Match specific client IPs
|
clientIp?: string[]; // Match specific client IPs
|
||||||
tlsVersion?: string[]; // Match specific TLS versions
|
tlsVersion?: string[]; // Match specific TLS versions
|
||||||
headers?: Record<string, string | RegExp>; // Match specific HTTP headers
|
headers?: Record<string, string | RegExp>; // Match specific HTTP headers
|
||||||
|
protocol?: 'http' | 'tcp'; // Match specific protocol (http includes h2 + websocket upgrades)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -72,12 +72,23 @@ export class RustMetricsAdapter implements IMetrics {
|
|||||||
return result;
|
return result;
|
||||||
},
|
},
|
||||||
byIP: (): Map<string, number> => {
|
byIP: (): Map<string, number> => {
|
||||||
// Per-IP tracking not yet available from Rust
|
const result = new Map<string, number>();
|
||||||
return new Map();
|
if (this.cache?.ips) {
|
||||||
|
for (const [ip, im] of Object.entries(this.cache.ips)) {
|
||||||
|
result.set(ip, (im as any).activeConnections ?? 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
},
|
},
|
||||||
topIPs: (_limit?: number): Array<{ ip: string; count: number }> => {
|
topIPs: (limit: number = 10): Array<{ ip: string; count: number }> => {
|
||||||
// Per-IP tracking not yet available from Rust
|
const result: Array<{ ip: string; count: number }> = [];
|
||||||
return [];
|
if (this.cache?.ips) {
|
||||||
|
for (const [ip, im] of Object.entries(this.cache.ips)) {
|
||||||
|
result.push({ ip, count: (im as any).activeConnections ?? 0 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
result.sort((a, b) => b.count - a.count);
|
||||||
|
return result.slice(0, limit);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -100,9 +111,13 @@ export class RustMetricsAdapter implements IMetrics {
|
|||||||
custom: (_seconds: number): IThroughputData => {
|
custom: (_seconds: number): IThroughputData => {
|
||||||
return this.throughput.instant();
|
return this.throughput.instant();
|
||||||
},
|
},
|
||||||
history: (_seconds: number): Array<IThroughputHistoryPoint> => {
|
history: (seconds: number): Array<IThroughputHistoryPoint> => {
|
||||||
// Throughput history not yet available from Rust
|
if (!this.cache?.throughputHistory) return [];
|
||||||
return [];
|
return this.cache.throughputHistory.slice(-seconds).map((p: any) => ({
|
||||||
|
timestamp: p.timestampMs,
|
||||||
|
in: p.bytesIn,
|
||||||
|
out: p.bytesOut,
|
||||||
|
}));
|
||||||
},
|
},
|
||||||
byRoute: (_windowSeconds?: number): Map<string, IThroughputData> => {
|
byRoute: (_windowSeconds?: number): Map<string, IThroughputData> => {
|
||||||
const result = new Map<string, IThroughputData>();
|
const result = new Map<string, IThroughputData>();
|
||||||
@@ -117,21 +132,28 @@ export class RustMetricsAdapter implements IMetrics {
|
|||||||
return result;
|
return result;
|
||||||
},
|
},
|
||||||
byIP: (_windowSeconds?: number): Map<string, IThroughputData> => {
|
byIP: (_windowSeconds?: number): Map<string, IThroughputData> => {
|
||||||
return new Map();
|
const result = new Map<string, IThroughputData>();
|
||||||
|
if (this.cache?.ips) {
|
||||||
|
for (const [ip, im] of Object.entries(this.cache.ips)) {
|
||||||
|
result.set(ip, {
|
||||||
|
in: (im as any).throughputInBytesPerSec ?? 0,
|
||||||
|
out: (im as any).throughputOutBytesPerSec ?? 0,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
public requests = {
|
public requests = {
|
||||||
perSecond: (): number => {
|
perSecond: (): number => {
|
||||||
// Rust tracks connections, not HTTP requests (TCP-level proxy)
|
return this.cache?.httpRequestsPerSec ?? 0;
|
||||||
return 0;
|
|
||||||
},
|
},
|
||||||
perMinute: (): number => {
|
perMinute: (): number => {
|
||||||
return 0;
|
return (this.cache?.httpRequestsPerSecRecent ?? 0) * 60;
|
||||||
},
|
},
|
||||||
total: (): number => {
|
total: (): number => {
|
||||||
// Use total connections as a proxy for total requests
|
return this.cache?.totalHttpRequests ?? this.cache?.totalConnections ?? 0;
|
||||||
return this.cache?.totalConnections ?? 0;
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import { SharedRouteManager as RouteManager } from '../../core/routing/route-man
|
|||||||
import { RouteValidator } from './utils/route-validator.js';
|
import { RouteValidator } from './utils/route-validator.js';
|
||||||
import { generateDefaultCertificate } from './utils/default-cert-generator.js';
|
import { generateDefaultCertificate } from './utils/default-cert-generator.js';
|
||||||
import { Mutex } from './utils/mutex.js';
|
import { Mutex } from './utils/mutex.js';
|
||||||
|
import { ConcurrencySemaphore } from './utils/concurrency-semaphore.js';
|
||||||
|
|
||||||
// Types
|
// Types
|
||||||
import type { ISmartProxyOptions, TSmartProxyCertProvisionObject, IAcmeOptions, ICertProvisionEventComms, ICertificateIssuedEvent, ICertificateFailedEvent } from './models/interfaces.js';
|
import type { ISmartProxyOptions, TSmartProxyCertProvisionObject, IAcmeOptions, ICertProvisionEventComms, ICertificateIssuedEvent, ICertificateFailedEvent } from './models/interfaces.js';
|
||||||
@@ -38,6 +39,7 @@ export class SmartProxy extends plugins.EventEmitter {
|
|||||||
private metricsAdapter: RustMetricsAdapter;
|
private metricsAdapter: RustMetricsAdapter;
|
||||||
private routeUpdateLock: Mutex;
|
private routeUpdateLock: Mutex;
|
||||||
private stopping = false;
|
private stopping = false;
|
||||||
|
private certProvisionPromise: Promise<void> | null = null;
|
||||||
|
|
||||||
constructor(settingsArg: ISmartProxyOptions) {
|
constructor(settingsArg: ISmartProxyOptions) {
|
||||||
super();
|
super();
|
||||||
@@ -191,13 +193,18 @@ export class SmartProxy extends plugins.EventEmitter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle certProvisionFunction
|
// Start metrics polling BEFORE cert provisioning — the Rust engine is already
|
||||||
await this.provisionCertificatesViaCallback(preloadedDomains);
|
// running and accepting connections, so metrics should be available immediately.
|
||||||
|
// Cert provisioning can hang indefinitely (e.g. DNS-01 ACME timeouts) and must
|
||||||
// Start metrics polling
|
// not block metrics collection.
|
||||||
this.metricsAdapter.startPolling();
|
this.metricsAdapter.startPolling();
|
||||||
|
|
||||||
logger.log('info', 'SmartProxy started (Rust engine)', { component: 'smart-proxy' });
|
logger.log('info', 'SmartProxy started (Rust engine)', { component: 'smart-proxy' });
|
||||||
|
|
||||||
|
// Fire-and-forget cert provisioning — Rust engine is already running and serving traffic.
|
||||||
|
// Events (certificate-issued / certificate-failed) fire independently per domain.
|
||||||
|
this.certProvisionPromise = this.provisionCertificatesViaCallback(preloadedDomains)
|
||||||
|
.catch((err) => logger.log('error', `Unexpected error in cert provisioning: ${err.message}`, { component: 'smart-proxy' }));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -207,6 +214,12 @@ export class SmartProxy extends plugins.EventEmitter {
|
|||||||
logger.log('info', 'SmartProxy shutting down...', { component: 'smart-proxy' });
|
logger.log('info', 'SmartProxy shutting down...', { component: 'smart-proxy' });
|
||||||
this.stopping = true;
|
this.stopping = true;
|
||||||
|
|
||||||
|
// Wait for in-flight cert provisioning to bail out (it checks this.stopping)
|
||||||
|
if (this.certProvisionPromise) {
|
||||||
|
await this.certProvisionPromise;
|
||||||
|
this.certProvisionPromise = null;
|
||||||
|
}
|
||||||
|
|
||||||
// Stop metrics polling
|
// Stop metrics polling
|
||||||
this.metricsAdapter.stopPolling();
|
this.metricsAdapter.stopPolling();
|
||||||
|
|
||||||
@@ -234,7 +247,7 @@ export class SmartProxy extends plugins.EventEmitter {
|
|||||||
* Update routes atomically.
|
* Update routes atomically.
|
||||||
*/
|
*/
|
||||||
public async updateRoutes(newRoutes: IRouteConfig[]): Promise<void> {
|
public async updateRoutes(newRoutes: IRouteConfig[]): Promise<void> {
|
||||||
return this.routeUpdateLock.runExclusive(async () => {
|
await this.routeUpdateLock.runExclusive(async () => {
|
||||||
// Validate
|
// Validate
|
||||||
const validation = RouteValidator.validateRoutes(newRoutes);
|
const validation = RouteValidator.validateRoutes(newRoutes);
|
||||||
if (!validation.valid) {
|
if (!validation.valid) {
|
||||||
@@ -270,11 +283,13 @@ export class SmartProxy extends plugins.EventEmitter {
|
|||||||
// Update stored routes
|
// Update stored routes
|
||||||
this.settings.routes = newRoutes;
|
this.settings.routes = newRoutes;
|
||||||
|
|
||||||
// Handle cert provisioning for new routes
|
|
||||||
await this.provisionCertificatesViaCallback();
|
|
||||||
|
|
||||||
logger.log('info', `Routes updated (${newRoutes.length} routes)`, { component: 'smart-proxy' });
|
logger.log('info', `Routes updated (${newRoutes.length} routes)`, { component: 'smart-proxy' });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Fire-and-forget cert provisioning outside the mutex — routes are already updated,
|
||||||
|
// cert provisioning doesn't need the route update lock and may be slow.
|
||||||
|
this.certProvisionPromise = this.provisionCertificatesViaCallback()
|
||||||
|
.catch((err) => logger.log('error', `Unexpected error in cert provisioning after route update: ${err.message}`, { component: 'smart-proxy' }));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -394,6 +409,7 @@ export class SmartProxy extends plugins.EventEmitter {
|
|||||||
keepAliveTreatment: this.settings.keepAliveTreatment,
|
keepAliveTreatment: this.settings.keepAliveTreatment,
|
||||||
keepAliveInactivityMultiplier: this.settings.keepAliveInactivityMultiplier,
|
keepAliveInactivityMultiplier: this.settings.keepAliveInactivityMultiplier,
|
||||||
extendedKeepAliveLifetime: this.settings.extendedKeepAliveLifetime,
|
extendedKeepAliveLifetime: this.settings.extendedKeepAliveLifetime,
|
||||||
|
proxyIps: this.settings.proxyIPs,
|
||||||
acceptProxyProtocol: this.settings.acceptProxyProtocol,
|
acceptProxyProtocol: this.settings.acceptProxyProtocol,
|
||||||
sendProxyProtocol: this.settings.sendProxyProtocol,
|
sendProxyProtocol: this.settings.sendProxyProtocol,
|
||||||
metrics: this.settings.metrics,
|
metrics: this.settings.metrics,
|
||||||
@@ -409,7 +425,9 @@ export class SmartProxy extends plugins.EventEmitter {
|
|||||||
const provisionFn = this.settings.certProvisionFunction;
|
const provisionFn = this.settings.certProvisionFunction;
|
||||||
if (!provisionFn) return;
|
if (!provisionFn) return;
|
||||||
|
|
||||||
const provisionedDomains = new Set<string>(skipDomains);
|
// Phase 1: Collect all unique (domain, route) pairs that need provisioning
|
||||||
|
const seen = new Set<string>(skipDomains);
|
||||||
|
const tasks: Array<{ domain: string; route: IRouteConfig }> = [];
|
||||||
|
|
||||||
for (const route of this.settings.routes) {
|
for (const route of this.settings.routes) {
|
||||||
if (route.action.tls?.certificate !== 'auto') continue;
|
if (route.action.tls?.certificate !== 'auto') continue;
|
||||||
@@ -419,91 +437,139 @@ export class SmartProxy extends plugins.EventEmitter {
|
|||||||
const certDomains = this.normalizeDomainsForCertProvisioning(rawDomains);
|
const certDomains = this.normalizeDomainsForCertProvisioning(rawDomains);
|
||||||
|
|
||||||
for (const domain of certDomains) {
|
for (const domain of certDomains) {
|
||||||
if (provisionedDomains.has(domain)) continue;
|
if (seen.has(domain)) continue;
|
||||||
provisionedDomains.add(domain);
|
seen.add(domain);
|
||||||
|
tasks.push({ domain, route });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Build eventComms channel for this domain
|
if (tasks.length === 0) return;
|
||||||
let expiryDate: string | undefined;
|
|
||||||
let source = 'certProvisionFunction';
|
|
||||||
|
|
||||||
const eventComms: ICertProvisionEventComms = {
|
// Phase 2: Process all domains in parallel with concurrency limit
|
||||||
log: (msg) => logger.log('info', `[certProvision ${domain}] ${msg}`, { component: 'smart-proxy' }),
|
const concurrency = this.settings.certProvisionConcurrency ?? 4;
|
||||||
warn: (msg) => logger.log('warn', `[certProvision ${domain}] ${msg}`, { component: 'smart-proxy' }),
|
const semaphore = new ConcurrencySemaphore(concurrency);
|
||||||
error: (msg) => logger.log('error', `[certProvision ${domain}] ${msg}`, { component: 'smart-proxy' }),
|
|
||||||
setExpiryDate: (date) => { expiryDate = date.toISOString(); },
|
|
||||||
setSource: (s) => { source = s; },
|
|
||||||
};
|
|
||||||
|
|
||||||
|
const promises = tasks.map(async ({ domain, route }) => {
|
||||||
|
await semaphore.acquire();
|
||||||
|
try {
|
||||||
|
await this.provisionSingleDomain(domain, route, provisionFn);
|
||||||
|
} finally {
|
||||||
|
semaphore.release();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.allSettled(promises);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provision a single domain's certificate via the callback.
|
||||||
|
* Includes per-domain timeout and shutdown checks.
|
||||||
|
*/
|
||||||
|
private async provisionSingleDomain(
|
||||||
|
domain: string,
|
||||||
|
route: IRouteConfig,
|
||||||
|
provisionFn: (domain: string, eventComms: ICertProvisionEventComms) => Promise<TSmartProxyCertProvisionObject>,
|
||||||
|
): Promise<void> {
|
||||||
|
if (this.stopping) return;
|
||||||
|
|
||||||
|
let expiryDate: string | undefined;
|
||||||
|
let source = 'certProvisionFunction';
|
||||||
|
|
||||||
|
const eventComms: ICertProvisionEventComms = {
|
||||||
|
log: (msg) => logger.log('info', `[certProvision ${domain}] ${msg}`, { component: 'smart-proxy' }),
|
||||||
|
warn: (msg) => logger.log('warn', `[certProvision ${domain}] ${msg}`, { component: 'smart-proxy' }),
|
||||||
|
error: (msg) => logger.log('error', `[certProvision ${domain}] ${msg}`, { component: 'smart-proxy' }),
|
||||||
|
setExpiryDate: (date) => { expiryDate = date.toISOString(); },
|
||||||
|
setSource: (s) => { source = s; },
|
||||||
|
};
|
||||||
|
|
||||||
|
const timeoutMs = this.settings.certProvisionTimeout ?? 300_000; // 5 min default
|
||||||
|
|
||||||
|
try {
|
||||||
|
const result: TSmartProxyCertProvisionObject = await this.withTimeout(
|
||||||
|
provisionFn(domain, eventComms),
|
||||||
|
timeoutMs,
|
||||||
|
`Certificate provisioning timed out for ${domain} after ${timeoutMs}ms`,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (this.stopping) return;
|
||||||
|
|
||||||
|
if (result === 'http01') {
|
||||||
|
if (route.name) {
|
||||||
|
try {
|
||||||
|
await this.bridge.provisionCertificate(route.name);
|
||||||
|
logger.log('info', `Triggered Rust ACME for ${domain} (route: ${route.name})`, { component: 'smart-proxy' });
|
||||||
|
} catch (provisionErr: any) {
|
||||||
|
logger.log('warn', `Cannot provision cert for ${domain} — callback returned 'http01' but Rust ACME failed: ${provisionErr.message}. ` +
|
||||||
|
'Note: Rust ACME is disabled when certProvisionFunction is set.', { component: 'smart-proxy' });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (result && typeof result === 'object') {
|
||||||
|
if (this.stopping) return;
|
||||||
|
|
||||||
|
const certObj = result as plugins.tsclass.network.ICert;
|
||||||
|
await this.bridge.loadCertificate(
|
||||||
|
domain,
|
||||||
|
certObj.publicKey,
|
||||||
|
certObj.privateKey,
|
||||||
|
);
|
||||||
|
logger.log('info', `Certificate loaded via provision function for ${domain}`, { component: 'smart-proxy' });
|
||||||
|
|
||||||
|
// Persist to consumer store
|
||||||
|
if (this.settings.certStore?.save) {
|
||||||
|
try {
|
||||||
|
await this.settings.certStore.save(domain, certObj.publicKey, certObj.privateKey);
|
||||||
|
} catch (storeErr: any) {
|
||||||
|
logger.log('warn', `certStore.save() failed for ${domain}: ${storeErr.message}`, { component: 'smart-proxy' });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.emit('certificate-issued', {
|
||||||
|
domain,
|
||||||
|
expiryDate: expiryDate || (certObj.validUntil ? new Date(certObj.validUntil).toISOString() : undefined),
|
||||||
|
source,
|
||||||
|
} satisfies ICertificateIssuedEvent);
|
||||||
|
}
|
||||||
|
} catch (err: any) {
|
||||||
|
logger.log('warn', `certProvisionFunction failed for ${domain}: ${err.message}`, { component: 'smart-proxy' });
|
||||||
|
|
||||||
|
this.emit('certificate-failed', {
|
||||||
|
domain,
|
||||||
|
error: err.message,
|
||||||
|
source,
|
||||||
|
} satisfies ICertificateFailedEvent);
|
||||||
|
|
||||||
|
// Fallback to ACME if enabled and route has a name
|
||||||
|
if (this.settings.certProvisionFallbackToAcme !== false && route.name) {
|
||||||
try {
|
try {
|
||||||
const result: TSmartProxyCertProvisionObject = await provisionFn(domain, eventComms);
|
await this.bridge.provisionCertificate(route.name);
|
||||||
|
logger.log('info', `Falling back to Rust ACME for ${domain} (route: ${route.name})`, { component: 'smart-proxy' });
|
||||||
if (result === 'http01') {
|
} catch (acmeErr: any) {
|
||||||
// Callback wants HTTP-01 for this domain — trigger Rust ACME explicitly
|
logger.log('warn', `ACME fallback also failed for ${domain}: ${acmeErr.message}` +
|
||||||
if (route.name) {
|
(this.settings.disableDefaultCert
|
||||||
try {
|
? ' — TLS will fail for this domain (disableDefaultCert is true)'
|
||||||
await this.bridge.provisionCertificate(route.name);
|
: ' — default self-signed fallback cert will be used'), { component: 'smart-proxy' });
|
||||||
logger.log('info', `Triggered Rust ACME for ${domain} (route: ${route.name})`, { component: 'smart-proxy' });
|
|
||||||
} catch (provisionErr: any) {
|
|
||||||
logger.log('warn', `Cannot provision cert for ${domain} — callback returned 'http01' but Rust ACME failed: ${provisionErr.message}. ` +
|
|
||||||
'Note: Rust ACME is disabled when certProvisionFunction is set.', { component: 'smart-proxy' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Got a static cert object - load it into Rust
|
|
||||||
if (result && typeof result === 'object') {
|
|
||||||
const certObj = result as plugins.tsclass.network.ICert;
|
|
||||||
await this.bridge.loadCertificate(
|
|
||||||
domain,
|
|
||||||
certObj.publicKey,
|
|
||||||
certObj.privateKey,
|
|
||||||
);
|
|
||||||
logger.log('info', `Certificate loaded via provision function for ${domain}`, { component: 'smart-proxy' });
|
|
||||||
|
|
||||||
// Persist to consumer store
|
|
||||||
if (this.settings.certStore?.save) {
|
|
||||||
try {
|
|
||||||
await this.settings.certStore.save(domain, certObj.publicKey, certObj.privateKey);
|
|
||||||
} catch (storeErr: any) {
|
|
||||||
logger.log('warn', `certStore.save() failed for ${domain}: ${storeErr.message}`, { component: 'smart-proxy' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Emit certificate-issued event
|
|
||||||
this.emit('certificate-issued', {
|
|
||||||
domain,
|
|
||||||
expiryDate: expiryDate || (certObj.validUntil ? new Date(certObj.validUntil).toISOString() : undefined),
|
|
||||||
source,
|
|
||||||
} satisfies ICertificateIssuedEvent);
|
|
||||||
}
|
|
||||||
} catch (err: any) {
|
|
||||||
logger.log('warn', `certProvisionFunction failed for ${domain}: ${err.message}`, { component: 'smart-proxy' });
|
|
||||||
|
|
||||||
// Emit certificate-failed event
|
|
||||||
this.emit('certificate-failed', {
|
|
||||||
domain,
|
|
||||||
error: err.message,
|
|
||||||
source,
|
|
||||||
} satisfies ICertificateFailedEvent);
|
|
||||||
|
|
||||||
// Fallback to ACME if enabled and route has a name
|
|
||||||
if (this.settings.certProvisionFallbackToAcme !== false && route.name) {
|
|
||||||
try {
|
|
||||||
await this.bridge.provisionCertificate(route.name);
|
|
||||||
logger.log('info', `Falling back to Rust ACME for ${domain} (route: ${route.name})`, { component: 'smart-proxy' });
|
|
||||||
} catch (acmeErr: any) {
|
|
||||||
logger.log('warn', `ACME fallback also failed for ${domain}: ${acmeErr.message}` +
|
|
||||||
(this.settings.disableDefaultCert
|
|
||||||
? ' — TLS will fail for this domain (disableDefaultCert is true)'
|
|
||||||
: ' — default self-signed fallback cert will be used'), { component: 'smart-proxy' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Race a promise against a timeout. Rejects with the given message if the timeout fires first.
|
||||||
|
*/
|
||||||
|
private withTimeout<T>(promise: Promise<T>, ms: number, message: string): Promise<T> {
|
||||||
|
return new Promise<T>((resolve, reject) => {
|
||||||
|
const timer = setTimeout(() => reject(new Error(message)), ms);
|
||||||
|
promise.then(
|
||||||
|
(val) => { clearTimeout(timer); resolve(val); },
|
||||||
|
(err) => { clearTimeout(timer); reject(err); },
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Normalize routing glob patterns into valid domain identifiers for cert provisioning.
|
* Normalize routing glob patterns into valid domain identifiers for cert provisioning.
|
||||||
* - `*nevermind.cloud` → `['nevermind.cloud', '*.nevermind.cloud']`
|
* - `*nevermind.cloud` → `['nevermind.cloud', '*.nevermind.cloud']`
|
||||||
|
|||||||
28
ts/proxies/smart-proxy/utils/concurrency-semaphore.ts
Normal file
28
ts/proxies/smart-proxy/utils/concurrency-semaphore.ts
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
/**
|
||||||
|
* Async concurrency semaphore — limits the number of concurrent async operations.
|
||||||
|
*/
|
||||||
|
export class ConcurrencySemaphore {
|
||||||
|
private running = 0;
|
||||||
|
private waitQueue: Array<() => void> = [];
|
||||||
|
|
||||||
|
constructor(private readonly maxConcurrency: number) {}
|
||||||
|
|
||||||
|
async acquire(): Promise<void> {
|
||||||
|
if (this.running < this.maxConcurrency) {
|
||||||
|
this.running++;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
return new Promise<void>((resolve) => {
|
||||||
|
this.waitQueue.push(() => {
|
||||||
|
this.running++;
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
release(): void {
|
||||||
|
this.running--;
|
||||||
|
const next = this.waitQueue.shift();
|
||||||
|
if (next) next();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -17,6 +17,9 @@ export * from './route-utils.js';
|
|||||||
// Export default certificate generator
|
// Export default certificate generator
|
||||||
export { generateDefaultCertificate } from './default-cert-generator.js';
|
export { generateDefaultCertificate } from './default-cert-generator.js';
|
||||||
|
|
||||||
|
// Export concurrency semaphore
|
||||||
|
export { ConcurrencySemaphore } from './concurrency-semaphore.js';
|
||||||
|
|
||||||
// Export additional functions from route-helpers that weren't already exported
|
// Export additional functions from route-helpers that weren't already exported
|
||||||
export {
|
export {
|
||||||
createApiGatewayRoute,
|
createApiGatewayRoute,
|
||||||
|
|||||||
Reference in New Issue
Block a user