qemu-timer.c 25.1 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
void qemu_clock_enable(QEMUClock *clock, bool enabled)
P
Paolo Bonzini 已提交
308
{
309
    bool old = clock->enabled;
P
Paolo Bonzini 已提交
310
    clock->enabled = enabled;
311 312 313
    if (enabled && !old) {
        qemu_rearm_alarm_timer(alarm_timer);
    }
P
Paolo Bonzini 已提交
314 315
}

316
bool timerlist_has_timers(QEMUTimerList *timer_list)
P
Paolo Bonzini 已提交
317
{
318
    return !!timer_list->active_timers;
P
Paolo Bonzini 已提交
319 320
}

321
bool qemu_clock_has_timers(QEMUClock *clock)
P
Paolo Bonzini 已提交
322
{
323
    return timerlist_has_timers(clock->main_loop_timerlist);
P
Paolo Bonzini 已提交
324 325
}

326 327 328 329 330 331 332 333 334 335 336 337 338
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 已提交
339 340 341 342
{
    /* To avoid problems with overflow limit this to 2^32.  */
    int64_t delta = INT32_MAX;

343 344 345
    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 已提交
346 347 348 349 350 351 352
    }
    if (delta < 0) {
        delta = 0;
    }
    return delta;
}

353 354 355 356 357
int64_t qemu_clock_deadline(QEMUClock *clock)
{
    return timerlist_deadline(clock->main_loop_timerlist);
}

358 359 360 361 362
/*
 * As above, but return -1 for no deadline, and do not cap to 2^32
 * as we know the result is always positive.
 */

363
int64_t timerlist_deadline_ns(QEMUTimerList *timer_list)
364 365 366
{
    int64_t delta;

367
    if (!timer_list->clock->enabled || !timer_list->active_timers) {
368 369 370
        return -1;
    }

371 372
    delta = timer_list->active_timers->expire_time -
        qemu_get_clock_ns(timer_list->clock);
373 374 375 376 377 378 379 380

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

    return delta;
}

381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
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;
}

396 397 398 399 400 401 402 403 404
void timerlist_notify(QEMUTimerList *timer_list)
{
    if (timer_list->notify_cb) {
        timer_list->notify_cb(timer_list->notify_opaque);
    } else {
        qemu_notify_event();
    }
}

405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
/* 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;
}


433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
/* 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
}


453 454 455
void timer_init(QEMUTimer *ts,
                QEMUTimerList *timer_list, int scale,
                QEMUTimerCB *cb, void *opaque)
P
Paolo Bonzini 已提交
456
{
457
    ts->timer_list = timer_list;
P
Paolo Bonzini 已提交
458 459
    ts->cb = cb;
    ts->opaque = opaque;
460
    ts->scale = scale;
461 462 463 464 465 466 467
}

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 已提交
468 469 470 471
}

void qemu_free_timer(QEMUTimer *ts)
{
472
    g_free(ts);
P
Paolo Bonzini 已提交
473 474 475 476 477 478 479 480
}

/* 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
481
       timer_expired() can be called from a signal. */
482
    pt = &ts->timer_list->active_timers;
P
Paolo Bonzini 已提交
483 484 485 486 487 488 489 490 491 492 493 494 495 496
    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. */
497
void qemu_mod_timer_ns(QEMUTimer *ts, int64_t expire_time)
P
Paolo Bonzini 已提交
498 499 500 501 502 503 504
{
    QEMUTimer **pt, *t;

    qemu_del_timer(ts);

    /* add the timer in the sorted list */
    /* NOTE: this code must be signal safe because
505
       timer_expired() can be called from a signal. */
506
    pt = &ts->timer_list->active_timers;
P
Paolo Bonzini 已提交
507 508
    for(;;) {
        t = *pt;
509
        if (!timer_expired_ns(t, expire_time)) {
P
Paolo Bonzini 已提交
510
            break;
511
        }
P
Paolo Bonzini 已提交
512 513 514 515 516 517 518
        pt = &t->next;
    }
    ts->expire_time = expire_time;
    ts->next = *pt;
    *pt = ts;

    /* Rearm if necessary  */
519
    if (pt == &ts->timer_list->active_timers) {
P
Paolo Bonzini 已提交
520 521 522 523
        if (!alarm_timer->pending) {
            qemu_rearm_alarm_timer(alarm_timer);
        }
        /* Interrupt execution to force deadline recalculation.  */
524
        qemu_clock_warp(ts->timer_list->clock);
525
        if (use_icount) {
526
            timerlist_notify(ts->timer_list);
527
        }
P
Paolo Bonzini 已提交
528 529 530
    }
}

