You need to sign in or sign up before continuing.
qemu-timer.c 25.3 KB
Newer Older
P
Paolo Bonzini 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * QEMU System Emulator
 *
 * Copyright (c) 2003-2008 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

25
#include "sysemu/sysemu.h"
26
#include "monitor/monitor.h"
27
#include "ui/console.h"
P
Paolo Bonzini 已提交
28 29 30

#include "hw/hw.h"

31
#include "qemu/timer.h"
32 33 34
#ifdef CONFIG_POSIX
#include <pthread.h>
#endif
35

P
Paolo Bonzini 已提交
36 37 38 39
#ifdef _WIN32
#include <mmsystem.h>
#endif

40 41 42 43
#ifdef CONFIG_PPOLL
#include <poll.h>
#endif

44 45 46 47
#ifdef CONFIG_PRCTL_PR_SET_TIMERSLACK
#include <sys/prctl.h>
#endif

P
Paolo Bonzini 已提交
48 49 50 51
/***********************************************************/
/* timers */

struct QEMUClock {
52 53
    QEMUTimerList *main_loop_timerlist;
    QLIST_HEAD(, QEMUTimerList) timerlists;
54 55 56

    NotifierList reset_notifiers;
    int64_t last;
57

58
    QEMUClockType type;
59
    bool enabled;
P
Paolo Bonzini 已提交
60 61
};

62
QEMUTimerListGroup main_loop_tlg;
63 64 65 66 67 68 69 70 71 72
QEMUClock *qemu_clocks[QEMU_CLOCK_MAX];

/* A QEMUTimerList is a list of timers attached to a clock. More
 * than one QEMUTimerList can be attached to each clock, for instance
 * used by different AioContexts / threads. Each clock also has
 * a list of the QEMUTimerLists associated with it, in order that
 * reenabling the clock can call all the notifiers.
 */

struct QEMUTimerList {
73
    QEMUClock *clock;
74 75
    QEMUTimer *active_timers;
    QLIST_ENTRY(QEMUTimerList) list;
76 77
    QEMUTimerListNotifyCB *notify_cb;
    void *notify_opaque;
P
Paolo Bonzini 已提交
78 79 80 81 82 83
};

struct qemu_alarm_timer {
    char const *name;
    int (*start)(struct qemu_alarm_timer *t);
    void (*stop)(struct qemu_alarm_timer *t);
84
    void (*rearm)(struct qemu_alarm_timer *t, int64_t nearest_delta_ns);
S
Stefan Weil 已提交
85 86
#if defined(__linux__)
    timer_t timer;
87
    int fd;
S
Stefan Weil 已提交
88 89 90
#elif defined(_WIN32)
    HANDLE timer;
#endif
91 92
    bool expired;
    bool pending;
P
Paolo Bonzini 已提交
93 94 95 96
};

static struct qemu_alarm_timer *alarm_timer;

97
static bool timer_expired_ns(QEMUTimer *timer_head, int64_t current_time)
98 99 100 101
{
    return timer_head && (timer_head->expire_time <= current_time);
}

102 103
static int64_t qemu_next_alarm_deadline(void)
{
104
    int64_t delta = INT64_MAX;
105
    int64_t rtdelta;
106
    int64_t hdelta;
107

108 109 110 111
    if (!use_icount && vm_clock->enabled &&
        vm_clock->main_loop_timerlist->active_timers) {
        delta = vm_clock->main_loop_timerlist->active_timers->expire_time -
            qemu_get_clock_ns(vm_clock);
112
    }
113 114 115 116
    if (host_clock->enabled &&
        host_clock->main_loop_timerlist->active_timers) {
        hdelta = host_clock->main_loop_timerlist->active_timers->expire_time -
            qemu_get_clock_ns(host_clock);
117 118 119 120
        if (hdelta < delta) {
            delta = hdelta;
        }
    }
121 122 123 124
    if (rt_clock->enabled &&
        rt_clock->main_loop_timerlist->active_timers) {
        rtdelta = (rt_clock->main_loop_timerlist->active_timers->expire_time -
                   qemu_get_clock_ns(rt_clock));
125 126 127 128 129 130 131 132
        if (rtdelta < delta) {
            delta = rtdelta;
        }
    }

    return delta;
}

P
Paolo Bonzini 已提交
133 134
static void qemu_rearm_alarm_timer(struct qemu_alarm_timer *t)
{
135 136 137
    int64_t nearest_delta_ns = qemu_next_alarm_deadline();
    if (nearest_delta_ns < INT64_MAX) {
        t->rearm(t, nearest_delta_ns);
138
    }
P
Paolo Bonzini 已提交
139 140
}

