-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.js
More file actions
319 lines (282 loc) · 12 KB
/
Copy pathindex.js
File metadata and controls
319 lines (282 loc) · 12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
/**
* Tunnel Plugin — Decentralized ngrok
*
* Tunnels HTTP traffic to a local dev server through JSS via WebSocket.
* A tunnel client connects over WebSocket, registers a name, and receives
* proxied HTTP requests which it forwards to localhost.
*
* Usage: jss start --tunnel
* Tunnel client connects to: wss://your.pod/.tunnel
* Public URL: https://your.pod/tunnel/{name}/path
*
* Tunnel client protocol (JSON over WebSocket):
* → { type: "register", name: "myapp", passthrough?: true }
* ← { type: "registered", name: "myapp", url: "/tunnel/myapp/", passthrough: true|false }
* ← { type: "request", id: "<uuid>", method: "GET", path: "/api/hello", headers: {...}, body: "..." }
* → { type: "response", id: "<uuid>", status: 200, headers: {...}, body: "..." }
* ← { type: "error", message: "..." }
*
* Credential passthrough (#530): by default the proxy strips
* `Cookie` / `Authorization` from inbound requests and `Set-Cookie`
* from outbound responses, so a tunnel exposes PUBLIC content only.
* A client may opt in per-registration with `passthrough: true`,
* which forwards those three headers and makes authenticated access
* (bearer/DPoP, cookie sessions) work through the tunnel. Opting in
* means visitor credentials bound for the tunnelled service are
* handed to the registered client — safe exactly when the registrant
* owns the tunnelled service (the normal "my own pod through my own
* relay" case), which is why it is per-tunnel, owner-asserted, and
* off by default. `Proxy-Authorization` is always stripped — it is
* addressed to this relay, never to the tunnelled service.
*
* Even with passthrough on, the relay's OWN IdP session/interaction
* cookies are stripped from the forwarded Cookie header. oidc-provider
* sets them with `path: '/'`, so a browser attaches them to
* `/tunnel/...` requests too — but they authenticate the visitor to
* THE RELAY, not to the tunnelled service. Forwarding them would let a
* tunnel client capture a visitor's relay `_session` and replay it
* against the relay's `/idp/*` endpoints (session hijack). See #530.
*/
// Cookie names reserved by the relay's own oidc-provider IdP
// (`_session`, `_session.sig`, `_session.legacy[.sig]`, `_interaction`,
// `_interaction.sig`, `_interaction_resume[.sig]`). They share two
// prefixes; we match the prefix plus a `.`/`_` boundary so a tunnelled
// service's unrelated cookie (e.g. `_sessionsLeft`) isn't stripped.
const RELAY_COOKIE_PREFIXES = ['_session', '_interaction'];
function isRelayCookieName(name) {
return RELAY_COOKIE_PREFIXES.some(
(p) => name === p || name.startsWith(`${p}.`) || name.startsWith(`${p}_`),
);
}
/**
* Remove the relay's own IdP cookies from a forwarded Cookie header,
* keeping the visitor's cookies bound for the tunnelled service.
* Returns '' when nothing remains (caller then drops the header).
*/
function stripRelayCookies(cookieHeader) {
// Node folds duplicate Cookie headers into one string, but Fastify
// can surface string[] — normalize so passthrough doesn't drop every
// cookie when an array arrives. Cookies join with '; '.
const raw = Array.isArray(cookieHeader) ? cookieHeader.join('; ') : cookieHeader;
if (typeof raw !== 'string') return '';
return raw
.split(';')
.map((s) => s.trim())
.filter(Boolean)
.filter((pair) => {
const eq = pair.indexOf('=');
const name = (eq === -1 ? pair : pair.slice(0, eq)).trim();
return !isRelayCookieName(name);
})
.join('; ');
}
import websocket from '@fastify/websocket';
import { getWebIdFromRequestAsync } from '../auth/token.js';
import { randomUUID } from 'crypto';
const REQUEST_TIMEOUT = 30000; // 30s timeout for tunnel responses
const MAX_MESSAGE_SIZE = 10 * 1024 * 1024; // 10MB
/**
* @param {object} fastify - Fastify instance
* @param {object} options - Options
* @param {string} options.path - WebSocket path for tunnel clients (default: '/.tunnel')
*/
export async function tunnelPlugin(fastify, options = {}) {
const wsPath = options.path || '/.tunnel';
// Instance-scoped: tunnel name → { socket, webId }
const tunnels = new Map();
// Pending HTTP requests waiting for tunnel response: id → { resolve, timer }
const pending = new Map();
if (!fastify.websocketServer) {
await fastify.register(websocket);
}
fastify.addHook('onClose', async () => {
for (const [, tunnel] of tunnels) {
tunnel.socket.close();
}
tunnels.clear();
for (const [, p] of pending) {
clearTimeout(p.timer);
p.resolve({ status: 502, headers: {}, body: 'Tunnel shutting down' });
}
pending.clear();
});
// WebSocket endpoint for tunnel clients
fastify.get(wsPath, { websocket: true }, async (connection, request) => {
const socket = connection.socket;
// Browser WebSockets can't set an Authorization header, so accept the
// bearer token as a ?token= query param too — mirrors the /.webrtc
// endpoint. Lets browser-based tunnel clients authenticate. (#528)
const queryToken = request.query?.token;
if (queryToken && !request.headers.authorization) {
request.headers.authorization = `Bearer ${queryToken}`;
}
// Authenticate
const { webId } = await getWebIdFromRequestAsync(request);
if (!webId) {
socket.send(JSON.stringify({ type: 'error', message: 'Authentication required' }));
socket.close();
return;
}
let tunnelName = null;
socket.on('message', (data) => {
const raw = Buffer.isBuffer(data) ? data : Buffer.from(data);
if (raw.byteLength > MAX_MESSAGE_SIZE) {
socket.send(JSON.stringify({ type: 'error', message: 'Message too large' }));
return;
}
let msg;
try {
msg = JSON.parse(raw.toString());
} catch {
socket.send(JSON.stringify({ type: 'error', message: 'Invalid JSON' }));
return;
}
if (msg.type === 'register') {
// Register a tunnel name
const name = (msg.name || '').replace(/[^a-zA-Z0-9_-]/g, '');
if (!name) {
socket.send(JSON.stringify({ type: 'error', message: 'Invalid tunnel name' }));
return;
}
const existing = tunnels.get(name);
if (existing && existing.webId !== webId) {
socket.send(JSON.stringify({ type: 'error', message: 'Tunnel name taken by another user' }));
return;
}
// Close old tunnel with same name from same user
if (existing) {
existing.socket.close();
}
// Per-tunnel credential passthrough (#530) — strict boolean so a
// truthy-but-wrong value ("false", 1) can't silently enable
// credential forwarding. Echoed in the ack so the client knows
// which mode the relay actually applied.
const passthrough = msg.passthrough === true;
tunnelName = name;
tunnels.set(name, { socket, webId, passthrough });
socket.send(JSON.stringify({ type: 'registered', name, url: `/tunnel/${name}/`, passthrough }));
} else if (msg.type === 'response') {
// Tunnel client returning an HTTP response
if (!msg.id) return;
const p = pending.get(msg.id);
if (p) {
clearTimeout(p.timer);
pending.delete(msg.id);
p.resolve({
status: msg.status || 502,
headers: msg.headers || {},
body: msg.body || '',
bodyEncoding: msg.bodyEncoding
});
}
}
});
socket.on('close', () => {
if (tunnelName && tunnels.get(tunnelName)?.socket === socket) {
tunnels.delete(tunnelName);
// Resolve pending requests for this tunnel only with 502
for (const [id, p] of pending) {
if (p.tunnelName === tunnelName) {
clearTimeout(p.timer);
pending.delete(id);
p.resolve({ status: 502, headers: {}, body: 'Tunnel disconnected' });
}
}
}
});
socket.on('error', () => {});
});
// HTTP proxy: /tunnel/{name}/*
fastify.all('/tunnel/:name/*', async (request, reply) => {
const { name } = request.params;
const tunnel = tunnels.get(name);
if (!tunnel || tunnel.socket.readyState !== 1) {
return reply.code(502).send({ error: 'Bad Gateway', message: 'Tunnel not connected' });
}
// Build the downstream path (strip /tunnel/{name} prefix)
const fullPath = request.url.replace(`/tunnel/${name}`, '') || '/';
const id = randomUUID();
// Serialize the HTTP request
const tunnelReq = Object.create(null);
tunnelReq.type = 'request';
tunnelReq.id = id;
tunnelReq.method = request.method;
tunnelReq.path = fullPath;
tunnelReq.headers = Object.create(null);
// Forward relevant headers. Hop-by-hop headers are always skipped;
// credentials (cookie / authorization) are skipped UNLESS the tunnel
// registered with passthrough (#530 — owner opted in to receive
// visitor credentials). Proxy-Authorization is always stripped: it
// is addressed to this relay, never to the tunnelled service.
const skipHeaders = new Set(['host', 'connection', 'upgrade', 'transfer-encoding', 'proxy-authorization']);
if (!tunnel.passthrough) {
skipHeaders.add('cookie');
skipHeaders.add('authorization');
}
for (const [k, v] of Object.entries(request.headers)) {
const lower = k.toLowerCase();
if (skipHeaders.has(lower)) continue;
if (lower === 'cookie' && tunnel.passthrough) {
// Forward the visitor's cookies for the tunnelled service, but
// never the relay's own IdP session cookies (#530 security).
const filtered = stripRelayCookies(v);
if (filtered) tunnelReq.headers[k] = filtered;
continue;
}
tunnelReq.headers[k] = v;
}
// Forward body if present
if (request.body) {
tunnelReq.body = Buffer.isBuffer(request.body)
? request.body.toString('base64')
: typeof request.body === 'string' ? request.body : JSON.stringify(request.body);
tunnelReq.bodyEncoding = Buffer.isBuffer(request.body) ? 'base64' : 'utf8';
}
// Send to tunnel client and wait for response
const responsePromise = new Promise((resolve) => {
const timer = setTimeout(() => {
pending.delete(id);
resolve({ status: 504, headers: {}, body: 'Gateway Timeout' });
}, REQUEST_TIMEOUT);
pending.set(id, { resolve, timer, tunnelName: name });
});
try {
tunnel.socket.send(JSON.stringify(tunnelReq));
} catch {
const p = pending.get(id);
if (p) { clearTimeout(p.timer); pending.delete(id); }
return reply.code(502).send({ error: 'Bad Gateway', message: 'Failed to reach tunnel client' });
}
const res = await responsePromise;
// Set response headers. Set-Cookie is stripped by default so a
// tunnelled service can't set cookies on the relay's origin; with
// passthrough (#530) the owner opted in and session flows (e.g.
// OIDC login cookies) must survive the proxy. Fastify accepts an
// array value for set-cookie, which JSON serialization preserves.
const hopHeaders = new Set(['connection', 'transfer-encoding', 'keep-alive']);
if (!tunnel.passthrough) {
hopHeaders.add('set-cookie');
}
for (const [k, v] of Object.entries(res.headers)) {
if (!hopHeaders.has(k.toLowerCase())) {
reply.header(k, v);
}
}
// Decode body if base64
const body = res.bodyEncoding === 'base64' && res.body
? Buffer.from(res.body, 'base64')
: res.body || '';
return reply.code(res.status).send(body);
});
// Also handle /tunnel/{name} without trailing path
fastify.all('/tunnel/:name', async (request, reply) => {
// Redirect to add trailing slash, or proxy as root
const { name } = request.params;
const tunnel = tunnels.get(name);
if (!tunnel || tunnel.socket.readyState !== 1) {
return reply.code(502).send({ error: 'Bad Gateway', message: 'Tunnel not connected' });
}
return reply.redirect(308, `/tunnel/${name}/`);
});
}
export default tunnelPlugin;