| 
									
										
										
										
											2016-09-29 21:10:40 -04:00
										 |  |  | (function () { | 
					
						
							|  |  |  | 'use strict'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-29 04:15:23 -06:00
										 |  |  | var PromiseA; | 
					
						
							|  |  |  | try { | 
					
						
							|  |  |  |   PromiseA = require('bluebird'); | 
					
						
							|  |  |  | } catch(e) { | 
					
						
							|  |  |  |   PromiseA = global.Promise; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-09-29 21:10:40 -04:00
										 |  |  | var WebSocket = require('ws'); | 
					
						
							|  |  |  | var sni = require('sni'); | 
					
						
							| 
									
										
										
										
											2018-05-31 00:19:53 -06:00
										 |  |  | var Packer = require('proxy-packer'); | 
					
						
							| 
									
										
										
										
											2018-06-06 03:24:14 -06:00
										 |  |  | var os = require('os'); | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  | var EventEmitter = require('events').EventEmitter; | 
					
						
							| 
									
										
										
										
											2016-09-29 21:10:40 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-05 11:28:53 -06:00
										 |  |  | function timeoutPromise(duration) { | 
					
						
							|  |  |  |   return new PromiseA(function (resolve) { | 
					
						
							|  |  |  |     setTimeout(resolve, duration); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  | function TelebitRemote(state) { | 
					
						
							| 
									
										
										
										
											2017-06-15 14:49:50 -06:00
										 |  |  |   // jshint latedef:false
 | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |   if (!(this instanceof TelebitRemote)) { | 
					
						
							|  |  |  |     return new TelebitRemote(state); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   EventEmitter.call(this); | 
					
						
							|  |  |  |   var me = this; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |   var priv = {}; | 
					
						
							| 
									
										
										
										
											2018-09-25 01:14:54 -06:00
										 |  |  |   var path = require('path'); | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |   //var defaultHttpTimeout = (2 * 60);
 | 
					
						
							|  |  |  |   //var activityTimeout = state.activityTimeout || (defaultHttpTimeout - 5) * 1000;
 | 
					
						
							|  |  |  |   var activityTimeout = 6 * 1000; | 
					
						
							| 
									
										
										
										
											2018-05-31 00:19:53 -06:00
										 |  |  |   var pongTimeout = state.pongTimeout || 10*1000; | 
					
						
							| 
									
										
										
										
											2017-05-25 13:46:09 -06:00
										 |  |  |   // Allow the tunnel client to be created with no token. This will prevent the connection from
 | 
					
						
							|  |  |  |   // being established initialy and allows the caller to use `.append` for the first token so
 | 
					
						
							|  |  |  |   // they can get a promise that will provide feedback about invalid tokens.
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |   priv.tokens = []; | 
					
						
							| 
									
										
										
										
											2018-06-06 01:01:56 -06:00
										 |  |  |   var auth; | 
					
						
							| 
									
										
										
										
											2018-06-13 14:00:08 -07:00
										 |  |  |   if(!state.sortingHat) { | 
					
						
							| 
									
										
										
										
											2018-09-25 01:14:54 -06:00
										 |  |  |     state.sortingHat = path.join(__dirname, '../sorting-hat.js'); | 
					
						
							| 
									
										
										
										
											2018-06-13 14:00:08 -07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-09-25 01:14:54 -06:00
										 |  |  |   state._connectionHandler = require(state.sortingHat); | 
					
						
							| 
									
										
										
										
											2018-05-31 00:19:53 -06:00
										 |  |  |   if (state.token) { | 
					
						
							| 
									
										
										
										
											2018-06-29 14:51:56 -06:00
										 |  |  |     if ('undefined' === state.token) { | 
					
						
							|  |  |  |       throw new Error("passed string 'undefined' as token"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     priv.tokens.push(state.token); | 
					
						
							| 
									
										
										
										
											2017-05-25 13:46:09 -06:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2017-04-10 11:39:27 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-30 15:04:27 -04:00
										 |  |  |   var wstunneler; | 
					
						
							| 
									
										
										
										
											2017-04-07 18:49:52 -06:00
										 |  |  |   var authenticated = false; | 
					
						
							| 
									
										
										
										
											2018-06-06 01:01:56 -06:00
										 |  |  |   var authsent = false; | 
					
						
							| 
									
										
										
										
											2018-06-14 14:57:09 -07:00
										 |  |  |   var initialConnect = true; | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |   priv.localclients = {}; | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |   var pausedClients = []; | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |   var clientHandlers = { | 
					
						
							| 
									
										
										
										
											2018-05-31 00:19:53 -06:00
										 |  |  |     add: function (conn, cid, tun) { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       priv.localclients[cid] = conn; | 
					
						
							| 
									
										
										
										
											2018-09-13 23:42:04 -06:00
										 |  |  |       console.info("[connect] new client '" + tun.name + ":" + tun.serviceport + "' for  '" + cid + "'" | 
					
						
							| 
									
										
										
										
											2018-05-31 00:19:53 -06:00
										 |  |  |         + "(" + clientHandlers.count() + " clients)"); | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |       conn.tunnelCid = cid; | 
					
						
							| 
									
										
										
										
											2018-08-08 03:14:40 -06:00
										 |  |  |       if (tun.data) { | 
					
						
							|  |  |  |         conn.tunnelRead = tun.data.byteLength; | 
					
						
							|  |  |  |       } else { | 
					
						
							|  |  |  |         conn.tunnelRead = 0; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       conn.tunnelWritten = 0; | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       conn.on('data', function onLocalData(chunk) { | 
					
						
							| 
									
										
										
										
											2018-08-08 00:51:16 -06:00
										 |  |  |         //var chunk = conn.read();
 | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |         if (conn.tunnelClosing) { | 
					
						
							|  |  |  |           console.warn("[onLocalData] received data for '"+cid+"' over socket after connection was ended"); | 
					
						
							|  |  |  |           return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |         // This value is bytes written to the tunnel (ie read from the local connection)
 | 
					
						
							|  |  |  |         conn.tunnelWritten += chunk.byteLength; | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // If we have a lot of buffered data waiting to be sent over the websocket we want to slow
 | 
					
						
							|  |  |  |         // down the data we are getting to send over. We also want to pause all active connections
 | 
					
						
							|  |  |  |         // if any connections are paused to make things more fair so one connection doesn't get
 | 
					
						
							|  |  |  |         // stuff waiting for all other connections to finish because it tried writing near the border.
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         var bufSize = sendMessage(Packer.packHeader(tun, chunk)); | 
					
						
							| 
									
										
										
										
											2018-08-08 00:51:16 -06:00
										 |  |  |         // Sending 2 messages instead of copying the buffer
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         var bufSize2 = sendMessage(chunk); | 
					
						
							| 
									
										
										
										
											2018-08-08 00:51:16 -06:00
										 |  |  |         if (pausedClients.length || (bufSize + bufSize2) > 1024*1024) { | 
					
						
							| 
									
										
										
										
											2017-09-11 15:35:03 -06:00
										 |  |  |           // console.log('[onLocalData] paused connection', cid, 'to allow websocket to catch up');
 | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |           conn.pause(); | 
					
						
							|  |  |  |           pausedClients.push(conn); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |       var sentEnd = false; | 
					
						
							|  |  |  |       conn.on('end', function onLocalEnd() { | 
					
						
							| 
									
										
										
										
											2018-09-13 23:42:04 -06:00
										 |  |  |         //console.info("[onLocalEnd] connection '" + cid + "' ended, will probably close soon");
 | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |         conn.tunnelClosing = true; | 
					
						
							|  |  |  |         if (!sentEnd) { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |           sendMessage(Packer.packHeader(tun, null, 'end')); | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |           sentEnd = true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       conn.on('error', function onLocalError(err) { | 
					
						
							|  |  |  |         console.info("[onLocalError] connection '" + cid + "' errored:", err); | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |         if (!sentEnd) { | 
					
						
							| 
									
										
										
										
											2018-08-08 00:51:16 -06:00
										 |  |  |           var packBody = true; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |           sendMessage(Packer.packHeader(tun, {message: err.message, code: err.code}, 'error', packBody)); | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |           sentEnd = true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       }); | 
					
						
							|  |  |  |       conn.on('close', function onLocalClose(hadErr) { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         delete priv.localclients[cid]; | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |         console.log('[onLocalClose] closed "' + cid + '" read:'+conn.tunnelRead+', wrote:'+conn.tunnelWritten+' (' + clientHandlers.count() + ' clients)'); | 
					
						
							|  |  |  |         if (!sentEnd) { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |           sendMessage(Packer.packHeader(tun, null, hadErr && 'error' || 'end')); | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |           sentEnd = true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |   , write: function (cid, opts) { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       var conn = priv.localclients[cid]; | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       if (!conn) { | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       //console.log("[=>] received data from '" + cid + "' =>", opts.data.byteLength);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (conn.tunnelClosing) { | 
					
						
							|  |  |  |         console.warn("[onmessage] received data for '"+cid+"' over socket after connection was ended"); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       conn.write(opts.data); | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |       // It might seem weird to increase the "read" value in a function named `write`, but this
 | 
					
						
							|  |  |  |       // is bytes read from the tunnel and written to the local connection.
 | 
					
						
							|  |  |  |       conn.tunnelRead += opts.data.byteLength; | 
					
						
							| 
									
										
										
										
											2017-09-11 15:35:03 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |       if (!conn.remotePaused && conn.bufferSize > 1024*1024) { | 
					
						
							| 
									
										
										
										
											2018-08-08 00:51:16 -06:00
										 |  |  |         var packBody = true; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         sendMessage(Packer.packHeader(opts, conn.tunnelRead, 'pause', packBody)); | 
					
						
							| 
									
										
										
										
											2017-09-11 15:35:03 -06:00
										 |  |  |         conn.remotePaused = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         conn.once('drain', function () { | 
					
						
							| 
									
										
										
										
											2018-08-08 00:51:16 -06:00
										 |  |  |           var packBody = true; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |           sendMessage(Packer.packHeader(opts, conn.tunnelRead, 'resume', packBody)); | 
					
						
							| 
									
										
										
										
											2017-09-11 15:35:03 -06:00
										 |  |  |           conn.remotePaused = false; | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       return true; | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   , closeSingle: function (cid) { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       if (!priv.localclients[cid]) { | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-13 23:42:04 -06:00
										 |  |  |       //console.log('[closeSingle]', cid);
 | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       PromiseA.resolve().then(function () { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         var conn = priv.localclients[cid]; | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |         conn.tunnelClosing = true; | 
					
						
							|  |  |  |         conn.end(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // If no data is buffered for writing then we don't need to wait for it to drain.
 | 
					
						
							|  |  |  |         if (!conn.bufferSize) { | 
					
						
							| 
									
										
										
										
											2017-06-05 11:28:53 -06:00
										 |  |  |           return timeoutPromise(500); | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |         } | 
					
						
							|  |  |  |         // Otherwise we want the connection to be able to finish, but we also want to impose
 | 
					
						
							|  |  |  |         // a time limit for it to drain, since it shouldn't have more than 1MB buffered.
 | 
					
						
							|  |  |  |         return new PromiseA(function (resolve) { | 
					
						
							|  |  |  |           var timeoutId = setTimeout(resolve, 60*1000); | 
					
						
							|  |  |  |           conn.once('drain', function () { | 
					
						
							|  |  |  |             clearTimeout(timeoutId); | 
					
						
							|  |  |  |             setTimeout(resolve, 500); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }).then(function () { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         if (priv.localclients[cid]) { | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |           console.warn('[closeSingle]', cid, 'connection still present after calling `end`'); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |           priv.localclients[cid].destroy(); | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |           return timeoutPromise(500); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }).then(function () { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         if (priv.localclients[cid]) { | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |           console.error('[closeSingle]', cid, 'connection still present after calling `destroy`'); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |           delete priv.localclients[cid]; | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |         } | 
					
						
							|  |  |  |       }).catch(function (err) { | 
					
						
							|  |  |  |         console.error('[closeSingle] failed to close connection', cid, err.toString()); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         delete priv.localclients[cid]; | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |     } | 
					
						
							|  |  |  |   , closeAll: function () { | 
					
						
							| 
									
										
										
										
											2017-04-07 18:01:47 -06:00
										 |  |  |       console.log('[closeAll]'); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       Object.keys(priv.localclients).forEach(function (cid) { | 
					
						
							| 
									
										
										
										
											2017-06-05 11:28:53 -06:00
										 |  |  |         clientHandlers.closeSingle(cid); | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |       }); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-04-07 18:01:47 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |   , count: function () { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       return Object.keys(priv.localclients).length; | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |     } | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2017-04-07 18:01:47 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-27 19:29:16 -06:00
										 |  |  |   var pendingCommands = {}; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |   function sendMessage(msg) { | 
					
						
							|  |  |  |     // There is a chance that this occurred after the websocket was told to close
 | 
					
						
							|  |  |  |     // and before it finished, in which case we don't need to log the error.
 | 
					
						
							|  |  |  |     if (wstunneler.readyState !== wstunneler.CLOSING) { | 
					
						
							|  |  |  |         wstunneler.send(msg, {binary: true}); | 
					
						
							|  |  |  |         return wstunneler.bufferedAmount; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2017-04-27 19:29:16 -06:00
										 |  |  |   function sendCommand(name) { | 
					
						
							|  |  |  |     var id = Math.ceil(1e9 * Math.random()); | 
					
						
							|  |  |  |     var cmd = [id, name].concat(Array.prototype.slice.call(arguments, 1)); | 
					
						
							| 
									
										
										
										
											2018-06-06 01:01:56 -06:00
										 |  |  |     if (state.debug) { console.log('[DEBUG] command sending', cmd); } | 
					
						
							| 
									
										
										
										
											2017-04-27 19:29:16 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-08 00:51:16 -06:00
										 |  |  |     var packBody = true; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     sendMessage(Packer.packHeader(null, cmd, 'control', packBody)); | 
					
						
							| 
									
										
										
										
											2017-04-27 19:29:16 -06:00
										 |  |  |     setTimeout(function () { | 
					
						
							|  |  |  |       if (pendingCommands[id]) { | 
					
						
							| 
									
										
										
										
											2018-06-07 00:45:42 -06:00
										 |  |  |         console.warn('command', name, id, 'timed out'); | 
					
						
							| 
									
										
										
										
											2017-04-27 19:29:16 -06:00
										 |  |  |         pendingCommands[id]({ | 
					
						
							|  |  |  |           message: 'response not received in time' | 
					
						
							|  |  |  |         , code: 'E_TIMEOUT' | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }, pongTimeout); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return new PromiseA(function (resolve, reject) { | 
					
						
							|  |  |  |       pendingCommands[id] = function (err, result) { | 
					
						
							|  |  |  |         delete pendingCommands[id]; | 
					
						
							|  |  |  |         if (err) { | 
					
						
							|  |  |  |           reject(err); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |           resolve(result); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-07 00:08:26 -06:00
										 |  |  |   function noHandler(cmd) { | 
					
						
							|  |  |  |     console.warn("[telebit] state.handlers['" + cmd[1] + "'] not set"); | 
					
						
							|  |  |  |     console.warn(cmd[2]); | 
					
						
							| 
									
										
										
										
											2018-06-01 03:13:04 -06:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-28 15:28:21 -06:00
										 |  |  |   var connCallback; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-08 01:11:29 -06:00
										 |  |  |   function hyperPeek(tun) { | 
					
						
							|  |  |  |     var m; | 
					
						
							|  |  |  |     var str; | 
					
						
							|  |  |  |     if (tun.data) { | 
					
						
							|  |  |  |       if ('http' === tun.service) { | 
					
						
							|  |  |  |         str = tun.data.toString(); | 
					
						
							|  |  |  |         m = str.match(/(?:^|[\r\n])Host: ([^\r\n]+)[\r\n]*/im); | 
					
						
							|  |  |  |         tun._name = tun._hostname = (m && m[1].toLowerCase() || '').split(':')[0]; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       else if ('https' === tun.service || 'tls' === tun.service) { | 
					
						
							|  |  |  |         tun._name = tun._servername = sni(tun.data); | 
					
						
							|  |  |  |       } else { | 
					
						
							|  |  |  |         tun._name = ''; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |   var packerHandlers = { | 
					
						
							| 
									
										
										
										
											2017-04-27 19:29:16 -06:00
										 |  |  |     oncontrol: function (opts) { | 
					
						
							|  |  |  |       var cmd, err; | 
					
						
							|  |  |  |       try { | 
					
						
							|  |  |  |         cmd = JSON.parse(opts.data.toString()); | 
					
						
							|  |  |  |       } catch (err) {} | 
					
						
							|  |  |  |       if (!Array.isArray(cmd) || typeof cmd[0] !== 'number') { | 
					
						
							|  |  |  |         console.warn('received bad command "' + opts.data.toString() + '"'); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (cmd[0] < 0) { | 
					
						
							|  |  |  |         var cb = pendingCommands[-cmd[0]]; | 
					
						
							|  |  |  |         if (!cb) { | 
					
						
							|  |  |  |           console.warn('received response for unknown request:', cmd); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |           cb.apply(null, cmd.slice(1)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-28 15:02:44 -06:00
										 |  |  |       if (cmd[0] === 0) { | 
					
						
							|  |  |  |         console.warn('received dis-associated error from server', cmd[1]); | 
					
						
							| 
									
										
										
										
											2017-04-28 15:28:21 -06:00
										 |  |  |         if (connCallback) { | 
					
						
							|  |  |  |           connCallback(cmd[1]); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-04-28 15:02:44 -06:00
										 |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (cmd[1] === 'hello') { | 
					
						
							| 
									
										
										
										
											2018-06-06 01:01:56 -06:00
										 |  |  |         if (state.debug) { console.log('[DEBUG] hello received'); } | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         if (auth) { | 
					
						
							|  |  |  |           authsent = true; | 
					
						
							|  |  |  |           sendCommand('auth', auth).catch(function (err) { console.error('1', err); }); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         priv.tokens.forEach(function (jwtoken) { | 
					
						
							|  |  |  |           if (state.debug) { console.log('[DEBUG] send token'); } | 
					
						
							|  |  |  |           authsent = true; | 
					
						
							|  |  |  |           sendCommand('add_token', jwtoken) | 
					
						
							|  |  |  |             .catch(function (err) { | 
					
						
							|  |  |  |               console.error('failed re-adding token', jwtoken, 'after reconnect', err); | 
					
						
							|  |  |  |               // Not sure if we should do something like remove the token here. It worked
 | 
					
						
							|  |  |  |               // once or it shouldn't have stayed in the list, so it's less certain why
 | 
					
						
							|  |  |  |               // it would have failed here.
 | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2017-04-28 15:28:21 -06:00
										 |  |  |         if (connCallback) { | 
					
						
							|  |  |  |           connCallback(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-04-28 15:02:44 -06:00
										 |  |  |         // TODO: handle the versions and commands provided by 'hello' - isn't super important
 | 
					
						
							| 
									
										
										
										
											2017-05-25 13:46:09 -06:00
										 |  |  |         // yet since there is only one version and set of commands.
 | 
					
						
							| 
									
										
										
										
											2017-04-28 15:02:44 -06:00
										 |  |  |         err = null; | 
					
						
							| 
									
										
										
										
											2018-06-06 01:01:56 -06:00
										 |  |  |       } else if (cmd[1] === 'grant') { | 
					
						
							|  |  |  |         authenticated = true; | 
					
						
							| 
									
										
										
										
											2018-06-07 00:08:26 -06:00
										 |  |  |         if (state.handlers[cmd[1]]) { | 
					
						
							|  |  |  |           state.handlers[cmd[1]](cmd[2]); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |           noHandler(cmd); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } else if (cmd[1] === 'access_token') { | 
					
						
							|  |  |  |         authenticated = true; | 
					
						
							|  |  |  |         if (state.handlers[cmd[1]]) { | 
					
						
							|  |  |  |           state.handlers[cmd[1]](cmd[2]); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |           noHandler(cmd); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-06-01 03:13:04 -06:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2018-06-06 01:01:56 -06:00
										 |  |  |       } else { | 
					
						
							|  |  |  |         err = { message: 'unknown command "'+cmd[1]+'"', code: 'E_UNKNOWN_COMMAND' }; | 
					
						
							| 
									
										
										
										
											2018-06-01 03:13:04 -06:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-08 00:51:16 -06:00
										 |  |  |       var packBody = true; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       sendMessage(Packer.packHeader(null, [-cmd[0], err], 'control', packBody)); | 
					
						
							| 
									
										
										
										
											2017-04-27 19:29:16 -06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-08 01:11:29 -06:00
										 |  |  |   , onconnection: function (tun) { | 
					
						
							| 
									
										
										
										
											2018-05-31 00:19:53 -06:00
										 |  |  |       var cid = tun._id = Packer.addrToId(tun); | 
					
						
							| 
									
										
										
										
											2017-06-05 11:20:58 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-08 01:11:29 -06:00
										 |  |  |       // this data should have been gathered already as part of the proxy protocol
 | 
					
						
							|  |  |  |       // but if it's available again here we can double check
 | 
					
						
							|  |  |  |       hyperPeek(tun); | 
					
						
							| 
									
										
										
										
											2016-10-11 17:43:24 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-08 01:11:29 -06:00
										 |  |  |       // TODO use readable streams instead
 | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  |       wstunneler._socket.pause(); | 
					
						
							| 
									
										
										
										
											2018-09-25 01:14:54 -06:00
										 |  |  |       state._connectionHandler.assign(state, tun, function (err, conn) { | 
					
						
							| 
									
										
										
										
											2018-05-31 00:19:53 -06:00
										 |  |  |         if (err) { | 
					
						
							|  |  |  |           err.message = err.message.replace(/:tun_id/, tun._id); | 
					
						
							|  |  |  |           packerHandlers._onConnectError(cid, tun, err); | 
					
						
							|  |  |  |           return; | 
					
						
							| 
									
										
										
										
											2017-04-27 18:38:01 -06:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-05-31 00:19:53 -06:00
										 |  |  |         clientHandlers.add(conn, cid, tun); | 
					
						
							| 
									
										
										
										
											2018-05-31 04:10:47 -06:00
										 |  |  |         if (tun.data) { conn.write(tun.data); } | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  |         wstunneler._socket.resume(); | 
					
						
							| 
									
										
										
										
											2018-05-31 00:19:53 -06:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-11 17:43:24 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-08 01:11:29 -06:00
										 |  |  |   , onmessage: function (tun) { | 
					
						
							|  |  |  |       var cid = tun._id = Packer.addrToId(tun); | 
					
						
							|  |  |  |       var handled; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       hyperPeek(tun); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       handled = clientHandlers.write(cid, tun); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // quasi backwards compat
 | 
					
						
							| 
									
										
										
										
											2018-08-08 03:14:40 -06:00
										 |  |  |       if (!handled) { console.log("[debug] did not get 'connection' event"); packerHandlers.onconnection(tun); } | 
					
						
							| 
									
										
										
										
											2018-08-08 01:11:29 -06:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |   , onpause: function (opts) { | 
					
						
							|  |  |  |       var cid = Packer.addrToId(opts); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       if (priv.localclients[cid]) { | 
					
						
							|  |  |  |         console.log("[TunnelPause] pausing '"+cid+"', remote received", opts.data.toString(), 'of', priv.localclients[cid].tunnelWritten, 'sent'); | 
					
						
							|  |  |  |         priv.localclients[cid].manualPause = true; | 
					
						
							|  |  |  |         priv.localclients[cid].pause(); | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       } else { | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |         console.log('[TunnelPause] remote tried pausing finished connection', cid); | 
					
						
							|  |  |  |         // Often we have enough latency that we've finished sending before we're told to pause, so
 | 
					
						
							|  |  |  |         // don't worry about sending back errors, since we won't be sending data over anyway.
 | 
					
						
							| 
									
										
										
										
											2018-08-08 00:51:16 -06:00
										 |  |  |         // var packBody = true;
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         // sendMessage(Packer.packHeader(opts, {message: 'no matching connection', code: 'E_NO_CONN'}, 'error', packBody));
 | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   , onresume: function (opts) { | 
					
						
							|  |  |  |       var cid = Packer.addrToId(opts); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       if (priv.localclients[cid]) { | 
					
						
							|  |  |  |         console.log("[TunnelResume] resuming '"+cid+"', remote received", opts.data.toString(), 'of', priv.localclients[cid].tunnelWritten, 'sent'); | 
					
						
							|  |  |  |         priv.localclients[cid].manualPause = false; | 
					
						
							|  |  |  |         priv.localclients[cid].resume(); | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       } else { | 
					
						
							| 
									
										
										
										
											2017-09-11 14:52:49 -06:00
										 |  |  |         console.log('[TunnelResume] remote tried resuming finished connection', cid); | 
					
						
							| 
									
										
										
										
											2018-08-08 00:51:16 -06:00
										 |  |  |         // var packBody = true;
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |         // sendMessage(Packer.packHeader(opts, {message: 'no matching connection', code: 'E_NO_CONN'}, 'error', packBody));
 | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2016-09-30 15:04:27 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-30 15:04:27 -04:00
										 |  |  |   , onend: function (opts) { | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:48 -06:00
										 |  |  |       var cid = Packer.addrToId(opts); | 
					
						
							| 
									
										
										
										
											2016-09-30 15:04:27 -04:00
										 |  |  |       //console.log("[end] '" + cid + "'");
 | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |       clientHandlers.closeSingle(cid); | 
					
						
							| 
									
										
										
										
											2016-09-30 15:04:27 -04:00
										 |  |  |     } | 
					
						
							|  |  |  |   , onerror: function (opts) { | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:48 -06:00
										 |  |  |       var cid = Packer.addrToId(opts); | 
					
						
							| 
									
										
										
										
											2016-09-30 15:04:27 -04:00
										 |  |  |       //console.log("[error] '" + cid + "'", opts.code || '', opts.message);
 | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |       clientHandlers.closeSingle(cid); | 
					
						
							| 
									
										
										
										
											2016-09-30 15:04:27 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |   , _onConnectError: function (cid, opts, err) { | 
					
						
							|  |  |  |       console.info("[_onConnectError] opening '" + cid + "' failed because " + err.message); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       sendMessage(Packer.packHeader(opts, null, 'error')); | 
					
						
							| 
									
										
										
										
											2016-09-30 15:04:27 -04:00
										 |  |  |     } | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2017-04-07 18:01:47 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |   priv.timeoutId = null; | 
					
						
							|  |  |  |   priv.lastActivity = Date.now(); | 
					
						
							|  |  |  |   priv.refreshTimeout = function refreshTimeout() { | 
					
						
							|  |  |  |     priv.lastActivity = Date.now(); | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  |   priv.checkTimeout = function checkTimeout() { | 
					
						
							|  |  |  |     if (!wstunneler) { | 
					
						
							|  |  |  |       console.warn('checkTimeout called when websocket already closed'); | 
					
						
							|  |  |  |       return; | 
					
						
							| 
									
										
										
										
											2017-04-10 11:39:27 -06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     // Determine how long the connection has been "silent", ie no activity.
 | 
					
						
							|  |  |  |     var silent = Date.now() - priv.lastActivity; | 
					
						
							| 
									
										
										
										
											2017-04-10 11:39:27 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     // If we have had activity within the last activityTimeout then all we need to do is
 | 
					
						
							|  |  |  |     // call this function again at the soonest time when the connection could be timed out.
 | 
					
						
							|  |  |  |     if (silent < activityTimeout) { | 
					
						
							|  |  |  |       priv.timeoutId = setTimeout(priv.checkTimeout, activityTimeout-silent); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-04-10 11:39:27 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     // Otherwise we check to see if the pong has also timed out, and if not we send a ping
 | 
					
						
							|  |  |  |     // and call this function again when the pong will have timed out.
 | 
					
						
							|  |  |  |     else if (silent < activityTimeout + pongTimeout) { | 
					
						
							| 
									
										
										
										
											2018-09-13 23:42:04 -06:00
										 |  |  |       //console.log('DEBUG: pinging tunnel server');
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       try { | 
					
						
							|  |  |  |         wstunneler.ping(); | 
					
						
							|  |  |  |       } catch (err) { | 
					
						
							|  |  |  |         console.warn('failed to ping tunnel server', err); | 
					
						
							| 
									
										
										
										
											2017-04-10 11:39:27 -06:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       priv.timeoutId = setTimeout(priv.checkTimeout, pongTimeout); | 
					
						
							| 
									
										
										
										
											2017-04-10 11:39:27 -06:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     // Last case means the ping we sent before didn't get a response soon enough, so we
 | 
					
						
							|  |  |  |     // need to close the websocket connection.
 | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2018-09-06 03:11:26 -06:00
										 |  |  |       console.info('[info] closing due to connection timeout'); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       wstunneler.close(1000, 'connection timeout'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2018-06-14 14:57:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |   me.destroy = function destroy() { | 
					
						
							| 
									
										
										
										
											2018-09-06 03:11:26 -06:00
										 |  |  |     console.info('[info] destroy()'); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     try { | 
					
						
							|  |  |  |       //wstunneler.close(1000, 're-connect');
 | 
					
						
							|  |  |  |       wstunneler._socket.destroy(); | 
					
						
							|  |  |  |     } catch(e) { | 
					
						
							|  |  |  |       // ignore
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  |   me.connect = function connect() { | 
					
						
							|  |  |  |     if (!priv.tokens.length && state.config.email) { | 
					
						
							|  |  |  |       auth = TelebitRemote._tokenFromState(state); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     priv.timeoutId = null; | 
					
						
							|  |  |  |     var machine = Packer.create(packerHandlers); | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-25 01:14:54 -06:00
										 |  |  |     console.info("[telebit:lib/daemon.js] [connect] '" + (state.wss || state.relay) + "'"); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     var tunnelUrl = (state.wss || state.relay).replace(/\/$/, '') + '/'; // + auth;
 | 
					
						
							|  |  |  |     wstunneler = new WebSocket(tunnelUrl, { rejectUnauthorized: !state.insecure }); | 
					
						
							|  |  |  |     // XXXXXX
 | 
					
						
							|  |  |  |     wstunneler.on('open', function () { | 
					
						
							| 
									
										
										
										
											2018-09-25 01:14:54 -06:00
										 |  |  |       console.info("[telebit:lib/daemon.js] [open] connected to '" + (state.wss || state.relay) + "'"); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       me.emit('connect'); | 
					
						
							|  |  |  |       priv.refreshTimeout(); | 
					
						
							|  |  |  |       priv.timeoutId = setTimeout(priv.checkTimeout, activityTimeout); | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |       wstunneler._socket.on('drain', function () { | 
					
						
							| 
									
										
										
										
											2017-09-11 15:35:03 -06:00
										 |  |  |         // the websocket library has it's own buffer apart from node's socket buffer, but that one
 | 
					
						
							|  |  |  |         // is much more difficult to watch, so we watch for the lower level buffer to drain and
 | 
					
						
							|  |  |  |         // then check to see if the upper level buffer is still too full to write to. Note that
 | 
					
						
							|  |  |  |         // the websocket library buffer has something to do with compression, so I'm not requiring
 | 
					
						
							|  |  |  |         // that to be 0 before we start up again.
 | 
					
						
							|  |  |  |         if (wstunneler.bufferedAmount > 128*1024) { | 
					
						
							|  |  |  |           return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |         pausedClients.forEach(function (conn) { | 
					
						
							|  |  |  |           if (!conn.manualPause) { | 
					
						
							| 
									
										
										
										
											2017-09-11 15:35:03 -06:00
										 |  |  |             // console.log('resuming connection', conn.tunnelCid, 'now the websocket has caught up');
 | 
					
						
							| 
									
										
										
										
											2017-09-08 10:54:47 -06:00
										 |  |  |             conn.resume(); | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |         pausedClients.length = 0; | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2018-06-18 11:01:12 -07:00
										 |  |  |       initialConnect = false; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     }); | 
					
						
							|  |  |  |     wstunneler.on('close', function () { | 
					
						
							| 
									
										
										
										
											2018-09-06 03:11:26 -06:00
										 |  |  |       console.info("[info] [closing] received close signal from relay"); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       clearTimeout(priv.timeoutId); | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  |       clientHandlers.closeAll(); | 
					
						
							| 
									
										
										
										
											2017-10-02 18:29:00 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |       var error = new Error('websocket connection closed before response'); | 
					
						
							|  |  |  |       error.code = 'E_CONN_CLOSED'; | 
					
						
							| 
									
										
										
										
											2017-04-27 19:29:16 -06:00
										 |  |  |       Object.keys(pendingCommands).forEach(function (id) { | 
					
						
							| 
									
										
										
										
											2017-10-02 18:29:00 -06:00
										 |  |  |         pendingCommands[id](error); | 
					
						
							| 
									
										
										
										
											2017-04-27 19:29:16 -06:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-10-02 18:29:00 -06:00
										 |  |  |       if (connCallback) { | 
					
						
							|  |  |  |         connCallback(error); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2017-04-07 17:38:55 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-04 00:31:01 -06:00
										 |  |  |       me.emit('close'); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     }); | 
					
						
							|  |  |  |     wstunneler.on('error', function (err) { | 
					
						
							| 
									
										
										
										
											2018-09-04 00:31:01 -06:00
										 |  |  |       me.emit('error', err); | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-04-10 11:39:27 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Our library will automatically handle sending the pong respose to ping requests.
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     wstunneler.on('ping', priv.refreshTimeout); | 
					
						
							|  |  |  |     wstunneler.on('pong', function () { | 
					
						
							| 
									
										
										
										
											2018-09-13 23:42:04 -06:00
										 |  |  |       //console.log('DEBUG received pong');
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       priv.refreshTimeout(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-04-07 18:49:52 -06:00
										 |  |  |     wstunneler.on('message', function (data, flags) { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |       priv.refreshTimeout(); | 
					
						
							| 
									
										
										
										
											2017-04-07 18:49:52 -06:00
										 |  |  |       if (data.error || '{' === data[0]) { | 
					
						
							|  |  |  |         console.log(data); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       machine.fns.addChunk(data, flags); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  |   }; | 
					
						
							|  |  |  |   me.end = function() { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     priv.tokens.length = 0; | 
					
						
							|  |  |  |     if (priv.timeoutId) { | 
					
						
							|  |  |  |       clearTimeout(priv.timeoutId); | 
					
						
							|  |  |  |       priv.timeoutId = null; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-09-06 03:11:26 -06:00
										 |  |  |     console.info('[info] closing due to tr.end()'); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  |     wstunneler.close(1000, 're-connect'); | 
					
						
							|  |  |  |     wstunneler.on('close', function () { | 
					
						
							|  |  |  |       me.emit('end'); | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-04-14 16:27:25 -06:00
										 |  |  |   }; | 
					
						
							| 
									
										
										
										
											2016-09-30 15:04:27 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  | TelebitRemote.prototype = EventEmitter.prototype; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:18:12 -06:00
										 |  |  | TelebitRemote._tokenFromState = function (state) { | 
					
						
							|  |  |  |   return { | 
					
						
							|  |  |  |     subject: state.config.email | 
					
						
							|  |  |  |   , subject_scheme: 'mailto' | 
					
						
							|  |  |  |     // TODO create domains list earlier
 | 
					
						
							|  |  |  |   , scope: Object.keys(state.config.servernames || {}).join(',') | 
					
						
							|  |  |  |   , otp: state.otp | 
					
						
							|  |  |  |   , hostname: os.hostname() | 
					
						
							|  |  |  |     // Used for User-Agent
 | 
					
						
							|  |  |  |   , os_type: os.type() | 
					
						
							|  |  |  |   , os_platform: os.platform() | 
					
						
							|  |  |  |   , os_release: os.release() | 
					
						
							|  |  |  |   , os_arch: os.arch() | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2018-09-03 22:56:52 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | TelebitRemote.create = function (opts) { | 
					
						
							|  |  |  |   return new TelebitRemote(opts); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | TelebitRemote.createConnection = function (opts, cb) { | 
					
						
							|  |  |  |   var tunnel = TelebitRemote.create(opts); | 
					
						
							|  |  |  |   tunnel.connect(opts); | 
					
						
							|  |  |  |   tunnel.once('connect', cb); | 
					
						
							|  |  |  |   return tunnel; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | TelebitRemote.connect = TelebitRemote.createConnection; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports.TelebitRemote = TelebitRemote; | 
					
						
							| 
									
										
										
										
											2016-09-29 21:10:40 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | }()); |