141 142
/* TODO: MIN_TIMER_REARM_NS should be optimized */
#define MIN_TIMER_REARM_NS 250000
P
Paolo Bonzini 已提交
143 144 145

#ifdef _WIN32

S
Stefan Weil 已提交
146 147
static int mm_start_timer(struct qemu_alarm_timer *t);
static void mm_stop_timer(struct qemu_alarm_timer *t);
148
static void mm_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
S
Stefan Weil 已提交
149

P
Paolo Bonzini 已提交
150 151
static int win32_start_timer(struct qemu_alarm_timer *t);
static void win32_stop_timer(struct qemu_alarm_timer *t);
152
static void win32_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
P
Paolo Bonzini 已提交
153 154 155 156 157

#else

static int unix_start_timer(struct qemu_alarm_timer *t);
static void unix_stop_timer(struct qemu_alarm_timer *t);
158
static void unix_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
P
Paolo Bonzini 已提交
159 160 161 162 163

#ifdef __linux__

static int dynticks_start_timer(struct qemu_alarm_timer *t);
static void dynticks_stop_timer(struct qemu_alarm_timer *t);
164
static void dynticks_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
P
Paolo Bonzini 已提交
165 166 167 168 169 170 171 172 173

#endif /* __linux__ */

#endif /* _WIN32 */

static struct qemu_alarm_timer alarm_timers[] = {
#ifndef _WIN32
#ifdef __linux__
    {"dynticks", dynticks_start_timer,
S
Stefan Weil 已提交
174
     dynticks_stop_timer, dynticks_rearm_timer},
P
Paolo Bonzini 已提交
175
#endif
176
    {"unix", unix_start_timer, unix_stop_timer, unix_rearm_timer},
P
Paolo Bonzini 已提交
177
#else
P
Paolo Bonzini 已提交
178
    {"mmtimer", mm_start_timer, mm_stop_timer, mm_rearm_timer},
S
Stefan Weil 已提交
179
    {"dynticks", win32_start_timer, win32_stop_timer, win32_rearm_timer},
P
Paolo Bonzini 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
#endif
    {NULL, }
};

static void show_available_alarms(void)
{
    int i;

    printf("Available alarm timers, in order of precedence:\n");
    for (i = 0; alarm_timers[i].name; i++)
        printf("%s\n", alarm_timers[i].name);
}

void configure_alarms(char const *opt)
{
    int i;
    int cur = 0;
    int count = ARRAY_SIZE(alarm_timers) - 1;
    char *arg;
    char *name;
    struct qemu_alarm_timer tmp;

202
    if (is_help_option(opt)) {
P
Paolo Bonzini 已提交
203 204 205 206
        show_available_alarms();
        exit(0);
    }

207
    arg = g_strdup(opt);
P
Paolo Bonzini 已提交
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

    /* Reorder the array */
    name = strtok(arg, ",");
    while (name) {
        for (i = 0; i < count && alarm_timers[i].name; i++) {
            if (!strcmp(alarm_timers[i].name, name))
                break;
        }

        if (i == count) {
            fprintf(stderr, "Unknown clock %s\n", name);
            goto next;
        }

        if (i < cur)
            /* Ignore */
            goto next;

	/* Swap */
        tmp = alarm_timers[i];
        alarm_timers[i] = alarm_timers[cur];
        alarm_timers[cur] = tmp;

        cur++;
next:
        name = strtok(NULL, ",");
    }

236
    g_free(arg);
P
Paolo Bonzini 已提交
237 238 239 240 241 242 243 244 245 246 247

    if (cur) {
        /* Disable remaining timers */
        for (i = cur; i < count; i++)
            alarm_timers[i].name = NULL;
    } else {
        show_available_alarms();
        exit(1);
    }
}

248 249 250
static QEMUTimerList *timerlist_new_from_clock(QEMUClock *clock,
                                               QEMUTimerListNotifyCB *cb,
                                               void *opaque)
251 252 253 254 255 256 257 258 259 260 261 262 263
{
    QEMUTimerList *timer_list;

    /* Assert if we do not have a clock. If you see this
     * assertion in means that the clocks have not been
     * initialised before a timerlist is needed. This
     * normally happens if an AioContext is used before
     * init_clocks() is called within main().
     */
    assert(clock);

    timer_list = g_malloc0(sizeof(QEMUTimerList));
    timer_list->clock = clock;
264 265
    timer_list->notify_cb = cb;
    timer_list->notify_opaque = opaque;
266 267 268 269
    QLIST_INSERT_HEAD(&clock->timerlists, timer_list, list);
    return timer_list;
}

270 271
QEMUTimerList *timerlist_new(QEMUClockType type,
                             QEMUTimerListNotifyCB *cb, void *opaque)
