-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnet.cpp
600 lines (439 loc) · 12.8 KB
/
net.cpp
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
//*****************************************************************************
// FILE: net.cpp
// derived from WinMTRNet.cpp (WinMTR 0.8)
//
// Copyleft (C) 2000-2002, Vasile Laurentiu Stanimir ( [email protected] )
// Modified 2009, Steve Harvey ([email protected])
//
//*****************************************************************************
#include "global.h"
#include "net.h"
#include <iostream>
void DnsResolverThread(void *p);
int WinMTRNet::CalcDeltatime() {
float waittime = WaitTime / numhosts;
return (int)(1000000 * waittime);
}
unsigned short WinMTRNet::Checksum(unsigned short *lpBuf, int nLen) {
register long lSum = 0L;
while (nLen > 0) {
lSum += *(lpBuf++);
nLen -= 2;
}
lSum = (lSum & 0xffff) + (lSum>>16);
lSum += (lSum >> 16);
return (unsigned short)(~lSum);
}
/** Allocate a new entry in the sequence table.
*/
int WinMTRNet::GetNewSequence(int index) {
static unsigned int next_sequence = 0;
int seq;
seq = next_sequence++;
if (next_sequence >= MaxSequence)
next_sequence = 0;
sequence[seq].index = index;
sequence[seq].transit = 1;
sequence[seq].saved_seq = ++host[index].xmit;
memset(&sequence[seq].time, 0, sizeof(sequence[seq].time));
host[index].transit = 1;
SaveXmit(index);
return seq;
}
/** Send a single ICMP ping probe packet. The packetsize is forced into the
* acceptable range. The sequence number of the packet is set to the index
* of the entry in the sequence table in which is stored the current time.
* The ICMP ID is set to the current process ID.
*/
void WinMTRNet::SendQuery(int index) {
char packet[MAXPACKET];
struct ICMPHeader *icmp;
struct timespec time_in_ns;
if (packetsize < MINPACKET) packetsize = MINPACKET;
if (packetsize > MAXPACKET) packetsize = MAXPACKET;
// FIXME: use a locally scoped copy of packetsize from here on (BUG)
packetsize -= IP_HEADER_LENGTH;
memset(packet, 0, packetsize);
icmp = (struct ICMPHeader *)packet;
int ttl = index+1;
if (setsockopt(sendsock, IPPROTO_IP, IP_TTL, (const char *)&ttl, sizeof(ttl)) < 0) {
wmtrdlg->errMsg("error setsockopt");
exit(ES_SETSOCKOPT_FAIL);
}
icmp->type = ICMP_ECHO;
icmp->id = getpid();
icmp->sequence = GetNewSequence(index);
icmp->checksum = Checksum((unsigned short*)icmp, packetsize);
// anto reverted this
gettimeofday (&(sequence[icmp->sequence].time), NULL);
//clock_gettime (CLOCK_MONOTONIC, &time_in_ns);
sequence[icmp->sequence].time.tv_sec = time_in_ns.tv_sec;
sequence[icmp->sequence].time.tv_usec = time_in_ns.tv_nsec / 1000;
sendto(sendsock, packet, packetsize , 0,(struct sockaddr *)&remoteaddress,
sizeof(remoteaddress));
}
void WinMTRNet::ProcessPing(int seq, __int32 addr, struct timeval now) {
int index;
int totusec;
if (seq < 0 || seq >= MaxSequence)
return;
// ignore duplicate packets
if (!sequence[seq].transit)
return;
sequence[seq].transit = 0;
index = sequence[seq].index;
totusec = (now.tv_sec - sequence[seq].time.tv_sec) * 1000000 +
(now.tv_usec - sequence[seq].time.tv_usec);
if (host[index].addr == 0) {
host[index].addr = addr;
} else if ( host[index].addr != addr ) {
host[index].inconsist++;
}
if (host[index].returned <= 0) {
host[index].best = host[index].worst = totusec;
}
host[index].last = totusec;
if (totusec < host[index].best)
host[index].best = totusec;
if (totusec > host[index].worst)
host[index].worst = totusec;
host[index].total += totusec;
host[index].returned++;
host[index].transit = 0;
SaveReturn(index, sequence[seq].saved_seq, totusec);
}
void WinMTRNet::ProcessReturn() {
char packet[2048];
struct sockaddr_in fromaddr;
#if defined (linux) || defined(__APPLE__)
socklen_t fromaddrsize;
#else
int fromaddrsize;
#endif
int num;
struct ICMPHeader *header;
struct timeval now;
struct timespec time_in_ns;
// anto reverted this, in order to remove the definition error and test
gettimeofday(&now, NULL);
// ANTO commented this
//clock_gettime (CLOCK_MONOTONIC, &time_in_ns);
now.tv_sec = time_in_ns.tv_sec;
now.tv_usec = time_in_ns.tv_nsec / 1000;
fromaddrsize = sizeof(fromaddr);
num = recvfrom(recvsock, packet, 2048, 0,
(struct sockaddr *)&fromaddr, &fromaddrsize);
if (num < IP_HEADER_LENGTH + sizeof(struct ICMPHeader))
return;
header = (struct ICMPHeader *)(packet + IP_HEADER_LENGTH);
if (header->type == ICMP_ECHOREPLY) {
if (header->id != (__int16)getpid())
return;
ProcessPing(header->sequence, fromaddr.sin_addr.s_addr, now);
} else if (header->type == ICMP_TIME_EXCEEDED) {
if (num < IP_HEADER_LENGTH + sizeof(struct ICMPHeader) +
IP_HEADER_LENGTH + sizeof(struct ICMPHeader))
return;
header = (struct ICMPHeader *)(packet + IP_HEADER_LENGTH +
sizeof(struct ICMPHeader) + IP_HEADER_LENGTH);
if (header->id != (__int16)getpid())
return;
ProcessPing(header->sequence, fromaddr.sin_addr.s_addr, now);
} else if (header->type == ICMP_HOST_UNREACHABLE) {
int c = header->code;
header = (struct ICMPHeader *)(packet + IP_HEADER_LENGTH +
sizeof(struct ICMPHeader) + IP_HEADER_LENGTH);
if (header->id != (__int16)getpid())
return;
int index = sequence[header->sequence].index;
// still want the router issuing these... host[index].addr = 0;
ProcessPing(header->sequence, fromaddr.sin_addr.s_addr, now);
switch (c) {
case 0 :
SetName(index,"Network Unreachable");
break;
case 1 :
SetName(index,"Host Unreachable");
break;
case 2:
SetName(index,"Protocol unreachable");
break;
case 3:
SetName(index,"Port unreachable");
break;
case 4:
SetName(index,"Fragmentation needed but the DF bit was set");
break;
case 5:
SetName(index,"Source route failed");
break;
case 6:
SetName(index,"Destination network unknown");
break;
case 7:
SetName(index,"Destination host unknown");
break;
case 8:
SetName(index,"Source host isolated");
break;
case 9:
SetName(index,"Destination network administratively prohibited");
break;
case 10:
SetName(index,"Destination host administratively prohibited");
break;
case 11:
SetName(index,"Network unreachable for this type of service");
break;
case 12:
SetName(index,"Host unreachable for this type of service");
break;
case 13:
SetName(index,"Communication administratively prohibited by filtering");
break;
case 14:
SetName(index,"Host precedence violation");
break;
case 15:
SetName(index,"Precedence cutoff in effect ");
break;
default:
char s[1024];
sprintf(s, "ICMP_HOST_UNREACHABLE(%d)", c);
SetName(index, s);
break;
}
}
}
int WinMTRNet::GetAddr(int at) {
return ntohl(host[at].addr);
}
const char * WinMTRNet::GetConsistency(int at) {
return host[at].inconsist ? "i" : "";
}
char * WinMTRNet::FmtAddr(int at, char *n) {
int addr = GetAddr(at);
sprintf(n, "%d.%d.%d.%d",
(addr >> 24) & 0xff,
(addr >> 16) & 0xff,
(addr >> 8) & 0xff,
addr & 0xff
);
if (addr==0)
strcpy(n,"*");
return n;
}
char * WinMTRNet::GetName(int at, char *n) {
if (!strcmp(host[at].name, "")) {
FmtAddr(at, n);
} else {
strcpy(n, host[at].name);
}
return n;
}
void WinMTRNet::SetName(int at, char *n) {
strncpy(host[at].name, n, 255);
}
int WinMTRNet::GetPercent(int at) {
if ((host[at].xmit - host[at].transit) == 0)
return 0;
return 100 - (100 * host[at].returned / (host[at].xmit - host[at].transit));
}
int WinMTRNet::GetLast(int at) {
return host[at].last;
}
int WinMTRNet::GetBest(int at) {
return host[at].best;
}
int WinMTRNet::GetWorst(int at) {
return host[at].worst;
}
int WinMTRNet::GetAvg(int at) {
if (host[at].returned == 0)
return 0;
return host[at].total / host[at].returned;
}
int WinMTRNet::GetMax() {
int at;
int max;
max = 0;
for (at = 0; at < MaxHost-2; at++) {
if ((unsigned)host[at].addr == remoteaddress.sin_addr.s_addr) {
return at + 1;
} else if (host[at].addr != 0) {
max = at + 2;
}
}
return max;
}
int WinMTRNet::GetReturned(int at) {
return host[at].returned;
}
int WinMTRNet::GetXmit(int at) {
return host[at].xmit;
}
int WinMTRNet::GetTransit(int at) {
return host[at].transit;
}
void WinMTRNet::EndTransit() {
int at;
for (at = 0; at < MaxHost; at++) {
host[at].transit = 0;
}
}
/** Send a ping in the current batch, and then decide if we are at
* the end of the batch. Each batch consists of a run of pings
* with ascending Time To Live (TTL) values, and goes until there
* is heuristic evidence that the destination host is going to be reached,
* or that a suitably large run of non-responses will have been
* encountered, or the TTL value has reached the maximum limit.
*/
int WinMTRNet::SendBatch() {
int n_unknown, i;
SendQuery(batch_at);
n_unknown = 0;
for (i=0;i<batch_at;i++) {
if (host[i].addr == 0)
n_unknown++;
if ((unsigned)host[i].addr == remoteaddress.sin_addr.s_addr) {
full_loop = TRUE;
n_unknown = 100; /* Make sure we drop into "we should restart" */
}
}
if (((unsigned)host[batch_at].addr == remoteaddress.sin_addr.s_addr) ||
(n_unknown > MAX_UNKNOWN_HOSTS) ||
(batch_at >= MaxHost-2)) {
full_loop = TRUE;
numhosts = batch_at+1;
batch_at = 0;
return 1;
}
batch_at++;
return 0;
}
int WinMTRNet::Preopen(WinMTRDialog *wp) {
wmtrdlg = wp;
packetsize = wmtrdlg->pingsize;
WaitTime = (float)wmtrdlg->interval ;
batch_at = 0;
numhosts = 10;
sendsock = socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
if (sendsock < 0)
return -1;
#ifdef SEPARATE_SR_SOCKETS
recvsock = socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
if(recvsock < 0)
return -1;
#else
recvsock = sendsock;
#endif
return 0;
}
int WinMTRNet::Open(int addr, int laddr) {
Reset();
remoteaddress.sin_family = AF_INET;
remoteaddress.sin_addr.s_addr = addr;
localaddress.sin_family = AF_INET;
localaddress.sin_addr.s_addr = laddr;
#ifdef WantDNSResolution
if (wmtrdlg->useDNS)
_beginthread(DnsResolverThread, 0, this);
#endif
return 0;
}
void WinMTRNet::Reset() {
int at;
int i;
batch_at = 0;
numhosts = 10;
full_loop = FALSE;
for (at = 0; at < MaxHost; at++) {
strcpy(host[at].name,"");
host[at].addr = 0;
host[at].inconsist = 0;
host[at].xmit = 0;
host[at].transit = 0;
host[at].returned = 0;
host[at].total = 0;
host[at].best = 0;
host[at].worst = 0;
for (i=0; i<SAVED_PINGS; i++) {
host[at].saved[i] = -2; /* unsent */
}
}
for (at = 0; at < MaxSequence; at++) {
sequence[at].transit = 0;
}
}
void WinMTRNet::Close() {
//std::cout << "net: closing socket " << sendsock << std::endl;
skt_close(sendsock);
#ifdef SEPARATE_SR_SOCKETS
skt_close(recvsock);
#endif
}
void WinMTRNet::skt_close(int skt) {
#ifdef WIN32
closesocket(skt);
#else
close(skt);
#endif
}
int WinMTRNet::GetWaitFd() {
return recvsock;
}
int* WinMTRNet::GetSavedPings(int at) {
return host[at].saved;
}
void WinMTRNet::SaveXmit(int at) {
int tmp[SAVED_PINGS];
memcpy(tmp, &host[at].saved[1], (SAVED_PINGS-1)*sizeof(int));
memcpy(host[at].saved, tmp, (SAVED_PINGS-1)*sizeof(int));
host[at].saved[SAVED_PINGS-1] = -1;
}
void WinMTRNet::SaveReturn(int at, int seq, int ms) {
int idx;
idx = SAVED_PINGS - (host[at].xmit - seq) - 1;
if (idx < 0) {
return;
}
host[at].saved[idx] = ms;
}
#ifdef WantDNSResolution
void DnsResolverThread(void *p) {
WinMTRNet* wn = (WinMTRNet *)(p);
int resolved[MaxHost];
for (int i=0;i<MaxHost;i++)
resolved[i]=0;
int all = 0;
while (wn->wmtrdlg->start && !(wn->FullLoop() && all)) {
Sleep(100);
all = 0;
for (int i=0 ;i<wn->GetMax();i++) {
if (!resolved[i]) {
all = 1;
struct hostent *phent ;
char buf[20];
int addr = wn->GetAddr(i);
if (addr != 0) {
sprintf(buf, "%d.%d.%d.%d",
(addr >> 24) & 0xff,
(addr >> 16) & 0xff,
(addr >> 8) & 0xff,
addr & 0xff
);
int haddr = htonl(addr);
phent = gethostbyaddr((const char*)&haddr, sizeof(int), AF_INET);
if (phent) {
wn->SetName(i, phent->h_name);
resolved[i] = 1;
} else {
wn->SetName(i, buf);
}
}
}
}
}
_endthread();
}
#endif