383 lines
11 KiB
JavaScript
383 lines
11 KiB
JavaScript
'use strict';
|
|
|
|
var sni = require('sni');
|
|
var url = require('url');
|
|
var jwt = require('jsonwebtoken');
|
|
var packer = require('tunnel-packer');
|
|
|
|
var Devices = {};
|
|
Devices.replace = function (store, servername, newDevice) {
|
|
var devices = Devices.list(store, servername);
|
|
var oldDevice;
|
|
if (!devices.some(function (device, i) {
|
|
if ((device.deviceId && device.deviceId === newDevice.deviceId)
|
|
|| (device.servername && device.servername === newDevice.servername)) {
|
|
oldDevice = devices[i];
|
|
devices[i] = newDevice;
|
|
return true;
|
|
}
|
|
})) {
|
|
devices.push(newDevice);
|
|
store[servername] = devices;
|
|
}
|
|
return oldDevice;
|
|
};
|
|
Devices.remove = function (store, servername, newDevice) {
|
|
var devices = Devices.list(store, servername);
|
|
var oldDevice;
|
|
devices.some(function (device, i) {
|
|
if ((device.deviceId && device.deviceId === newDevice.deviceId)
|
|
|| (device.servername && device.servername === newDevice.servername)) {
|
|
oldDevice = devices.splice(i, 1);
|
|
return true;
|
|
}
|
|
});
|
|
return oldDevice;
|
|
};
|
|
Devices.list = function (store, servername) {
|
|
return store[servername] || [];
|
|
};
|
|
Devices.exist = function (store, servername) {
|
|
return (store[servername] || []).length;
|
|
};
|
|
Devices.next = function (store, servername) {
|
|
var devices = Devices.list(store, servername);
|
|
var device;
|
|
|
|
if (devices._index >= devices.length) {
|
|
devices._index = 0;
|
|
}
|
|
device = devices[devices._index || 0];
|
|
devices._index = (devices._index || 0) + 1;
|
|
|
|
return device;
|
|
};
|
|
|
|
module.exports.store = { Devices: Devices };
|
|
module.exports.create = function (copts) {
|
|
var deviceLists = {};
|
|
|
|
function onWsConnection(ws) {
|
|
var location = url.parse(ws.upgradeReq.url, true);
|
|
var authn = (ws.upgradeReq.headers.authorization||'').split(/\s+/);
|
|
var jwtoken;
|
|
var token;
|
|
|
|
try {
|
|
if (authn[0]) {
|
|
if ('basic' === authn[0].toLowerCase()) {
|
|
authn = new Buffer(authn[1], 'base64').toString('ascii').split(':');
|
|
}
|
|
/*
|
|
if (-1 !== [ 'bearer', 'jwk' ].indexOf(authn[0].toLowerCase())) {
|
|
jwtoken = authn[1];
|
|
}
|
|
*/
|
|
}
|
|
jwtoken = authn[1] || location.query.access_token;
|
|
} catch(e) {
|
|
jwtoken = null;
|
|
}
|
|
|
|
try {
|
|
token = jwt.verify(jwtoken, copts.secret);
|
|
} catch(e) {
|
|
token = null;
|
|
}
|
|
|
|
/*
|
|
if (!token || !token.name) {
|
|
console.log('location, token');
|
|
console.log(location.query.access_token);
|
|
console.log(token);
|
|
}
|
|
*/
|
|
|
|
if (!token) {
|
|
ws.send(JSON.stringify({ error: { message: "invalid access token", code: "E_INVALID_TOKEN" } }));
|
|
ws.close();
|
|
return;
|
|
}
|
|
|
|
//console.log('[wstunneld.js] DEBUG', token);
|
|
|
|
if (!Array.isArray(token.domains)) {
|
|
if ('string' === typeof token.name) {
|
|
token.domains = [ token.name ];
|
|
}
|
|
}
|
|
|
|
if (!Array.isArray(token.domains)) {
|
|
ws.send(JSON.stringify({ error: { message: "invalid server name", code: "E_INVALID_NAME" } }));
|
|
ws.close();
|
|
return;
|
|
}
|
|
|
|
var remote;
|
|
token.domains.some(function (domainname) {
|
|
remote = Devices.next(deviceLists, domainname);
|
|
return remote;
|
|
});
|
|
remote = remote || {};
|
|
token.domains.forEach(function (domainname) {
|
|
console.log('domainname', domainname);
|
|
Devices.replace(deviceLists, domainname, remote);
|
|
});
|
|
var handlers = {
|
|
onmessage: function (opts) {
|
|
// opts.data
|
|
var cid = packer.addrToId(opts);
|
|
var cstream = remote.clients[cid];
|
|
|
|
console.log("remote '" + remote.servername + " : " + remote.id + "' has data for '" + cid + "'", opts.data.byteLength);
|
|
|
|
if (!cstream) {
|
|
remote.ws.send(packer.pack(opts, null, 'error'));
|
|
return;
|
|
}
|
|
|
|
cstream.browser.write(opts.data);
|
|
}
|
|
, onend: function (opts) {
|
|
var cid = packer.addrToId(opts);
|
|
console.log('[TunnelEnd]', cid);
|
|
handlers._onend(cid);
|
|
}
|
|
, onerror: function (opts) {
|
|
var cid = packer.addrToId(opts);
|
|
console.log('[TunnelError]', cid);
|
|
handlers._onend(cid);
|
|
}
|
|
, _onend: function (cid) {
|
|
var c = remote.clients[cid];
|
|
delete remote.clients[cid];
|
|
try {
|
|
c.browser.end();
|
|
} catch(e) {
|
|
// ignore
|
|
}
|
|
try {
|
|
c.wrapped.end();
|
|
} catch(e) {
|
|
// ignore
|
|
}
|
|
}
|
|
};
|
|
// TODO allow more than one remote per servername
|
|
remote.ws = ws;
|
|
remote.servername = (token.device && token.device.hostname) || token.domains.join(',');
|
|
remote.deviceId = (token.device && token.device.id) || null;
|
|
remote.id = packer.socketToId(ws.upgradeReq.socket);
|
|
console.log("remote.id", remote.id);
|
|
// TODO allow tls to be decrypted by server if client is actually a browser
|
|
// and we haven't implemented tls in the browser yet
|
|
remote.decrypt = token.decrypt;
|
|
// TODO how to allow a child process to communicate with this one?
|
|
remote.clients = {};
|
|
remote.handle = { address: null, handle: null };
|
|
remote.unpacker = packer.create(handlers);
|
|
remote.domains = token.domains;
|
|
|
|
function forwardMessage(chunk) {
|
|
console.log('message from home cloud to tunneler to browser', chunk.byteLength);
|
|
//console.log(chunk.toString());
|
|
remote.unpacker.fns.addChunk(chunk);
|
|
}
|
|
function hangup() {
|
|
// the remote will handle closing its local connections
|
|
Object.keys(remote.clients).forEach(function (cid) {
|
|
try {
|
|
remote.clients[cid].browser.end();
|
|
} catch(e) {
|
|
// ignore
|
|
}
|
|
});
|
|
token.domains.forEach(function (domainname) {
|
|
Devices.remove(deviceLists, domainname, remote);
|
|
});
|
|
}
|
|
function die() {
|
|
hangup();
|
|
}
|
|
|
|
ws.on('message', forwardMessage);
|
|
ws.on('close', hangup);
|
|
ws.on('error', die);
|
|
}
|
|
|
|
function pipeWs(servername, service, browser, remote) {
|
|
console.log('pipeWs');
|
|
|
|
//var remote = deviceLists[servername];
|
|
var ws = remote.ws;
|
|
//var address = packer.socketToAddr(ws.upgradeReq.socket);
|
|
var baddress = packer.socketToAddr(browser);
|
|
var cid = packer.addrToId(baddress);
|
|
console.log('servername:', servername);
|
|
console.log('service:', service);
|
|
baddress.service = service;
|
|
var wrapForRemote = packer.Transform.create({
|
|
id: cid
|
|
//, remoteId: remote.id
|
|
, address: baddress
|
|
, servername: servername
|
|
, service: service
|
|
});
|
|
console.log('home-cloud is', packer.socketToId(remote.ws.upgradeReq.socket));
|
|
console.log('browser is', cid);
|
|
var bstream = remote.clients[cid] = {
|
|
wrapped: browser.pipe(wrapForRemote)
|
|
, browser: browser
|
|
, address: baddress
|
|
};
|
|
//var bstream = remote.clients[cid] = wrapForRemote.pipe(browser);
|
|
bstream.wrapped.on('data', function (pchunk) {
|
|
// var chunk = socket.read();
|
|
console.log('[bstream] data from browser to tunneler', pchunk.byteLength);
|
|
//console.log(JSON.stringify(pchunk.toString()));
|
|
try {
|
|
ws.send(pchunk, { binary: true });
|
|
} catch(e) {
|
|
try {
|
|
bstream.browser.end();
|
|
} catch(e) {
|
|
// ignore
|
|
}
|
|
}
|
|
});
|
|
bstream.wrapped.on('error', function (err) {
|
|
console.error('[error] bstream.wrapped.error');
|
|
console.error(err);
|
|
try {
|
|
ws.send(packer.pack(baddress, null, 'error'), { binary: true });
|
|
} catch(e) {
|
|
// ignore
|
|
}
|
|
try {
|
|
bstream.browser.end();
|
|
} catch(e) {
|
|
// ignore
|
|
}
|
|
delete remote.clients[cid];
|
|
});
|
|
bstream.wrapped.on('end', function () {
|
|
try {
|
|
ws.send(packer.pack(baddress, null, 'end'), { binary: true });
|
|
} catch(e) {
|
|
// ignore
|
|
}
|
|
try {
|
|
bstream.browser.end();
|
|
} catch(e) {
|
|
// ignore
|
|
}
|
|
delete remote.clients[cid];
|
|
});
|
|
}
|
|
|
|
function onTcpConnection(browser) {
|
|
// this works when I put it here, but I don't know if it's tls yet here
|
|
// httpsServer.emit('connection', socket);
|
|
//tls3000.emit('connection', socket);
|
|
|
|
//var tlsSocket = new tls.TLSSocket(socket, { secureContext: tls.createSecureContext(tlsOpts) });
|
|
//tlsSocket.on('data', function (chunk) {
|
|
// console.log('dummy', chunk.byteLength);
|
|
//});
|
|
|
|
//return;
|
|
browser.once('data', function (firstChunk) {
|
|
// BUG XXX: this assumes that the packet won't be chunked smaller
|
|
// than the 'hello' or the point of the 'Host' header.
|
|
// This is fairly reasonable, but there are edge cases where
|
|
// it does not hold (such as manual debugging with telnet)
|
|
// and so it should be fixed at some point in the future
|
|
|
|
// defer after return (instead of being in many places)
|
|
process.nextTick(function () {
|
|
browser.unshift(firstChunk);
|
|
});
|
|
|
|
var service = 'tcp';
|
|
var servername;
|
|
var str;
|
|
var m;
|
|
|
|
function tryTls() {
|
|
var nextDevice;
|
|
|
|
if (-1 !== copts.servernames.indexOf(servername)) {
|
|
console.log("Lock and load, admin interface time!");
|
|
copts.httpsTunnel(servername, browser);
|
|
return;
|
|
}
|
|
|
|
if (!servername) {
|
|
console.log("No SNI was given, so there's nothing we can do here");
|
|
copts.httpsInvalid(servername, browser);
|
|
return;
|
|
}
|
|
|
|
nextDevice = Devices.next(deviceLists, servername);
|
|
if (!nextDevice) {
|
|
console.log("No devices match the given servername");
|
|
copts.httpsInvalid(servername, browser);
|
|
return;
|
|
}
|
|
|
|
console.log("pipeWs(servername, service, socket, deviceLists['" + servername + "'])");
|
|
pipeWs(servername, service, browser, nextDevice);
|
|
}
|
|
|
|
// https://github.com/mscdex/httpolyglot/issues/3#issuecomment-173680155
|
|
if (22 === firstChunk[0]) {
|
|
// TLS
|
|
service = 'https';
|
|
servername = (sni(firstChunk)||'').toLowerCase();
|
|
console.log("tls hello servername:", servername);
|
|
tryTls();
|
|
return;
|
|
}
|
|
|
|
if (firstChunk[0] > 32 && firstChunk[0] < 127) {
|
|
str = firstChunk.toString();
|
|
m = str.match(/(?:^|[\r\n])Host: ([^\r\n]+)[\r\n]*/im);
|
|
servername = (m && m[1].toLowerCase() || '').split(':')[0];
|
|
console.log('servername', servername);
|
|
if (/HTTP\//i.test(str)) {
|
|
service = 'http';
|
|
// TODO disallow http entirely
|
|
// /^\/\.well-known\/acme-challenge\//.test(str)
|
|
if (/well-known/.test(str)) {
|
|
// HTTP
|
|
if (Devices.exist(deviceLists, servername)) {
|
|
pipeWs(servername, service, browser, Devices.next(deviceLists, servername));
|
|
return;
|
|
}
|
|
copts.handleHttp(servername, browser);
|
|
}
|
|
else {
|
|
// redirect to https
|
|
copts.handleInsecureHttp(servername, browser);
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
|
|
console.error("Got unexpected connection", str);
|
|
browser.write(JSON.stringify({ error: {
|
|
message: "not sure what you were trying to do there..."
|
|
, code: 'E_INVALID_PROTOCOL' }
|
|
}));
|
|
browser.end();
|
|
});
|
|
browser.on('error', function (err) {
|
|
console.error('[error] tcp socket raw TODO forward and close');
|
|
console.error(err);
|
|
});
|
|
|
|
}
|
|
|
|
return { tcp: onTcpConnection, ws: onWsConnection };
|
|
};
|