-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdping.pl
executable file
·104 lines (85 loc) · 2.45 KB
/
dping.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
#!/usr/bin/perl -W
use strict;
# ####### config ####### #
my $sound = '/usr/share/sounds/freedesktop/stereo/message.oga';
my $lineMark = 25;
my $ping = '/bin/ping';
my $date = '/bin/date';
my $ping_pid = 0;
my $play;
# ####### SUBS ####### #
sub printStampPrefix() {
my ($S, $M, $H) = localtime(time);
printf "\r%02d:%02d.%02d ",$H,$M,$S;
}
sub tskkill() {
if ( $ping_pid != 0 ) {
system "kill -ALRM $ping_pid";
}
}
# ####### setup ####### #
if ( $ARGV[0] =~ /-s/ && $ARGV[1] !~ /\d+/ ){
shift;
undef $play;
print "[>] Silence mode\n";
} else {
print "[i] Use '-s' for silent mode\n";
if ( ! -e $sound ){
die "[!] Can't find the sound file! ($sound): $!\n";
}
$play = `which ogg123 2>/dev/null`;
if ( $? == 0 ){
chomp($play);
$play = $play.' --quiet ';
} else {
die "[!] Can't find a sound player!\n";
}
}
# ####### ping Wrapper ####### #
$ping_pid = open(NET, "$ping @ARGV |") || die "[!] Cannot fork! $!\n";
my ($lineCounter, $expected, $ttl) = (0, 1, 0);
$SIG{INT} = \&tskkill; # CATCH: CTRL-C
while (<NET>) {
printStampPrefix();
if ( $_ =~ /\d+ bytes from .* (icmp_\w+=(\d+) ttl=(\d+) time\=\S+ .*)/ ){
my $line = $1;
my $note = '';
# == Expected check ==
# $note .= " \t[DBG seq: got=$2 exp=$expected]"; # DEBUG
my $got = $2;
if ( $got > $expected ){
my $missed = $got-$expected;
my $plural = '';
$plural = 's' if $missed > 1;
$note .= "\t-- ".$missed." packet${plural} MISSED --";
$expected = $got+1;
}
elsif ( $got == $expected ){ # Everything is OK - packet came in sequence
$expected++;
}
# elsif ( $got == ($expected -1) ){ $note .= "\t-- DUP --"; }
elsif ( $got < ($expected -1) ) {
$note .= "\t-- Late-comer packet (".($got-$expected).") --";
}
# == TTL check ==
if ( $ttl != $3 ) {
$note .= "\t-- TTL CHANGE --" if $ttl;
$ttl = $3;
}
# == Display ==
my $icmp_req = sprintf("%-4d",$got);
$line =~ s/(icmp_\w+=)\d+/$1$icmp_req/;
printf " %s%s\n",$line,$note;
system "$play $sound &" if $play;
} else {
print
}
if ( $lineCounter >= $lineMark ){
print "\r[i] -- $lineMark mark --\n";
$lineCounter=0;
}
$lineCounter++;
}
close(NET) || print "RET: $?\n";
exit $?;
#EOF