272
{
273
    return timerlist_new_from_clock(qemu_clock_ptr(type), cb, opaque);
274
}
P
Paolo Bonzini 已提交
275

276 277 278 279 280 281 282 283 284 285 286 287 288
void timerlist_free(QEMUTimerList *timer_list)
{
    assert(!timerlist_has_timers(timer_list));
    if (timer_list->clock) {
        QLIST_REMOVE(timer_list, list);
        if (timer_list->clock->main_loop_timerlist == timer_list) {
            timer_list->clock->main_loop_timerlist = NULL;
        }
    }
    g_free(timer_list);
}

static QEMUClock *qemu_clock_new(QEMUClockType type)
P
Paolo Bonzini 已提交
289 290
{
    QEMUClock *clock;
291

292
    clock = g_malloc0(sizeof(QEMUClock));
P
Paolo Bonzini 已提交
293
    clock->type = type;
294
    clock->enabled = true;
295
    clock->last = INT64_MIN;
296
    QLIST_INIT(&clock->timerlists);
297
    notifier_list_init(&clock->reset_notifiers);
298
    clock->main_loop_timerlist = timerlist_new_from_clock(clock, NULL, NULL);
P
Paolo Bonzini 已提交
299 300 301
    return clock;
}

302 303 304 305 306
bool qemu_clock_use_for_deadline(QEMUClock *clock)
{
    return !(use_icount && (clock->type == QEMU_CLOCK_VIRTUAL));
}

307 308 309 310 311 312 313 314
void qemu_clock_notify(QEMUClock *clock)
{
    QEMUTimerList *timer_list;
    QLIST_FOREACH(timer_list, &clock->timerlists, list) {
        timerlist_notify(timer_list);
    }
}

315
void qemu_clock_enable(QEMUClock *clock, bool enabled)
P
Paolo Bonzini 已提交
316
{
317
    bool old = clock->enabled;
P
Paolo Bonzini 已提交
318
    clock->enabled = enabled;
319
    if (enabled && !old) {
320
        qemu_clock_notify(clock);
321 322
        qemu_rearm_alarm_timer(alarm_timer);
    }
P
Paolo Bonzini 已提交
323 324
}

325
bool timerlist_has_timers(QEMUTimerList *timer_list)
P
Paolo Bonzini 已提交
326
{
327
    return !!timer_list->active_timers;
P
Paolo Bonzini 已提交
328 329
}

330
bool qemu_clock_has_timers(QEMUClock *clock)
P
Paolo Bonzini 已提交
331
{
332
    return timerlist_has_timers(clock->main_loop_timerlist);
P
Paolo Bonzini 已提交
333 334
}

335 336 337 338 339 340 341 342 343 344 345 346 347
bool timerlist_expired(QEMUTimerList *timer_list)
{
    return (timer_list->active_timers &&
            timer_list->active_timers->expire_time <
            qemu_get_clock_ns(timer_list->clock));
}

bool qemu_clock_expired(QEMUClock *clock)
{
    return timerlist_expired(clock->main_loop_timerlist);
}

int64_t timerlist_deadline(QEMUTimerList *timer_list)
P
Paolo Bonzini 已提交
348 349 350 351
{
    /* To avoid problems with overflow limit this to 2^32.  */
    int64_t delta = INT32_MAX;

352 353 354
    if (timer_list->clock->enabled && timer_list->active_timers) {
        delta = timer_list->active_timers->expire_time -
            qemu_get_clock_ns(timer_list->clock);
P
Paolo Bonzini 已提交
355 356 357 358 359 360 361
    }
    if (delta < 0) {
        delta = 0;
    }
    return delta;
}

362 363 364 365 366
int64_t qemu_clock_deadline(QEMUClock *clock)
{
    return timerlist_deadline(clock->main_loop_timerlist);
}

367 368 369 370 371
/*
 * As above, but return -1 for no deadline, and do not cap to 2^32
 * as we know the result is always positive.
 */

372
int64_t timerlist_deadline_ns(QEMUTimerList *timer_list)
373 374 375
{
    int64_t delta;

376
    if (!timer_list->clock->enabled || !timer_list->active_timers) {
377 378 379
        return -1;
    }

380 381
    delta = timer_list->active_timers->expire_time -
        qemu_get_clock_ns(timer_list->clock);
382 383 384 385 386 387 388 389

    if (delta <= 0) {
        return 0;
    }

    return delta;
}

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
int64_t qemu_clock_deadline_ns(QEMUClock *clock)
{
    return timerlist_deadline_ns(clock->main_loop_timerlist);
}

QEMUClock *timerlist_get_clock(QEMUTimerList *timer_list)
{
    return timer_list->clock;
}

