qemu-timer.c 18.9 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 25 26 27 28 29 30 31
/*
 * 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.
 */

#include "sysemu.h"
#include "net.h"
#include "monitor.h"
#include "console.h"

#include "hw/hw.h"

32 33
#include "qemu-timer.h"

P
Paolo Bonzini 已提交
34 35 36 37 38 39 40 41 42 43 44 45
#ifdef _WIN32
#include <mmsystem.h>
#endif

/***********************************************************/
/* timers */

#define QEMU_CLOCK_REALTIME 0
#define QEMU_CLOCK_VIRTUAL  1
#define QEMU_CLOCK_HOST     2

struct QEMUClock {
46
    QEMUTimer *active_timers;
47 48 49

    NotifierList reset_notifiers;
    int64_t last;
50 51 52

    int type;
    bool enabled;
P
Paolo Bonzini 已提交
53 54 55
};

struct QEMUTimer {
56
    int64_t expire_time;	/* in nanoseconds */
57
    QEMUClock *clock;
P
Paolo Bonzini 已提交
58 59
    QEMUTimerCB *cb;
    void *opaque;
60 61
    QEMUTimer *next;
    int scale;
P
Paolo Bonzini 已提交
62 63 64 65 66 67
};

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

static struct qemu_alarm_timer *alarm_timer;

81 82 83 84 85
static bool qemu_timer_expired_ns(QEMUTimer *timer_head, int64_t current_time)
{
    return timer_head && (timer_head->expire_time <= current_time);
}

86 87
static int64_t qemu_next_alarm_deadline(void)
{
88
    int64_t delta = INT64_MAX;
89 90
    int64_t rtdelta;

91
    if (!use_icount && vm_clock->enabled && vm_clock->active_timers) {
92 93 94
        delta = vm_clock->active_timers->expire_time -
                     qemu_get_clock_ns(vm_clock);
    }
95
    if (host_clock->enabled && host_clock->active_timers) {
96 97 98 99 100 101
        int64_t hdelta = host_clock->active_timers->expire_time -
                 qemu_get_clock_ns(host_clock);
        if (hdelta < delta) {
            delta = hdelta;
        }
    }
102
    if (rt_clock->enabled && rt_clock->active_timers) {
103 104 105 106 107 108 109 110 111 112
        rtdelta = (rt_clock->active_timers->expire_time -
                 qemu_get_clock_ns(rt_clock));
        if (rtdelta < delta) {
            delta = rtdelta;
        }
    }

    return delta;
}

P
Paolo Bonzini 已提交
113 114
static void qemu_rearm_alarm_timer(struct qemu_alarm_timer *t)
{
115 116 117 118
    int64_t nearest_delta_ns;
    if (!rt_clock->active_timers &&
        !vm_clock->active_timers &&
        !host_clock->active_timers) {
P
Paolo Bonzini 已提交
119
        return;
120 121 122
    }
    nearest_delta_ns = qemu_next_alarm_deadline();
    t->rearm(t, nearest_delta_ns);
P
Paolo Bonzini 已提交
123 124
}

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

#ifdef _WIN32

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

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

#else

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

#ifdef __linux__

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

#endif /* __linux__ */

#endif /* _WIN32 */

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

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

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

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

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

    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;

static QEMUClock *qemu_new_clock(int type)
{
    QEMUClock *clock;
239

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

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

P
Paolo Bonzini 已提交
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
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;

    if (clock->active_timers) {
        delta = clock->active_timers->expire_time - qemu_get_clock_ns(clock);
    }
    if (delta < 0) {
        delta = 0;
    }
    return delta;
}

282 283
QEMUTimer *qemu_new_timer(QEMUClock *clock, int scale,
                          QEMUTimerCB *cb, void *opaque)
P
Paolo Bonzini 已提交
284 285 286
{
    QEMUTimer *ts;

287
    ts = g_malloc0(sizeof(QEMUTimer));
P
Paolo Bonzini 已提交
288 289 290
    ts->clock = clock;
    ts->cb = cb;
    ts->opaque = opaque;
291
    ts->scale = scale;
P
Paolo Bonzini 已提交
292 293 294 295 296
    return ts;
}

void qemu_free_timer(QEMUTimer *ts)
{
297
    g_free(ts);
P
Paolo Bonzini 已提交
298 299 300 301 302 303 304 305 306
}

/* 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
       qemu_timer_expired() can be called from a signal. */
307
    pt = &ts->clock->active_timers;
P
Paolo Bonzini 已提交
308 309 310 311 312 313 314 315 316 317 318 319 320 321
    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. */
