forked from localtunnel/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
339 lines (271 loc) · 8.91 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
import log from 'bookrc';
import express from 'express';
import tldjs from 'tldjs';
import on_finished from 'on-finished';
import Debug from 'debug';
import http_proxy from 'http-proxy';
import http from 'http';
import Promise from 'bluebird';
import Proxy from './proxy';
import rand_id from './lib/rand_id';
import BindingAgent from './lib/BindingAgent';
const debug = Debug('localtunnel:server');
const proxy = http_proxy.createProxyServer({
target: 'http://localtunnel.github.io'
});
proxy.on('error', function(err) {
log.error(err);
});
proxy.on('proxyReq', function(proxyReq, req, res, options) {
// rewrite the request so it hits the correct url on github
// also make sure host header is what we expect
proxyReq.path = '/www' + proxyReq.path;
proxyReq.setHeader('host', 'localtunnel.github.io');
});
const PRODUCTION = process.env.NODE_ENV === 'production';
// id -> client http server
const clients = Object.create(null);
// proxy statistics
const stats = {
tunnels: 0
};
// handle proxying a request to a client
// will wait for a tunnel socket to become available
function maybe_bounce(req, res, sock, head) {
// without a hostname, we won't know who the request is for
const hostname = req.headers.host;
if (!hostname) {
return false;
}
const subdomain = tldjs.getSubdomain(hostname);
if (!subdomain) {
return false;
}
const client = clients[subdomain];
// no such subdomain
// we use 502 error to the client to signify we can't service the request
if (!client) {
if (res) {
res.statusCode = 502;
res.end(`no active client for '${subdomain}'`);
req.connection.destroy();
}
else if (sock) {
sock.destroy();
}
return true;
}
let finished = false;
if (sock) {
sock.once('end', function() {
finished = true;
});
}
else if (res) {
// flag if we already finished before we get a socket
// we can't respond to these requests
on_finished(res, function(err) {
finished = true;
req.connection.destroy();
});
}
// not something we are expecting, need a sock or a res
else {
req.connection.destroy();
return true;
}
// TODO add a timeout, if we run out of sockets, then just 502
// get client port
client.next_socket(async (socket) => {
// the request already finished or client disconnected
if (finished) {
return;
}
// happens when client upstream is disconnected (or disconnects)
// and the proxy iterates the waiting list and clears the callbacks
// we gracefully inform the user and kill their conn
// without this, the browser will leave some connections open
// and try to use them again for new requests
// we cannot have this as we need bouncy to assign the requests again
// TODO(roman) we could instead have a timeout above
// if no socket becomes available within some time,
// we just tell the user no resource available to service request
else if (!socket) {
if (res) {
res.statusCode = 504;
res.end();
}
if (sock) {
sock.destroy();
}
req.connection.destroy();
return;
}
// websocket requests are special in that we simply re-create the header info
// and directly pipe the socket data
// avoids having to rebuild the request and handle upgrades via the http client
if (res === null) {
const arr = [`${req.method} ${req.url} HTTP/${req.httpVersion}`];
for (let i=0 ; i < (req.rawHeaders.length-1) ; i+=2) {
arr.push(`${req.rawHeaders[i]}: ${req.rawHeaders[i+1]}`);
}
arr.push('');
arr.push('');
socket.pipe(sock).pipe(socket);
socket.write(arr.join('\r\n'));
await new Promise((resolve) => {
socket.once('end', resolve);
});
return;
}
// regular http request
const agent = new BindingAgent({
socket: socket
});
const opt = {
path: req.url,
agent: agent,
method: req.method,
headers: req.headers
};
await new Promise((resolve) => {
// what if error making this request?
const client_req = http.request(opt, function(client_res) {
// write response code and headers
res.writeHead(client_res.statusCode, client_res.headers);
client_res.pipe(res);
on_finished(client_res, function(err) {
resolve();
});
});
// happens if the other end dies while we are making the request
// so we just end the req and move on
// we can't really do more with the response here because headers
// may already be sent
client_req.on('error', (err) => {
req.connection.destroy();
});
req.pipe(client_req);
});
});
return true;
}
// create a new tunnel with `id`
function new_client(id, opt, cb) {
// can't ask for id already is use
// TODO check this new id again
if (clients[id]) {
id = rand_id();
}
const popt = {
id: id,
max_tcp_sockets: opt.max_tcp_sockets
};
const client = Proxy(popt);
// add to clients map immediately
// avoiding races with other clients requesting same id
clients[id] = client;
client.on('end', function() {
--stats.tunnels;
delete clients[id];
});
client.start((err, info) => {
if (err) {
delete clients[id];
cb(err);
return;
}
++stats.tunnels;
info.id = id;
cb(err, info);
});
}
module.exports = function(opt) {
opt = opt || {};
const schema = opt.secure ? 'https' : 'http';
const app = express();
app.get('/', function(req, res, next) {
if (req.query['new'] === undefined) {
return next();
}
const req_id = rand_id();
debug('making new client with id %s', req_id);
new_client(req_id, opt, function(err, info) {
if (err) {
res.statusCode = 500;
return res.end(err.message);
}
const url = schema + '://' + req_id + '.' + req.headers.host;
info.url = url;
res.json(info);
});
});
app.get('/', function(req, res, next) {
res.redirect('https://localtunnel.github.io/www/');
});
// TODO(roman) remove after deploying redirect above
app.get('/assets/*', function(req, res, next) {
proxy.web(req, res);
});
// TODO(roman) remove after deploying redirect above
app.get('/favicon.ico', function(req, res, next) {
proxy.web(req, res);
});
app.get('/api/status', function(req, res, next) {
res.json({
tunnels: stats.tunnels,
mem: process.memoryUsage(),
});
});
app.get('/:req_id', function(req, res, next) {
const req_id = req.params.req_id;
// limit requested hostnames to 63 characters
if (! /^[a-z0-9]{4,63}$/.test(req_id)) {
const err = new Error('Invalid subdomain. Subdomains must be lowercase and between 4 and 63 alphanumeric characters.');
err.statusCode = 403;
return next(err);
}
debug('making new client with id %s', req_id);
new_client(req_id, opt, function(err, info) {
if (err) {
return next(err);
}
const url = schema + '://' + req_id + '.' + req.headers.host;
info.url = url;
res.json(info);
});
});
app.use(function(err, req, res, next) {
const status = err.statusCode || err.status || 500;
res.status(status).json({
message: err.message
});
});
const server = http.createServer();
server.on('request', function(req, res) {
req.on('error', (err) => {
console.error('request', err);
});
res.on('error', (err) => {
console.error('response', err);
});
debug('request %s', req.url);
if (maybe_bounce(req, res, null, null)) {
return;
};
app(req, res);
});
server.on('upgrade', function(req, socket, head) {
req.on('error', (err) => {
console.error('ws req', err);
});
socket.on('error', (err) => {
console.error('ws socket', err);
});
if (maybe_bounce(req, null, socket, head)) {
return;
};
socket.destroy();
});
return server;
};