qemu-timer.c 20.5 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
    QEMUTimer *active_timers;
53 54 55

    NotifierList reset_notifiers;
    int64_t last;
56 57 58

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

struct QEMUTimer {
62
    int64_t expire_time;	/* in nanoseconds */
63
    QEMUClock *clock;
P
Paolo Bonzini 已提交
64 65
    QEMUTimerCB *cb;
    void *opaque;
66 67
    QEMUTimer *next;
    int scale;
P
Paolo Bonzini 已提交
68 69 70 71 72 73
};

struct qemu_alarm_timer {
    char const *name;
    int (*start)(struct qemu_alarm_timer *t);
    void (*stop)(struct qemu_alarm_timer *t);
74
    void (*rearm)(struct qemu_alarm_timer *t, int64_t nearest_delta_ns);
S
Stefan Weil 已提交
75 76
#if defined(__linux__)
    timer_t timer;
77
    int fd;
S
Stefan Weil 已提交
78 79 80
#elif defined(_WIN32)
    HANDLE timer;
#endif
81 82
    bool expired;
    bool pending;
P
Paolo Bonzini 已提交
83 84 85 86
};

static struct qemu_alarm_timer *alarm_timer;

87
static bool timer_expired_ns(QEMUTimer *timer_head, int64_t current_time)
88 89 90 91
{
    return timer_head && (timer_head->expire_time <= current_time);
}

92 93
static int64_t qemu_next_alarm_deadline(void)
{
94
    int64_t delta = INT64_MAX;
95 96
    int64_t rtdelta;

97
    if (!use_icount && vm_clock->enabled && vm_clock->active_timers) {
98 99 100
        delta = vm_clock->active_timers->expire_time -
                     qemu_get_clock_ns(vm_clock);
    }
101
    if (host_clock->enabled && host_clock->active_timers) {
102 103 104 105 106 107
        int64_t hdelta = host_clock->active_timers->expire_time -
                 qemu_get_clock_ns(host_clock);
        if (hdelta < delta) {
            delta = hdelta;
        }
    }
108
    if (rt_clock->enabled && rt_clock->active_timers) {
109 110 111 112 113 114 115 116 117 118
        rtdelta = (rt_clock->active_timers->expire_time -
                 qemu_get_clock_ns(rt_clock));
        if (rtdelta < delta) {
            delta = rtdelta;
        }
    }

    return delta;
}

P
Paolo Bonzini 已提交
119 120
static void qemu_rearm_alarm_timer(struct qemu_alarm_timer *t)
{
121 122 123
    int64_t nearest_delta_ns = qemu_next_alarm_deadline();
    if (nearest_delta_ns < INT64_MAX) {
        t->rearm(t, nearest_delta_ns);
124
    }
P
Paolo Bonzini 已提交
125 126
}

127 128
/* TODO: MIN_TIMER_REARM_NS should be optimized */
#define MIN_TIMER_REARM_NS 250000
P
Paolo Bonzini 已提交
129 130 131

#ifdef _WIN32

S
Stefan Weil 已提交
132 133
static int mm_start_timer(struct qemu_alarm_timer *t);
static void mm_stop_timer(struct qemu_alarm_timer *t);
134
static void mm_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
S
Stefan Weil 已提交
135

P
Paolo Bonzini 已提交
136 137
static int win32_start_timer(struct qemu_alarm_timer *t);
static void win32_stop_timer(struct qemu_alarm_timer *t);
138
static void win32_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
P
Paolo Bonzini 已提交
139 140 141 142 143

#else

static int unix_start_timer(struct qemu_alarm_timer *t);
static void unix_stop_timer(struct qemu_alarm_timer *t);
144
static void unix_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
P
Paolo Bonzini 已提交
145 146 147 148 149

#ifdef __linux__

static int dynticks_start_timer(struct qemu_alarm_timer *t);
static void dynticks_stop_timer(struct qemu_alarm_timer *t);
150
static void dynticks_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
P
Paolo Bonzini 已提交
151 152 153 154 155 156 157 158 159

#endif /* __linux__ */

#endif /* _WIN32 */

