495 Commits

Author SHA1 Message Date
neuronori bdaf82b1a7 feat(wbstream): surface guest access token for reuse via auth.token 2026-06-30 19:34:25 +00:00
neuronori 1408cf81ab feat(wbstream): support pre-issued account token via auth.token
allow supplying a wb account access token in config so the session
joins as that account instead of an anonymous guest. when auth.token
is empty the provider falls back to the guest-register flow.

threads auth.token through config -> session -> server/client ->
transport -> engine builtin -> auth provider.
2026-06-30 19:15:03 +00:00
zarazaex 8846d49f10 Merge pull request #111 from hawkff/feat/pion-socket-protection
feat: apply socket protection to Pion
2026-06-30 14:36:20 +03:00
neuronori 605de6e5b3 fix: resolve lint issues in pion socket protection
- add package and exported-method doc comments
- use errors.New for sentinel, drop unused nolint directives
- wrap AcceptTCP error
- fix errcheck/noctx in tests
- extract newSettingEngine to keep negotiatePC under complexity limit
2026-06-30 11:32:38 +00:00
hawkff a68f2b668f feat: apply socket protection to Pion 2026-06-29 19:54:44 -04:00
neuronori 23db4c13fe fix(vp8channel): add per-packet crc to drop carrier-corrupted kcp data
vp8channel runs kcp with block=nil (no fec, no checksum), so the
fake-vp8 carrier has no integrity protection. an sfu that perturbs a
payload byte lets a corrupt-but-parseable kcp segment ride through as
valid in-order data and break the muxconn aead above it, surfacing as
chacha20poly1305: message authentication failed under sustained
transfers (issue #109).

append a crc32 trailer to every kcp packet at the kcpconn seam and
verify+strip it on deliver; a mismatch drops the packet so kcp
retransmits via sack, restoring udp-equivalent semantics below kcp.
2026-06-29 20:59:08 +00:00
neuronori 4ddb981366 fix(vp8channel): remove byte-rate pacer that throttled throughput
the pacer (52aea2d) and its per-tick byte budget capped the wire well
below the sfu's real ceiling: telemost ran ~10mbit before it landed and
2-3mbit after. it was added to fix the #95 collapse, but that collapse
was keyframe starvation (sfu dropped the track with no decodable
keyframe after ~40s), fixed separately by forceKeepalive in b20554b. the
pacer was treating a symptom that no longer exists.

drop perTickBytes and the vp8.max_bytes_per_sec knob, and restore the
kcp send window (512->4096) and tick (20ms->5ms) that were shrunk
alongside the pacer. control liveness no longer depends on a small data
window: ping/pong runs on its own isolated kcp session drained with
priority by writerLoop, so the original starvation rationale is gone.

batchSample still bounds one sample to defaultMaxPayloadSize.

refs #107 #95
2026-06-29 06:27:32 +00:00
neuronori 1e270de44a fix(vp8channel): drop delay-based pacer, run static rate at 1mb/s
the aimd pacer read kcp's GetSRTT as its congestion signal, but the data
kcp runs with nc=1 and a fixed 512-segment (~716kb) window it keeps full
on purpose (kcp.go: data queues ~2-3s). that self-inflicted bufferbloat
dominates srtt no matter where the rate sits relative to the sfu policer
knee, so every tick tripped the high-delay mark and the rate decayed to
the 120kb/s floor. the result was slower, not faster.

the srtt signal is unusable as a knee detector on this carrier, so drop
adaptive control and keep the simple static pacer. raise the default to
the 1mb/s target from #107 (the old ~42s collapse at 1.2mib/s was the
keyframe-starvation drop fixed in #95, not a raw rate ceiling), still
tunable via vp8.max_bytes_per_sec.

refs #107
2026-06-29 05:50:36 +00:00
neuronori 2dffb5acbe feat(vp8channel): auto-discover wire rate via delay-based pacer
the hardcoded 400kb/s was a stability compromise and the previous knob
just moved the guesswork to operators: they had to hand-measure each
sfu's policer knee by ramping until stalls. replace both with a
delay-based aimd controller that finds the knee at runtime.

the sfu policer queues before it drops, so kcp's smoothed rtt inflates
ahead of the throughput collapse from #95/#107. the pacer folds one
srtt sample per writer tick: probe the rate up additively while delay
sits near the path baseline, back off multiplicatively once it
inflates. it settles just under the per-sfu knee on its own, both on
the client->server writerLoop and each server->client peer pump.

vp8.max_bytes_per_sec is now just the probe ceiling (default 1mb/s);
a fresh session still starts from the old 400kb/s operating point so a
healthy path only ramps up. no per-service hand-tuning left.

refs #107
2026-06-29 02:25:28 +00:00
neuronori 443f97edb0 feat(vp8channel): expose tunable wire byte-rate via vp8.max_bytes_per_sec
the pacer was pinned at a hardcoded 400kb/s stability compromise, so
operators could not reach their sfu's real throughput ceiling without
recompiling. the options.maxbytespersec knob already existed but was
never wired from yaml. plumb it through config -> session -> transport,
keeping 400kb/s as the conservative default.

refs #107
2026-06-29 01:38:15 +00:00
neuronori f79439e61a fix(vp8channel): rebuild carrier on peer restart via fresh epoch
detect a server restart when a frame from a new epoch arrives after the
latched peer has gone silent past a grace window, then drive the full
carrier rebuild (stream.Reconnect) instead of a bare re-handshake over
the stale carrier. the restarted server rejoins the sfu as a fresh
participant, so re-handshaking on the old media path only times out;
rebuilding the carrier re-establishes a path the new server answers on
and recovers in seconds instead of waiting out the ~70s liveness window
2026-06-28 23:58:01 +00:00
neuronori e511d3204b Revert "fix(vp8channel): detect server restart via fresh peer epoch"
This reverts commit 660263881d.
2026-06-28 23:41:56 +00:00
neuronori 660263881d fix(vp8channel): detect server restart via fresh peer epoch
A restarted server rejoins the SFU with a new vp8channel epoch. The
client stayed latched to the old epoch and dropped every frame from the
new one, so recovery only happened once the relaxed control-liveness
window expired (~70s).

Watch for a frame from a different epoch after the latched peer has been
silent past a short grace window and fire the carrier reconnect callback,
driving a re-handshake against the new epoch in seconds. A live peer keeps
the latch fresh via its ~2s keepalives, so the watchdog never trips under
load or during SFU renegotiation.
2026-06-28 22:24:27 +00:00
nori 1ad1a7d51e fix: target xmpp domain not web host in keepalive ping 2026-06-28 16:02:32 +00:00
nori ca76e1026b fix: skip stale sessionID in legacy peer datachannel path 2026-06-28 15:59:04 +00:00
nori 5ae06c7983 fix(vp8channel): per-peer control plane + dst-addressed frames for concurrent clients (issue #95) 2026-06-27 01:58:57 +00:00
nori 0489e183c4 test(e2e): add real multi-client concurrent reproducer for issue #95 2026-06-27 00:49:52 +00:00
nori b950af70e9 fix(vp8channel): latch control epoch so loopback filter survives data epoch rotation (issue #95) 2026-06-27 00:18:05 +00:00
nori 14e36eede6 fix(server): split swapSession to satisfy cyclop (issue #95) 2026-06-27 02:16:34 +03:00
nori c926f3adec fix(server): re-arm handshake on control-session reinstall (issue #95) 2026-06-27 02:11:04 +03:00
nori 7d0d9093d8 fix(goolom): bound peer connection close so stuck TURN dealloc cannot stall teardown (issue #95) 2026-06-26 16:02:30 +03:00
nori ae78a4c870 fix(goolom): keep advertised TURN relays for NAT traversal (issue #95) 2026-06-26 15:37:43 +03:00
neuronori 751b30b730 fix(jitsi): accept pre-latch broadcast so WaitForPeer unblocks (issue #95)
WaitForPeer makes the client block before it sends its SYN, so the
server cannot yet know the client epoch and its first welcome arrives as
a broadcast (receiverEpoch=0). The same happens on every reconnect:
peerEpoch is reset to 0 and the peer re-announces via a broadcast
Send(nil). The strict requireTargetedPeer guard dropped those broadcasts
while unlatched, so peerEpoch never latched and WaitForPeer hung for its
whole timeout - the link connected and pinged but no data ever flowed
("ping works, no connection"), most visibly when a peer left and
reconnected. Accept a broadcast while unlatched (peerEpoch==0) and keep
rejecting third-party broadcasts once latched.
2026-06-25 17:52:29 +00:00
neuronori cd3d568fd5 fix(vp8channel): reorder RTP and inject server keyframes (issue #95) 2026-06-25 16:07:19 +00:00
neuronori 2a9b1ec867 fix(vp8channel): pace server->client peer writer like client path
peerWriterPump emitted every KCP frame the instant it was queued. With
KCP congestion control off (nc=1) and a BDP-sized window that overran the
SFU policer on the server->client direction. Pace it on the same frame
ticker and per-tick byte budget as writerLoop, sharing batchSample via
batchSampleFrom.
2026-06-25 14:17:26 +00:00
neuronori a420683707 fix(server): use relaxed smux keepalive for control-plane transports (issue #95)
Server data-plane peer sessions used the conservative 30s smux keepalive
while the client used the relaxed window (SmuxConfigFor) for ControlPlane
transports like vp8channel. When the carrier went legitimately silent for
tens of seconds (publisher-PC reconnect / SFU renegotiation), the server
tore down its peer data session first at 30s, surfacing as 'closed pipe'
on the client and triggering a reconnect storm. Mirror the client and
apply SmuxConfigFor on the server data plane too.
2026-06-25 13:39:49 +00:00
neuronori 344373543f fix(vp8channel): serialize concurrent track writes (issue #95)
pion TrackLocalStaticSample.WriteSample packetizes under its lock but
emits RTP after releasing it, so concurrent callers interleave sequence
numbers on the wire. The server runs a per-peer writer pump for bulk data
alongside writerLoop for control/keepalive, both hitting the shared track;
the remote VP8 reassembler enforces strict sequence contiguity and drops
the interleaved frames, stalling server->client traffic. Funnel every
WriteSample through one mutex so each frame's packetize+emit is atomic.
2026-06-25 13:18:27 +00:00
neuronori ca2488b7da Merge remote-tracking branch 'origin/master' into fix-handshake
# Conflicts:
#	internal/client/client.go
2026-06-25 12:11:50 +00:00
neuronori 152f091490 fix(client,jitsi): bound peer wait, guard reconnect SYN race, drop pre-latch broadcasts
- bound WaitForPeer in bringUpLink/tryReopenSession to handshake timeout
  so a missing peer fails fast instead of hanging before the SOCKS listener
- call waitForPeer on the reconnect path too: resetLinkPeer clears the peer
  epoch, so without it the post-reconnect SYN re-races the server bridge
- restore strict requireTargetedPeer guard: the server always replies
  targeted (it latches the client epoch from the SYN before smux replies),
  so untargeted broadcasts before latch must be dropped
- remove per-frame debug logging on the bridge send/recv hot path
- extract buildSmuxClient / establishPeerSession helpers and wrap interface
  errors to satisfy cyclop/nestif/wrapcheck
2026-06-25 12:02:40 +00:00
neuronori 13f77b1da7 test(e2e): prove dead-link detection window via blackhole carrier
add a silent dead-link mode to the memory carrier (link stays up,
frames vanish) and a flag-gated TestDeadLinkDetectionWindow that
measures how long the datachannel client takes to notice a dead link
and reconnect. on the conservative liveness window it reconnects in
~58s; with the buggy 120s smux keepalive it fails to detect within 75s.

also drop dead restartControlKCP (both callers moved to
restartControlKCPWithHeader)
2026-06-24 14:54:19 +00:00
nori 384268b83e fix(runtime): scope relaxed liveness/keepalive to control-plane transports
The #95 telemost fix widened three global windows (control pong 15s->45s,
smux keepalive 30s->120s, tunnel ack 15s->90s). These live in shared
packages, so they also slowed dead-link detection on jitsi/datachannel:
a genuinely dead session stayed alive up to 120s before reconnecting,
which presented as the link going down and not recovering.

Restore the conservative defaults globally and apply the relaxed windows
only when the transport implements transport.ControlPlane (vp8channel/
goolom), where KCP batching + SFU publisher-PC renegotiation legitimately
go silent for ~25-30s. Conventional carriers reconnect promptly again.
2026-06-24 14:36:41 +00:00
VaisVaisov 05133a953b transport/vp8channel: add WaitForPeer to fix smux SYN race
Without this, the client could send a smux SYN frame before the server
had opened its bridge side. JVB would drop the frame and smux would not
retransmit, causing a connection timeout.

Mirrors the same fix already applied to transport/datachannel.
2026-06-22 11:55:20 +05:00
VaisVaisov c035f403a2 fix: wait for remote peer before opening smux stream (race condition)
Client was racing ahead of the server by ~2s: it opened the smux SYN
right after bridge-ready, but JVB silently dropped those frames because
the server hadn't opened its datachannel yet. smux does not retransmit
SYN, so AcceptStream on the server side never returned and the handshake
timed out.

Add WaitForPeer (engine.PeerReadySession / transport.PeerReadyTransport)
that polls peerEpoch until the first epoch broadcast from the remote
side is received, then proceed to smux + handshake.
2026-06-21 23:58:39 +05:00
VaisVaisov ca50e7fe81 fix(server): run handshake inline when transport has no control plane
In peer-routing mode installControlSession() returns early when the
transport does not implement transport.ControlPlane (e.g. datachannel),
leaving acceptHandshake() never called and s.sessionID never set.
servePeer() then spin-waits forever for a sessionID that never arrives,
so the client never receives the SERVER_WELCOME frame.

Mirror the legacy path from waitHandshake/serveSingle: if controlConn
is nil, drive acceptHandshake directly on the per-peer smux session
before entering the AcceptStream loop.
2026-06-21 15:15:04 +05:00
VaisVaisov c19906e85e fix(jitsi): keep xmpp connection alive and accept server broadcasts
xmppKeepalive was using fire-and-forget Send(); on a half-open TCP
connection pings were sent but the missing reply went undetected,
leaving the session stuck. Switch to SendIQWait so a timeout triggers
a reconnect.

In peer-routing mode the server may send the initial welcome frame as a
broadcast (receiverEpoch=0) before it has learned the client's
localEpoch. The previous requireTargetedPeer guard dropped every
broadcast unconditionally. Tighten the guard: only drop frames whose
senderEpoch is unknown or belongs to a different peer; frames from the
already-latched peer are always accepted.
2026-06-21 15:14:33 +05:00
neuronori f0de6b441e fix(vp8channel): preserve control epoch across reconnect/reset
Control KCP epoch must stay stable across both carrier reconnects and
liveness resets to avoid breaking ping/pong routing. Previously:

- SetReconnectCallback rotated control epoch (fix: preserve)
- ResetPeer also rotated control epoch (fix: preserve)

Both now snapshot the control epoch header before data epoch rotation
and use restartControlKCPWithHeader() with the preserved epoch.

This prevents control frames from using a mismatched epoch after
liveness timeout or carrier reconnect, which broke routing and caused
reconnect loops.
2026-06-20 08:03:28 +00:00
neuronori a20fa1f32a test(e2e): expect jitsi video and sei to pass 2026-06-20 00:51:13 +00:00
nori b20554b19c fix(vp8channel): keep SFU forwarding bulk via decodable keepalive keyframe
inject a clean VP8 keyframe every ~2s during bulk so the SFU keeps
forwarding the track instead of stalling after its decode timeout.
add RTCP interceptors and IPv4-only ICE, priority control/data mux,
publisher PC reconnect with stable control epoch, and longer smux
keepalive/liveness windows to survive the reconnect gap
2026-06-20 00:37:08 +00:00
neuronori a3ae913c55 fix(e2e): increase timeouts for video-paced transports in stress test (issue #95)
Video-paced transports (vp8channel, videochannel, seichannel) need
longer operation timeouts due to frame pacing and KCP batching:
- streamPatternForDuration: 15s -> 60s for video transports
- sustainedEcho: 5s -> 60s for video transports

Part of fix for issue #95.

Related to #95
2026-06-19 01:58:48 +00:00
neuronori d5fb7eec39 fix(olcrtc): resolve telemost vp8channel disconnects (issue #95) 2026-06-19 01:58:26 +00:00
nori 9af4afffc2 test(e2e): expect jitsi video and sei to pass 2026-06-16 05:40:42 +00:00
nori 03ef36dda2 fix(e2e): align jitsi vp8channel expectation with test table 2026-06-16 05:01:37 +00:00
zarazaex69 83972e9820 fix(transport): cap pending reassembly messages 2026-06-14 12:49:30 +03:00
tankionline2005 18849933b5 implement peer counter 2026-06-13 13:27:53 +07:00
zarazaex69 95dc660d3d test(e2e): expect jitsi/vp8channel to pass 2026-06-13 02:57:21 +03:00
zarazaex69 95fd5b7d3c fix(server): tolerate stale control frames during handshake
After a session reinstall, the old client's control loop may have
already written a CONTROL_PING frame to the link before its context
was cancelled. This frame arrives at the server's new smux session and
is routed to the handshake stream (matching stream ID), where the
framing layer interprets the JSON bytes as an impossibly large length
prefix ('{\x22ve' = 2065856101 > 65536).

Previously this triggered a full reinstall, which could cascade into
a reconnect storm. Now acceptHandshake and acceptPeerHandshake
recognize ErrFrameTooLarge as a stale-frame artifact: they close the
polluted stream and retry AcceptStream up to 3 times, giving the real
CLIENT_HELLO a chance to arrive on the next stream.
2026-06-13 02:53:22 +03:00
zarazaex69 1f72c87d1e fix(jitsi): remove RTCP keepalive reconnect loop 2026-06-13 00:54:55 +03:00
zarazaex69 26141697c2 fix(jitsi): keep byte-stream sessions alive with RTP 2026-06-13 00:51:20 +03:00
zarazaex69 39cc3fafa3 fix(server,client): close old muxconn before session swap 2026-06-07 16:34:12 +03:00
zarazaex69 68a6e6d52c chore: update default Jitsi service URL to meet.handyweb.org 2026-06-07 01:33:09 +03:00