]> git.ipfire.org Git - thirdparty/util-linux.git/blob - sys-utils/hwclock.c
Merge branch 'usage-part1' of https://github.com/rudimeier/util-linux
[thirdparty/util-linux.git] / sys-utils / hwclock.c
1 /*
2 * hwclock.c
3 *
4 * clock.c was written by Charles Hedrick, hedrick@cs.rutgers.edu, Apr 1992
5 * Modified for clock adjustments - Rob Hooft <hooft@chem.ruu.nl>, Nov 1992
6 * Improvements by Harald Koenig <koenig@nova.tat.physik.uni-tuebingen.de>
7 * and Alan Modra <alan@spri.levels.unisa.edu.au>.
8 *
9 * Major rewrite by Bryan Henderson <bryanh@giraffe-data.com>, 96.09.19.
10 * The new program is called hwclock. New features:
11 *
12 * - You can set the hardware clock without also modifying the system
13 * clock.
14 * - You can read and set the clock with finer than 1 second precision.
15 * - When you set the clock, hwclock automatically refigures the drift
16 * rate, based on how far off the clock was before you set it.
17 *
18 * Reshuffled things, added sparc code, and re-added alpha stuff
19 * by David Mosberger <davidm@azstarnet.com>
20 * and Jay Estabrook <jestabro@amt.tay1.dec.com>
21 * and Martin Ostermann <ost@coments.rwth-aachen.de>, aeb@cwi.nl, 990212.
22 *
23 * Fix for Award 2094 bug, Dave Coffin (dcoffin@shore.net) 11/12/98
24 * Change of local time handling, Stefan Ring <e9725446@stud3.tuwien.ac.at>
25 * Change of adjtime handling, James P. Rutledge <ao112@rgfn.epcc.edu>.
26 *
27 * Distributed under GPL
28 */
29 /*
30 * Explanation of `adjusting' (Rob Hooft):
31 *
32 * The problem with my machine is that its CMOS clock is 10 seconds
33 * per day slow. With this version of clock.c, and my '/etc/rc.local'
34 * reading '/etc/clock -au' instead of '/etc/clock -u -s', this error
35 * is automatically corrected at every boot.
36 *
37 * To do this job, the program reads and writes the file '/etc/adjtime'
38 * to determine the correction, and to save its data. In this file are
39 * three numbers:
40 *
41 * 1) the correction in seconds per day. (So if your clock runs 5
42 * seconds per day fast, the first number should read -5.0)
43 * 2) the number of seconds since 1/1/1970 the last time the program
44 * was used
45 * 3) the remaining part of a second which was leftover after the last
46 * adjustment
47 *
48 * Installation and use of this program:
49 *
50 * a) create a file '/etc/adjtime' containing as the first and only
51 * line: '0.0 0 0.0'
52 * b) run 'clock -au' or 'clock -a', depending on whether your cmos is
53 * in universal or local time. This updates the second number.
54 * c) set your system time using the 'date' command.
55 * d) update your cmos time using 'clock -wu' or 'clock -w'
56 * e) replace the first number in /etc/adjtime by your correction.
57 * f) put the command 'clock -au' or 'clock -a' in your '/etc/rc.local'
58 */
59
60 #include <errno.h>
61 #include <getopt.h>
62 #include <limits.h>
63 #include <math.h>
64 #include <stdio.h>
65 #include <stdlib.h>
66 #include <string.h>
67 #include <sysexits.h>
68 #include <sys/stat.h>
69 #include <sys/time.h>
70 #include <time.h>
71 #include <unistd.h>
72
73 #define OPTUTILS_EXIT_CODE EX_USAGE
74
75 #include "c.h"
76 #include "closestream.h"
77 #include "nls.h"
78 #include "optutils.h"
79 #include "pathnames.h"
80 #include "strutils.h"
81 #include "hwclock.h"
82 #include "timeutils.h"
83 #include "env.h"
84 #include "xalloc.h"
85
86 #ifdef HAVE_LIBAUDIT
87 #include <libaudit.h>
88 static int hwaudit_fd = -1;
89 #endif
90
91 /* The struct that holds our hardware access routines */
92 static struct clock_ops *ur;
93
94 /* Maximal clock adjustment in seconds per day.
95 (adjtime() glibc call has 2145 seconds limit on i386, so it is good enough for us as well,
96 43219 is a maximal safe value preventing exact_adjustment overflow.) */
97 #define MAX_DRIFT 2145.0
98
99 struct adjtime {
100 /*
101 * This is information we keep in the adjtime file that tells us how
102 * to do drift corrections. Elements are all straight from the
103 * adjtime file, so see documentation of that file for details.
104 * Exception is <dirty>, which is an indication that what's in this
105 * structure is not what's in the disk file (because it has been
106 * updated since read from the disk file).
107 */
108 bool dirty;
109 /* line 1 */
110 double drift_factor;
111 time_t last_adj_time;
112 double not_adjusted;
113 /* line 2 */
114 time_t last_calib_time;
115 /*
116 * The most recent time that we set the clock from an external
117 * authority (as opposed to just doing a drift adjustment)
118 */
119 /* line 3 */
120 enum a_local_utc { UTC = 0, LOCAL, UNKNOWN } local_utc;
121 /*
122 * To which time zone, local or UTC, we most recently set the
123 * hardware clock.
124 */
125 };
126
127 /*
128 * time_t to timeval conversion.
129 */
130 static struct timeval t2tv(time_t timet)
131 {
132 struct timeval rettimeval;
133
134 rettimeval.tv_sec = timet;
135 rettimeval.tv_usec = 0;
136 return rettimeval;
137 }
138
139 /*
140 * The difference in seconds between two times in "timeval" format.
141 */
142 double time_diff(struct timeval subtrahend, struct timeval subtractor)
143 {
144 return (subtrahend.tv_sec - subtractor.tv_sec)
145 + (subtrahend.tv_usec - subtractor.tv_usec) / 1E6;
146 }
147
148 /*
149 * The time, in "timeval" format, which is <increment> seconds after the
150 * time <addend>. Of course, <increment> may be negative.
151 */
152 static struct timeval time_inc(struct timeval addend, double increment)
153 {
154 struct timeval newtime;
155
156 newtime.tv_sec = addend.tv_sec + (int)increment;
157 newtime.tv_usec = addend.tv_usec + (increment - (int)increment) * 1E6;
158
159 /*
160 * Now adjust it so that the microsecond value is between 0 and 1
161 * million.
162 */
163 if (newtime.tv_usec < 0) {
164 newtime.tv_usec += 1E6;
165 newtime.tv_sec -= 1;
166 } else if (newtime.tv_usec >= 1E6) {
167 newtime.tv_usec -= 1E6;
168 newtime.tv_sec += 1;
169 }
170 return newtime;
171 }
172
173 static bool
174 hw_clock_is_utc(const struct hwclock_control *ctl,
175 const struct adjtime adjtime)
176 {
177 bool ret;
178
179 if (ctl->utc)
180 ret = TRUE; /* --utc explicitly given on command line */
181 else if (ctl->local_opt)
182 ret = FALSE; /* --localtime explicitly given */
183 else
184 /* get info from adjtime file - default is UTC */
185 ret = (adjtime.local_utc != LOCAL);
186 if (ctl->debug)
187 printf(_("Assuming hardware clock is kept in %s time.\n"),
188 ret ? _("UTC") : _("local"));
189 return ret;
190 }
191
192 /*
193 * Read the adjustment parameters out of the /etc/adjtime file.
194 *
195 * Return them as the adjtime structure <*adjtime_p>. If there is no
196 * /etc/adjtime file, return defaults. If values are missing from the file,
197 * return defaults for them.
198 *
199 * return value 0 if all OK, !=0 otherwise.
200 */
201 static int read_adjtime(const struct hwclock_control *ctl,
202 struct adjtime *adjtime_p)
203 {
204 FILE *adjfile;
205 char line1[81]; /* String: first line of adjtime file */
206 char line2[81]; /* String: second line of adjtime file */
207 char line3[81]; /* String: third line of adjtime file */
208
209 if (access(ctl->adj_file_name, R_OK) != 0)
210 return 0;
211
212 adjfile = fopen(ctl->adj_file_name, "r"); /* open file for reading */
213 if (adjfile == NULL) {
214 warn(_("cannot open %s"), ctl->adj_file_name);
215 return EX_OSFILE;
216 }
217
218 if (!fgets(line1, sizeof(line1), adjfile))
219 line1[0] = '\0'; /* In case fgets fails */
220 if (!fgets(line2, sizeof(line2), adjfile))
221 line2[0] = '\0'; /* In case fgets fails */
222 if (!fgets(line3, sizeof(line3), adjfile))
223 line3[0] = '\0'; /* In case fgets fails */
224
225 fclose(adjfile);
226
227 sscanf(line1, "%lf %ld %lf",
228 &adjtime_p->drift_factor,
229 &adjtime_p->last_adj_time,
230 &adjtime_p->not_adjusted);
231
232 sscanf(line2, "%ld", &adjtime_p->last_calib_time);
233
234 if (!strcmp(line3, "UTC\n")) {
235 adjtime_p->local_utc = UTC;
236 } else if (!strcmp(line3, "LOCAL\n")) {
237 adjtime_p->local_utc = LOCAL;
238 } else {
239 adjtime_p->local_utc = UNKNOWN;
240 if (line3[0]) {
241 warnx(_("Warning: unrecognized third line in adjtime file\n"
242 "(Expected: `UTC' or `LOCAL' or nothing.)"));
243 }
244 }
245
246 if (ctl->debug) {
247 printf(_
248 ("Last drift adjustment done at %ld seconds after 1969\n"),
249 (long)adjtime_p->last_adj_time);
250 printf(_("Last calibration done at %ld seconds after 1969\n"),
251 (long)adjtime_p->last_calib_time);
252 printf(_("Hardware clock is on %s time\n"),
253 (adjtime_p->local_utc ==
254 LOCAL) ? _("local") : (adjtime_p->local_utc ==
255 UTC) ? _("UTC") : _("unknown"));
256 }
257
258 return 0;
259 }
260
261 /*
262 * Wait until the falling edge of the Hardware Clock's update flag so that
263 * any time that is read from the clock immediately after we return will be
264 * exact.
265 *
266 * The clock only has 1 second precision, so it gives the exact time only
267 * once per second, right on the falling edge of the update flag.
268 *
269 * We wait (up to one second) either blocked waiting for an rtc device or in
270 * a CPU spin loop. The former is probably not very accurate.
271 *
272 * Return 0 if it worked, nonzero if it didn't.
273 */
274 static int synchronize_to_clock_tick(const struct hwclock_control *ctl)
275 {
276 int rc;
277
278 if (ctl->debug)
279 printf(_("Waiting for clock tick...\n"));
280
281 rc = ur->synchronize_to_clock_tick(ctl);
282
283 if (ctl->debug) {
284 if (rc)
285 printf(_("...synchronization failed\n"));
286 else
287 printf(_("...got clock tick\n"));
288 }
289
290 return rc;
291 }
292
293 /*
294 * Convert a time in broken down format (hours, minutes, etc.) into standard
295 * unix time (seconds into epoch). Return it as *systime_p.
296 *
297 * The broken down time is argument <tm>. This broken down time is either
298 * in local time zone or UTC, depending on value of logical argument
299 * "universal". True means it is in UTC.
300 *
301 * If the argument contains values that do not constitute a valid time, and
302 * mktime() recognizes this, return *valid_p == false and *systime_p
303 * undefined. However, mktime() sometimes goes ahead and computes a
304 * fictional time "as if" the input values were valid, e.g. if they indicate
305 * the 31st day of April, mktime() may compute the time of May 1. In such a
306 * case, we return the same fictional value mktime() does as *systime_p and
307 * return *valid_p == true.
308 */
309 static void
310 mktime_tz(const struct hwclock_control *ctl, struct tm tm,
311 bool *valid_p, time_t *systime_p)
312 {
313 if (ctl->universal)
314 *systime_p = timegm(&tm);
315 else
316 *systime_p = mktime(&tm);
317 if (*systime_p == -1) {
318 /*
319 * This apparently (not specified in mktime() documentation)
320 * means the 'tm' structure does not contain valid values
321 * (however, not containing valid values does _not_ imply
322 * mktime() returns -1).
323 */
324 *valid_p = FALSE;
325 if (ctl->debug)
326 printf(_("Invalid values in hardware clock: "
327 "%4d/%.2d/%.2d %.2d:%.2d:%.2d\n"),
328 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
329 tm.tm_hour, tm.tm_min, tm.tm_sec);
330 } else {
331 *valid_p = TRUE;
332 if (ctl->debug)
333 printf(_
334 ("Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = "
335 "%ld seconds since 1969\n"), tm.tm_year + 1900,
336 tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min,
337 tm.tm_sec, (long)*systime_p);
338 }
339 }
340
341 /*
342 * Read the hardware clock and return the current time via <tm> argument.
343 *
344 * Use the method indicated by <method> argument to access the hardware
345 * clock.
346 */
347 static int
348 read_hardware_clock(const struct hwclock_control *ctl,
349 bool * valid_p, time_t *systime_p)
350 {
351 struct tm tm;
352 int err;
353
354 err = ur->read_hardware_clock(ctl, &tm);
355 if (err)
356 return err;
357
358 if (ctl->debug)
359 printf(_
360 ("Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"),
361 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour,
362 tm.tm_min, tm.tm_sec);
363 mktime_tz(ctl, tm, valid_p, systime_p);
364
365 return 0;
366 }
367
368 /*
369 * Set the Hardware Clock to the time <newtime>, in local time zone or UTC,
370 * according to <universal>.
371 */
372 static void
373 set_hardware_clock(const struct hwclock_control *ctl, const time_t newtime)
374 {
375 struct tm new_broken_time;
376 /*
377 * Time to which we will set Hardware Clock, in broken down format,
378 * in the time zone of caller's choice
379 */
380
381 if (ctl->universal)
382 new_broken_time = *gmtime(&newtime);
383 else
384 new_broken_time = *localtime(&newtime);
385
386 if (ctl->debug)
387 printf(_("Setting Hardware Clock to %.2d:%.2d:%.2d "
388 "= %ld seconds since 1969\n"),
389 new_broken_time.tm_hour, new_broken_time.tm_min,
390 new_broken_time.tm_sec, (long)newtime);
391
392 if (ctl->testing)
393 printf(_("Test mode: clock was not changed\n"));
394 else
395 ur->set_hardware_clock(ctl, &new_broken_time);
396 }
397
398 /*
399 * Set the Hardware Clock to the time "sethwtime", in local time zone or
400 * UTC, according to "universal".
401 *
402 * Wait for a fraction of a second so that "sethwtime" is the value of the
403 * Hardware Clock as of system time "refsystime", which is in the past. For
404 * example, if "sethwtime" is 14:03:05 and "refsystime" is 12:10:04.5 and
405 * the current system time is 12:10:06.0: Wait .5 seconds (to make exactly 2
406 * seconds since "refsystime") and then set the Hardware Clock to 14:03:07,
407 * thus getting a precise and retroactive setting of the clock.
408 *
409 * (Don't be confused by the fact that the system clock and the Hardware
410 * Clock differ by two hours in the above example. That's just to remind you
411 * that there are two independent time scales here).
412 *
413 * This function ought to be able to accept set times as fractional times.
414 * Idea for future enhancement.
415 */
416 static void
417 set_hardware_clock_exact(const struct hwclock_control *ctl,
418 const time_t sethwtime,
419 const struct timeval refsystime)
420 {
421 /*
422 * The Hardware Clock can only be set to any integer time plus one
423 * half second. The integer time is required because there is no
424 * interface to set or get a fractional second. The additional half
425 * second is because the Hardware Clock updates to the following
426 * second precisely 500 ms (not 1 second!) after you release the
427 * divider reset (after setting the new time) - see description of
428 * DV2, DV1, DV0 in Register A in the MC146818A data sheet (and note
429 * that although that document doesn't say so, real-world code seems
430 * to expect that the SET bit in Register B functions the same way).
431 * That means that, e.g., when you set the clock to 1:02:03, it
432 * effectively really sets it to 1:02:03.5, because it will update to
433 * 1:02:04 only half a second later. Our caller passes the desired
434 * integer Hardware Clock time in sethwtime, and the corresponding
435 * system time (which may have a fractional part, and which may or may
436 * not be the same!) in refsystime. In an ideal situation, we would
437 * then apply sethwtime to the Hardware Clock at refsystime+500ms, so
438 * that when the Hardware Clock ticks forward to sethwtime+1s half a
439 * second later at refsystime+1000ms, everything is in sync. So we
440 * spin, waiting for gettimeofday() to return a time at or after that
441 * time (refsystime+500ms) up to a tolerance value, initially 1ms. If
442 * we miss that time due to being preempted for some other process,
443 * then we increase the margin a little bit (initially 1ms, doubling
444 * each time), add 1 second (or more, if needed to get a time that is
445 * in the future) to both the time for which we are waiting and the
446 * time that we will apply to the Hardware Clock, and start waiting
447 * again.
448 *
449 * For example, the caller requests that we set the Hardware Clock to
450 * 1:02:03, with reference time (current system time) = 6:07:08.250.
451 * We want the Hardware Clock to update to 1:02:04 at 6:07:09.250 on
452 * the system clock, and the first such update will occur 0.500
453 * seconds after we write to the Hardware Clock, so we spin until the
454 * system clock reads 6:07:08.750. If we get there, great, but let's
455 * imagine the system is so heavily loaded that our process is
456 * preempted and by the time we get to run again, the system clock
457 * reads 6:07:11.990. We now want to wait until the next xx:xx:xx.750
458 * time, which is 6:07:12.750 (4.5 seconds after the reference time),
459 * at which point we will set the Hardware Clock to 1:02:07 (4 seconds
460 * after the originally requested time). If we do that successfully,
461 * then at 6:07:13.250 (5 seconds after the reference time), the
462 * Hardware Clock will update to 1:02:08 (5 seconds after the
463 * originally requested time), and all is well thereafter.
464 */
465
466 time_t newhwtime = sethwtime;
467 double target_time_tolerance_secs = 0.001; /* initial value */
468 double tolerance_incr_secs = 0.001; /* initial value */
469 const double RTC_SET_DELAY_SECS = 0.5; /* 500 ms */
470 const struct timeval RTC_SET_DELAY_TV = { 0, RTC_SET_DELAY_SECS * 1E6 };
471
472 struct timeval targetsystime;
473 struct timeval nowsystime;
474 struct timeval prevsystime = refsystime;
475 double deltavstarget;
476
477 timeradd(&refsystime, &RTC_SET_DELAY_TV, &targetsystime);
478
479 while (1) {
480 double ticksize;
481
482 /* FOR TESTING ONLY: inject random delays of up to 1000ms */
483 if (ctl->debug >= 10) {
484 int usec = random() % 1000000;
485 printf(_("sleeping ~%d usec\n"), usec);
486 xusleep(usec);
487 }
488
489 gettimeofday(&nowsystime, NULL);
490 deltavstarget = time_diff(nowsystime, targetsystime);
491 ticksize = time_diff(nowsystime, prevsystime);
492 prevsystime = nowsystime;
493
494 if (ticksize < 0) {
495 if (ctl->debug)
496 printf(_("time jumped backward %.6f seconds "
497 "to %ld.%06ld - retargeting\n"),
498 ticksize, nowsystime.tv_sec,
499 nowsystime.tv_usec);
500 /* The retarget is handled at the end of the loop. */
501 } else if (deltavstarget < 0) {
502 /* deltavstarget < 0 if current time < target time */
503 if (ctl->debug >= 2)
504 printf(_("%ld.%06ld < %ld.%06ld (%.6f)\n"),
505 nowsystime.tv_sec,
506 nowsystime.tv_usec,
507 targetsystime.tv_sec,
508 targetsystime.tv_usec,
509 deltavstarget);
510 continue; /* not there yet - keep spinning */
511 } else if (deltavstarget <= target_time_tolerance_secs) {
512 /* Close enough to the target time; done waiting. */
513 break;
514 } else /* (deltavstarget > target_time_tolerance_secs) */ {
515 /*
516 * We missed our window. Increase the tolerance and
517 * aim for the next opportunity.
518 */
519 if (ctl->debug)
520 printf(_("missed it - %ld.%06ld is too far "
521 "past %ld.%06ld (%.6f > %.6f)\n"),
522 nowsystime.tv_sec,
523 nowsystime.tv_usec,
524 targetsystime.tv_sec,
525 targetsystime.tv_usec,
526 deltavstarget,
527 target_time_tolerance_secs);
528 target_time_tolerance_secs += tolerance_incr_secs;
529 tolerance_incr_secs *= 2;
530 }
531
532 /*
533 * Aim for the same offset (tv_usec) within the second in
534 * either the current second (if that offset hasn't arrived
535 * yet), or the next second.
536 */
537 if (nowsystime.tv_usec < targetsystime.tv_usec)
538 targetsystime.tv_sec = nowsystime.tv_sec;
539 else
540 targetsystime.tv_sec = nowsystime.tv_sec + 1;
541 }
542
543 newhwtime = sethwtime
544 + (int)(time_diff(nowsystime, refsystime)
545 - RTC_SET_DELAY_SECS /* don't count this */
546 + 0.5 /* for rounding */);
547 if (ctl->debug)
548 printf(_("%ld.%06ld is close enough to %ld.%06ld (%.6f < %.6f)\n"
549 "Set RTC to %ld (%ld + %d; refsystime = %ld.%06ld)\n"),
550 nowsystime.tv_sec, nowsystime.tv_usec,
551 targetsystime.tv_sec, targetsystime.tv_usec,
552 deltavstarget, target_time_tolerance_secs,
553 newhwtime, sethwtime,
554 (int)(newhwtime - sethwtime),
555 refsystime.tv_sec, refsystime.tv_usec);
556
557 set_hardware_clock(ctl, newhwtime);
558 }
559
560 /*
561 * Put the time "hwctime" on standard output in display format. Except if
562 * hclock_valid == false, just tell standard output that we don't know what
563 * time it is.
564 */
565 static void
566 display_time(const bool hclock_valid, struct timeval hwctime)
567 {
568 if (!hclock_valid)
569 warnx(_
570 ("The Hardware Clock registers contain values that are "
571 "either invalid (e.g. 50th day of month) or beyond the range "
572 "we can handle (e.g. Year 2095)."));
573 else {
574 char buf[ISO_8601_BUFSIZ];
575
576 strtimeval_iso(&hwctime, ISO_8601_DATE|ISO_8601_TIME|ISO_8601_DOTUSEC|
577 ISO_8601_TIMEZONE|ISO_8601_SPACE,
578 buf, sizeof(buf));
579 printf("%s\n", buf);
580 }
581 }
582
583 /*
584 * Set the System Clock to time 'newtime'.
585 *
586 * Also set the kernel time zone value to the value indicated by the TZ
587 * environment variable and/or /usr/lib/zoneinfo/, interpreted as tzset()
588 * would interpret them.
589 *
590 * If this is the first call of settimeofday since boot, then this also sets
591 * the kernel variable persistent_clock_is_local so that NTP 11 minute mode
592 * will update the Hardware Clock with the proper timescale. If the Hardware
593 * Clock's timescale configuration is changed then a reboot is required for
594 * persistent_clock_is_local to be updated.
595 *
596 * EXCEPT: if hclock_valid is false, just issue an error message saying
597 * there is no valid time in the Hardware Clock to which to set the system
598 * time.
599 *
600 * If 'testing' is true, don't actually update anything -- just say we would
601 * have.
602 */
603 static int
604 set_system_clock(const struct hwclock_control *ctl, const bool hclock_valid,
605 const struct timeval newtime)
606 {
607 int retcode;
608
609 if (!hclock_valid) {
610 warnx(_
611 ("The Hardware Clock does not contain a valid time, so "
612 "we cannot set the System Time from it."));
613 retcode = 1;
614 } else {
615 const struct timeval *tv_null = NULL;
616 struct tm *broken;
617 int minuteswest;
618 int rc = 0;
619
620 broken = localtime(&newtime.tv_sec);
621 #ifdef HAVE_TM_GMTOFF
622 minuteswest = -broken->tm_gmtoff / 60; /* GNU extension */
623 #else
624 minuteswest = timezone / 60;
625 if (broken->tm_isdst)
626 minuteswest -= 60;
627 #endif
628
629 if (ctl->debug) {
630 printf(_("Calling settimeofday:\n"));
631 printf(_("\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"),
632 newtime.tv_sec, newtime.tv_usec);
633 printf(_("\ttz.tz_minuteswest = %d\n"), minuteswest);
634 }
635 if (ctl->testing) {
636 printf(_
637 ("Test mode: clock was not changed\n"));
638 retcode = 0;
639 } else {
640 const struct timezone tz = { minuteswest, 0 };
641
642 /* Set kernel persistent_clock_is_local so that 11 minute
643 * mode does not clobber the Hardware Clock with UTC. This
644 * is only available on first call of settimeofday after boot.
645 */
646 if (!ctl->universal)
647 rc = settimeofday(tv_null, &tz);
648 if (!rc)
649 rc = settimeofday(&newtime, &tz);
650 if (rc) {
651 if (errno == EPERM) {
652 warnx(_
653 ("Must be superuser to set system clock."));
654 retcode = EX_NOPERM;
655 } else {
656 warn(_("settimeofday() failed"));
657 retcode = 1;
658 }
659 } else
660 retcode = 0;
661 }
662 }
663 return retcode;
664 }
665
666 /*
667 * Reset the System Clock from local time to UTC, based on its current value
668 * and the timezone unless universal is TRUE.
669 *
670 * Also set the kernel time zone value to the value indicated by the TZ
671 * environment variable and/or /usr/lib/zoneinfo/, interpreted as tzset()
672 * would interpret them.
673 *
674 * If 'testing' is true, don't actually update anything -- just say we would
675 * have.
676 */
677 static int set_system_clock_timezone(const struct hwclock_control *ctl)
678 {
679 int retcode;
680 struct timeval tv;
681 struct tm *broken;
682 int minuteswest;
683
684 gettimeofday(&tv, NULL);
685 if (ctl->debug) {
686 struct tm broken_time;
687 char ctime_now[200];
688
689 broken_time = *gmtime(&tv.tv_sec);
690 strftime(ctime_now, sizeof(ctime_now), "%Y/%m/%d %H:%M:%S",
691 &broken_time);
692 printf(_("Current system time: %ld = %s\n"), tv.tv_sec,
693 ctime_now);
694 }
695
696 broken = localtime(&tv.tv_sec);
697 #ifdef HAVE_TM_GMTOFF
698 minuteswest = -broken->tm_gmtoff / 60; /* GNU extension */
699 #else
700 minuteswest = timezone / 60;
701 if (broken->tm_isdst)
702 minuteswest -= 60;
703 #endif
704
705 if (ctl->debug) {
706 struct tm broken_time;
707 char ctime_now[200];
708
709 gettimeofday(&tv, NULL);
710 if (!ctl->universal)
711 tv.tv_sec += minuteswest * 60;
712
713 broken_time = *gmtime(&tv.tv_sec);
714 strftime(ctime_now, sizeof(ctime_now), "%Y/%m/%d %H:%M:%S",
715 &broken_time);
716
717 printf(_("Calling settimeofday:\n"));
718 printf(_("\tUTC: %s\n"), ctime_now);
719 printf(_("\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"),
720 tv.tv_sec, tv.tv_usec);
721 printf(_("\ttz.tz_minuteswest = %d\n"), minuteswest);
722 }
723 if (ctl->testing) {
724 printf(_
725 ("Test mode: clock was not changed\n"));
726 retcode = 0;
727 } else {
728 const struct timezone tz_utc = { 0, 0 };
729 const struct timezone tz = { minuteswest, 0 };
730 const struct timeval *tv_null = NULL;
731 int rc = 0;
732
733 /* The first call to settimeofday after boot will assume the systemtime
734 * is in localtime, and adjust it according to the given timezone to
735 * compensate. If the systemtime is in fact in UTC, then this is wrong
736 * so we first do a dummy call to make sure the time is not shifted.
737 */
738 if (ctl->universal)
739 rc = settimeofday(tv_null, &tz_utc);
740
741 /* Now we set the real timezone. Due to the above dummy call, this will
742 * only warp the systemtime if the RTC is not in UTC. */
743 if (!rc)
744 rc = settimeofday(tv_null, &tz);
745
746 if (rc) {
747 if (errno == EPERM) {
748 warnx(_
749 ("Must be superuser to set system clock."));
750 retcode = EX_NOPERM;
751 } else {
752 warn(_("settimeofday() failed"));
753 retcode = 1;
754 }
755 } else
756 retcode = 0;
757 }
758 return retcode;
759 }
760
761 /*
762 * Refresh the last calibrated and last adjusted timestamps in <*adjtime_p>
763 * to facilitate future drift calculations based on this set point.
764 *
765 * With the --update-drift option:
766 * Update the drift factor in <*adjtime_p> based on the fact that the
767 * Hardware Clock was just calibrated to <nowtime> and before that was
768 * set to the <hclocktime> time scale.
769 *
770 * EXCEPT: if <hclock_valid> is false, assume Hardware Clock was not set
771 * before to anything meaningful and regular adjustments have not been done,
772 * so don't adjust the drift factor.
773 */
774 static void
775 adjust_drift_factor(const struct hwclock_control *ctl,
776 struct adjtime *adjtime_p,
777 const struct timeval nowtime,
778 const bool hclock_valid,
779 const struct timeval hclocktime)
780 {
781 if (!ctl->update) {
782 if (ctl->debug)
783 printf(_("Not adjusting drift factor because the "
784 "--update-drift option was not used.\n"));
785 } else if (!hclock_valid) {
786 if (ctl->debug)
787 printf(_("Not adjusting drift factor because the "
788 "Hardware Clock previously contained "
789 "garbage.\n"));
790 } else if (adjtime_p->last_calib_time == 0) {
791 if (ctl->debug)
792 printf(_("Not adjusting drift factor because last "
793 "calibration time is zero,\n"
794 "so history is bad and calibration startover "
795 "is necessary.\n"));
796 } else if ((hclocktime.tv_sec - adjtime_p->last_calib_time) < 4 * 60 * 60) {
797 if (ctl->debug)
798 printf(_("Not adjusting drift factor because it has "
799 "been less than four hours since the last "
800 "calibration.\n"));
801 } else {
802 /*
803 * At adjustment time we drift correct the hardware clock
804 * according to the contents of the adjtime file and refresh
805 * its last adjusted timestamp.
806 *
807 * At calibration time we set the Hardware Clock and refresh
808 * both timestamps in <*adjtime_p>.
809 *
810 * Here, with the --update-drift option, we also update the
811 * drift factor in <*adjtime_p>.
812 *
813 * Let us do computation in doubles. (Floats almost suffice,
814 * but 195 days + 1 second equals 195 days in floats.)
815 */
816 const double sec_per_day = 24.0 * 60.0 * 60.0;
817 double factor_adjust;
818 double drift_factor;
819 struct timeval last_calib;
820
821 last_calib = t2tv(adjtime_p->last_calib_time);
822 /*
823 * Correction to apply to the current drift factor.
824 *
825 * Simplified: uncorrected_drift / days_since_calibration.
826 *
827 * hclocktime is fully corrected with the current drift factor.
828 * Its difference from nowtime is the missed drift correction.
829 */
830 factor_adjust = time_diff(nowtime, hclocktime) /
831 (time_diff(nowtime, last_calib) / sec_per_day);
832
833 drift_factor = adjtime_p->drift_factor + factor_adjust;
834 if (fabs(drift_factor) > MAX_DRIFT) {
835 if (ctl->debug)
836 printf(_("Clock drift factor was calculated as "
837 "%f seconds/day.\n"
838 "It is far too much. Resetting to zero.\n"),
839 drift_factor);
840 drift_factor = 0;
841 } else {
842 if (ctl->debug)
843 printf(_("Clock drifted %f seconds in the past "
844 "%f seconds\nin spite of a drift factor of "
845 "%f seconds/day.\n"
846 "Adjusting drift factor by %f seconds/day\n"),
847 time_diff(nowtime, hclocktime),
848 time_diff(nowtime, last_calib),
849 adjtime_p->drift_factor, factor_adjust);
850 }
851
852 adjtime_p->drift_factor = drift_factor;
853 }
854 adjtime_p->last_calib_time = nowtime.tv_sec;
855
856 adjtime_p->last_adj_time = nowtime.tv_sec;
857
858 adjtime_p->not_adjusted = 0;
859
860 adjtime_p->dirty = TRUE;
861 }
862
863 /*
864 * Calculate the drift correction currently needed for the
865 * Hardware Clock based on the last time it was adjusted,
866 * and the current drift factor, as stored in the adjtime file.
867 *
868 * The total drift adjustment needed is stored at tdrift_p.
869 *
870 */
871 static void
872 calculate_adjustment(const struct hwclock_control *ctl,
873 const double factor,
874 const time_t last_time,
875 const double not_adjusted,
876 const time_t systime, struct timeval *tdrift_p)
877 {
878 double exact_adjustment;
879
880 exact_adjustment =
881 ((double)(systime - last_time)) * factor / (24 * 60 * 60)
882 + not_adjusted;
883 tdrift_p->tv_sec = (time_t) floor(exact_adjustment);
884 tdrift_p->tv_usec = (exact_adjustment -
885 (double)tdrift_p->tv_sec) * 1E6;
886 if (ctl->debug) {
887 printf(P_("Time since last adjustment is %ld second\n",
888 "Time since last adjustment is %ld seconds\n",
889 (systime - last_time)),
890 (systime - last_time));
891 printf(_("Calculated Hardware Clock drift is %ld.%06ld seconds\n"),
892 tdrift_p->tv_sec, tdrift_p->tv_usec);
893 }
894 }
895
896 /*
897 * Write the contents of the <adjtime> structure to its disk file.
898 *
899 * But if the contents are clean (unchanged since read from disk), don't
900 * bother.
901 */
902 static void save_adjtime(const struct hwclock_control *ctl,
903 const struct adjtime *adjtime)
904 {
905 char *content; /* Stuff to write to disk file */
906 FILE *fp;
907 int err = 0;
908
909 if (!adjtime->dirty)
910 return;
911
912 xasprintf(&content, "%f %ld %f\n%ld\n%s\n",
913 adjtime->drift_factor,
914 adjtime->last_adj_time,
915 adjtime->not_adjusted,
916 adjtime->last_calib_time,
917 (adjtime->local_utc == LOCAL) ? "LOCAL" : "UTC");
918
919 if (ctl->testing) {
920 if (ctl->debug){
921 printf(_("Test mode: %s was not updated with:\n%s"),
922 ctl->adj_file_name, content);
923 }
924 free(content);
925 return;
926 }
927
928 fp = fopen(ctl->adj_file_name, "w");
929 if (fp == NULL) {
930 warn(_("Could not open file with the clock adjustment parameters "
931 "in it (%s) for writing"), ctl->adj_file_name);
932 err = 1;
933 } else if (fputs(content, fp) < 0 || close_stream(fp) != 0) {
934 warn(_("Could not update file with the clock adjustment "
935 "parameters (%s) in it"), ctl->adj_file_name);
936 err = 1;
937 }
938 free(content);
939 if (err)
940 warnx(_("Drift adjustment parameters not updated."));
941 }
942
943 /*
944 * Do the adjustment requested, by 1) setting the Hardware Clock (if
945 * necessary), and 2) updating the last-adjusted time in the adjtime
946 * structure.
947 *
948 * Do not update anything if the Hardware Clock does not currently present a
949 * valid time.
950 *
951 * <hclock_valid> means the Hardware Clock contains a valid time.
952 *
953 * <hclocktime> is the drift corrected time read from the Hardware Clock.
954 *
955 * <read_time> was the system time when the <hclocktime> was read, which due
956 * to computational delay could be a short time ago. It is used to define a
957 * trigger point for setting the Hardware Clock. The fractional part of the
958 * Hardware clock set time is subtracted from read_time to 'refer back', or
959 * delay, the trigger point. Fractional parts must be accounted for in this
960 * way, because the Hardware Clock can only be set to a whole second.
961 *
962 * <universal>: the Hardware Clock is kept in UTC.
963 *
964 * <testing>: We are running in test mode (no updating of clock).
965 *
966 */
967 static void
968 do_adjustment(const struct hwclock_control *ctl, struct adjtime *adjtime_p,
969 const bool hclock_valid, const struct timeval hclocktime,
970 const struct timeval read_time)
971 {
972 if (!hclock_valid) {
973 warnx(_("The Hardware Clock does not contain a valid time, "
974 "so we cannot adjust it."));
975 adjtime_p->last_calib_time = 0; /* calibration startover is required */
976 adjtime_p->last_adj_time = 0;
977 adjtime_p->not_adjusted = 0;
978 adjtime_p->dirty = TRUE;
979 } else if (adjtime_p->last_adj_time == 0) {
980 if (ctl->debug)
981 printf(_("Not setting clock because last adjustment time is zero, "
982 "so history is bad.\n"));
983 } else if (fabs(adjtime_p->drift_factor) > MAX_DRIFT) {
984 if (ctl->debug)
985 printf(_("Not setting clock because drift factor %f is far too high.\n"),
986 adjtime_p->drift_factor);
987 } else {
988 set_hardware_clock_exact(ctl, hclocktime.tv_sec,
989 time_inc(read_time,
990 -(hclocktime.tv_usec / 1E6)));
991 adjtime_p->last_adj_time = hclocktime.tv_sec;
992 adjtime_p->not_adjusted = 0;
993 adjtime_p->dirty = TRUE;
994 }
995 }
996
997 static void determine_clock_access_method(const struct hwclock_control *ctl)
998 {
999 ur = NULL;
1000
1001 if (ctl->directisa)
1002 ur = probe_for_cmos_clock();
1003 #ifdef __linux__
1004 if (!ur)
1005 ur = probe_for_rtc_clock(ctl);
1006 #endif
1007 if (ur) {
1008 if (ctl->debug)
1009 puts(ur->interface_name);
1010
1011 } else {
1012 if (ctl->debug)
1013 printf(_("No usable clock interface found.\n"));
1014 warnx(_("Cannot access the Hardware Clock via "
1015 "any known method."));
1016 if (!ctl->debug)
1017 warnx(_("Use the --debug option to see the "
1018 "details of our search for an access "
1019 "method."));
1020 hwclock_exit(ctl, EX_SOFTWARE);
1021 }
1022 }
1023
1024 /*
1025 * Do all the normal work of hwclock - read, set clock, etc.
1026 *
1027 * Issue output to stdout and error message to stderr where appropriate.
1028 *
1029 * Return rc == 0 if everything went OK, rc != 0 if not.
1030 */
1031 static int
1032 manipulate_clock(const struct hwclock_control *ctl, const time_t set_time,
1033 const struct timeval startup_time, struct adjtime *adjtime)
1034 {
1035 /* The time at which we read the Hardware Clock */
1036 struct timeval read_time;
1037 /*
1038 * The Hardware Clock gives us a valid time, or at
1039 * least something close enough to fool mktime().
1040 */
1041 bool hclock_valid = FALSE;
1042 /*
1043 * Tick synchronized time read from the Hardware Clock and
1044 * then drift correct for all operations except --show.
1045 */
1046 struct timeval hclocktime = { 0, 0 };
1047 /* Total Hardware Clock drift correction needed. */
1048 struct timeval tdrift;
1049 /* local return code */
1050 int rc = 0;
1051
1052 if (!ctl->systz && !ctl->predict && ur->get_permissions())
1053 return EX_NOPERM;
1054
1055 if ((ctl->set || ctl->systohc || ctl->adjust) &&
1056 (adjtime->local_utc == UTC) != ctl->universal) {
1057 adjtime->local_utc = ctl->universal ? UTC : LOCAL;
1058 adjtime->dirty = TRUE;
1059 }
1060
1061 if (ctl->show || ctl->get || ctl->adjust || ctl->hctosys
1062 || (!ctl->noadjfile && !ctl->systz && !ctl->predict)) {
1063 /* data from HW-clock are required */
1064 rc = synchronize_to_clock_tick(ctl);
1065
1066 /*
1067 * We don't error out if the user is attempting to set the
1068 * RTC and synchronization timeout happens - the RTC could
1069 * be functioning but contain invalid time data so we still
1070 * want to allow a user to set the RTC time.
1071 */
1072 if (rc == RTC_BUSYWAIT_FAILED && !ctl->set && !ctl->systohc)
1073 return EX_IOERR;
1074 gettimeofday(&read_time, NULL);
1075
1076 /*
1077 * If we can't synchronize to a clock tick,
1078 * we likely can't read from the RTC so
1079 * don't bother reading it again.
1080 */
1081 if (!rc) {
1082 rc = read_hardware_clock(ctl, &hclock_valid,
1083 &hclocktime.tv_sec);
1084 if (rc && !ctl->set && !ctl->systohc)
1085 return EX_IOERR;
1086 }
1087 }
1088 /*
1089 * Calculate Hardware Clock drift for --predict with the user
1090 * supplied --date option time, and with the time read from the
1091 * Hardware Clock for all other operations. Apply drift correction
1092 * to the Hardware Clock time for everything except --show and
1093 * --predict. For --predict negate the drift correction, because we
1094 * want to 'predict' a future Hardware Clock time that includes drift.
1095 */
1096 hclocktime = ctl->predict ? t2tv(set_time) : hclocktime;
1097 calculate_adjustment(ctl, adjtime->drift_factor,
1098 adjtime->last_adj_time,
1099 adjtime->not_adjusted,
1100 hclocktime.tv_sec, &tdrift);
1101 if (!ctl->show && !ctl->predict)
1102 hclocktime = time_inc(tdrift, hclocktime.tv_sec);
1103 if (ctl->show || ctl->get) {
1104 display_time(hclock_valid,
1105 time_inc(hclocktime, -time_diff
1106 (read_time, startup_time)));
1107 } else if (ctl->set) {
1108 set_hardware_clock_exact(ctl, set_time, startup_time);
1109 if (!ctl->noadjfile)
1110 adjust_drift_factor(ctl, adjtime,
1111 time_inc(t2tv(set_time), time_diff
1112 (read_time, startup_time)),
1113 hclock_valid, hclocktime);
1114 } else if (ctl->adjust) {
1115 if (tdrift.tv_sec > 0 || tdrift.tv_sec < -1)
1116 do_adjustment(ctl, adjtime, hclock_valid,
1117 hclocktime, read_time);
1118 else
1119 printf(_("Needed adjustment is less than one second, "
1120 "so not setting clock.\n"));
1121 } else if (ctl->systohc) {
1122 struct timeval nowtime, reftime;
1123 /*
1124 * We can only set_hardware_clock_exact to a
1125 * whole seconds time, so we set it with
1126 * reference to the most recent whole
1127 * seconds time.
1128 */
1129 gettimeofday(&nowtime, NULL);
1130 reftime.tv_sec = nowtime.tv_sec;
1131 reftime.tv_usec = 0;
1132 set_hardware_clock_exact(ctl, (time_t) reftime.tv_sec, reftime);
1133 if (!ctl->noadjfile)
1134 adjust_drift_factor(ctl, adjtime, nowtime,
1135 hclock_valid, hclocktime);
1136 } else if (ctl->hctosys) {
1137 rc = set_system_clock(ctl, hclock_valid, hclocktime);
1138 if (rc) {
1139 printf(_("Unable to set system clock.\n"));
1140 return rc;
1141 }
1142 } else if (ctl->systz) {
1143 rc = set_system_clock_timezone(ctl);
1144 if (rc) {
1145 printf(_("Unable to set system clock.\n"));
1146 return rc;
1147 }
1148 } else if (ctl->predict) {
1149 hclocktime = time_inc(hclocktime, (double)
1150 -(tdrift.tv_sec + tdrift.tv_usec / 1E6));
1151 if (ctl->debug) {
1152 printf(_
1153 ("At %ld seconds after 1969, RTC is predicted to read %ld seconds after 1969.\n"),
1154 set_time, hclocktime.tv_sec);
1155 }
1156 display_time(TRUE, hclocktime);
1157 }
1158 if (!ctl->noadjfile)
1159 save_adjtime(ctl, adjtime);
1160 return 0;
1161 }
1162
1163 /**
1164 * Get or set the kernel RTC driver's epoch on Alpha machines.
1165 * ISA machines are hard coded for 1900.
1166 */
1167 #if defined(__linux__) && defined(__alpha__)
1168 static void
1169 manipulate_epoch(const struct hwclock_control *ctl)
1170 {
1171 if (ctl->getepoch) {
1172 unsigned long epoch;
1173
1174 if (get_epoch_rtc(ctl, &epoch))
1175 warnx(_
1176 ("Unable to get the epoch value from the kernel."));
1177 else
1178 printf(_("Kernel is assuming an epoch value of %lu\n"),
1179 epoch);
1180 } else if (ctl->setepoch) {
1181 if (ctl->epoch_option == 0)
1182 warnx(_
1183 ("To set the epoch value, you must use the 'epoch' "
1184 "option to tell to what value to set it."));
1185 else if (ctl->testing)
1186 printf(_
1187 ("Not setting the epoch to %lu - testing only.\n"),
1188 ctl->epoch_option);
1189 else if (set_epoch_rtc(ctl))
1190 printf(_
1191 ("Unable to set the epoch value in the kernel.\n"));
1192 }
1193 }
1194 #endif /* __linux__ __alpha__ */
1195
1196 static void out_version(void)
1197 {
1198 printf(UTIL_LINUX_VERSION);
1199 }
1200
1201 static void __attribute__((__noreturn__))
1202 usage(const struct hwclock_control *ctl, FILE *out)
1203 {
1204 fputs(USAGE_HEADER, out);
1205 fputs(_(" hwclock [function] [option...]\n"), out);
1206
1207 fputs(USAGE_SEPARATOR, out);
1208 fputs(_("Query or set the RTC (Real Time Clock / Hardware Clock)\n"), out);
1209
1210 fputs(USAGE_FUNCTIONS, out);
1211 fputs(_(" -r, --show display the RTC time\n"), out);
1212 fputs(_(" --get display drift corrected RTC time\n"), out);
1213 fputs(_(" --set set the RTC according to --date\n"), out);
1214 fputs(_(" -s, --hctosys set the system time from the RTC\n"), out);
1215 fputs(_(" -w, --systohc set the RTC from the system time\n"), out);
1216 fputs(_(" --systz send timescale configurations to the kernel\n"), out);
1217 fputs(_(" --adjust adjust the RTC to account for systematic drift\n"), out);
1218 #if defined(__linux__) && defined(__alpha__)
1219 fputs(_(" --getepoch display the RTC epoch\n"), out);
1220 fputs(_(" --setepoch set the RTC epoch according to --epoch\n"), out);
1221 #endif
1222 fputs(_(" --predict predict the drifted RTC time according to --date\n"), out);
1223 fputs(USAGE_OPTIONS, out);
1224 fputs(_(" -u, --utc inform hwclock the RTC timescale is UTC\n"), out);
1225 fputs(_(" -l, --localtime inform hwclock the RTC timescale is Local\n"), out);
1226 fprintf(out, _(
1227 #ifdef __linux__
1228 " -f, --rtc <file> use an alternate file to %1$s\n"
1229 #endif
1230 " --directisa use the ISA bus instead of %1$s access\n"), _PATH_RTC_DEV);
1231 fputs(_(" --date <time> date/time input for --set and --predict\n"), out);
1232 #if defined(__linux__) && defined(__alpha__)
1233 fputs(_(" --epoch <year> epoch input for --setepoch\n"), out);
1234 #endif
1235 fputs(_(" --update-drift update the RTC drift factor\n"), out);
1236 fprintf(out, _(
1237 " --noadjfile do not use %1$s\n"
1238 " --adjfile <file> use an alternate file to %1$s\n"), _PATH_ADJTIME);
1239 fputs(_(" --test dry run; use -D to view what would have happened\n"), out);
1240 fputs(_(" -D, --debug use debug mode\n"), out);
1241 fputs(USAGE_SEPARATOR, out);
1242 fputs(USAGE_HELP, out);
1243 fputs(USAGE_VERSION, out);
1244 fprintf(out, USAGE_MAN_TAIL("hwclock(8)"));
1245 hwclock_exit(ctl, EXIT_SUCCESS);
1246 }
1247
1248 /*
1249 * Returns:
1250 * EX_USAGE: bad invocation
1251 * EX_NOPERM: no permission
1252 * EX_OSFILE: cannot open /dev/rtc or /etc/adjtime
1253 * EX_IOERR: ioctl error getting or setting the time
1254 * 0: OK (or not)
1255 * 1: failure
1256 */
1257 int main(int argc, char **argv)
1258 {
1259 struct hwclock_control ctl = { .show = 1 }; /* default op is show */
1260 struct timeval startup_time;
1261 struct adjtime adjtime = { 0 };
1262 struct timespec when = { 0 };
1263 /*
1264 * The time we started up, in seconds into the epoch, including
1265 * fractions.
1266 */
1267 time_t set_time = 0; /* Time to which user said to set Hardware Clock */
1268 int rc, c;
1269
1270 /* Long only options. */
1271 enum {
1272 OPT_ADJFILE = CHAR_MAX + 1,
1273 OPT_DATE,
1274 OPT_DIRECTISA,
1275 OPT_EPOCH,
1276 OPT_GET,
1277 OPT_GETEPOCH,
1278 OPT_NOADJFILE,
1279 OPT_PREDICT,
1280 OPT_SET,
1281 OPT_SETEPOCH,
1282 OPT_SYSTZ,
1283 OPT_TEST,
1284 OPT_UPDATE
1285 };
1286
1287 static const struct option longopts[] = {
1288 { "adjust", no_argument, NULL, 'a' },
1289 { "help", no_argument, NULL, 'h' },
1290 { "localtime", no_argument, NULL, 'l' },
1291 { "show", no_argument, NULL, 'r' },
1292 { "hctosys", no_argument, NULL, 's' },
1293 { "utc", no_argument, NULL, 'u' },
1294 { "version", no_argument, NULL, 'v' },
1295 { "systohc", no_argument, NULL, 'w' },
1296 { "debug", no_argument, NULL, 'D' },
1297 { "set", no_argument, NULL, OPT_SET },
1298 #if defined(__linux__) && defined(__alpha__)
1299 { "getepoch", no_argument, NULL, OPT_GETEPOCH },
1300 { "setepoch", no_argument, NULL, OPT_SETEPOCH },
1301 { "epoch", required_argument, NULL, OPT_EPOCH },
1302 #endif
1303 { "noadjfile", no_argument, NULL, OPT_NOADJFILE },
1304 { "directisa", no_argument, NULL, OPT_DIRECTISA },
1305 { "test", no_argument, NULL, OPT_TEST },
1306 { "date", required_argument, NULL, OPT_DATE },
1307 #ifdef __linux__
1308 { "rtc", required_argument, NULL, 'f' },
1309 #endif
1310 { "adjfile", required_argument, NULL, OPT_ADJFILE },
1311 { "systz", no_argument, NULL, OPT_SYSTZ },
1312 { "predict", no_argument, NULL, OPT_PREDICT },
1313 { "get", no_argument, NULL, OPT_GET },
1314 { "update-drift", no_argument, NULL, OPT_UPDATE },
1315 { NULL, 0, NULL, 0 }
1316 };
1317
1318 static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
1319 { 'a','r','s','w',
1320 OPT_GET, OPT_GETEPOCH, OPT_PREDICT,
1321 OPT_SET, OPT_SETEPOCH, OPT_SYSTZ },
1322 { 'l', 'u' },
1323 { OPT_ADJFILE, OPT_NOADJFILE },
1324 { OPT_NOADJFILE, OPT_UPDATE },
1325 { 0 }
1326 };
1327 int excl_st[ARRAY_SIZE(excl)] = UL_EXCL_STATUS_INIT;
1328
1329 /* Remember what time we were invoked */
1330 gettimeofday(&startup_time, NULL);
1331
1332 #ifdef HAVE_LIBAUDIT
1333 hwaudit_fd = audit_open();
1334 if (hwaudit_fd < 0 && !(errno == EINVAL || errno == EPROTONOSUPPORT ||
1335 errno == EAFNOSUPPORT)) {
1336 /*
1337 * You get these error codes only when the kernel doesn't
1338 * have audit compiled in.
1339 */
1340 warnx(_("Unable to connect to audit system"));
1341 return EX_NOPERM;
1342 }
1343 #endif
1344 setlocale(LC_ALL, "");
1345 #ifdef LC_NUMERIC
1346 /*
1347 * We need LC_CTYPE and LC_TIME and LC_MESSAGES, but must avoid
1348 * LC_NUMERIC since it gives problems when we write to /etc/adjtime.
1349 * - gqueri@mail.dotcom.fr
1350 */
1351 setlocale(LC_NUMERIC, "C");
1352 #endif
1353 bindtextdomain(PACKAGE, LOCALEDIR);
1354 textdomain(PACKAGE);
1355 atexit(close_stdout);
1356
1357 while ((c = getopt_long(argc, argv,
1358 "hvVDalrsuwf:", longopts, NULL)) != -1) {
1359
1360 err_exclusive_options(c, longopts, excl, excl_st);
1361
1362 switch (c) {
1363 case 'D':
1364 ctl.debug++;
1365 break;
1366 case 'a':
1367 ctl.adjust = 1;
1368 ctl.show = 0;
1369 ctl.hwaudit_on = 1;
1370 break;
1371 case 'l':
1372 ctl.local_opt = 1; /* --localtime */
1373 break;
1374 case 'r':
1375 ctl.show = 1;
1376 break;
1377 case 's':
1378 ctl.hctosys = 1;
1379 ctl.show = 0;
1380 ctl.hwaudit_on = 1;
1381 break;
1382 case 'u':
1383 ctl.utc = 1;
1384 break;
1385 case 'w':
1386 ctl.systohc = 1;
1387 ctl.show = 0;
1388 ctl.hwaudit_on = 1;
1389 break;
1390 case OPT_SET:
1391 ctl.set = 1;
1392 ctl.show = 0;
1393 ctl.hwaudit_on = 1;
1394 break;
1395 #if defined(__linux__) && defined(__alpha__)
1396 case OPT_GETEPOCH:
1397 ctl.getepoch = 1;
1398 ctl.show = 0;
1399 break;
1400 case OPT_SETEPOCH:
1401 ctl.setepoch = 1;
1402 ctl.show = 0;
1403 ctl.hwaudit_on = 1;
1404 break;
1405 case OPT_EPOCH:
1406 ctl.epoch_option = /* --epoch */
1407 strtoul_or_err(optarg, _("invalid epoch argument"));
1408 break;
1409 #endif
1410 case OPT_NOADJFILE:
1411 ctl.noadjfile = 1;
1412 break;
1413 case OPT_DIRECTISA:
1414 ctl.directisa = 1;
1415 break;
1416 case OPT_TEST:
1417 ctl.testing = 1; /* --test */
1418 break;
1419 case OPT_DATE:
1420 ctl.date_opt = optarg; /* --date */
1421 break;
1422 case OPT_ADJFILE:
1423 ctl.adj_file_name = optarg; /* --adjfile */
1424 break;
1425 case OPT_SYSTZ:
1426 ctl.systz = 1; /* --systz */
1427 ctl.show = 0;
1428 ctl.hwaudit_on = 1;
1429 break;
1430 case OPT_PREDICT:
1431 ctl.predict = 1; /* --predict */
1432 ctl.show = 0;
1433 break;
1434 case OPT_GET:
1435 ctl.get = 1; /* --get */
1436 ctl.show = 0;
1437 break;
1438 case OPT_UPDATE:
1439 ctl.update = 1; /* --update-drift */
1440 break;
1441 #ifdef __linux__
1442 case 'f':
1443 ctl.rtc_dev_name = optarg; /* --rtc */
1444 break;
1445 #endif
1446 case 'v': /* --version */
1447 case 'V':
1448 out_version();
1449 return 0;
1450 case 'h': /* --help */
1451 usage(&ctl, stdout);
1452 default:
1453 errtryhelp(EXIT_FAILURE);
1454 }
1455 }
1456
1457 argc -= optind;
1458 argv += optind;
1459
1460 if (argc > 0) {
1461 warnx(_("%d too many arguments given"), argc);
1462 errtryhelp(EXIT_FAILURE);
1463 }
1464
1465 if (!ctl.adj_file_name)
1466 ctl.adj_file_name = _PATH_ADJTIME;
1467
1468 if (ctl.update && !ctl.set && !ctl.systohc) {
1469 warnx(_("--update-drift requires --set or --systohc"));
1470 hwclock_exit(&ctl, EX_USAGE);
1471 }
1472
1473 if (ctl.noadjfile && !ctl.utc && !ctl.local_opt) {
1474 warnx(_("With --noadjfile, you must specify "
1475 "either --utc or --localtime"));
1476 hwclock_exit(&ctl, EX_USAGE);
1477 }
1478
1479 if (ctl.set || ctl.predict) {
1480 if (!ctl.date_opt){
1481 warnx(_("--date is required for --set or --predict"));
1482 hwclock_exit(&ctl, EX_USAGE);
1483 }
1484 if (parse_date(&when, ctl.date_opt, NULL))
1485 set_time = when.tv_sec;
1486 else {
1487 warnx(_("invalid date '%s'"), ctl.date_opt);
1488 hwclock_exit(&ctl, EX_USAGE);
1489 }
1490 }
1491
1492 #if defined(__linux__) && defined(__alpha__)
1493 if (ctl.getepoch || ctl.setepoch) {
1494 manipulate_epoch(&ctl);
1495 hwclock_exit(&ctl, EX_OK);
1496 }
1497 #endif
1498
1499 if (ctl.debug)
1500 out_version();
1501
1502 if (!ctl.systz && !ctl.predict)
1503 determine_clock_access_method(&ctl);
1504
1505 if (!ctl.noadjfile && !(ctl.systz && (ctl.utc || ctl.local_opt))) {
1506 if ((rc = read_adjtime(&ctl, &adjtime)) != 0)
1507 hwclock_exit(&ctl, rc);
1508 } else
1509 /* Avoid writing adjtime file if we don't have to. */
1510 adjtime.dirty = FALSE;
1511 ctl.universal = hw_clock_is_utc(&ctl, adjtime);
1512 rc = manipulate_clock(&ctl, set_time, startup_time, &adjtime);
1513 hwclock_exit(&ctl, rc);
1514 return rc; /* Not reached */
1515 }
1516
1517 void
1518 hwclock_exit(const struct hwclock_control *ctl
1519 #ifndef HAVE_LIBAUDIT
1520 __attribute__((__unused__))
1521 #endif
1522 , int status)
1523 {
1524 #ifdef HAVE_LIBAUDIT
1525 if (ctl->hwaudit_on && !ctl->testing) {
1526 audit_log_user_message(hwaudit_fd, AUDIT_USYS_CONFIG,
1527 "op=change-system-time", NULL, NULL, NULL,
1528 status ? 0 : 1);
1529 close(hwaudit_fd);
1530 }
1531 #endif
1532 exit(status);
1533 }
1534
1535 /*
1536 * History of this program:
1537 *
1538 * 98.08.12 BJH Version 2.4
1539 *
1540 * Don't use century byte from Hardware Clock. Add comments telling why.
1541 *
1542 * 98.06.20 BJH Version 2.3.
1543 *
1544 * Make --hctosys set the kernel timezone from TZ environment variable
1545 * and/or /usr/lib/zoneinfo. From Klaus Ripke (klaus@ripke.com).
1546 *
1547 * 98.03.05 BJH. Version 2.2.
1548 *
1549 * Add --getepoch and --setepoch.
1550 *
1551 * Fix some word length things so it works on Alpha.
1552 *
1553 * Make it work when /dev/rtc doesn't have the interrupt functions. In this
1554 * case, busywait for the top of a second instead of blocking and waiting
1555 * for the update complete interrupt.
1556 *
1557 * Fix a bunch of bugs too numerous to mention.
1558 *
1559 * 97.06.01: BJH. Version 2.1. Read and write the century byte (Byte 50) of
1560 * the ISA Hardware Clock when using direct ISA I/O. Problem discovered by
1561 * job (jei@iclnl.icl.nl).
1562 *
1563 * Use the rtc clock access method in preference to the KDGHWCLK method.
1564 * Problem discovered by Andreas Schwab <schwab@LS5.informatik.uni-dortmund.de>.
1565 *
1566 * November 1996: Version 2.0.1. Modifications by Nicolai Langfeldt
1567 * (janl@math.uio.no) to make it compile on linux 1.2 machines as well as
1568 * more recent versions of the kernel. Introduced the NO_CLOCK access method
1569 * and wrote feature test code to detect absence of rtc headers.
1570 *
1571 ***************************************************************************
1572 * Maintenance notes
1573 *
1574 * To compile this, you must use GNU compiler optimization (-O option) in
1575 * order to make the "extern inline" functions from asm/io.h (inb(), etc.)
1576 * compile. If you don't optimize, which means the compiler will generate no
1577 * inline functions, the references to these functions in this program will
1578 * be compiled as external references. Since you probably won't be linking
1579 * with any functions by these names, you will have unresolved external
1580 * references when you link.
1581 *
1582 * Here's some info on how we must deal with the time that elapses while
1583 * this program runs: There are two major delays as we run:
1584 *
1585 * 1) Waiting up to 1 second for a transition of the Hardware Clock so
1586 * we are synchronized to the Hardware Clock.
1587 * 2) Running the "date" program to interpret the value of our --date
1588 * option.
1589 *
1590 * Reading the /etc/adjtime file is the next biggest source of delay and
1591 * uncertainty.
1592 *
1593 * The user wants to know what time it was at the moment he invoked us, not
1594 * some arbitrary time later. And in setting the clock, he is giving us the
1595 * time at the moment we are invoked, so if we set the clock some time
1596 * later, we have to add some time to that.
1597 *
1598 * So we check the system time as soon as we start up, then run "date" and
1599 * do file I/O if necessary, then wait to synchronize with a Hardware Clock
1600 * edge, then check the system time again to see how much time we spent. We
1601 * immediately read the clock then and (if appropriate) report that time,
1602 * and additionally, the delay we measured.
1603 *
1604 * If we're setting the clock to a time given by the user, we wait some more
1605 * so that the total delay is an integral number of seconds, then set the
1606 * Hardware Clock to the time the user requested plus that integral number
1607 * of seconds. N.B. The Hardware Clock can only be set in integral seconds.
1608 *
1609 * If we're setting the clock to the system clock value, we wait for the
1610 * system clock to reach the top of a second, and then set the Hardware
1611 * Clock to the system clock's value.
1612 *
1613 * Here's an interesting point about setting the Hardware Clock: On my
1614 * machine, when you set it, it sets to that precise time. But one can
1615 * imagine another clock whose update oscillator marches on a steady one
1616 * second period, so updating the clock between any two oscillator ticks is
1617 * the same as updating it right at the earlier tick. To avoid any
1618 * complications that might cause, we set the clock as soon as possible
1619 * after an oscillator tick.
1620 *
1621 * About synchronizing to the Hardware Clock when reading the time: The
1622 * precision of the Hardware Clock counters themselves is one second. You
1623 * can't read the counters and find out that is 12:01:02.5. But if you
1624 * consider the location in time of the counter's ticks as part of its
1625 * value, then its precision is as infinite as time is continuous! What I'm
1626 * saying is this: To find out the _exact_ time in the hardware clock, we
1627 * wait until the next clock tick (the next time the second counter changes)
1628 * and measure how long we had to wait. We then read the value of the clock
1629 * counters and subtract the wait time and we know precisely what time it
1630 * was when we set out to query the time.
1631 *
1632 * hwclock uses this method, and considers the Hardware Clock to have
1633 * infinite precision.
1634 */