fix(hysteria): standard geco share links and persistent uTLS None (#6325)

- Export standard gecko obfs query params in hysteria2 share links
- Enforce packet size bounds across Go and TypeScript link handlers
- Persist uTLS None explicitly and initialize new TLS inbounds to chrome
- Tear down stackTun safely without closeMu deadlock against WriteNotify

Co-authored-by: rqzbeh <rqzbeh@users.noreply.github.com>
This commit is contained in:
Rouzbeh†
2026-09-03 18:05:07 +03:30
committed by GitHub
parent f9898e0b24
commit 540caa4e93
14 changed files with 514 additions and 111 deletions
@@ -808,3 +808,35 @@ describe('parseOutboundLink dispatcher', () => {
expect(parseOutboundLink(' ')).toBeNull();
});
});
describe('obfs=gecko packetSize validation', () => {
const base = 'hysteria2://secret@1.2.3.4:443?security=tls&obfs=gecko&obfs-password=pw';
const packetSizeOf = (link: string): string | undefined => {
const out = parseHysteria2Link(link);
expect(out).not.toBeNull();
const finalmask = (out!.streamSettings as Record<string, unknown>).finalmask as
| Record<string, unknown>
| undefined;
const udp = (finalmask?.udp ?? []) as Array<Record<string, unknown>>;
const mask = udp.find((m) => m.type === 'salamander');
return (mask?.settings as Record<string, unknown> | undefined)?.packetSize as
| string
| undefined;
};
it('stores a valid range', () => {
expect(packetSizeOf(`${base}&minPacketSize=512&maxPacketSize=1200`)).toBe('512-1200');
});
it.each([
['min only', `${base}&minPacketSize=512`],
['max only', `${base}&maxPacketSize=1200`],
['non-numeric', `${base}&minPacketSize=abc&maxPacketSize=def`],
['zero min', `${base}&minPacketSize=0&maxPacketSize=1200`],
['inverted', `${base}&minPacketSize=1200&maxPacketSize=512`],
['over cap', `${base}&minPacketSize=512&maxPacketSize=4096`],
])('drops the %s range', (_name, link) => {
expect(packetSizeOf(link)).toBeUndefined();
});
});