| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | #!/usr/bin/env node
 | 
					
						
							|  |  |  | (function () { | 
					
						
							|  |  |  | 'use strict'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var pkg = require('../package.json'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var url = require('url'); | 
					
						
							|  |  |  | var path = require('path'); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  | var os = require('os'); | 
					
						
							| 
									
										
										
										
											2018-06-20 09:07:35 +00:00
										 |  |  | var fs = require('fs'); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  | var common = require('../lib/cli-common.js'); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | var http = require('http'); | 
					
						
							|  |  |  | var YAML = require('js-yaml'); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  | var recase = require('recase').create({}); | 
					
						
							|  |  |  | var camelCopy = recase.camelCopy.bind(recase); | 
					
						
							|  |  |  | var snakeCopy = recase.snakeCopy.bind(recase); | 
					
						
							|  |  |  | var state = { homedir: os.homedir(), servernames: {}, ports: {} }; | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | var argv = process.argv.slice(2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var confIndex = argv.indexOf('--config'); | 
					
						
							|  |  |  | var confpath; | 
					
						
							|  |  |  | var confargs; | 
					
						
							|  |  |  | if (-1 === confIndex) { | 
					
						
							|  |  |  |   confIndex = argv.indexOf('-c'); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | if (-1 !== confIndex) { | 
					
						
							|  |  |  |   confargs = argv.splice(confIndex, 2); | 
					
						
							|  |  |  |   confpath = confargs[1]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  | var cancelUpdater = require('../lib/updater')(pkg); | 
					
						
							| 
									
										
										
										
											2018-06-14 05:24:28 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | function help() { | 
					
						
							|  |  |  |   console.info(''); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   console.info('Telebit Daemon v' + pkg.version); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |   console.info(''); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   console.info('Usage:'); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |   console.info(''); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   console.info('\ttelebitd --config <path>'); | 
					
						
							|  |  |  |   console.info('\tex: telebitd --config ~/.config/telebit/telebitd.yml'); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |   console.info(''); | 
					
						
							|  |  |  |   console.info(''); | 
					
						
							|  |  |  |   console.info('Config:'); | 
					
						
							|  |  |  |   console.info(''); | 
					
						
							|  |  |  |   console.info('\tSee https://git.coolaj86.com/coolaj86/telebit.js'); | 
					
						
							|  |  |  |   console.info(''); | 
					
						
							|  |  |  |   console.info(''); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-14 02:42:41 -06:00
										 |  |  | var verstr = [ pkg.name + ' daemon v' + pkg.version ]; | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | if (-1 === confIndex) { | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |   // We have two possible valid paths if no --config is given (i.e. run from an npm-only install)
 | 
					
						
							|  |  |  |   //   * {install}/etc/telebitd.yml
 | 
					
						
							|  |  |  |   //   * ~/.config/telebit/telebitd.yml
 | 
					
						
							|  |  |  |   // We'll asume the later since the installers include --config in the system launcher script
 | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |   confpath = common.DEFAULT_CONFIG_PATH; | 
					
						
							| 
									
										
										
										
											2018-06-14 02:39:34 -06:00
										 |  |  |   verstr.push('(--config "' + confpath + '")'); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (-1 !== argv.indexOf('-h') || -1 !== argv.indexOf('--help')) { | 
					
						
							|  |  |  |   help(); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   process.exit(0); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | } | 
					
						
							|  |  |  | if (!confpath || /^--/.test(confpath)) { | 
					
						
							|  |  |  |   help(); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   process.exit(1); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  | var tokenpath = path.join(path.dirname(confpath), 'access_token.txt'); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | var token; | 
					
						
							|  |  |  | try { | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |   token = fs.readFileSync(tokenpath, 'ascii').trim(); | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |   console.log('[DEBUG] access_token', typeof token, token); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | } catch(e) { | 
					
						
							|  |  |  |   // ignore
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | var controlServer; | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  | var tun; | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-30 19:34:15 -06:00
										 |  |  | var controllers = {}; | 
					
						
							|  |  |  | function saveConfig(cb) { | 
					
						
							|  |  |  |   fs.writeFile(confpath, YAML.safeDump(snakeCopy(state.config)), cb); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | function getServername(servernames, sub) { | 
					
						
							|  |  |  |   if (state.servernames[sub]) { | 
					
						
							|  |  |  |     return sub; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   var names = Object.keys(servernames).map(function (servername) { | 
					
						
							|  |  |  |     if ('*.' === servername.slice(0,2)) { | 
					
						
							|  |  |  |       return servername; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return '*.' + servername; | 
					
						
							|  |  |  |   }).sort(function (a, b) { | 
					
						
							|  |  |  |     return b.length - a.length; | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return names.filter(function (pattern) { | 
					
						
							|  |  |  |     // '.example.com' = '*.example.com'.split(1)
 | 
					
						
							|  |  |  |     var subPiece = pattern.slice(1); | 
					
						
							|  |  |  |     // '.com' = 'sub.example.com'.slice(-4)
 | 
					
						
							|  |  |  |     // '.example.com' = 'sub.example.com'.slice(-12)
 | 
					
						
							|  |  |  |     if (subPiece === sub.slice(-subPiece.length)) { | 
					
						
							|  |  |  |       return subPiece; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   })[0]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | controllers.http = function (req, res, opts) { | 
					
						
							|  |  |  |   function getAppname(pathname) { | 
					
						
							|  |  |  |     // port number
 | 
					
						
							|  |  |  |     if (String(pathname) === String(parseInt(pathname, 10))) { | 
					
						
							|  |  |  |       return String(pathname); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     var paths = pathname.split(/[\\\/\:]/); | 
					
						
							|  |  |  |     // rid trailing slash(es)
 | 
					
						
							|  |  |  |     while (!paths[paths.length -1]) { | 
					
						
							|  |  |  |       paths.pop(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     var name = paths.pop(); | 
					
						
							|  |  |  |     name = path.basename(name, path.extname(name)); | 
					
						
							|  |  |  |     name = name.replace(/\./, '-').replace(/-+/, '-'); | 
					
						
							|  |  |  |     return name; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   if (!opts.body) { | 
					
						
							|  |  |  |     res.statusCode = 422; | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |     res.end(JSON.stringify({"error":{"message":"module \'http\' needs more arguments"}})); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   var active = true; | 
					
						
							|  |  |  |   var portOrPath = opts.body[0]; | 
					
						
							|  |  |  |   var appname = getAppname(portOrPath); | 
					
						
							|  |  |  |   var subdomain = opts.body[1]; | 
					
						
							|  |  |  |   var remoteHost; | 
					
						
							|  |  |  |   if (subdomain) { | 
					
						
							|  |  |  |     var handlerName = getServername(state.servernames, subdomain); | 
					
						
							|  |  |  |     if (!handlerName) { | 
					
						
							|  |  |  |       active = false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!state.servernames[subdomain]) { | 
					
						
							|  |  |  |       state.servernames[subdomain] = {}; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     state.servernames[subdomain].handler = portOrPath; | 
					
						
							|  |  |  |     remoteHost = subdomain; | 
					
						
							|  |  |  |   } else { | 
					
						
							|  |  |  |     if (!Object.keys(state.servernames).sort(function (a, b) { | 
					
						
							|  |  |  |       return b.length - a.length; | 
					
						
							|  |  |  |     }).some(function (key) { | 
					
						
							|  |  |  |       if (state.servernames[key].handler === appname) { | 
					
						
							|  |  |  |         // example.com.handler: 3000 // already set
 | 
					
						
							|  |  |  |         remoteHost = key; | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       if (state.servernames[key].wildcard) { | 
					
						
							|  |  |  |         if (!state.servernames[appname + '.' + key]) { | 
					
						
							|  |  |  |           state.servernames[appname + '.' + key] = {}; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         state.servernames[appname + '.' + key].handler = portOrPath; | 
					
						
							|  |  |  |         remoteHost = appname + '.' + key; | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     })) { | 
					
						
							|  |  |  |       Object.keys(state.servernames).some(function (key) { | 
					
						
							|  |  |  |         state.servernames[key].handler = portOrPath; | 
					
						
							|  |  |  |         remoteHost = appname + '.' + key; | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   state.config.servernames = state.servernames; | 
					
						
							|  |  |  |   saveConfig(function (err) { | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |     res.end(JSON.stringify({ | 
					
						
							|  |  |  |       success: true | 
					
						
							|  |  |  |     , active: active | 
					
						
							|  |  |  |     , remote: remoteHost | 
					
						
							|  |  |  |     , local: portOrPath | 
					
						
							|  |  |  |     , saved: !err | 
					
						
							|  |  |  |     , module: 'http' | 
					
						
							|  |  |  |     })); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | controllers.tcp = function (req, res, opts) { | 
					
						
							|  |  |  |   if (!opts.body) { | 
					
						
							|  |  |  |     res.statusCode = 422; | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |     res.end(JSON.stringify({ error: { message: "module 'tcp' needs more arguments" } })); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   var active; | 
					
						
							|  |  |  |   var remotePort = opts.body[1]; | 
					
						
							|  |  |  |   var portOrPath = opts.body[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // portnum
 | 
					
						
							|  |  |  |   if (remotePort) { | 
					
						
							|  |  |  |     if (!state.ports[remotePort]) { | 
					
						
							|  |  |  |       active = false; | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     // forward-to port-or-module
 | 
					
						
							|  |  |  |     // TODO we can't send files over tcp until we fix the connect event bug
 | 
					
						
							|  |  |  |     state.ports[remotePort].handler = portOrPath; | 
					
						
							|  |  |  |   } else { | 
					
						
							|  |  |  |     if (!Object.keys(state.ports).some(function (key) { | 
					
						
							|  |  |  |       if (!state.ports[key].handler) { | 
					
						
							|  |  |  |         state.ports[key].handler = portOrPath; | 
					
						
							|  |  |  |         remotePort = key; | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     })) { | 
					
						
							|  |  |  |       Object.keys(state.ports).some(function (key) { | 
					
						
							|  |  |  |         state.ports[key].handler = portOrPath; | 
					
						
							|  |  |  |         remotePort = key; | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   state.config.ports = state.ports; | 
					
						
							|  |  |  |   saveConfig(function (err) { | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |     res.end(JSON.stringify({ | 
					
						
							|  |  |  |       success: true | 
					
						
							|  |  |  |     , active: active | 
					
						
							|  |  |  |     , remote: remotePort | 
					
						
							|  |  |  |     , local: portOrPath | 
					
						
							|  |  |  |     , saved: !err | 
					
						
							|  |  |  |     , module: 'tcp' | 
					
						
							|  |  |  |     })); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | controllers.ssh = function (req, res, opts) { | 
					
						
							|  |  |  |   if (!opts.body) { | 
					
						
							|  |  |  |     res.statusCode = 422; | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |     res.end(JSON.stringify({"error":{"message":"module 'ssh' needs more arguments"}})); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   function sshSuccess() { | 
					
						
							|  |  |  |     //state.config.sshAuto = state.sshAuto;
 | 
					
						
							|  |  |  |     saveConfig(function (err) { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |       res.end(JSON.stringify({ | 
					
						
							|  |  |  |         success: true | 
					
						
							|  |  |  |       , active: true | 
					
						
							|  |  |  |       , remote: Object.keys(state.config.ports)[0] | 
					
						
							|  |  |  |       , local: state.config.sshAuto || 22 | 
					
						
							|  |  |  |       , saved: !err | 
					
						
							|  |  |  |       , module: 'ssh' | 
					
						
							|  |  |  |       })); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   var sshAuto = opts.body[0]; | 
					
						
							|  |  |  |   if (-1 !== [ 'false', 'none', 'off', 'disable' ].indexOf(sshAuto)) { | 
					
						
							|  |  |  |     state.config.sshAuto = false; | 
					
						
							|  |  |  |     sshSuccess(); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   if (-1 !== [ 'true', 'auto', 'on', 'enable' ].indexOf(sshAuto)) { | 
					
						
							|  |  |  |     state.config.sshAuto = 22; | 
					
						
							|  |  |  |     sshSuccess(); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   sshAuto = parseInt(sshAuto, 10); | 
					
						
							|  |  |  |   if (!sshAuto || sshAuto <= 0 || sshAuto > 65535) { | 
					
						
							|  |  |  |     res.statusCode = 400; | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |     res.end(JSON.stringify({ error: { message: "bad ssh_auto option '" + opts.body[0] + "'" } })); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   state.config.sshAuto = sshAuto; | 
					
						
							|  |  |  |   sshSuccess(); | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  | function serveControlsHelper() { | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   controlServer = http.createServer(function (req, res) { | 
					
						
							|  |  |  |     var opts = url.parse(req.url, true); | 
					
						
							|  |  |  |     if (opts.query._body) { | 
					
						
							|  |  |  |       try { | 
					
						
							|  |  |  |         opts.body = JSON.parse(opts.query._body, true); | 
					
						
							|  |  |  |       } catch(e) { | 
					
						
							|  |  |  |         res.statusCode = 500; | 
					
						
							|  |  |  |         res.end('{"error":{"message":"?_body={{bad_format}}"}}'); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |     function listSuccess() { | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |       var dumpy = { | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |         servernames: state.servernames | 
					
						
							|  |  |  |       , ports: state.ports | 
					
						
							|  |  |  |       , ssh: state.config.sshAuto || 'disabled' | 
					
						
							| 
									
										
										
										
											2018-06-13 13:12:38 -06:00
										 |  |  |       , code: 'CONFIG' | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |       }; | 
					
						
							| 
									
										
										
										
											2018-06-21 11:01:16 +00:00
										 |  |  |       if (state.otp) { | 
					
						
							|  |  |  |         dumpy.device_pair_code = state.otp; | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  |       if (state._can_pair && state.config.email && !state.token) { | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |         dumpy.code = "AWAIT_AUTH"; | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |         dumpy.message = "Please run 'telebit init' to authenticate."; | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 13:12:38 -06:00
										 |  |  |       res.end(JSON.stringify(dumpy)); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-27 22:58:43 -06:00
										 |  |  |     if (/\b(config)\b/.test(opts.pathname) && /get/i.test(req.method)) { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'appliCation/json'); | 
					
						
							|  |  |  |       res.end(JSON.stringify(state.config)); | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 14:48:29 -06:00
										 |  |  |     //
 | 
					
						
							|  |  |  |     // without proper config
 | 
					
						
							|  |  |  |     //
 | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |     function saveAndReport(err, _tun) { | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |       console.log('[DEBUG] saveAndReport config write', confpath); | 
					
						
							|  |  |  |       console.log(YAML.safeDump(snakeCopy(state.config))); | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |       if (err) { throw err; } | 
					
						
							|  |  |  |       tun = _tun; | 
					
						
							|  |  |  |       fs.writeFile(confpath, YAML.safeDump(snakeCopy(state.config)), function (err) { | 
					
						
							|  |  |  |         if (err) { | 
					
						
							|  |  |  |           res.statusCode = 500; | 
					
						
							|  |  |  |           res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |           res.end('{"error":{"message":"Could not save config file after init: ' + err.message.replace(/"/g, "'") | 
					
						
							|  |  |  |             + '.\nPerhaps check that the file exists and your user has permissions to write it?"}}'); | 
					
						
							|  |  |  |           return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         listSuccess(); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-13 13:38:59 -06:00
										 |  |  |     if (/\b(init|config)\b/.test(opts.pathname)) { | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |       var conf = {}; | 
					
						
							|  |  |  |       if (!opts.body) { | 
					
						
							|  |  |  |         res.statusCode = 422; | 
					
						
							| 
									
										
										
										
											2018-06-27 22:58:43 -06:00
										 |  |  |         res.end('{"error":{"message":"module \'init\' needs more arguments"}}'); | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       // relay, email, agree_tos, servernames, ports
 | 
					
						
							|  |  |  |       //
 | 
					
						
							|  |  |  |       opts.body.forEach(function (opt) { | 
					
						
							| 
									
										
										
										
											2018-06-13 12:34:45 -06:00
										 |  |  |         var parts = opt.split(/:/); | 
					
						
							| 
									
										
										
										
											2018-06-13 13:20:08 -06:00
										 |  |  |         if ('true' === parts[1]) { | 
					
						
							|  |  |  |           parts[1] = true; | 
					
						
							|  |  |  |         } else if ('false' === parts[1]) { | 
					
						
							|  |  |  |           parts[1] = false; | 
					
						
							| 
									
										
										
										
											2018-06-13 13:21:42 -06:00
										 |  |  |         } else if ('null' === parts[1]) { | 
					
						
							|  |  |  |           parts[1] = null; | 
					
						
							|  |  |  |         } else if ('undefined' === parts[1]) { | 
					
						
							|  |  |  |           parts[1] = undefined; | 
					
						
							| 
									
										
										
										
											2018-06-13 13:20:08 -06:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |         conf[parts[0]] = parts[1]; | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // TODO camelCase query
 | 
					
						
							|  |  |  |       state.config.email = conf.email || state.config.email || ''; | 
					
						
							| 
									
										
										
										
											2018-06-29 04:15:23 -06:00
										 |  |  |       if ('undefined' !== typeof conf.agreeTos | 
					
						
							|  |  |  |         || 'undefined' !== typeof conf.agreeTos ) { | 
					
						
							|  |  |  |         state.config.agreeTos = conf.agreeTos || conf.agree_tos; | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-06-30 18:18:03 -06:00
										 |  |  |       state.otp = conf._otp; // this should only be done on the client side
 | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |       state.config.relay = conf.relay || state.config.relay || ''; | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |       console.log(); | 
					
						
							|  |  |  |       console.log('conf.token', typeof conf.token, conf.token); | 
					
						
							|  |  |  |       console.log('state.config.token', typeof state.config.token, state.config.token); | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |       state.config.token = conf.token || state.config.token || null; | 
					
						
							|  |  |  |       state.config.secret = conf.secret || state.config.secret || null; | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |       state.pretoken = conf.pretoken || state.config.pretoken || null; | 
					
						
							|  |  |  |       if (state.secret) { | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |         console.log('state.secret'); | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |         state.token = common.signToken(state); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-06-29 04:15:23 -06:00
										 |  |  |       if (!state.token) { | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |         console.log('!state.token'); | 
					
						
							| 
									
										
										
										
											2018-06-29 04:15:23 -06:00
										 |  |  |         state.token = conf._token; | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |       console.log(); | 
					
						
							|  |  |  |       console.log('JSON.stringify(conf)'); | 
					
						
							|  |  |  |       console.log(JSON.stringify(conf)); | 
					
						
							|  |  |  |       console.log(); | 
					
						
							|  |  |  |       console.log('JSON.stringify(state)'); | 
					
						
							|  |  |  |       console.log(JSON.stringify(state)); | 
					
						
							|  |  |  |       console.log(); | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |       if ('undefined' !== typeof conf.newsletter) { | 
					
						
							|  |  |  |         state.config.newsletter = conf.newsletter; | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-06-29 04:15:23 -06:00
										 |  |  |       if ('undefined' !== typeof conf.communityMember | 
					
						
							|  |  |  |         || 'undefined' !== typeof conf.community_member) { | 
					
						
							|  |  |  |         state.config.communityMember = conf.communityMember || conf.community_member; | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |       } | 
					
						
							|  |  |  |       if ('undefined' !== typeof conf.telemetry) { | 
					
						
							|  |  |  |         state.config.telemetry = conf.telemetry; | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-06-29 04:15:23 -06:00
										 |  |  |       if (conf._servernames) { | 
					
						
							|  |  |  |         (conf._servernames||'').split(/,/g).forEach(function (key) { | 
					
						
							| 
									
										
										
										
											2018-06-14 15:35:14 -06:00
										 |  |  |           if (!state.config.servernames[key]) { | 
					
						
							|  |  |  |             state.config.servernames[key] = {}; | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-06-29 04:15:23 -06:00
										 |  |  |       if (conf._ports) { | 
					
						
							|  |  |  |         (conf._ports||'').split(/,/g).forEach(function (key) { | 
					
						
							| 
									
										
										
										
											2018-06-14 15:35:14 -06:00
										 |  |  |           if (!state.config.ports[key]) { | 
					
						
							|  |  |  |             state.config.ports[key] = {}; | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |       if (!state.config.relay || !state.config.email || !state.config.agreeTos) { | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |         console.log('aborting for some reason'); | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |         res.statusCode = 400; | 
					
						
							| 
									
										
										
										
											2018-06-13 12:34:45 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |         res.setHeader('Content-Type', 'application/json'); | 
					
						
							| 
									
										
										
										
											2018-06-13 12:34:45 -06:00
										 |  |  |         res.end(JSON.stringify({ | 
					
						
							|  |  |  |           error: { | 
					
						
							|  |  |  |             code: "E_INIT" | 
					
						
							|  |  |  |           , message: "Missing important config file params" | 
					
						
							|  |  |  |           , _params: JSON.stringify(conf) | 
					
						
							|  |  |  |           , _config: JSON.stringify(state.config) | 
					
						
							|  |  |  |           , _body: JSON.stringify(opts.body) | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         })); | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (tun) { | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |         console.log('ending existing tunnel, starting anew'); | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |         tun.end(function () { | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |           console.log('success ending'); | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  |           rawTunnel(saveAndReport); | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |         }); | 
					
						
							|  |  |  |         tun = null; | 
					
						
							|  |  |  |         setTimeout(function () { | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  |           if (!tun) { | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |             console.log('failed to end, but starting anyway'); | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  |             rawTunnel(saveAndReport); | 
					
						
							|  |  |  |           } | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |         }, 3000); | 
					
						
							|  |  |  |       } else { | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |         console.log('no tunnel, starting anew'); | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  |         rawTunnel(saveAndReport); | 
					
						
							| 
									
										
										
										
											2018-06-12 04:36:37 -06:00
										 |  |  |       } | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 14:48:29 -06:00
										 |  |  |     if (/restart/.test(opts.pathname)) { | 
					
						
							|  |  |  |       tun.end(); | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |       res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |       res.end(JSON.stringify({ success: true })); | 
					
						
							| 
									
										
										
										
											2018-06-13 14:48:29 -06:00
										 |  |  |       controlServer.close(function () { | 
					
						
							|  |  |  |         // TODO closeAll other things
 | 
					
						
							|  |  |  |         process.nextTick(function () { | 
					
						
							|  |  |  |           // system daemon will restart the process
 | 
					
						
							|  |  |  |           process.exit(22); // use non-success exit code
 | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |     // Check for proper config
 | 
					
						
							|  |  |  |     //
 | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |     if (!state.config.relay || !state.config.email || !state.config.agreeTos) { | 
					
						
							|  |  |  |       res.statusCode = 400; | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |       res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |       res.end(JSON.stringify({ | 
					
						
							|  |  |  |         error: { code: "E_CONFIG", message: "Invalid config file. Please run 'telebit init'" } | 
					
						
							|  |  |  |       })); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |     //
 | 
					
						
							|  |  |  |     // With proper config
 | 
					
						
							|  |  |  |     //
 | 
					
						
							| 
									
										
										
										
											2018-06-13 13:38:59 -06:00
										 |  |  |     if (/http/.test(opts.pathname)) { | 
					
						
							| 
									
										
										
										
											2018-06-30 19:34:15 -06:00
										 |  |  |       controllers.http(req, res, opts); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 13:38:59 -06:00
										 |  |  |     if (/tcp/.test(opts.pathname)) { | 
					
						
							| 
									
										
										
										
											2018-06-30 19:34:15 -06:00
										 |  |  |       controllers.tcp(req, res, opts); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 13:38:59 -06:00
										 |  |  |     if (/save|commit/.test(opts.pathname)) { | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |       state.config.servernames = state.servernames; | 
					
						
							|  |  |  |       state.config.ports = state.ports; | 
					
						
							|  |  |  |       fs.writeFile(confpath, YAML.safeDump(snakeCopy(state.config)), function (err) { | 
					
						
							|  |  |  |         if (err) { | 
					
						
							|  |  |  |           res.statusCode = 500; | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |           res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |           res.end(JSON.stringify({ | 
					
						
							|  |  |  |             "error":{"message":"Could not save config file. Perhaps you're not running as root?"} | 
					
						
							|  |  |  |           })); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |           return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |         listSuccess(); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 13:38:59 -06:00
										 |  |  |     if (/ssh/.test(opts.pathname)) { | 
					
						
							| 
									
										
										
										
											2018-06-30 19:34:15 -06:00
										 |  |  |       controllers.ssh(req, res, opts); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 13:38:59 -06:00
										 |  |  |     if (/enable/.test(opts.pathname)) { | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |       delete state.config.disable;// = undefined;
 | 
					
						
							| 
									
										
										
										
											2018-06-13 13:38:59 -06:00
										 |  |  |       if (tun) { | 
					
						
							|  |  |  |         listSuccess(); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  |       rawTunnel(function (err, _tun) { | 
					
						
							|  |  |  |         if (err) { throw err; } | 
					
						
							|  |  |  |         tun = _tun; | 
					
						
							|  |  |  |         fs.writeFile(confpath, YAML.safeDump(snakeCopy(state.config)), function (err) { | 
					
						
							|  |  |  |           if (err) { | 
					
						
							|  |  |  |             res.statusCode = 500; | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |             res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |             res.end(JSON.stringify({ | 
					
						
							|  |  |  |               error: { message: "Could not save config file. Perhaps you're user doesn't have permission?" } | 
					
						
							|  |  |  |             })); | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  |             return; | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |           listSuccess(); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |       }); | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 13:38:59 -06:00
										 |  |  |     if (/disable/.test(opts.pathname)) { | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |       state.config.disable = true; | 
					
						
							|  |  |  |       if (tun) { tun.end(); tun = null; } | 
					
						
							|  |  |  |       fs.writeFile(confpath, YAML.safeDump(snakeCopy(state.config)), function (err) { | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |         res.setHeader('Content-Type', 'application/json'); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |         if (err) { | 
					
						
							|  |  |  |           res.statusCode = 500; | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |           res.end(JSON.stringify({ | 
					
						
							|  |  |  |             "error":{"message":"Could not save config file. Perhaps you're not running as root?"} | 
					
						
							|  |  |  |           })); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |           return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         res.end('{"success":true}'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 13:38:59 -06:00
										 |  |  |     if (/status/.test(opts.pathname)) { | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |       res.setHeader('Content-Type', 'application/json'); | 
					
						
							| 
									
										
										
										
											2018-06-13 13:16:50 -06:00
										 |  |  |       res.end(JSON.stringify( | 
					
						
							|  |  |  |         { status: (state.config.disable ? 'disabled' : 'enabled') | 
					
						
							|  |  |  |         , ready: ((state.config.relay && (state.config.token || state.config.agreeTos)) ? true : false) | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       )); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |       return; | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 13:38:59 -06:00
										 |  |  |     if (/list/.test(opts.pathname)) { | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |       listSuccess(); | 
					
						
							|  |  |  |       return; | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |     res.setHeader('Content-Type', 'application/json'); | 
					
						
							|  |  |  |     res.end(JSON.stringify({"error":{"message":"unrecognized rpc"}})); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2018-06-14 01:26:32 -06:00
										 |  |  |   if (fs.existsSync(state._ipc.path)) { | 
					
						
							|  |  |  |     fs.unlinkSync(state._ipc.path); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   // mask is so that processes owned by other users
 | 
					
						
							|  |  |  |   // can speak to this process, which is probably root-owned
 | 
					
						
							|  |  |  |   var oldUmask = process.umask(0x0000); | 
					
						
							| 
									
										
										
										
											2018-06-27 04:24:56 -06:00
										 |  |  |   require('mkdirp').sync(path.resolve(state._ipc.path, '..')); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   controlServer.listen({ | 
					
						
							| 
									
										
										
										
											2018-06-14 01:26:32 -06:00
										 |  |  |     path: state._ipc.path | 
					
						
							| 
									
										
										
										
											2018-06-29 15:53:55 -06:00
										 |  |  |   , host: 'localhost' | 
					
						
							|  |  |  |   //, port: 0
 | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   , writableAll: true | 
					
						
							|  |  |  |   , readableAll: true | 
					
						
							|  |  |  |   , exclusive: false | 
					
						
							|  |  |  |   }, function () { | 
					
						
							|  |  |  |     process.umask(oldUmask); | 
					
						
							| 
									
										
										
										
											2018-06-29 15:53:55 -06:00
										 |  |  |     var address = this.address(); | 
					
						
							|  |  |  |     if (address.port) { | 
					
						
							|  |  |  |       common.setPort(state.config, address.port); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |     //console.log(this.address());
 | 
					
						
							| 
									
										
										
										
											2018-06-29 15:53:55 -06:00
										 |  |  |     console.info("[info] Listening for commands on " + address); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   }); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  | function serveControls() { | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |   if (state.config.disable) { | 
					
						
							|  |  |  |     console.info("[info] starting disabled"); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (state.config.relay && (state.config.token || state.config.pretoken)) { | 
					
						
							|  |  |  |     console.info("[info] connecting with stored token"); | 
					
						
							|  |  |  |     rawTunnel(function (err, _tun) { | 
					
						
							|  |  |  |       if (err) { throw err; } | 
					
						
							|  |  |  |       if (_tun) { tun = _tun; } | 
					
						
							| 
									
										
										
										
											2018-06-28 01:57:57 -06:00
										 |  |  |       setTimeout(function () { | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |         // TODO attach handler to tunnel
 | 
					
						
							| 
									
										
										
										
											2018-06-28 01:57:57 -06:00
										 |  |  |         serveControlsHelper(); | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |       }, 150); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } else { | 
					
						
							|  |  |  |     console.info("[info] waiting for init/authentication (missing relay and/or token)"); | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-16 01:11:02 +00:00
										 |  |  |   serveControlsHelper(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  | function parseConfig(err, text) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   function run() { | 
					
						
							| 
									
										
										
										
											2018-06-14 02:39:34 -06:00
										 |  |  |     if (!state.config) { | 
					
						
							|  |  |  |       state.config = {}; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-25 23:37:51 -06:00
										 |  |  |     common._init( | 
					
						
							| 
									
										
										
										
											2018-06-29 04:15:23 -06:00
										 |  |  |       state.config.root || path.join(os.homedir(), '.local/share/telebit') // || path.join(__dirname, '..')
 | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |     , (state.config.root && path.join(state.config.root, 'etc')) || path.resolve(common.DEFAULT_CONFIG_PATH, '..') | 
					
						
							| 
									
										
										
										
											2018-06-25 23:37:51 -06:00
										 |  |  |     ); | 
					
						
							| 
									
										
										
										
											2018-06-14 02:39:34 -06:00
										 |  |  |     state._ipc = common.pipename(state.config, true); | 
					
						
							|  |  |  |     console.info(''); | 
					
						
							|  |  |  |     console.info(verstr.join(' ')); | 
					
						
							|  |  |  |     if (!state.config.sock) { | 
					
						
							|  |  |  |       console.info('(' + state._ipc.comment + ': "' + state._ipc.path + '")'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     console.info(''); | 
					
						
							|  |  |  |     state.token = state.token || state.config.token || token; | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |     state.pretoken = state.pretoken || state.config.pretoken; | 
					
						
							| 
									
										
										
										
											2018-06-14 02:39:34 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |     state._confpath = confpath; | 
					
						
							|  |  |  |     if (!state.config.servernames) { | 
					
						
							|  |  |  |       state.config.servernames = {}; | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |     if (!state.config.ports) { | 
					
						
							|  |  |  |       state.config.ports = {}; | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |     state.servernames = JSON.parse(JSON.stringify(state.config.servernames)); | 
					
						
							|  |  |  |     state.ports = JSON.parse(JSON.stringify(state.config.ports)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     serveControls(); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   try { | 
					
						
							| 
									
										
										
										
											2018-06-14 02:39:34 -06:00
										 |  |  |     state.config = JSON.parse(text || '{}'); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |   } catch(e1) { | 
					
						
							|  |  |  |     try { | 
					
						
							| 
									
										
										
										
											2018-06-14 02:39:34 -06:00
										 |  |  |       state.config = YAML.safeLoad(text || '{}'); | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  |     } catch(e2) { | 
					
						
							|  |  |  |       console.error(e1.message); | 
					
						
							|  |  |  |       console.error(e2.message); | 
					
						
							|  |  |  |       process.exit(1); | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-14 02:39:34 -06:00
										 |  |  |   state.config = camelCopy(state.config || {}) || {}; | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |   run(); | 
					
						
							| 
									
										
										
										
											2018-06-14 02:39:34 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |   if ((err && 'ENOENT' === err.code) || !Object.keys(state.config).length) { | 
					
						
							|  |  |  |     if (!err || 'ENOENT' === err.code) { | 
					
						
							|  |  |  |       console.warn("Empty config file. Run 'telebit init' to configure.\n"); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |       console.warn("Couldn't load config:\n\n\t" + err.message + "\n"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-06-11 14:52:01 -06:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-21 11:01:16 +00:00
										 |  |  | function rawTunnel(rawCb) { | 
					
						
							|  |  |  |   if (state.config.disable || !state.config.relay || !(state.config.token || state.config.agreeTos)) { | 
					
						
							|  |  |  |     rawCb(null, null); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-21 11:01:16 +00:00
										 |  |  |   state.relay = state.config.relay; | 
					
						
							|  |  |  |   if (!state.relay) { | 
					
						
							|  |  |  |     rawCb(new Error("'" + state._confpath + "' is missing 'relay'")); | 
					
						
							|  |  |  |     return; | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-06-21 11:01:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |   if (!(state.token || state.pretoken)) { | 
					
						
							|  |  |  |     rawCb(null, null); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-06-21 11:01:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   if (tun) { | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |     rawCb(null, tun); | 
					
						
							| 
									
										
										
										
											2018-06-21 11:01:16 +00:00
										 |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |   common.api.wss(state, function (err, wss) { | 
					
						
							|  |  |  |     if (err) { rawCb(err); return; } | 
					
						
							|  |  |  |     state.wss = wss; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Saves the token
 | 
					
						
							|  |  |  |     // state.handlers.access_token({ jwt: token });
 | 
					
						
							|  |  |  |     // Adds the token to the connection
 | 
					
						
							|  |  |  |     // tun.append(token);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     state.greenlockConf = state.config.greenlock || {}; | 
					
						
							|  |  |  |     state.sortingHat = state.config.sortingHat; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // TODO sortingHat.print(); ?
 | 
					
						
							|  |  |  |     // TODO Check undefined vs false for greenlock config
 | 
					
						
							|  |  |  |     var remote = require('../'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     state.greenlockConfig = { | 
					
						
							|  |  |  |       version: state.greenlockConf.version || 'draft-11' | 
					
						
							|  |  |  |     , server: state.greenlockConf.server || 'https://acme-v02.api.letsencrypt.org/directory' | 
					
						
							|  |  |  |     , communityMember: state.greenlockConf.communityMember || state.config.communityMember | 
					
						
							|  |  |  |     , telemetry: state.greenlockConf.telemetry || state.config.telemetry | 
					
						
							|  |  |  |     , configDir: state.greenlockConf.configDir | 
					
						
							|  |  |  |         || (state.config.root && path.join(state.config.root, 'etc/acme')) | 
					
						
							|  |  |  |         || path.join(os.homedir(), '.config/telebit/acme') | 
					
						
							|  |  |  |     // TODO, store: require(state.greenlockConf.store.name || 'le-store-certbot').create(state.greenlockConf.store.options || {})
 | 
					
						
							|  |  |  |     , approveDomains: function (opts, certs, cb) { | 
					
						
							|  |  |  |         // Certs being renewed are listed in certs.altnames
 | 
					
						
							|  |  |  |         if (certs) { | 
					
						
							|  |  |  |           opts.domains = certs.altnames; | 
					
						
							|  |  |  |           cb(null, { options: opts, certs: certs }); | 
					
						
							|  |  |  |           return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-30 19:34:15 -06:00
										 |  |  |         // Even though it's being tunneled by a trusted source
 | 
					
						
							|  |  |  |         // we need to make sure we don't get rate-limit spammed
 | 
					
						
							|  |  |  |         // with wildcard domains
 | 
					
						
							|  |  |  |         // TODO: finish implementing dynamic dns for wildcard certs
 | 
					
						
							| 
									
										
										
										
											2018-06-30 20:45:42 -06:00
										 |  |  |         if (getServername(state.servernames, opts.domains[0])) { | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |           opts.email = state.greenlockConf.email || state.config.email; | 
					
						
							|  |  |  |           opts.agreeTos = state.greenlockConf.agree || state.greenlockConf.agreeTos || state.config.agreeTos; | 
					
						
							|  |  |  |           cb(null, { options: opts, certs: certs }); | 
					
						
							|  |  |  |           return; | 
					
						
							| 
									
										
										
										
											2018-06-30 19:34:15 -06:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |         //cb(new Error("servername not found in allowed list"));
 | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     state.insecure = state.config.relay_ignore_invalid_certificates; | 
					
						
							|  |  |  |     // { relay, config, servernames, ports, sortingHat, net, insecure, token, handlers, greenlockConfig }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |     console.log("[DEBUG] token", typeof token, token); | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |     tun = remote.connect({ | 
					
						
							|  |  |  |       relay: state.relay | 
					
						
							|  |  |  |     , wss: state.wss | 
					
						
							|  |  |  |     , config: state.config | 
					
						
							|  |  |  |     , otp: state.otp | 
					
						
							|  |  |  |     , sortingHat: state.sortingHat | 
					
						
							|  |  |  |     , net: state.net | 
					
						
							|  |  |  |     , insecure: state.insecure | 
					
						
							|  |  |  |     , token: state.token || state.pretoken // instance
 | 
					
						
							|  |  |  |     , servernames: state.servernames | 
					
						
							|  |  |  |     , ports: state.ports | 
					
						
							|  |  |  |     , handlers: state.handlers | 
					
						
							|  |  |  |     , greenlockConfig: state.greenlockConfig | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rawCb(null, tun); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-21 06:10:49 +00:00
										 |  |  | state.handlers = { | 
					
						
							|  |  |  |   grant: function (grants) { | 
					
						
							|  |  |  |     console.info(""); | 
					
						
							|  |  |  |     console.info("Connect to your device by any of the following means:"); | 
					
						
							|  |  |  |     console.info(""); | 
					
						
							|  |  |  |     grants.forEach(function (arr) { | 
					
						
							|  |  |  |       if ('https' === arr[0]) { | 
					
						
							|  |  |  |         if (!state.servernames[arr[1]]) { | 
					
						
							|  |  |  |           state.servernames[arr[1]] = {}; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-06-30 17:56:10 -06:00
										 |  |  |         state.servernames[arr[1]].wildcard = true; | 
					
						
							| 
									
										
										
										
											2018-06-21 06:10:49 +00:00
										 |  |  |       } else if ('tcp' === arr[0]) { | 
					
						
							|  |  |  |         if (!state.ports[arr[2]]) { | 
					
						
							|  |  |  |           state.ports[arr[2]] = {}; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if ('ssh+https' === arr[0]) { | 
					
						
							|  |  |  |         console.info("SSH+HTTPS"); | 
					
						
							|  |  |  |       } else if ('ssh' === arr[0]) { | 
					
						
							|  |  |  |         console.info("SSH"); | 
					
						
							|  |  |  |       } else if ('tcp' === arr[0]) { | 
					
						
							|  |  |  |         console.info("TCP"); | 
					
						
							|  |  |  |       } else if ('https' === arr[0]) { | 
					
						
							|  |  |  |         console.info("HTTPS"); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       console.info('\t' + arr[0] + '://' + arr[1] + (arr[2] ? (':' + arr[2]) : '')); | 
					
						
							|  |  |  |       if ('ssh+https' === arr[0]) { | 
					
						
							|  |  |  |         console.info("\tex: ssh -o ProxyCommand='openssl s_client -connect %h:%p -servername %h -quiet' " + arr[1] + " -p 443\n"); | 
					
						
							|  |  |  |       } else if ('ssh' === arr[0]) { | 
					
						
							|  |  |  |         console.info("\tex: ssh " + arr[1] + " -p " + arr[2] + "\n"); | 
					
						
							|  |  |  |       } else if ('tcp' === arr[0]) { | 
					
						
							|  |  |  |         console.info("\tex: netcat " + arr[1] + " " + arr[2] + "\n"); | 
					
						
							|  |  |  |       } else if ('https' === arr[0]) { | 
					
						
							|  |  |  |         console.info("\tex: curl https://" + arr[1] + "\n"); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | , access_token: function (opts) { | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |     if ('undefined' === opts.jwt || !opts.jwt) { | 
					
						
							|  |  |  |       console.error("Granted empty access token... ??"); | 
					
						
							|  |  |  |       console.error(JSON.stringify(opts)); | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     state.token = opts.jwt || opts.access_token; | 
					
						
							|  |  |  |     state.config.token = opts.jwt || opts.access_token; | 
					
						
							| 
									
										
										
										
											2018-06-21 06:10:49 +00:00
										 |  |  |     console.info("Updating '" + tokenpath + "' with new token:"); | 
					
						
							|  |  |  |     try { | 
					
						
							| 
									
										
										
										
											2018-06-29 15:53:55 -06:00
										 |  |  |       fs.writeFileSync(tokenpath, opts.jwt); | 
					
						
							| 
									
										
										
										
											2018-06-29 04:33:22 -06:00
										 |  |  |       fs.writeFileSync(confpath, YAML.safeDump(snakeCopy(state.config))); | 
					
						
							| 
									
										
										
										
											2018-06-21 06:10:49 +00:00
										 |  |  |     } catch (e) { | 
					
						
							|  |  |  |       console.error("Token not saved:"); | 
					
						
							|  |  |  |       console.error(e); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-21 11:01:16 +00:00
										 |  |  | function sigHandler() { | 
					
						
							|  |  |  |   console.info('Received kill signal. Attempting to exit cleanly...'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // We want to handle cleanup properly unless something is broken in our cleanup process
 | 
					
						
							|  |  |  |   // that prevents us from exitting, in which case we want the user to be able to send
 | 
					
						
							|  |  |  |   // the signal again and exit the way it normally would.
 | 
					
						
							|  |  |  |   process.removeListener('SIGINT', sigHandler); | 
					
						
							|  |  |  |   if (tun) { | 
					
						
							|  |  |  |     tun.end(); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-06-28 01:53:03 -06:00
										 |  |  |   if (controlServer) { | 
					
						
							|  |  |  |     controlServer.close(); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-06-28 20:35:58 -06:00
										 |  |  |   cancelUpdater(); | 
					
						
							| 
									
										
										
										
											2018-06-21 11:01:16 +00:00
										 |  |  | } | 
					
						
							|  |  |  | // reverse 2FA otp
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | process.on('SIGINT', sigHandler); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | state.net = state.net || { | 
					
						
							|  |  |  |   createConnection: function (info, cb) { | 
					
						
							|  |  |  |     // data is the hello packet / first chunk
 | 
					
						
							|  |  |  |     // info = { data, servername, port, host, remoteFamily, remoteAddress, remotePort }
 | 
					
						
							|  |  |  |     var net = require('net'); | 
					
						
							|  |  |  |     // socket = { write, push, end, events: [ 'readable', 'data', 'error', 'end' ] };
 | 
					
						
							|  |  |  |     var socket = net.createConnection({ port: info.port, host: info.host }, cb); | 
					
						
							|  |  |  |     return socket; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-29 15:53:55 -06:00
										 |  |  | fs.readFile(confpath, 'utf8', parseConfig); | 
					
						
							| 
									
										
										
										
											2018-06-11 12:56:16 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | }()); |