322
void qemu_mod_timer_ns(QEMUTimer *ts, int64_t expire_time)
P
Paolo Bonzini 已提交
323 324 325 326 327 328 329 330
{
    QEMUTimer **pt, *t;

    qemu_del_timer(ts);

    /* add the timer in the sorted list */
    /* NOTE: this code must be signal safe because
       qemu_timer_expired() can be called from a signal. */
331
    pt = &ts->clock->active_timers;
P
Paolo Bonzini 已提交
332 333
    for(;;) {
        t = *pt;
334
        if (!qemu_timer_expired_ns(t, expire_time)) {
P
Paolo Bonzini 已提交
335
            break;
336
        }
P
Paolo Bonzini 已提交
337 338 339 340 341 342 343
        pt = &t->next;
    }
    ts->expire_time = expire_time;
    ts->next = *pt;
    *pt = ts;

    /* Rearm if necessary  */
344
    if (pt == &ts->clock->active_timers) {
P
Paolo Bonzini 已提交
345 346 347 348
        if (!alarm_timer->pending) {
            qemu_rearm_alarm_timer(alarm_timer);
        }
        /* Interrupt execution to force deadline recalculation.  */
349 350
        qemu_clock_warp(ts->clock);
        if (use_icount) {
P
Paolo Bonzini 已提交
351
            qemu_notify_event();
352
        }
P
Paolo Bonzini 已提交
353 354 355
    }
}

356 357 358 359 360
void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
{
    qemu_mod_timer_ns(ts, expire_time * ts->scale);
}

361
bool qemu_timer_pending(QEMUTimer *ts)
P
Paolo Bonzini 已提交
362 363
{
    QEMUTimer *t;
364
    for (t = ts->clock->active_timers; t != NULL; t = t->next) {
365 366 367
        if (t == ts) {
            return true;
        }
P
Paolo Bonzini 已提交
368
    }
369
    return false;
P
Paolo Bonzini 已提交
370 371
}

372
bool qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time)
P
Paolo Bonzini 已提交
373
{
374
    return qemu_timer_expired_ns(timer_head, current_time * timer_head->scale);
P
Paolo Bonzini 已提交
375 376
}

P
Paolo Bonzini 已提交
377
void qemu_run_timers(QEMUClock *clock)
P
Paolo Bonzini 已提交
378 379 380 381 382 383 384
{
    QEMUTimer **ptimer_head, *ts;
    int64_t current_time;
   
    if (!clock->enabled)
        return;

385
    current_time = qemu_get_clock_ns(clock);
386
    ptimer_head = &clock->active_timers;
P
Paolo Bonzini 已提交
387 388
    for(;;) {
        ts = *ptimer_head;
389
        if (!qemu_timer_expired_ns(ts, current_time)) {
P
Paolo Bonzini 已提交
390
            break;
391
        }
P
Paolo Bonzini 已提交
392 393 394 395 396 397 398 399 400 401 402
        /* remove timer from the list before calling the callback */
        *ptimer_head = ts->next;
        ts->next = NULL;

        /* run the callback (the timer list can be modified) */
        ts->cb(ts->opaque);
    }
}

int64_t qemu_get_clock_ns(QEMUClock *clock)
{
403 404
    int64_t now, last;

P
Paolo Bonzini 已提交
405 406 407 408 409 410 411 412 413 414 415
    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:
416 417 418 419 420 421 422
        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 已提交
423 424 425
    }
}

426 427 428 429 430 431 432
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 已提交
433
    notifier_remove(notifier);
434 435
}

P
Paolo Bonzini 已提交
436 437 438 439 440 441 442
void init_clocks(void)
{
    rt_clock = qemu_new_clock(QEMU_CLOCK_REALTIME);
    vm_clock = qemu_new_clock(QEMU_CLOCK_VIRTUAL);
    host_clock = qemu_new_clock(QEMU_CLOCK_HOST);
}

443
uint64_t qemu_timer_expire_time_ns(QEMUTimer *ts)
P
Paolo Bonzini 已提交
444
{
445
    return qemu_timer_pending(ts) ? ts->expire_time : -1;
P
Paolo Bonzini 已提交
446 447 448 449
}

void qemu_run_all_timers(void)
{
450
    alarm_timer->pending = false;
451

452 453 454 455 456
    /* vm time timers */
    qemu_run_timers(vm_clock);
    qemu_run_timers(rt_clock);
    qemu_run_timers(host_clock);

P
Paolo Bonzini 已提交
457 458
    /* rearm timer, if not periodic */
    if (alarm_timer->expired) {
459
        alarm_timer->expired = false;
P
Paolo Bonzini 已提交
460 461 462 463 464
        qemu_rearm_alarm_timer(alarm_timer);
    }
}

