forked from smogon/pokemon-showdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sockets-nocluster.js
494 lines (439 loc) · 14.1 KB
/
sockets-nocluster.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
/**
* Connections - nocluster edition
* Pokemon Showdown - http://pokemonshowdown.com/
*
* Abstraction layer for multi-process SockJS connections.
*
* This file handles all the communications between the users'
* browsers, the networking processes, and users.js in the
* main process.
*
* The nocluster edition uses child_process instead of cluster.
* The main drawback is that it can only spawn one process, but
* one process should be enough for everyone. The main advantage
* is unknown, but I'm hoping it will be more stable.
*
* @license MIT license
*/
'use strict';
global.Config = require('./config/config');
if (!process.send) {
let workers = exports.workers = {};
let nextId = 0;
let spawnWorker = exports.spawnWorker = function () {
let worker = require('child_process').fork('sockets-nocluster.js', {PSPORT: Config.port, PSBINDADDR: Config.bindaddress || '', PSNOSSL: Config.ssl ? 0 : 1});
if (!worker.id) worker.id = '' + (++nextId);
let id = worker.id;
workers[id] = worker;
worker.on('message', data => {
// console.log('master received: ' + data);
switch (data.charAt(0)) {
case '*': {
// *socketid, ip
// connect
let nlPos = data.indexOf('\n');
Users.socketConnect(worker, id, data.substr(1, nlPos - 1), data.substr(nlPos + 1));
break;
}
case '!': {
// !socketid
// disconnect
Users.socketDisconnect(worker, id, data.substr(1));
break;
}
case '<': {
// <socketid, message
// message
let nlPos = data.indexOf('\n');
Users.socketReceive(worker, id, data.substr(1, nlPos - 1), data.substr(nlPos + 1));
break;
}
default:
// unhandled
}
});
worker.on('disconnect', () => {
// worker crashed, try our best to clean up
require('./crashlogger.js')(new Error("Worker " + worker.id + " abruptly died"), "The main process");
// this could get called during cleanup; prevent it from crashing
worker.send = () => {};
let count = 0;
Users.connections.forEach(connection => {
if (connection.worker === worker) {
Users.socketDisconnect(worker, worker.id, connection.socketid);
count++;
}
});
console.error("" + count + " connections were lost.");
// don't delete the worker, so we can investigate it if necessary.
// attempt to recover
spawnWorker();
});
};
exports.listen = function (port, bindAddress, workerCount) {
if (port !== undefined && !isNaN(port)) {
Config.port = port;
Config.ssl = null;
} else {
port = Config.port;
// Autoconfigure the app when running in cloud hosting environments:
try {
let cloudenv = require('cloud-env');
bindAddress = cloudenv.get('IP', bindAddress);
port = cloudenv.get('PORT', port);
} catch (e) {}
}
if (bindAddress !== undefined) {
Config.bindaddress = bindAddress;
}
if (workerCount === undefined) {
workerCount = (Config.workers !== undefined ? Config.workers : 1);
}
spawnWorker();
};
exports.killWorker = function (worker) {
let idd = worker.id + '-';
let count = 0;
Users.connections.forEach((connection, connectionid) => {
if (connectionid.substr(idd.length) === idd) {
Users.socketDisconnect(worker, worker.id, connection.socketid);
count++;
}
});
try {
worker.kill();
} catch (e) {}
delete workers[worker.id];
return count;
};
exports.killPid = function (pid) {
pid = '' + pid;
for (let id in workers) {
let worker = workers[id];
if (pid === '' + worker.process.pid) {
return this.killWorker(worker);
}
}
return false;
};
exports.socketSend = function (worker, socketid, message) {
worker.send('>' + socketid + '\n' + message);
};
exports.socketDisconnect = function (worker, socketid) {
worker.send('!' + socketid);
};
exports.channelBroadcast = function (channelid, message) {
for (let workerid in workers) {
workers[workerid].send('#' + channelid + '\n' + message);
}
};
exports.channelSend = function (worker, channelid, message) {
worker.send('#' + channelid + '\n' + message);
};
exports.channelAdd = function (worker, channelid, socketid) {
worker.send('+' + channelid + '\n' + socketid);
};
exports.channelRemove = function (worker, channelid, socketid) {
worker.send('-' + channelid + '\n' + socketid);
};
exports.subchannelBroadcast = function (channelid, message) {
for (let workerid in workers) {
workers[workerid].send(':' + channelid + '\n' + message);
}
};
exports.subchannelMove = function (worker, channelid, subchannelid, socketid) {
worker.send('.' + channelid + '\n' + subchannelid + '\n' + socketid);
};
} else {
// is worker
if (process.env.PSPORT) Config.port = +process.env.PSPORT;
if (process.env.PSBINDADDR) Config.bindaddress = process.env.PSBINDADDR;
if (+process.env.PSNOSSL) Config.ssl = null;
// ofe is optional
// if installed, it will heap dump if the process runs out of memory
try {
require('ofe').call();
} catch (e) {}
// Static HTTP server
// This handles the custom CSS and custom avatar features, and also
// redirects yourserver:8001 to yourserver-8001.psim.us
// It's optional if you don't need these features.
global.Cidr = require('./cidr');
if (Config.crashguard) {
// graceful crash
process.on('uncaughtException', err => {
require('./crashlogger.js')(err, 'Socket process (' + process.pid + ')', true);
});
}
let app = require('http').createServer();
let appssl;
if (Config.ssl) {
appssl = require('https').createServer(Config.ssl.options);
}
try {
let nodestatic = require('node-static');
let cssserver = new nodestatic.Server('./config');
let avatarserver = new nodestatic.Server('./config/avatars');
let staticserver = new nodestatic.Server('./static');
let staticRequestHandler = (request, response) => {
// console.log("static rq: " + request.socket.remoteAddress + ":" + request.socket.remotePort + " -> " + request.socket.localAddress + ":" + request.socket.localPort + " - " + request.method + " " + request.url + " " + request.httpVersion + " - " + request.rawHeaders.join('|'));
request.resume();
request.addListener('end', () => {
if (Config.customhttpresponse &&
Config.customhttpresponse(request, response)) {
return;
}
let server;
if (request.url === '/custom.css') {
server = cssserver;
} else if (request.url.substr(0, 9) === '/avatars/') {
request.url = request.url.substr(8);
server = avatarserver;
} else {
if (/^\/([A-Za-z0-9][A-Za-z0-9-]*)\/?$/.test(request.url)) {
request.url = '/';
}
server = staticserver;
}
server.serve(request, response, (e, res) => {
if (e && (e.status === 404)) {
staticserver.serveFile('404.html', 404, {}, request, response);
}
});
});
};
app.on('request', staticRequestHandler);
if (appssl) {
appssl.on('request', staticRequestHandler);
}
} catch (e) {
console.log('Could not start node-static - try `npm install` if you want to use it');
}
// SockJS server
// This is the main server that handles users connecting to our server
// and doing things on our server.
let sockjs = require('sockjs');
let server = sockjs.createServer({
sockjs_url: "//play.pokemonshowdown.com/js/lib/sockjs-0.3.min.js",
log: (severity, message) => {
if (severity === 'error') console.log('ERROR: ' + message);
},
prefix: '/showdown',
websocket: !Config.disablewebsocket,
});
let sockets = {};
let channels = {};
let subchannels = {};
// Deal with phantom connections.
let sweepClosedSockets = function () {
for (let s in sockets) {
if (sockets[s].protocol === 'xhr-streaming' &&
sockets[s]._session &&
sockets[s]._session.recv) {
sockets[s]._session.recv.didClose();
}
// A ghost connection's `_session.to_tref._idlePrev` (and `_idleNext`) property is `null` while
// it is an object for normal users. Under normal circumstances, those properties should only be
// `null` when the timeout has already been called, but somehow it's not happening for some connections.
// Simply calling `_session.timeout_cb` (the function bound to the aformentioned timeout) manually
// on those connections kills those connections. For a bit of background, this timeout is the timeout
// that sockjs sets to wait for users to reconnect within that time to continue their session.
if (sockets[s]._session &&
sockets[s]._session.to_tref &&
!sockets[s]._session.to_tref._idlePrev) {
sockets[s]._session.timeout_cb();
}
}
};
let interval = setInterval(sweepClosedSockets, 1000 * 60 * 10); // eslint-disable-line no-unused-vars
process.on('message', data => {
// console.log('worker received: ' + data);
let socket = null, socketid = '';
let channel = null, channelid = '';
let subchannel = null, subchannelid = '';
switch (data.charAt(0)) {
case '$': // $code
eval(data.substr(1));
break;
case '!': // !socketid
// destroy
socketid = data.substr(1);
socket = sockets[socketid];
if (!socket) return;
socket.end();
// After sending the FIN packet, we make sure the I/O is totally blocked for this socket
socket.destroy();
delete sockets[socketid];
for (channelid in channels) {
delete channels[channelid][socketid];
}
break;
case '>': {
// >socketid, message
// message
let nlLoc = data.indexOf('\n');
socket = sockets[data.substr(1, nlLoc - 1)];
if (!socket) return;
socket.write(data.substr(nlLoc + 1));
break;
}
case '#': {
// #channelid, message
// message to channel
let nlLoc = data.indexOf('\n');
channel = channels[data.substr(1, nlLoc - 1)];
let message = data.substr(nlLoc + 1);
for (socketid in channel) {
channel[socketid].write(message);
}
break;
}
case '+': {
// +channelid, socketid
// add to channel
let nlLoc = data.indexOf('\n');
socketid = data.substr(nlLoc + 1);
socket = sockets[socketid];
if (!socket) return;
channelid = data.substr(1, nlLoc - 1);
channel = channels[channelid];
if (!channel) channel = channels[channelid] = Object.create(null);
channel[socketid] = socket;
break;
}
case '-': {
// -channelid, socketid
// remove from channel
let nlLoc = data.indexOf('\n');
channelid = data.slice(1, nlLoc);
channel = channels[channelid];
if (!channel) return;
socketid = data.slice(nlLoc + 1);
delete channel[socketid];
if (subchannels[channelid]) delete subchannels[channelid][socketid];
let isEmpty = true;
for (let socketid in channel) { // eslint-disable-line no-unused-vars
isEmpty = false;
break;
}
if (isEmpty) {
delete channels[channelid];
delete subchannels[channelid];
}
break;
}
case '.': {
// .channelid, subchannelid, socketid
// move subchannel
let nlLoc = data.indexOf('\n');
channelid = data.slice(1, nlLoc);
let nlLoc2 = data.indexOf('\n', nlLoc + 1);
subchannelid = data.slice(nlLoc + 1, nlLoc2);
socketid = data.slice(nlLoc2 + 1);
subchannel = subchannels[channelid];
if (!subchannel) subchannel = subchannels[channelid] = Object.create(null);
if (subchannelid === '0') {
delete subchannel[socketid];
} else {
subchannel[socketid] = subchannelid;
}
break;
}
case ':': {
// :channelid, message
// message to subchannel
let nlLoc = data.indexOf('\n');
channelid = data.slice(1, nlLoc);
channel = channels[channelid];
subchannel = subchannels[channelid];
let message = data.substr(nlLoc + 1);
let messages = [null, null, null];
for (socketid in channel) {
switch (subchannel ? subchannel[socketid] : '0') {
case '1':
if (!messages[1]) {
messages[1] = message.replace(/\n\|split\n[^\n]*\n([^\n]*)\n[^\n]*\n[^\n]*/g, '\n$1');
}
channel[socketid].write(messages[1]);
break;
case '2':
if (!messages[2]) {
messages[2] = message.replace(/\n\|split\n[^\n]*\n[^\n]*\n([^\n]*)\n[^\n]*/g, '\n$1');
}
channel[socketid].write(messages[2]);
break;
default:
if (!messages[0]) {
messages[0] = message.replace(/\n\|split\n([^\n]*)\n[^\n]*\n[^\n]*\n[^\n]*/g, '\n$1');
}
channel[socketid].write(messages[0]);
break;
}
}
break;
}
default:
}
});
process.on('disconnect', () => {
process.exit();
});
// this is global so it can be hotpatched if necessary
let isTrustedProxyIp = Cidr.checker(Config.proxyip);
let socketCounter = 0;
server.on('connection', socket => {
if (!socket) {
// For reasons that are not entirely clear, SockJS sometimes triggers
// this event with a null `socket` argument.
return;
} else if (!socket.remoteAddress) {
// This condition occurs several times per day. It may be a SockJS bug.
try {
socket.end();
} catch (e) {}
return;
}
let socketid = socket.id = (++socketCounter);
sockets[socket.id] = socket;
if (isTrustedProxyIp(socket.remoteAddress)) {
let ips = (socket.headers['x-forwarded-for'] || '').split(',');
let ip;
while ((ip = ips.pop())) {
ip = ip.trim();
if (!isTrustedProxyIp(ip)) {
socket.remoteAddress = ip;
break;
}
}
}
process.send('*' + socketid + '\n' + socket.remoteAddress);
socket.on('data', message => {
// drop empty messages (DDoS?)
if (!message) return;
// drop legacy JSON messages
if (typeof message !== 'string' || message.charAt(0) === '{') return;
// drop blank messages (DDoS?)
let pipeIndex = message.indexOf('|');
if (pipeIndex < 0 || pipeIndex === message.length - 1) return;
process.send('<' + socketid + '\n' + message);
});
socket.on('close', () => {
process.send('!' + socketid);
delete sockets[socketid];
for (let channelid in channels) {
delete channels[channelid][socketid];
}
});
});
server.installHandlers(app, {});
if (!Config.bindaddress) Config.bindaddress = '0.0.0.0';
app.listen(Config.port, Config.bindaddress);
console.log('Worker now listening on ' + Config.bindaddress + ':' + Config.port);
if (appssl) {
server.installHandlers(appssl, {});
appssl.listen(Config.ssl.port, Config.bindaddress);
console.log('Worker now listening for SSL on port ' + Config.ssl.port);
}
console.log('Test your server at http://' + (Config.bindaddress === '0.0.0.0' ? 'localhost' : Config.bindaddress) + ':' + Config.port);
require('./repl.js').start('sockets-', 'nocluster-' + process.pid, cmd => eval(cmd));
}