blob: a2d09f363f38e8834746730fb55f478b0aa20eb9 [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
Paolo Bonzini83c90892012-12-17 18:19:49 +010028#include "monitor/monitor.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010029#include "sysemu/sysemu.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010030#include "exec/gdbstub.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010031#include "sysemu/dma.h"
32#include "sysemu/kvm.h"
Luiz Capitulinode0b36b2011-09-21 16:38:35 -030033#include "qmp-commands.h"
Blue Swirl296af7c2010-03-29 19:23:50 +000034
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010035#include "qemu/thread.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010036#include "sysemu/cpus.h"
37#include "sysemu/qtest.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010038#include "qemu/main-loop.h"
39#include "qemu/bitmap.h"
Liu Ping Fancb365642013-09-25 14:20:58 +080040#include "qemu/seqlock.h"
Jan Kiszka0ff0fc12011-06-23 10:15:55 +020041
42#ifndef _WIN32
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010043#include "qemu/compatfd.h"
Jan Kiszka0ff0fc12011-06-23 10:15:55 +020044#endif
Blue Swirl296af7c2010-03-29 19:23:50 +000045
Jan Kiszka6d9cb732011-02-01 22:15:58 +010046#ifdef CONFIG_LINUX
47
48#include <sys/prctl.h>
49
Marcelo Tosattic0532a72010-10-11 15:31:21 -030050#ifndef PR_MCE_KILL
51#define PR_MCE_KILL 33
52#endif
53
Jan Kiszka6d9cb732011-02-01 22:15:58 +010054#ifndef PR_MCE_KILL_SET
55#define PR_MCE_KILL_SET 1
56#endif
57
58#ifndef PR_MCE_KILL_EARLY
59#define PR_MCE_KILL_EARLY 1
60#endif
61
62#endif /* CONFIG_LINUX */
63
Andreas Färber182735e2013-05-29 22:29:20 +020064static CPUState *next_cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +000065
Tiejun Chen321bc0b2013-08-02 09:43:09 +080066bool cpu_is_stopped(CPUState *cpu)
67{
68 return cpu->stopped || !runstate_is_running();
69}
70
Andreas Färbera98ae1d2013-05-26 23:21:08 +020071static bool cpu_thread_is_idle(CPUState *cpu)
Peter Maydellac873f12012-07-19 16:52:27 +010072{
Andreas Färberc64ca812012-05-03 02:11:45 +020073 if (cpu->stop || cpu->queued_work_first) {
Peter Maydellac873f12012-07-19 16:52:27 +010074 return false;
75 }
Tiejun Chen321bc0b2013-08-02 09:43:09 +080076 if (cpu_is_stopped(cpu)) {
Peter Maydellac873f12012-07-19 16:52:27 +010077 return true;
78 }
Andreas Färber259186a2013-01-17 18:51:17 +010079 if (!cpu->halted || qemu_cpu_has_work(cpu) ||
Alexander Graf215e79c2013-04-24 22:24:12 +020080 kvm_halt_in_kernel()) {
Peter Maydellac873f12012-07-19 16:52:27 +010081 return false;
82 }
83 return true;
84}
85
86static bool all_cpu_threads_idle(void)
87{
Andreas Färber182735e2013-05-29 22:29:20 +020088 CPUState *cpu;
Peter Maydellac873f12012-07-19 16:52:27 +010089
Andreas Färberbdc44642013-06-24 23:50:24 +020090 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +020091 if (!cpu_thread_is_idle(cpu)) {
Peter Maydellac873f12012-07-19 16:52:27 +010092 return false;
93 }
94 }
95 return true;
96}
97
Blue Swirl296af7c2010-03-29 19:23:50 +000098/***********************************************************/
Paolo Bonzini946fb272011-09-12 13:57:37 +020099/* guest cycle counter */
100
101/* Conversion factor from emulated instructions to virtual clock ticks. */
102static int icount_time_shift;
103/* Arbitrarily pick 1MIPS as the minimum allowable speed. */
104#define MAX_ICOUNT_SHIFT 10
105/* Compensate for varying guest execution speed. */
106static int64_t qemu_icount_bias;
107static QEMUTimer *icount_rt_timer;
108static QEMUTimer *icount_vm_timer;
109static QEMUTimer *icount_warp_timer;
110static int64_t vm_clock_warp_start;
111static int64_t qemu_icount;
112
113typedef struct TimersState {
Liu Ping Fancb365642013-09-25 14:20:58 +0800114 /* Protected by BQL. */
Paolo Bonzini946fb272011-09-12 13:57:37 +0200115 int64_t cpu_ticks_prev;
116 int64_t cpu_ticks_offset;
Liu Ping Fancb365642013-09-25 14:20:58 +0800117
118 /* cpu_clock_offset can be read out of BQL, so protect it with
119 * this lock.
120 */
121 QemuSeqLock vm_clock_seqlock;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200122 int64_t cpu_clock_offset;
123 int32_t cpu_ticks_enabled;
124 int64_t dummy;
125} TimersState;
126
Liu Ping Fand9cd4002013-07-21 08:43:00 +0000127static TimersState timers_state;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200128
129/* Return the virtual CPU time, based on the instruction counter. */
130int64_t cpu_get_icount(void)
131{
132 int64_t icount;
Andreas Färber4917cf42013-05-27 05:17:50 +0200133 CPUState *cpu = current_cpu;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200134
135 icount = qemu_icount;
Andreas Färber4917cf42013-05-27 05:17:50 +0200136 if (cpu) {
137 CPUArchState *env = cpu->env_ptr;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200138 if (!can_do_io(env)) {
139 fprintf(stderr, "Bad clock read\n");
140 }
141 icount -= (env->icount_decr.u16.low + env->icount_extra);
142 }
143 return qemu_icount_bias + (icount << icount_time_shift);
144}
145
146/* return the host CPU cycle counter and handle stop/restart */
Liu Ping Fancb365642013-09-25 14:20:58 +0800147/* Caller must hold the BQL */
Paolo Bonzini946fb272011-09-12 13:57:37 +0200148int64_t cpu_get_ticks(void)
149{
150 if (use_icount) {
151 return cpu_get_icount();
152 }
153 if (!timers_state.cpu_ticks_enabled) {
154 return timers_state.cpu_ticks_offset;
155 } else {
156 int64_t ticks;
157 ticks = cpu_get_real_ticks();
158 if (timers_state.cpu_ticks_prev > ticks) {
159 /* Note: non increasing ticks may happen if the host uses
160 software suspend */
161 timers_state.cpu_ticks_offset += timers_state.cpu_ticks_prev - ticks;
162 }
163 timers_state.cpu_ticks_prev = ticks;
164 return ticks + timers_state.cpu_ticks_offset;
165 }
166}
167
Liu Ping Fancb365642013-09-25 14:20:58 +0800168static int64_t cpu_get_clock_locked(void)
169{
170 int64_t ti;
171
172 if (!timers_state.cpu_ticks_enabled) {
173 ti = timers_state.cpu_clock_offset;
174 } else {
175 ti = get_clock();
176 ti += timers_state.cpu_clock_offset;
177 }
178
179 return ti;
180}
181
Paolo Bonzini946fb272011-09-12 13:57:37 +0200182/* return the host CPU monotonic timer and handle stop/restart */
183int64_t cpu_get_clock(void)
184{
185 int64_t ti;
Liu Ping Fancb365642013-09-25 14:20:58 +0800186 unsigned start;
187
188 do {
189 start = seqlock_read_begin(&timers_state.vm_clock_seqlock);
190 ti = cpu_get_clock_locked();
191 } while (seqlock_read_retry(&timers_state.vm_clock_seqlock, start));
192
193 return ti;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200194}
195
Liu Ping Fancb365642013-09-25 14:20:58 +0800196/* enable cpu_get_ticks()
197 * Caller must hold BQL which server as mutex for vm_clock_seqlock.
198 */
Paolo Bonzini946fb272011-09-12 13:57:37 +0200199void cpu_enable_ticks(void)
200{
Liu Ping Fancb365642013-09-25 14:20:58 +0800201 /* Here, the really thing protected by seqlock is cpu_clock_offset. */
202 seqlock_write_lock(&timers_state.vm_clock_seqlock);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200203 if (!timers_state.cpu_ticks_enabled) {
204 timers_state.cpu_ticks_offset -= cpu_get_real_ticks();
205 timers_state.cpu_clock_offset -= get_clock();
206 timers_state.cpu_ticks_enabled = 1;
207 }
Liu Ping Fancb365642013-09-25 14:20:58 +0800208 seqlock_write_unlock(&timers_state.vm_clock_seqlock);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200209}
210
211/* disable cpu_get_ticks() : the clock is stopped. You must not call
Liu Ping Fancb365642013-09-25 14:20:58 +0800212 * cpu_get_ticks() after that.
213 * Caller must hold BQL which server as mutex for vm_clock_seqlock.
214 */
Paolo Bonzini946fb272011-09-12 13:57:37 +0200215void cpu_disable_ticks(void)
216{
Liu Ping Fancb365642013-09-25 14:20:58 +0800217 /* Here, the really thing protected by seqlock is cpu_clock_offset. */
218 seqlock_write_lock(&timers_state.vm_clock_seqlock);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200219 if (timers_state.cpu_ticks_enabled) {
220 timers_state.cpu_ticks_offset = cpu_get_ticks();
Liu Ping Fancb365642013-09-25 14:20:58 +0800221 timers_state.cpu_clock_offset = cpu_get_clock_locked();
Paolo Bonzini946fb272011-09-12 13:57:37 +0200222 timers_state.cpu_ticks_enabled = 0;
223 }
Liu Ping Fancb365642013-09-25 14:20:58 +0800224 seqlock_write_unlock(&timers_state.vm_clock_seqlock);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200225}
226
227/* Correlation between real and virtual time is always going to be
228 fairly approximate, so ignore small variation.
229 When the guest is idle real and virtual time will be aligned in
230 the IO wait loop. */
231#define ICOUNT_WOBBLE (get_ticks_per_sec() / 10)
232
233static void icount_adjust(void)
234{
235 int64_t cur_time;
236 int64_t cur_icount;
237 int64_t delta;
238 static int64_t last_delta;
Paolo Bonzini468cc7c2013-10-07 17:21:51 +0200239
Paolo Bonzini946fb272011-09-12 13:57:37 +0200240 /* If the VM is not running, then do nothing. */
241 if (!runstate_is_running()) {
242 return;
243 }
Paolo Bonzini468cc7c2013-10-07 17:21:51 +0200244
Paolo Bonzini946fb272011-09-12 13:57:37 +0200245 cur_time = cpu_get_clock();
Paolo Bonzini468cc7c2013-10-07 17:21:51 +0200246 cur_icount = cpu_get_icount();
247
Paolo Bonzini946fb272011-09-12 13:57:37 +0200248 delta = cur_icount - cur_time;
249 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
250 if (delta > 0
251 && last_delta + ICOUNT_WOBBLE < delta * 2
252 && icount_time_shift > 0) {
253 /* The guest is getting too far ahead. Slow time down. */
254 icount_time_shift--;
255 }
256 if (delta < 0
257 && last_delta - ICOUNT_WOBBLE > delta * 2
258 && icount_time_shift < MAX_ICOUNT_SHIFT) {
259 /* The guest is getting too far behind. Speed time up. */
260 icount_time_shift++;
261 }
262 last_delta = delta;
263 qemu_icount_bias = cur_icount - (qemu_icount << icount_time_shift);
264}
265
266static void icount_adjust_rt(void *opaque)
267{
Alex Bligh40daca52013-08-21 16:03:02 +0100268 timer_mod(icount_rt_timer,
269 qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200270 icount_adjust();
271}
272
273static void icount_adjust_vm(void *opaque)
274{
Alex Bligh40daca52013-08-21 16:03:02 +0100275 timer_mod(icount_vm_timer,
276 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
277 get_ticks_per_sec() / 10);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200278 icount_adjust();
279}
280
281static int64_t qemu_icount_round(int64_t count)
282{
283 return (count + (1 << icount_time_shift) - 1) >> icount_time_shift;
284}
285
286static void icount_warp_rt(void *opaque)
287{
288 if (vm_clock_warp_start == -1) {
289 return;
290 }
291
292 if (runstate_is_running()) {
Alex Bligh40daca52013-08-21 16:03:02 +0100293 int64_t clock = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200294 int64_t warp_delta = clock - vm_clock_warp_start;
295 if (use_icount == 1) {
296 qemu_icount_bias += warp_delta;
297 } else {
298 /*
Alex Bligh40daca52013-08-21 16:03:02 +0100299 * In adaptive mode, do not let QEMU_CLOCK_VIRTUAL run too
Paolo Bonzini946fb272011-09-12 13:57:37 +0200300 * far ahead of real time.
301 */
302 int64_t cur_time = cpu_get_clock();
Paolo Bonzini468cc7c2013-10-07 17:21:51 +0200303 int64_t cur_icount = cpu_get_icount();
Paolo Bonzini946fb272011-09-12 13:57:37 +0200304 int64_t delta = cur_time - cur_icount;
305 qemu_icount_bias += MIN(warp_delta, delta);
306 }
Alex Bligh40daca52013-08-21 16:03:02 +0100307 if (qemu_clock_expired(QEMU_CLOCK_VIRTUAL)) {
308 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200309 }
310 }
311 vm_clock_warp_start = -1;
312}
313
Paolo Bonzini8156be52012-03-28 15:42:04 +0200314void qtest_clock_warp(int64_t dest)
315{
Alex Bligh40daca52013-08-21 16:03:02 +0100316 int64_t clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200317 assert(qtest_enabled());
318 while (clock < dest) {
Alex Bligh40daca52013-08-21 16:03:02 +0100319 int64_t deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200320 int64_t warp = MIN(dest - clock, deadline);
321 qemu_icount_bias += warp;
Alex Bligh40daca52013-08-21 16:03:02 +0100322 qemu_clock_run_timers(QEMU_CLOCK_VIRTUAL);
323 clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200324 }
Alex Bligh40daca52013-08-21 16:03:02 +0100325 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200326}
327
Alex Bligh40daca52013-08-21 16:03:02 +0100328void qemu_clock_warp(QEMUClockType type)
Paolo Bonzini946fb272011-09-12 13:57:37 +0200329{
330 int64_t deadline;
331
332 /*
333 * There are too many global variables to make the "warp" behavior
334 * applicable to other clocks. But a clock argument removes the
335 * need for if statements all over the place.
336 */
Alex Bligh40daca52013-08-21 16:03:02 +0100337 if (type != QEMU_CLOCK_VIRTUAL || !use_icount) {
Paolo Bonzini946fb272011-09-12 13:57:37 +0200338 return;
339 }
340
341 /*
Alex Bligh40daca52013-08-21 16:03:02 +0100342 * If the CPUs have been sleeping, advance QEMU_CLOCK_VIRTUAL timer now.
343 * This ensures that the deadline for the timer is computed correctly below.
Paolo Bonzini946fb272011-09-12 13:57:37 +0200344 * This also makes sure that the insn counter is synchronized before the
345 * CPU starts running, in case the CPU is woken by an event other than
Alex Bligh40daca52013-08-21 16:03:02 +0100346 * the earliest QEMU_CLOCK_VIRTUAL timer.
Paolo Bonzini946fb272011-09-12 13:57:37 +0200347 */
348 icount_warp_rt(NULL);
Alex Bligh40daca52013-08-21 16:03:02 +0100349 if (!all_cpu_threads_idle() || !qemu_clock_has_timers(QEMU_CLOCK_VIRTUAL)) {
350 timer_del(icount_warp_timer);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200351 return;
352 }
353
Paolo Bonzini8156be52012-03-28 15:42:04 +0200354 if (qtest_enabled()) {
355 /* When testing, qtest commands advance icount. */
356 return;
357 }
358
Alex Bligh40daca52013-08-21 16:03:02 +0100359 vm_clock_warp_start = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
Alex Blighac70aaf2013-08-21 16:02:57 +0100360 /* We want to use the earliest deadline from ALL vm_clocks */
Alex Bligh40daca52013-08-21 16:03:02 +0100361 deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
Alex Blighac70aaf2013-08-21 16:02:57 +0100362
363 /* Maintain prior (possibly buggy) behaviour where if no deadline
Alex Bligh40daca52013-08-21 16:03:02 +0100364 * was set (as there is no QEMU_CLOCK_VIRTUAL timer) or it is more than
Alex Blighac70aaf2013-08-21 16:02:57 +0100365 * INT32_MAX nanoseconds ahead, we still use INT32_MAX
366 * nanoseconds.
367 */
368 if ((deadline < 0) || (deadline > INT32_MAX)) {
369 deadline = INT32_MAX;
370 }
371
Paolo Bonzini946fb272011-09-12 13:57:37 +0200372 if (deadline > 0) {
373 /*
Alex Bligh40daca52013-08-21 16:03:02 +0100374 * Ensure QEMU_CLOCK_VIRTUAL proceeds even when the virtual CPU goes to
Paolo Bonzini946fb272011-09-12 13:57:37 +0200375 * sleep. Otherwise, the CPU might be waiting for a future timer
376 * interrupt to wake it up, but the interrupt never comes because
377 * the vCPU isn't running any insns and thus doesn't advance the
Alex Bligh40daca52013-08-21 16:03:02 +0100378 * QEMU_CLOCK_VIRTUAL.
Paolo Bonzini946fb272011-09-12 13:57:37 +0200379 *
380 * An extreme solution for this problem would be to never let VCPUs
Alex Bligh40daca52013-08-21 16:03:02 +0100381 * sleep in icount mode if there is a pending QEMU_CLOCK_VIRTUAL
382 * timer; rather time could just advance to the next QEMU_CLOCK_VIRTUAL
383 * event. Instead, we do stop VCPUs and only advance QEMU_CLOCK_VIRTUAL
384 * after some e"real" time, (related to the time left until the next
385 * event) has passed. The QEMU_CLOCK_REALTIME timer will do this.
386 * This avoids that the warps are visible externally; for example,
387 * you will not be sending network packets continuously instead of
388 * every 100ms.
Paolo Bonzini946fb272011-09-12 13:57:37 +0200389 */
Alex Bligh40daca52013-08-21 16:03:02 +0100390 timer_mod(icount_warp_timer, vm_clock_warp_start + deadline);
Alex Blighac70aaf2013-08-21 16:02:57 +0100391 } else if (deadline == 0) {
Alex Bligh40daca52013-08-21 16:03:02 +0100392 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200393 }
394}
395
396static const VMStateDescription vmstate_timers = {
397 .name = "timer",
398 .version_id = 2,
399 .minimum_version_id = 1,
400 .minimum_version_id_old = 1,
401 .fields = (VMStateField[]) {
402 VMSTATE_INT64(cpu_ticks_offset, TimersState),
403 VMSTATE_INT64(dummy, TimersState),
404 VMSTATE_INT64_V(cpu_clock_offset, TimersState, 2),
405 VMSTATE_END_OF_LIST()
406 }
407};
408
409void configure_icount(const char *option)
410{
Liu Ping Fancb365642013-09-25 14:20:58 +0800411 seqlock_init(&timers_state.vm_clock_seqlock, NULL);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200412 vmstate_register(NULL, 0, &vmstate_timers, &timers_state);
413 if (!option) {
414 return;
415 }
416
Alex Bligh40daca52013-08-21 16:03:02 +0100417 icount_warp_timer = timer_new_ns(QEMU_CLOCK_REALTIME,
418 icount_warp_rt, NULL);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200419 if (strcmp(option, "auto") != 0) {
420 icount_time_shift = strtol(option, NULL, 0);
421 use_icount = 1;
422 return;
423 }
424
425 use_icount = 2;
426
427 /* 125MIPS seems a reasonable initial guess at the guest speed.
428 It will be corrected fairly quickly anyway. */
429 icount_time_shift = 3;
430
431 /* Have both realtime and virtual time triggers for speed adjustment.
432 The realtime trigger catches emulated time passing too slowly,
433 the virtual time trigger catches emulated time passing too fast.
434 Realtime triggers occur even when idle, so use them less frequently
435 than VM triggers. */
Alex Bligh40daca52013-08-21 16:03:02 +0100436 icount_rt_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
437 icount_adjust_rt, NULL);
438 timer_mod(icount_rt_timer,
439 qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000);
440 icount_vm_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
441 icount_adjust_vm, NULL);
442 timer_mod(icount_vm_timer,
443 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
444 get_ticks_per_sec() / 10);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200445}
446
447/***********************************************************/
Blue Swirl296af7c2010-03-29 19:23:50 +0000448void hw_error(const char *fmt, ...)
449{
450 va_list ap;
Andreas Färber55e5c282012-12-17 06:18:02 +0100451 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000452
453 va_start(ap, fmt);
454 fprintf(stderr, "qemu: hardware error: ");
455 vfprintf(stderr, fmt, ap);
456 fprintf(stderr, "\n");
Andreas Färberbdc44642013-06-24 23:50:24 +0200457 CPU_FOREACH(cpu) {
Andreas Färber55e5c282012-12-17 06:18:02 +0100458 fprintf(stderr, "CPU #%d:\n", cpu->cpu_index);
Andreas Färber878096e2013-05-27 01:33:50 +0200459 cpu_dump_state(cpu, stderr, fprintf, CPU_DUMP_FPU);
Blue Swirl296af7c2010-03-29 19:23:50 +0000460 }
461 va_end(ap);
462 abort();
463}
464
465void cpu_synchronize_all_states(void)
466{
Andreas Färber182735e2013-05-29 22:29:20 +0200467 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000468
Andreas Färberbdc44642013-06-24 23:50:24 +0200469 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +0200470 cpu_synchronize_state(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000471 }
472}
473
474void cpu_synchronize_all_post_reset(void)
475{
Andreas Färber182735e2013-05-29 22:29:20 +0200476 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000477
Andreas Färberbdc44642013-06-24 23:50:24 +0200478 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +0200479 cpu_synchronize_post_reset(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000480 }
481}
482
483void cpu_synchronize_all_post_init(void)
484{
Andreas Färber182735e2013-05-29 22:29:20 +0200485 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000486
Andreas Färberbdc44642013-06-24 23:50:24 +0200487 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +0200488 cpu_synchronize_post_init(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000489 }
490}
491
Kevin Wolf56983462013-07-05 13:49:54 +0200492static int do_vm_stop(RunState state)
Blue Swirl296af7c2010-03-29 19:23:50 +0000493{
Kevin Wolf56983462013-07-05 13:49:54 +0200494 int ret = 0;
495
Luiz Capitulino13548692011-07-29 15:36:43 -0300496 if (runstate_is_running()) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000497 cpu_disable_ticks();
Blue Swirl296af7c2010-03-29 19:23:50 +0000498 pause_all_vcpus();
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300499 runstate_set(state);
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300500 vm_state_notify(0, state);
Blue Swirl296af7c2010-03-29 19:23:50 +0000501 monitor_protocol_event(QEVENT_STOP, NULL);
502 }
Kevin Wolf56983462013-07-05 13:49:54 +0200503
Kevin Wolf594a45c2013-07-18 14:52:19 +0200504 bdrv_drain_all();
505 ret = bdrv_flush_all();
506
Kevin Wolf56983462013-07-05 13:49:54 +0200507 return ret;
Blue Swirl296af7c2010-03-29 19:23:50 +0000508}
509
Andreas Färbera1fcaa72012-05-02 23:42:26 +0200510static bool cpu_can_run(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +0000511{
Andreas Färber4fdeee72012-05-02 23:10:09 +0200512 if (cpu->stop) {
Andreas Färbera1fcaa72012-05-02 23:42:26 +0200513 return false;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100514 }
Tiejun Chen321bc0b2013-08-02 09:43:09 +0800515 if (cpu_is_stopped(cpu)) {
Andreas Färbera1fcaa72012-05-02 23:42:26 +0200516 return false;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100517 }
Andreas Färbera1fcaa72012-05-02 23:42:26 +0200518 return true;
Blue Swirl296af7c2010-03-29 19:23:50 +0000519}
520
Andreas Färber91325042013-05-27 02:07:49 +0200521static void cpu_handle_guest_debug(CPUState *cpu)
Jan Kiszka3c638d02010-06-25 16:56:56 +0200522{
Andreas Färber64f6b342013-05-27 02:06:09 +0200523 gdb_set_stop_cpu(cpu);
Jan Kiszka8cf71712011-02-07 12:19:16 +0100524 qemu_system_debug_request();
Andreas Färberf324e762012-05-02 23:26:21 +0200525 cpu->stopped = true;
Jan Kiszka3c638d02010-06-25 16:56:56 +0200526}
527
Paolo Bonzini714bd042011-03-12 17:44:06 +0100528static void cpu_signal(int sig)
529{
Andreas Färber4917cf42013-05-27 05:17:50 +0200530 if (current_cpu) {
531 cpu_exit(current_cpu);
Paolo Bonzini714bd042011-03-12 17:44:06 +0100532 }
533 exit_request = 1;
534}
Paolo Bonzini714bd042011-03-12 17:44:06 +0100535
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100536#ifdef CONFIG_LINUX
537static void sigbus_reraise(void)
538{
539 sigset_t set;
540 struct sigaction action;
541
542 memset(&action, 0, sizeof(action));
543 action.sa_handler = SIG_DFL;
544 if (!sigaction(SIGBUS, &action, NULL)) {
545 raise(SIGBUS);
546 sigemptyset(&set);
547 sigaddset(&set, SIGBUS);
548 sigprocmask(SIG_UNBLOCK, &set, NULL);
549 }
550 perror("Failed to re-raise SIGBUS!\n");
551 abort();
552}
553
554static void sigbus_handler(int n, struct qemu_signalfd_siginfo *siginfo,
555 void *ctx)
556{
557 if (kvm_on_sigbus(siginfo->ssi_code,
558 (void *)(intptr_t)siginfo->ssi_addr)) {
559 sigbus_reraise();
560 }
561}
562
563static void qemu_init_sigbus(void)
564{
565 struct sigaction action;
566
567 memset(&action, 0, sizeof(action));
568 action.sa_flags = SA_SIGINFO;
569 action.sa_sigaction = (void (*)(int, siginfo_t*, void*))sigbus_handler;
570 sigaction(SIGBUS, &action, NULL);
571
572 prctl(PR_MCE_KILL, PR_MCE_KILL_SET, PR_MCE_KILL_EARLY, 0, 0);
573}
574
Andreas Färber290adf32013-01-17 09:30:27 +0100575static void qemu_kvm_eat_signals(CPUState *cpu)
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100576{
577 struct timespec ts = { 0, 0 };
578 siginfo_t siginfo;
579 sigset_t waitset;
580 sigset_t chkset;
581 int r;
582
583 sigemptyset(&waitset);
584 sigaddset(&waitset, SIG_IPI);
585 sigaddset(&waitset, SIGBUS);
586
587 do {
588 r = sigtimedwait(&waitset, &siginfo, &ts);
589 if (r == -1 && !(errno == EAGAIN || errno == EINTR)) {
590 perror("sigtimedwait");
591 exit(1);
592 }
593
594 switch (r) {
595 case SIGBUS:
Andreas Färber290adf32013-01-17 09:30:27 +0100596 if (kvm_on_sigbus_vcpu(cpu, siginfo.si_code, siginfo.si_addr)) {
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100597 sigbus_reraise();
598 }
599 break;
600 default:
601 break;
602 }
603
604 r = sigpending(&chkset);
605 if (r == -1) {
606 perror("sigpending");
607 exit(1);
608 }
609 } while (sigismember(&chkset, SIG_IPI) || sigismember(&chkset, SIGBUS));
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100610}
611
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100612#else /* !CONFIG_LINUX */
613
614static void qemu_init_sigbus(void)
615{
616}
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100617
Andreas Färber290adf32013-01-17 09:30:27 +0100618static void qemu_kvm_eat_signals(CPUState *cpu)
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100619{
620}
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100621#endif /* !CONFIG_LINUX */
622
Blue Swirl296af7c2010-03-29 19:23:50 +0000623#ifndef _WIN32
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100624static void dummy_signal(int sig)
Blue Swirl296af7c2010-03-29 19:23:50 +0000625{
626}
627
Andreas Färber13618e02013-05-26 23:41:00 +0200628static void qemu_kvm_init_cpu_signals(CPUState *cpu)
Paolo Bonzini714bd042011-03-12 17:44:06 +0100629{
630 int r;
631 sigset_t set;
632 struct sigaction sigact;
633
634 memset(&sigact, 0, sizeof(sigact));
635 sigact.sa_handler = dummy_signal;
636 sigaction(SIG_IPI, &sigact, NULL);
637
Paolo Bonzini714bd042011-03-12 17:44:06 +0100638 pthread_sigmask(SIG_BLOCK, NULL, &set);
639 sigdelset(&set, SIG_IPI);
640 sigdelset(&set, SIGBUS);
Andreas Färber491d6e82013-05-26 23:38:10 +0200641 r = kvm_set_signal_mask(cpu, &set);
Paolo Bonzini714bd042011-03-12 17:44:06 +0100642 if (r) {
643 fprintf(stderr, "kvm_set_signal_mask: %s\n", strerror(-r));
644 exit(1);
645 }
Paolo Bonzini714bd042011-03-12 17:44:06 +0100646}
647
648static void qemu_tcg_init_cpu_signals(void)
649{
Paolo Bonzini714bd042011-03-12 17:44:06 +0100650 sigset_t set;
651 struct sigaction sigact;
652
653 memset(&sigact, 0, sizeof(sigact));
654 sigact.sa_handler = cpu_signal;
655 sigaction(SIG_IPI, &sigact, NULL);
656
657 sigemptyset(&set);
658 sigaddset(&set, SIG_IPI);
659 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
Paolo Bonzini714bd042011-03-12 17:44:06 +0100660}
661
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100662#else /* _WIN32 */
Andreas Färber13618e02013-05-26 23:41:00 +0200663static void qemu_kvm_init_cpu_signals(CPUState *cpu)
Paolo Bonzini714bd042011-03-12 17:44:06 +0100664{
665 abort();
666}
667
668static void qemu_tcg_init_cpu_signals(void)
669{
670}
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100671#endif /* _WIN32 */
Blue Swirl296af7c2010-03-29 19:23:50 +0000672
Stefan Weilb2532d82012-09-27 07:41:42 +0200673static QemuMutex qemu_global_mutex;
Paolo Bonzini46daff12011-06-09 13:10:24 +0200674static QemuCond qemu_io_proceeded_cond;
675static bool iothread_requesting_mutex;
Blue Swirl296af7c2010-03-29 19:23:50 +0000676
677static QemuThread io_thread;
678
679static QemuThread *tcg_cpu_thread;
680static QemuCond *tcg_halt_cond;
681
Blue Swirl296af7c2010-03-29 19:23:50 +0000682/* cpu creation */
683static QemuCond qemu_cpu_cond;
684/* system init */
Blue Swirl296af7c2010-03-29 19:23:50 +0000685static QemuCond qemu_pause_cond;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300686static QemuCond qemu_work_cond;
Blue Swirl296af7c2010-03-29 19:23:50 +0000687
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200688void qemu_init_cpu_loop(void)
Blue Swirl296af7c2010-03-29 19:23:50 +0000689{
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100690 qemu_init_sigbus();
Anthony Liguoried945922011-02-08 18:18:18 +0100691 qemu_cond_init(&qemu_cpu_cond);
Anthony Liguoried945922011-02-08 18:18:18 +0100692 qemu_cond_init(&qemu_pause_cond);
693 qemu_cond_init(&qemu_work_cond);
Paolo Bonzini46daff12011-06-09 13:10:24 +0200694 qemu_cond_init(&qemu_io_proceeded_cond);
Blue Swirl296af7c2010-03-29 19:23:50 +0000695 qemu_mutex_init(&qemu_global_mutex);
Blue Swirl296af7c2010-03-29 19:23:50 +0000696
Jan Kiszkab7680cb2011-03-12 17:43:51 +0100697 qemu_thread_get_self(&io_thread);
Blue Swirl296af7c2010-03-29 19:23:50 +0000698}
699
Andreas Färberf100f0b2012-05-03 14:58:47 +0200700void run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data)
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300701{
702 struct qemu_work_item wi;
703
Andreas Färber60e82572012-05-02 22:23:49 +0200704 if (qemu_cpu_is_self(cpu)) {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300705 func(data);
706 return;
707 }
708
709 wi.func = func;
710 wi.data = data;
Chegu Vinod3c022702013-06-24 03:49:41 -0600711 wi.free = false;
Andreas Färberc64ca812012-05-03 02:11:45 +0200712 if (cpu->queued_work_first == NULL) {
713 cpu->queued_work_first = &wi;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100714 } else {
Andreas Färberc64ca812012-05-03 02:11:45 +0200715 cpu->queued_work_last->next = &wi;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100716 }
Andreas Färberc64ca812012-05-03 02:11:45 +0200717 cpu->queued_work_last = &wi;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300718 wi.next = NULL;
719 wi.done = false;
720
Andreas Färberc08d7422012-05-03 04:34:15 +0200721 qemu_cpu_kick(cpu);
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300722 while (!wi.done) {
Andreas Färber4917cf42013-05-27 05:17:50 +0200723 CPUState *self_cpu = current_cpu;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300724
725 qemu_cond_wait(&qemu_work_cond, &qemu_global_mutex);
Andreas Färber4917cf42013-05-27 05:17:50 +0200726 current_cpu = self_cpu;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300727 }
728}
729
Chegu Vinod3c022702013-06-24 03:49:41 -0600730void async_run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data)
731{
732 struct qemu_work_item *wi;
733
734 if (qemu_cpu_is_self(cpu)) {
735 func(data);
736 return;
737 }
738
739 wi = g_malloc0(sizeof(struct qemu_work_item));
740 wi->func = func;
741 wi->data = data;
742 wi->free = true;
743 if (cpu->queued_work_first == NULL) {
744 cpu->queued_work_first = wi;
745 } else {
746 cpu->queued_work_last->next = wi;
747 }
748 cpu->queued_work_last = wi;
749 wi->next = NULL;
750 wi->done = false;
751
752 qemu_cpu_kick(cpu);
753}
754
Andreas Färber6d45b102012-05-03 02:13:22 +0200755static void flush_queued_work(CPUState *cpu)
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300756{
757 struct qemu_work_item *wi;
758
Andreas Färberc64ca812012-05-03 02:11:45 +0200759 if (cpu->queued_work_first == NULL) {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300760 return;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100761 }
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300762
Andreas Färberc64ca812012-05-03 02:11:45 +0200763 while ((wi = cpu->queued_work_first)) {
764 cpu->queued_work_first = wi->next;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300765 wi->func(wi->data);
766 wi->done = true;
Chegu Vinod3c022702013-06-24 03:49:41 -0600767 if (wi->free) {
768 g_free(wi);
769 }
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300770 }
Andreas Färberc64ca812012-05-03 02:11:45 +0200771 cpu->queued_work_last = NULL;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300772 qemu_cond_broadcast(&qemu_work_cond);
773}
774
Andreas Färber509a0d72012-05-03 02:18:09 +0200775static void qemu_wait_io_event_common(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +0000776{
Andreas Färber4fdeee72012-05-02 23:10:09 +0200777 if (cpu->stop) {
778 cpu->stop = false;
Andreas Färberf324e762012-05-02 23:26:21 +0200779 cpu->stopped = true;
Blue Swirl296af7c2010-03-29 19:23:50 +0000780 qemu_cond_signal(&qemu_pause_cond);
781 }
Andreas Färber6d45b102012-05-03 02:13:22 +0200782 flush_queued_work(cpu);
Andreas Färber216fc9a2012-05-02 17:49:49 +0200783 cpu->thread_kicked = false;
Blue Swirl296af7c2010-03-29 19:23:50 +0000784}
785
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200786static void qemu_tcg_wait_io_event(void)
Blue Swirl296af7c2010-03-29 19:23:50 +0000787{
Andreas Färber182735e2013-05-29 22:29:20 +0200788 CPUState *cpu;
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200789
Jan Kiszka16400322011-02-09 16:29:37 +0100790 while (all_cpu_threads_idle()) {
Paolo Bonziniab33fcd2011-04-13 10:03:44 +0200791 /* Start accounting real time to the virtual clock if the CPUs
792 are idle. */
Alex Bligh40daca52013-08-21 16:03:02 +0100793 qemu_clock_warp(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini9705fbb2011-03-12 17:44:00 +0100794 qemu_cond_wait(tcg_halt_cond, &qemu_global_mutex);
Jan Kiszka16400322011-02-09 16:29:37 +0100795 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000796
Paolo Bonzini46daff12011-06-09 13:10:24 +0200797 while (iothread_requesting_mutex) {
798 qemu_cond_wait(&qemu_io_proceeded_cond, &qemu_global_mutex);
799 }
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200800
Andreas Färberbdc44642013-06-24 23:50:24 +0200801 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +0200802 qemu_wait_io_event_common(cpu);
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200803 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000804}
805
Andreas Färberfd529e82013-05-26 23:24:55 +0200806static void qemu_kvm_wait_io_event(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +0000807{
Andreas Färbera98ae1d2013-05-26 23:21:08 +0200808 while (cpu_thread_is_idle(cpu)) {
Andreas Färberf5c121b2012-05-03 01:22:49 +0200809 qemu_cond_wait(cpu->halt_cond, &qemu_global_mutex);
Jan Kiszka16400322011-02-09 16:29:37 +0100810 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000811
Andreas Färber290adf32013-01-17 09:30:27 +0100812 qemu_kvm_eat_signals(cpu);
Andreas Färber509a0d72012-05-03 02:18:09 +0200813 qemu_wait_io_event_common(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000814}
815
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100816static void *qemu_kvm_cpu_thread_fn(void *arg)
Blue Swirl296af7c2010-03-29 19:23:50 +0000817{
Andreas Färber48a106b2013-05-27 02:20:39 +0200818 CPUState *cpu = arg;
Jan Kiszka84b49152011-02-01 22:15:50 +0100819 int r;
Blue Swirl296af7c2010-03-29 19:23:50 +0000820
Marcelo Tosatti6164e6d2010-03-23 13:37:13 -0300821 qemu_mutex_lock(&qemu_global_mutex);
Andreas Färber814e6122012-05-02 17:00:37 +0200822 qemu_thread_get_self(cpu->thread);
Andreas Färber9f09e182012-05-03 06:59:07 +0200823 cpu->thread_id = qemu_get_thread_id();
Andreas Färber4917cf42013-05-27 05:17:50 +0200824 current_cpu = cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000825
Andreas Färber504134d2012-12-17 06:38:45 +0100826 r = kvm_init_vcpu(cpu);
Jan Kiszka84b49152011-02-01 22:15:50 +0100827 if (r < 0) {
828 fprintf(stderr, "kvm_init_vcpu failed: %s\n", strerror(-r));
829 exit(1);
830 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000831
Andreas Färber13618e02013-05-26 23:41:00 +0200832 qemu_kvm_init_cpu_signals(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000833
834 /* signal CPU creation */
Andreas Färber61a46212012-05-02 22:49:36 +0200835 cpu->created = true;
Blue Swirl296af7c2010-03-29 19:23:50 +0000836 qemu_cond_signal(&qemu_cpu_cond);
837
Blue Swirl296af7c2010-03-29 19:23:50 +0000838 while (1) {
Andreas Färbera1fcaa72012-05-02 23:42:26 +0200839 if (cpu_can_run(cpu)) {
Andreas Färber1458c362013-05-26 23:46:55 +0200840 r = kvm_cpu_exec(cpu);
Jan Kiszka83f338f2011-02-07 12:19:17 +0100841 if (r == EXCP_DEBUG) {
Andreas Färber91325042013-05-27 02:07:49 +0200842 cpu_handle_guest_debug(cpu);
Jan Kiszka83f338f2011-02-07 12:19:17 +0100843 }
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100844 }
Andreas Färberfd529e82013-05-26 23:24:55 +0200845 qemu_kvm_wait_io_event(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000846 }
847
848 return NULL;
849}
850
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200851static void *qemu_dummy_cpu_thread_fn(void *arg)
852{
853#ifdef _WIN32
854 fprintf(stderr, "qtest is not supported under Windows\n");
855 exit(1);
856#else
Andreas Färber10a90212013-05-27 02:24:35 +0200857 CPUState *cpu = arg;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200858 sigset_t waitset;
859 int r;
860
861 qemu_mutex_lock_iothread();
Andreas Färber814e6122012-05-02 17:00:37 +0200862 qemu_thread_get_self(cpu->thread);
Andreas Färber9f09e182012-05-03 06:59:07 +0200863 cpu->thread_id = qemu_get_thread_id();
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200864
865 sigemptyset(&waitset);
866 sigaddset(&waitset, SIG_IPI);
867
868 /* signal CPU creation */
Andreas Färber61a46212012-05-02 22:49:36 +0200869 cpu->created = true;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200870 qemu_cond_signal(&qemu_cpu_cond);
871
Andreas Färber4917cf42013-05-27 05:17:50 +0200872 current_cpu = cpu;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200873 while (1) {
Andreas Färber4917cf42013-05-27 05:17:50 +0200874 current_cpu = NULL;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200875 qemu_mutex_unlock_iothread();
876 do {
877 int sig;
878 r = sigwait(&waitset, &sig);
879 } while (r == -1 && (errno == EAGAIN || errno == EINTR));
880 if (r == -1) {
881 perror("sigwait");
882 exit(1);
883 }
884 qemu_mutex_lock_iothread();
Andreas Färber4917cf42013-05-27 05:17:50 +0200885 current_cpu = cpu;
Andreas Färber509a0d72012-05-03 02:18:09 +0200886 qemu_wait_io_event_common(cpu);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200887 }
888
889 return NULL;
890#endif
891}
892
Jan Kiszkabdb7ca62011-09-26 09:40:39 +0200893static void tcg_exec_all(void);
894
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100895static void *qemu_tcg_cpu_thread_fn(void *arg)
Blue Swirl296af7c2010-03-29 19:23:50 +0000896{
Andreas Färberc3586ba2012-05-03 01:41:24 +0200897 CPUState *cpu = arg;
Blue Swirl296af7c2010-03-29 19:23:50 +0000898
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100899 qemu_tcg_init_cpu_signals();
Andreas Färber814e6122012-05-02 17:00:37 +0200900 qemu_thread_get_self(cpu->thread);
Blue Swirl296af7c2010-03-29 19:23:50 +0000901
Blue Swirl296af7c2010-03-29 19:23:50 +0000902 qemu_mutex_lock(&qemu_global_mutex);
Andreas Färber38fcbd32013-07-07 19:50:23 +0200903 CPU_FOREACH(cpu) {
904 cpu->thread_id = qemu_get_thread_id();
905 cpu->created = true;
906 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000907 qemu_cond_signal(&qemu_cpu_cond);
908
Jan Kiszkafa7d1862011-08-22 18:35:25 +0200909 /* wait for initial kick-off after machine start */
Andreas Färberbdc44642013-06-24 23:50:24 +0200910 while (QTAILQ_FIRST(&cpus)->stopped) {
Jan Kiszkafa7d1862011-08-22 18:35:25 +0200911 qemu_cond_wait(tcg_halt_cond, &qemu_global_mutex);
Jan Kiszka8e564b42012-02-17 18:31:15 +0100912
913 /* process any pending work */
Andreas Färberbdc44642013-06-24 23:50:24 +0200914 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +0200915 qemu_wait_io_event_common(cpu);
Jan Kiszka8e564b42012-02-17 18:31:15 +0100916 }
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100917 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000918
919 while (1) {
Jan Kiszkabdb7ca62011-09-26 09:40:39 +0200920 tcg_exec_all();
Alex Blighac70aaf2013-08-21 16:02:57 +0100921
922 if (use_icount) {
Alex Bligh40daca52013-08-21 16:03:02 +0100923 int64_t deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
Alex Blighac70aaf2013-08-21 16:02:57 +0100924
925 if (deadline == 0) {
Alex Bligh40daca52013-08-21 16:03:02 +0100926 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
Alex Blighac70aaf2013-08-21 16:02:57 +0100927 }
Paolo Bonzini3b2319a2011-04-13 10:03:43 +0200928 }
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200929 qemu_tcg_wait_io_event();
Blue Swirl296af7c2010-03-29 19:23:50 +0000930 }
931
932 return NULL;
933}
934
Andreas Färber2ff09a42012-05-03 00:23:30 +0200935static void qemu_cpu_kick_thread(CPUState *cpu)
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100936{
937#ifndef _WIN32
938 int err;
939
Andreas Färber814e6122012-05-02 17:00:37 +0200940 err = pthread_kill(cpu->thread->thread, SIG_IPI);
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100941 if (err) {
942 fprintf(stderr, "qemu:%s: %s", __func__, strerror(err));
943 exit(1);
944 }
945#else /* _WIN32 */
Andreas Färber60e82572012-05-02 22:23:49 +0200946 if (!qemu_cpu_is_self(cpu)) {
Olivier Hainqueed9164a2013-04-09 18:06:53 +0200947 CONTEXT tcgContext;
948
949 if (SuspendThread(cpu->hThread) == (DWORD)-1) {
Stefan Weil7f1721d2013-04-13 22:45:50 +0200950 fprintf(stderr, "qemu:%s: GetLastError:%lu\n", __func__,
Olivier Hainqueed9164a2013-04-09 18:06:53 +0200951 GetLastError());
952 exit(1);
953 }
954
955 /* On multi-core systems, we are not sure that the thread is actually
956 * suspended until we can get the context.
957 */
958 tcgContext.ContextFlags = CONTEXT_CONTROL;
959 while (GetThreadContext(cpu->hThread, &tcgContext) != 0) {
960 continue;
961 }
962
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100963 cpu_signal(0);
Olivier Hainqueed9164a2013-04-09 18:06:53 +0200964
965 if (ResumeThread(cpu->hThread) == (DWORD)-1) {
Stefan Weil7f1721d2013-04-13 22:45:50 +0200966 fprintf(stderr, "qemu:%s: GetLastError:%lu\n", __func__,
Olivier Hainqueed9164a2013-04-09 18:06:53 +0200967 GetLastError());
968 exit(1);
969 }
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100970 }
971#endif
972}
973
Andreas Färberc08d7422012-05-03 04:34:15 +0200974void qemu_cpu_kick(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +0000975{
Andreas Färberf5c121b2012-05-03 01:22:49 +0200976 qemu_cond_broadcast(cpu->halt_cond);
Andreas Färber216fc9a2012-05-02 17:49:49 +0200977 if (!tcg_enabled() && !cpu->thread_kicked) {
Andreas Färber2ff09a42012-05-03 00:23:30 +0200978 qemu_cpu_kick_thread(cpu);
Andreas Färber216fc9a2012-05-02 17:49:49 +0200979 cpu->thread_kicked = true;
Jan Kiszkaaa2c3642011-02-01 22:15:42 +0100980 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000981}
982
Jan Kiszka46d62fa2011-02-01 22:15:59 +0100983void qemu_cpu_kick_self(void)
984{
Paolo Bonzinib55c22c2011-03-12 17:44:07 +0100985#ifndef _WIN32
Andreas Färber4917cf42013-05-27 05:17:50 +0200986 assert(current_cpu);
Jan Kiszka46d62fa2011-02-01 22:15:59 +0100987
Andreas Färber4917cf42013-05-27 05:17:50 +0200988 if (!current_cpu->thread_kicked) {
989 qemu_cpu_kick_thread(current_cpu);
990 current_cpu->thread_kicked = true;
Jan Kiszka46d62fa2011-02-01 22:15:59 +0100991 }
Paolo Bonzinib55c22c2011-03-12 17:44:07 +0100992#else
993 abort();
994#endif
Blue Swirl296af7c2010-03-29 19:23:50 +0000995}
996
Andreas Färber60e82572012-05-02 22:23:49 +0200997bool qemu_cpu_is_self(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +0000998{
Andreas Färber814e6122012-05-02 17:00:37 +0200999 return qemu_thread_is_self(cpu->thread);
Blue Swirl296af7c2010-03-29 19:23:50 +00001000}
1001
Juan Quintelaaa723c22012-09-18 16:30:11 +02001002static bool qemu_in_vcpu_thread(void)
1003{
Andreas Färber4917cf42013-05-27 05:17:50 +02001004 return current_cpu && qemu_cpu_is_self(current_cpu);
Juan Quintelaaa723c22012-09-18 16:30:11 +02001005}
1006
Blue Swirl296af7c2010-03-29 19:23:50 +00001007void qemu_mutex_lock_iothread(void)
1008{
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001009 if (!tcg_enabled()) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001010 qemu_mutex_lock(&qemu_global_mutex);
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -03001011 } else {
Paolo Bonzini46daff12011-06-09 13:10:24 +02001012 iothread_requesting_mutex = true;
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -03001013 if (qemu_mutex_trylock(&qemu_global_mutex)) {
Andreas Färber182735e2013-05-29 22:29:20 +02001014 qemu_cpu_kick_thread(first_cpu);
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -03001015 qemu_mutex_lock(&qemu_global_mutex);
1016 }
Paolo Bonzini46daff12011-06-09 13:10:24 +02001017 iothread_requesting_mutex = false;
1018 qemu_cond_broadcast(&qemu_io_proceeded_cond);
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -03001019 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001020}
1021
1022void qemu_mutex_unlock_iothread(void)
1023{
1024 qemu_mutex_unlock(&qemu_global_mutex);
1025}
1026
1027static int all_vcpus_paused(void)
1028{
Andreas Färberbdc44642013-06-24 23:50:24 +02001029 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +00001030
Andreas Färberbdc44642013-06-24 23:50:24 +02001031 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +02001032 if (!cpu->stopped) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001033 return 0;
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001034 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001035 }
1036
1037 return 1;
1038}
1039
1040void pause_all_vcpus(void)
1041{
Andreas Färberbdc44642013-06-24 23:50:24 +02001042 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +00001043
Alex Bligh40daca52013-08-21 16:03:02 +01001044 qemu_clock_enable(QEMU_CLOCK_VIRTUAL, false);
Andreas Färberbdc44642013-06-24 23:50:24 +02001045 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +02001046 cpu->stop = true;
1047 qemu_cpu_kick(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +00001048 }
1049
Juan Quintelaaa723c22012-09-18 16:30:11 +02001050 if (qemu_in_vcpu_thread()) {
Jan Kiszkad798e972012-02-17 18:31:16 +01001051 cpu_stop_current();
1052 if (!kvm_enabled()) {
Andreas Färberbdc44642013-06-24 23:50:24 +02001053 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +02001054 cpu->stop = false;
1055 cpu->stopped = true;
Jan Kiszkad798e972012-02-17 18:31:16 +01001056 }
1057 return;
1058 }
1059 }
1060
Blue Swirl296af7c2010-03-29 19:23:50 +00001061 while (!all_vcpus_paused()) {
Paolo Bonzinibe7d6c52011-03-12 17:44:02 +01001062 qemu_cond_wait(&qemu_pause_cond, &qemu_global_mutex);
Andreas Färberbdc44642013-06-24 23:50:24 +02001063 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +02001064 qemu_cpu_kick(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +00001065 }
1066 }
1067}
1068
Igor Mammedov29936832013-04-23 10:29:37 +02001069void cpu_resume(CPUState *cpu)
1070{
1071 cpu->stop = false;
1072 cpu->stopped = false;
1073 qemu_cpu_kick(cpu);
1074}
1075
Blue Swirl296af7c2010-03-29 19:23:50 +00001076void resume_all_vcpus(void)
1077{
Andreas Färberbdc44642013-06-24 23:50:24 +02001078 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +00001079
Alex Bligh40daca52013-08-21 16:03:02 +01001080 qemu_clock_enable(QEMU_CLOCK_VIRTUAL, true);
Andreas Färberbdc44642013-06-24 23:50:24 +02001081 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +02001082 cpu_resume(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +00001083 }
1084}
1085
Andreas Färbere5ab30a2012-05-03 01:50:44 +02001086static void qemu_tcg_init_vcpu(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +00001087{
Blue Swirl296af7c2010-03-29 19:23:50 +00001088 /* share a single thread for all cpus with TCG */
1089 if (!tcg_cpu_thread) {
Andreas Färber814e6122012-05-02 17:00:37 +02001090 cpu->thread = g_malloc0(sizeof(QemuThread));
Andreas Färberf5c121b2012-05-03 01:22:49 +02001091 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
1092 qemu_cond_init(cpu->halt_cond);
1093 tcg_halt_cond = cpu->halt_cond;
Andreas Färberc3586ba2012-05-03 01:41:24 +02001094 qemu_thread_create(cpu->thread, qemu_tcg_cpu_thread_fn, cpu,
Paolo Bonzini1ecf47b2011-12-13 13:43:52 +01001095 QEMU_THREAD_JOINABLE);
1096#ifdef _WIN32
Andreas Färber814e6122012-05-02 17:00:37 +02001097 cpu->hThread = qemu_thread_get_handle(cpu->thread);
Paolo Bonzini1ecf47b2011-12-13 13:43:52 +01001098#endif
Andreas Färber61a46212012-05-02 22:49:36 +02001099 while (!cpu->created) {
Paolo Bonzini18a85722011-03-12 17:44:03 +01001100 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001101 }
Andreas Färber814e6122012-05-02 17:00:37 +02001102 tcg_cpu_thread = cpu->thread;
Blue Swirl296af7c2010-03-29 19:23:50 +00001103 } else {
Andreas Färber814e6122012-05-02 17:00:37 +02001104 cpu->thread = tcg_cpu_thread;
Andreas Färberf5c121b2012-05-03 01:22:49 +02001105 cpu->halt_cond = tcg_halt_cond;
Blue Swirl296af7c2010-03-29 19:23:50 +00001106 }
1107}
1108
Andreas Färber48a106b2013-05-27 02:20:39 +02001109static void qemu_kvm_start_vcpu(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +00001110{
Andreas Färber814e6122012-05-02 17:00:37 +02001111 cpu->thread = g_malloc0(sizeof(QemuThread));
Andreas Färberf5c121b2012-05-03 01:22:49 +02001112 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
1113 qemu_cond_init(cpu->halt_cond);
Andreas Färber48a106b2013-05-27 02:20:39 +02001114 qemu_thread_create(cpu->thread, qemu_kvm_cpu_thread_fn, cpu,
Paolo Bonzini1ecf47b2011-12-13 13:43:52 +01001115 QEMU_THREAD_JOINABLE);
Andreas Färber61a46212012-05-02 22:49:36 +02001116 while (!cpu->created) {
Paolo Bonzini18a85722011-03-12 17:44:03 +01001117 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001118 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001119}
1120
Andreas Färber10a90212013-05-27 02:24:35 +02001121static void qemu_dummy_start_vcpu(CPUState *cpu)
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001122{
Andreas Färber814e6122012-05-02 17:00:37 +02001123 cpu->thread = g_malloc0(sizeof(QemuThread));
Andreas Färberf5c121b2012-05-03 01:22:49 +02001124 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
1125 qemu_cond_init(cpu->halt_cond);
Andreas Färber10a90212013-05-27 02:24:35 +02001126 qemu_thread_create(cpu->thread, qemu_dummy_cpu_thread_fn, cpu,
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001127 QEMU_THREAD_JOINABLE);
Andreas Färber61a46212012-05-02 22:49:36 +02001128 while (!cpu->created) {
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001129 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
1130 }
1131}
1132
Andreas Färberc643bed2013-05-27 03:23:24 +02001133void qemu_init_vcpu(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +00001134{
Andreas Färberce3960e2012-12-17 03:27:07 +01001135 cpu->nr_cores = smp_cores;
1136 cpu->nr_threads = smp_threads;
Andreas Färberf324e762012-05-02 23:26:21 +02001137 cpu->stopped = true;
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001138 if (kvm_enabled()) {
Andreas Färber48a106b2013-05-27 02:20:39 +02001139 qemu_kvm_start_vcpu(cpu);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001140 } else if (tcg_enabled()) {
Andreas Färbere5ab30a2012-05-03 01:50:44 +02001141 qemu_tcg_init_vcpu(cpu);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001142 } else {
Andreas Färber10a90212013-05-27 02:24:35 +02001143 qemu_dummy_start_vcpu(cpu);
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001144 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001145}
1146
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001147void cpu_stop_current(void)
Blue Swirl296af7c2010-03-29 19:23:50 +00001148{
Andreas Färber4917cf42013-05-27 05:17:50 +02001149 if (current_cpu) {
1150 current_cpu->stop = false;
1151 current_cpu->stopped = true;
1152 cpu_exit(current_cpu);
Paolo Bonzini67bb1722011-03-12 17:43:59 +01001153 qemu_cond_signal(&qemu_pause_cond);
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001154 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001155}
1156
Kevin Wolf56983462013-07-05 13:49:54 +02001157int vm_stop(RunState state)
Blue Swirl296af7c2010-03-29 19:23:50 +00001158{
Juan Quintelaaa723c22012-09-18 16:30:11 +02001159 if (qemu_in_vcpu_thread()) {
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001160 qemu_system_vmstop_request(state);
Blue Swirl296af7c2010-03-29 19:23:50 +00001161 /*
1162 * FIXME: should not return to device code in case
1163 * vm_stop() has been requested.
1164 */
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001165 cpu_stop_current();
Kevin Wolf56983462013-07-05 13:49:54 +02001166 return 0;
Blue Swirl296af7c2010-03-29 19:23:50 +00001167 }
Kevin Wolf56983462013-07-05 13:49:54 +02001168
1169 return do_vm_stop(state);
Blue Swirl296af7c2010-03-29 19:23:50 +00001170}
1171
Luiz Capitulino8a9236f2011-10-14 11:18:09 -03001172/* does a state transition even if the VM is already stopped,
1173 current state is forgotten forever */
Kevin Wolf56983462013-07-05 13:49:54 +02001174int vm_stop_force_state(RunState state)
Luiz Capitulino8a9236f2011-10-14 11:18:09 -03001175{
1176 if (runstate_is_running()) {
Kevin Wolf56983462013-07-05 13:49:54 +02001177 return vm_stop(state);
Luiz Capitulino8a9236f2011-10-14 11:18:09 -03001178 } else {
1179 runstate_set(state);
Kevin Wolf594a45c2013-07-18 14:52:19 +02001180 /* Make sure to return an error if the flush in a previous vm_stop()
1181 * failed. */
1182 return bdrv_flush_all();
Luiz Capitulino8a9236f2011-10-14 11:18:09 -03001183 }
1184}
1185
Andreas Färber9349b4f2012-03-14 01:38:32 +01001186static int tcg_cpu_exec(CPUArchState *env)
Blue Swirl296af7c2010-03-29 19:23:50 +00001187{
1188 int ret;
1189#ifdef CONFIG_PROFILER
1190 int64_t ti;
1191#endif
1192
1193#ifdef CONFIG_PROFILER
1194 ti = profile_getclock();
1195#endif
1196 if (use_icount) {
1197 int64_t count;
Alex Blighac70aaf2013-08-21 16:02:57 +01001198 int64_t deadline;
Blue Swirl296af7c2010-03-29 19:23:50 +00001199 int decr;
1200 qemu_icount -= (env->icount_decr.u16.low + env->icount_extra);
1201 env->icount_decr.u16.low = 0;
1202 env->icount_extra = 0;
Alex Bligh40daca52013-08-21 16:03:02 +01001203 deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
Alex Blighac70aaf2013-08-21 16:02:57 +01001204
1205 /* Maintain prior (possibly buggy) behaviour where if no deadline
Alex Bligh40daca52013-08-21 16:03:02 +01001206 * was set (as there is no QEMU_CLOCK_VIRTUAL timer) or it is more than
Alex Blighac70aaf2013-08-21 16:02:57 +01001207 * INT32_MAX nanoseconds ahead, we still use INT32_MAX
1208 * nanoseconds.
1209 */
1210 if ((deadline < 0) || (deadline > INT32_MAX)) {
1211 deadline = INT32_MAX;
1212 }
1213
1214 count = qemu_icount_round(deadline);
Blue Swirl296af7c2010-03-29 19:23:50 +00001215 qemu_icount += count;
1216 decr = (count > 0xffff) ? 0xffff : count;
1217 count -= decr;
1218 env->icount_decr.u16.low = decr;
1219 env->icount_extra = count;
1220 }
1221 ret = cpu_exec(env);
1222#ifdef CONFIG_PROFILER
1223 qemu_time += profile_getclock() - ti;
1224#endif
1225 if (use_icount) {
1226 /* Fold pending instructions back into the
1227 instruction counter, and clear the interrupt flag. */
1228 qemu_icount -= (env->icount_decr.u16.low
1229 + env->icount_extra);
1230 env->icount_decr.u32 = 0;
1231 env->icount_extra = 0;
1232 }
1233 return ret;
1234}
1235
Jan Kiszkabdb7ca62011-09-26 09:40:39 +02001236static void tcg_exec_all(void)
Blue Swirl296af7c2010-03-29 19:23:50 +00001237{
Jan Kiszka9a360852011-02-01 22:15:55 +01001238 int r;
1239
Alex Bligh40daca52013-08-21 16:03:02 +01001240 /* Account partial waits to QEMU_CLOCK_VIRTUAL. */
1241 qemu_clock_warp(QEMU_CLOCK_VIRTUAL);
Paolo Bonziniab33fcd2011-04-13 10:03:44 +02001242
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001243 if (next_cpu == NULL) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001244 next_cpu = first_cpu;
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001245 }
Andreas Färberbdc44642013-06-24 23:50:24 +02001246 for (; next_cpu != NULL && !exit_request; next_cpu = CPU_NEXT(next_cpu)) {
Andreas Färber182735e2013-05-29 22:29:20 +02001247 CPUState *cpu = next_cpu;
1248 CPUArchState *env = cpu->env_ptr;
Blue Swirl296af7c2010-03-29 19:23:50 +00001249
Alex Bligh40daca52013-08-21 16:03:02 +01001250 qemu_clock_enable(QEMU_CLOCK_VIRTUAL,
Andreas Färbered2803d2013-06-21 20:20:45 +02001251 (cpu->singlestep_enabled & SSTEP_NOTIMER) == 0);
Blue Swirl296af7c2010-03-29 19:23:50 +00001252
Andreas Färbera1fcaa72012-05-02 23:42:26 +02001253 if (cpu_can_run(cpu)) {
Jan Kiszkabdb7ca62011-09-26 09:40:39 +02001254 r = tcg_cpu_exec(env);
Jan Kiszka9a360852011-02-01 22:15:55 +01001255 if (r == EXCP_DEBUG) {
Andreas Färber91325042013-05-27 02:07:49 +02001256 cpu_handle_guest_debug(cpu);
Jan Kiszka3c638d02010-06-25 16:56:56 +02001257 break;
1258 }
Andreas Färberf324e762012-05-02 23:26:21 +02001259 } else if (cpu->stop || cpu->stopped) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001260 break;
1261 }
1262 }
Jan Kiszkac629a4b2010-06-25 16:56:52 +02001263 exit_request = 0;
Blue Swirl296af7c2010-03-29 19:23:50 +00001264}
1265
1266void set_numa_modes(void)
1267{
Andreas Färber1b1ed8d2012-12-17 04:22:03 +01001268 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +00001269 int i;
1270
Andreas Färberbdc44642013-06-24 23:50:24 +02001271 CPU_FOREACH(cpu) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001272 for (i = 0; i < nb_numa_nodes; i++) {
Andreas Färber55e5c282012-12-17 06:18:02 +01001273 if (test_bit(cpu->cpu_index, node_cpumask[i])) {
Andreas Färber1b1ed8d2012-12-17 04:22:03 +01001274 cpu->numa_node = i;
Blue Swirl296af7c2010-03-29 19:23:50 +00001275 }
1276 }
1277 }
1278}
1279
Stefan Weil9a78eea2010-10-22 23:03:33 +02001280void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg)
Blue Swirl262353c2010-05-04 19:55:35 +00001281{
1282 /* XXX: implement xxx_cpu_list for targets that still miss it */
Peter Maydelle916cbf2012-09-05 17:41:08 -03001283#if defined(cpu_list)
1284 cpu_list(f, cpu_fprintf);
Blue Swirl262353c2010-05-04 19:55:35 +00001285#endif
1286}
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001287
1288CpuInfoList *qmp_query_cpus(Error **errp)
1289{
1290 CpuInfoList *head = NULL, *cur_item = NULL;
Andreas Färber182735e2013-05-29 22:29:20 +02001291 CPUState *cpu;
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001292
Andreas Färberbdc44642013-06-24 23:50:24 +02001293 CPU_FOREACH(cpu) {
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001294 CpuInfoList *info;
Andreas Färber182735e2013-05-29 22:29:20 +02001295#if defined(TARGET_I386)
1296 X86CPU *x86_cpu = X86_CPU(cpu);
1297 CPUX86State *env = &x86_cpu->env;
1298#elif defined(TARGET_PPC)
1299 PowerPCCPU *ppc_cpu = POWERPC_CPU(cpu);
1300 CPUPPCState *env = &ppc_cpu->env;
1301#elif defined(TARGET_SPARC)
1302 SPARCCPU *sparc_cpu = SPARC_CPU(cpu);
1303 CPUSPARCState *env = &sparc_cpu->env;
1304#elif defined(TARGET_MIPS)
1305 MIPSCPU *mips_cpu = MIPS_CPU(cpu);
1306 CPUMIPSState *env = &mips_cpu->env;
1307#endif
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001308
Andreas Färbercb446ec2013-05-01 14:24:52 +02001309 cpu_synchronize_state(cpu);
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001310
1311 info = g_malloc0(sizeof(*info));
1312 info->value = g_malloc0(sizeof(*info->value));
Andreas Färber55e5c282012-12-17 06:18:02 +01001313 info->value->CPU = cpu->cpu_index;
Andreas Färber182735e2013-05-29 22:29:20 +02001314 info->value->current = (cpu == first_cpu);
Andreas Färber259186a2013-01-17 18:51:17 +01001315 info->value->halted = cpu->halted;
Andreas Färber9f09e182012-05-03 06:59:07 +02001316 info->value->thread_id = cpu->thread_id;
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001317#if defined(TARGET_I386)
1318 info->value->has_pc = true;
1319 info->value->pc = env->eip + env->segs[R_CS].base;
1320#elif defined(TARGET_PPC)
1321 info->value->has_nip = true;
1322 info->value->nip = env->nip;
1323#elif defined(TARGET_SPARC)
1324 info->value->has_pc = true;
1325 info->value->pc = env->pc;
1326 info->value->has_npc = true;
1327 info->value->npc = env->npc;
1328#elif defined(TARGET_MIPS)
1329 info->value->has_PC = true;
1330 info->value->PC = env->active_tc.PC;
1331#endif
1332
1333 /* XXX: waiting for the qapi to support GSList */
1334 if (!cur_item) {
1335 head = cur_item = info;
1336 } else {
1337 cur_item->next = info;
1338 cur_item = info;
1339 }
1340 }
1341
1342 return head;
1343}
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001344
1345void qmp_memsave(int64_t addr, int64_t size, const char *filename,
1346 bool has_cpu, int64_t cpu_index, Error **errp)
1347{
1348 FILE *f;
1349 uint32_t l;
Andreas Färber55e5c282012-12-17 06:18:02 +01001350 CPUState *cpu;
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001351 uint8_t buf[1024];
1352
1353 if (!has_cpu) {
1354 cpu_index = 0;
1355 }
1356
Andreas Färber151d1322013-02-15 15:41:49 +01001357 cpu = qemu_get_cpu(cpu_index);
1358 if (cpu == NULL) {
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001359 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
1360 "a CPU number");
1361 return;
1362 }
1363
1364 f = fopen(filename, "wb");
1365 if (!f) {
Luiz Capitulino618da852013-06-07 14:35:06 -04001366 error_setg_file_open(errp, errno, filename);
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001367 return;
1368 }
1369
1370 while (size != 0) {
1371 l = sizeof(buf);
1372 if (l > size)
1373 l = size;
Andreas Färberf17ec442013-06-29 19:40:58 +02001374 cpu_memory_rw_debug(cpu, addr, buf, l, 0);
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001375 if (fwrite(buf, 1, l, f) != l) {
1376 error_set(errp, QERR_IO_ERROR);
1377 goto exit;
1378 }
1379 addr += l;
1380 size -= l;
1381 }
1382
1383exit:
1384 fclose(f);
1385}
Luiz Capitulino6d3962b2011-11-22 17:26:46 -02001386
1387void qmp_pmemsave(int64_t addr, int64_t size, const char *filename,
1388 Error **errp)
1389{
1390 FILE *f;
1391 uint32_t l;
1392 uint8_t buf[1024];
1393
1394 f = fopen(filename, "wb");
1395 if (!f) {
Luiz Capitulino618da852013-06-07 14:35:06 -04001396 error_setg_file_open(errp, errno, filename);
Luiz Capitulino6d3962b2011-11-22 17:26:46 -02001397 return;
1398 }
1399
1400 while (size != 0) {
1401 l = sizeof(buf);
1402 if (l > size)
1403 l = size;
1404 cpu_physical_memory_rw(addr, buf, l, 0);
1405 if (fwrite(buf, 1, l, f) != l) {
1406 error_set(errp, QERR_IO_ERROR);
1407 goto exit;
1408 }
1409 addr += l;
1410 size -= l;
1411 }
1412
1413exit:
1414 fclose(f);
1415}
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001416
1417void qmp_inject_nmi(Error **errp)
1418{
1419#if defined(TARGET_I386)
Andreas Färber182735e2013-05-29 22:29:20 +02001420 CPUState *cs;
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001421
Andreas Färberbdc44642013-06-24 23:50:24 +02001422 CPU_FOREACH(cs) {
Andreas Färber182735e2013-05-29 22:29:20 +02001423 X86CPU *cpu = X86_CPU(cs);
1424 CPUX86State *env = &cpu->env;
1425
Jan Kiszka02c09192011-10-18 00:00:06 +08001426 if (!env->apic_state) {
Andreas Färber182735e2013-05-29 22:29:20 +02001427 cpu_interrupt(cs, CPU_INTERRUPT_NMI);
Jan Kiszka02c09192011-10-18 00:00:06 +08001428 } else {
1429 apic_deliver_nmi(env->apic_state);
1430 }
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001431 }
Eugene (jno) Dvurechenski7f7f9752012-12-05 15:50:07 +01001432#elif defined(TARGET_S390X)
1433 CPUState *cs;
1434 S390CPU *cpu;
1435
Andreas Färberbdc44642013-06-24 23:50:24 +02001436 CPU_FOREACH(cs) {
Eugene (jno) Dvurechenski7f7f9752012-12-05 15:50:07 +01001437 cpu = S390_CPU(cs);
1438 if (cpu->env.cpu_num == monitor_get_cpu_index()) {
1439 if (s390_cpu_restart(S390_CPU(cs)) == -1) {
1440 error_set(errp, QERR_UNSUPPORTED);
1441 return;
1442 }
1443 break;
1444 }
1445 }
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001446#else
1447 error_set(errp, QERR_UNSUPPORTED);
1448#endif
1449}