#ifdef _WIN32
P
Paolo Bonzini 已提交
465
static void CALLBACK host_alarm_handler(PVOID lpParam, BOOLEAN unused)
P
Paolo Bonzini 已提交
466 467 468 469 470 471 472 473
#else
static void host_alarm_handler(int host_signum)
#endif
{
    struct qemu_alarm_timer *t = alarm_timer;
    if (!t)
	return;

474 475 476
    t->expired = true;
    t->pending = true;
    qemu_notify_event();
P
Paolo Bonzini 已提交
477 478
}

P
Paolo Bonzini 已提交
479 480
#if defined(__linux__)

481 482
#include "compatfd.h"

P
Paolo Bonzini 已提交
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
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;
502 503 504 505 506 507
#ifdef SIGEV_THREAD_ID
    if (qemu_signalfd_available()) {
        ev.sigev_notify = SIGEV_THREAD_ID;
        ev._sigev_un._tid = qemu_get_thread_id();
    }
#endif /* SIGEV_THREAD_ID */
P
Paolo Bonzini 已提交
508 509 510 511 512 513 514
    ev.sigev_signo = SIGALRM;

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

S
Stefan Weil 已提交
515
    t->timer = host_timer;
P
Paolo Bonzini 已提交
516 517 518 519 520 521

    return 0;
}

static void dynticks_stop_timer(struct qemu_alarm_timer *t)
{
S
Stefan Weil 已提交
522
    timer_t host_timer = t->timer;
P
Paolo Bonzini 已提交
523 524 525 526

    timer_delete(host_timer);
}

527 528
static void dynticks_rearm_timer(struct qemu_alarm_timer *t,
                                 int64_t nearest_delta_ns)
P
Paolo Bonzini 已提交
529
{
S
Stefan Weil 已提交
530
    timer_t host_timer = t->timer;
P
Paolo Bonzini 已提交
531
    struct itimerspec timeout;
532
    int64_t current_ns;
P
Paolo Bonzini 已提交
533

P
Paolo Bonzini 已提交
534 535
    if (nearest_delta_ns < MIN_TIMER_REARM_NS)
        nearest_delta_ns = MIN_TIMER_REARM_NS;
P
Paolo Bonzini 已提交
536 537 538 539 540 541 542

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

    timeout.it_interval.tv_sec = 0;
    timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */
549 550
    timeout.it_value.tv_sec =  nearest_delta_ns / 1000000000;
    timeout.it_value.tv_nsec = nearest_delta_ns % 1000000000;
P
Paolo Bonzini 已提交
551 552 553 554 555 556 557 558 559
    if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) {
        perror("settime");
        fprintf(stderr, "Internal timer error: aborting\n");
        exit(1);
    }
}

#endif /* defined(__linux__) */

560 561
#if !defined(_WIN32)

P
Paolo Bonzini 已提交
562 563 564 565 566 567 568 569 570 571
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);
572 573
    return 0;
}
P
Paolo Bonzini 已提交
574

575 576
static void unix_rearm_timer(struct qemu_alarm_timer *t,
                             int64_t nearest_delta_ns)
577 578 579
{
    struct itimerval itv;
    int err;
P
Paolo Bonzini 已提交
580

581 582 583 584 585 586 587 588 589 590 591 592 593
    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 已提交
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
}

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 已提交
609
static MMRESULT mm_timer;
610
static TIMECAPS mm_tc;
S
Stefan Weil 已提交
611 612 613 614 615 616 617 618 619

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;
    }
620 621 622
    t->expired = true;
    t->pending = true;
    qemu_notify_event();
S
Stefan Weil 已提交
623 624 625 626
}

static int mm_start_timer(struct qemu_alarm_timer *t)
{
627
    timeGetDevCaps(&mm_tc, sizeof(mm_tc));
S
Stefan Weil 已提交
628

629
    timeBeginPeriod(mm_tc.wPeriodMin);
S
Stefan Weil 已提交
630

631 632
    mm_timer = timeSetEvent(mm_tc.wPeriodMin,   /* interval (ms) */
                            mm_tc.wPeriodMin,   /* resolution */
S
Stefan Weil 已提交
633 634
                            mm_alarm_handler,   /* function */
                            (DWORD_PTR)t,       /* parameter */
635
                            TIME_ONESHOT | TIME_CALLBACK_FUNCTION);
S
Stefan Weil 已提交
636 637

    if (!mm_timer) {
638
        fprintf(stderr, "Failed to initialize win32 alarm timer\n");
639
        timeEndPeriod(mm_tc.wPeriodMin);
S
Stefan Weil 已提交
640 641 642 643 644 645 646 647 648
        return -1;
    }

    return 0;
}