QEMUTimerList *qemu_clock_get_main_loop_timerlist(QEMUClock *clock)
{
    return clock->main_loop_timerlist;
}

405 406 407 408 409 410 411 412 413
void timerlist_notify(QEMUTimerList *timer_list)
{
    if (timer_list->notify_cb) {
        timer_list->notify_cb(timer_list->notify_opaque);
    } else {
        qemu_notify_event();
    }
}

414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
/* Transition function to convert a nanosecond timeout to ms
 * This is used where a system does not support ppoll
 */
int qemu_timeout_ns_to_ms(int64_t ns)
{
    int64_t ms;
    if (ns < 0) {
        return -1;
    }

    if (!ns) {
        return 0;
    }

    /* Always round up, because it's better to wait too long than to wait too
     * little and effectively busy-wait
     */
    ms = (ns + SCALE_MS - 1) / SCALE_MS;

    /* To avoid overflow problems, limit this to 2^31, i.e. approx 25 days */
    if (ms > (int64_t) INT32_MAX) {
        ms = INT32_MAX;
    }

    return (int) ms;
}


442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
/* qemu implementation of g_poll which uses a nanosecond timeout but is
 * otherwise identical to g_poll
 */
int qemu_poll_ns(GPollFD *fds, guint nfds, int64_t timeout)
{
#ifdef CONFIG_PPOLL
    if (timeout < 0) {
        return ppoll((struct pollfd *)fds, nfds, NULL, NULL);
    } else {
        struct timespec ts;
        ts.tv_sec = timeout / 1000000000LL;
        ts.tv_nsec = timeout % 1000000000LL;
        return ppoll((struct pollfd *)fds, nfds, &ts, NULL);
    }
#else
    return g_poll(fds, nfds, qemu_timeout_ns_to_ms(timeout));
#endif
}


462 463 464
void timer_init(QEMUTimer *ts,
                QEMUTimerList *timer_list, int scale,
                QEMUTimerCB *cb, void *opaque)
P
Paolo Bonzini 已提交
465
{
466
    ts->timer_list = timer_list;
P
Paolo Bonzini 已提交
467 468
    ts->cb = cb;
    ts->opaque = opaque;
469
    ts->scale = scale;
470 471 472 473 474 475 476
}

QEMUTimer *qemu_new_timer(QEMUClock *clock, int scale,
                          QEMUTimerCB *cb, void *opaque)
{
    return timer_new_tl(clock->main_loop_timerlist,
                     scale, cb, opaque);
P
Paolo Bonzini 已提交
477 478 479 480
}

void qemu_free_timer(QEMUTimer *ts)
{
481
    g_free(ts);
P
Paolo Bonzini 已提交
482 483 484 485 486 487 488 489
}

/* stop a timer, but do not dealloc it */
void qemu_del_timer(QEMUTimer *ts)
{
    QEMUTimer **pt, *t;

    /* NOTE: this code must be signal safe because
490
       timer_expired() can be called from a signal. */
491
    pt = &ts->timer_list->active_timers;
P
Paolo Bonzini 已提交
492 493 494 495 496 497 498 499 500 501 502 503 504 505
    for(;;) {
        t = *pt;
        if (!t)
            break;
        if (t == ts) {
            *pt = t->next;
            break;
        }
        pt = &t->next;
    }
}

/* modify the current timer so that it will be fired when current_time
   >= expire_time. The corresponding callback will be called. */
506
void qemu_mod_timer_ns(QEMUTimer *ts, int64_t expire_time)
P
Paolo Bonzini 已提交
507 508 509 510 511 512 513
{
    QEMUTimer **pt, *t;

    qemu_del_timer(ts);

    /* add the timer in the sorted list */
    /* NOTE: this code must be signal safe because
514
       timer_expired() can be called from a signal. */
515
    pt = &ts->timer_list->active_timers;
P
Paolo Bonzini 已提交
516 517
    for(;;) {
        t = *pt;
518
        if (!timer_expired_ns(t, expire_time)) {
P
Paolo Bonzini 已提交
519
            break;
520
        }
P
Paolo Bonzini 已提交
521 522 523 524 525 526 527
        pt = &t->next;
    }
    ts->expire_time = expire_time;
    ts->next = *pt;
    *pt = ts;

    /* Rearm if necessary  */
528
    if (pt == &ts->timer_list->active_timers) {
P
Paolo Bonzini 已提交
529 530 531 532
        if (!alarm_timer->pending) {
            qemu_rearm_alarm_timer(alarm_timer);
        }
        /* Interrupt execution to force deadline recalculation.  */
533
        qemu_clock_warp(ts->timer_list->clock);
534
        timerlist_notify(ts->timer_list);
P
Paolo Bonzini 已提交
535 536 537
    }
}

