NetBSD-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
kern/58928: clock_settime(2): large adjustments crash system
>Number: 58928
>Category: kern
>Synopsis: clock_settime(2): large adjustments crash system
>Confidential: no
>Severity: serious
>Priority: medium
>Responsible: kern-bug-people
>State: open
>Class: sw-bug
>Submitter-Id: net
>Arrival-Date: Sat Dec 21 17:50:00 +0000 2024
>Originator: Taylor R Campbell
>Release: current, 10, 9, ...
>Organization:
The TimeBSD Overrundation
>Environment:
>Description:
Setting a periodic interval timer on a real-time clock, and then adjusting the real-time clock by a large adjustment, sometimes makes the system hang (and then crash with a heartbeat panic).
Small adjustments within a few days don't seem to have this effect. Large adjustments between INT_MAX/100 and INT_MAX seconds seem to have this effect reliably. Adjustments in the middle sometimes do and sometimes don't. I tried bisecting down to between INT_MAX/400 and INT_MAX/500 or so but since it's nondeterministic my bisection isn't really useful.
The heartbeat panic shows a stack trace in callout_softclock, but doesn't identify which callouts are running over and over again. To be investigated.
>How-To-Repeat:
Adjust the line marked (*) below to change the probability of triggering this:
#include <err.h>
#include <errno.h>
#include <limits.h>
#include <signal.h>
#include <stdio.h>
#include <time.h>
#include <unistd.h>
static const char *
showtime(struct timespec t)
{
static char buf[1024];
struct tm tm;
size_t n;
gmtime_r(&t.tv_sec, &tm);
n = strftime(buf, sizeof(buf), "%Y-%m-%dT%H:%M:%S.", &tm);
snprintf(buf + n, sizeof(buf) - n, "%09d", t.tv_nsec);
return buf;
}
int
main(void)
{
struct timespec mono0, real0, hack, mono1, delta, real1;
sigset_t sigs, mask;
siginfo_t siginfo;
timer_t t;
/*
* Block signals so we can use sigtimedwait(2) to wait for the
* first wakeup.
*/
if (sigemptyset(&sigs) == -1)
err(1, "sigemptyset");
if (sigaddset(&sigs, SIGALRM) == -1)
err(1, "sigaddset");
if (sigprocmask(SIG_BLOCK, &sigs, &mask) == -1)
err(1, "sigprocmask");
/*
* Create a periodic interval timer on the real-time clock
* starting at the next tick and repeating every second after
* that.
*/
const struct itimerspec it = {
.it_value = {0, 1},
.it_interval = {1, 0},
};
if (timer_create(CLOCK_REALTIME, NULL, &t) == -1)
err(1, "timer_create");
if (timer_settime(t, 0, &it, NULL) == -1)
err(1, "timer_settime");
/*
* Save the monotonic clock so, after we mess with the
* real-time clock, we can find how long we spent in this
* program to restore the real-time clock.
*/
if (clock_gettime(CLOCK_MONOTONIC, &mono0) == -1)
err(1, "clock_gettime(CLOCK_MONOTONIC)");
printf("mono0 %llu.%09d\n",
(unsigned long long)mono0.tv_sec, (int)mono0.tv_nsec);
/*
* Advance the real-time clock by INT_MAX + 1 seconds. This
* should cause the timer overrun counter to overflow.
*/
if (clock_gettime(CLOCK_REALTIME, &real0) == -1)
err(1, "clock_gettime(CLOCK_REALTIME)");
printf("real0 %s\n", showtime(real0));
hack = real0;
hack.tv_sec += INT_MAX/100; /* (*) */
printf("hack: %s\n", showtime(hack));
if (clock_settime(CLOCK_REALTIME, &hack) == -1)
err(1, "clock_settime(CLOCK_REALTIME)");
/*
* Wait up to two seconds for the timer to fire after an
* interval. At this point it should have detected some
* overruns because we wound the clock forward.
*
* If anyting goes wrong, try to restore the real-time clock
* before reporting sigtimedwait(2) error.
*/
if (sigtimedwait(&sigs, &siginfo, &(const struct timespec){2, 0})
== -1) {
int errno_save = errno;
if (clock_gettime(CLOCK_MONOTONIC, &mono1) == -1)
err(1, "clock_gettime");
timespecsub(&mono1, &mono0, &delta);
timespecadd(&real0, &delta, &real1);
if (clock_settime(CLOCK_REALTIME, &real1) == -1)
err(1, "clock_settime(CLOCK_REALTIME)");
printf("mono1 %llu.%09d\n",
(unsigned long long)mono1.tv_sec, (int)mono1.tv_nsec);
printf("delta %llu.%09d\n",
(unsigned long long)delta.tv_sec, (int)delta.tv_nsec);
printf("real1 %s\n", showtime(real1));
errno = errno_save;
err(1, "sigtimedwait");
}
/*
* Restore the real-time clock by adding the time spent in this
* program so far (mono1 - mono0) to the earlier reading of the
* real-time clock (real0).
*/
if (clock_gettime(CLOCK_MONOTONIC, &mono1) == -1)
err(1, "clock_gettime");
timespecsub(&mono1, &mono0, &delta);
timespecadd(&real0, &delta, &real1);
if (clock_settime(CLOCK_REALTIME, &real1) == -1)
err(1, "clock_settime(CLOCK_REALTIME)");
printf("mono1 %llu.%09d\n",
(unsigned long long)mono1.tv_sec, (int)mono1.tv_nsec);
printf("delta %llu.%09d\n",
(unsigned long long)delta.tv_sec, (int)delta.tv_nsec);
printf("real1 %s\n", showtime(real1));
/*
* Print the overrun count. This should saturate at INT_MAX,
* and should never go negative.
*/
printf("overrun %d\n", timer_getoverrun(t));
fflush(stdout);
return ferror(stdout);
}
>Fix:
Yes, please!
Home |
Main Index |
Thread Index |
Old Index