forked from marcosnils/jvpn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jvpn.pl
executable file
·861 lines (796 loc) · 24.2 KB
/
jvpn.pl
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
#!/usr/bin/perl
# Script to run ncsvc without JAVA gui and web browser
# The author has placed this work in the Public Domain, thereby relinquishing
# all copyrights. Everyone is free to use, modify, republish, sell or give away
# this work without prior consent from anybody.
# This software is provided on an "as is" basis, without warranty of any
# kind. Use at your own risk! Under no circumstances shall the author(s) or
# contributor(s) be liable for damages resulting directly or indirectly from
# the use or non-use of this software.
use strict;
use warnings;
use Term::ReadKey;
use IO::Socket::INET;
use Fcntl ':mode';
use Getopt::Long;
use HTTP::Request::Common;
use LWP::UserAgent;
use HTTP::Cookies;
use File::Copy;
use File::Temp;
use File::Path;
use POSIX;
my %Config;
my @config_files = ("./jvpn.ini", $ENV{'HOME'}."/.jvpn.ini", "/etc/jvpn/jvpn.ini");
my $config_file = '';
my $show_help = 0;
# find configuration file
foreach my $line (@config_files) {
$config_file=$line;
last if -e $config_file;
}
# override from command line if specified
GetOptions ("config_file=s" => \$config_file,
"help" => \$show_help);
if($show_help) { print_help(); }
# parse configuration
&parse_config_file ($config_file, \%Config);
my $dhost=$Config{"host"};
my $dport=$Config{"port"};
my $durl=$Config{"url"};
my $username=$Config{"username"};
my $realm=$Config{"realm"};
my $dnsprotect=$Config{"dnsprotect"};
my $debug=$Config{"debug"};
my $verifycert=$Config{"verifycert"};
my $mode=$Config{"mode"};
my $script=$Config{"script"};
my $cfgpass=$Config{"password"};
my $workdir=$Config{"workdir"};
my $password="";
my $hostchecker=$Config{"hostchecker"};
my $tncc_pid = 0;
my $supportdir = $ENV{"HOME"}."/.juniper_networks";
my $narport_file = $supportdir."/narport.txt";
# change directory
if (defined $workdir){
mkpath($workdir) if !-e $workdir;
chdir($workdir);
}
# check mode
if(defined $mode){
if($mode !~ /^nc(ui|svc)$/) {
print "Configuration error: mode is set incorrectly ($mode), check jvpn.ini\n";
exit 1;
}
}
else { $mode="ncsvc"; }
# check password method
if(defined $cfgpass){
if($cfgpass !~ /^(interactive|helper:|plaintext:)/) {
print "Configuration error: password is set incorrectly ($cfgpass), check jvpn.ini\n";
exit 1;
}
}
else { $cfgpass="interactive"; }
# set host checker mode
$hostchecker=0 if !defined($mode);
# set default url if needed
$durl = "url_default" if (!defined($durl));
# checking if we running under root
# we need ncsvc to be uid for all modes
my $is_setuid = 0;
if (-e "./ncsvc") {
my $fmode = (stat("./ncsvc"))[2];
$is_setuid = ($fmode & S_ISUID) && ((stat("./ncsvc"))[4] == 0);
if(!-x "./ncsvc"){
print "./ncsvc is not executable, exiting\n";
exit 1;
}
}
if( $> != 0 && !$is_setuid) {
print "Please, run this script with su/sudo or set suid attribute on $mode \n";
exit 1;
}
my $ua = LWP::UserAgent->new;
# on RHEL6 ssl_opts is not exists
if(defined &LWP::UserAgent::ssl_opts) {
$ua->ssl_opts('verify_hostname' => $verifycert,
SSL_verify_mode => "SSL_VERIFY_NONE"
);
}
$ua->cookie_jar({});
push @{ $ua->requests_redirectable }, 'POST';
# if Juniper VPN server finds some 'known to be smart' useragent it will try to
# start "host checker" service on a client machine using Java applet.
if ($hostchecker) {
$ua->agent('Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:23.0) Gecko/20100101 Firefox/23.0');
# emulate javascript java check result
$ua->cookie_jar->set_cookie(0,"DSCheckBrowser","java","/",$dhost,$dport,1,1,60*5,0, ());
}
else {
$ua->agent('JVPN/Linux');
}
# show LWP traffic dump if debug is enabled
if($debug){
$ua->add_handler("request_send", sub { shift->dump; return });
$ua->add_handler("response_done", sub { shift->dump; return });
}
if (!defined($username) || $username eq "" || $username eq "interactive") {
print "Enter username: ";
$username=read_input();
print "\n";
}
if ($cfgpass eq "interactive") {
print "Enter password: ";
$password=read_input("password");
print "\n";
}
elsif ($cfgpass =~ /^plaintext:(.+)/) {
print "Using user-defined password\n";
$password=$1;
chomp($password);
}
elsif ($cfgpass =~ /^helper:(.+)/) {
print "Using user-defined script to get the password\n";
$password=run_pw_helper($1);
}
my $response_body = '';
my $res = $ua->post("https://$dhost:$dport/dana-na/auth/$durl/login.cgi",
[ btnSubmit => 'Sign In',
password => $password,
realm => $realm,
tz => '60',
username => $username,
]);
$response_body=$res->decoded_content;
my $dsid="";
my $dlast="";
my $dfirst="";
# Looking at the results...
if ($res->is_success) {
print("Transfer went ok\n");
# next token request
if ($response_body =~ /name="frmDefender"/ || $response_body =~ /name="frmNextToken"/ || $response_body =~ /name="password#2"/) {
$response_body =~ m/name="key" value="([^"]+)"/;
my $key=$1;
# grid cards. $1 contains grid reference
if ($response_body =~ /Challenge:([^"]+)\./) {
print $1;
print "\n";
print "Enter challenge response: ";
$password=read_input("password");
print "\n";
}
# if password was specified in plaintext we should not use it
# here, it will not work anyway
elsif ($cfgpass eq "interactive" || $cfgpass =~ /^plaintext:/) {
print "To continue, wait for the token code to change and ".
"then enter the new pin and code.\n";
print "Enter token:";
$password=read_input("password");
print "\n";
}
elsif ($cfgpass =~ /^helper:(.+)/) {
print "Using user-defined script to get second password\n";
# set current password to the OLDPIN variable to make
# helper aware that we need a new key
$ENV{'OLDPIN'}=$password;
$password=run_pw_helper($1);
delete $ENV{'OLDPIN'};
}
$res = $ua->post("https://$dhost:$dport/dana-na/auth/$durl/login.cgi",
[ btnSubmit => 'Sign In',
"password#2" => $password,
key => $key,
]);
$response_body=$res->decoded_content;
}
if ( $response_body =~ /Invalid/){
print "Invalid user name, password or realm, exiting \n";
exit 1;
}
# hostchecker authorization stage
if($hostchecker) {
if(!-e "./tncc.jar") { # download tncc.jar if not exists
print "tncc.jar does not exist, downloading from https://$dhost:$dport/dana-cached/hc/tncc.jar\n";
my $resdl = $ua->get ("https://$dhost:$dport/dana-cached/hc/tncc.jar",":content_file" => "./tncc.jar");
if (!$resdl->is_success) {
print "Unable to download tncc.jar, exiting \n";
exit 1;
}
}
# get state id and check if we on a right page
my $state_id='';
# sample base https://vpn.com/dana-na/auth/url_default/welcome.cgi?p=preauth&id=state_c63757c951e0050e6d9f22ef13442&signinRealmId=4
if ( $res->base =~ /[&?]id=(state_[0-9a-f]+)/){
$state_id=$1;
}
else {
print "Unable to get preauth id from ".$res->base."\n";
exit 1;
} # now we got preauth, so lets try to start tncc
$tncc_pid = tncc_start($res->decoded_content);
open NARPORT, $narport_file or die $!;
my $narport = <NARPORT>;
chomp $narport;
close NARPORT;
my $narsocket = retry_port($narport);
print "TCP Connection to the tncc.jar process established.\n";
my $dspreauth="";
my $cookie=$ua->cookie_jar->as_string;
if ( $cookie =~ /DSPREAUTH=([^;]+)/){
$dspreauth=$1;
}
# sending DSPREAUTH
print "Sending data to tncc... ";
my $data = "start\nIC=$dhost\nCookie=$dspreauth\nDSSIGNIN=null\n";
hdump($data) if $debug;
print $narsocket "$data";
$narsocket->recv($data,2048);
$narsocket->close();
if(!length($data)) {
print "\nUnable to get data from tncc, exiting";
exit 1;
}
hdump($data) if $debug;
my @resp_lines = split /\n/, $data;
if($resp_lines[0]!=200) {
print "\nGot non 200 (".$resp_lines[0].") return code\n";
exit 1;
}
print "[done]\n";
$ua->cookie_jar->set_cookie(0,"DSPREAUTH",$resp_lines[2],"/dana-na/",$dhost,$dport,1,1,60*5,0, ());
$res = $ua->get("https://$dhost:$dport/dana-na/auth/$durl/login.cgi?loginmode=mode_postAuth&postauth=$state_id");
$response_body=$res->decoded_content;
# send "setcookie" command as native client do
$cookie=$ua->cookie_jar->as_string;
$dspreauth = "";
if ( $cookie =~ /DSPREAUTH=([^;]+)/){
$dspreauth=$1;
}
if(length($dspreauth)) {
$narsocket = retry_port($narport);
$data = "setcookie\nCookie=$dspreauth\n";
hdump($data) if $debug;
print $narsocket "$data";
$narsocket->close();
}
}
# active sessions found
if ($response_body =~ /id="DSIDConfirmForm"/) {
$response_body =~ m/name="FormDataStr" value="([^"]+)"/;
print "Active sessions found, reconnecting...\n";
$res = $ua->post("https://$dhost:$dport/dana-na/auth/$durl/login.cgi",
[ btnContinue => 'Continue the session',
FormDataStr => $1,
]);
$response_body=$res->decoded_content;
}
my $cookie=$ua->cookie_jar->as_string;
if ( $cookie =~ /DSID=([a-f\d]+)/){
$dsid=$1;
}
if ( $cookie =~ /DSFirstAccess=(\d+)/){
$dfirst=$1;
}
else {
$dfirst=time();
}
if ( $cookie =~ /DSLastAccess=(\d+)/){
$dlast=$1;
}
else {
$dlast=time();
}
# do not print DSID in normal mode for security reasons
print $debug?"Got DSID=$dsid, dfirst=$dfirst, dlast=$dlast\n":"Got DSID\n";
if ($dsid eq "") {
print "Unable to get DSID, exiting \n";
exit 1;
}
} else {
# Error code, type of error, error message
print("An error happened: ".$res->status_line."\n");
exit 1;
}
# set int handlers
$SIG{'INT'} = \&INT_handler; # CTRL+C
$SIG{'TERM'} = \&INT_handler; # Kill process
$SIG{'HUP'} = \&INT_handler; # Terminal closed
$SIG{'PIPE'} = \&INT_handler; # Process died
# flush after every write
$| = 1;
my $md5hash = '';
my $crtfile = '';
my $fh; # should be global or file is unlinked
if($mode eq "ncsvc") {
$md5hash = <<` SHELL`;
echo | openssl s_client -connect ${dhost}:${dport} 2>/dev/null| \
openssl x509 -md5 -noout -fingerprint|\
awk -F\= '{print \$2}'|tr -d \:
exit 0
SHELL
chop($md5hash);
# changing case
$md5hash =~ tr/A-Z/a-z/;
if($md5hash eq "") {
print "Unable to get md5 hash of certificate, exiting";
exit 1;
}
print "Certificate fingerprint: [$md5hash]\n";
}
elsif($mode eq "ncui") {
# we need to fetch certificate
$fh = File::Temp->new();
$crtfile = $fh->filename;
<< ` SHELL`;
echo | openssl s_client -connect ${dhost}:${dport} 2>&1 | \
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | \
openssl x509 -outform der > $crtfile
SHELL
printf("Saved certificate to temporary file: $crtfile\n");
}
if (!-e "./$mode") {
$res = $ua->get ("https://$dhost:$dport/dana-cached/nc/ncLinuxApp.jar",':content_file' => './ncLinuxApp.jar');
print "Client not exists, downloading from https://$dhost:$dport/dana-cached/nc/ncLinuxApp.jar\n";
if ($res->is_success) {
print "Done, extracting\n";
system("unzip -o ncLinuxApp.jar ncsvc libncui.so && chmod +x ./ncsvc");
if($mode eq "ncui") {
if(!-e 'wrapper.c'){
printf "wrapper.c not found in ".getcwd()."\n";
printf "Please copy this file from jvpn distro and try again";
exit 1;
}
printf "Trying to compile 'ncui'. gcc must be installed to make this possible\n";
system("gcc -m32 -o ncui wrapper.c -ldl -Wall >compile.log 2>&1 && chmod +x ./ncui");
if (!-e "./ncui") {
printf("Error: Compilation failed, please compile.log\n");
exit 1;
}
else {
printf("ncui binary compiled\n");
}
}
}
else {
print "Download failed, exiting\n";
exit 1;
}
}
my $start_t = time;
my ($socket,$client_socket);
my $data;
if($mode eq "ncsvc") {
system("./ncsvc >/dev/null 2>/dev/null &");
# connecting to ncsvc using TCP
$socket = retry_port(4242);
print "TCP Connection to ncsvc process established.\n";
# sending first packet, got it from tcpdump
print "Sending handshake #1 packet... ";
$data = "\0\0\0\0\0\0\0\x64\x01\0\0\0\0\0\0\0\0\0\0\0";
hdump($data) if $debug;
print $socket "$data";
$socket->recv($data,2048);
# XXX - good idea to chek if it valid
print " [done]\n";
hdump($data) if $debug;
# second packet from tcpdump
# it contains logging level in the end:
# 0 LogLevel 0, 10 LogLevel 1, 20 LogLevel 2
# 30 LogLevel 3, 40 LogLevel 4, 50 LogLevel 5
# We are enabling full log if debug is enabled
$data= "\0\0\0\0\0\0\0\x7c\x01\0\0\0\x01\0\0\0\0\0\0\x10\0\0\0\0\0\x0a\0\0".
"\0\0\0\x04\0\0\0".($debug?"\x32":"\0");
print "Sending handshake #2 packet... ";
hdump($data) if $debug;
print $socket "$data";
$socket->recv($data,2048);
# XXX - good idea to chek if it is valid
print " [done]\n";
hdump($data) if $debug;
my $dsidline="DSSignInURL=/; DSID=$dsid; DSFirstAccess=$dfirst; DSLastAccess=$dlast; path=/; secure";
# Configuration packet
# XXX - no idea how it works on non default port
$data="\0\0\0\0\0\0\0\x66\x01\0\0\0\x01\0\0\0\0\0\0".pack("C*",(length($dhost)+1) + (length($dsidline)+1) + 57)."\0\xcb\0\0".
"\0".pack("C*",(length($dhost)+1) + (length($dsidline)+1) + 51)."\0\x01\0\0\0".pack("C*",length($dhost)+1).
$dhost.
"\0\0\x02\0\0\0".pack("C*",length($dsidline)+1).
$dsidline.
"\0\0\x0a\0\0\0".pack("C*",length($md5hash)+1).
$md5hash.
"\0";
print "Sending configuration packet...";
hdump($data) if $debug;
print $socket "$data";
$socket->recv($data,2048);
print " [done]\n";
hdump($data) if $debug;
# checking reply status
my @result = unpack('C*',$data);
my $status = sprintf("%02x",$result[7]);
# 0x6d seems to be "Connect ok" message
# exit on any other values
if($status ne "6d") {
printf("Status=$status\nAuthentication failed, exiting\n");
system("./ncsvc -K");
exit(1);
}
if($> == 0 && $dnsprotect) {
system("chattr +i /etc/resolv.conf");
}
} # ncsvc
if ($mode eq "ncui"){
print "Starting ncui, this should bring VPN up.\nPress CTRL+C anytime to terminate connection\n";
my $childpid;
local $SIG{'CHLD'} = 'IGNORE';
my @oldlist = get_tap_interfaces();
my $pid = fork();
if ($pid == 0) {
my $args = "./ncui\n-p\n\n".
"-h\n$dhost\n".
"-c\nDSSignInURL=/; DSID=$dsid; DSFirstAccess=$dfirst; DSLastAccess=$dlast; path=/; secure\n".
"-f\n$crtfile\n".
($debug?"-l\n5\n-L\n5\n":"");
$debug && print $args;
open(WRITEME, "|-", "./ncui") or die "Couldn't fork: $!\n";
print WRITEME $args;
close(WRITEME);
printf("ncui terminated\n");
exit 0;
}
my $exists = kill 0, $pid;
my $vpnint = get_new_tap_interface(\@oldlist, 15);
if ($vpnint eq '') {
printf("Error: new interface not found, check ncsvc logs\n");
INT_handler();
}
printf("Connection established, new interface: $vpnint\n");
if($exists && $> == 0 && $dnsprotect) {
system("chattr +i /etc/resolv.conf");
}
if(defined $script && -x $script){
print "Running user-defined script\n";
$ENV{'EVENT'}="up";
$ENV{'MODE'}=$mode;
$ENV{'INTERFACE'}=$vpnint;
system($script);
}
for (;;) {
$exists = kill SIGCHLD, $pid;
$debug && printf("\nChecking child: exists=$exists, $pid\n");
# printing RX/TX from /proc/net/dev
my $now = time - $start_t;
open STAT, "/proc/net/dev" or die $!;
while (<STAT>) {
if ($_ =~ m/^\s*${vpnint}:\s*(\d+)(?:\s+\d+){7}\s*(\d+)/) {
print "\r \r";
printf("Duration: %02d:%02d:%02d Sent: %s\tReceived: %s",
int($now / 3600), int(($now % 3600) / 60), int($now % 60),
format_bytes($2), format_bytes($1));
}
}
close(STAT);
if(!$exists) {
INT_handler();
}
sleep 2;
}
}
if($mode eq "ncsvc") {
# information query
$data = "\0\0\0\0\0\0\0\x6a\x01\0\0\0\x01\0\0\0\0\0\0\0";
hdump($data) if $debug;
print $socket "$data";
$socket->recv($data,2048);
hdump($data) if $debug;
if(defined $script && -x $script){
print "Running user-defined script\n";
$ENV{'EVENT'}="up";
$ENV{'MODE'}=$mode;
$ENV{'DNS1'}=inet_ntoa(pack("N",unpack('x[84]N',$data)));
$ENV{'DNS2'}=inet_ntoa(pack("N",unpack('x[94]N',$data)));
$ENV{'IP'}=inet_ntoa(pack("N",unpack('x[48]N',$data)));
$ENV{'GATEWAY'}=inet_ntoa(pack("N",unpack('x[68]N',$data)));
system($script);
}
print "IP: ".inet_ntoa(pack("N",unpack('x[48]N',$data))).
" Gateway: ".inet_ntoa(pack("N",unpack('x[68]N',$data))).
"\nDNS1: ".inet_ntoa(pack("N",unpack('x[84]N',$data))).
" DNS2: ".inet_ntoa(pack("N",unpack('x[94]N',$data))).
"\nConnected to $dhost, press CTRL+C to exit\n";
# disabling cursor
print "\e[?25l";
while ( 1 ) {
#stat query
$data="\0\0\0\0\0\0\0\x69\x01\0\0\0\x01\0\0\0\0\0\0\0";
print "\r \r";
hdump($data) if $debug;
print $socket "$data";
$socket->recv($data,2048);
if(!length($data) || !$socket->connected()) {
print "No response from ncsvc, closing connection\n";
INT_handler();
}
hdump($data) if $debug;
my $now = time - $start_t;
# printing RX/TX. This packet also contains encription type,
# compression and transport info, but length seems to be variable
printf("Duration: %02d:%02d:%02d Sent: %s\tReceived: %s",
int($now / 3600), int(($now % 3600) / 60), int($now % 60),
format_bytes(unpack('x[78]N',$data)), format_bytes(unpack('x[68]N',$data)));
sleep(1);
}
print "Exiting... Connect failed?\n";
$socket->close();
} # mode ncsvc loop
# for debugging
sub hdump {
my $offset = 0;
my(@array,$format);
foreach my $data (unpack("a16"x(length($_[0])/16)."a*",$_[0])) {
my($len)=length($data);
if ($len == 16) {
@array = unpack('N4', $data);
$format="0x%08x (%05d) %08x %08x %08x %08x %s\n";
} else {
@array = unpack('C*', $data);
$_ = sprintf "%2.2x", $_ for @array;
push(@array, ' ') while $len++ < 16;
$format="0x%08x (%05d)" .
" %s%s%s%s %s%s%s%s %s%s%s%s %s%s%s%s %s\n";
}
$data =~ tr/\0-\37\177-\377/./;
printf $format,$offset,$offset,@array,$data;
$offset += 16;
}
}
# handle ctrl+c to logout and kill ncsvc
sub INT_handler {
# de-register handlers
$SIG{'INT'} = 'DEFAULT';
$SIG{'TERM'} = 'DEFAULT';
$SIG{'HUP'} = 'DEFAULT';
# re-enabling cursor
print "\e[?25h";
if($> == 0 && $dnsprotect) {
system("chattr -i /etc/resolv.conf");
}
if($mode eq "ncsvc" && $socket->connected()){
print "\nSending disconnect packet\n";
# disconnect packet
$data="\0\0\0\0\0\0\0\x67\x01\0\0\0\x01\0\0\0\0\0\0\0";
hdump($data) if $debug;
print $socket "$data";
$socket->recv($data,2048);
print "Got reply\n";
# xxx - we are ignoring reply
hdump($data) if $debug;
}
print "Logging out...\n";
# do logout
$ua -> get ("https://$dhost:$dport/dana-na/auth/logout.cgi");
print "Killing ncsvc...\n";
# it is suid, so best is to use own api
system("./ncsvc -K");
# checking if resolv.conf correctly restored
if(-f "/etc/jnpr-nc-resolv.conf"){
print "restoring resolv.conf\n";
move("/etc/jnpr-nc-resolv.conf","/etc/resolv.conf");
}
# hostchecker cleanup
if($hostchecker) {
print "Killing tncc.jar...\n";
kill 'KILL', $tncc_pid if $tncc_pid;
unlink $narport_file if -e $narport_file;
}
if(defined $script && -x $script){
print "Running user-defined script\n";
$ENV{'EVENT'}="down";
$ENV{'MODE'}=$mode;
system($script);
}
print "Exiting\n";
exit(0);
}
sub parse_config_file {
my $Name,my $Value; my $Config; my $File;
($File, $Config) = @_;
if (!open (CONFIG, "$File")) {
print "ERROR: Config file not found : $File\n";
exit(1);
}
while (<CONFIG>) {
my $config_line=$_;
chomp ($config_line); # Get rid of the trailling \n
$config_line =~ s/^\s*//; # Remove spaces at the start of the line
$config_line =~ s/\s*$//; # Remove spaces at the end of the line
if ( ($config_line !~ /^#/) && ($config_line ne "") ){ # Ignore lines starting with # and blank lines
($Name, $Value) = split (/=/, $config_line); # Split each line into name value pairs
$$Config{$Name} = $Value; # Create a hash of the name value pairs
}
}
close(CONFIG);
}
sub run_pw_helper {
my $pw_script="";
($pw_script) = @_;
if (-x $pw_script){
$password=`$pw_script`;
chomp $password
}
return $password;
}
sub tncc_start {
my $body="";
($body) = @_;
my @lines = split "\n", $body;
my %params = ();
# read applet params from the page
foreach my $line (@lines) {
if ( $line =~ /NAME="([^"]+)"\s+VALUE="([^"]+)"/){
$params{ $1 } = $2;
}
}
# enable tncc debug log
if($debug && defined($params{'Parameter0'})){
$params{'Parameter0'} =~ s/logging=0/logging=1/;
}
# FIXME add some param validation
# create directory for logs if not exists
mkpath($supportdir."/network_connect") if !-e $supportdir."/network_connect";
# just in case. Should we also kill all tncc.jar processes?
unlink $narport_file;
# users reported at least 2 different class names.
# It is not possible to fetch it from web, because it is hardcoded in hclauncer applet
my @jclasses = ("net.juniper.tnc.NARPlatform.linux.LinuxHttpNAR","net.juniper.tnc.HttpNAR.HttpNAR");
my $jclass; my $found = '';
foreach $jclass (@jclasses) {
my $chkpath = $jclass;
$chkpath =~ s/\./\//g;
$chkpath.=".class";
system("unzip -t ./tncc.jar $chkpath >/dev/null 2>&1");
$found = $jclass if $? == 0;
last if $? == 0;
}
if($found eq ""){
print "Unable to find correct start class in the tncc.jar, please report problem to developer\n";
exit 1;
}
my $pid = fork();
if ($pid == 0) {
my @cmd = ("java");
push @cmd, "-classpath", "./tncc.jar";
push @cmd, $found; # class name, could be different
if($debug) {
push @cmd, "log_level", 10;
}
else {
push @cmd, "log_level", defined($params{'log_level'})?$params{'log_level'}:2;
}
push @cmd, "postRetries", defined($params{'postRetries'})?$params{'postRetries'}:6;
push @cmd, "ivehost", defined($params{'ivehost'})?$params{'ivehost'}:$dhost;
push @cmd, "Parameter0", defined($params{'Parameter0'})?$params{'Parameter0'}:"";
push @cmd, "locale", defined($params{'locale'})?$params{'locale'}:"en";
push @cmd, "home_dir", $ENV{'HOME'};
push @cmd, "user_agent", defined($params{'HTTP_USER_AGENT'})?$params{'HTTP_USER_AGENT'}:"";
exec(@cmd);
exit; # should never be reached
}
# wait up to 10 seconds for narport.txt
for(my $i = 0; $i < 10; $i++) {
last if(-e $narport_file);
sleep 1;
}
die("Unable to start tncc.jar process") if !-e $narport_file;
return $pid;
}
sub retry_port {
my $port = shift;
my $retry = 10;
while ( $retry-- ) {
my $socket = IO::Socket::INET->new(
Proto => 'tcp',
PeerAddr => '127.0.0.1',
PeerPort => $port,
);
return $socket if $socket;
sleep 1;
}
die "Error connecting to 127.0.0.1:$port : $!";
}
sub read_input {
my $param = shift;
my $is_passwd = 0;
my $input = "";
my $pkey="";
# Print '*' instead of the real characters when "password" is provided as argument
if (defined $param && $param eq "password") {
$is_passwd = 1;
}
# Start reading the keys
ReadMode(4); # Disable the control keys
while(ord($pkey = ReadKey(0)) != 10)
# This will continue until the Enter key is pressed (decimal value of 10)
{
# For all value of ord($key) see http://www.asciitable.com/
if(ord($pkey) == 127 || ord($pkey) == 8) {
# DEL/Backspace was pressed
# 1. Remove the last char from the password
# 2. move the cursor back by one, print a blank character, move the cursor back by one
if (length($input)) {
print "\b \b";
}
chop($input);
} elsif(ord($pkey) < 32) {
# Do nothing with these control characters
} else {
$input = $input.$pkey;
if ($is_passwd == 1) {
print "*";
} else {
print $pkey;
}
}
}
ReadMode(0); # Reset the terminal once we are done
return $input;
}
sub print_help {
print "Usage: $0 [--config <filename>] [-h]\n".
"\t-c, --config configuration file, default jvpn.ini\n".
"\t-h, --help print this text\n";
exit 0;
}
# i don`t want CPAN hell
sub format_bytes
{
my ($size) = @_;
if ($size > 1099511627776) # TiB: 1024 GiB
{
return sprintf("%.2f TiB", $size / 1099511627776);
}
elsif ($size > 1073741824) # GiB: 1024 MiB
{
return sprintf("%.2f GiB", $size / 1073741824);
}
elsif ($size > 1048576) # MiB: 1024 KiB
{
return sprintf("%.2f MiB", $size / 1048576);
}
elsif ($size > 1024) # KiB: 1024 B
{
return sprintf("%.2f KiB", $size / 1024);
}
else # B
{
return sprintf("%.2f B", $size);
}
}
sub get_tap_interfaces
{
my @intlist;
open FILE, "/proc/net/dev" or die $!;
while (my $line = <FILE>){
if($line =~ /^\s*(tun[0-9]+):/) {
push(@intlist, $1);
}
}
return @intlist;
}
sub get_new_tap_interface
{
my (@newints, $i);
my ($oldint, $timeout) = @_;
for($i = 0; $i < $timeout; $i++) {
@newints = get_tap_interfaces();
foreach my $tunint (@newints) {
if ( !grep { $_ eq $tunint} @$oldint ) {
return $tunint;
}
}
sleep(1);
}
return '';
}