-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtt.c
409 lines (331 loc) · 14.1 KB
/
rtt.c
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
#define _GNU_SOURCE
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdbool.h>
#include <signal.h>
#include <fcntl.h>
#include <time.h>
#include <pthread.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/epoll.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/ip6.h>
#include <netinet/ip_icmp.h>
#include <netinet/icmp6.h>
#include <netdb.h>
#include <errno.h>
#define NUM_MAX_EVENTS 10 // maximum triggered events received from epoll_wait
#define EPOLL_TIMEOUT 30000 // maximum timeout for epoll_wait in milliseconds
#define MAX_RETRIES 1000 // Maximum number of retries for open file socket
int n_complete, n_retries;
int sigint_rcvd = false;
struct host_info {
bool valid;
char ip[41];
bool isIPv6;
double RTT[3]; // in milliseconds
short int n_rtt_rcvd;
};
struct pthread_args {
struct host_info * hosts;
size_t num_hosts;
int epoll_fd;
};
void err_exit(const char * err_msg) {
perror(err_msg);
exit(EXIT_FAILURE);
}
void sigint_handler(int sig) {
sigint_rcvd = true;
}
unsigned short checksum(void *b, int len) {
unsigned short *buf = b;
unsigned int sum=0;
unsigned short result;
// 16 bit words... sizeof(unsigned short) = 2UL
for (sum = 0; len > 1; len -= 2)
sum += *buf++;
if (len == 1)
sum += *(unsigned char*)buf;
sum = (sum >> 16) + (sum & 0xFFFF);
sum += (sum >> 16);
result = ~sum;
return result;
}
int send_v4(char ip[41], int epoll_fd) {
int sock_fd = socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
if (sock_fd == -1 && errno == EACCES)
err_exit("Permission denied! Try using 'sudo'. Exiting...\n");
while (sock_fd == -1 && errno == EMFILE && n_retries > 0) {
sleep(1);
sock_fd = socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
--n_retries;
}
if (n_retries <= 0)
return -1;
int sock_flags = fcntl(sock_fd, F_GETFL, 0);
fcntl(sock_fd, F_SETFL, sock_flags | O_NONBLOCK);
int ttl = 32;
if (setsockopt(sock_fd, IPPROTO_IP, IP_TTL, &ttl, sizeof(ttl)) == -1)
err_exit("Error in setting TTL option. Exiting...\n");
struct sockaddr_in cli_addr = {0};
// ICMP has no ports
cli_addr.sin_family = AF_INET;
if (inet_pton(AF_INET, ip, &cli_addr.sin_addr) == 0)
err_exit("Invalid IPv4 address. Exiting...\n");
connect(sock_fd, (struct sockaddr *) &cli_addr, sizeof(struct sockaddr));
struct epoll_event event;
event.events = EPOLLIN;
event.data.fd = sock_fd;
if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, sock_fd, &event) == -1) {
close(epoll_fd);
err_exit("Error in adding socket to epoll. Try using 'sudo'. Exiting...\n");
}
struct timespec send_time;
size_t icmp_payload_len = sizeof(struct icmphdr) + sizeof(struct timespec);
void * icmp_payload = malloc(icmp_payload_len);
memset(icmp_payload, 0, icmp_payload_len);
struct icmphdr * icmp = (struct icmphdr *) icmp_payload;
icmp->type = ICMP_ECHO;
icmp->code = 0;
icmp->un.echo.id = sock_fd;
icmp->un.echo.sequence = 0;
clock_gettime(CLOCK_MONOTONIC, &send_time);
memcpy(icmp + 1, &send_time, sizeof(struct timespec)); // Set send time
icmp->checksum = checksum(icmp_payload, icmp_payload_len);
sendto(sock_fd, icmp_payload, icmp_payload_len, 0, (struct sockaddr *) &cli_addr, sizeof(struct sockaddr));
icmp->un.echo.sequence = 1;
icmp->checksum = 0;
clock_gettime(CLOCK_MONOTONIC, &send_time);
memcpy(icmp + 1, &send_time, sizeof(struct timespec)); // Set send time
icmp->checksum = checksum(icmp_payload, icmp_payload_len);
sendto(sock_fd, icmp_payload, icmp_payload_len, 0, (struct sockaddr *) &cli_addr, sizeof(struct sockaddr));
icmp->un.echo.sequence = 2;
icmp->checksum = 0;
clock_gettime(CLOCK_MONOTONIC, &send_time);
memcpy(icmp + 1, &send_time, sizeof(struct timespec)); // Set send time
icmp->checksum = checksum(icmp_payload, icmp_payload_len);
sendto(sock_fd, icmp_payload, icmp_payload_len, 0, (struct sockaddr *) &cli_addr, sizeof(struct sockaddr));
free(icmp_payload);
return sock_fd;
}
int send_v6(char ip[41], int epoll_fd) {
int sock_fd = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6);
if (sock_fd == -1 && errno == EACCES)
err_exit("Permission denied! Try using 'sudo'. Exiting...\n");
while (sock_fd == -1 && errno == EMFILE && n_retries > 0) {
sleep(1);
sock_fd = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6);
--n_retries;
}
if (n_retries <= 0)
return -1;
int sock_flags = fcntl(sock_fd, F_GETFL, 0);
fcntl(sock_fd, F_SETFL, sock_flags | O_NONBLOCK);
struct sockaddr_in6 cli_addr = {0};
// ICMP has no ports
cli_addr.sin6_family = AF_INET6;
if (inet_pton(AF_INET6, ip, &cli_addr.sin6_addr) == 0)
err_exit("Invalid IPv6 address. Exiting...\n");
connect(sock_fd, (struct sockaddr_in6 *) &cli_addr, sizeof(struct sockaddr_in6));
struct epoll_event event;
event.events = EPOLLIN;
event.data.fd = sock_fd;
if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, sock_fd, &event) == -1) {
close(epoll_fd);
err_exit("Error in adding socket to epoll. Try using 'sudo'. Exiting...\n");
}
struct timespec send_time;
size_t icmp_payload_len = sizeof(struct icmp6_hdr) + sizeof(struct timespec);
void * icmp_payload = malloc(icmp_payload_len);
memset(icmp_payload, 0, icmp_payload_len);
struct icmp6_hdr * icmp6 = (struct icmp6_hdr *) icmp_payload;
icmp6->icmp6_type = ICMP6_ECHO_REQUEST;
icmp6->icmp6_code = 0;
icmp6->icmp6_id = sock_fd;
icmp6->icmp6_seq = 0;
clock_gettime(CLOCK_MONOTONIC, &send_time);
memcpy(icmp6 + 1, &send_time, sizeof(struct timespec)); // Set send time
// icmp6->icmp6_cksum = htons(checksum(icmp_payload, icmp_payload_len));
sendto(sock_fd, icmp_payload, icmp_payload_len, 0, (struct sockaddr_in6 *) &cli_addr, sizeof(struct sockaddr_in6));
icmp6->icmp6_seq = 1;
// icmp6->icmp6_cksum = htons(0);
clock_gettime(CLOCK_MONOTONIC, &send_time);
memcpy(icmp6 + 1, &send_time, sizeof(struct timespec)); // Set send time
// icmp6->icmp6_cksum = htons(checksum(icmp_payload, icmp_payload_len));
sendto(sock_fd, icmp_payload, icmp_payload_len, 0, (struct sockaddr_in6 *) &cli_addr, sizeof(struct sockaddr_in6));
icmp6->icmp6_seq = 2;
// icmp6->icmp6_cksum = htons(0);
clock_gettime(CLOCK_MONOTONIC, &send_time);
memcpy(icmp6 + 1, &send_time, sizeof(struct timespec)); // Set send time
// icmp6->icmp6_cksum = htons(checksum(icmp_payload, icmp_payload_len));
sendto(sock_fd, icmp_payload, icmp_payload_len, 0, (struct sockaddr_in6 *) &cli_addr, sizeof(struct sockaddr_in6));
free(icmp_payload);
return sock_fd;
}
void * receive_reply_func(void * args) {
// Waiting for ICMP echo replies from all IPs using epoll
// Copy pthread args
struct host_info * hosts = ((struct pthread_args *)args)->hosts;
size_t num_hosts = ((struct pthread_args *)args)->num_hosts;
int epoll_fd = ((struct pthread_args *)args)->epoll_fd;
size_t hosts_len = (num_hosts+10 < 1024)? num_hosts+10 : 1024;
struct epoll_event trig_events[NUM_MAX_EVENTS];
struct timespec recv_time, send_time;
size_t icmp_payload_len = sizeof(struct timespec) +
((sizeof(struct icmphdr) > sizeof(struct icmp6_hdr)) ? sizeof(struct icmphdr) : sizeof(struct icmp6_hdr));
void * ip_icmp_payload = malloc(sizeof(struct iphdr) + icmp_payload_len);
void * icmp_payload;
bool run_flag = true;
while (run_flag) {
if (sigint_rcvd) {
printf("\nNumber of IPs pinged: %d\n", n_complete);
free(ip_icmp_payload);
sigint_rcvd = false;
return NULL;
}
// Create a new thread to handle searching and updating the hosts data
int event_count = epoll_wait(epoll_fd, trig_events, NUM_MAX_EVENTS, 10000);
clock_gettime(CLOCK_MONOTONIC, &recv_time); // get receive time
if (event_count == 0) {
printf("\nMaximum epoll wait timeout reached!\n");
for (int i = 0; i < hosts_len; ++i) {
if (hosts[i].valid) {
hosts[i].valid = false;
close(i);
}
}
continue;
}
else if (event_count == -1)
err_exit("Error in epoll wait. Try using 'sudo'. Exiting...\n");
for (int i = 0; i < event_count; ++i) {
struct epoll_event * event = &(trig_events[i]);
if (!hosts[event->data.fd].isIPv6) {
// Receive IPv4 ICMP echo reply
recvfrom(event->data.fd, ip_icmp_payload, sizeof(struct iphdr) + icmp_payload_len, 0, NULL, NULL);
icmp_payload = ((struct iphdr *) ip_icmp_payload) + 1;
if (((struct icmphdr *) icmp_payload)->type == ICMP_ECHOREPLY) {
short int rtt_idx = ((struct icmphdr *) icmp_payload)->un.echo.sequence;
send_time = *((struct timespec *) (((struct icmphdr *) icmp_payload)+1));
// Time difference for RTT in milliseconds
double rtt = ((double)(recv_time.tv_sec - send_time.tv_sec)*1000.0) + (double)(recv_time.tv_nsec - send_time.tv_nsec)/1000000.0;
hosts[event->data.fd].RTT[rtt_idx] = rtt;
if (++hosts[event->data.fd].n_rtt_rcvd == 3) {
printf("%-41s - %.2f %.2f %.2f\t\t(ms)\n", hosts[event->data.fd].ip,
hosts[event->data.fd].RTT[0],
hosts[event->data.fd].RTT[1],
hosts[event->data.fd].RTT[2]);
close(event->data.fd);
++n_complete;
if (n_complete == num_hosts)
run_flag = false;
}
}
}
else {
// Receive IPv6 ICMP echo reply
recvfrom(event->data.fd, ip_icmp_payload, icmp_payload_len, 0, NULL, NULL);
icmp_payload = ip_icmp_payload;
if (((struct icmp6_hdr *) icmp_payload)->icmp6_type == ICMP6_ECHO_REPLY) {
short int rtt_idx = ((struct icmp6_hdr *) icmp_payload)->icmp6_seq;
send_time = *((struct timespec *) (((struct icmp6_hdr *) icmp_payload)+1));
// Time difference for RTT in milliseconds
double rtt = ((double)(recv_time.tv_sec - send_time.tv_sec)*1000.0) + (double)(recv_time.tv_nsec - send_time.tv_nsec)/1000000.0;
hosts[event->data.fd].RTT[rtt_idx] = rtt;
if (++hosts[event->data.fd].n_rtt_rcvd == 3) {
printf("%-41s - %.2f %.2f %.2f\t\t(ms)\n", hosts[event->data.fd].ip,
hosts[event->data.fd].RTT[0],
hosts[event->data.fd].RTT[1],
hosts[event->data.fd].RTT[2]);
close(event->data.fd);
++n_complete;
if (n_complete == num_hosts)
run_flag = false;
}
}
}
}
}
printf("\nNumber of IPs pinged: %d\n", n_complete);
free(ip_icmp_payload);
// Output of thread. In this case, there is nothing to return
return NULL;
}
int main(int argc, char * argv[]) {
if (argc < 2)
err_exit("HOSTS IP Filename argument not specified! Exiting...\n");
// Assumption: All the hosts in the file are unique
size_t num_hosts = 0;
n_complete = 0;
n_retries = MAX_RETRIES;
FILE * hosts_fp;
if ((hosts_fp = fopen(argv[1], "r")) == NULL)
err_exit("Error opening HOSTS FILE. Exiting...\n");
int _c;
while (EOF != (_c=fgetc(hosts_fp)))
if (_c == '\n')
++num_hosts;
fseek(hosts_fp, 0, SEEK_SET);
// 'sock_fd' is directly used as index for the hosts array of structures
// +10 is a safety limit to ensure that every 'sock_fd' is < '(num_hosts + 10)'
// because 0 and 1 are used up by stdin and stdout
// So, safety limit has to be atleast +2
size_t hosts_len = (num_hosts+10 < 1024)? num_hosts+10 : 1024;
struct host_info * hosts = malloc(sizeof(struct host_info) * hosts_len);
memset(hosts, 0, sizeof(struct host_info) * hosts_len);
// size_t num_forks = 0;
int epoll_fd = epoll_create1(0);
if (epoll_fd == -1)
err_exit("Error in epoll. Exiting...\n");
// Set up signal handler
struct sigaction sigint;
sigint.sa_handler = sigint_handler;
sigint.sa_flags = 0;
sigemptyset(&sigint.sa_mask);
sigaddset(&sigint.sa_mask, SIGINT);
sigaction(SIGINT, &sigint, NULL);
pthread_t thread_id;
struct pthread_args args = {hosts, num_hosts, epoll_fd};
pthread_create(&thread_id, NULL, receive_reply_func, &args);
// Sending ICMP echo requests to all IPs
char ip[41];
for (size_t idx = 0; idx < num_hosts; ++idx) {
fgets(ip, 41, hosts_fp);
if (ip[strlen(ip) - 1] == '\n')
ip[strlen(ip) - 1] = '\0';
int sock_fd;
// Differentiate between ipv4 and ipv6
if (strstr(ip, ".")) {
// ipv4 address
sock_fd = send_v4(ip, epoll_fd);
if (sock_fd == -1 && n_retries <= 0) {
printf("\nMaximum number of retries reached. Exiting...\n");
break;
}
hosts[sock_fd].isIPv6 = 0;
}
else {
// ipv6 address
sock_fd = send_v6(ip, epoll_fd);
if (sock_fd == -1 && n_retries <= 0) {
printf("\nMaximum number of retries reached. Exiting...\n");
break;
}
hosts[sock_fd].isIPv6 = 1;
}
hosts[sock_fd].valid = true;
strncpy(hosts[sock_fd].ip, ip, 41);
hosts[sock_fd].n_rtt_rcvd = 0;
}
pthread_join(thread_id, NULL);
close(epoll_fd);
free(hosts);
printf("\n");
return EXIT_SUCCESS;
}