static struct qemu_alarm_timer alarm_timers[] = {
#ifndef _WIN32
#ifdef __linux__
    {"dynticks", dynticks_start_timer,
S
Stefan Weil 已提交
160
     dynticks_stop_timer, dynticks_rearm_timer},
P
Paolo Bonzini 已提交
161
#endif
162
    {"unix", unix_start_timer, unix_stop_timer, unix_rearm_timer},
P
Paolo Bonzini 已提交
163
#else
P
Paolo Bonzini 已提交
164
    {"mmtimer", mm_start_timer, mm_stop_timer, mm_rearm_timer},
S
Stefan Weil 已提交
165
    {"dynticks", win32_start_timer, win32_stop_timer, win32_rearm_timer},
P
Paolo Bonzini 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
#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;

188
    if (is_help_option(opt)) {
P
Paolo Bonzini 已提交
189 190 191 192
        show_available_alarms();
        exit(0);
    }

193
    arg = g_strdup(opt);
P
Paolo Bonzini 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221

    /* 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, ",");
    }

222
    g_free(arg);
P
Paolo Bonzini 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237

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

QEMUClock *rt_clock;
QEMUClock *vm_clock;
QEMUClock *host_clock;

238
static QEMUClock *qemu_clock_new(int type)
P
Paolo Bonzini 已提交
239 240
{
    QEMUClock *clock;
241

242
    clock = g_malloc0(sizeof(QEMUClock));
P
Paolo Bonzini 已提交
243
    clock->type = type;
244
    clock->enabled = true;
245
    clock->last = INT64_MIN;
246
    notifier_list_init(&clock->reset_notifiers);
P
Paolo Bonzini 已提交
247 248 249
    return clock;
}

250
void qemu_clock_enable(QEMUClock *clock, bool enabled)
P
Paolo Bonzini 已提交
251
{
252
    bool old = clock->enabled;
P
Paolo Bonzini 已提交
253
    clock->enabled = enabled;
254 255 256
    if (enabled && !old) {
        qemu_rearm_alarm_timer(alarm_timer);
    }
P
Paolo Bonzini 已提交
257 258
}

P
Paolo Bonzini 已提交
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
int64_t qemu_clock_has_timers(QEMUClock *clock)
{
    return !!clock->active_timers;
}

int64_t qemu_clock_expired(QEMUClock *clock)
{
    return (clock->active_timers &&
            clock->active_timers->expire_time < qemu_get_clock_ns(clock));
}

int64_t qemu_clock_deadline(QEMUClock *clock)
{
    /* To avoid problems with overflow limit this to 2^32.  */
    int64_t delta = INT32_MAX;

275
    if (clock->enabled && clock->active_timers) {
P
Paolo Bonzini 已提交
276 277 278 279 280 281 282 283
        delta = clock->active_timers->expire_time - qemu_get_clock_ns(clock);
    }
    if (delta < 0) {
        delta = 0;
    }
    return delta;
}

284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
/*
 * As above, but return -1 for no deadline, and do not cap to 2^32
 * as we know the result is always positive.
 */

int64_t qemu_clock_deadline_ns(QEMUClock *clock)
{
    int64_t delta;

    if (!clock->enabled || !clock->active_timers) {
        return -1;
    }

    delta = clock->active_timers->expire_time - qemu_get_clock_ns(clock);

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

    return delta;
}

/* 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;
}


334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
/* 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
}


354 355
QEMUTimer *qemu_new_timer(QEMUClock *clock, int scale,
                          QEMUTimerCB *cb, void *opaque)
P
Paolo Bonzini 已提交
356 357 358
{
    QEMUTimer *ts;

359
    ts = g_malloc0(sizeof(QEMUTimer));
P
Paolo Bonzini 已提交
360 361 362
    ts->clock = clock;
    ts->cb = cb;
    ts->opaque = opaque;
363
    ts->scale = scale;
P
Paolo Bonzini 已提交
364 365 366 367 368
    return ts;
}

void qemu_free_timer(QEMUTimer *ts)
{
369
    g_free(ts);
P
Paolo Bonzini 已提交
370 371 372 373 374 375 376 377
}

/* 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
378
       timer_expired() can be called from a signal. */
379
    pt = &ts->clock->active_timers;
P
Paolo Bonzini 已提交
380 381 382 383 384 385 386 387 388 389 390 391 392 393
    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. */