static void mm_stop_timer(struct qemu_alarm_timer *t)
{
    timeKillEvent(mm_timer);
649
    timeEndPeriod(mm_tc.wPeriodMin);
S
Stefan Weil 已提交
650 651
}

652
static void mm_rearm_timer(struct qemu_alarm_timer *t, int64_t delta)
S
Stefan Weil 已提交
653
{
654
    int64_t nearest_delta_ms = delta / 1000000;
655 656 657 658
    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;
659
    }
660 661

    timeKillEvent(mm_timer);
662 663
    mm_timer = timeSetEvent((UINT)nearest_delta_ms,
                            mm_tc.wPeriodMin,
S
Stefan Weil 已提交
664 665 666 667 668
                            mm_alarm_handler,
                            (DWORD_PTR)t,
                            TIME_ONESHOT | TIME_CALLBACK_FUNCTION);

    if (!mm_timer) {
669
        fprintf(stderr, "Failed to re-arm win32 alarm timer\n");
670
        timeEndPeriod(mm_tc.wPeriodMin);
S
Stefan Weil 已提交
671 672 673 674
        exit(1);
    }
}

P
Paolo Bonzini 已提交
675 676
static int win32_start_timer(struct qemu_alarm_timer *t)
{
P
Paolo Bonzini 已提交
677 678 679 680 681 682 683 684 685 686 687 688
    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,
689
                          3600000,
P
Paolo Bonzini 已提交
690 691 692
                          WT_EXECUTEINTIMERTHREAD);

    if (!success) {
P
Paolo Bonzini 已提交
693 694 695 696 697
        fprintf(stderr, "Failed to initialize win32 alarm timer: %ld\n",
                GetLastError());
        return -1;
    }

S
Stefan Weil 已提交
698
    t->timer = hTimer;
P
Paolo Bonzini 已提交
699 700 701 702 703
    return 0;
}

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

P
Paolo Bonzini 已提交
706 707 708
    if (hTimer) {
        DeleteTimerQueueTimer(NULL, hTimer, NULL);
    }
P
Paolo Bonzini 已提交
709 710
}

711 712
static void win32_rearm_timer(struct qemu_alarm_timer *t,
                              int64_t nearest_delta_ns)
P
Paolo Bonzini 已提交
713
{
S
Stefan Weil 已提交
714
    HANDLE hTimer = t->timer;
715
    int64_t nearest_delta_ms;
P
Paolo Bonzini 已提交
716
    BOOLEAN success;
P
Paolo Bonzini 已提交
717

718
    nearest_delta_ms = nearest_delta_ns / 1000000;
P
Paolo Bonzini 已提交
719 720 721
    if (nearest_delta_ms < 1) {
        nearest_delta_ms = 1;
    }
722 723 724 725
    /* ULONG_MAX can be 32 bit */
    if (nearest_delta_ms > ULONG_MAX) {
        nearest_delta_ms = ULONG_MAX;
    }
P
Paolo Bonzini 已提交
726 727
    success = ChangeTimerQueueTimer(NULL,
                                    hTimer,
728
                                    (unsigned long) nearest_delta_ms,
P
Paolo Bonzini 已提交
729
                                    3600000);
P
Paolo Bonzini 已提交
730

P
Paolo Bonzini 已提交
731 732 733 734
    if (!success) {
        fprintf(stderr, "Failed to rearm win32 alarm timer: %ld\n",
                GetLastError());
        exit(-1);
P
Paolo Bonzini 已提交
735
    }
P
Paolo Bonzini 已提交
736

P
Paolo Bonzini 已提交
737 738 739 740
}

#endif /* _WIN32 */

741 742 743 744 745 746 747
static void quit_timers(void)
{
    struct qemu_alarm_timer *t = alarm_timer;
    alarm_timer = NULL;
    t->stop(t);
}

P
Paolo Bonzini 已提交
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
int init_timer_alarm(void)
{
    struct qemu_alarm_timer *t = NULL;
    int i, err = -1;

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

    /* first event is at time 0 */
767
    atexit(quit_timers);
768
    t->pending = true;
P
Paolo Bonzini 已提交
769 770 771 772 773 774 775 776
    alarm_timer = t;

    return 0;

fail:
    return err;
}