-
Notifications
You must be signed in to change notification settings - Fork 59
/
sdpController.js
2359 lines (1966 loc) · 101 KB
/
sdpController.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2016 Waverley Labs, LLC
*
* This file is part of SDPcontroller
*
* SDPcontroller is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* SDPcontroller is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// Load the libraries
var tls = require('tls');
var fs = require('fs');
var mysql = require("mysql");
var credentialMaker = require('./sdpCredentialMaker');
var prompt = require("prompt");
// If the user specified the config path, get it
if(process.argv.length > 2) {
try {
var config = require(process.argv[2]);
} catch (e) {
// It isn't accessible
console.log("Did not find specified config file. Exiting");
process.exit();
}
} else {
var config = require('./config.js');
}
const MSG_SIZE_FIELD_LEN = 4;
const encryptionKeyLenMin = 64;
const encryptionKeyLenMax = 256;
const hmacKeyLenMin = 64;
const hmacKeyLenMax = 256;
// a couple global variables
var db;
var dbPassword = config.dbPassword;
var serverKeyPassword = config.serverKeyPassword;
var myCredentialMaker = new credentialMaker(config);
var connectedGateways = [];
var connectedClients = [];
var nextConnectionId = 1;
var checkDatabaseTries = 0;
var checkOpenConnectionsTries = 0;
var lastDatabaseCheck = new Date();
var lastConnectionCheck = new Date();
// check a couple config settings
if(config.encryptionKeyLen < encryptionKeyLenMin
|| config.encryptionKeyLen > encryptionKeyLenMax)
{
var explanation = "Range is " + encryptionKeyLenMin + " to " + encryptionKeyLenMax;
throw new sdpConfigException("encryptionKeyLen", explanation);
}
if(config.hmacKeyLen < hmacKeyLenMin
|| config.hmacKeyLen > hmacKeyLenMax)
{
var explanation = "Range is " + hmacKeyLenMin + " to " + hmacKeyLenMax
throw new sdpConfigException("hmacKeyLen", explanation);
}
myCredentialMaker.init(startController);
function startController() {
if(serverKeyPassword || !config.serverKeyPasswordRequired)
checkDbPassword();
else
{
var schema = {
properties: {
password: {
description: 'Enter server key password',
hidden: true,
replace: '*',
required: true
}
}
};
prompt.start();
prompt.get(schema, function(err,result) {
if(err)
{
throw err;
}
else
{
serverKeyPassword = result.password;
checkDbPassword();
}
});
}
}
function checkDbPassword() {
if(dbPassword || !config.dbPasswordRequired)
startDbPool();
else
{
var schema = {
properties: {
password: {
description: 'Enter database password',
hidden: true,
replace: '*',
required: true
}
}
};
prompt.start();
prompt.get(schema, function(err,result) {
if(err)
console.log(err);
else
{
dbPassword = result.password;
startDbPool();
}
});
}
}
function startDbPool() {
// set up database pool
if(config.dbPasswordRequired == false) {
db = mysql.createPool({
connectionLimit: config.maxConnections,
host: config.dbHost,
user: config.dbUser,
database: config.dbName,
debug: false
});
} else {
db = mysql.createPool({
connectionLimit: config.maxConnections,
host: config.dbHost,
user: config.dbUser,
password: dbPassword, //config.dbPassword,
database: config.dbName,
debug: false
});
}
startServer();
}
function startServer() {
cleanOpenConnectionTable();
setTimeout(checkDatabaseForUpdates,
config.databaseMonitorInterval,
config.databaseMonitorInterval);
// tls server options
const options = {
// the server's private key
key: fs.readFileSync(config.serverKey),
passphrase: serverKeyPassword,
// the server's public cert
cert: fs.readFileSync(config.serverCert),
// require client certs
requestCert: true,
rejectUnauthorized: true,
// for client certs created by us
ca: [ fs.readFileSync(config.caCert) ]
};
// Start a TLS Server
var server = tls.createServer(options, function (socket) {
if(config.debug)
console.log("Socket connection started");
var action = null;
var memberDetails = null;
var dataTransmitTries = 0;
var credentialMakerTries = 0;
var databaseConnTries = 0;
var badMessagesReceived = 0;
var newKeys = null;
var accessRefreshDue = false;
var connectionId = nextConnectionId;
var expectedMessageSize = 0;
var totalSizeBytesReceived = 0;
var sizeBytesNeeded = 0;
var dataBytesToRead = 0;
var totalMessageBytesReceived = 0;
var sizeBuffer = Buffer.allocUnsafe(MSG_SIZE_FIELD_LEN);
var messageBuffer = Buffer.allocUnsafe(0);
if(Number.MAX_SAFE_INTEGER == connectionId) // 9007199254740991
nextConnectionId = 1;
else
nextConnectionId += 1;
// Identify the connecting client or gateway
var sdpId = parseInt(socket.getPeerCertificate().subject.CN);
console.log("Connection from SDP ID " + sdpId + ", connection ID " + connectionId);
// Set the socket timeout to watch for inactivity
if(config.socketTimeout)
socket.setTimeout(config.socketTimeout, function() {
console.error("Connection to SDP ID " + sdpId + ", connection ID " + connectionId + " has timed out. Disconnecting.");
//if(memberDetails.type === 'gateway') {
// removeOpenConnections(connectionId);
//}
//removeFromConnectionList(memberDetails, connectionId);
});
// Handle incoming requests from members
socket.on('data', function (data) {
while(data.length) {
// have we set the full message size variable yet
if(expectedMessageSize == 0) {
sizeBytesNeeded = MSG_SIZE_FIELD_LEN - totalSizeBytesReceived;
// exceptional case, so few bytes arrived
// not enough data to read expected message size
if( data.length < sizeBytesNeeded ) {
data.copy(sizeBuffer, totalSizeBytesReceived, 0, data.length);
totalSizeBytesReceived += data.length;
data = Buffer.allocUnsafe(0);
return;
}
data.copy(sizeBuffer, totalSizeBytesReceived, 0, sizeBytesNeeded);
totalSizeBytesReceived = MSG_SIZE_FIELD_LEN;
expectedMessageSize = sizeBuffer.readUInt32BE(0);
// time to reset the buffer
messageBuffer = Buffer.allocUnsafe(0);
}
// if there's more data in the received buffer besides the message size field (i.e. actual message contents)
if( data.length > sizeBytesNeeded ) {
// if there are fewer bytes than what's needed to complete the message
if( (data.length - sizeBytesNeeded) < (expectedMessageSize - totalMessageBytesReceived) ){
// then read from after the size field to end of the received buffer
dataBytesToRead = data.length - sizeBytesNeeded;
}
else {
dataBytesToRead = expectedMessageSize - totalMessageBytesReceived;
}
totalMessageBytesReceived += dataBytesToRead;
messageBuffer = Buffer.concat([messageBuffer,
data.slice(sizeBytesNeeded, sizeBytesNeeded+dataBytesToRead)],
totalMessageBytesReceived);
}
// if the message is now complete, process
if(totalMessageBytesReceived == expectedMessageSize) {
expectedMessageSize = 0;
totalSizeBytesReceived = 0;
totalMessageBytesReceived = 0;
processMessage(messageBuffer);
}
data = data.slice(sizeBytesNeeded+dataBytesToRead);
sizeBytesNeeded = 0;
dataBytesToRead = 0;
}
});
socket.on('end', function () {
console.log("Connection to SDP ID " + sdpId + ", connection ID " + connectionId + " closed.");
if(memberDetails.type === 'gateway') {
removeOpenConnections(connectionId);
}
removeFromConnectionList(memberDetails, connectionId);
});
socket.on('error', function (error) {
console.error(error);
if(memberDetails.type === 'gateway') {
removeOpenConnections(connectionId);
}
removeFromConnectionList(memberDetails, connectionId);
socket.end();
});
// Find sdpId in the database
db.getConnection(function(error,connection){
if(error){
console.error("Error connecting to database: " + error);
writeToSocket(socket, JSON.stringify({action: 'database_error'}), true);
return;
}
var databaseErrorCallback = function(error) {
connection.removeListener('error', databaseErrorCallback);
connection.release();
console.error("Error from database connection: " + error);
return;
};
connection.on('error', databaseErrorCallback);
connection.query('SELECT * FROM `sdpid` WHERE `sdpid` = ?', [sdpId],
function (error, rows, fields) {
connection.removeListener('error', databaseErrorCallback);
connection.release();
if (error) {
console.error("Query returned error: " + error);
console.error(error);
writeToSocket(socket, JSON.stringify({action: 'database_error'}), true);
} else if (rows.length < 1) {
console.error("SDP ID not found, notifying and disconnecting");
writeToSocket(socket, JSON.stringify({action: 'unknown_sdp_id'}), true);
} else if (rows.length > 1) {
console.error("Query returned multiple rows for SDP ID: " + sdpId);
writeToSocket(socket, JSON.stringify({action: 'database_error'}), true);
} else if (rows[0].valid == 0) {
console.error("SDP ID " + sdpId+" disabled. Disconnecting.");
writeToSocket(socket, JSON.stringify({action: 'sdpid_unauthorized'}), true);
} else {
memberDetails = rows[0];
// add the connection to the appropriate list
var destList;
if(memberDetails.type === 'gateway') {
destList = connectedGateways;
} else {
destList = connectedClients;
}
// first ensure no duplicate connection entries are left around
for(var idx = 0; idx < destList.length; idx++) {
if(destList[idx].sdpId == memberDetails.sdpid) {
// this next call triggers socket.on('end'...
// which removes the entry from the connection list
writeToSocket(destList[idx].socket,
JSON.stringify({action: 'duplicate_connection'}),
true
);
// the check above means there should never be more than 1 match
// and letting the loop keep checking introduces race condition
// because the .end callback also loops through the list
// and will delete one list entry
break;
}
}
// now add the connection to the right list
newEntry = {
sdpId: memberDetails.sdpid,
connectionId: connectionId,
connectionTime: new Date(),
socket
};
//if(memberDetails.type === 'gateway') {
// newEntry.connections = null;
//}
destList.push(newEntry);
if (config.debug) {
console.log("Connected gateways: \n", connectedGateways, "\n");
console.log("Connected clients: \n", connectedClients, "\n");
console.log("Data for client is: ");
console.log(memberDetails);
}
// possibly send credential update
var now = new Date();
if(now > memberDetails.cred_update_due) {
handleCredentialUpdate();
} else {
writeToSocket(socket, JSON.stringify({action: 'credentials_good'}), false);
}
}
});
});
// Parse SDP messages
function processMessage(data) {
if(config.debug) {
console.log("Message Data Received: ");
console.log(data.toString());
}
// Ignore message if not yet ready
// Clients are not supposed to send the first message
if(!memberDetails){
console.log("Ignoring premature message.");
return;
}
try {
var message = JSON.parse(data);
}
catch (err) {
console.error("Error processing the following received data: \n" + data.toString());
console.error("JSON parse failed with error: " + err);
handleBadMessage(data.toString());
return;
}
if(config.debug) {
console.log("Message parsed");
console.log("Message received from SDP ID " + memberDetails.sdpid);
console.log("JSON-Parsed Message Data Received: ");
for(var myKey in message) {
console.log("key: " + myKey + " value: " + message[myKey]);
}
}
action = message['action'];
if (action === 'credential_update_request') {
handleCredentialUpdate();
} else if (action === 'credential_update_ack') {
handleCredentialUpdateAck();
} else if (action === 'keep_alive') {
handleKeepAlive();
} else if (action === 'service_refresh_request') {
handleServiceRefresh();
} else if (action === 'service_ack') {
handleServiceAck();
} else if (action === 'access_refresh_request') {
handleAccessRefresh();
} else if (action === 'access_update_request') {
handleAccessUpdate(message);
} else if (action === 'access_ack') {
handleAccessAck();
} else if (action === 'connection_update') {
handleConnectionUpdate(message);
} else if (action === 'bad_message') {
// doing nothing with these yet
return;
} else {
console.error("Invalid message received, invalid or missing action");
handleBadMessage(data.toString());
}
}
function handleKeepAlive() {
if (config.debug) {
console.log("Received keep_alive from SDP ID "+memberDetails.sdpid+", responding now.");
}
var keepAliveMessage = {
action: 'keep_alive'
};
// For testing only, send a bunch of copies fast
if (config.testManyMessages > 0) {
console.log("Sending " +config.testManyMessages+ " extra messages first for testing rather than just 1");
var jsonMsgString = JSON.stringify(keepAliveMessage);
for(var ii = 0; ii < config.testManyMessages; ii++) {
writeToSocket(socket, jsonMsgString, false);
}
}
writeToSocket(socket, JSON.stringify(keepAliveMessage), false);
//console.log("keepAlive message written to socket");
}
function handleCredentialUpdate() {
if (dataTransmitTries >= config.maxDataTransmitTries) {
// Data transmission has failed
console.error("Data transmission to SDP ID " + memberDetails.sdpid +
" has failed after " + (dataTransmitTries+1) + " attempts");
console.error("Closing connection");
socket.end();
return;
}
// get the credentials
myCredentialMaker.getNewCredentials(memberDetails, function(err, data){
if (err) {
credentialMakerTries++;
if (credentialMakerTries >= config.maxCredentialMakerTries) {
// Credential making has failed
console.error("Failed to make credentials for SDP ID " + memberDetails.sdpid +
" " + credentialMakerTries + " times.");
console.error("Closing connection");
var credErrMessage = {
action: 'credential_update_error',
data: 'Failed to generate credentials '+credentialMakerTries+
' times. Disconnecting.'
};
writeToSocket(socket, JSON.stringify(credErrMessage), true);
return;
}
// otherwise, just notify requestor of error
var credErrMessage = {
action: 'credential_update_error',
data: 'Could not generate new credentials',
};
console.log("Sending credential_update_error message to SDP ID " +
memberDetails.sdpid + ", failed attempt: " + credentialMakerTries);
writeToSocket(socket, JSON.stringify(credErrMessage), false);
} else {
// got credentials, send them over
var newCredMessage = {
action: 'credential_update',
data
};
var updated = new Date();
var expires = new Date();
expires.setDate(expires.getDate() + config.daysToExpiration);
expires.setHours(0);
expires.setMinutes(0);
expires.setSeconds(0);
expires.setMilliseconds(0);
newKeys = {
spa_encryption_key_base64: data.spa_encryption_key_base64,
spa_hmac_key_base64: data.spa_hmac_key_base64,
updated,
expires
};
console.log("Sending credential_update message to SDP ID " + memberDetails.sdpid + ", attempt: " + dataTransmitTries);
dataTransmitTries++;
writeToSocket(socket, JSON.stringify(newCredMessage), false);
}
});
} // END FUNCTION handleCredentialUpdate
function handleCredentialUpdateAck() {
console.log("Received credential update acknowledgement from SDP ID "+memberDetails.sdpid+
", data successfully delivered");
// store the necessary info in the database
storeKeysInDatabase();
} // END FUNCTION handleCredentialUpdateAck
function notifyGateways() {
// get database connection
db.getConnection(function(error,connection){
if(error){
console.error("Error connecting to database in preparation " +
"to notify gateways of a client's credential update: " + error);
// notify the requestor of our database troubles
writeToSocket(socket,
JSON.stringify({
action: 'notify_gateways_error',
data: 'Database unreachable. Gateways not notified of credential update.'
}),
false
);
return;
}
var databaseErrorCallback = function(error) {
connection.removeListener('error', databaseErrorCallback);
connection.release();
console.error("Error from database connection: " + error);
return;
};
connection.on('error', databaseErrorCallback);
// this next query requires a simple array of only
// the sdp ids listed in connectedGateways
var gatewaySdpIdList = [];
for(var idx = 0; idx < connectedGateways.length; idx++) {
gatewaySdpIdList.push(connectedGateways[idx].sdpId);
}
if(gatewaySdpIdList.length < 1)
{
console.log("No relevant gateways to notify regarding credential update to SDP ID "+memberDetails.sdpid);
return;
}
if(config.allowLegacyAccessRequests)
{
connection.query(
'(SELECT ' +
' `service_gateway`.`gateway_sdpid`, ' +
' `service_gateway`.`service_id`, ' +
' `service_gateway`.`protocol`, ' +
' `service_gateway`.`port`, ' +
' `sdpid`.`encrypt_key`, ' +
' `sdpid`.`hmac_key` ' +
'FROM `service_gateway` ' +
' JOIN `sdpid_service` ' +
' ON `sdpid_service`.`service_id` = `service_gateway`.`service_id` ' +
' JOIN `sdpid` ' +
' ON `sdpid`.`sdpid` = `sdpid_service`.`sdpid` ' +
'WHERE ' +
' `service_gateway`.`gateway_sdpid` IN (?) AND ' +
' `sdpid`.`sdpid` = ? )' +
'UNION ' +
'(SELECT ' +
' `service_gateway`.`gateway_sdpid`, ' +
' `group_service`.`service_id`, ' +
' `service_gateway`.`protocol`, ' +
' `service_gateway`.`port`, ' +
' `sdpid`.`encrypt_key`, ' +
' `sdpid`.`hmac_key` ' +
'FROM `service_gateway` ' +
' JOIN `group_service` ' +
' ON `group_service`.`service_id` = `service_gateway`.`service_id` ' +
' JOIN `group` ' +
' ON `group`.`id` = `group_service`.`group_id` ' +
' JOIN `user_group` ' +
' ON `user_group`.`group_id` = `group`.`id` ' +
' JOIN `sdpid` ' +
' ON `sdpid`.`user_id` = `user_group`.`user_id` ' +
'WHERE ' +
' `service_gateway`.`gateway_sdpid` IN (?) AND ' +
' `sdpid`.`sdpid` = ? AND ' +
' `group`.`valid` = 1 )' +
'ORDER BY `gateway_sdpid` ',
[gatewaySdpIdList,
memberDetails.sdpid,
gatewaySdpIdList,
memberDetails.sdpid],
function (error, rows, fields) {
connection.removeListener('error', databaseErrorCallback);
connection.release();
if(error) {
console.error("Access data query returned error: " + error);
writeToSocket(socket,
JSON.stringify({
action: 'notify_gateways_error',
data: 'Database error. Gateways not notified of credential update.'
}),
false
);
return;
}
if(rows.length == 0) {
console.log("No relevant gateways to notify regarding credential update to SDP ID "+memberDetails.sdpid);
return;
}
var thisRow = rows[0];
var currentGatewaySdpId = thisRow.gateway_sdpid;
var open_ports = thisRow.protocol + "/" + thisRow.port;
var service_list = thisRow.service_id.toString();
var encryptKey = thisRow.encrypt_key;
var hmacKey = thisRow.hmac_key;
for(var rowIdx = 0; rowIdx < rows.length; rowIdx++) {
thisRow = rows[rowIdx];
if(thisRow.gateway_sdpid != currentGatewaySdpId) {
currentGatewaySdpId = thisRow.gateway_sdpid;
service_list = thisRow.service_id.toString();
open_ports = thisRow.protocol + "/" + thisRow.port;
encryptKey = thisRow.encrypt_key;
hmacKey = thisRow.hmac_key;
} else if(rowIdx != 0) {
service_list += ", " + thisRow.service_id.toString();
open_ports += ", " + thisRow.protocol + "/" + thisRow.port;
}
// if this is the last data row or the next is a different gateway
if( (rowIdx + 1) == rows.length ||
rows[rowIdx + 1].gateway_sdpid != currentGatewaySdpId ) {
// send off this stanza data
notifyGateway(currentGatewaySdpId,
memberDetails.sdpid,
service_list,
open_ports,
encryptKey,
hmacKey);
}
}
// only after successful notification
if(memberDetails.type === 'client' &&
!config.keepClientsConnected)
{
socket.end();
}
} // END QUERY CALLBACK FUNCTION
); // END QUERY DEFINITION
} // END IF allowLegacyAccessRequests
else
{
connection.query(
'(SELECT ' +
' `service_gateway`.`gateway_sdpid`, ' +
' `service_gateway`.`service_id`, ' +
' `sdpid`.`encrypt_key`, ' +
' `sdpid`.`hmac_key` ' +
'FROM `service_gateway` ' +
' JOIN `sdpid_service` ' +
' ON `sdpid_service`.`service_id` = `service_gateway`.`service_id` ' +
' JOIN `sdpid` ' +
' ON `sdpid`.`sdpid` = `sdpid_service`.`sdpid` ' +
'WHERE ' +
' `service_gateway`.`gateway_sdpid` IN (?) AND ' +
' `sdpid`.`sdpid` = ? )' +
'UNION ' +
'(SELECT ' +
' `service_gateway`.`gateway_sdpid`, ' +
' `group_service`.`service_id`, ' +
' `sdpid`.`encrypt_key`, ' +
' `sdpid`.`hmac_key` ' +
'FROM `service_gateway` ' +
' JOIN `group_service` ' +
' ON `group_service`.`service_id` = `service_gateway`.`service_id` ' +
' JOIN `group` ' +
' ON `group`.`id` = `group_service`.`group_id` ' +
' JOIN `user_group` ' +
' ON `user_group`.`group_id` = `group`.`id` ' +
' JOIN `sdpid` ' +
' ON `sdpid`.`user_id` = `user_group`.`user_id` ' +
'WHERE ' +
' `service_gateway`.`gateway_sdpid` IN (?) AND ' +
' `sdpid`.`sdpid` = ? AND ' +
' `group`.`valid` = 1 )' +
'ORDER BY `gateway_sdpid` ',
[gatewaySdpIdList,
memberDetails.sdpid,
gatewaySdpIdList,
memberDetails.sdpid],
function (error, rows, fields) {
connection.removeListener('error', databaseErrorCallback);
connection.release();
if(error) {
console.error("Access data query returned error: " + error);
writeToSocket(socket,
JSON.stringify({
action: 'notify_gateways_error',
data: 'Database error. Gateways not notified of credential update.'
}),
false
);
return;
}
if(rows.length == 0) {
console.log("No relevant gateways to notify regarding credential update to SDP ID "+memberDetails.sdpid);
return;
}
var thisRow = rows[0];
var currentGatewaySdpId = thisRow.gateway_sdpid;
var service_list = thisRow.service_id.toString();
var encryptKey = thisRow.encrypt_key;
var hmacKey = thisRow.hmac_key;
for(var rowIdx = 0; rowIdx < rows.length; rowIdx++) {
thisRow = rows[rowIdx];
if(thisRow.gateway_sdpid != currentGatewaySdpId) {
currentGatewaySdpId = thisRow.gateway_sdpid;
service_list = thisRow.service_id.toString();
encryptKey = thisRow.encrypt_key;
hmacKey = thisRow.hmac_key;
} else if(rowIdx != 0) {
service_list += ", " + thisRow.service_id.toString();
}
// if this is the last data row or the next is a different gateway
if( (rowIdx + 1) == rows.length ||
rows[rowIdx + 1].gateway_sdpid != currentGatewaySdpId ) {
// send off this stanza data
notifyGateway(currentGatewaySdpId,
memberDetails.sdpid,
service_list,
null,
encryptKey,
hmacKey);
}
}
// only after successful notification
if(memberDetails.type === 'client' &&
!config.keepClientsConnected)
{
socket.end();
}
} // END QUERY CALLBACK FUNCTION
); // END QUERY DEFINITION
} // END ELSE (i.e. NOT allowLegacyAccessRequests)
}); // END DATABASE CONNECTION CALLBACK
} // END FUNCTION notifyGateways
function notifyGateway(gatewaySdpId, clientSdpId, service_list, open_ports, encKey, hmacKey) {
var gatewaySocket = null;
// get the right socket
for(var idx = 0; idx < connectedGateways.length; idx++) {
if(connectedGateways[idx].sdpId == gatewaySdpId) {
gatewaySocket = connectedGateways[idx].socket;
break;
}
}
debugger;
if(!gatewaySocket) {
console.log("Attempted to notify gateway with SDP ID " +gatewaySdpId+
" of a client's updated credentials, but socket not found.");
return;
}
if(open_ports)
{
var data = [{
sdp_id: clientSdpId,
source: "ANY",
service_list: service_list,
open_ports: open_ports,
spa_encryption_key_base64: encKey,
spa_hmac_key_base64: hmacKey
}];
}
else
{
var data = [{
sdp_id: clientSdpId,
source: "ANY",
service_list: service_list,
spa_encryption_key_base64: encKey,
spa_hmac_key_base64: hmacKey
}];
}
if(config.debug) {
console.log("Access update data to send to "+gatewaySdpId+": \n", data);
}
console.log("Sending access_update message to SDP ID " + gatewaySdpId);
writeToSocket(gatewaySocket,
JSON.stringify({
action: 'access_update',
data
}),
false
);
} // END FUNCTION notifyGateway
function removeFromConnectionList(details, connectionId) {
var theList = null;
var found = false;
if(details.type === 'client') {
var theList = connectedClients;
console.log("Searching connected client list for SDP ID " + details.sdpid + ", connection ID " + connectionId);
} else {
var theList = connectedGateways;
console.log("Searching connected gateway list for SDP ID " + details.sdpid + ", connection ID " + connectionId);
}
for(var idx = 0; idx < theList.length; idx++) {
if(theList[idx].connectionId == connectionId) {
theList.splice(idx, 1);
found = true;
break;
}
}
if(found) {
console.log("Found and removed SDP ID "+details.sdpid+ ", connection ID " + connectionId +" from connection list");
} else {
console.log("Did not find SDP ID "+details.sdpid+ ", connection ID " + connectionId +" in the connection list");
}
}
function handleServiceRefresh() {
if (dataTransmitTries >= config.maxDataTransmitTries) {
// Data transmission has failed
console.error("Data transmission to SDP ID " + memberDetails.sdpid +
" has failed after " + (dataTransmitTries+1) + " attempts");
console.error("Closing connection");
socket.end();
return;
}
db.getConnection(function(error,connection){
if(error){
console.error("Error connecting to database: " + error);
// notify the requestor of our database troubles
writeToSocket(socket,
JSON.stringify({
action: 'service_refresh_error',
data: 'Database unreachable. Try again soon.'
}),
false
);
return;
}
var databaseErrorCallback = function(error) {
connection.removeListener('error', databaseErrorCallback);
connection.release();
console.error("Error from database connection: " + error);
return;
};
connection.on('error', databaseErrorCallback);
connection.query(
'SELECT ' +
' `service_gateway`.`protocol`, ' +
' `service_gateway`.`service_id`, ' +
' `service_gateway`.`port`, ' +
' `service_gateway`.`nat_ip`, ' +
' `service_gateway`.`nat_port` ' +
'FROM `service_gateway` ' +
'WHERE `service_gateway`.`gateway_sdpid` = ? ',
[memberDetails.sdpid],
function (error, rows, fields) {
connection.removeListener('error', databaseErrorCallback);
connection.release();
if(error) {
console.error("Service data query returned error: " + error);
writeToSocket(socket,
JSON.stringify({
action: 'service_refresh_error',
data: 'Database error. Try again soon.'
}),
false
);
return;
}
var data = [];
for(var rowIdx = 0; rowIdx < rows.length; rowIdx++) {
var thisRow = rows[rowIdx];
data.push({
service_id: thisRow.service_id,
proto: thisRow.protocol,