394
void qemu_mod_timer_ns(QEMUTimer *ts, int64_t expire_time)
P
Paolo Bonzini 已提交
395 396 397 398 399 400 401
{
    QEMUTimer **pt, *t;

    qemu_del_timer(ts);

    /* add the timer in the sorted list */
    /* NOTE: this code must be signal safe because
402
       timer_expired() can be called from a signal. */
403
    pt = &ts->clock->active_timers;
P
Paolo Bonzini 已提交
404 405
    for(;;) {
        t = *pt;
406
        if (!timer_expired_ns(t, expire_time)) {
P
Paolo Bonzini 已提交
407
            break;
408
        }
P
Paolo Bonzini 已提交
409 410 411 412 413 414 415
        pt = &t->next;
    }
    ts->expire_time = expire_time;
    ts->next = *pt;
    *pt = ts;

    /* Rearm if necessary  */
416
    if (pt == &ts->clock->active_timers) {
P
Paolo Bonzini 已提交
417 418 419 420
        if (!alarm_timer->pending) {
            qemu_rearm_alarm_timer(alarm_timer);
        }
        /* Interrupt execution to force deadline recalculation.  */
421 422
        qemu_clock_warp(ts->clock);
        if (use_icount) {
P
Paolo Bonzini 已提交
423
            qemu_notify_event();
424
        }
P
Paolo Bonzini 已提交
425 426 427
    }
}

428 429 430 431 432
void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
{
    qemu_mod_timer_ns(ts, expire_time * ts->scale);
}

433
bool timer_pending(QEMUTimer *ts)
P
Paolo Bonzini 已提交
434 435
{
    QEMUTimer *t;
436
    for (t = ts->clock->active_timers; t != NULL; t = t->next) {
437 438 439
        if (t == ts) {
            return true;
        }
P
Paolo Bonzini 已提交
440
    }
441
    return false;
P
Paolo Bonzini 已提交
442 443
}

444
bool timer_expired(QEMUTimer *timer_head, int64_t current_time)
P
Paolo Bonzini 已提交
445
{
446
    return timer_expired_ns(timer_head, current_time * timer_head->scale);
P
Paolo Bonzini 已提交
447 448
}

449
bool qemu_run_timers(QEMUClock *clock)
P
Paolo Bonzini 已提交
450
{
451
    QEMUTimer *ts;
P
Paolo Bonzini 已提交
452
    int64_t current_time;
453
    bool progress = false;
P
Paolo Bonzini 已提交
454 455
   
    if (!clock->enabled)
456
        return progress;
P
Paolo Bonzini 已提交
457

458
    current_time = qemu_get_clock_ns(clock);
P
Paolo Bonzini 已提交
459
    for(;;) {
460
        ts = clock->active_timers;
461
        if (!timer_expired_ns(ts, current_time)) {
P
Paolo Bonzini 已提交
462
            break;
463
        }
P
Paolo Bonzini 已提交
464
        /* remove timer from the list before calling the callback */
465
        clock->active_timers = ts->next;
P
Paolo Bonzini 已提交
466 467 468 469
        ts->next = NULL;

        /* run the callback (the timer list can be modified) */
        ts->cb(ts->opaque);
470
        progress = true;
P
Paolo Bonzini 已提交
471
    }
472
    return progress;
P
Paolo Bonzini 已提交
473 474 475 476
}

int64_t qemu_get_clock_ns(QEMUClock *clock)
{
477 478
    int64_t now, last;

P
Paolo Bonzini 已提交
479 480 481 482 483 484 485 486 487 488 489
    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:
490 491 492 493 494 495 496
        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 已提交
497 498 499
    }
}

500 501 502 503 504 505 506
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 已提交
507
    notifier_remove(notifier);
508 509
}

P
Paolo Bonzini 已提交
510 511
void init_clocks(void)
{
512
    if (!rt_clock) {
513 514 515
        rt_clock = qemu_clock_new(QEMU_CLOCK_REALTIME);
        vm_clock = qemu_clock_new(QEMU_CLOCK_VIRTUAL);
        host_clock = qemu_clock_new(QEMU_CLOCK_HOST);
516
    }
517 518 519
#ifdef CONFIG_PRCTL_PR_SET_TIMERSLACK
    prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0);
#endif
P
Paolo Bonzini 已提交
520 521
}

522
uint64_t timer_expire_time_ns(QEMUTimer *ts)
P
Paolo Bonzini 已提交
523
{
524
    return timer_pending(ts) ? ts->expire_time : -1;
P
Paolo Bonzini 已提交
525 526
}

527
bool qemu_run_all_timers(void)
P
Paolo Bonzini 已提交
528
{
529
    bool progress = false;
530
    alarm_timer->pending = false;
531

532
    /* vm time timers */
533 534 535
    progress |= qemu_run_timers(vm_clock);
    progress |= qemu_run_timers(rt_clock);
    progress |= qemu_run_timers(host_clock);
536

P
Paolo Bonzini 已提交
537 538
    /* rearm timer, if not periodic */
    if (alarm_timer->expired) {
539
        alarm_timer->expired = false;
P
Paolo Bonzini 已提交
540 541
        qemu_rearm_alarm_timer(alarm_timer);
    }
542 543

    return progress;
P
Paolo Bonzini 已提交
544 545 546
}

