blob: 4a10775cb6150ab92ad09e97964a9fed90e44859 [file] [log] [blame]
Blue Swirl296af7c2010-03-29 19:23:50 +00001/*
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
25/* Needed early for CONFIG_BSD etc. */
26#include "config-host.h"
27
28#include "monitor.h"
29#include "sysemu.h"
30#include "gdbstub.h"
31#include "dma.h"
32#include "kvm.h"
Luiz Capitulinode0b36b2011-09-21 16:38:35 -030033#include "qmp-commands.h"
Blue Swirl296af7c2010-03-29 19:23:50 +000034
Paolo Bonzini96284e82011-03-12 17:43:53 +010035#include "qemu-thread.h"
Blue Swirl296af7c2010-03-29 19:23:50 +000036#include "cpus.h"
Paolo Bonzini44a9b352011-09-12 16:44:30 +020037#include "main-loop.h"
Jan Kiszka0ff0fc12011-06-23 10:15:55 +020038
39#ifndef _WIN32
Marcelo Tosattia8486bc2010-10-11 15:31:16 -030040#include "compatfd.h"
Jan Kiszka0ff0fc12011-06-23 10:15:55 +020041#endif
Blue Swirl296af7c2010-03-29 19:23:50 +000042
Jan Kiszka6d9cb732011-02-01 22:15:58 +010043#ifdef CONFIG_LINUX
44
45#include <sys/prctl.h>
46
Marcelo Tosattic0532a72010-10-11 15:31:21 -030047#ifndef PR_MCE_KILL
48#define PR_MCE_KILL 33
49#endif
50
Jan Kiszka6d9cb732011-02-01 22:15:58 +010051#ifndef PR_MCE_KILL_SET
52#define PR_MCE_KILL_SET 1
53#endif
54
55#ifndef PR_MCE_KILL_EARLY
56#define PR_MCE_KILL_EARLY 1
57#endif
58
59#endif /* CONFIG_LINUX */
60
Blue Swirl296af7c2010-03-29 19:23:50 +000061static CPUState *next_cpu;
62
63/***********************************************************/
Paolo Bonzini946fb272011-09-12 13:57:37 +020064/* guest cycle counter */
65
66/* Conversion factor from emulated instructions to virtual clock ticks. */
67static int icount_time_shift;
68/* Arbitrarily pick 1MIPS as the minimum allowable speed. */
69#define MAX_ICOUNT_SHIFT 10
70/* Compensate for varying guest execution speed. */
71static int64_t qemu_icount_bias;
72static QEMUTimer *icount_rt_timer;
73static QEMUTimer *icount_vm_timer;
74static QEMUTimer *icount_warp_timer;
75static int64_t vm_clock_warp_start;
76static int64_t qemu_icount;
77
78typedef struct TimersState {
79 int64_t cpu_ticks_prev;
80 int64_t cpu_ticks_offset;
81 int64_t cpu_clock_offset;
82 int32_t cpu_ticks_enabled;
83 int64_t dummy;
84} TimersState;
85
86TimersState timers_state;
87
88/* Return the virtual CPU time, based on the instruction counter. */
89int64_t cpu_get_icount(void)
90{
91 int64_t icount;
Dong Xu Wang3a931132011-11-29 16:52:38 +080092 CPUState *env = cpu_single_env;
Paolo Bonzini946fb272011-09-12 13:57:37 +020093
94 icount = qemu_icount;
95 if (env) {
96 if (!can_do_io(env)) {
97 fprintf(stderr, "Bad clock read\n");
98 }
99 icount -= (env->icount_decr.u16.low + env->icount_extra);
100 }
101 return qemu_icount_bias + (icount << icount_time_shift);
102}
103
104/* return the host CPU cycle counter and handle stop/restart */
105int64_t cpu_get_ticks(void)
106{
107 if (use_icount) {
108 return cpu_get_icount();
109 }
110 if (!timers_state.cpu_ticks_enabled) {
111 return timers_state.cpu_ticks_offset;
112 } else {
113 int64_t ticks;
114 ticks = cpu_get_real_ticks();
115 if (timers_state.cpu_ticks_prev > ticks) {
116 /* Note: non increasing ticks may happen if the host uses
117 software suspend */
118 timers_state.cpu_ticks_offset += timers_state.cpu_ticks_prev - ticks;
119 }
120 timers_state.cpu_ticks_prev = ticks;
121 return ticks + timers_state.cpu_ticks_offset;
122 }
123}
124
125/* return the host CPU monotonic timer and handle stop/restart */
126int64_t cpu_get_clock(void)
127{
128 int64_t ti;
129 if (!timers_state.cpu_ticks_enabled) {
130 return timers_state.cpu_clock_offset;
131 } else {
132 ti = get_clock();
133 return ti + timers_state.cpu_clock_offset;
134 }
135}
136
137/* enable cpu_get_ticks() */
138void cpu_enable_ticks(void)
139{
140 if (!timers_state.cpu_ticks_enabled) {
141 timers_state.cpu_ticks_offset -= cpu_get_real_ticks();
142 timers_state.cpu_clock_offset -= get_clock();
143 timers_state.cpu_ticks_enabled = 1;
144 }
145}
146
147/* disable cpu_get_ticks() : the clock is stopped. You must not call
148 cpu_get_ticks() after that. */
149void cpu_disable_ticks(void)
150{
151 if (timers_state.cpu_ticks_enabled) {
152 timers_state.cpu_ticks_offset = cpu_get_ticks();
153 timers_state.cpu_clock_offset = cpu_get_clock();
154 timers_state.cpu_ticks_enabled = 0;
155 }
156}
157
158/* Correlation between real and virtual time is always going to be
159 fairly approximate, so ignore small variation.
160 When the guest is idle real and virtual time will be aligned in
161 the IO wait loop. */
162#define ICOUNT_WOBBLE (get_ticks_per_sec() / 10)
163
164static void icount_adjust(void)
165{
166 int64_t cur_time;
167 int64_t cur_icount;
168 int64_t delta;
169 static int64_t last_delta;
170 /* If the VM is not running, then do nothing. */
171 if (!runstate_is_running()) {
172 return;
173 }
174 cur_time = cpu_get_clock();
175 cur_icount = qemu_get_clock_ns(vm_clock);
176 delta = cur_icount - cur_time;
177 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
178 if (delta > 0
179 && last_delta + ICOUNT_WOBBLE < delta * 2
180 && icount_time_shift > 0) {
181 /* The guest is getting too far ahead. Slow time down. */
182 icount_time_shift--;
183 }
184 if (delta < 0
185 && last_delta - ICOUNT_WOBBLE > delta * 2
186 && icount_time_shift < MAX_ICOUNT_SHIFT) {
187 /* The guest is getting too far behind. Speed time up. */
188 icount_time_shift++;
189 }
190 last_delta = delta;
191 qemu_icount_bias = cur_icount - (qemu_icount << icount_time_shift);
192}
193
194static void icount_adjust_rt(void *opaque)
195{
196 qemu_mod_timer(icount_rt_timer,
197 qemu_get_clock_ms(rt_clock) + 1000);
198 icount_adjust();
199}
200
201static void icount_adjust_vm(void *opaque)
202{
203 qemu_mod_timer(icount_vm_timer,
204 qemu_get_clock_ns(vm_clock) + get_ticks_per_sec() / 10);
205 icount_adjust();
206}
207
208static int64_t qemu_icount_round(int64_t count)
209{
210 return (count + (1 << icount_time_shift) - 1) >> icount_time_shift;
211}
212
213static void icount_warp_rt(void *opaque)
214{
215 if (vm_clock_warp_start == -1) {
216 return;
217 }
218
219 if (runstate_is_running()) {
220 int64_t clock = qemu_get_clock_ns(rt_clock);
221 int64_t warp_delta = clock - vm_clock_warp_start;
222 if (use_icount == 1) {
223 qemu_icount_bias += warp_delta;
224 } else {
225 /*
226 * In adaptive mode, do not let the vm_clock run too
227 * far ahead of real time.
228 */
229 int64_t cur_time = cpu_get_clock();
230 int64_t cur_icount = qemu_get_clock_ns(vm_clock);
231 int64_t delta = cur_time - cur_icount;
232 qemu_icount_bias += MIN(warp_delta, delta);
233 }
234 if (qemu_clock_expired(vm_clock)) {
235 qemu_notify_event();
236 }
237 }
238 vm_clock_warp_start = -1;
239}
240
241void qemu_clock_warp(QEMUClock *clock)
242{
243 int64_t deadline;
244
245 /*
246 * There are too many global variables to make the "warp" behavior
247 * applicable to other clocks. But a clock argument removes the
248 * need for if statements all over the place.
249 */
250 if (clock != vm_clock || !use_icount) {
251 return;
252 }
253
254 /*
255 * If the CPUs have been sleeping, advance the vm_clock timer now. This
256 * ensures that the deadline for the timer is computed correctly below.
257 * This also makes sure that the insn counter is synchronized before the
258 * CPU starts running, in case the CPU is woken by an event other than
259 * the earliest vm_clock timer.
260 */
261 icount_warp_rt(NULL);
262 if (!all_cpu_threads_idle() || !qemu_clock_has_timers(vm_clock)) {
263 qemu_del_timer(icount_warp_timer);
264 return;
265 }
266
267 vm_clock_warp_start = qemu_get_clock_ns(rt_clock);
268 deadline = qemu_clock_deadline(vm_clock);
269 if (deadline > 0) {
270 /*
271 * Ensure the vm_clock proceeds even when the virtual CPU goes to
272 * sleep. Otherwise, the CPU might be waiting for a future timer
273 * interrupt to wake it up, but the interrupt never comes because
274 * the vCPU isn't running any insns and thus doesn't advance the
275 * vm_clock.
276 *
277 * An extreme solution for this problem would be to never let VCPUs
278 * sleep in icount mode if there is a pending vm_clock timer; rather
279 * time could just advance to the next vm_clock event. Instead, we
280 * do stop VCPUs and only advance vm_clock after some "real" time,
281 * (related to the time left until the next event) has passed. This
282 * rt_clock timer will do this. This avoids that the warps are too
283 * visible externally---for example, you will not be sending network
Dong Xu Wang07f35072011-11-22 18:06:26 +0800284 * packets continuously instead of every 100ms.
Paolo Bonzini946fb272011-09-12 13:57:37 +0200285 */
286 qemu_mod_timer(icount_warp_timer, vm_clock_warp_start + deadline);
287 } else {
288 qemu_notify_event();
289 }
290}
291
292static const VMStateDescription vmstate_timers = {
293 .name = "timer",
294 .version_id = 2,
295 .minimum_version_id = 1,
296 .minimum_version_id_old = 1,
297 .fields = (VMStateField[]) {
298 VMSTATE_INT64(cpu_ticks_offset, TimersState),
299 VMSTATE_INT64(dummy, TimersState),
300 VMSTATE_INT64_V(cpu_clock_offset, TimersState, 2),
301 VMSTATE_END_OF_LIST()
302 }
303};
304
305void configure_icount(const char *option)
306{
307 vmstate_register(NULL, 0, &vmstate_timers, &timers_state);
308 if (!option) {
309 return;
310 }
311
312 icount_warp_timer = qemu_new_timer_ns(rt_clock, icount_warp_rt, NULL);
313 if (strcmp(option, "auto") != 0) {
314 icount_time_shift = strtol(option, NULL, 0);
315 use_icount = 1;
316 return;
317 }
318
319 use_icount = 2;
320
321 /* 125MIPS seems a reasonable initial guess at the guest speed.
322 It will be corrected fairly quickly anyway. */
323 icount_time_shift = 3;
324
325 /* Have both realtime and virtual time triggers for speed adjustment.
326 The realtime trigger catches emulated time passing too slowly,
327 the virtual time trigger catches emulated time passing too fast.
328 Realtime triggers occur even when idle, so use them less frequently
329 than VM triggers. */
330 icount_rt_timer = qemu_new_timer_ms(rt_clock, icount_adjust_rt, NULL);
331 qemu_mod_timer(icount_rt_timer,
332 qemu_get_clock_ms(rt_clock) + 1000);
333 icount_vm_timer = qemu_new_timer_ns(vm_clock, icount_adjust_vm, NULL);
334 qemu_mod_timer(icount_vm_timer,
335 qemu_get_clock_ns(vm_clock) + get_ticks_per_sec() / 10);
336}
337
338/***********************************************************/
Blue Swirl296af7c2010-03-29 19:23:50 +0000339void hw_error(const char *fmt, ...)
340{
341 va_list ap;
342 CPUState *env;
343
344 va_start(ap, fmt);
345 fprintf(stderr, "qemu: hardware error: ");
346 vfprintf(stderr, fmt, ap);
347 fprintf(stderr, "\n");
348 for(env = first_cpu; env != NULL; env = env->next_cpu) {
349 fprintf(stderr, "CPU #%d:\n", env->cpu_index);
350#ifdef TARGET_I386
351 cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU);
352#else
353 cpu_dump_state(env, stderr, fprintf, 0);
354#endif
355 }
356 va_end(ap);
357 abort();
358}
359
360void cpu_synchronize_all_states(void)
361{
362 CPUState *cpu;
363
364 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
365 cpu_synchronize_state(cpu);
366 }
367}
368
369void cpu_synchronize_all_post_reset(void)
370{
371 CPUState *cpu;
372
373 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
374 cpu_synchronize_post_reset(cpu);
375 }
376}
377
378void cpu_synchronize_all_post_init(void)
379{
380 CPUState *cpu;
381
382 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
383 cpu_synchronize_post_init(cpu);
384 }
385}
386
Marcelo Tosatti3ae95012010-05-04 09:45:24 -0300387int cpu_is_stopped(CPUState *env)
388{
Luiz Capitulino13548692011-07-29 15:36:43 -0300389 return !runstate_is_running() || env->stopped;
Marcelo Tosatti3ae95012010-05-04 09:45:24 -0300390}
391
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300392static void do_vm_stop(RunState state)
Blue Swirl296af7c2010-03-29 19:23:50 +0000393{
Luiz Capitulino13548692011-07-29 15:36:43 -0300394 if (runstate_is_running()) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000395 cpu_disable_ticks();
Blue Swirl296af7c2010-03-29 19:23:50 +0000396 pause_all_vcpus();
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300397 runstate_set(state);
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300398 vm_state_notify(0, state);
Stefan Hajnoczi922453b2011-11-30 12:23:43 +0000399 bdrv_drain_all();
Michael S. Tsirkin55df6f32010-11-22 19:52:22 +0200400 bdrv_flush_all();
Blue Swirl296af7c2010-03-29 19:23:50 +0000401 monitor_protocol_event(QEVENT_STOP, NULL);
402 }
403}
404
405static int cpu_can_run(CPUState *env)
406{
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100407 if (env->stop) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000408 return 0;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100409 }
Luiz Capitulino13548692011-07-29 15:36:43 -0300410 if (env->stopped || !runstate_is_running()) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000411 return 0;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100412 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000413 return 1;
414}
415
Jan Kiszka16400322011-02-09 16:29:37 +0100416static bool cpu_thread_is_idle(CPUState *env)
Blue Swirl296af7c2010-03-29 19:23:50 +0000417{
Jan Kiszka16400322011-02-09 16:29:37 +0100418 if (env->stop || env->queued_work_first) {
419 return false;
420 }
Luiz Capitulino13548692011-07-29 15:36:43 -0300421 if (env->stopped || !runstate_is_running()) {
Jan Kiszka16400322011-02-09 16:29:37 +0100422 return true;
423 }
Jan Kiszkaf2c1cc82011-03-15 12:26:18 +0100424 if (!env->halted || qemu_cpu_has_work(env) ||
425 (kvm_enabled() && kvm_irqchip_in_kernel())) {
Jan Kiszka16400322011-02-09 16:29:37 +0100426 return false;
427 }
428 return true;
Blue Swirl296af7c2010-03-29 19:23:50 +0000429}
430
Paolo Bonziniab33fcd2011-04-13 10:03:44 +0200431bool all_cpu_threads_idle(void)
Blue Swirl296af7c2010-03-29 19:23:50 +0000432{
433 CPUState *env;
434
Jan Kiszka16400322011-02-09 16:29:37 +0100435 for (env = first_cpu; env != NULL; env = env->next_cpu) {
436 if (!cpu_thread_is_idle(env)) {
437 return false;
438 }
439 }
440 return true;
Blue Swirl296af7c2010-03-29 19:23:50 +0000441}
442
Jan Kiszka1009d2e2011-03-15 12:26:13 +0100443static void cpu_handle_guest_debug(CPUState *env)
Jan Kiszka3c638d02010-06-25 16:56:56 +0200444{
445 gdb_set_stop_cpu(env);
Jan Kiszka8cf71712011-02-07 12:19:16 +0100446 qemu_system_debug_request();
Jan Kiszka83f338f2011-02-07 12:19:17 +0100447 env->stopped = 1;
Jan Kiszka3c638d02010-06-25 16:56:56 +0200448}
449
Paolo Bonzini714bd042011-03-12 17:44:06 +0100450static void cpu_signal(int sig)
451{
452 if (cpu_single_env) {
453 cpu_exit(cpu_single_env);
454 }
455 exit_request = 1;
456}
Paolo Bonzini714bd042011-03-12 17:44:06 +0100457
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100458#ifdef CONFIG_LINUX
459static void sigbus_reraise(void)
460{
461 sigset_t set;
462 struct sigaction action;
463
464 memset(&action, 0, sizeof(action));
465 action.sa_handler = SIG_DFL;
466 if (!sigaction(SIGBUS, &action, NULL)) {
467 raise(SIGBUS);
468 sigemptyset(&set);
469 sigaddset(&set, SIGBUS);
470 sigprocmask(SIG_UNBLOCK, &set, NULL);
471 }
472 perror("Failed to re-raise SIGBUS!\n");
473 abort();
474}
475
476static void sigbus_handler(int n, struct qemu_signalfd_siginfo *siginfo,
477 void *ctx)
478{
479 if (kvm_on_sigbus(siginfo->ssi_code,
480 (void *)(intptr_t)siginfo->ssi_addr)) {
481 sigbus_reraise();
482 }
483}
484
485static void qemu_init_sigbus(void)
486{
487 struct sigaction action;
488
489 memset(&action, 0, sizeof(action));
490 action.sa_flags = SA_SIGINFO;
491 action.sa_sigaction = (void (*)(int, siginfo_t*, void*))sigbus_handler;
492 sigaction(SIGBUS, &action, NULL);
493
494 prctl(PR_MCE_KILL, PR_MCE_KILL_SET, PR_MCE_KILL_EARLY, 0, 0);
495}
496
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100497static void qemu_kvm_eat_signals(CPUState *env)
498{
499 struct timespec ts = { 0, 0 };
500 siginfo_t siginfo;
501 sigset_t waitset;
502 sigset_t chkset;
503 int r;
504
505 sigemptyset(&waitset);
506 sigaddset(&waitset, SIG_IPI);
507 sigaddset(&waitset, SIGBUS);
508
509 do {
510 r = sigtimedwait(&waitset, &siginfo, &ts);
511 if (r == -1 && !(errno == EAGAIN || errno == EINTR)) {
512 perror("sigtimedwait");
513 exit(1);
514 }
515
516 switch (r) {
517 case SIGBUS:
518 if (kvm_on_sigbus_vcpu(env, siginfo.si_code, siginfo.si_addr)) {
519 sigbus_reraise();
520 }
521 break;
522 default:
523 break;
524 }
525
526 r = sigpending(&chkset);
527 if (r == -1) {
528 perror("sigpending");
529 exit(1);
530 }
531 } while (sigismember(&chkset, SIG_IPI) || sigismember(&chkset, SIGBUS));
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100532}
533
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100534#else /* !CONFIG_LINUX */
535
536static void qemu_init_sigbus(void)
537{
538}
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100539
540static void qemu_kvm_eat_signals(CPUState *env)
541{
542}
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100543#endif /* !CONFIG_LINUX */
544
Blue Swirl296af7c2010-03-29 19:23:50 +0000545#ifndef _WIN32
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100546static void dummy_signal(int sig)
Blue Swirl296af7c2010-03-29 19:23:50 +0000547{
548}
549
Paolo Bonzini714bd042011-03-12 17:44:06 +0100550static void qemu_kvm_init_cpu_signals(CPUState *env)
551{
552 int r;
553 sigset_t set;
554 struct sigaction sigact;
555
556 memset(&sigact, 0, sizeof(sigact));
557 sigact.sa_handler = dummy_signal;
558 sigaction(SIG_IPI, &sigact, NULL);
559
Paolo Bonzini714bd042011-03-12 17:44:06 +0100560 pthread_sigmask(SIG_BLOCK, NULL, &set);
561 sigdelset(&set, SIG_IPI);
562 sigdelset(&set, SIGBUS);
563 r = kvm_set_signal_mask(env, &set);
564 if (r) {
565 fprintf(stderr, "kvm_set_signal_mask: %s\n", strerror(-r));
566 exit(1);
567 }
Paolo Bonzini714bd042011-03-12 17:44:06 +0100568}
569
570static void qemu_tcg_init_cpu_signals(void)
571{
Paolo Bonzini714bd042011-03-12 17:44:06 +0100572 sigset_t set;
573 struct sigaction sigact;
574
575 memset(&sigact, 0, sizeof(sigact));
576 sigact.sa_handler = cpu_signal;
577 sigaction(SIG_IPI, &sigact, NULL);
578
579 sigemptyset(&set);
580 sigaddset(&set, SIG_IPI);
581 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
Paolo Bonzini714bd042011-03-12 17:44:06 +0100582}
583
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100584#else /* _WIN32 */
Paolo Bonzini714bd042011-03-12 17:44:06 +0100585static void qemu_kvm_init_cpu_signals(CPUState *env)
586{
587 abort();
588}
589
590static void qemu_tcg_init_cpu_signals(void)
591{
592}
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100593#endif /* _WIN32 */
Blue Swirl296af7c2010-03-29 19:23:50 +0000594
Blue Swirl296af7c2010-03-29 19:23:50 +0000595QemuMutex qemu_global_mutex;
Paolo Bonzini46daff12011-06-09 13:10:24 +0200596static QemuCond qemu_io_proceeded_cond;
597static bool iothread_requesting_mutex;
Blue Swirl296af7c2010-03-29 19:23:50 +0000598
599static QemuThread io_thread;
600
601static QemuThread *tcg_cpu_thread;
602static QemuCond *tcg_halt_cond;
603
Blue Swirl296af7c2010-03-29 19:23:50 +0000604/* cpu creation */
605static QemuCond qemu_cpu_cond;
606/* system init */
Blue Swirl296af7c2010-03-29 19:23:50 +0000607static QemuCond qemu_pause_cond;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300608static QemuCond qemu_work_cond;
Blue Swirl296af7c2010-03-29 19:23:50 +0000609
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200610void qemu_init_cpu_loop(void)
Blue Swirl296af7c2010-03-29 19:23:50 +0000611{
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100612 qemu_init_sigbus();
Anthony Liguoried945922011-02-08 18:18:18 +0100613 qemu_cond_init(&qemu_cpu_cond);
Anthony Liguoried945922011-02-08 18:18:18 +0100614 qemu_cond_init(&qemu_pause_cond);
615 qemu_cond_init(&qemu_work_cond);
Paolo Bonzini46daff12011-06-09 13:10:24 +0200616 qemu_cond_init(&qemu_io_proceeded_cond);
Blue Swirl296af7c2010-03-29 19:23:50 +0000617 qemu_mutex_init(&qemu_global_mutex);
Blue Swirl296af7c2010-03-29 19:23:50 +0000618
Jan Kiszkab7680cb2011-03-12 17:43:51 +0100619 qemu_thread_get_self(&io_thread);
Blue Swirl296af7c2010-03-29 19:23:50 +0000620}
621
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300622void run_on_cpu(CPUState *env, void (*func)(void *data), void *data)
623{
624 struct qemu_work_item wi;
625
Jan Kiszkab7680cb2011-03-12 17:43:51 +0100626 if (qemu_cpu_is_self(env)) {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300627 func(data);
628 return;
629 }
630
631 wi.func = func;
632 wi.data = data;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100633 if (!env->queued_work_first) {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300634 env->queued_work_first = &wi;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100635 } else {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300636 env->queued_work_last->next = &wi;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100637 }
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300638 env->queued_work_last = &wi;
639 wi.next = NULL;
640 wi.done = false;
641
642 qemu_cpu_kick(env);
643 while (!wi.done) {
644 CPUState *self_env = cpu_single_env;
645
646 qemu_cond_wait(&qemu_work_cond, &qemu_global_mutex);
647 cpu_single_env = self_env;
648 }
649}
650
651static void flush_queued_work(CPUState *env)
652{
653 struct qemu_work_item *wi;
654
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100655 if (!env->queued_work_first) {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300656 return;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100657 }
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300658
659 while ((wi = env->queued_work_first)) {
660 env->queued_work_first = wi->next;
661 wi->func(wi->data);
662 wi->done = true;
663 }
664 env->queued_work_last = NULL;
665 qemu_cond_broadcast(&qemu_work_cond);
666}
667
Blue Swirl296af7c2010-03-29 19:23:50 +0000668static void qemu_wait_io_event_common(CPUState *env)
669{
670 if (env->stop) {
671 env->stop = 0;
672 env->stopped = 1;
673 qemu_cond_signal(&qemu_pause_cond);
674 }
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300675 flush_queued_work(env);
Jan Kiszkaaa2c3642011-02-01 22:15:42 +0100676 env->thread_kicked = false;
Blue Swirl296af7c2010-03-29 19:23:50 +0000677}
678
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200679static void qemu_tcg_wait_io_event(void)
Blue Swirl296af7c2010-03-29 19:23:50 +0000680{
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200681 CPUState *env;
682
Jan Kiszka16400322011-02-09 16:29:37 +0100683 while (all_cpu_threads_idle()) {
Paolo Bonziniab33fcd2011-04-13 10:03:44 +0200684 /* Start accounting real time to the virtual clock if the CPUs
685 are idle. */
686 qemu_clock_warp(vm_clock);
Paolo Bonzini9705fbb2011-03-12 17:44:00 +0100687 qemu_cond_wait(tcg_halt_cond, &qemu_global_mutex);
Jan Kiszka16400322011-02-09 16:29:37 +0100688 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000689
Paolo Bonzini46daff12011-06-09 13:10:24 +0200690 while (iothread_requesting_mutex) {
691 qemu_cond_wait(&qemu_io_proceeded_cond, &qemu_global_mutex);
692 }
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200693
694 for (env = first_cpu; env != NULL; env = env->next_cpu) {
695 qemu_wait_io_event_common(env);
696 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000697}
698
Blue Swirl296af7c2010-03-29 19:23:50 +0000699static void qemu_kvm_wait_io_event(CPUState *env)
700{
Jan Kiszka16400322011-02-09 16:29:37 +0100701 while (cpu_thread_is_idle(env)) {
Paolo Bonzini9705fbb2011-03-12 17:44:00 +0100702 qemu_cond_wait(env->halt_cond, &qemu_global_mutex);
Jan Kiszka16400322011-02-09 16:29:37 +0100703 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000704
Jan Kiszka5db5bda2011-02-01 22:15:54 +0100705 qemu_kvm_eat_signals(env);
Blue Swirl296af7c2010-03-29 19:23:50 +0000706 qemu_wait_io_event_common(env);
707}
708
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100709static void *qemu_kvm_cpu_thread_fn(void *arg)
Blue Swirl296af7c2010-03-29 19:23:50 +0000710{
711 CPUState *env = arg;
Jan Kiszka84b49152011-02-01 22:15:50 +0100712 int r;
Blue Swirl296af7c2010-03-29 19:23:50 +0000713
Marcelo Tosatti6164e6d2010-03-23 13:37:13 -0300714 qemu_mutex_lock(&qemu_global_mutex);
Jan Kiszkab7680cb2011-03-12 17:43:51 +0100715 qemu_thread_get_self(env->thread);
Jan Kiszkadc7a09c2011-03-15 12:26:31 +0100716 env->thread_id = qemu_get_thread_id();
Jan Kiszkae479c202012-02-17 18:31:13 +0100717 cpu_single_env = env;
Blue Swirl296af7c2010-03-29 19:23:50 +0000718
Jan Kiszka84b49152011-02-01 22:15:50 +0100719 r = kvm_init_vcpu(env);
720 if (r < 0) {
721 fprintf(stderr, "kvm_init_vcpu failed: %s\n", strerror(-r));
722 exit(1);
723 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000724
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100725 qemu_kvm_init_cpu_signals(env);
Blue Swirl296af7c2010-03-29 19:23:50 +0000726
727 /* signal CPU creation */
Blue Swirl296af7c2010-03-29 19:23:50 +0000728 env->created = 1;
729 qemu_cond_signal(&qemu_cpu_cond);
730
Blue Swirl296af7c2010-03-29 19:23:50 +0000731 while (1) {
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100732 if (cpu_can_run(env)) {
Jan Kiszka6792a572011-02-07 12:19:18 +0100733 r = kvm_cpu_exec(env);
Jan Kiszka83f338f2011-02-07 12:19:17 +0100734 if (r == EXCP_DEBUG) {
Jan Kiszka1009d2e2011-03-15 12:26:13 +0100735 cpu_handle_guest_debug(env);
Jan Kiszka83f338f2011-02-07 12:19:17 +0100736 }
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100737 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000738 qemu_kvm_wait_io_event(env);
739 }
740
741 return NULL;
742}
743
Jan Kiszkabdb7ca62011-09-26 09:40:39 +0200744static void tcg_exec_all(void);
745
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100746static void *qemu_tcg_cpu_thread_fn(void *arg)
Blue Swirl296af7c2010-03-29 19:23:50 +0000747{
748 CPUState *env = arg;
749
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100750 qemu_tcg_init_cpu_signals();
Jan Kiszkab7680cb2011-03-12 17:43:51 +0100751 qemu_thread_get_self(env->thread);
Blue Swirl296af7c2010-03-29 19:23:50 +0000752
753 /* signal CPU creation */
754 qemu_mutex_lock(&qemu_global_mutex);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100755 for (env = first_cpu; env != NULL; env = env->next_cpu) {
Jan Kiszkadc7a09c2011-03-15 12:26:31 +0100756 env->thread_id = qemu_get_thread_id();
Blue Swirl296af7c2010-03-29 19:23:50 +0000757 env->created = 1;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100758 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000759 qemu_cond_signal(&qemu_cpu_cond);
760
Jan Kiszkafa7d1862011-08-22 18:35:25 +0200761 /* wait for initial kick-off after machine start */
762 while (first_cpu->stopped) {
763 qemu_cond_wait(tcg_halt_cond, &qemu_global_mutex);
Jan Kiszka8e564b42012-02-17 18:31:15 +0100764
765 /* process any pending work */
766 for (env = first_cpu; env != NULL; env = env->next_cpu) {
767 qemu_wait_io_event_common(env);
768 }
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100769 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000770
771 while (1) {
Jan Kiszkabdb7ca62011-09-26 09:40:39 +0200772 tcg_exec_all();
Paolo Bonzini946fb272011-09-12 13:57:37 +0200773 if (use_icount && qemu_clock_deadline(vm_clock) <= 0) {
Paolo Bonzini3b2319a2011-04-13 10:03:43 +0200774 qemu_notify_event();
775 }
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200776 qemu_tcg_wait_io_event();
Blue Swirl296af7c2010-03-29 19:23:50 +0000777 }
778
779 return NULL;
780}
781
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100782static void qemu_cpu_kick_thread(CPUState *env)
783{
784#ifndef _WIN32
785 int err;
786
787 err = pthread_kill(env->thread->thread, SIG_IPI);
788 if (err) {
789 fprintf(stderr, "qemu:%s: %s", __func__, strerror(err));
790 exit(1);
791 }
792#else /* _WIN32 */
793 if (!qemu_cpu_is_self(env)) {
Paolo Bonzini1ecf47b2011-12-13 13:43:52 +0100794 SuspendThread(env->hThread);
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100795 cpu_signal(0);
Paolo Bonzini1ecf47b2011-12-13 13:43:52 +0100796 ResumeThread(env->hThread);
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100797 }
798#endif
799}
800
Blue Swirl296af7c2010-03-29 19:23:50 +0000801void qemu_cpu_kick(void *_env)
802{
803 CPUState *env = _env;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100804
Blue Swirl296af7c2010-03-29 19:23:50 +0000805 qemu_cond_broadcast(env->halt_cond);
Jan Kiszkaeae74cf2011-08-22 17:46:03 +0200806 if (kvm_enabled() && !env->thread_kicked) {
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100807 qemu_cpu_kick_thread(env);
Jan Kiszkaaa2c3642011-02-01 22:15:42 +0100808 env->thread_kicked = true;
809 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000810}
811
Jan Kiszka46d62fa2011-02-01 22:15:59 +0100812void qemu_cpu_kick_self(void)
813{
Paolo Bonzinib55c22c2011-03-12 17:44:07 +0100814#ifndef _WIN32
Jan Kiszka46d62fa2011-02-01 22:15:59 +0100815 assert(cpu_single_env);
816
817 if (!cpu_single_env->thread_kicked) {
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100818 qemu_cpu_kick_thread(cpu_single_env);
Jan Kiszka46d62fa2011-02-01 22:15:59 +0100819 cpu_single_env->thread_kicked = true;
820 }
Paolo Bonzinib55c22c2011-03-12 17:44:07 +0100821#else
822 abort();
823#endif
Blue Swirl296af7c2010-03-29 19:23:50 +0000824}
825
Jan Kiszkab7680cb2011-03-12 17:43:51 +0100826int qemu_cpu_is_self(void *_env)
Blue Swirl296af7c2010-03-29 19:23:50 +0000827{
828 CPUState *env = _env;
Blue Swirl296af7c2010-03-29 19:23:50 +0000829
Jan Kiszkab7680cb2011-03-12 17:43:51 +0100830 return qemu_thread_is_self(env->thread);
Blue Swirl296af7c2010-03-29 19:23:50 +0000831}
832
Blue Swirl296af7c2010-03-29 19:23:50 +0000833void qemu_mutex_lock_iothread(void)
834{
835 if (kvm_enabled()) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000836 qemu_mutex_lock(&qemu_global_mutex);
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -0300837 } else {
Paolo Bonzini46daff12011-06-09 13:10:24 +0200838 iothread_requesting_mutex = true;
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -0300839 if (qemu_mutex_trylock(&qemu_global_mutex)) {
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100840 qemu_cpu_kick_thread(first_cpu);
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -0300841 qemu_mutex_lock(&qemu_global_mutex);
842 }
Paolo Bonzini46daff12011-06-09 13:10:24 +0200843 iothread_requesting_mutex = false;
844 qemu_cond_broadcast(&qemu_io_proceeded_cond);
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -0300845 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000846}
847
848void qemu_mutex_unlock_iothread(void)
849{
850 qemu_mutex_unlock(&qemu_global_mutex);
851}
852
853static int all_vcpus_paused(void)
854{
855 CPUState *penv = first_cpu;
856
857 while (penv) {
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100858 if (!penv->stopped) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000859 return 0;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100860 }
Jan Kiszka5207a5e2012-02-17 18:31:14 +0100861 penv = penv->next_cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000862 }
863
864 return 1;
865}
866
867void pause_all_vcpus(void)
868{
869 CPUState *penv = first_cpu;
870
Paolo Bonzinia5c57d62011-09-12 14:40:36 +0200871 qemu_clock_enable(vm_clock, false);
Blue Swirl296af7c2010-03-29 19:23:50 +0000872 while (penv) {
873 penv->stop = 1;
Blue Swirl296af7c2010-03-29 19:23:50 +0000874 qemu_cpu_kick(penv);
Jan Kiszka5207a5e2012-02-17 18:31:14 +0100875 penv = penv->next_cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000876 }
877
878 while (!all_vcpus_paused()) {
Paolo Bonzinibe7d6c52011-03-12 17:44:02 +0100879 qemu_cond_wait(&qemu_pause_cond, &qemu_global_mutex);
Blue Swirl296af7c2010-03-29 19:23:50 +0000880 penv = first_cpu;
881 while (penv) {
Marcelo Tosatti1fbb22e2010-05-04 09:45:21 -0300882 qemu_cpu_kick(penv);
Jan Kiszka5207a5e2012-02-17 18:31:14 +0100883 penv = penv->next_cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000884 }
885 }
886}
887
888void resume_all_vcpus(void)
889{
890 CPUState *penv = first_cpu;
891
Wen Congyang47113ab2011-11-04 10:45:58 +0800892 qemu_clock_enable(vm_clock, true);
Blue Swirl296af7c2010-03-29 19:23:50 +0000893 while (penv) {
894 penv->stop = 0;
895 penv->stopped = 0;
Blue Swirl296af7c2010-03-29 19:23:50 +0000896 qemu_cpu_kick(penv);
Jan Kiszka5207a5e2012-02-17 18:31:14 +0100897 penv = penv->next_cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000898 }
899}
900
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100901static void qemu_tcg_init_vcpu(void *_env)
Blue Swirl296af7c2010-03-29 19:23:50 +0000902{
903 CPUState *env = _env;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100904
Blue Swirl296af7c2010-03-29 19:23:50 +0000905 /* share a single thread for all cpus with TCG */
906 if (!tcg_cpu_thread) {
Anthony Liguori7267c092011-08-20 22:09:37 -0500907 env->thread = g_malloc0(sizeof(QemuThread));
908 env->halt_cond = g_malloc0(sizeof(QemuCond));
Blue Swirl296af7c2010-03-29 19:23:50 +0000909 qemu_cond_init(env->halt_cond);
Jan Kiszkafa7d1862011-08-22 18:35:25 +0200910 tcg_halt_cond = env->halt_cond;
Jan Kiszkacf218712011-12-12 17:21:31 +0100911 qemu_thread_create(env->thread, qemu_tcg_cpu_thread_fn, env,
Paolo Bonzini1ecf47b2011-12-13 13:43:52 +0100912 QEMU_THREAD_JOINABLE);
913#ifdef _WIN32
914 env->hThread = qemu_thread_get_handle(env->thread);
915#endif
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100916 while (env->created == 0) {
Paolo Bonzini18a85722011-03-12 17:44:03 +0100917 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100918 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000919 tcg_cpu_thread = env->thread;
Blue Swirl296af7c2010-03-29 19:23:50 +0000920 } else {
921 env->thread = tcg_cpu_thread;
922 env->halt_cond = tcg_halt_cond;
923 }
924}
925
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100926static void qemu_kvm_start_vcpu(CPUState *env)
Blue Swirl296af7c2010-03-29 19:23:50 +0000927{
Anthony Liguori7267c092011-08-20 22:09:37 -0500928 env->thread = g_malloc0(sizeof(QemuThread));
929 env->halt_cond = g_malloc0(sizeof(QemuCond));
Blue Swirl296af7c2010-03-29 19:23:50 +0000930 qemu_cond_init(env->halt_cond);
Jan Kiszkacf218712011-12-12 17:21:31 +0100931 qemu_thread_create(env->thread, qemu_kvm_cpu_thread_fn, env,
Paolo Bonzini1ecf47b2011-12-13 13:43:52 +0100932 QEMU_THREAD_JOINABLE);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100933 while (env->created == 0) {
Paolo Bonzini18a85722011-03-12 17:44:03 +0100934 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100935 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000936}
937
938void qemu_init_vcpu(void *_env)
939{
940 CPUState *env = _env;
941
942 env->nr_cores = smp_cores;
943 env->nr_threads = smp_threads;
Jan Kiszkafa7d1862011-08-22 18:35:25 +0200944 env->stopped = 1;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100945 if (kvm_enabled()) {
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100946 qemu_kvm_start_vcpu(env);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100947 } else {
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100948 qemu_tcg_init_vcpu(env);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100949 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000950}
951
Jan Kiszkab4a3d962011-02-01 22:15:43 +0100952void cpu_stop_current(void)
Blue Swirl296af7c2010-03-29 19:23:50 +0000953{
Jan Kiszkab4a3d962011-02-01 22:15:43 +0100954 if (cpu_single_env) {
Paolo Bonzini67bb1722011-03-12 17:43:59 +0100955 cpu_single_env->stop = 0;
Jan Kiszkab4a3d962011-02-01 22:15:43 +0100956 cpu_single_env->stopped = 1;
957 cpu_exit(cpu_single_env);
Paolo Bonzini67bb1722011-03-12 17:43:59 +0100958 qemu_cond_signal(&qemu_pause_cond);
Jan Kiszkab4a3d962011-02-01 22:15:43 +0100959 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000960}
961
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300962void vm_stop(RunState state)
Blue Swirl296af7c2010-03-29 19:23:50 +0000963{
Jan Kiszkab7680cb2011-03-12 17:43:51 +0100964 if (!qemu_thread_is_self(&io_thread)) {
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300965 qemu_system_vmstop_request(state);
Blue Swirl296af7c2010-03-29 19:23:50 +0000966 /*
967 * FIXME: should not return to device code in case
968 * vm_stop() has been requested.
969 */
Jan Kiszkab4a3d962011-02-01 22:15:43 +0100970 cpu_stop_current();
Blue Swirl296af7c2010-03-29 19:23:50 +0000971 return;
972 }
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300973 do_vm_stop(state);
Blue Swirl296af7c2010-03-29 19:23:50 +0000974}
975
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300976/* does a state transition even if the VM is already stopped,
977 current state is forgotten forever */
978void vm_stop_force_state(RunState state)
979{
980 if (runstate_is_running()) {
981 vm_stop(state);
982 } else {
983 runstate_set(state);
984 }
985}
986
Jan Kiszka6792a572011-02-07 12:19:18 +0100987static int tcg_cpu_exec(CPUState *env)
Blue Swirl296af7c2010-03-29 19:23:50 +0000988{
989 int ret;
990#ifdef CONFIG_PROFILER
991 int64_t ti;
992#endif
993
994#ifdef CONFIG_PROFILER
995 ti = profile_getclock();
996#endif
997 if (use_icount) {
998 int64_t count;
999 int decr;
1000 qemu_icount -= (env->icount_decr.u16.low + env->icount_extra);
1001 env->icount_decr.u16.low = 0;
1002 env->icount_extra = 0;
Paolo Bonzini946fb272011-09-12 13:57:37 +02001003 count = qemu_icount_round(qemu_clock_deadline(vm_clock));
Blue Swirl296af7c2010-03-29 19:23:50 +00001004 qemu_icount += count;
1005 decr = (count > 0xffff) ? 0xffff : count;
1006 count -= decr;
1007 env->icount_decr.u16.low = decr;
1008 env->icount_extra = count;
1009 }
1010 ret = cpu_exec(env);
1011#ifdef CONFIG_PROFILER
1012 qemu_time += profile_getclock() - ti;
1013#endif
1014 if (use_icount) {
1015 /* Fold pending instructions back into the
1016 instruction counter, and clear the interrupt flag. */
1017 qemu_icount -= (env->icount_decr.u16.low
1018 + env->icount_extra);
1019 env->icount_decr.u32 = 0;
1020 env->icount_extra = 0;
1021 }
1022 return ret;
1023}
1024
Jan Kiszkabdb7ca62011-09-26 09:40:39 +02001025static void tcg_exec_all(void)
Blue Swirl296af7c2010-03-29 19:23:50 +00001026{
Jan Kiszka9a360852011-02-01 22:15:55 +01001027 int r;
1028
Paolo Bonziniab33fcd2011-04-13 10:03:44 +02001029 /* Account partial waits to the vm_clock. */
1030 qemu_clock_warp(vm_clock);
1031
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001032 if (next_cpu == NULL) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001033 next_cpu = first_cpu;
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001034 }
Jan Kiszkac629a4b2010-06-25 16:56:52 +02001035 for (; next_cpu != NULL && !exit_request; next_cpu = next_cpu->next_cpu) {
Jan Kiszka345f4422010-06-25 16:56:54 +02001036 CPUState *env = next_cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +00001037
1038 qemu_clock_enable(vm_clock,
Jan Kiszka345f4422010-06-25 16:56:54 +02001039 (env->singlestep_enabled & SSTEP_NOTIMER) == 0);
Blue Swirl296af7c2010-03-29 19:23:50 +00001040
Jan Kiszka3c638d02010-06-25 16:56:56 +02001041 if (cpu_can_run(env)) {
Jan Kiszkabdb7ca62011-09-26 09:40:39 +02001042 r = tcg_cpu_exec(env);
Jan Kiszka9a360852011-02-01 22:15:55 +01001043 if (r == EXCP_DEBUG) {
Jan Kiszka1009d2e2011-03-15 12:26:13 +01001044 cpu_handle_guest_debug(env);
Jan Kiszka3c638d02010-06-25 16:56:56 +02001045 break;
1046 }
Paolo Bonzinidf646df2011-03-12 17:43:58 +01001047 } else if (env->stop || env->stopped) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001048 break;
1049 }
1050 }
Jan Kiszkac629a4b2010-06-25 16:56:52 +02001051 exit_request = 0;
Blue Swirl296af7c2010-03-29 19:23:50 +00001052}
1053
1054void set_numa_modes(void)
1055{
1056 CPUState *env;
1057 int i;
1058
1059 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1060 for (i = 0; i < nb_numa_nodes; i++) {
1061 if (node_cpumask[i] & (1 << env->cpu_index)) {
1062 env->numa_node = i;
1063 }
1064 }
1065 }
1066}
1067
1068void set_cpu_log(const char *optarg)
1069{
1070 int mask;
1071 const CPULogItem *item;
1072
1073 mask = cpu_str_to_log_mask(optarg);
1074 if (!mask) {
1075 printf("Log items (comma separated):\n");
1076 for (item = cpu_log_items; item->mask != 0; item++) {
1077 printf("%-10s %s\n", item->name, item->help);
1078 }
1079 exit(1);
1080 }
1081 cpu_set_log(mask);
1082}
Blue Swirl29e922b2010-03-29 19:24:00 +00001083
Matthew Fernandezc235d732011-06-07 16:32:40 +00001084void set_cpu_log_filename(const char *optarg)
1085{
1086 cpu_set_log_filename(optarg);
1087}
1088
Stefan Weil9a78eea2010-10-22 23:03:33 +02001089void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg)
Blue Swirl262353c2010-05-04 19:55:35 +00001090{
1091 /* XXX: implement xxx_cpu_list for targets that still miss it */
1092#if defined(cpu_list_id)
1093 cpu_list_id(f, cpu_fprintf, optarg);
1094#elif defined(cpu_list)
1095 cpu_list(f, cpu_fprintf); /* deprecated */
1096#endif
1097}
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001098
1099CpuInfoList *qmp_query_cpus(Error **errp)
1100{
1101 CpuInfoList *head = NULL, *cur_item = NULL;
1102 CPUState *env;
1103
1104 for(env = first_cpu; env != NULL; env = env->next_cpu) {
1105 CpuInfoList *info;
1106
1107 cpu_synchronize_state(env);
1108
1109 info = g_malloc0(sizeof(*info));
1110 info->value = g_malloc0(sizeof(*info->value));
1111 info->value->CPU = env->cpu_index;
1112 info->value->current = (env == first_cpu);
1113 info->value->halted = env->halted;
1114 info->value->thread_id = env->thread_id;
1115#if defined(TARGET_I386)
1116 info->value->has_pc = true;
1117 info->value->pc = env->eip + env->segs[R_CS].base;
1118#elif defined(TARGET_PPC)
1119 info->value->has_nip = true;
1120 info->value->nip = env->nip;
1121#elif defined(TARGET_SPARC)
1122 info->value->has_pc = true;
1123 info->value->pc = env->pc;
1124 info->value->has_npc = true;
1125 info->value->npc = env->npc;
1126#elif defined(TARGET_MIPS)
1127 info->value->has_PC = true;
1128 info->value->PC = env->active_tc.PC;
1129#endif
1130
1131 /* XXX: waiting for the qapi to support GSList */
1132 if (!cur_item) {
1133 head = cur_item = info;
1134 } else {
1135 cur_item->next = info;
1136 cur_item = info;
1137 }
1138 }
1139
1140 return head;
1141}
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001142
1143void qmp_memsave(int64_t addr, int64_t size, const char *filename,
1144 bool has_cpu, int64_t cpu_index, Error **errp)
1145{
1146 FILE *f;
1147 uint32_t l;
1148 CPUState *env;
1149 uint8_t buf[1024];
1150
1151 if (!has_cpu) {
1152 cpu_index = 0;
1153 }
1154
1155 for (env = first_cpu; env; env = env->next_cpu) {
1156 if (cpu_index == env->cpu_index) {
1157 break;
1158 }
1159 }
1160
1161 if (env == NULL) {
1162 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
1163 "a CPU number");
1164 return;
1165 }
1166
1167 f = fopen(filename, "wb");
1168 if (!f) {
1169 error_set(errp, QERR_OPEN_FILE_FAILED, filename);
1170 return;
1171 }
1172
1173 while (size != 0) {
1174 l = sizeof(buf);
1175 if (l > size)
1176 l = size;
1177 cpu_memory_rw_debug(env, addr, buf, l, 0);
1178 if (fwrite(buf, 1, l, f) != l) {
1179 error_set(errp, QERR_IO_ERROR);
1180 goto exit;
1181 }
1182 addr += l;
1183 size -= l;
1184 }
1185
1186exit:
1187 fclose(f);
1188}
Luiz Capitulino6d3962b2011-11-22 17:26:46 -02001189
1190void qmp_pmemsave(int64_t addr, int64_t size, const char *filename,
1191 Error **errp)
1192{
1193 FILE *f;
1194 uint32_t l;
1195 uint8_t buf[1024];
1196
1197 f = fopen(filename, "wb");
1198 if (!f) {
1199 error_set(errp, QERR_OPEN_FILE_FAILED, filename);
1200 return;
1201 }
1202
1203 while (size != 0) {
1204 l = sizeof(buf);
1205 if (l > size)
1206 l = size;
1207 cpu_physical_memory_rw(addr, buf, l, 0);
1208 if (fwrite(buf, 1, l, f) != l) {
1209 error_set(errp, QERR_IO_ERROR);
1210 goto exit;
1211 }
1212 addr += l;
1213 size -= l;
1214 }
1215
1216exit:
1217 fclose(f);
1218}
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001219
1220void qmp_inject_nmi(Error **errp)
1221{
1222#if defined(TARGET_I386)
1223 CPUState *env;
1224
1225 for (env = first_cpu; env != NULL; env = env->next_cpu) {
Jan Kiszka02c09192011-10-18 00:00:06 +08001226 if (!env->apic_state) {
1227 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1228 } else {
1229 apic_deliver_nmi(env->apic_state);
1230 }
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001231 }
1232#else
1233 error_set(errp, QERR_UNSUPPORTED);
1234#endif
1235}