-
Notifications
You must be signed in to change notification settings - Fork 2
/
ptp4l.c
269 lines (252 loc) · 6.8 KB
/
ptp4l.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
/**
* @file ptp4l.c
* @brief PTP Boundary Clock or Transparent Clock main program
* @note Copyright (C) 2011 Richard Cochran <[email protected]>
*
* 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "clock.h"
#include "config.h"
#include "ntpshm.h"
#include "pi.h"
#include "print.h"
#include "raw.h"
#include "sad.h"
#include "sk.h"
#include "transport.h"
#include "udp6.h"
#include "uds.h"
#include "util.h"
#include "version.h"
static void usage(char *progname)
{
fprintf(stderr,
"\nusage: %s [options]\n\n"
" Delay Mechanism\n\n"
" -A Auto, starting with E2E\n"
" -E E2E, delay request-response (default)\n"
" -P P2P, peer delay mechanism\n\n"
" Network Transport\n\n"
" -2 IEEE 802.3\n"
" -4 UDP IPV4 (default)\n"
" -6 UDP IPV6\n\n"
" Time Stamping\n\n"
" -H HARDWARE (default)\n"
" -S SOFTWARE\n"
" -L LEGACY HW\n\n"
" Other Options\n\n"
" -f [file] read configuration from 'file'\n"
" -i [dev] interface device to use, for example 'eth0'\n"
" (may be specified multiple times)\n"
" -p [dev] Clock device to use, default auto\n"
" (ignored for SOFTWARE/LEGACY HW time stamping)\n"
" -s client only synchronization mode (overrides configuration file)\n"
" -l [num] set the logging level to 'num'\n"
" -m print messages to stdout\n"
" -q do not print messages to the syslog\n"
" -v prints the software version and exits\n"
" -h prints this message and exits\n"
"\n",
progname);
}
int main(int argc, char *argv[])
{
char *config = NULL, *req_phc = NULL, *progname;
enum clock_type type = CLOCK_TYPE_ORDINARY;
int c, err = -1, index, cmd_line_print_level;
struct clock *clock = NULL;
struct option *opts;
struct config *cfg;
if (handle_term_signals())
return -1;
cfg = config_create();
if (!cfg) {
return -1;
}
opts = config_long_options(cfg);
/* Process the command line arguments. */
progname = strrchr(argv[0], '/');
progname = progname ? 1+progname : argv[0];
while (EOF != (c = getopt_long(argc, argv, "AEP246HSLf:i:p:sl:mqvh",
opts, &index))) {
switch (c) {
case 0:
if (config_parse_option(cfg, opts[index].name, optarg))
goto out;
break;
case 'A':
if (config_set_int(cfg, "delay_mechanism", DM_AUTO))
goto out;
break;
case 'E':
if (config_set_int(cfg, "delay_mechanism", DM_E2E))
goto out;
break;
case 'P':
if (config_set_int(cfg, "delay_mechanism", DM_P2P))
goto out;
break;
case '2':
if (config_set_int(cfg, "network_transport",
TRANS_IEEE_802_3))
goto out;
break;
case '4':
if (config_set_int(cfg, "network_transport",
TRANS_UDP_IPV4))
goto out;
break;
case '6':
if (config_set_int(cfg, "network_transport",
TRANS_UDP_IPV6))
goto out;
break;
case 'H':
if (config_set_int(cfg, "time_stamping", TS_HARDWARE))
goto out;
break;
case 'S':
if (config_set_int(cfg, "time_stamping", TS_SOFTWARE))
goto out;
break;
case 'L':
if (config_set_int(cfg, "time_stamping", TS_LEGACY_HW))
goto out;
break;
case 'f':
config = optarg;
break;
case 'i':
if (!config_create_interface(optarg, cfg))
goto out;
break;
case 'p':
req_phc = optarg;
break;
case 's':
if (config_set_int(cfg, "clientOnly", 1)) {
goto out;
}
break;
case 'l':
if (get_arg_val_i(c, optarg, &cmd_line_print_level,
PRINT_LEVEL_MIN, PRINT_LEVEL_MAX))
goto out;
config_set_int(cfg, "logging_level", cmd_line_print_level);
break;
case 'm':
config_set_int(cfg, "verbose", 1);
break;
case 'q':
config_set_int(cfg, "use_syslog", 0);
break;
case 'v':
version_show(stdout);
return 0;
case 'h':
usage(progname);
return 0;
case '?':
usage(progname);
goto out;
default:
usage(progname);
goto out;
}
}
if (config && (c = config_read(config, cfg))) {
return c;
}
print_set_progname(progname);
print_set_tag(config_get_string(cfg, NULL, "message_tag"));
print_set_verbose(config_get_int(cfg, NULL, "verbose"));
print_set_syslog(config_get_int(cfg, NULL, "use_syslog"));
print_set_level(config_get_int(cfg, NULL, "logging_level"));
assume_two_step = config_get_int(cfg, NULL, "assume_two_step");
sk_check_fupsync = config_get_int(cfg, NULL, "check_fup_sync");
sk_tx_timeout = config_get_int(cfg, NULL, "tx_timestamp_timeout");
sk_hwts_filter_mode = config_get_int(cfg, NULL, "hwts_filter");
ptp_hdr_ver = config_get_int(cfg, NULL, "ptp_minor_version");
ptp_hdr_ver = (ptp_hdr_ver << 4) | PTP_MAJOR_VERSION;
if (sad_create(cfg)) {
goto out;
}
if (config_get_int(cfg, NULL, "clock_servo") == CLOCK_SERVO_NTPSHM) {
config_set_int(cfg, "kernel_leap", 0);
config_set_int(cfg, "sanity_freq_limit", 0);
}
if (STAILQ_EMPTY(&cfg->interfaces)) {
fprintf(stderr, "no interface specified\n");
usage(progname);
goto out;
}
type = config_get_int(cfg, NULL, "clock_type");
switch (type) {
case CLOCK_TYPE_ORDINARY:
if (cfg->n_interfaces > 1) {
type = CLOCK_TYPE_BOUNDARY;
}
break;
case CLOCK_TYPE_BOUNDARY:
if (cfg->n_interfaces < 2) {
fprintf(stderr, "BC needs at least two interfaces\n");
goto out;
}
break;
case CLOCK_TYPE_P2P:
if (cfg->n_interfaces < 2) {
fprintf(stderr, "TC needs at least two interfaces\n");
goto out;
}
if (DM_P2P != config_get_int(cfg, NULL, "delay_mechanism")) {
fprintf(stderr, "P2P_TC needs P2P delay mechanism\n");
goto out;
}
break;
case CLOCK_TYPE_E2E:
if (cfg->n_interfaces < 2) {
fprintf(stderr, "TC needs at least two interfaces\n");
goto out;
}
if (DM_E2E != config_get_int(cfg, NULL, "delay_mechanism")) {
fprintf(stderr, "E2E_TC needs E2E delay mechanism\n");
goto out;
}
break;
case CLOCK_TYPE_MANAGEMENT:
goto out;
}
clock = clock_create(type, cfg, req_phc);
if (!clock) {
fprintf(stderr, "failed to create a clock\n");
goto out;
}
err = 0;
while (is_running()) {
if (clock_poll(clock))
break;
}
out:
if (clock)
clock_destroy(clock);
sad_destroy(cfg);
config_destroy(cfg);
return err;
}