#ifdef _WIN32
P
Paolo Bonzini 已提交
547
static void CALLBACK host_alarm_handler(PVOID lpParam, BOOLEAN unused)
P
Paolo Bonzini 已提交
548 549 550 551 552 553 554 555
#else
static void host_alarm_handler(int host_signum)
#endif
{
    struct qemu_alarm_timer *t = alarm_timer;
    if (!t)
	return;

556 557 558
    t->expired = true;
    t->pending = true;
    qemu_notify_event();
P
Paolo Bonzini 已提交
559 560
}

P
Paolo Bonzini 已提交
561 562
#if defined(__linux__)

563
#include "qemu/compatfd.h"
564

P
Paolo Bonzini 已提交
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
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;
584
#ifdef CONFIG_SIGEV_THREAD_ID
585 586 587 588
    if (qemu_signalfd_available()) {
        ev.sigev_notify = SIGEV_THREAD_ID;
        ev._sigev_un._tid = qemu_get_thread_id();
    }
589
#endif /* CONFIG_SIGEV_THREAD_ID */
P
Paolo Bonzini 已提交
590 591 592 593 594 595 596
    ev.sigev_signo = SIGALRM;

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

S
Stefan Weil 已提交
597
    t->timer = host_timer;
P
Paolo Bonzini 已提交
598 599 600 601 602 603

    return 0;
}

static void dynticks_stop_timer(struct qemu_alarm_timer *t)
{
S
Stefan Weil 已提交
604
    timer_t host_timer = t->timer;
P
Paolo Bonzini 已提交
605 606 607 608

    timer_delete(host_timer);
}

609 610
static void dynticks_rearm_timer(struct qemu_alarm_timer *t,
                                 int64_t nearest_delta_ns)
P
Paolo Bonzini 已提交
611
{
S
Stefan Weil 已提交
612
    timer_t host_timer = t->timer;
P
Paolo Bonzini 已提交
613
    struct itimerspec timeout;
614
    int64_t current_ns;
P
Paolo Bonzini 已提交
615

P
Paolo Bonzini 已提交
616 617
    if (nearest_delta_ns < MIN_TIMER_REARM_NS)
        nearest_delta_ns = MIN_TIMER_REARM_NS;
P
Paolo Bonzini 已提交
618 619 620 621 622 623 624

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

    timeout.it_interval.tv_sec = 0;
    timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */
631 632
    timeout.it_value.tv_sec =  nearest_delta_ns / 1000000000;
    timeout.it_value.tv_nsec = nearest_delta_ns % 1000000000;
P
Paolo Bonzini 已提交
633 634 635 636 637 638 639 640 641
    if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) {
        perror("settime");
        fprintf(stderr, "Internal timer error: aborting\n");
        exit(1);
    }
}

#endif /* defined(__linux__) */

642 643
#if !defined(_WIN32)

P
Paolo Bonzini 已提交
644 645 646 647 648 649 650 651 652 653
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);
654 655
    return 0;
}
P
Paolo Bonzini 已提交
656

657 658
static void unix_rearm_timer(struct qemu_alarm_timer *t,
                             int64_t nearest_delta_ns)
659 660 661
{
    struct itimerval itv;
    int err;
P
Paolo Bonzini 已提交
662

663 664 665 666 667 668 669 670 671 672 673 674 675
    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 已提交
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
}

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 已提交
691
static MMRESULT mm_timer;
692
static TIMECAPS mm_tc;
S
Stefan Weil 已提交
693 694 695 696 697 698 699 700 701

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;
    }
702 703 704
    t->expired = true;
    t->pending = true;
    qemu_notify_event();
S
Stefan Weil 已提交
705 706 707 708
}

static int mm_start_timer(struct qemu_alarm_timer *t)
{
709
    timeGetDevCaps(&mm_tc, sizeof(mm_tc));
S
Stefan Weil 已提交
710 711 712 713 714
    return 0;
}

static void mm_stop_timer(struct qemu_alarm_timer *t)
{
715 716 717
    if (mm_timer) {
        timeKillEvent(mm_timer);
    }
S
Stefan Weil 已提交
718 719
}

