]> err.no Git - util-linux/commitdiff
hwclock: allow setting of RTC when it contains invalid data
authorPeter Tyser <ptyser@xes-inc.com>
Wed, 29 Dec 2010 22:25:43 +0000 (16:25 -0600)
committerKarel Zak <kzak@redhat.com>
Thu, 30 Dec 2010 23:31:30 +0000 (00:31 +0100)
In some cases the date/time stored in an RTC can be corrupted, eg due to
loss of power, before its been initially set, etc.  When this occurs
the RTC_RD_TIME ioctl can fail since the Linux kernel determines that
the RTC contains invalid data.  Currently, when setting an RTC using
hwclock, hwclock performs a number of RTC_RD_TIME ioctls before setting
the RTC.  When one of these ioctls fails, hwclock bombs out and the
corrupted RTC data can't be overwritten.  Thus once an RTC is corrupted,
it can't be fixed via hwclock*.

To work around the above issue we can make hwclock not exit when a
RTC_RD_TIME failure occurs during the process of setting the RTC.  This
allows the RTC to be set even when it contains an invalid value,
although it is not synchronized to a clock tick before it is set.

* 'hwclock --utc --noadjfile --set --date="11/23/10 17:19:00' currently
works to fix a corrupted RTC, but a user couldn't determine this without
digging through the source code.

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
hwclock/hwclock.c

index 21a89c4ee86086439c7871aa5627d61e8bdabefa..279b672f942f21bd902884a8525838c99b68a02a 100644 (file)
@@ -1180,12 +1180,24 @@ manipulate_clock(const bool show, const bool adjust, const bool noadjfile,
        if (show || adjust || hctosys || (!noadjfile && !systz && !predict)) {
           /* data from HW-clock are required */
           rc = synchronize_to_clock_tick();
-          if (rc && rc != 2)           /* 2= synchronization timeout */
+
+          /* 2 = synchronization timeout.  We don't error out if the user is
+             attempting to set the RTC - the RTC could be functioning but
+             contain invalid time data so we still want to allow a user to set
+             the RTC time.
+             */
+
+          if (rc && rc != 2 && !set && !systohc)
             return EX_IOERR;
           gettimeofday(&read_time, NULL);
-          rc = read_hardware_clock(universal, &hclock_valid, &hclocktime);
-          if (rc)
-             return EX_IOERR;
+
+          /* If we can't synchronize to a clock tick, we likely can't read
+             from the RTC so don't bother reading it again. */
+          if (!rc) {
+            rc = read_hardware_clock(universal, &hclock_valid, &hclocktime);
+            if (rc && !set && !systohc)
+              return EX_IOERR;
+         }
        }
 
         if (show) {