538 539 540 541 542
void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
{
    qemu_mod_timer_ns(ts, expire_time * ts->scale);
}

543
bool timer_pending(QEMUTimer *ts)
P
Paolo Bonzini 已提交
544 545
{
    QEMUTimer *t;
546
    for (t = ts->timer_list->active_timers; t != NULL; t = t->next) {
547 548 549
        if (t == ts) {
            return true;
        }
P
Paolo Bonzini 已提交
550
    }
551
    return false;
P
Paolo Bonzini 已提交
552 553
}

554
bool timer_expired(QEMUTimer *timer_head, int64_t current_time)
P
Paolo Bonzini 已提交
555
{
556
    return timer_expired_ns(timer_head, current_time * timer_head->scale);
P
Paolo Bonzini 已提交
557 558
}

559
bool timerlist_run_timers(QEMUTimerList *timer_list)
P
Paolo Bonzini 已提交
560
{
561
    QEMUTimer *ts;
P
Paolo Bonzini 已提交
562
    int64_t current_time;
563
    bool progress = false;
P
Paolo Bonzini 已提交
564
   
565
    if (!timer_list->clock->enabled) {
566
        return progress;
567
    }
P
Paolo Bonzini 已提交
568

569
    current_time = qemu_get_clock_ns(timer_list->clock);
P
Paolo Bonzini 已提交
570
    for(;;) {
571
        ts = timer_list->active_timers;
572
        if (!timer_expired_ns(ts, current_time)) {
P
Paolo Bonzini 已提交
573
            break;
574
        }
P
Paolo Bonzini 已提交
575
        /* remove timer from the list before calling the callback */
576
        timer_list->active_timers = ts->next;
P
Paolo Bonzini 已提交
577 578 579 580
        ts->next = NULL;

        /* run the callback (the timer list can be modified) */
        ts->cb(ts->opaque);
581
        progress = true;
P
Paolo Bonzini 已提交
582
    }
583
    return progress;
P
Paolo Bonzini 已提交
584 585
}

586 587 588 589 590
bool qemu_run_timers(QEMUClock *clock)
{
    return timerlist_run_timers(clock->main_loop_timerlist);
}

591 592
void timerlistgroup_init(QEMUTimerListGroup *tlg,
                         QEMUTimerListNotifyCB *cb, void *opaque)
593 594 595
{
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
596
        tlg->tl[type] = timerlist_new(type, cb, opaque);
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
    }
}

void timerlistgroup_deinit(QEMUTimerListGroup *tlg)
{
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
        timerlist_free(tlg->tl[type]);
    }
}

bool timerlistgroup_run_timers(QEMUTimerListGroup *tlg)
{
    QEMUClockType type;
    bool progress = false;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
        progress |= timerlist_run_timers(tlg->tl[type]);
    }
    return progress;
}

int64_t timerlistgroup_deadline_ns(QEMUTimerListGroup *tlg)
{
    int64_t deadline = -1;
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
        if (qemu_clock_use_for_deadline(tlg->tl[type]->clock)) {
            deadline = qemu_soonest_timeout(deadline,
                                            timerlist_deadline_ns(
                                                tlg->tl[type]));
        }
    }
    return deadline;
}

P
Paolo Bonzini 已提交
632 633
int64_t qemu_get_clock_ns(QEMUClock *clock)
{
634 635
    int64_t now, last;

P
Paolo Bonzini 已提交
636 637 638 639 640 641 642 643 644 645 646
    switch(clock->type) {
    case QEMU_CLOCK_REALTIME:
        return get_clock();
    default:
    case QEMU_CLOCK_VIRTUAL:
        if (use_icount) {
            return cpu_get_icount();
        } else {
            return cpu_get_clock();
        }
    case QEMU_CLOCK_HOST:
647 648 649 650 651 652 653
        now = get_clock_realtime();
        last = clock->last;
        clock->last = now;
        if (now < last) {
            notifier_list_notify(&clock->reset_notifiers, &now);
        }
        return now;
P
Paolo Bonzini 已提交
654 655 656
    }
}

657 658 659 660 661 662 663
void qemu_register_clock_reset_notifier(QEMUClock *clock, Notifier *notifier)
{
    notifier_list_add(&clock->reset_notifiers, notifier);
}

void qemu_unregister_clock_reset_notifier(QEMUClock *clock, Notifier *notifier)
{
P
Paolo Bonzini 已提交
664
    notifier_remove(notifier);
665 666
}

