/src/ntp-dev/ntpd/refclock_chronolog.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * refclock_chronolog - clock driver for Chronolog K-series WWVB receiver. |
3 | | */ |
4 | | |
5 | | /* |
6 | | * Must interpolate back to local time. Very annoying. |
7 | | */ |
8 | | #define GET_LOCALTIME |
9 | | |
10 | | #ifdef HAVE_CONFIG_H |
11 | | #include <config.h> |
12 | | #endif |
13 | | |
14 | | #if defined(REFCLOCK) && defined(CLOCK_CHRONOLOG) |
15 | | |
16 | | #include "ntpd.h" |
17 | | #include "ntp_io.h" |
18 | | #include "ntp_refclock.h" |
19 | | #include "ntp_calendar.h" |
20 | | #include "ntp_stdlib.h" |
21 | | |
22 | | #include <stdio.h> |
23 | | #include <ctype.h> |
24 | | |
25 | | /* |
26 | | * This driver supports the Chronolog K-series WWVB receiver. |
27 | | * |
28 | | * Input format: |
29 | | * |
30 | | * Y YY/MM/DD<cr><lf> |
31 | | * Z hh:mm:ss<cr><lf> |
32 | | * |
33 | | * YY/MM/DD -- what you'd expect. This arrives a few seconds before the |
34 | | * timestamp. |
35 | | * hh:mm:ss -- what you'd expect. We take time on the <cr>. |
36 | | * |
37 | | * Our Chronolog writes time out at 2400 bps 8/N/1, but it can be configured |
38 | | * otherwise. The clock seems to appear every 60 seconds, which doesn't make |
39 | | * for good statistics collection. |
40 | | * |
41 | | * The original source of this module was the WWVB module. |
42 | | */ |
43 | | |
44 | | /* |
45 | | * Interface definitions |
46 | | */ |
47 | | #define DEVICE "/dev/chronolog%d" /* device name and unit */ |
48 | 0 | #define SPEED232 B2400 /* uart speed (2400 baud) */ |
49 | 0 | #define PRECISION (-13) /* precision assumed (about 100 us) */ |
50 | 0 | #define REFID "chronolog" /* reference ID */ |
51 | 0 | #define DESCRIPTION "Chrono-log K" /* WRU */ |
52 | | |
53 | | #define MONLIN 15 /* number of monitoring lines */ |
54 | | |
55 | | /* |
56 | | * Chrono-log unit control structure |
57 | | */ |
58 | | struct chronolog_unit { |
59 | | u_char tcswitch; /* timecode switch */ |
60 | | l_fp laststamp; /* last receive timestamp */ |
61 | | u_char lasthour; /* last hour (for monitor) */ |
62 | | int year; /* Y2K-adjusted year */ |
63 | | int day; /* day-of-month */ |
64 | | int month; /* month-of-year */ |
65 | | }; |
66 | | |
67 | | /* |
68 | | * Function prototypes |
69 | | */ |
70 | | static int chronolog_start (int, struct peer *); |
71 | | static void chronolog_shutdown (int, struct peer *); |
72 | | static void chronolog_receive (struct recvbuf *); |
73 | | static void chronolog_poll (int, struct peer *); |
74 | | |
75 | | /* |
76 | | * Transfer vector |
77 | | */ |
78 | | struct refclock refclock_chronolog = { |
79 | | chronolog_start, /* start up driver */ |
80 | | chronolog_shutdown, /* shut down driver */ |
81 | | chronolog_poll, /* poll the driver -- a nice fabrication */ |
82 | | noentry, /* not used */ |
83 | | noentry, /* not used */ |
84 | | noentry, /* not used */ |
85 | | NOFLAGS /* not used */ |
86 | | }; |
87 | | |
88 | | |
89 | | /* |
90 | | * chronolog_start - open the devices and initialize data for processing |
91 | | */ |
92 | | static int |
93 | | chronolog_start( |
94 | | int unit, |
95 | | struct peer *peer |
96 | | ) |
97 | 0 | { |
98 | 0 | register struct chronolog_unit *up; |
99 | 0 | struct refclockproc *pp; |
100 | 0 | int fd; |
101 | 0 | char device[20]; |
102 | | |
103 | | /* |
104 | | * Open serial port. Don't bother with CLK line discipline, since |
105 | | * it's not available. |
106 | | */ |
107 | 0 | snprintf(device, sizeof(device), DEVICE, unit); |
108 | 0 | #ifdef DEBUG |
109 | 0 | if (debug) |
110 | 0 | printf ("starting Chronolog with device %s\n",device); |
111 | 0 | #endif |
112 | 0 | fd = refclock_open(device, SPEED232, 0); |
113 | 0 | if (fd <= 0) |
114 | 0 | return (0); |
115 | | |
116 | | /* |
117 | | * Allocate and initialize unit structure |
118 | | */ |
119 | 0 | up = emalloc_zero(sizeof(*up)); |
120 | 0 | pp = peer->procptr; |
121 | 0 | pp->unitptr = up; |
122 | 0 | pp->io.clock_recv = chronolog_receive; |
123 | 0 | pp->io.srcclock = peer; |
124 | 0 | pp->io.datalen = 0; |
125 | 0 | pp->io.fd = fd; |
126 | 0 | if (!io_addclock(&pp->io)) { |
127 | 0 | close(fd); |
128 | 0 | pp->io.fd = -1; |
129 | 0 | free(up); |
130 | 0 | pp->unitptr = NULL; |
131 | 0 | return (0); |
132 | 0 | } |
133 | | |
134 | | /* |
135 | | * Initialize miscellaneous variables |
136 | | */ |
137 | 0 | peer->precision = PRECISION; |
138 | 0 | pp->clockdesc = DESCRIPTION; |
139 | 0 | memcpy((char *)&pp->refid, REFID, 4); |
140 | 0 | return (1); |
141 | 0 | } |
142 | | |
143 | | |
144 | | /* |
145 | | * chronolog_shutdown - shut down the clock |
146 | | */ |
147 | | static void |
148 | | chronolog_shutdown( |
149 | | int unit, |
150 | | struct peer *peer |
151 | | ) |
152 | 0 | { |
153 | 0 | register struct chronolog_unit *up; |
154 | 0 | struct refclockproc *pp; |
155 | |
|
156 | 0 | pp = peer->procptr; |
157 | 0 | up = pp->unitptr; |
158 | 0 | if (-1 != pp->io.fd) |
159 | 0 | io_closeclock(&pp->io); |
160 | 0 | if (NULL != up) |
161 | 0 | free(up); |
162 | 0 | } |
163 | | |
164 | | |
165 | | /* |
166 | | * chronolog_receive - receive data from the serial interface |
167 | | */ |
168 | | static void |
169 | | chronolog_receive( |
170 | | struct recvbuf *rbufp |
171 | | ) |
172 | 0 | { |
173 | 0 | struct chronolog_unit *up; |
174 | 0 | struct refclockproc *pp; |
175 | 0 | struct peer *peer; |
176 | |
|
177 | 0 | l_fp trtmp; /* arrival timestamp */ |
178 | 0 | int hours; /* hour-of-day */ |
179 | 0 | int minutes; /* minutes-past-the-hour */ |
180 | 0 | int seconds; /* seconds */ |
181 | 0 | int temp; /* int temp */ |
182 | 0 | int got_good; /* got a good time flag */ |
183 | | |
184 | | /* |
185 | | * Initialize pointers and read the timecode and timestamp |
186 | | */ |
187 | 0 | peer = rbufp->recv_peer; |
188 | 0 | pp = peer->procptr; |
189 | 0 | up = pp->unitptr; |
190 | 0 | temp = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &trtmp); |
191 | |
|
192 | 0 | if (temp == 0) { |
193 | 0 | if (up->tcswitch == 0) { |
194 | 0 | up->tcswitch = 1; |
195 | 0 | up->laststamp = trtmp; |
196 | 0 | } else |
197 | 0 | up->tcswitch = 0; |
198 | 0 | return; |
199 | 0 | } |
200 | 0 | pp->lencode = temp; |
201 | 0 | pp->lastrec = up->laststamp; |
202 | 0 | up->laststamp = trtmp; |
203 | 0 | up->tcswitch = 1; |
204 | |
|
205 | 0 | #ifdef DEBUG |
206 | 0 | if (debug) |
207 | 0 | printf("chronolog: timecode %d %s\n", pp->lencode, |
208 | 0 | pp->a_lastcode); |
209 | 0 | #endif |
210 | | |
211 | | /* |
212 | | * We get down to business. Check the timecode format and decode |
213 | | * its contents. This code uses the first character to see whether |
214 | | * we're looking at a date or a time. We store data data across |
215 | | * calls since it is transmitted a few seconds ahead of the |
216 | | * timestamp. |
217 | | */ |
218 | 0 | got_good=0; |
219 | 0 | if (sscanf(pp->a_lastcode, "Y %d/%d/%d", &up->year,&up->month,&up->day)) |
220 | 0 | { |
221 | | /* |
222 | | * Y2K convert the 2-digit year |
223 | | */ |
224 | 0 | up->year = up->year >= 69 ? up->year : up->year + 100; |
225 | 0 | return; |
226 | 0 | } |
227 | 0 | if (sscanf(pp->a_lastcode,"Z %02d:%02d:%02d", |
228 | 0 | &hours,&minutes,&seconds) == 3) |
229 | 0 | { |
230 | 0 | #ifdef GET_LOCALTIME |
231 | 0 | struct tm local; |
232 | 0 | struct tm *gmtp; |
233 | 0 | time_t unixtime; |
234 | 0 | int adjyear; |
235 | 0 | int adjmon; |
236 | | |
237 | | /* |
238 | | * Convert to GMT for sites that distribute localtime. This |
239 | | * means we have to do Y2K conversion on the 2-digit year; |
240 | | * otherwise, we get the time wrong. |
241 | | */ |
242 | | |
243 | 0 | memset(&local, 0, sizeof(local)); |
244 | |
|
245 | 0 | local.tm_year = up->year; |
246 | 0 | local.tm_mon = up->month-1; |
247 | 0 | local.tm_mday = up->day; |
248 | 0 | local.tm_hour = hours; |
249 | 0 | local.tm_min = minutes; |
250 | 0 | local.tm_sec = seconds; |
251 | 0 | local.tm_isdst = -1; |
252 | |
|
253 | 0 | unixtime = mktime (&local); |
254 | 0 | if ((gmtp = gmtime (&unixtime)) == NULL) |
255 | 0 | { |
256 | 0 | refclock_report (peer, CEVNT_FAULT); |
257 | 0 | return; |
258 | 0 | } |
259 | 0 | adjyear = gmtp->tm_year+1900; |
260 | 0 | adjmon = gmtp->tm_mon+1; |
261 | 0 | pp->day = ymd2yd (adjyear, adjmon, gmtp->tm_mday); |
262 | 0 | pp->hour = gmtp->tm_hour; |
263 | 0 | pp->minute = gmtp->tm_min; |
264 | 0 | pp->second = gmtp->tm_sec; |
265 | 0 | #ifdef DEBUG |
266 | 0 | if (debug) |
267 | 0 | printf ("time is %04d/%02d/%02d %02d:%02d:%02d UTC\n", |
268 | 0 | adjyear,adjmon,gmtp->tm_mday,pp->hour,pp->minute, |
269 | 0 | pp->second); |
270 | 0 | #endif |
271 | | |
272 | | #else |
273 | | /* |
274 | | * For more rational sites distributing UTC |
275 | | */ |
276 | | pp->day = ymd2yd(year+1900,month,day); |
277 | | pp->hour = hours; |
278 | | pp->minute = minutes; |
279 | | pp->second = seconds; |
280 | | |
281 | | #endif |
282 | 0 | got_good=1; |
283 | 0 | } |
284 | | |
285 | 0 | if (!got_good) |
286 | 0 | return; |
287 | | |
288 | | |
289 | | /* |
290 | | * Process the new sample in the median filter and determine the |
291 | | * timecode timestamp. |
292 | | */ |
293 | 0 | if (!refclock_process(pp)) { |
294 | 0 | refclock_report(peer, CEVNT_BADTIME); |
295 | 0 | return; |
296 | 0 | } |
297 | 0 | pp->lastref = pp->lastrec; |
298 | 0 | refclock_receive(peer); |
299 | 0 | record_clock_stats(&peer->srcadr, pp->a_lastcode); |
300 | 0 | up->lasthour = (u_char)pp->hour; |
301 | 0 | } |
302 | | |
303 | | |
304 | | /* |
305 | | * chronolog_poll - called by the transmit procedure |
306 | | */ |
307 | | static void |
308 | | chronolog_poll( |
309 | | int unit, |
310 | | struct peer *peer |
311 | | ) |
312 | 0 | { |
313 | | /* |
314 | | * Time to poll the clock. The Chrono-log clock is supposed to |
315 | | * respond to a 'T' by returning a timecode in the format(s) |
316 | | * specified above. Ours does (can?) not, but this seems to be |
317 | | * an installation-specific problem. This code is dyked out, |
318 | | * but may be re-enabled if anyone ever finds a Chrono-log that |
319 | | * actually listens to this command. |
320 | | */ |
321 | | #if 0 |
322 | | register struct chronolog_unit *up; |
323 | | struct refclockproc *pp; |
324 | | char pollchar; |
325 | | |
326 | | pp = peer->procptr; |
327 | | up = pp->unitptr; |
328 | | if (peer->burst == 0 && peer->reach == 0) |
329 | | refclock_report(peer, CEVNT_TIMEOUT); |
330 | | if (up->linect > 0) |
331 | | pollchar = 'R'; |
332 | | else |
333 | | pollchar = 'T'; |
334 | | if (write(pp->io.fd, &pollchar, 1) != 1) |
335 | | refclock_report(peer, CEVNT_FAULT); |
336 | | else |
337 | | pp->polls++; |
338 | | #endif |
339 | 0 | } |
340 | | |
341 | | #else |
342 | | int refclock_chronolog_bs; |
343 | | #endif /* REFCLOCK */ |