]>
Commit | Line | Data |
---|---|---|
db1a4972 PB |
1 | /* |
2 | * QEMU System Emulator | |
3 | * | |
4 | * Copyright (c) 2003-2008 Fabrice Bellard | |
5 | * | |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
24 | ||
9c17d615 | 25 | #include "sysemu/sysemu.h" |
83c9089e | 26 | #include "monitor/monitor.h" |
28ecbaee | 27 | #include "ui/console.h" |
db1a4972 PB |
28 | |
29 | #include "hw/hw.h" | |
30 | ||
1de7afc9 | 31 | #include "qemu/timer.h" |
30ea8339 AL |
32 | #ifdef CONFIG_POSIX |
33 | #include <pthread.h> | |
34 | #endif | |
bff9f8bf | 35 | |
db1a4972 | 36 | #ifdef _WIN32 |
db1a4972 PB |
37 | #include <mmsystem.h> |
38 | #endif | |
39 | ||
db1a4972 PB |
40 | /***********************************************************/ |
41 | /* timers */ | |
42 | ||
43 | #define QEMU_CLOCK_REALTIME 0 | |
44 | #define QEMU_CLOCK_VIRTUAL 1 | |
45 | #define QEMU_CLOCK_HOST 2 | |
46 | ||
47 | struct QEMUClock { | |
688eb389 | 48 | QEMUTimer *active_timers; |
691a0c9c JK |
49 | |
50 | NotifierList reset_notifiers; | |
51 | int64_t last; | |
9a14b298 SW |
52 | |
53 | int type; | |
54 | bool enabled; | |
db1a4972 PB |
55 | }; |
56 | ||
57 | struct QEMUTimer { | |
4a998740 | 58 | int64_t expire_time; /* in nanoseconds */ |
9a14b298 | 59 | QEMUClock *clock; |
db1a4972 PB |
60 | QEMUTimerCB *cb; |
61 | void *opaque; | |
9a14b298 SW |
62 | QEMUTimer *next; |
63 | int scale; | |
db1a4972 PB |
64 | }; |
65 | ||
66 | struct qemu_alarm_timer { | |
67 | char const *name; | |
68 | int (*start)(struct qemu_alarm_timer *t); | |
69 | void (*stop)(struct qemu_alarm_timer *t); | |
f3fc6e2e | 70 | void (*rearm)(struct qemu_alarm_timer *t, int64_t nearest_delta_ns); |
cd0544ee | 71 | #if defined(__linux__) |
cd0544ee | 72 | timer_t timer; |
9a14b298 | 73 | int fd; |
cd0544ee SW |
74 | #elif defined(_WIN32) |
75 | HANDLE timer; | |
76 | #endif | |
5e1ec7b2 SW |
77 | bool expired; |
78 | bool pending; | |
db1a4972 PB |
79 | }; |
80 | ||
81 | static struct qemu_alarm_timer *alarm_timer; | |
82 | ||
45c7b37f SW |
83 | static bool qemu_timer_expired_ns(QEMUTimer *timer_head, int64_t current_time) |
84 | { | |
85 | return timer_head && (timer_head->expire_time <= current_time); | |
86 | } | |
87 | ||
f3fc6e2e PB |
88 | static int64_t qemu_next_alarm_deadline(void) |
89 | { | |
4ffd16fc | 90 | int64_t delta = INT64_MAX; |
f3fc6e2e PB |
91 | int64_t rtdelta; |
92 | ||
4ffd16fc | 93 | if (!use_icount && vm_clock->enabled && vm_clock->active_timers) { |
f3fc6e2e PB |
94 | delta = vm_clock->active_timers->expire_time - |
95 | qemu_get_clock_ns(vm_clock); | |
f3fc6e2e | 96 | } |
4ffd16fc | 97 | if (host_clock->enabled && host_clock->active_timers) { |
f3fc6e2e PB |
98 | int64_t hdelta = host_clock->active_timers->expire_time - |
99 | qemu_get_clock_ns(host_clock); | |
100 | if (hdelta < delta) { | |
101 | delta = hdelta; | |
102 | } | |
103 | } | |
4ffd16fc | 104 | if (rt_clock->enabled && rt_clock->active_timers) { |
f3fc6e2e PB |
105 | rtdelta = (rt_clock->active_timers->expire_time - |
106 | qemu_get_clock_ns(rt_clock)); | |
107 | if (rtdelta < delta) { | |
108 | delta = rtdelta; | |
109 | } | |
110 | } | |
111 | ||
112 | return delta; | |
113 | } | |
114 | ||
db1a4972 PB |
115 | static void qemu_rearm_alarm_timer(struct qemu_alarm_timer *t) |
116 | { | |
8227421e SS |
117 | int64_t nearest_delta_ns = qemu_next_alarm_deadline(); |
118 | if (nearest_delta_ns < INT64_MAX) { | |
119 | t->rearm(t, nearest_delta_ns); | |
f3fc6e2e | 120 | } |
db1a4972 PB |
121 | } |
122 | ||
9c13246a PB |
123 | /* TODO: MIN_TIMER_REARM_NS should be optimized */ |
124 | #define MIN_TIMER_REARM_NS 250000 | |
db1a4972 PB |
125 | |
126 | #ifdef _WIN32 | |
127 | ||
2f9cba0c SW |
128 | static int mm_start_timer(struct qemu_alarm_timer *t); |
129 | static void mm_stop_timer(struct qemu_alarm_timer *t); | |
f3fc6e2e | 130 | static void mm_rearm_timer(struct qemu_alarm_timer *t, int64_t delta); |
2f9cba0c | 131 | |
db1a4972 PB |
132 | static int win32_start_timer(struct qemu_alarm_timer *t); |
133 | static void win32_stop_timer(struct qemu_alarm_timer *t); | |
f3fc6e2e | 134 | static void win32_rearm_timer(struct qemu_alarm_timer *t, int64_t delta); |
db1a4972 PB |
135 | |
136 | #else | |
137 | ||
138 | static int unix_start_timer(struct qemu_alarm_timer *t); | |
139 | static void unix_stop_timer(struct qemu_alarm_timer *t); | |
f3fc6e2e | 140 | static void unix_rearm_timer(struct qemu_alarm_timer *t, int64_t delta); |
db1a4972 PB |
141 | |
142 | #ifdef __linux__ | |
143 | ||
144 | static int dynticks_start_timer(struct qemu_alarm_timer *t); | |
145 | static void dynticks_stop_timer(struct qemu_alarm_timer *t); | |
f3fc6e2e | 146 | static void dynticks_rearm_timer(struct qemu_alarm_timer *t, int64_t delta); |
db1a4972 | 147 | |
db1a4972 PB |
148 | #endif /* __linux__ */ |
149 | ||
150 | #endif /* _WIN32 */ | |
151 | ||
db1a4972 PB |
152 | static struct qemu_alarm_timer alarm_timers[] = { |
153 | #ifndef _WIN32 | |
154 | #ifdef __linux__ | |
155 | {"dynticks", dynticks_start_timer, | |
cd0544ee | 156 | dynticks_stop_timer, dynticks_rearm_timer}, |
db1a4972 | 157 | #endif |
84682834 | 158 | {"unix", unix_start_timer, unix_stop_timer, unix_rearm_timer}, |
db1a4972 | 159 | #else |
cca5de73 | 160 | {"mmtimer", mm_start_timer, mm_stop_timer, mm_rearm_timer}, |
cd0544ee | 161 | {"dynticks", win32_start_timer, win32_stop_timer, win32_rearm_timer}, |
db1a4972 PB |
162 | #endif |
163 | {NULL, } | |
164 | }; | |
165 | ||
166 | static void show_available_alarms(void) | |
167 | { | |
168 | int i; | |
169 | ||
170 | printf("Available alarm timers, in order of precedence:\n"); | |
171 | for (i = 0; alarm_timers[i].name; i++) | |
172 | printf("%s\n", alarm_timers[i].name); | |
173 | } | |
174 | ||
175 | void configure_alarms(char const *opt) | |
176 | { | |
177 | int i; | |
178 | int cur = 0; | |
179 | int count = ARRAY_SIZE(alarm_timers) - 1; | |
180 | char *arg; | |
181 | char *name; | |
182 | struct qemu_alarm_timer tmp; | |
183 | ||
c8057f95 | 184 | if (is_help_option(opt)) { |
db1a4972 PB |
185 | show_available_alarms(); |
186 | exit(0); | |
187 | } | |
188 | ||
7267c094 | 189 | arg = g_strdup(opt); |
db1a4972 PB |
190 | |
191 | /* Reorder the array */ | |
192 | name = strtok(arg, ","); | |
193 | while (name) { | |
194 | for (i = 0; i < count && alarm_timers[i].name; i++) { | |
195 | if (!strcmp(alarm_timers[i].name, name)) | |
196 | break; | |
197 | } | |
198 | ||
199 | if (i == count) { | |
200 | fprintf(stderr, "Unknown clock %s\n", name); | |
201 | goto next; | |
202 | } | |
203 | ||
204 | if (i < cur) | |
205 | /* Ignore */ | |
206 | goto next; | |
207 | ||
208 | /* Swap */ | |
209 | tmp = alarm_timers[i]; | |
210 | alarm_timers[i] = alarm_timers[cur]; | |
211 | alarm_timers[cur] = tmp; | |
212 | ||
213 | cur++; | |
214 | next: | |
215 | name = strtok(NULL, ","); | |
216 | } | |
217 | ||
7267c094 | 218 | g_free(arg); |
db1a4972 PB |
219 | |
220 | if (cur) { | |
221 | /* Disable remaining timers */ | |
222 | for (i = cur; i < count; i++) | |
223 | alarm_timers[i].name = NULL; | |
224 | } else { | |
225 | show_available_alarms(); | |
226 | exit(1); | |
227 | } | |
228 | } | |
229 | ||
db1a4972 PB |
230 | QEMUClock *rt_clock; |
231 | QEMUClock *vm_clock; | |
232 | QEMUClock *host_clock; | |
233 | ||
db1a4972 PB |
234 | static QEMUClock *qemu_new_clock(int type) |
235 | { | |
236 | QEMUClock *clock; | |
691a0c9c | 237 | |
7267c094 | 238 | clock = g_malloc0(sizeof(QEMUClock)); |
db1a4972 | 239 | clock->type = type; |
5e1ec7b2 | 240 | clock->enabled = true; |
2ff68d07 | 241 | clock->last = INT64_MIN; |
691a0c9c | 242 | notifier_list_init(&clock->reset_notifiers); |
db1a4972 PB |
243 | return clock; |
244 | } | |
245 | ||
5e1ec7b2 | 246 | void qemu_clock_enable(QEMUClock *clock, bool enabled) |
db1a4972 | 247 | { |
fbdc14eb | 248 | bool old = clock->enabled; |
db1a4972 | 249 | clock->enabled = enabled; |
fbdc14eb PB |
250 | if (enabled && !old) { |
251 | qemu_rearm_alarm_timer(alarm_timer); | |
252 | } | |
db1a4972 PB |
253 | } |
254 | ||
dc2dfcf0 PB |
255 | int64_t qemu_clock_has_timers(QEMUClock *clock) |
256 | { | |
257 | return !!clock->active_timers; | |
258 | } | |
259 | ||
260 | int64_t qemu_clock_expired(QEMUClock *clock) | |
261 | { | |
262 | return (clock->active_timers && | |
263 | clock->active_timers->expire_time < qemu_get_clock_ns(clock)); | |
264 | } | |
265 | ||
266 | int64_t qemu_clock_deadline(QEMUClock *clock) | |
267 | { | |
268 | /* To avoid problems with overflow limit this to 2^32. */ | |
269 | int64_t delta = INT32_MAX; | |
270 | ||
271 | if (clock->active_timers) { | |
272 | delta = clock->active_timers->expire_time - qemu_get_clock_ns(clock); | |
273 | } | |
274 | if (delta < 0) { | |
275 | delta = 0; | |
276 | } | |
277 | return delta; | |
278 | } | |
279 | ||
4a998740 PB |
280 | QEMUTimer *qemu_new_timer(QEMUClock *clock, int scale, |
281 | QEMUTimerCB *cb, void *opaque) | |
db1a4972 PB |
282 | { |
283 | QEMUTimer *ts; | |
284 | ||
7267c094 | 285 | ts = g_malloc0(sizeof(QEMUTimer)); |
db1a4972 PB |
286 | ts->clock = clock; |
287 | ts->cb = cb; | |
288 | ts->opaque = opaque; | |
4a998740 | 289 | ts->scale = scale; |
db1a4972 PB |
290 | return ts; |
291 | } | |
292 | ||
293 | void qemu_free_timer(QEMUTimer *ts) | |
294 | { | |
7267c094 | 295 | g_free(ts); |
db1a4972 PB |
296 | } |
297 | ||
298 | /* stop a timer, but do not dealloc it */ | |
299 | void qemu_del_timer(QEMUTimer *ts) | |
300 | { | |
301 | QEMUTimer **pt, *t; | |
302 | ||
303 | /* NOTE: this code must be signal safe because | |
304 | qemu_timer_expired() can be called from a signal. */ | |
688eb389 | 305 | pt = &ts->clock->active_timers; |
db1a4972 PB |
306 | for(;;) { |
307 | t = *pt; | |
308 | if (!t) | |
309 | break; | |
310 | if (t == ts) { | |
311 | *pt = t->next; | |
312 | break; | |
313 | } | |
314 | pt = &t->next; | |
315 | } | |
316 | } | |
317 | ||
318 | /* modify the current timer so that it will be fired when current_time | |
319 | >= expire_time. The corresponding callback will be called. */ | |
2ff68d07 | 320 | void qemu_mod_timer_ns(QEMUTimer *ts, int64_t expire_time) |
db1a4972 PB |
321 | { |
322 | QEMUTimer **pt, *t; | |
323 | ||
324 | qemu_del_timer(ts); | |
325 | ||
326 | /* add the timer in the sorted list */ | |
327 | /* NOTE: this code must be signal safe because | |
328 | qemu_timer_expired() can be called from a signal. */ | |
688eb389 | 329 | pt = &ts->clock->active_timers; |
db1a4972 PB |
330 | for(;;) { |
331 | t = *pt; | |
45c7b37f | 332 | if (!qemu_timer_expired_ns(t, expire_time)) { |
db1a4972 | 333 | break; |
45c7b37f | 334 | } |
db1a4972 PB |
335 | pt = &t->next; |
336 | } | |
337 | ts->expire_time = expire_time; | |
338 | ts->next = *pt; | |
339 | *pt = ts; | |
340 | ||
341 | /* Rearm if necessary */ | |
688eb389 | 342 | if (pt == &ts->clock->active_timers) { |
db1a4972 PB |
343 | if (!alarm_timer->pending) { |
344 | qemu_rearm_alarm_timer(alarm_timer); | |
345 | } | |
346 | /* Interrupt execution to force deadline recalculation. */ | |
ab33fcda PB |
347 | qemu_clock_warp(ts->clock); |
348 | if (use_icount) { | |
db1a4972 | 349 | qemu_notify_event(); |
ab33fcda | 350 | } |
db1a4972 PB |
351 | } |
352 | } | |
353 | ||
4a998740 PB |
354 | void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time) |
355 | { | |
356 | qemu_mod_timer_ns(ts, expire_time * ts->scale); | |
357 | } | |
358 | ||
5e1ec7b2 | 359 | bool qemu_timer_pending(QEMUTimer *ts) |
db1a4972 PB |
360 | { |
361 | QEMUTimer *t; | |
688eb389 | 362 | for (t = ts->clock->active_timers; t != NULL; t = t->next) { |
5e1ec7b2 SW |
363 | if (t == ts) { |
364 | return true; | |
365 | } | |
db1a4972 | 366 | } |
5e1ec7b2 | 367 | return false; |
db1a4972 PB |
368 | } |
369 | ||
5e1ec7b2 | 370 | bool qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time) |
db1a4972 | 371 | { |
45c7b37f | 372 | return qemu_timer_expired_ns(timer_head, current_time * timer_head->scale); |
db1a4972 PB |
373 | } |
374 | ||
8156be56 | 375 | void qemu_run_timers(QEMUClock *clock) |
db1a4972 | 376 | { |
144b97c2 | 377 | QEMUTimer *ts; |
db1a4972 PB |
378 | int64_t current_time; |
379 | ||
380 | if (!clock->enabled) | |
381 | return; | |
382 | ||
4a998740 | 383 | current_time = qemu_get_clock_ns(clock); |
db1a4972 | 384 | for(;;) { |
144b97c2 | 385 | ts = clock->active_timers; |
45c7b37f | 386 | if (!qemu_timer_expired_ns(ts, current_time)) { |
db1a4972 | 387 | break; |
45c7b37f | 388 | } |
db1a4972 | 389 | /* remove timer from the list before calling the callback */ |
144b97c2 | 390 | clock->active_timers = ts->next; |
db1a4972 PB |
391 | ts->next = NULL; |
392 | ||
393 | /* run the callback (the timer list can be modified) */ | |
394 | ts->cb(ts->opaque); | |
395 | } | |
396 | } | |
397 | ||
db1a4972 PB |
398 | int64_t qemu_get_clock_ns(QEMUClock *clock) |
399 | { | |
691a0c9c JK |
400 | int64_t now, last; |
401 | ||
db1a4972 PB |
402 | switch(clock->type) { |
403 | case QEMU_CLOCK_REALTIME: | |
404 | return get_clock(); | |
405 | default: | |
406 | case QEMU_CLOCK_VIRTUAL: | |
407 | if (use_icount) { | |
408 | return cpu_get_icount(); | |
409 | } else { | |
410 | return cpu_get_clock(); | |
411 | } | |
412 | case QEMU_CLOCK_HOST: | |
691a0c9c JK |
413 | now = get_clock_realtime(); |
414 | last = clock->last; | |
415 | clock->last = now; | |
416 | if (now < last) { | |
417 | notifier_list_notify(&clock->reset_notifiers, &now); | |
418 | } | |
419 | return now; | |
db1a4972 PB |
420 | } |
421 | } | |
422 | ||
691a0c9c JK |
423 | void qemu_register_clock_reset_notifier(QEMUClock *clock, Notifier *notifier) |
424 | { | |
425 | notifier_list_add(&clock->reset_notifiers, notifier); | |
426 | } | |
427 | ||
428 | void qemu_unregister_clock_reset_notifier(QEMUClock *clock, Notifier *notifier) | |
429 | { | |
31552529 | 430 | notifier_remove(notifier); |
691a0c9c JK |
431 | } |
432 | ||
db1a4972 PB |
433 | void init_clocks(void) |
434 | { | |
744ca8e3 PB |
435 | if (!rt_clock) { |
436 | rt_clock = qemu_new_clock(QEMU_CLOCK_REALTIME); | |
437 | vm_clock = qemu_new_clock(QEMU_CLOCK_VIRTUAL); | |
438 | host_clock = qemu_new_clock(QEMU_CLOCK_HOST); | |
439 | } | |
db1a4972 PB |
440 | } |
441 | ||
2ff68d07 | 442 | uint64_t qemu_timer_expire_time_ns(QEMUTimer *ts) |
db1a4972 | 443 | { |
2ff68d07 | 444 | return qemu_timer_pending(ts) ? ts->expire_time : -1; |
db1a4972 PB |
445 | } |
446 | ||
db1a4972 PB |
447 | void qemu_run_all_timers(void) |
448 | { | |
5e1ec7b2 | 449 | alarm_timer->pending = false; |
ca5a2a4b | 450 | |
158fd3ce PP |
451 | /* vm time timers */ |
452 | qemu_run_timers(vm_clock); | |
453 | qemu_run_timers(rt_clock); | |
454 | qemu_run_timers(host_clock); | |
455 | ||
db1a4972 PB |
456 | /* rearm timer, if not periodic */ |
457 | if (alarm_timer->expired) { | |
5e1ec7b2 | 458 | alarm_timer->expired = false; |
db1a4972 PB |
459 | qemu_rearm_alarm_timer(alarm_timer); |
460 | } | |
db1a4972 PB |
461 | } |
462 | ||
463 | #ifdef _WIN32 | |
68c23e55 | 464 | static void CALLBACK host_alarm_handler(PVOID lpParam, BOOLEAN unused) |
db1a4972 PB |
465 | #else |
466 | static void host_alarm_handler(int host_signum) | |
467 | #endif | |
468 | { | |
469 | struct qemu_alarm_timer *t = alarm_timer; | |
470 | if (!t) | |
471 | return; | |
472 | ||
8205199d SW |
473 | t->expired = true; |
474 | t->pending = true; | |
475 | qemu_notify_event(); | |
db1a4972 PB |
476 | } |
477 | ||
4c3d45eb PB |
478 | #if defined(__linux__) |
479 | ||
1de7afc9 | 480 | #include "qemu/compatfd.h" |
d25f89c9 | 481 | |
db1a4972 PB |
482 | static int dynticks_start_timer(struct qemu_alarm_timer *t) |
483 | { | |
484 | struct sigevent ev; | |
485 | timer_t host_timer; | |
486 | struct sigaction act; | |
487 | ||
488 | sigfillset(&act.sa_mask); | |
489 | act.sa_flags = 0; | |
490 | act.sa_handler = host_alarm_handler; | |
491 | ||
492 | sigaction(SIGALRM, &act, NULL); | |
493 | ||
494 | /* | |
495 | * Initialize ev struct to 0 to avoid valgrind complaining | |
496 | * about uninitialized data in timer_create call | |
497 | */ | |
498 | memset(&ev, 0, sizeof(ev)); | |
499 | ev.sigev_value.sival_int = 0; | |
500 | ev.sigev_notify = SIGEV_SIGNAL; | |
1e9737da | 501 | #ifdef CONFIG_SIGEV_THREAD_ID |
d25f89c9 JK |
502 | if (qemu_signalfd_available()) { |
503 | ev.sigev_notify = SIGEV_THREAD_ID; | |
504 | ev._sigev_un._tid = qemu_get_thread_id(); | |
505 | } | |
1e9737da | 506 | #endif /* CONFIG_SIGEV_THREAD_ID */ |
db1a4972 PB |
507 | ev.sigev_signo = SIGALRM; |
508 | ||
509 | if (timer_create(CLOCK_REALTIME, &ev, &host_timer)) { | |
510 | perror("timer_create"); | |
db1a4972 PB |
511 | return -1; |
512 | } | |
513 | ||
cd0544ee | 514 | t->timer = host_timer; |
db1a4972 PB |
515 | |
516 | return 0; | |
517 | } | |
518 | ||
519 | static void dynticks_stop_timer(struct qemu_alarm_timer *t) | |
520 | { | |
cd0544ee | 521 | timer_t host_timer = t->timer; |
db1a4972 PB |
522 | |
523 | timer_delete(host_timer); | |
524 | } | |
525 | ||
f3fc6e2e PB |
526 | static void dynticks_rearm_timer(struct qemu_alarm_timer *t, |
527 | int64_t nearest_delta_ns) | |
db1a4972 | 528 | { |
cd0544ee | 529 | timer_t host_timer = t->timer; |
db1a4972 | 530 | struct itimerspec timeout; |
9c13246a | 531 | int64_t current_ns; |
db1a4972 | 532 | |
4c3d45eb PB |
533 | if (nearest_delta_ns < MIN_TIMER_REARM_NS) |
534 | nearest_delta_ns = MIN_TIMER_REARM_NS; | |
db1a4972 PB |
535 | |
536 | /* check whether a timer is already running */ | |
537 | if (timer_gettime(host_timer, &timeout)) { | |
538 | perror("gettime"); | |
539 | fprintf(stderr, "Internal timer error: aborting\n"); | |
540 | exit(1); | |
541 | } | |
9c13246a PB |
542 | current_ns = timeout.it_value.tv_sec * 1000000000LL + timeout.it_value.tv_nsec; |
543 | if (current_ns && current_ns <= nearest_delta_ns) | |
db1a4972 PB |
544 | return; |
545 | ||
546 | timeout.it_interval.tv_sec = 0; | |
547 | timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */ | |
9c13246a PB |
548 | timeout.it_value.tv_sec = nearest_delta_ns / 1000000000; |
549 | timeout.it_value.tv_nsec = nearest_delta_ns % 1000000000; | |
db1a4972 PB |
550 | if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) { |
551 | perror("settime"); | |
552 | fprintf(stderr, "Internal timer error: aborting\n"); | |
553 | exit(1); | |
554 | } | |
555 | } | |
556 | ||
557 | #endif /* defined(__linux__) */ | |
558 | ||
f26e5a54 SW |
559 | #if !defined(_WIN32) |
560 | ||
db1a4972 PB |
561 | static int unix_start_timer(struct qemu_alarm_timer *t) |
562 | { | |
563 | struct sigaction act; | |
db1a4972 PB |
564 | |
565 | /* timer signal */ | |
566 | sigfillset(&act.sa_mask); | |
567 | act.sa_flags = 0; | |
568 | act.sa_handler = host_alarm_handler; | |
569 | ||
570 | sigaction(SIGALRM, &act, NULL); | |
84682834 PB |
571 | return 0; |
572 | } | |
db1a4972 | 573 | |
f3fc6e2e PB |
574 | static void unix_rearm_timer(struct qemu_alarm_timer *t, |
575 | int64_t nearest_delta_ns) | |
84682834 PB |
576 | { |
577 | struct itimerval itv; | |
84682834 | 578 | int err; |
db1a4972 | 579 | |
84682834 PB |
580 | if (nearest_delta_ns < MIN_TIMER_REARM_NS) |
581 | nearest_delta_ns = MIN_TIMER_REARM_NS; | |
582 | ||
583 | itv.it_interval.tv_sec = 0; | |
584 | itv.it_interval.tv_usec = 0; /* 0 for one-shot timer */ | |
585 | itv.it_value.tv_sec = nearest_delta_ns / 1000000000; | |
586 | itv.it_value.tv_usec = (nearest_delta_ns % 1000000000) / 1000; | |
587 | err = setitimer(ITIMER_REAL, &itv, NULL); | |
588 | if (err) { | |
589 | perror("setitimer"); | |
590 | fprintf(stderr, "Internal timer error: aborting\n"); | |
591 | exit(1); | |
592 | } | |
db1a4972 PB |
593 | } |
594 | ||
595 | static void unix_stop_timer(struct qemu_alarm_timer *t) | |
596 | { | |
597 | struct itimerval itv; | |
598 | ||
599 | memset(&itv, 0, sizeof(itv)); | |
600 | setitimer(ITIMER_REAL, &itv, NULL); | |
601 | } | |
602 | ||
603 | #endif /* !defined(_WIN32) */ | |
604 | ||
605 | ||
606 | #ifdef _WIN32 | |
607 | ||
2f9cba0c | 608 | static MMRESULT mm_timer; |
40f08e87 | 609 | static TIMECAPS mm_tc; |
2f9cba0c SW |
610 | |
611 | static void CALLBACK mm_alarm_handler(UINT uTimerID, UINT uMsg, | |
612 | DWORD_PTR dwUser, DWORD_PTR dw1, | |
613 | DWORD_PTR dw2) | |
614 | { | |
615 | struct qemu_alarm_timer *t = alarm_timer; | |
616 | if (!t) { | |
617 | return; | |
618 | } | |
8205199d SW |
619 | t->expired = true; |
620 | t->pending = true; | |
621 | qemu_notify_event(); | |
2f9cba0c SW |
622 | } |
623 | ||
624 | static int mm_start_timer(struct qemu_alarm_timer *t) | |
625 | { | |
40f08e87 | 626 | timeGetDevCaps(&mm_tc, sizeof(mm_tc)); |
2f9cba0c | 627 | |
40f08e87 | 628 | timeBeginPeriod(mm_tc.wPeriodMin); |
2f9cba0c | 629 | |
40f08e87 SW |
630 | mm_timer = timeSetEvent(mm_tc.wPeriodMin, /* interval (ms) */ |
631 | mm_tc.wPeriodMin, /* resolution */ | |
2f9cba0c SW |
632 | mm_alarm_handler, /* function */ |
633 | (DWORD_PTR)t, /* parameter */ | |
8205199d | 634 | TIME_ONESHOT | TIME_CALLBACK_FUNCTION); |
2f9cba0c SW |
635 | |
636 | if (!mm_timer) { | |
52ef651f | 637 | fprintf(stderr, "Failed to initialize win32 alarm timer\n"); |
40f08e87 | 638 | timeEndPeriod(mm_tc.wPeriodMin); |
2f9cba0c SW |
639 | return -1; |
640 | } | |
641 | ||
642 | return 0; | |
643 | } | |
644 | ||
645 | static void mm_stop_timer(struct qemu_alarm_timer *t) | |
646 | { | |
647 | timeKillEvent(mm_timer); | |
40f08e87 | 648 | timeEndPeriod(mm_tc.wPeriodMin); |
2f9cba0c SW |
649 | } |
650 | ||
f3fc6e2e | 651 | static void mm_rearm_timer(struct qemu_alarm_timer *t, int64_t delta) |
2f9cba0c | 652 | { |
5bfb723f | 653 | int64_t nearest_delta_ms = delta / 1000000; |
40f08e87 SW |
654 | if (nearest_delta_ms < mm_tc.wPeriodMin) { |
655 | nearest_delta_ms = mm_tc.wPeriodMin; | |
656 | } else if (nearest_delta_ms > mm_tc.wPeriodMax) { | |
657 | nearest_delta_ms = mm_tc.wPeriodMax; | |
5bfb723f | 658 | } |
f3fc6e2e PB |
659 | |
660 | timeKillEvent(mm_timer); | |
40f08e87 SW |
661 | mm_timer = timeSetEvent((UINT)nearest_delta_ms, |
662 | mm_tc.wPeriodMin, | |
2f9cba0c SW |
663 | mm_alarm_handler, |
664 | (DWORD_PTR)t, | |
665 | TIME_ONESHOT | TIME_CALLBACK_FUNCTION); | |
666 | ||
667 | if (!mm_timer) { | |
52ef651f | 668 | fprintf(stderr, "Failed to re-arm win32 alarm timer\n"); |
40f08e87 | 669 | timeEndPeriod(mm_tc.wPeriodMin); |
2f9cba0c SW |
670 | exit(1); |
671 | } | |
672 | } | |
673 | ||
db1a4972 PB |
674 | static int win32_start_timer(struct qemu_alarm_timer *t) |
675 | { | |
68c23e55 PB |
676 | HANDLE hTimer; |
677 | BOOLEAN success; | |
678 | ||
679 | /* If you call ChangeTimerQueueTimer on a one-shot timer (its period | |
680 | is zero) that has already expired, the timer is not updated. Since | |
681 | creating a new timer is relatively expensive, set a bogus one-hour | |
682 | interval in the dynticks case. */ | |
683 | success = CreateTimerQueueTimer(&hTimer, | |
684 | NULL, | |
685 | host_alarm_handler, | |
686 | t, | |
687 | 1, | |
8205199d | 688 | 3600000, |
68c23e55 PB |
689 | WT_EXECUTEINTIMERTHREAD); |
690 | ||
691 | if (!success) { | |
db1a4972 PB |
692 | fprintf(stderr, "Failed to initialize win32 alarm timer: %ld\n", |
693 | GetLastError()); | |
db1a4972 PB |
694 | return -1; |
695 | } | |
696 | ||
cd0544ee | 697 | t->timer = hTimer; |
db1a4972 PB |
698 | return 0; |
699 | } | |
700 | ||
701 | static void win32_stop_timer(struct qemu_alarm_timer *t) | |
702 | { | |
cd0544ee | 703 | HANDLE hTimer = t->timer; |
db1a4972 | 704 | |
68c23e55 PB |
705 | if (hTimer) { |
706 | DeleteTimerQueueTimer(NULL, hTimer, NULL); | |
707 | } | |
db1a4972 PB |
708 | } |
709 | ||
f3fc6e2e PB |
710 | static void win32_rearm_timer(struct qemu_alarm_timer *t, |
711 | int64_t nearest_delta_ns) | |
db1a4972 | 712 | { |
cd0544ee | 713 | HANDLE hTimer = t->timer; |
5bfb723f | 714 | int64_t nearest_delta_ms; |
68c23e55 | 715 | BOOLEAN success; |
db1a4972 | 716 | |
5bfb723f | 717 | nearest_delta_ms = nearest_delta_ns / 1000000; |
cfced5b2 PB |
718 | if (nearest_delta_ms < 1) { |
719 | nearest_delta_ms = 1; | |
720 | } | |
5bfb723f SS |
721 | /* ULONG_MAX can be 32 bit */ |
722 | if (nearest_delta_ms > ULONG_MAX) { | |
723 | nearest_delta_ms = ULONG_MAX; | |
724 | } | |
68c23e55 PB |
725 | success = ChangeTimerQueueTimer(NULL, |
726 | hTimer, | |
5bfb723f | 727 | (unsigned long) nearest_delta_ms, |
68c23e55 | 728 | 3600000); |
db1a4972 | 729 | |
68c23e55 PB |
730 | if (!success) { |
731 | fprintf(stderr, "Failed to rearm win32 alarm timer: %ld\n", | |
732 | GetLastError()); | |
733 | exit(-1); | |
db1a4972 | 734 | } |
68c23e55 | 735 | |
db1a4972 PB |
736 | } |
737 | ||
738 | #endif /* _WIN32 */ | |
739 | ||
4260a739 PB |
740 | static void quit_timers(void) |
741 | { | |
742 | struct qemu_alarm_timer *t = alarm_timer; | |
743 | alarm_timer = NULL; | |
744 | t->stop(t); | |
745 | } | |
746 | ||
253ecf83 | 747 | #ifdef CONFIG_POSIX |
c8122c35 PB |
748 | static void reinit_timers(void) |
749 | { | |
750 | struct qemu_alarm_timer *t = alarm_timer; | |
751 | t->stop(t); | |
752 | if (t->start(t)) { | |
753 | fprintf(stderr, "Internal timer error: aborting\n"); | |
754 | exit(1); | |
755 | } | |
756 | qemu_rearm_alarm_timer(t); | |
757 | } | |
253ecf83 | 758 | #endif /* CONFIG_POSIX */ |
c8122c35 | 759 | |
db1a4972 PB |
760 | int init_timer_alarm(void) |
761 | { | |
762 | struct qemu_alarm_timer *t = NULL; | |
763 | int i, err = -1; | |
764 | ||
744ca8e3 PB |
765 | if (alarm_timer) { |
766 | return 0; | |
767 | } | |
768 | ||
db1a4972 PB |
769 | for (i = 0; alarm_timers[i].name; i++) { |
770 | t = &alarm_timers[i]; | |
771 | ||
772 | err = t->start(t); | |
773 | if (!err) | |
774 | break; | |
775 | } | |
776 | ||
777 | if (err) { | |
778 | err = -ENOENT; | |
779 | goto fail; | |
780 | } | |
781 | ||
4260a739 | 782 | atexit(quit_timers); |
c8122c35 PB |
783 | #ifdef CONFIG_POSIX |
784 | pthread_atfork(NULL, NULL, reinit_timers); | |
785 | #endif | |
db1a4972 | 786 | alarm_timer = t; |
db1a4972 PB |
787 | return 0; |
788 | ||
789 | fail: | |
790 | return err; | |
791 | } | |
792 |