P
Paolo Bonzini 已提交
667 668
void init_clocks(void)
{
669 670 671 672
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
        if (!qemu_clocks[type]) {
            qemu_clocks[type] = qemu_clock_new(type);
673
            main_loop_tlg.tl[type] = qemu_clocks[type]->main_loop_timerlist;
674
        }
675
    }
676

677 678 679
#ifdef CONFIG_PRCTL_PR_SET_TIMERSLACK
    prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0);
#endif
P
Paolo Bonzini 已提交
680 681
}

682
uint64_t timer_expire_time_ns(QEMUTimer *ts)
P
Paolo Bonzini 已提交
683
{
684
    return timer_pending(ts) ? ts->expire_time : -1;
P
Paolo Bonzini 已提交
685 686
}

687
bool qemu_run_all_timers(void)
P
Paolo Bonzini 已提交
688
{
689
    bool progress = false;
690
    alarm_timer->pending = false;
691

692
    /* vm time timers */
693 694 695 696
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
        progress |= qemu_run_timers(qemu_clock_ptr(type));
    }
697

P
Paolo Bonzini 已提交
698 699
    /* rearm timer, if not periodic */
    if (alarm_timer->expired) {
700
        alarm_timer->expired = false;
P
Paolo Bonzini 已提交
701 702
        qemu_rearm_alarm_timer(alarm_timer);
    }
703 704

    return progress;
P
Paolo Bonzini 已提交
705 706 707
}

#ifdef _WIN32
P
Paolo Bonzini 已提交
708
static void CALLBACK host_alarm_handler(PVOID lpParam, BOOLEAN unused)
P
Paolo Bonzini 已提交
709 710 711 712 713 714 715 716
#else
static void host_alarm_handler(int host_signum)
#endif
{
    struct qemu_alarm_timer *t = alarm_timer;
    if (!t)
	return;

717 718 719
    t->expired = true;
    t->pending = true;
    qemu_notify_event();
P
Paolo Bonzini 已提交
720 721
}

P
Paolo Bonzini 已提交
722 723
#if defined(__linux__)

724
#include "qemu/compatfd.h"
725

P
Paolo Bonzini 已提交
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
static int dynticks_start_timer(struct qemu_alarm_timer *t)
{
    struct sigevent ev;
    timer_t host_timer;
    struct sigaction act;

    sigfillset(&act.sa_mask);
    act.sa_flags = 0;
    act.sa_handler = host_alarm_handler;

    sigaction(SIGALRM, &act, NULL);

    /* 
     * Initialize ev struct to 0 to avoid valgrind complaining
     * about uninitialized data in timer_create call
     */
    memset(&ev, 0, sizeof(ev));
    ev.sigev_value.sival_int = 0;
    ev.sigev_notify = SIGEV_SIGNAL;
745
#ifdef CONFIG_SIGEV_THREAD_ID
746 747 748 749
    if (qemu_signalfd_available()) {
        ev.sigev_notify = SIGEV_THREAD_ID;
        ev._sigev_un._tid = qemu_get_thread_id();
    }
750
#endif /* CONFIG_SIGEV_THREAD_ID */
P
Paolo Bonzini 已提交
751 752 753 754 755 756 757
    ev.sigev_signo = SIGALRM;

    if (timer_create(CLOCK_REALTIME, &ev, &host_timer)) {
        perror("timer_create");
        return -1;
    }

S
Stefan Weil 已提交
758
    t->timer = host_timer;
P
Paolo Bonzini 已提交
759 760 761 762 763 764

    return 0;
}

static void dynticks_stop_timer(struct qemu_alarm_timer *t)
{
S
Stefan Weil 已提交
765
    timer_t host_timer = t->timer;
P
Paolo Bonzini 已提交
766 767 768 769

    timer_delete(host_timer);
}

770 771
static void dynticks_rearm_timer(struct qemu_alarm_timer *t,
                                 int64_t nearest_delta_ns)
P
Paolo Bonzini 已提交
772
{
S
Stefan Weil 已提交
773
    timer_t host_timer = t->timer;
P
Paolo Bonzini 已提交
774
    struct itimerspec timeout;
775
    int64_t current_ns;
P
Paolo Bonzini 已提交
776

P
Paolo Bonzini 已提交
777 778
    if (nearest_delta_ns < MIN_TIMER_REARM_NS)
        nearest_delta_ns = MIN_TIMER_REARM_NS;
P
Paolo Bonzini 已提交
779 780 781 782 783 784 785

    /* check whether a timer is already running */
    if (timer_gettime(host_timer, &timeout)) {
        perror("gettime");
        fprintf(stderr, "Internal timer error: aborting\n");
        exit(1);
    }
786 787
    current_ns = timeout.it_value.tv_sec * 1000000000LL + timeout.it_value.tv_nsec;
    if (current_ns && current_ns <= nearest_delta_ns)
P
Paolo Bonzini 已提交
788 789 790 791
        return;

    timeout.it_interval.tv_sec = 0;
    timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */
792 793
    timeout.it_value.tv_sec =  nearest_delta_ns / 1000000000;
    timeout.it_value.tv_nsec = nearest_delta_ns % 1000000000;
P
Paolo Bonzini 已提交
794 795 796 797 798 799 800 801 802
    if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) {
        perror("settime");
        fprintf(stderr, "Internal timer error: aborting\n");
        exit(1);
    }
}