531 532 533 534 535
void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
{
    qemu_mod_timer_ns(ts, expire_time * ts->scale);
}

536
bool timer_pending(QEMUTimer *ts)
P
Paolo Bonzini 已提交
537 538
{
    QEMUTimer *t;
539
    for (t = ts->timer_list->active_timers; t != NULL; t = t->next) {
540 541 542
        if (t == ts) {
            return true;
        }
P
Paolo Bonzini 已提交
543
    }
544
    return false;
P
Paolo Bonzini 已提交
545 546
}

547
bool timer_expired(QEMUTimer *timer_head, int64_t current_time)
P
Paolo Bonzini 已提交
548
{
549
    return timer_expired_ns(timer_head, current_time * timer_head->scale);
P
Paolo Bonzini 已提交
550 551
}

552
bool timerlist_run_timers(QEMUTimerList *timer_list)
P
Paolo Bonzini 已提交
553
{
554
    QEMUTimer *ts;
P
Paolo Bonzini 已提交
555
    int64_t current_time;
556
    bool progress = false;
P
Paolo Bonzini 已提交
557
   
558
    if (!timer_list->clock->enabled) {
559
        return progress;
560
    }
P
Paolo Bonzini 已提交
561

562
    current_time = qemu_get_clock_ns(timer_list->clock);
P
Paolo Bonzini 已提交
563
    for(;;) {
564
        ts = timer_list->active_timers;
565
        if (!timer_expired_ns(ts, current_time)) {
P
Paolo Bonzini 已提交
566
            break;
567
        }
P
Paolo Bonzini 已提交
568
        /* remove timer from the list before calling the callback */
569
        timer_list->active_timers = ts->next;
P
Paolo Bonzini 已提交
570 571 572 573
        ts->next = NULL;

        /* run the callback (the timer list can be modified) */
        ts->cb(ts->opaque);
574
        progress = true;
P
Paolo Bonzini 已提交
575
    }
576
    return progress;
P
Paolo Bonzini 已提交
577 578
}

579 580 581 582 583
bool qemu_run_timers(QEMUClock *clock)
{
    return timerlist_run_timers(clock->main_loop_timerlist);
}

584 585
void timerlistgroup_init(QEMUTimerListGroup *tlg,
                         QEMUTimerListNotifyCB *cb, void *opaque)
586 587 588
{
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
589
        tlg->tl[type] = timerlist_new(type, cb, opaque);
590 591 592 593 594 595 596 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
    }
}

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 已提交
625 626
int64_t qemu_get_clock_ns(QEMUClock *clock)
{
627 628
    int64_t now, last;

P
Paolo Bonzini 已提交
629 630 631 632 633 634 635 636 637 638 639
    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:
640 641 642 643 644 645 646
        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 已提交
647 648 649
    }
}

650 651 652 653 654 655 656
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 已提交
657
    notifier_remove(notifier);
658 659
}

P
Paolo Bonzini 已提交
660 661
void init_clocks(void)
{
662 663 664 665
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
        if (!qemu_clocks[type]) {
            qemu_clocks[type] = qemu_clock_new(type);
666
            main_loop_tlg.tl[type] = qemu_clocks[type]->main_loop_timerlist;
667
        }
668
    }
669

670 671 672
#ifdef CONFIG_PRCTL_PR_SET_TIMERSLACK
    prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0);
#endif
P
Paolo Bonzini 已提交
673 674
}

675
uint64_t timer_expire_time_ns(QEMUTimer *ts)
P
Paolo Bonzini 已提交
676
{
677
    return timer_pending(ts) ? ts->expire_time : -1;
P
Paolo Bonzini 已提交
678 679
}

680
bool qemu_run_all_timers(void)
P
Paolo Bonzini 已提交
681
{
682
    bool progress = false;
683
    alarm_timer->pending = false;
684

685
    /* vm time timers */
686 687 688 689
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
        progress |= qemu_run_timers(qemu_clock_ptr(type));
    }
690

P
Paolo Bonzini 已提交
691 692
    /* rearm timer, if not periodic */
    if (alarm_timer->expired) {
693
        alarm_timer->expired = false;
P
Paolo Bonzini 已提交
694 695
        qemu_rearm_alarm_timer(alarm_timer);
    }
