123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587 |
-
- /**
- * Module dependencies.
- */
-
- var qs = require('querystring');
- var parse = require('url').parse;
- var base64id = require('base64id');
- var transports = require('./transports');
- var EventEmitter = require('events').EventEmitter;
- var Socket = require('./socket');
- var util = require('util');
- var debug = require('debug')('engine');
- var cookieMod = require('cookie');
-
- /**
- * Module exports.
- */
-
- module.exports = Server;
-
- /**
- * Server constructor.
- *
- * @param {Object} options
- * @api public
- */
-
- function Server (opts) {
- if (!(this instanceof Server)) {
- return new Server(opts);
- }
-
- this.clients = {};
- this.clientsCount = 0;
-
- opts = opts || {};
-
- this.wsEngine = opts.wsEngine || process.env.EIO_WS_ENGINE || 'ws';
- this.pingTimeout = opts.pingTimeout || 5000;
- this.pingInterval = opts.pingInterval || 25000;
- this.upgradeTimeout = opts.upgradeTimeout || 10000;
- this.maxHttpBufferSize = opts.maxHttpBufferSize || 10E7;
- this.transports = opts.transports || Object.keys(transports);
- this.allowUpgrades = false !== opts.allowUpgrades;
- this.allowRequest = opts.allowRequest;
- this.cookie = false !== opts.cookie ? (opts.cookie || 'io') : false;
- this.cookiePath = false !== opts.cookiePath ? (opts.cookiePath || '/') : false;
- this.cookieHttpOnly = false !== opts.cookieHttpOnly;
- this.perMessageDeflate = false !== opts.perMessageDeflate ? (opts.perMessageDeflate || true) : false;
- this.httpCompression = false !== opts.httpCompression ? (opts.httpCompression || {}) : false;
- this.initialPacket = opts.initialPacket;
-
- var self = this;
-
- // initialize compression options
- ['perMessageDeflate', 'httpCompression'].forEach(function (type) {
- var compression = self[type];
- if (true === compression) self[type] = compression = {};
- if (compression && null == compression.threshold) {
- compression.threshold = 1024;
- }
- });
-
- this.init();
- }
-
- /**
- * Protocol errors mappings.
- */
-
- Server.errors = {
- UNKNOWN_TRANSPORT: 0,
- UNKNOWN_SID: 1,
- BAD_HANDSHAKE_METHOD: 2,
- BAD_REQUEST: 3,
- FORBIDDEN: 4
- };
-
- Server.errorMessages = {
- 0: 'Transport unknown',
- 1: 'Session ID unknown',
- 2: 'Bad handshake method',
- 3: 'Bad request',
- 4: 'Forbidden'
- };
-
- /**
- * Inherits from EventEmitter.
- */
-
- util.inherits(Server, EventEmitter);
-
- /**
- * Initialize websocket server
- *
- * @api private
- */
-
- Server.prototype.init = function () {
- if (!~this.transports.indexOf('websocket')) return;
-
- if (this.ws) this.ws.close();
-
- var wsModule;
- switch (this.wsEngine) {
- case 'uws': wsModule = require('uws'); break;
- case 'ws': wsModule = require('ws'); break;
- default: throw new Error('unknown wsEngine');
- }
- this.ws = new wsModule.Server({
- noServer: true,
- clientTracking: false,
- perMessageDeflate: this.perMessageDeflate,
- maxPayload: this.maxHttpBufferSize
- });
- };
-
- /**
- * Returns a list of available transports for upgrade given a certain transport.
- *
- * @return {Array}
- * @api public
- */
-
- Server.prototype.upgrades = function (transport) {
- if (!this.allowUpgrades) return [];
- return transports[transport].upgradesTo || [];
- };
-
- /**
- * Verifies a request.
- *
- * @param {http.IncomingMessage}
- * @return {Boolean} whether the request is valid
- * @api private
- */
-
- Server.prototype.verify = function (req, upgrade, fn) {
- // transport check
- var transport = req._query.transport;
- if (!~this.transports.indexOf(transport)) {
- debug('unknown transport "%s"', transport);
- return fn(Server.errors.UNKNOWN_TRANSPORT, false);
- }
-
- // 'Origin' header check
- var isOriginInvalid = checkInvalidHeaderChar(req.headers.origin);
- if (isOriginInvalid) {
- req.headers.origin = null;
- debug('origin header invalid');
- return fn(Server.errors.BAD_REQUEST, false);
- }
-
- // sid check
- var sid = req._query.sid;
- if (sid) {
- if (!this.clients.hasOwnProperty(sid)) {
- debug('unknown sid "%s"', sid);
- return fn(Server.errors.UNKNOWN_SID, false);
- }
- if (!upgrade && this.clients[sid].transport.name !== transport) {
- debug('bad request: unexpected transport without upgrade');
- return fn(Server.errors.BAD_REQUEST, false);
- }
- } else {
- // handshake is GET only
- if ('GET' !== req.method) return fn(Server.errors.BAD_HANDSHAKE_METHOD, false);
- if (!this.allowRequest) return fn(null, true);
- return this.allowRequest(req, fn);
- }
-
- fn(null, true);
- };
-
- /**
- * Prepares a request by processing the query string.
- *
- * @api private
- */
-
- Server.prototype.prepare = function (req) {
- // try to leverage pre-existing `req._query` (e.g: from connect)
- if (!req._query) {
- req._query = ~req.url.indexOf('?') ? qs.parse(parse(req.url).query) : {};
- }
- };
-
- /**
- * Closes all clients.
- *
- * @api public
- */
-
- Server.prototype.close = function () {
- debug('closing all open clients');
- for (var i in this.clients) {
- if (this.clients.hasOwnProperty(i)) {
- this.clients[i].close(true);
- }
- }
- if (this.ws) {
- debug('closing webSocketServer');
- this.ws.close();
- // don't delete this.ws because it can be used again if the http server starts listening again
- }
- return this;
- };
-
- /**
- * Handles an Engine.IO HTTP request.
- *
- * @param {http.IncomingMessage} request
- * @param {http.ServerResponse|http.OutgoingMessage} response
- * @api public
- */
-
- Server.prototype.handleRequest = function (req, res) {
- debug('handling "%s" http request "%s"', req.method, req.url);
- this.prepare(req);
- req.res = res;
-
- var self = this;
- this.verify(req, false, function (err, success) {
- if (!success) {
- sendErrorMessage(req, res, err);
- return;
- }
-
- if (req._query.sid) {
- debug('setting new request for existing client');
- self.clients[req._query.sid].transport.onRequest(req);
- } else {
- self.handshake(req._query.transport, req);
- }
- });
- };
-
- /**
- * Sends an Engine.IO Error Message
- *
- * @param {http.ServerResponse} response
- * @param {code} error code
- * @api private
- */
-
- function sendErrorMessage (req, res, code) {
- var headers = { 'Content-Type': 'application/json' };
-
- var isForbidden = !Server.errorMessages.hasOwnProperty(code);
- if (isForbidden) {
- res.writeHead(403, headers);
- res.end(JSON.stringify({
- code: Server.errors.FORBIDDEN,
- message: code || Server.errorMessages[Server.errors.FORBIDDEN]
- }));
- return;
- }
- if (req.headers.origin) {
- headers['Access-Control-Allow-Credentials'] = 'true';
- headers['Access-Control-Allow-Origin'] = req.headers.origin;
- } else {
- headers['Access-Control-Allow-Origin'] = '*';
- }
- if (res !== undefined) {
- res.writeHead(400, headers);
- res.end(JSON.stringify({
- code: code,
- message: Server.errorMessages[code]
- }));
- }
- }
-
- /**
- * generate a socket id.
- * Overwrite this method to generate your custom socket id
- *
- * @param {Object} request object
- * @api public
- */
-
- Server.prototype.generateId = function (req) {
- return base64id.generateId();
- };
-
- /**
- * Handshakes a new client.
- *
- * @param {String} transport name
- * @param {Object} request object
- * @api private
- */
-
- Server.prototype.handshake = function (transportName, req) {
- var id = this.generateId(req);
-
- debug('handshaking client "%s"', id);
-
- try {
- var transport = new transports[transportName](req);
- if ('polling' === transportName) {
- transport.maxHttpBufferSize = this.maxHttpBufferSize;
- transport.httpCompression = this.httpCompression;
- } else if ('websocket' === transportName) {
- transport.perMessageDeflate = this.perMessageDeflate;
- }
-
- if (req._query && req._query.b64) {
- transport.supportsBinary = false;
- } else {
- transport.supportsBinary = true;
- }
- } catch (e) {
- debug('error handshaking to transport "%s"', transportName);
- sendErrorMessage(req, req.res, Server.errors.BAD_REQUEST);
- return;
- }
- var socket = new Socket(id, this, transport, req);
- var self = this;
-
- if (false !== this.cookie) {
- transport.on('headers', function (headers) {
- headers['Set-Cookie'] = cookieMod.serialize(self.cookie, id,
- {
- path: self.cookiePath,
- httpOnly: self.cookiePath ? self.cookieHttpOnly : false
- });
- });
- }
-
- transport.onRequest(req);
-
- this.clients[id] = socket;
- this.clientsCount++;
-
- socket.once('close', function () {
- delete self.clients[id];
- self.clientsCount--;
- });
-
- this.emit('connection', socket);
- };
-
- /**
- * Handles an Engine.IO HTTP Upgrade.
- *
- * @api public
- */
-
- Server.prototype.handleUpgrade = function (req, socket, upgradeHead) {
- this.prepare(req);
-
- var self = this;
- this.verify(req, true, function (err, success) {
- if (!success) {
- abortConnection(socket, err);
- return;
- }
-
- var head = Buffer.from(upgradeHead); // eslint-disable-line node/no-deprecated-api
- upgradeHead = null;
-
- // delegate to ws
- self.ws.handleUpgrade(req, socket, head, function (conn) {
- self.onWebSocket(req, conn);
- });
- });
- };
-
- /**
- * Called upon a ws.io connection.
- *
- * @param {ws.Socket} websocket
- * @api private
- */
-
- Server.prototype.onWebSocket = function (req, socket) {
- socket.on('error', onUpgradeError);
-
- if (transports[req._query.transport] !== undefined && !transports[req._query.transport].prototype.handlesUpgrades) {
- debug('transport doesnt handle upgraded requests');
- socket.close();
- return;
- }
-
- // get client id
- var id = req._query.sid;
-
- // keep a reference to the ws.Socket
- req.websocket = socket;
-
- if (id) {
- var client = this.clients[id];
- if (!client) {
- debug('upgrade attempt for closed client');
- socket.close();
- } else if (client.upgrading) {
- debug('transport has already been trying to upgrade');
- socket.close();
- } else if (client.upgraded) {
- debug('transport had already been upgraded');
- socket.close();
- } else {
- debug('upgrading existing transport');
-
- // transport error handling takes over
- socket.removeListener('error', onUpgradeError);
-
- var transport = new transports[req._query.transport](req);
- if (req._query && req._query.b64) {
- transport.supportsBinary = false;
- } else {
- transport.supportsBinary = true;
- }
- transport.perMessageDeflate = this.perMessageDeflate;
- client.maybeUpgrade(transport);
- }
- } else {
- // transport error handling takes over
- socket.removeListener('error', onUpgradeError);
-
- this.handshake(req._query.transport, req);
- }
-
- function onUpgradeError () {
- debug('websocket error before upgrade');
- // socket.close() not needed
- }
- };
-
- /**
- * Captures upgrade requests for a http.Server.
- *
- * @param {http.Server} server
- * @param {Object} options
- * @api public
- */
-
- Server.prototype.attach = function (server, options) {
- var self = this;
- options = options || {};
- var path = (options.path || '/engine.io').replace(/\/$/, '');
-
- var destroyUpgradeTimeout = options.destroyUpgradeTimeout || 1000;
-
- // normalize path
- path += '/';
-
- function check (req) {
- if ('OPTIONS' === req.method && false === options.handlePreflightRequest) {
- return false;
- }
- return path === req.url.substr(0, path.length);
- }
-
- // cache and clean up listeners
- var listeners = server.listeners('request').slice(0);
- server.removeAllListeners('request');
- server.on('close', self.close.bind(self));
- server.on('listening', self.init.bind(self));
-
- // add request handler
- server.on('request', function (req, res) {
- if (check(req)) {
- debug('intercepting request for path "%s"', path);
- if ('OPTIONS' === req.method && 'function' === typeof options.handlePreflightRequest) {
- options.handlePreflightRequest.call(server, req, res);
- } else {
- self.handleRequest(req, res);
- }
- } else {
- for (var i = 0, l = listeners.length; i < l; i++) {
- listeners[i].call(server, req, res);
- }
- }
- });
-
- if (~self.transports.indexOf('websocket')) {
- server.on('upgrade', function (req, socket, head) {
- if (check(req)) {
- self.handleUpgrade(req, socket, head);
- } else if (false !== options.destroyUpgrade) {
- // default node behavior is to disconnect when no handlers
- // but by adding a handler, we prevent that
- // and if no eio thing handles the upgrade
- // then the socket needs to die!
- setTimeout(function () {
- if (socket.writable && socket.bytesWritten <= 0) {
- return socket.end();
- }
- }, destroyUpgradeTimeout);
- }
- });
- }
- };
-
- /**
- * Closes the connection
- *
- * @param {net.Socket} socket
- * @param {code} error code
- * @api private
- */
-
- function abortConnection (socket, code) {
- if (socket.writable) {
- var message = Server.errorMessages.hasOwnProperty(code) ? Server.errorMessages[code] : String(code || '');
- var length = Buffer.byteLength(message);
- socket.write(
- 'HTTP/1.1 400 Bad Request\r\n' +
- 'Connection: close\r\n' +
- 'Content-type: text/html\r\n' +
- 'Content-Length: ' + length + '\r\n' +
- '\r\n' +
- message
- );
- }
- socket.destroy();
- }
-
- /* eslint-disable */
-
- /**
- * From https://github.com/nodejs/node/blob/v8.4.0/lib/_http_common.js#L303-L354
- *
- * True if val contains an invalid field-vchar
- * field-value = *( field-content / obs-fold )
- * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
- * field-vchar = VCHAR / obs-text
- *
- * checkInvalidHeaderChar() is currently designed to be inlinable by v8,
- * so take care when making changes to the implementation so that the source
- * code size does not exceed v8's default max_inlined_source_size setting.
- **/
- var validHdrChars = [
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, // 0 - 15
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 16 - 31
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 32 - 47
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 48 - 63
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 64 - 79
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 80 - 95
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 96 - 111
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, // 112 - 127
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 128 ...
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // ... 255
- ];
-
- function checkInvalidHeaderChar(val) {
- val += '';
- if (val.length < 1)
- return false;
- if (!validHdrChars[val.charCodeAt(0)]) {
- debug('invalid header, index 0, char "%s"', val.charCodeAt(0));
- return true;
- }
- if (val.length < 2)
- return false;
- if (!validHdrChars[val.charCodeAt(1)]) {
- debug('invalid header, index 1, char "%s"', val.charCodeAt(1));
- return true;
- }
- if (val.length < 3)
- return false;
- if (!validHdrChars[val.charCodeAt(2)]) {
- debug('invalid header, index 2, char "%s"', val.charCodeAt(2));
- return true;
- }
- if (val.length < 4)
- return false;
- if (!validHdrChars[val.charCodeAt(3)]) {
- debug('invalid header, index 3, char "%s"', val.charCodeAt(3));
- return true;
- }
- for (var i = 4; i < val.length; ++i) {
- if (!validHdrChars[val.charCodeAt(i)]) {
- debug('invalid header, index "%i", char "%s"', i, val.charCodeAt(i));
- return true;
- }
- }
- return false;
- }
|