#endif /* defined(__linux__) */

803 804
#if !defined(_WIN32)

P
Paolo Bonzini 已提交
805 806 807 808 809 810 811 812 813 814
static int unix_start_timer(struct qemu_alarm_timer *t)
{
    struct sigaction act;

    /* timer signal */
    sigfillset(&act.sa_mask);
    act.sa_flags = 0;
    act.sa_handler = host_alarm_handler;

    sigaction(SIGALRM, &act, NULL);
815 816
    return 0;
}
P
Paolo Bonzini 已提交
817

818 819
static void unix_rearm_timer(struct qemu_alarm_timer *t,
                             int64_t nearest_delta_ns)
820 821 822
{
    struct itimerval itv;
    int err;
P
Paolo Bonzini 已提交
823

824 825 826 827 828 829 830 831 832 833 834 835 836
    if (nearest_delta_ns < MIN_TIMER_REARM_NS)
        nearest_delta_ns = MIN_TIMER_REARM_NS;

    itv.it_interval.tv_sec = 0;
    itv.it_interval.tv_usec = 0; /* 0 for one-shot timer */
    itv.it_value.tv_sec =  nearest_delta_ns / 1000000000;
    itv.it_value.tv_usec = (nearest_delta_ns % 1000000000) / 1000;
    err = setitimer(ITIMER_REAL, &itv, NULL);
    if (err) {
        perror("setitimer");
        fprintf(stderr, "Internal timer error: aborting\n");
        exit(1);
    }
P
Paolo Bonzini 已提交
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851
}

static void unix_stop_timer(struct qemu_alarm_timer *t)
{
    struct itimerval itv;

    memset(&itv, 0, sizeof(itv));
    setitimer(ITIMER_REAL, &itv, NULL);
}

#endif /* !defined(_WIN32) */


#ifdef _WIN32

S
Stefan Weil 已提交
852
static MMRESULT mm_timer;
853
static TIMECAPS mm_tc;
S
Stefan Weil 已提交
854 855 856 857 858 859 860 861 862

static void CALLBACK mm_alarm_handler(UINT uTimerID, UINT uMsg,
                                      DWORD_PTR dwUser, DWORD_PTR dw1,
                                      DWORD_PTR dw2)
{
    struct qemu_alarm_timer *t = alarm_timer;
    if (!t) {
        return;
    }
863 864 865
    t->expired = true;
    t->pending = true;
    qemu_notify_event();
S
Stefan Weil 已提交
866 867 868 869
}

static int mm_start_timer(struct qemu_alarm_timer *t)
{
870
    timeGetDevCaps(&mm_tc, sizeof(mm_tc));
S
Stefan Weil 已提交
871 872 873 874 875
    return 0;
}

static void mm_stop_timer(struct qemu_alarm_timer *t)
{
876 877 878
    if (mm_timer) {
        timeKillEvent(mm_timer);
    }
S
Stefan Weil 已提交
879 880
}

881
static void mm_rearm_timer(struct qemu_alarm_timer *t, int64_t delta)
S
Stefan Weil 已提交
882
{
883
    int64_t nearest_delta_ms = delta / 1000000;
884 885 886 887
    if (nearest_delta_ms < mm_tc.wPeriodMin) {
        nearest_delta_ms = mm_tc.wPeriodMin;
    } else if (nearest_delta_ms > mm_tc.wPeriodMax) {
        nearest_delta_ms = mm_tc.wPeriodMax;
888
    }
889

890 891 892
    if (mm_timer) {
        timeKillEvent(mm_timer);
    }
893 894
    mm_timer = timeSetEvent((UINT)nearest_delta_ms,
                            mm_tc.wPeriodMin,
S
Stefan Weil 已提交
895 896 897 898 899
                            mm_alarm_handler,
                            (DWORD_PTR)t,
                            TIME_ONESHOT | TIME_CALLBACK_FUNCTION);

    if (!mm_timer) {
900
        fprintf(stderr, "Failed to re-arm win32 alarm timer\n");
901
        timeEndPeriod(mm_tc.wPeriodMin);
S
Stefan Weil 已提交
902 903 904 905
        exit(1);
    }
}

