-
Notifications
You must be signed in to change notification settings - Fork 9
/
perf.c
749 lines (646 loc) · 20.5 KB
/
perf.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
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
/*
* Copyright (C) 2018 Miroslav Lichvar <mlichvar@redhat.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <assert.h>
#include <arpa/inet.h>
#include <float.h>
#include <math.h>
#include <net/if.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <pcap/pcap.h>
#include "sender.h"
#define MAX_CLIENTS 16384
#define PTP_MCAST_ADDR 0xe0000181 /* 224.0.1.129 */
struct config {
enum request_mode mode;
char *interface;
char dst_mac[6];
uint32_t dst_address;
uint32_t src_network;
int src_bits;
int ptp_domain;
int ptp_mcast;
int min_rate;
int max_rate;
unsigned int senders;
bool exp_distribution;
bool allow_late_tx;
double multiplier;
double sampling_interval;
double offset_correction;
bool offset_middle;
bool hw_timestamping;
struct {
const char *c2s;
const char *cookie;
} nts;
};
struct client {
uint64_t remote_id;
uint64_t local_id;
struct timespec remote_rx;
struct timespec local_rx;
int warmup;
};
struct perf_stats {
int clients;
int requests;
int invalid_responses;
union {
int basic_responses;
int delay_responses;
};
union {
int interleaved_responses;
int sync_responses;
};
int offset_updates;
double sum_m_offset;
double sum_s_offset;
double min_offset;
double max_offset;
};
static pcap_t *open_pcap(struct config *config) {
char errbuf[PCAP_ERRBUF_SIZE];
pcap_t *pcap;
int r;
if (!(pcap = pcap_create(config->interface, errbuf))) {
fprintf(stderr, "pcap: %s\n", errbuf);
goto err;
}
if ((r = pcap_set_snaplen(pcap, 128)) ||
(r = pcap_set_promisc(pcap, config->ptp_mcast)) ||
(r = pcap_set_timeout(pcap, 10)) ||
(r = pcap_set_immediate_mode(pcap, 1)) ||
(r = pcap_set_buffer_size(pcap, 1 << 24)) ||
(r = pcap_set_tstamp_type(pcap, config->hw_timestamping ?
PCAP_TSTAMP_ADAPTER_UNSYNCED : PCAP_TSTAMP_HOST)) ||
(r = pcap_set_tstamp_precision(pcap, PCAP_TSTAMP_PRECISION_NANO))) {
fprintf(stderr, "pcap: %s\n", pcap_statustostr(r));
goto err;
}
if ((r = pcap_activate(pcap))) {
fprintf(stderr, "pcap: %s\n", pcap_statustostr(r));
if (r < 0)
goto err;
}
if (pcap_set_datalink(pcap, DLT_EN10MB)) {
fprintf(stderr, "Could not set pcap datalink\n");
goto err;
}
if (pcap_setdirection(pcap, PCAP_D_IN)) {
fprintf(stderr, "Could not set pcap direction\n");
goto err;
}
if (pcap_setnonblock(pcap, 1, errbuf)) {
fprintf(stderr, "pcap: %s\n", errbuf);
goto err;
}
return pcap;
err:
if (pcap)
pcap_close(pcap);
return NULL;
}
static bool get_iface_mac(struct config *config, char mac[6]) {
struct ifreq req;
int sock_fd;
sock_fd = socket(AF_INET, SOCK_DGRAM, 0);
if (sock_fd < 0)
return false;
snprintf(req.ifr_name, sizeof (req.ifr_name), "%s", config->interface);
if (ioctl(sock_fd, SIOCGIFHWADDR, &req)) {
fprintf(stderr, "Could not get MAC address of %s\n", config->interface);
close(sock_fd);
return false;
}
close(sock_fd);
memcpy(mac, req.ifr_hwaddr.sa_data, 6);
return true;
}
static void add_nsec_to_ts(struct timespec *ts, uint64_t nsec) {
ts->tv_sec += nsec / 1000000000U;
ts->tv_nsec += nsec % 1000000000U;
while (ts->tv_nsec >= 1000000000U) {
ts->tv_nsec -= 1000000000U;
ts->tv_sec++;
}
}
static int compare_ts(struct timespec *ts1, struct timespec *ts2) {
if (ts1->tv_sec != ts2->tv_sec)
return ts1->tv_sec - ts2->tv_sec;
if (ts1->tv_nsec != ts2->tv_nsec)
return ts1->tv_nsec - ts2->tv_nsec;
return 0;
}
static double diff_ts(struct timespec *ts1, struct timespec *ts2) {
return (ts1->tv_sec - ts2->tv_sec) + 1e-9 * (ts1->tv_nsec - ts2->tv_nsec);
}
static struct timespec convert_ntp_ts(uint64_t ntp_ts) {
struct timespec ts;
ntp_ts = be64toh(ntp_ts);
ts.tv_sec = (ntp_ts >> 32) - 2208988800;
ts.tv_nsec = (ntp_ts & 0xffffffffU) / 4.294967296;
return ts;
}
static struct timespec convert_ptp_ts(uint16_t hi, uint32_t mid, uint32_t lo) {
struct timespec ts;
ts.tv_sec = (uint64_t)ntohs(hi) << 32 | ntohl(mid);
ts.tv_nsec = ntohl(lo);
return ts;
}
static void make_request(struct sender_request *request, struct client *client, int index,
struct config *config, struct timespec *when) {
request->when = *when;
request->src_address = config->src_network ^ (index % (1U << (32 - config->src_bits)));
request->_pad = 0;
request->remote_id = client->remote_id;
request->local_id = (uint64_t)random() << 32 | random();
client->local_id = request->local_id;
}
static bool process_response(struct pcap_pkthdr *header, const u_char *data, struct config *config,
struct perf_stats *stats, struct client *clients, int num_clients) {
struct client *client;
struct timespec local_rx = { .tv_sec = header->ts.tv_sec, .tv_nsec = header->ts.tv_usec };
struct timespec prev_local_rx, prev_remote_rx, remote_rx = {0}, remote_tx = {0};
int src_port, dst_port, ptp_type = 0;
uint32_t dst_address;
bool valid;
double offset, delta;
if (header->caplen < 86)
return false;
if (memcmp(config->dst_mac, data + 6, 6))
return false;
if (ntohs(*(uint16_t *)(data + 12)) != 0x0800)
return false;
data += 14;
if (data[0] >> 4 != 4 || (data[0] & 0xf) != 5 || data[9] != 17 ||
ntohl(*(uint32_t *)(data + 12)) != config->dst_address)
return false;
dst_address = ntohl(*(uint32_t *)(data + 16));
src_port = ntohs(*(uint16_t *)(data + 20));
dst_port = ntohs(*(uint16_t *)(data + 22));
data += 28;
if (config->ptp_mcast) {
if (dst_address != PTP_MCAST_ADDR || (data[0] & 0xf) != 9)
return false;
dst_address = ntohl(*(uint32_t *)(data + 44));
}
if ((dst_address ^ config->src_network) >> (32 - config->src_bits))
return false;
client = &clients[(dst_address ^ config->src_network) % (uint32_t)num_clients];
prev_remote_rx = client->remote_rx;
prev_local_rx = client->local_rx;
switch (config->mode) {
case NTP_BASIC:
case NTP_INTERLEAVED:
if (src_port != 123)
return false;
valid = header->caplen >= 90 && (data[0] & 0x7) == 0x4 &&
(*(uint64_t *)(data + 24) & -2ULL) == (client->local_id & -2ULL) &&
(!config->nts.cookie || header->len > 90 + 4 + 32 + 4 + 16 + 16 + 4);
if (valid) {
if (config->mode == NTP_INTERLEAVED)
client->remote_id = *(uint64_t *)(data + 32);
else
client->remote_id = *(uint64_t *)(data + 40);
client->remote_rx = convert_ntp_ts(*(uint64_t *)(data + 32));
client->local_rx = local_rx;
}
break;
case PTP_DELAY:
case PTP_NSM:
if (dst_port != 319 && dst_port != 320)
return false;
ptp_type = data[0] & 0xf;
valid = header->caplen >= 86 && data[1] == 2 &&
*(uint16_t *)(data + 30) == (uint16_t)client->local_id &&
((ptp_type == 9 && dst_port == 320) ||
(config->mode == PTP_NSM &&
((ptp_type == 0 && dst_port == 319) ||
(ptp_type == 8 && dst_port == 320))));
if (!valid)
break;
switch (ptp_type) {
case 0:
client->local_rx = local_rx;
break;
case 9:
client->remote_rx = convert_ptp_ts(*(uint16_t *)(data + 34),
*(uint32_t *)(data + 36),
*(uint32_t *)(data + 40));
/* Fall through */
case 8:
memset(&client->local_rx, 0, sizeof client->local_rx);
break;
default:
assert(0);
}
break;
default:
assert(0);
}
if (!valid) {
if (!client->warmup)
stats->invalid_responses++;
return false;
}
if (client->warmup)
return true;
switch (config->mode) {
case NTP_BASIC:
case NTP_INTERLEAVED:
if (*(uint64_t *)(data + 24) == client->local_id) {
stats->basic_responses++;
if (config->mode != NTP_BASIC)
return true;
remote_rx = client->remote_rx;
} else {
stats->interleaved_responses++;
if (config->mode != NTP_INTERLEAVED)
return true;
remote_rx = prev_remote_rx;
local_rx = prev_local_rx;
}
remote_tx = convert_ntp_ts(*(uint64_t *)(data + 40));
break;
case PTP_DELAY:
case PTP_NSM:
switch (ptp_type) {
case 8:
local_rx = prev_local_rx;
/* Fall through */
case 0:
/* TODO: handle reversed order of sync and followup */
if (ptp_type == 0 && data[6] & 0x2)
return true;
stats->sync_responses++;
remote_rx = client->remote_rx;
remote_tx = convert_ptp_ts(*(uint16_t *)(data + 34),
*(uint32_t *)(data + 36),
*(uint32_t *)(data + 40));
break;
case 9:
stats->delay_responses++;
return true;
default:
assert(0);
}
break;
default:
assert(0);
}
if (config->offset_correction) {
if (!local_rx.tv_sec || !remote_tx.tv_sec || !remote_rx.tv_sec)
return true;
offset = diff_ts(&local_rx, &remote_tx) - config->offset_correction;
if (config->offset_middle)
offset += diff_ts(&remote_tx, &remote_rx) / 2;
} else {
if (!remote_tx.tv_sec || !remote_rx.tv_sec)
return true;
offset = diff_ts(&remote_tx, &remote_rx);
}
stats->offset_updates++;
/* Accumulate for mean and variance using Welford's algorithm. */
delta = offset - stats->sum_m_offset;
stats->sum_m_offset += delta / stats->offset_updates;
stats->sum_s_offset += delta * (offset - stats->sum_m_offset);
if (stats->min_offset > offset)
stats->min_offset = offset;
if (stats->max_offset < offset)
stats->max_offset = offset;
return true;
}
static bool measure_perf(struct config *config, pcap_t *pcap, int *senders, int rate,
struct perf_stats *stats) {
struct sender_request requests[config->senders][MAX_SENDER_REQUESTS];
struct client clients[MAX_CLIENTS];
int num_requests[config->senders];
unsigned int i, num_clients, interval, sender_index = 0, client_index = 0;
struct pcap_pkthdr *header;
const u_char *data;
struct timespec tx_next, max_tx_ahead, now, tx_end, rx_end;
memset(stats, 0, sizeof *stats);
stats->min_offset = DBL_MAX;
stats->max_offset = -DBL_MAX;
interval = 1e9 / rate;
num_clients = rate / 10;
if (num_clients < 1)
num_clients = 1;
if (num_clients > MAX_CLIENTS)
num_clients = MAX_CLIENTS;
if (num_clients > 1U << (32 - config->src_bits)) {
fprintf(stderr, "Warning: source network might be too small for rate %d\n", rate);
num_clients = 1U << (32 - config->src_bits);
}
assert(num_clients > 0 && num_clients <= MAX_CLIENTS);
stats->clients = num_clients;
memset(clients, 0, sizeof clients);
for (i = 0; i < num_clients; i++)
clients[i].warmup = 2 + 1;
clock_gettime(CLOCK_MONOTONIC, &now);
tx_next = tx_end = now;
add_nsec_to_ts(&tx_end, 1.0e9 * config->sampling_interval +
interval * num_clients * (clients[0].warmup - 1));
rx_end = tx_end;
add_nsec_to_ts(&rx_end, interval * num_clients);
while (1) {
max_tx_ahead = now;
add_nsec_to_ts(&max_tx_ahead, interval * num_clients / 4);
if (compare_ts(&now, &rx_end) > 0)
break;
for (i = 0; i < config->senders; i++)
num_requests[i] = 0;
for (i = 0; i < MAX_SENDER_REQUESTS * config->senders; i++) {
if (compare_ts(&tx_next, &tx_end) > 0 ||
compare_ts(&tx_next, &max_tx_ahead) > 0)
break;
if (compare_ts(&now, &tx_next) > 0 && !config->allow_late_tx) {
fprintf(stderr, "Could not send requests at rate %d\n", rate);
return false;
}
make_request(&requests[sender_index][num_requests[sender_index]++],
&clients[client_index], client_index, config, &tx_next);
if (clients[client_index].warmup)
clients[client_index].warmup--;
if (!clients[client_index].warmup)
stats->requests++;
sender_index = (sender_index + 1) % config->senders;
client_index = (client_index + 1) % num_clients;
add_nsec_to_ts(&tx_next, !config->exp_distribution ? interval :
interval * -log((random() & 0x7fffffff) / 2147483647.0));
}
for (i = 0; i < config->senders; i++) {
if (num_requests[i] == 0)
continue;
if (!sender_send_requests(senders[i], requests[i], num_requests[i]))
return false;
}
while (pcap_next_ex(pcap, &header, &data)) {
process_response(header, data, config, stats, clients, num_clients);
}
clock_gettime(CLOCK_MONOTONIC, &now);
}
return true;
}
static void print_header(struct config *config) {
int offset;
printf(" | responses |");
if (config->mode == PTP_DELAY)
offset = 0, printf("\n");
else if (config->offset_correction && !config->offset_middle)
offset = 1, printf(" TX timestamp offset (ns)\n");
else if (config->offset_correction)
offset = 1, printf(" (RX+TX)/2 offset (ns)\n");
else
offset = 1, printf(" response time (ns)\n");
printf("rate clients | lost invalid %15s |%s\n",
config->mode <= NTP_INTERLEAVED ? "basic xleave" : "delay sync/fw",
offset ? " min mean max stddev" : "");
}
static int get_lost_packets(struct perf_stats *stats, struct config *config) {
switch (config->mode) {
case NTP_BASIC:
case NTP_INTERLEAVED:
return stats->requests - stats->invalid_responses -
stats->basic_responses - stats->interleaved_responses;
case PTP_DELAY:
return stats->requests - stats->invalid_responses -
stats->delay_responses;
case PTP_NSM:
return 2 * stats->requests - stats->invalid_responses -
stats->delay_responses - stats->sync_responses;
default:
assert(0);
}
}
static void print_stats(struct perf_stats *stats, struct config *config, int rate) {
printf("%-8d %5d %6.2f%% %6.2f%% %6.2f%% %6.2f%%",
rate, stats->clients,
100.0 * get_lost_packets(stats, config) / stats->requests,
100.0 * stats->invalid_responses / stats->requests,
100.0 * stats->basic_responses / stats->requests,
100.0 * stats->interleaved_responses / stats->requests);
if (stats->offset_updates > 1)
printf(" %+7.0f %+7.0f %+7.0f %6.0f",
1e9 * stats->min_offset, 1e9 * stats->sum_m_offset,
1e9 * stats->max_offset,
1e9 * sqrt(stats->sum_s_offset / (stats->offset_updates - 1.5)));
if (0)
printf(" | %7d", stats->requests);
printf("\n");
}
static bool run_perf(struct config *config) {
struct sender_config sender_config;
struct perf_stats stats;
pcap_t *pcap;
int i, rate, senders[config->senders];
bool ret = true;
sender_config.mode = config->mode;
if (!get_iface_mac(config, sender_config.src_mac))
return false;
memcpy(sender_config.dst_mac, config->dst_mac, 6);
sender_config.dst_address = config->ptp_mcast ?
PTP_MCAST_ADDR : config->dst_address;
sender_config.ptp_domain = config->ptp_domain;
sender_config.ptp_mcast = config->ptp_mcast;
sender_config.nts.c2s = config->nts.c2s;
sender_config.nts.cookie = config->nts.cookie;
pcap = open_pcap(config);
if (!pcap)
return false;
sender_config.sock_fd = pcap_fileno(pcap);
for (i = 0; i < config->senders; i++) {
senders[i] = sender_start(&sender_config);
if (!senders[i]) {
for (i--; i >= 0; i--)
sender_stop(senders[i]);
pcap_close(pcap);
return false;
}
}
print_header(config);
for (rate = config->min_rate; rate <= config->max_rate; rate *= config->multiplier) {
ret = measure_perf(config, pcap, senders, rate, &stats);
if (!ret)
break;
print_stats(&stats, config, rate);
if (get_lost_packets(&stats, config) + stats.invalid_responses >
stats.requests / 2)
break;
}
for (i = 0; i < config->senders; i++)
sender_stop(senders[i]);
pcap_close(pcap);
return ret;
}
static bool is_local_network(uint32_t net, int bits) {
return ((net ^ ntohl(inet_addr("10.0.0.0"))) >> 24 == 0 && bits >= 8) ||
((net ^ ntohl(inet_addr("172.16.0.0"))) >> 20 == 0 && bits >= 12) ||
((net ^ ntohl(inet_addr("192.168.0.0"))) >> 16 == 0 && bits >= 16);
}
int main(int argc, char **argv) {
struct config config;
char *s;
int opt, dst_mac_set = 0;
srandom(time(NULL));
setvbuf(stdout, NULL, _IOLBF, BUFSIZ);
memset(&config, 0, sizeof config);
config.mode = INVALID_MODE;
config.min_rate = 1000;
config.max_rate = 1000000;
config.senders = 1;
config.multiplier = 1.5;
config.sampling_interval = 2.0;
while ((opt = getopt(argc, argv, "BID:N:i:s:d:m:Mr:p:elt:x:o:OHS:h")) != -1) {
switch (opt) {
case 'B':
config.mode = NTP_BASIC;
break;
case 'I':
config.mode = NTP_INTERLEAVED;
break;
case 'D':
config.mode = PTP_DELAY;
config.ptp_domain = atoi(optarg);
break;
case 'N':
config.mode = PTP_NSM;
config.ptp_domain = atoi(optarg);
break;
case 'i':
config.interface = optarg;
break;
case 's':
if (!(s = strchr(optarg, '/')))
goto err;
*s = '\0';
if (inet_pton(AF_INET, optarg, &config.src_network) <= 0)
goto err;
config.src_network = ntohl(config.src_network);
config.src_bits = atoi(s + 1);
break;
case 'd':
if (inet_pton(AF_INET, optarg, &config.dst_address) <= 0)
goto err;
config.dst_address = ntohl(config.dst_address);
break;
case 'm':
if (sscanf(optarg, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",
config.dst_mac + 0, config.dst_mac + 1,
config.dst_mac + 2, config.dst_mac + 3,
config.dst_mac + 4, config.dst_mac + 5) != 6)
goto err;
dst_mac_set = 1;
break;
case 'M':
config.ptp_mcast = 1;
break;
case 'r':
if ((s = strchr(optarg, '-'))) {
*s = '\0';
config.min_rate = atoi(optarg);
config.max_rate = atoi(s + 1);
} else {
config.min_rate = config.max_rate = atoi(optarg);
}
break;
case 'p':
config.senders = atoi(optarg);
break;
case 'e':
config.exp_distribution = true;
break;
case 'l':
config.allow_late_tx = true;
break;
case 'x':
config.multiplier = atof(optarg);
break;
case 't':
config.sampling_interval = atof(optarg);
break;
case 'o':
config.offset_correction = atof(optarg);
break;
case 'O':
config.offset_middle = true;
break;
case 'H':
config.hw_timestamping = true;
break;
#ifdef NTS
case 'S':
if (!optarg || !(s = strchr(optarg, ',')))
goto err;
*s = '\0';
config.nts.c2s = optarg;
config.nts.cookie = s + 1;
break;
#endif
default:
goto err;
}
}
if (config.mode == INVALID_MODE || !config.interface || !dst_mac_set ||
(config.ptp_mcast && config.mode != PTP_DELAY) ||
!config.dst_address || config.src_bits < 8 || config.src_bits > 32 ||
config.min_rate < 1 || config.multiplier < 1.0 || config.sampling_interval < 0.2 ||
config.senders < 1 || config.senders > 16)
goto err;
if (!is_local_network(config.dst_address, 32) ||
!is_local_network(config.src_network, config.src_bits)) {
fprintf(stderr, "Non-local source or destination network\n");
return 1;
}
return !run_perf(&config);
err:
fprintf(stderr, "Usage: %s MODE NETWORK-OPTIONS [OTHER-OPTIONS]\n", argv[0]);
fprintf(stderr, "\nMode:\n");
fprintf(stderr, "\t-B send NTP client requests in basic mode\n");
fprintf(stderr, "\t-I send NTP client requests in interleaved mode\n");
fprintf(stderr, "\t-D DOMAIN send PTP delay requests\n");
fprintf(stderr, "\t-N DOMAIN send PTP NetSync Monitor (NSM) requests\n");
fprintf(stderr, "\nNetwork options:\n");
fprintf(stderr, "\t-i INTERFACE specify network interface\n");
fprintf(stderr, "\t-s NETWORK/BITS specify source IPv4 network\n");
fprintf(stderr, "\t-d IP-ADDRESS specify destination IPv4 address\n");
fprintf(stderr, "\t-m MAC specify destination MAC address\n");
fprintf(stderr, "\nOther options:\n");
fprintf(stderr, "\t-M send multicast PTP delay requests\n");
fprintf(stderr, "\t-r RATE[-RATE] specify minimum and maximum rate (1000-1000000)\n");
fprintf(stderr, "\t-p NUMBER specify number of processes to send requests (1)\n");
fprintf(stderr, "\t-e make transmit interval exponentially distributed\n");
fprintf(stderr, "\t-l allow late transmissions\n");
fprintf(stderr, "\t-x MULT specify rate multiplier (1.5)\n");
fprintf(stderr, "\t-t INTERVAL specify sampling interval (2.0 seconds)\n");
fprintf(stderr, "\t-o CORRECTION print offset between remote TX and local RX timestamp\n");
fprintf(stderr, "\t with specified correction (e.g. network and RX delay)\n");
fprintf(stderr, "\t-O with -o use remote (RX+TX)/2 instead of TX timestamp\n");
fprintf(stderr, "\t-H enable HW timestamping for TX offset statistics\n");
#ifdef NTS
fprintf(stderr, "\t-S C2S,COOKIE authenticate NTP requests with NTS\n");
#endif
fprintf(stderr, "\t-h print this help message\n");
return 1;
}