696 697

    return progress;
P
Paolo Bonzini 已提交
698 699 700
}

#ifdef _WIN32
P
Paolo Bonzini 已提交
701
static void CALLBACK host_alarm_handler(PVOID lpParam, BOOLEAN unused)
P
Paolo Bonzini 已提交
702 703 704 705 706 707 708 709
#else
static void host_alarm_handler(int host_signum)
#endif
{
    struct qemu_alarm_timer *t = alarm_timer;
    if (!t)
	return;

710 711 712
    t->expired = true;
    t->pending = true;
    qemu_notify_event();
P
Paolo Bonzini 已提交
713 714
}

P
Paolo Bonzini 已提交
715 716
#if defined(__linux__)

717
#include "qemu/compatfd.h"
718

P
Paolo Bonzini 已提交
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
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;
738
#ifdef CONFIG_SIGEV_THREAD_ID
739 740 741 742
    if (qemu_signalfd_available()) {
        ev.sigev_notify = SIGEV_THREAD_ID;
        ev._sigev_un._tid = qemu_get_thread_id();
    }
743
#endif /* CONFIG_SIGEV_THREAD_ID */
P
Paolo Bonzini 已提交
744 745 746 747 748 749 750
    ev.sigev_signo = SIGALRM;

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

S
Stefan Weil 已提交
751
    t->timer = host_timer;
P
Paolo Bonzini 已提交
752 753 754 755 756 757

    return 0;
}

static void dynticks_stop_timer(struct qemu_alarm_timer *t)
{
S
Stefan Weil 已提交
758
    timer_t host_timer = t->timer;
P
Paolo Bonzini 已提交
759 760 761 762

    timer_delete(host_timer);
}

763 764
static void dynticks_rearm_timer(struct qemu_alarm_timer *t,
                                 int64_t nearest_delta_ns)
P
Paolo Bonzini 已提交
765
{
S
Stefan Weil 已提交
766
    timer_t host_timer = t->timer;
P
Paolo Bonzini 已提交
767
    struct itimerspec timeout;
768
    int64_t current_ns;
P
Paolo Bonzini 已提交
769

P
Paolo Bonzini 已提交
770 771
    if (nearest_delta_ns < MIN_TIMER_REARM_NS)
        nearest_delta_ns = MIN_TIMER_REARM_NS;
P
Paolo Bonzini 已提交
772 773 774 775 776 777 778

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

    timeout.it_interval.tv_sec = 0;
    timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */
785 786
    timeout.it_value.tv_sec =  nearest_delta_ns / 1000000000;
    timeout.it_value.tv_nsec = nearest_delta_ns % 1000000000;
P
Paolo Bonzini 已提交
787 788 789 790 791 792 793 794 795
    if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) {
        perror("settime");
        fprintf(stderr, "Internal timer error: aborting\n");
        exit(1);
    }
}

#endif /* defined(__linux__) */

796 797
#if !defined(_WIN32)

P
Paolo Bonzini 已提交
798 799 800 801 802 803 804 805 806 807
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);
808 809
    return 0;
}
P
Paolo Bonzini 已提交
810

811 812
static void unix_rearm_timer(struct qemu_alarm_timer *t,
                             int64_t nearest_delta_ns)
813 814 815
{
    struct itimerval itv;
    int err;
P
Paolo Bonzini 已提交
816

817 818 819 820 821 822 823 824 825 826 827 828 829
    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 已提交
830 831 832 833 834 835 836 837 838 839 840 841 842 843 844
}

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 已提交
845
static MMRESULT mm_timer;
846
static TIMECAPS mm_tc;
S
Stefan Weil 已提交
847 848 849 850 851 852 853 854 855

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;
    }
856 857 858
    t->expired = true;
    t->pending = true;
    qemu_notify_event();
S
Stefan Weil 已提交
859 860 861 862
}

static int mm_start_timer(struct qemu_alarm_timer *t)
{
863
    timeGetDevCaps(&mm_tc, sizeof(mm_tc));
S
Stefan Weil 已提交
864 865 866 867 868
    return 0;
}

static void mm_stop_timer(struct qemu_alarm_timer *t)
{
869 870 871
    if (mm_timer) {
        timeKillEvent(mm_timer);
    }
S
Stefan Weil 已提交
872 873
}