P
Paolo Bonzini 已提交
906 907
static int win32_start_timer(struct qemu_alarm_timer *t)
{
P
Paolo Bonzini 已提交
908 909 910 911 912 913 914 915 916 917 918 919
    HANDLE hTimer;
    BOOLEAN success;

    /* If you call ChangeTimerQueueTimer on a one-shot timer (its period
       is zero) that has already expired, the timer is not updated.  Since
       creating a new timer is relatively expensive, set a bogus one-hour
       interval in the dynticks case.  */
    success = CreateTimerQueueTimer(&hTimer,
                          NULL,
                          host_alarm_handler,
                          t,
                          1,
920
                          3600000,
P
Paolo Bonzini 已提交
921 922 923
                          WT_EXECUTEINTIMERTHREAD);

    if (!success) {
P
Paolo Bonzini 已提交
924 925 926 927 928
        fprintf(stderr, "Failed to initialize win32 alarm timer: %ld\n",
                GetLastError());
        return -1;
    }

S
Stefan Weil 已提交
929
    t->timer = hTimer;
P
Paolo Bonzini 已提交
930 931 932 933 934
    return 0;
}

static void win32_stop_timer(struct qemu_alarm_timer *t)
{
S
Stefan Weil 已提交
935
    HANDLE hTimer = t->timer;
P
Paolo Bonzini 已提交
936

P
Paolo Bonzini 已提交
937 938 939
    if (hTimer) {
        DeleteTimerQueueTimer(NULL, hTimer, NULL);
    }
P
Paolo Bonzini 已提交
940 941
}

942 943
static void win32_rearm_timer(struct qemu_alarm_timer *t,
                              int64_t nearest_delta_ns)
P
Paolo Bonzini 已提交
944
{
S
Stefan Weil 已提交
945
    HANDLE hTimer = t->timer;
946
    int64_t nearest_delta_ms;
P
Paolo Bonzini 已提交
947
    BOOLEAN success;
P
Paolo Bonzini 已提交
948

949
    nearest_delta_ms = nearest_delta_ns / 1000000;
P
Paolo Bonzini 已提交
950 951 952
    if (nearest_delta_ms < 1) {
        nearest_delta_ms = 1;
    }
953 954 955 956
    /* ULONG_MAX can be 32 bit */
    if (nearest_delta_ms > ULONG_MAX) {
        nearest_delta_ms = ULONG_MAX;
    }
P
Paolo Bonzini 已提交
957 958
    success = ChangeTimerQueueTimer(NULL,
                                    hTimer,
959
                                    (unsigned long) nearest_delta_ms,
P
Paolo Bonzini 已提交
960
                                    3600000);
P
Paolo Bonzini 已提交
961

P
Paolo Bonzini 已提交
962 963 964 965
    if (!success) {
        fprintf(stderr, "Failed to rearm win32 alarm timer: %ld\n",
                GetLastError());
        exit(-1);
P
Paolo Bonzini 已提交
966
    }
P
Paolo Bonzini 已提交
967

P
Paolo Bonzini 已提交
968 969 970 971
}

#endif /* _WIN32 */

972 973 974 975 976 977 978
static void quit_timers(void)
{
    struct qemu_alarm_timer *t = alarm_timer;
    alarm_timer = NULL;
    t->stop(t);
}

979
#ifdef CONFIG_POSIX
980 981 982 983 984 985 986 987 988 989
static void reinit_timers(void)
{
    struct qemu_alarm_timer *t = alarm_timer;
    t->stop(t);
    if (t->start(t)) {
        fprintf(stderr, "Internal timer error: aborting\n");
        exit(1);
    }
    qemu_rearm_alarm_timer(t);
}
990
#endif /* CONFIG_POSIX */
991

P
Paolo Bonzini 已提交
992 993 994 995 996
int init_timer_alarm(void)
{
    struct qemu_alarm_timer *t = NULL;
    int i, err = -1;

997 998 999 1000
    if (alarm_timer) {
        return 0;
    }

P
Paolo Bonzini 已提交
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
    for (i = 0; alarm_timers[i].name; i++) {
        t = &alarm_timers[i];

        err = t->start(t);
        if (!err)
            break;
    }

    if (err) {
        err = -ENOENT;
        goto fail;
    }

1014
    atexit(quit_timers);
1015 1016 1017
#ifdef CONFIG_POSIX
    pthread_atfork(NULL, NULL, reinit_timers);
#endif
P
Paolo Bonzini 已提交
1018 1019 1020 1021 1022 1023 1024
    alarm_timer = t;
    return 0;

fail:
    return err;
}