2017-08-28 12:27:45 -04:00
/ * *
* @ description Intel AMT Redirection Transport Module - using websocket relay
* @ author Ylian Saint - Hilaire
2020-05-28 06:14:08 -04:00
* @ version v2 . 0.0
2017-08-28 12:27:45 -04:00
* /
// Construct a MeshServer object
2019-01-28 18:47:54 -05:00
var CreateAmtRedirect = function ( module , authCookie ) {
2017-08-28 12:27:45 -04:00
var obj = { } ;
obj . m = module ; // This is the inner module (Terminal or Desktop)
module . parent = obj ;
2019-01-28 18:47:54 -05:00
obj . authCookie = authCookie ;
2017-08-28 12:27:45 -04:00
obj . State = 0 ;
obj . socket = null ;
// ###BEGIN###{!Mode-Firmware}
obj . host = null ;
obj . port = 0 ;
obj . user = null ;
obj . pass = null ;
2020-05-28 06:14:08 -04:00
obj . authuri = '/RedirectionService' ;
2017-12-19 12:54:55 -05:00
obj . tlsv1only = 0 ;
obj . inDataCount = 0 ;
2017-08-28 12:27:45 -04:00
// ###END###{!Mode-Firmware}
obj . connectstate = 0 ;
obj . protocol = module . protocol ; // 1 = SOL, 2 = KVM, 3 = IDER
2020-05-28 06:14:08 -04:00
obj . acc = null ;
2017-08-28 12:27:45 -04:00
obj . amtsequence = 1 ;
obj . amtkeepalivetimer = null ;
obj . onStateChanged = null ;
2020-05-28 06:14:08 -04:00
function arrToStr ( arr ) { return String . fromCharCode . apply ( null , arr ) ; }
function randomHex ( length ) { var r = '' ; for ( var i = 0 ; i < length ; i ++ ) { r += 'abcdef0123456789' . charAt ( Math . floor ( Math . random ( ) * 16 ) ) ; } return r ; }
2017-08-28 12:27:45 -04:00
obj . Start = function ( host , port , user , pass , tls ) {
obj . host = host ;
obj . port = port ;
obj . user = user ;
obj . pass = pass ;
obj . connectstate = 0 ;
2017-12-19 12:54:55 -05:00
obj . inDataCount = 0 ;
2020-05-28 06:14:08 -04:00
var url = window . location . protocol . replace ( 'http' , 'ws' ) + '//' + window . location . host + window . location . pathname . substring ( 0 , window . location . pathname . lastIndexOf ( '/' ) ) + '/webrelay.ashx?p=2&host=' + host + '&port=' + port + '&tls=' + tls + ( ( user == '*' ) ? '&serverauth=1' : '' ) + ( ( typeof pass === 'undefined' ) ? ( '&serverauth=1&user=' + user ) : '' ) ; // The 'p=2' indicates to the relay that this is a REDIRECTION session
2019-01-28 18:47:54 -05:00
if ( ( authCookie != null ) && ( authCookie != '' ) ) { url += '&auth=' + authCookie ; }
obj . socket = new WebSocket ( url ) ;
2020-05-28 06:14:08 -04:00
obj . socket . binaryType = 'arraybuffer' ;
2017-08-28 12:27:45 -04:00
obj . socket . onopen = obj . xxOnSocketConnected ;
obj . socket . onmessage = obj . xxOnMessage ;
obj . socket . onclose = obj . xxOnSocketClosed ;
obj . xxStateChange ( 1 ) ;
}
obj . xxOnSocketConnected = function ( ) {
obj . xxStateChange ( 2 ) ;
2020-05-28 06:14:08 -04:00
if ( obj . protocol == 1 ) obj . directSend ( new Uint8Array ( [ 0x10 , 0x00 , 0x00 , 0x00 , 0x53 , 0x4F , 0x4C , 0x20 ] ) ) ; // SOL
if ( obj . protocol == 2 ) obj . directSend ( new Uint8Array ( [ 0x10 , 0x01 , 0x00 , 0x00 , 0x4b , 0x56 , 0x4d , 0x52 ] ) ) ; // KVM
if ( obj . protocol == 3 ) obj . directSend ( new Uint8Array ( [ 0x10 , 0x00 , 0x00 , 0x00 , 0x49 , 0x44 , 0x45 , 0x52 ] ) ) ; // IDER
2019-02-06 21:09:40 -05:00
}
2017-08-28 12:27:45 -04:00
obj . xxOnMessage = function ( e ) {
2020-05-28 06:14:08 -04:00
if ( ! e . data || obj . connectstate == - 1 ) return ;
2017-12-19 12:54:55 -05:00
obj . inDataCount ++ ;
2020-05-28 06:14:08 -04:00
// KVM traffic, forward it directly.
if ( ( obj . connectstate == 1 ) && ( ( obj . protocol == 2 ) || ( obj . protocol == 3 ) ) ) {
return obj . m . ProcessBinaryData ? obj . m . ProcessBinaryData ( e . data ) : obj . m . ProcessData ( arrToStr ( e . data ) ) ;
2017-08-28 12:27:45 -04:00
}
2020-05-28 06:14:08 -04:00
// Append to accumulator
if ( obj . acc == null ) {
obj . acc = e . data ;
} else {
var tmp = new Uint8Array ( obj . acc . byteLength + e . data . byteLength ) ;
tmp . set ( new Uint8Array ( obj . acc ) , 0 ) ;
tmp . set ( new Uint8Array ( e . data ) , obj . acc . byteLength ) ;
obj . acc = tmp . buffer ;
2017-08-28 12:27:45 -04:00
}
2020-05-28 06:14:08 -04:00
//console.log('Redir Recv', obj.acc);
while ( ( obj . acc != null ) && ( obj . acc . byteLength >= 1 ) ) {
var cmdsize = 0 , accArray = new Uint8Array ( obj . acc ) ;
switch ( accArray [ 0 ] ) {
2017-08-28 12:27:45 -04:00
case 0x11 : // StartRedirectionSessionReply (17)
2020-05-28 06:14:08 -04:00
if ( accArray . byteLength < 4 ) return ;
var statuscode = accArray [ 1 ] ;
2017-08-28 12:27:45 -04:00
switch ( statuscode ) {
case 0 : // STATUS_SUCCESS
2020-05-28 06:14:08 -04:00
if ( accArray . byteLength < 13 ) return ;
var oemlen = accArray [ 12 ] ;
if ( accArray . byteLength < 13 + oemlen ) return ;
obj . directSend ( new Uint8Array ( [ 0x13 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ] ) ) ; // Query for available authentication
2017-08-28 12:27:45 -04:00
cmdsize = ( 13 + oemlen ) ;
break ;
default :
2018-01-09 23:13:41 -05:00
obj . Stop ( 1 ) ;
2017-08-28 12:27:45 -04:00
break ;
}
break ;
case 0x14 : // AuthenticateSessionReply (20)
2020-05-28 06:14:08 -04:00
if ( accArray . byteLength < 9 ) return ;
var authDataLen = new DataView ( obj . acc ) . getUint32 ( 5 , true ) ;
if ( accArray . byteLength < 9 + authDataLen ) return ;
var status = accArray [ 1 ] , authType = accArray [ 4 ] , authData = [ ] ;
for ( i = 0 ; i < authDataLen ; i ++ ) { authData . push ( accArray [ 9 + i ] ) ; }
2020-05-28 19:24:48 -04:00
var authDataBuf = new Uint8Array ( obj . acc . slice ( 9 , 9 + authDataLen ) ) ;
2017-08-28 12:27:45 -04:00
cmdsize = 9 + authDataLen ;
if ( authType == 0 ) {
// Query
if ( authData . indexOf ( 4 ) >= 0 ) {
// Good Digest Auth (With cnonce and all)
obj . xxSend ( String . fromCharCode ( 0x13 , 0x00 , 0x00 , 0x00 , 0x04 ) + IntToStrX ( obj . user . length + obj . authuri . length + 8 ) + String . fromCharCode ( obj . user . length ) + obj . user + String . fromCharCode ( 0x00 , 0x00 ) + String . fromCharCode ( obj . authuri . length ) + obj . authuri + String . fromCharCode ( 0x00 , 0x00 , 0x00 , 0x00 ) ) ;
}
else if ( authData . indexOf ( 3 ) >= 0 ) {
// Bad Digest Auth (Not sure why this is supported, cnonce is not used!)
obj . xxSend ( String . fromCharCode ( 0x13 , 0x00 , 0x00 , 0x00 , 0x03 ) + IntToStrX ( obj . user . length + obj . authuri . length + 7 ) + String . fromCharCode ( obj . user . length ) + obj . user + String . fromCharCode ( 0x00 , 0x00 ) + String . fromCharCode ( obj . authuri . length ) + obj . authuri + String . fromCharCode ( 0x00 , 0x00 , 0x00 ) ) ;
}
else if ( authData . indexOf ( 1 ) >= 0 ) {
// Basic Auth (Probably a good idea to not support this unless this is an old version of Intel AMT)
obj . xxSend ( String . fromCharCode ( 0x13 , 0x00 , 0x00 , 0x00 , 0x01 ) + IntToStrX ( obj . user . length + obj . pass . length + 2 ) + String . fromCharCode ( obj . user . length ) + obj . user + String . fromCharCode ( obj . pass . length ) + obj . pass ) ;
}
2018-01-09 23:13:41 -05:00
else obj . Stop ( 2 ) ;
2020-05-28 06:14:08 -04:00
} else if ( ( ( authType == 3 ) || ( authType == 4 ) ) && ( status == 1 ) ) {
2017-08-28 12:27:45 -04:00
var curptr = 0 ;
// Realm
2020-05-28 06:14:08 -04:00
var realmlen = authDataBuf [ curptr ] ;
2020-05-28 19:24:48 -04:00
var realm = arrToStr ( new Uint8Array ( authDataBuf . buffer . slice ( curptr + 1 , curptr + 1 + realmlen ) ) ) ;
2017-08-28 12:27:45 -04:00
curptr += ( realmlen + 1 ) ;
// Nonce
2020-05-28 06:14:08 -04:00
var noncelen = authDataBuf [ curptr ] ;
2020-05-28 19:24:48 -04:00
var nonce = arrToStr ( new Uint8Array ( authDataBuf . buffer . slice ( curptr + 1 , curptr + 1 + noncelen ) ) ) ;
2017-08-28 12:27:45 -04:00
curptr += ( noncelen + 1 ) ;
// QOP
var qoplen = 0 ;
var qop = null ;
2020-05-28 06:14:08 -04:00
var cnonce = randomHex ( 32 ) ;
2017-08-28 12:27:45 -04:00
var snc = '00000002' ;
var extra = '' ;
if ( authType == 4 ) {
2020-05-28 06:14:08 -04:00
qoplen = authDataBuf [ curptr ] ;
2020-05-28 19:24:48 -04:00
qop = arrToStr ( new Uint8Array ( authDataBuf . buffer . slice ( curptr + 1 , curptr + 1 + qoplen ) ) ) ;
2017-08-28 12:27:45 -04:00
curptr += ( qoplen + 1 ) ;
2020-05-28 06:14:08 -04:00
extra = snc + ':' + cnonce + ':' + qop + ':' ;
2017-08-28 12:27:45 -04:00
}
2020-05-28 06:14:08 -04:00
var digest = hex _md5 ( hex _md5 ( obj . user + ':' + realm + ':' + obj . pass ) + ':' + nonce + ':' + extra + hex _md5 ( 'POST:' + obj . authuri ) ) ;
2017-08-28 12:27:45 -04:00
var totallen = obj . user . length + realm . length + nonce . length + obj . authuri . length + cnonce . length + snc . length + digest . length + 7 ;
if ( authType == 4 ) totallen += ( qop . length + 1 ) ;
var buf = String . fromCharCode ( 0x13 , 0x00 , 0x00 , 0x00 , authType ) + IntToStrX ( totallen ) + String . fromCharCode ( obj . user . length ) + obj . user + String . fromCharCode ( realm . length ) + realm + String . fromCharCode ( nonce . length ) + nonce + String . fromCharCode ( obj . authuri . length ) + obj . authuri + String . fromCharCode ( cnonce . length ) + cnonce + String . fromCharCode ( snc . length ) + snc + String . fromCharCode ( digest . length ) + digest ;
if ( authType == 4 ) buf += ( String . fromCharCode ( qop . length ) + qop ) ;
obj . xxSend ( buf ) ;
2020-05-28 06:14:08 -04:00
} else if ( status == 0 ) { // Success
switch ( obj . protocol ) {
case 1 : {
// Serial-over-LAN: Send Intel AMT serial settings...
var MaxTxBuffer = 10000 ;
var TxTimeout = 100 ;
var TxOverflowTimeout = 0 ;
var RxTimeout = 10000 ;
var RxFlushTimeout = 100 ;
var Heartbeat = 0 ; //5000;
obj . xxSend ( String . fromCharCode ( 0x20 , 0x00 , 0x00 , 0x00 ) + IntToStrX ( obj . amtsequence ++ ) + ShortToStrX ( MaxTxBuffer ) + ShortToStrX ( TxTimeout ) + ShortToStrX ( TxOverflowTimeout ) + ShortToStrX ( RxTimeout ) + ShortToStrX ( RxFlushTimeout ) + ShortToStrX ( Heartbeat ) + IntToStrX ( 0 ) ) ;
break ;
}
case 2 : {
// Remote Desktop: Send traffic directly...
obj . directSend ( new Uint8Array ( [ 0x40 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ] ) ) ;
break ;
}
case 3 : {
// Remote IDER: Send traffic directly...
obj . connectstate = 1 ;
obj . xxStateChange ( 3 ) ;
break ;
}
2017-08-28 12:27:45 -04:00
}
2018-01-09 23:13:41 -05:00
} else obj . Stop ( 3 ) ;
2017-08-28 12:27:45 -04:00
break ;
case 0x21 : // Response to settings (33)
2020-05-28 06:14:08 -04:00
if ( accArray . byteLength < 23 ) break ;
2017-08-28 12:27:45 -04:00
cmdsize = 23 ;
obj . xxSend ( String . fromCharCode ( 0x27 , 0x00 , 0x00 , 0x00 ) + IntToStrX ( obj . amtsequence ++ ) + String . fromCharCode ( 0x00 , 0x00 , 0x1B , 0x00 , 0x00 , 0x00 ) ) ;
if ( obj . protocol == 1 ) { obj . amtkeepalivetimer = setInterval ( obj . xxSendAmtKeepAlive , 2000 ) ; }
obj . connectstate = 1 ;
obj . xxStateChange ( 3 ) ;
break ;
case 0x29 : // Serial Settings (41)
2020-05-28 06:14:08 -04:00
if ( accArray . byteLength < 10 ) break ;
2017-08-28 12:27:45 -04:00
cmdsize = 10 ;
break ;
case 0x2A : // Incoming display data (42)
2020-05-28 06:14:08 -04:00
if ( accArray . byteLength < 10 ) break ;
var cs = ( 10 + ( accArray [ 9 ] << 8 ) + accArray [ 8 ] ) ;
if ( accArray . byteLength < cs ) break ;
2020-05-28 19:24:48 -04:00
if ( obj . m . ProcessBinaryData ) { obj . m . ProcessBinaryData ( new Uint8Array ( accArray . buffer . slice ( 10 , cs ) ) ) ; } else { obj . m . ProcessData ( arrToStr ( new Uint8Array ( accArray . buffer . slice ( 10 , cs ) ) ) ) ; }
2017-08-28 12:27:45 -04:00
cmdsize = cs ;
break ;
case 0x2B : // Keep alive message (43)
2020-05-28 06:14:08 -04:00
if ( accArray . byteLength < 8 ) break ;
2017-08-28 12:27:45 -04:00
cmdsize = 8 ;
break ;
case 0x41 :
2020-05-28 06:14:08 -04:00
if ( accArray . byteLength < 8 ) break ;
2017-08-28 12:27:45 -04:00
obj . connectstate = 1 ;
obj . m . Start ( ) ;
// KVM traffic, forward rest of accumulator directly.
2020-05-28 19:24:48 -04:00
if ( accArray . byteLength > 8 ) {
if ( obj . m . ProcessBinaryData ) { obj . m . ProcessBinaryData ( new Uint8Array ( accArray . buffer . slice ( 8 ) ) ) ; } else { obj . m . ProcessData ( arrToStr ( new Uint8Array ( accArray . buffer . slice ( 8 ) ) ) ) ; }
}
2020-05-28 06:14:08 -04:00
cmdsize = accArray . byteLength ;
2017-08-28 12:27:45 -04:00
break ;
2019-08-13 14:49:05 -04:00
case 0xF0 :
// console.log('Session is being recorded');
obj . serverIsRecording = true ;
cmdsize = 1 ;
break ;
2017-08-28 12:27:45 -04:00
default :
2020-05-28 06:14:08 -04:00
console . log ( 'Unknown Intel AMT command: ' + accArray [ 0 ] + ' acclen=' + accArray . byteLength ) ;
2018-01-09 23:13:41 -05:00
obj . Stop ( 4 ) ;
2017-08-28 12:27:45 -04:00
return ;
}
if ( cmdsize == 0 ) return ;
2020-05-28 06:14:08 -04:00
if ( cmdsize != obj . acc . byteLength ) { obj . acc = obj . acc . slice ( cmdsize ) ; } else { obj . acc = null ; }
2017-08-28 12:27:45 -04:00
}
}
2020-05-28 06:14:08 -04:00
obj . directSend = function ( arr ) { try { obj . socket . send ( arr . buffer ) ; } catch ( ex ) { } }
2017-08-28 12:27:45 -04:00
obj . xxSend = function ( x ) {
2020-05-28 06:14:08 -04:00
if ( ( obj . socket != null ) && ( obj . socket . readyState == WebSocket . OPEN ) ) {
2017-08-28 12:27:45 -04:00
var b = new Uint8Array ( x . length ) ;
for ( var i = 0 ; i < x . length ; ++ i ) { b [ i ] = x . charCodeAt ( i ) ; }
2019-07-10 17:27:38 -04:00
try { obj . socket . send ( b . buffer ) ; } catch ( ex ) { }
2017-08-28 12:27:45 -04:00
}
}
2020-05-28 19:24:48 -04:00
obj . Send = obj . send = function ( x ) {
2017-08-28 12:27:45 -04:00
if ( obj . socket == null || obj . connectstate != 1 ) return ;
if ( obj . protocol == 1 ) { obj . xxSend ( String . fromCharCode ( 0x28 , 0x00 , 0x00 , 0x00 ) + IntToStrX ( obj . amtsequence ++ ) + ShortToStrX ( x . length ) + x ) ; } else { obj . xxSend ( x ) ; }
}
2020-05-28 06:14:08 -04:00
obj . xxSendAmtKeepAlive = function ( ) { if ( obj . socket != null ) { obj . xxSend ( String . fromCharCode ( 0x2B , 0x00 , 0x00 , 0x00 ) + IntToStrX ( obj . amtsequence ++ ) ) ; } }
2017-08-28 12:27:45 -04:00
obj . xxOnSocketClosed = function ( ) {
2017-12-19 12:54:55 -05:00
if ( ( obj . inDataCount == 0 ) && ( obj . tlsv1only == 0 ) ) {
obj . tlsv1only = 1 ;
2020-05-28 06:14:08 -04:00
obj . socket = new WebSocket ( window . location . protocol . replace ( 'http' , 'ws' ) + '//' + window . location . host + window . location . pathname . substring ( 0 , window . location . pathname . lastIndexOf ( '/' ) ) + '/webrelay.ashx?p=2&host=' + obj . host + '&port=' + obj . port + '&tls=' + obj . tls + '&tls1only=1' + ( ( obj . user == '*' ) ? '&serverauth=1' : '' ) + ( ( typeof pass === 'undefined' ) ? ( '&serverauth=1&user=' + obj . user ) : '' ) ) ; // The 'p=2' indicates to the relay that this is a REDIRECTION session
obj . socket . binaryType = 'arraybuffer' ;
2017-12-19 12:54:55 -05:00
obj . socket . onopen = obj . xxOnSocketConnected ;
obj . socket . onmessage = obj . xxOnMessage ;
obj . socket . onclose = obj . xxOnSocketClosed ;
} else {
2018-01-09 23:13:41 -05:00
obj . Stop ( 5 ) ;
2017-12-19 12:54:55 -05:00
}
2017-08-28 12:27:45 -04:00
}
2020-05-28 06:14:08 -04:00
obj . xxStateChange = function ( newstate ) {
2017-08-28 12:27:45 -04:00
if ( obj . State == newstate ) return ;
obj . State = newstate ;
obj . m . xxStateChange ( obj . State ) ;
if ( obj . onStateChanged != null ) obj . onStateChanged ( obj , obj . State ) ;
}
2018-01-09 23:13:41 -05:00
obj . Stop = function ( x ) {
2017-08-28 12:27:45 -04:00
obj . xxStateChange ( 0 ) ;
obj . connectstate = - 1 ;
2020-05-28 06:14:08 -04:00
obj . acc = null ;
2017-08-28 12:27:45 -04:00
if ( obj . socket != null ) { obj . socket . close ( ) ; obj . socket = null ; }
if ( obj . amtkeepalivetimer != null ) { clearInterval ( obj . amtkeepalivetimer ) ; obj . amtkeepalivetimer = null ; }
}
return obj ;
}