874
static void mm_rearm_timer(struct qemu_alarm_timer *t, int64_t delta)
S
Stefan Weil 已提交
875
{
876
    int64_t nearest_delta_ms = delta / 1000000;
877 878 879 880
    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;
881
    }
882

883 884 885
    if (mm_timer) {
        timeKillEvent(mm_timer);
    }
886 887
    mm_timer = timeSetEvent((UINT)nearest_delta_ms,
                            mm_tc.wPeriodMin,
S
Stefan Weil 已提交
888 889 890 891 892
                            mm_alarm_handler,
                            (DWORD_PTR)t,
                            TIME_ONESHOT | TIME_CALLBACK_FUNCTION);

    if (!mm_timer) {
893
        fprintf(stderr, "Failed to re-arm win32 alarm timer\n");
894
        timeEndPeriod(mm_tc.wPeriodMin);
S
Stefan Weil 已提交
895 896 897 898
        exit(1);
    }
}

P
Paolo Bonzini 已提交
899 900
static int win32_start_timer(struct qemu_alarm_timer *t)
{
P
Paolo Bonzini 已提交
901 902 903 904 905 906 907 908 909 910 911 912
    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,
913
                          3600000,
P
Paolo Bonzini 已提交
914 915 916
                          WT_EXECUTEINTIMERTHREAD);

    if (!success) {
P
Paolo Bonzini 已提交
917 918 919 920 921
        fprintf(stderr, "Failed to initialize win32 alarm timer: %ld\n",
                GetLastError());
        return -1;
    }

S
Stefan Weil 已提交
922
    t->timer = hTimer;
P
Paolo Bonzini 已提交
923 924 925 926 927
    return 0;
}

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

P
Paolo Bonzini 已提交
930 931 932
    if (hTimer) {
        DeleteTimerQueueTimer(NULL, hTimer, NULL);
    }
P
Paolo Bonzini 已提交
933 934
}

935 936
static void win32_rearm_timer(struct qemu_alarm_timer *t,
                              int64_t nearest_delta_ns)
P
Paolo Bonzini 已提交
937
{
S
Stefan Weil 已提交
938
    HANDLE hTimer = t->timer;
939
    int64_t nearest_delta_ms;
P
Paolo Bonzini 已提交
940
    BOOLEAN success;
P
Paolo Bonzini 已提交
941

942
    nearest_delta_ms = nearest_delta_ns / 1000000;
P
Paolo Bonzini 已提交
943 944 945
    if (nearest_delta_ms < 1) {
        nearest_delta_ms = 1;
    }
946 947 948 949
    /* ULONG_MAX can be 32 bit */
    if (nearest_delta_ms > ULONG_MAX) {
        nearest_delta_ms = ULONG_MAX;
    }
P
Paolo Bonzini 已提交
950 951
    success = ChangeTimerQueueTimer(NULL,
                                    hTimer,
952
                                    (unsigned long) nearest_delta_ms,
P
Paolo Bonzini 已提交
953
                                    3600000);
P
Paolo Bonzini 已提交
954

P
Paolo Bonzini 已提交
955 956 957 958
    if (!success) {
        fprintf(stderr, "Failed to rearm win32 alarm timer: %ld\n",
                GetLastError());
        exit(-1);
P
Paolo Bonzini 已提交
959
    }
P
Paolo Bonzini 已提交
960

P
Paolo Bonzini 已提交
961 962 963 964
}

#endif /* _WIN32 */

965 966 967 968 969 970 971
static void quit_timers(void)
{
    struct qemu_alarm_timer *t = alarm_timer;
    alarm_timer = NULL;
    t->stop(t);
}

972
#ifdef CONFIG_POSIX
973 974 975 976 977 978 979 980 981 982
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);
}
983
#endif /* CONFIG_POSIX */
984

P
Paolo Bonzini 已提交
985 986 987 988 989
int init_timer_alarm(void)
{
    struct qemu_alarm_timer *t = NULL;
    int i, err = -1;

990 991 992 993
    if (alarm_timer) {
        return 0;
    }

P
Paolo Bonzini 已提交
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
    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;
    }

1007
    atexit(quit_timers);
1008 1009 1010
#ifdef CONFIG_POSIX
    pthread_atfork(NULL, NULL, reinit_timers);
#endif
P
Paolo Bonzini 已提交
1011 1012 1013 1014 1015 1016 1017
    alarm_timer = t;
    return 0;

fail:
    return err;
}