This repository was archived by the owner on Aug 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpinger.py
167 lines (126 loc) · 3.92 KB
/
pinger.py
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
import select
import socket
import struct
import sys
import os
import time
icmp_echo_request = 8
icmp_packet_size = 16
timer = time.time
def checksum(string):
count_to = (int(len(string) // 2)) * 2
c_sum = 0
count = 0
lo_byte = 0
hi_byte = 0
while count < count_to:
if (sys.byteorder == "little"):
lo_byte = string[count]
hi_byte = string[count + 1]
else:
lo_byte = string[count + 1]
hi_byte = string[count]
try:
c_sum = c_sum + (hi_byte * 256 + lo_byte)
except:
c_sum = c_sum + (ord(hi_byte) * 256 + ord(lo_byte))
count += 2
if count_to < len(string):
lo_byte = string[len(string) - 1]
try:
c_sum += lo_byte
except:
c_sum += ord(lo_byte)
c_sum &= 0xffffffff
c_sum = (c_sum >> 16) + (c_sum & 0xffff)
c_sum += (c_sum >> 16)
answer = ~c_sum & 0xffff
answer = socket.htons(answer)
return answer
def construct_packet(my_id, seq):
# Header is type (8), code (8),checksum (16), id (16), sequence (16)
my_checksum = 0
header = struct.pack(
"!BBHHH", icmp_echo_request, 0, my_checksum, my_id, seq
)
data = struct.pack(
"!d", timer()
)
my_checksum = checksum(header + data)
header = struct.pack(
"!BBHHH", icmp_echo_request, 0, my_checksum, my_id, seq
)
return header + data
def send(my_socket, dest, my_id, seq):
packet = construct_packet(my_id, seq)
send_time = timer()
my_socket.sendto(packet, (dest, 1))
return send_time
def receive(my_socket, my_id, time_out):
time_left = time_out / 1000
while True:
select_start = timer()
inputready, outputready, exceptready = select.select([my_socket], [], [], time_left)
select_duration = (timer() - select_start)
if not inputready: # Timeout
return 0, 0, None
packet, address = my_socket.recvfrom(2048)
icmp_header = struct.unpack("!BBHHH", packet[20:28])
receive_time = timer()
if icmp_header[3] == my_id:
packet_size = len(packet) - 28
return (receive_time - select_start), packet_size, icmp_header
time_left = time_left - select_duration
if time_left <= 0:
return 0, 0, None
def do_one(dest, my_id, seq, time_out):
my_socket = make_socket()
send_time = send(my_socket, dest, my_id, seq)
if not send_time:
0, 0, None
result = receive(my_socket, my_id, time_out)
my_socket.close()
return result
def ping(host, times = 1, time_out=1000):
dest = socket.gethostbyname(host)
my_id = os.getpid() & 0xFFFF
transmitted = 0
received = 0
lost = 0
mn = None
mx = None
total = None
a = None
print(f"PING {host} ({dest}): {icmp_packet_size} data bytes")
for i in range(0, times):
result = do_one(dest, my_id, i, time_out)
transmitted += 1
if result[2] is not None:
received += 1
if not mn or result[0] < mn:
mn = result[0]
if not mx or result[0] > mx:
mx = result[0]
if not total:
total = result[0]
else:
total += result[0]
print(f"{result[1]} bytes from {dest}: icmp_seq={i}")
else:
lost += 1
print("timed out")
time.sleep(1) # one second
if total is not None:
a = total / received
else:
mn = "na"
a = "na"
mx = "na"
print(f"--- {host} ping statistics ---")
print(f"{transmitted} packets transmitted, {received} packets received, {lost / transmitted:.3g} % packet loss")
print(f"round-trip min/avg/max = {mn:.3g}/{a:.3g}/{mx:.3g} ms")
def make_socket():
return socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_ICMP)
ping("localhost", 4)
print(" ")
ping("google.com", 4)