720
static void mm_rearm_timer(struct qemu_alarm_timer *t, int64_t delta)
S
Stefan Weil 已提交
721
{
722
    int64_t nearest_delta_ms = delta / 1000000;
723 724 725 726
    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;
727
    }
728

729 730 731
    if (mm_timer) {
        timeKillEvent(mm_timer);
    }
732 733
    mm_timer = timeSetEvent((UINT)nearest_delta_ms,
                            mm_tc.wPeriodMin,
S
Stefan Weil 已提交
734 735 736 737 738
                            mm_alarm_handler,
                            (DWORD_PTR)t,
                            TIME_ONESHOT | TIME_CALLBACK_FUNCTION);

    if (!mm_timer) {
739
        fprintf(stderr, "Failed to re-arm win32 alarm timer\n");
740
        timeEndPeriod(mm_tc.wPeriodMin);
S
Stefan Weil 已提交
741 742 743 744
        exit(1);
    }
}

P
Paolo Bonzini 已提交
745 746
static int win32_start_timer(struct qemu_alarm_timer *t)
{
P
Paolo Bonzini 已提交
747 748 749 750 751 752 753 754 755 756 757 758
    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,
759
                          3600000,
P
Paolo Bonzini 已提交
760 761 762
                          WT_EXECUTEINTIMERTHREAD);

    if (!success) {
P
Paolo Bonzini 已提交
763 764 765 766 767
        fprintf(stderr, "Failed to initialize win32 alarm timer: %ld\n",
                GetLastError());
        return -1;
    }

S
Stefan Weil 已提交
768
    t->timer = hTimer;
P
Paolo Bonzini 已提交
769 770 771 772 773
    return 0;
}

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

P
Paolo Bonzini 已提交
776 777 778
    if (hTimer) {
        DeleteTimerQueueTimer(NULL, hTimer, NULL);
    }
P
Paolo Bonzini 已提交
779 780
}

781 782
static void win32_rearm_timer(struct qemu_alarm_timer *t,
                              int64_t nearest_delta_ns)
P
Paolo Bonzini 已提交
783
{
S
Stefan Weil 已提交
784
    HANDLE hTimer = t->timer;
785
    int64_t nearest_delta_ms;
P
Paolo Bonzini 已提交
786
    BOOLEAN success;
P
Paolo Bonzini 已提交
787

788
    nearest_delta_ms = nearest_delta_ns / 1000000;
P
Paolo Bonzini 已提交
789 790 791
    if (nearest_delta_ms < 1) {
        nearest_delta_ms = 1;
    }
792 793 794 795
    /* ULONG_MAX can be 32 bit */
    if (nearest_delta_ms > ULONG_MAX) {
        nearest_delta_ms = ULONG_MAX;
    }
P
Paolo Bonzini 已提交
796 797
    success = ChangeTimerQueueTimer(NULL,
                                    hTimer,
798
                                    (unsigned long) nearest_delta_ms,
P
Paolo Bonzini 已提交
799
                                    3600000);
P
Paolo Bonzini 已提交
800

P
Paolo Bonzini 已提交
801 802 803 804
    if (!success) {
        fprintf(stderr, "Failed to rearm win32 alarm timer: %ld\n",
                GetLastError());
        exit(-1);
P
Paolo Bonzini 已提交
805
    }
P
Paolo Bonzini 已提交
806

P
Paolo Bonzini 已提交
807 808 809 810
}

#endif /* _WIN32 */

811 812 813 814 815 816 817
static void quit_timers(void)
{
    struct qemu_alarm_timer *t = alarm_timer;
    alarm_timer = NULL;
    t->stop(t);
}

818
#ifdef CONFIG_POSIX
819 820 821 822 823 824 825 826 827 828
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);
}
829
#endif /* CONFIG_POSIX */
830

P
Paolo Bonzini 已提交
831 832 833 834 835
int init_timer_alarm(void)
{
    struct qemu_alarm_timer *t = NULL;
    int i, err = -1;

836 837 838 839
    if (alarm_timer) {
        return 0;
    }

P
Paolo Bonzini 已提交
840 841 842 843 844 845 846 847 848 849 850 851 852
    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;
    }

853
    atexit(quit_timers);
854 855 856
#ifdef CONFIG_POSIX
    pthread_atfork(NULL, NULL, reinit_timers);
#endif
P
Paolo Bonzini 已提交
857 858 859 860 861 862 863
    alarm_timer = t;
    return 0;

fail:
    return err;
}