blob: 5e7f2cf3cfcdf2594bb6711b45cb1a243fd2cab1 [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"
Wenchao Xiaa4e15de2014-06-18 08:43:36 +020029#include "qapi/qmp/qerror.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010030#include "sysemu/sysemu.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010031#include "exec/gdbstub.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010032#include "sysemu/dma.h"
33#include "sysemu/kvm.h"
Luiz Capitulinode0b36b2011-09-21 16:38:35 -030034#include "qmp-commands.h"
Blue Swirl296af7c2010-03-29 19:23:50 +000035
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010036#include "qemu/thread.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010037#include "sysemu/cpus.h"
38#include "sysemu/qtest.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010039#include "qemu/main-loop.h"
40#include "qemu/bitmap.h"
Liu Ping Fancb365642013-09-25 14:20:58 +080041#include "qemu/seqlock.h"
Wenchao Xiaa4e15de2014-06-18 08:43:36 +020042#include "qapi-event.h"
Jan Kiszka0ff0fc12011-06-23 10:15:55 +020043
44#ifndef _WIN32
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010045#include "qemu/compatfd.h"
Jan Kiszka0ff0fc12011-06-23 10:15:55 +020046#endif
Blue Swirl296af7c2010-03-29 19:23:50 +000047
Jan Kiszka6d9cb732011-02-01 22:15:58 +010048#ifdef CONFIG_LINUX
49
50#include <sys/prctl.h>
51
Marcelo Tosattic0532a72010-10-11 15:31:21 -030052#ifndef PR_MCE_KILL
53#define PR_MCE_KILL 33
54#endif
55
Jan Kiszka6d9cb732011-02-01 22:15:58 +010056#ifndef PR_MCE_KILL_SET
57#define PR_MCE_KILL_SET 1
58#endif
59
60#ifndef PR_MCE_KILL_EARLY
61#define PR_MCE_KILL_EARLY 1
62#endif
63
64#endif /* CONFIG_LINUX */
65
Andreas Färber182735e2013-05-29 22:29:20 +020066static CPUState *next_cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +000067
Tiejun Chen321bc0b2013-08-02 09:43:09 +080068bool cpu_is_stopped(CPUState *cpu)
69{
70 return cpu->stopped || !runstate_is_running();
71}
72
Andreas Färbera98ae1d2013-05-26 23:21:08 +020073static bool cpu_thread_is_idle(CPUState *cpu)
Peter Maydellac873f12012-07-19 16:52:27 +010074{
Andreas Färberc64ca812012-05-03 02:11:45 +020075 if (cpu->stop || cpu->queued_work_first) {
Peter Maydellac873f12012-07-19 16:52:27 +010076 return false;
77 }
Tiejun Chen321bc0b2013-08-02 09:43:09 +080078 if (cpu_is_stopped(cpu)) {
Peter Maydellac873f12012-07-19 16:52:27 +010079 return true;
80 }
Andreas Färber8c2e1b02013-08-25 18:53:55 +020081 if (!cpu->halted || cpu_has_work(cpu) ||
Alexander Graf215e79c2013-04-24 22:24:12 +020082 kvm_halt_in_kernel()) {
Peter Maydellac873f12012-07-19 16:52:27 +010083 return false;
84 }
85 return true;
86}
87
88static bool all_cpu_threads_idle(void)
89{
Andreas Färber182735e2013-05-29 22:29:20 +020090 CPUState *cpu;
Peter Maydellac873f12012-07-19 16:52:27 +010091
Andreas Färberbdc44642013-06-24 23:50:24 +020092 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +020093 if (!cpu_thread_is_idle(cpu)) {
Peter Maydellac873f12012-07-19 16:52:27 +010094 return false;
95 }
96 }
97 return true;
98}
99
Blue Swirl296af7c2010-03-29 19:23:50 +0000100/***********************************************************/
Paolo Bonzini946fb272011-09-12 13:57:37 +0200101/* guest cycle counter */
102
Paolo Bonzinia3270e12013-10-07 17:18:15 +0200103/* Protected by TimersState seqlock */
104
105/* Compensate for varying guest execution speed. */
106static int64_t qemu_icount_bias;
107static int64_t vm_clock_warp_start;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200108/* Conversion factor from emulated instructions to virtual clock ticks. */
109static int icount_time_shift;
110/* Arbitrarily pick 1MIPS as the minimum allowable speed. */
111#define MAX_ICOUNT_SHIFT 10
Paolo Bonzinia3270e12013-10-07 17:18:15 +0200112
113/* Only written by TCG thread */
114static int64_t qemu_icount;
115
Paolo Bonzini946fb272011-09-12 13:57:37 +0200116static QEMUTimer *icount_rt_timer;
117static QEMUTimer *icount_vm_timer;
118static QEMUTimer *icount_warp_timer;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200119
120typedef struct TimersState {
Liu Ping Fancb365642013-09-25 14:20:58 +0800121 /* Protected by BQL. */
Paolo Bonzini946fb272011-09-12 13:57:37 +0200122 int64_t cpu_ticks_prev;
123 int64_t cpu_ticks_offset;
Liu Ping Fancb365642013-09-25 14:20:58 +0800124
125 /* cpu_clock_offset can be read out of BQL, so protect it with
126 * this lock.
127 */
128 QemuSeqLock vm_clock_seqlock;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200129 int64_t cpu_clock_offset;
130 int32_t cpu_ticks_enabled;
131 int64_t dummy;
132} TimersState;
133
Liu Ping Fand9cd4002013-07-21 08:43:00 +0000134static TimersState timers_state;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200135
136/* Return the virtual CPU time, based on the instruction counter. */
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200137static int64_t cpu_get_icount_locked(void)
Paolo Bonzini946fb272011-09-12 13:57:37 +0200138{
139 int64_t icount;
Andreas Färber4917cf42013-05-27 05:17:50 +0200140 CPUState *cpu = current_cpu;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200141
142 icount = qemu_icount;
Andreas Färber4917cf42013-05-27 05:17:50 +0200143 if (cpu) {
Andreas Färber99df7dc2013-08-26 05:15:23 +0200144 if (!cpu_can_do_io(cpu)) {
Paolo Bonzini946fb272011-09-12 13:57:37 +0200145 fprintf(stderr, "Bad clock read\n");
146 }
Andreas Färber28ecfd72013-08-26 05:51:49 +0200147 icount -= (cpu->icount_decr.u16.low + cpu->icount_extra);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200148 }
149 return qemu_icount_bias + (icount << icount_time_shift);
150}
151
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200152int64_t cpu_get_icount(void)
153{
154 int64_t icount;
155 unsigned start;
156
157 do {
158 start = seqlock_read_begin(&timers_state.vm_clock_seqlock);
159 icount = cpu_get_icount_locked();
160 } while (seqlock_read_retry(&timers_state.vm_clock_seqlock, start));
161
162 return icount;
163}
164
Paolo Bonzini946fb272011-09-12 13:57:37 +0200165/* return the host CPU cycle counter and handle stop/restart */
Liu Ping Fancb365642013-09-25 14:20:58 +0800166/* Caller must hold the BQL */
Paolo Bonzini946fb272011-09-12 13:57:37 +0200167int64_t cpu_get_ticks(void)
168{
Paolo Bonzini5f3e3102013-10-28 17:32:18 +0100169 int64_t ticks;
170
Paolo Bonzini946fb272011-09-12 13:57:37 +0200171 if (use_icount) {
172 return cpu_get_icount();
173 }
Paolo Bonzini5f3e3102013-10-28 17:32:18 +0100174
175 ticks = timers_state.cpu_ticks_offset;
176 if (timers_state.cpu_ticks_enabled) {
177 ticks += cpu_get_real_ticks();
Paolo Bonzini946fb272011-09-12 13:57:37 +0200178 }
Paolo Bonzini5f3e3102013-10-28 17:32:18 +0100179
180 if (timers_state.cpu_ticks_prev > ticks) {
181 /* Note: non increasing ticks may happen if the host uses
182 software suspend */
183 timers_state.cpu_ticks_offset += timers_state.cpu_ticks_prev - ticks;
184 ticks = timers_state.cpu_ticks_prev;
185 }
186
187 timers_state.cpu_ticks_prev = ticks;
188 return ticks;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200189}
190
Liu Ping Fancb365642013-09-25 14:20:58 +0800191static int64_t cpu_get_clock_locked(void)
192{
Paolo Bonzini5f3e3102013-10-28 17:32:18 +0100193 int64_t ticks;
Liu Ping Fancb365642013-09-25 14:20:58 +0800194
Paolo Bonzini5f3e3102013-10-28 17:32:18 +0100195 ticks = timers_state.cpu_clock_offset;
196 if (timers_state.cpu_ticks_enabled) {
197 ticks += get_clock();
Liu Ping Fancb365642013-09-25 14:20:58 +0800198 }
199
Paolo Bonzini5f3e3102013-10-28 17:32:18 +0100200 return ticks;
Liu Ping Fancb365642013-09-25 14:20:58 +0800201}
202
Paolo Bonzini946fb272011-09-12 13:57:37 +0200203/* return the host CPU monotonic timer and handle stop/restart */
204int64_t cpu_get_clock(void)
205{
206 int64_t ti;
Liu Ping Fancb365642013-09-25 14:20:58 +0800207 unsigned start;
208
209 do {
210 start = seqlock_read_begin(&timers_state.vm_clock_seqlock);
211 ti = cpu_get_clock_locked();
212 } while (seqlock_read_retry(&timers_state.vm_clock_seqlock, start));
213
214 return ti;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200215}
216
Liu Ping Fancb365642013-09-25 14:20:58 +0800217/* enable cpu_get_ticks()
218 * Caller must hold BQL which server as mutex for vm_clock_seqlock.
219 */
Paolo Bonzini946fb272011-09-12 13:57:37 +0200220void cpu_enable_ticks(void)
221{
Liu Ping Fancb365642013-09-25 14:20:58 +0800222 /* Here, the really thing protected by seqlock is cpu_clock_offset. */
223 seqlock_write_lock(&timers_state.vm_clock_seqlock);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200224 if (!timers_state.cpu_ticks_enabled) {
225 timers_state.cpu_ticks_offset -= cpu_get_real_ticks();
226 timers_state.cpu_clock_offset -= get_clock();
227 timers_state.cpu_ticks_enabled = 1;
228 }
Liu Ping Fancb365642013-09-25 14:20:58 +0800229 seqlock_write_unlock(&timers_state.vm_clock_seqlock);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200230}
231
232/* disable cpu_get_ticks() : the clock is stopped. You must not call
Liu Ping Fancb365642013-09-25 14:20:58 +0800233 * cpu_get_ticks() after that.
234 * Caller must hold BQL which server as mutex for vm_clock_seqlock.
235 */
Paolo Bonzini946fb272011-09-12 13:57:37 +0200236void cpu_disable_ticks(void)
237{
Liu Ping Fancb365642013-09-25 14:20:58 +0800238 /* Here, the really thing protected by seqlock is cpu_clock_offset. */
239 seqlock_write_lock(&timers_state.vm_clock_seqlock);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200240 if (timers_state.cpu_ticks_enabled) {
Paolo Bonzini5f3e3102013-10-28 17:32:18 +0100241 timers_state.cpu_ticks_offset += cpu_get_real_ticks();
Liu Ping Fancb365642013-09-25 14:20:58 +0800242 timers_state.cpu_clock_offset = cpu_get_clock_locked();
Paolo Bonzini946fb272011-09-12 13:57:37 +0200243 timers_state.cpu_ticks_enabled = 0;
244 }
Liu Ping Fancb365642013-09-25 14:20:58 +0800245 seqlock_write_unlock(&timers_state.vm_clock_seqlock);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200246}
247
248/* Correlation between real and virtual time is always going to be
249 fairly approximate, so ignore small variation.
250 When the guest is idle real and virtual time will be aligned in
251 the IO wait loop. */
252#define ICOUNT_WOBBLE (get_ticks_per_sec() / 10)
253
254static void icount_adjust(void)
255{
256 int64_t cur_time;
257 int64_t cur_icount;
258 int64_t delta;
Paolo Bonzinia3270e12013-10-07 17:18:15 +0200259
260 /* Protected by TimersState mutex. */
Paolo Bonzini946fb272011-09-12 13:57:37 +0200261 static int64_t last_delta;
Paolo Bonzini468cc7c2013-10-07 17:21:51 +0200262
Paolo Bonzini946fb272011-09-12 13:57:37 +0200263 /* If the VM is not running, then do nothing. */
264 if (!runstate_is_running()) {
265 return;
266 }
Paolo Bonzini468cc7c2013-10-07 17:21:51 +0200267
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200268 seqlock_write_lock(&timers_state.vm_clock_seqlock);
269 cur_time = cpu_get_clock_locked();
270 cur_icount = cpu_get_icount_locked();
Paolo Bonzini468cc7c2013-10-07 17:21:51 +0200271
Paolo Bonzini946fb272011-09-12 13:57:37 +0200272 delta = cur_icount - cur_time;
273 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
274 if (delta > 0
275 && last_delta + ICOUNT_WOBBLE < delta * 2
276 && icount_time_shift > 0) {
277 /* The guest is getting too far ahead. Slow time down. */
278 icount_time_shift--;
279 }
280 if (delta < 0
281 && last_delta - ICOUNT_WOBBLE > delta * 2
282 && icount_time_shift < MAX_ICOUNT_SHIFT) {
283 /* The guest is getting too far behind. Speed time up. */
284 icount_time_shift++;
285 }
286 last_delta = delta;
287 qemu_icount_bias = cur_icount - (qemu_icount << icount_time_shift);
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200288 seqlock_write_unlock(&timers_state.vm_clock_seqlock);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200289}
290
291static void icount_adjust_rt(void *opaque)
292{
Alex Bligh40daca52013-08-21 16:03:02 +0100293 timer_mod(icount_rt_timer,
294 qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200295 icount_adjust();
296}
297
298static void icount_adjust_vm(void *opaque)
299{
Alex Bligh40daca52013-08-21 16:03:02 +0100300 timer_mod(icount_vm_timer,
301 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
302 get_ticks_per_sec() / 10);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200303 icount_adjust();
304}
305
306static int64_t qemu_icount_round(int64_t count)
307{
308 return (count + (1 << icount_time_shift) - 1) >> icount_time_shift;
309}
310
311static void icount_warp_rt(void *opaque)
312{
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200313 /* The icount_warp_timer is rescheduled soon after vm_clock_warp_start
314 * changes from -1 to another value, so the race here is okay.
315 */
316 if (atomic_read(&vm_clock_warp_start) == -1) {
Paolo Bonzini946fb272011-09-12 13:57:37 +0200317 return;
318 }
319
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200320 seqlock_write_lock(&timers_state.vm_clock_seqlock);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200321 if (runstate_is_running()) {
Alex Bligh40daca52013-08-21 16:03:02 +0100322 int64_t clock = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
Paolo Bonzini8ed961d2013-10-07 17:26:07 +0200323 int64_t warp_delta;
324
325 warp_delta = clock - vm_clock_warp_start;
326 if (use_icount == 2) {
Paolo Bonzini946fb272011-09-12 13:57:37 +0200327 /*
Alex Bligh40daca52013-08-21 16:03:02 +0100328 * In adaptive mode, do not let QEMU_CLOCK_VIRTUAL run too
Paolo Bonzini946fb272011-09-12 13:57:37 +0200329 * far ahead of real time.
330 */
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200331 int64_t cur_time = cpu_get_clock_locked();
332 int64_t cur_icount = cpu_get_icount_locked();
Paolo Bonzini946fb272011-09-12 13:57:37 +0200333 int64_t delta = cur_time - cur_icount;
Paolo Bonzini8ed961d2013-10-07 17:26:07 +0200334 warp_delta = MIN(warp_delta, delta);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200335 }
Paolo Bonzini8ed961d2013-10-07 17:26:07 +0200336 qemu_icount_bias += warp_delta;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200337 }
338 vm_clock_warp_start = -1;
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200339 seqlock_write_unlock(&timers_state.vm_clock_seqlock);
Paolo Bonzini8ed961d2013-10-07 17:26:07 +0200340
341 if (qemu_clock_expired(QEMU_CLOCK_VIRTUAL)) {
342 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
343 }
Paolo Bonzini946fb272011-09-12 13:57:37 +0200344}
345
Paolo Bonzini8156be52012-03-28 15:42:04 +0200346void qtest_clock_warp(int64_t dest)
347{
Alex Bligh40daca52013-08-21 16:03:02 +0100348 int64_t clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200349 assert(qtest_enabled());
350 while (clock < dest) {
Alex Bligh40daca52013-08-21 16:03:02 +0100351 int64_t deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
Sergey Fedorovc9299e22014-06-10 13:10:28 +0400352 int64_t warp = qemu_soonest_timeout(dest - clock, deadline);
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200353 seqlock_write_lock(&timers_state.vm_clock_seqlock);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200354 qemu_icount_bias += warp;
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200355 seqlock_write_unlock(&timers_state.vm_clock_seqlock);
356
Alex Bligh40daca52013-08-21 16:03:02 +0100357 qemu_clock_run_timers(QEMU_CLOCK_VIRTUAL);
358 clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200359 }
Alex Bligh40daca52013-08-21 16:03:02 +0100360 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200361}
362
Alex Bligh40daca52013-08-21 16:03:02 +0100363void qemu_clock_warp(QEMUClockType type)
Paolo Bonzini946fb272011-09-12 13:57:37 +0200364{
Paolo Bonzinice78d182013-10-07 17:30:02 +0200365 int64_t clock;
Paolo Bonzini946fb272011-09-12 13:57:37 +0200366 int64_t deadline;
367
368 /*
369 * There are too many global variables to make the "warp" behavior
370 * applicable to other clocks. But a clock argument removes the
371 * need for if statements all over the place.
372 */
Alex Bligh40daca52013-08-21 16:03:02 +0100373 if (type != QEMU_CLOCK_VIRTUAL || !use_icount) {
Paolo Bonzini946fb272011-09-12 13:57:37 +0200374 return;
375 }
376
377 /*
Alex Bligh40daca52013-08-21 16:03:02 +0100378 * If the CPUs have been sleeping, advance QEMU_CLOCK_VIRTUAL timer now.
379 * This ensures that the deadline for the timer is computed correctly below.
Paolo Bonzini946fb272011-09-12 13:57:37 +0200380 * This also makes sure that the insn counter is synchronized before the
381 * CPU starts running, in case the CPU is woken by an event other than
Alex Bligh40daca52013-08-21 16:03:02 +0100382 * the earliest QEMU_CLOCK_VIRTUAL timer.
Paolo Bonzini946fb272011-09-12 13:57:37 +0200383 */
384 icount_warp_rt(NULL);
Paolo Bonzinice78d182013-10-07 17:30:02 +0200385 timer_del(icount_warp_timer);
386 if (!all_cpu_threads_idle()) {
Paolo Bonzini946fb272011-09-12 13:57:37 +0200387 return;
388 }
389
Paolo Bonzini8156be52012-03-28 15:42:04 +0200390 if (qtest_enabled()) {
391 /* When testing, qtest commands advance icount. */
392 return;
393 }
394
Alex Blighac70aaf2013-08-21 16:02:57 +0100395 /* We want to use the earliest deadline from ALL vm_clocks */
Paolo Bonzinice78d182013-10-07 17:30:02 +0200396 clock = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
Alex Bligh40daca52013-08-21 16:03:02 +0100397 deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
Paolo Bonzinice78d182013-10-07 17:30:02 +0200398 if (deadline < 0) {
399 return;
Alex Blighac70aaf2013-08-21 16:02:57 +0100400 }
401
Paolo Bonzini946fb272011-09-12 13:57:37 +0200402 if (deadline > 0) {
403 /*
Alex Bligh40daca52013-08-21 16:03:02 +0100404 * Ensure QEMU_CLOCK_VIRTUAL proceeds even when the virtual CPU goes to
Paolo Bonzini946fb272011-09-12 13:57:37 +0200405 * sleep. Otherwise, the CPU might be waiting for a future timer
406 * interrupt to wake it up, but the interrupt never comes because
407 * the vCPU isn't running any insns and thus doesn't advance the
Alex Bligh40daca52013-08-21 16:03:02 +0100408 * QEMU_CLOCK_VIRTUAL.
Paolo Bonzini946fb272011-09-12 13:57:37 +0200409 *
410 * An extreme solution for this problem would be to never let VCPUs
Alex Bligh40daca52013-08-21 16:03:02 +0100411 * sleep in icount mode if there is a pending QEMU_CLOCK_VIRTUAL
412 * timer; rather time could just advance to the next QEMU_CLOCK_VIRTUAL
413 * event. Instead, we do stop VCPUs and only advance QEMU_CLOCK_VIRTUAL
414 * after some e"real" time, (related to the time left until the next
415 * event) has passed. The QEMU_CLOCK_REALTIME timer will do this.
416 * This avoids that the warps are visible externally; for example,
417 * you will not be sending network packets continuously instead of
418 * every 100ms.
Paolo Bonzini946fb272011-09-12 13:57:37 +0200419 */
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200420 seqlock_write_lock(&timers_state.vm_clock_seqlock);
Paolo Bonzinice78d182013-10-07 17:30:02 +0200421 if (vm_clock_warp_start == -1 || vm_clock_warp_start > clock) {
422 vm_clock_warp_start = clock;
423 }
Paolo Bonzini17a15f12013-10-03 15:17:25 +0200424 seqlock_write_unlock(&timers_state.vm_clock_seqlock);
Paolo Bonzinice78d182013-10-07 17:30:02 +0200425 timer_mod_anticipate(icount_warp_timer, clock + deadline);
Alex Blighac70aaf2013-08-21 16:02:57 +0100426 } else if (deadline == 0) {
Alex Bligh40daca52013-08-21 16:03:02 +0100427 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200428 }
429}
430
431static const VMStateDescription vmstate_timers = {
432 .name = "timer",
433 .version_id = 2,
434 .minimum_version_id = 1,
Juan Quintela35d08452014-04-16 16:01:33 +0200435 .fields = (VMStateField[]) {
Paolo Bonzini946fb272011-09-12 13:57:37 +0200436 VMSTATE_INT64(cpu_ticks_offset, TimersState),
437 VMSTATE_INT64(dummy, TimersState),
438 VMSTATE_INT64_V(cpu_clock_offset, TimersState, 2),
439 VMSTATE_END_OF_LIST()
440 }
441};
442
443void configure_icount(const char *option)
444{
Liu Ping Fancb365642013-09-25 14:20:58 +0800445 seqlock_init(&timers_state.vm_clock_seqlock, NULL);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200446 vmstate_register(NULL, 0, &vmstate_timers, &timers_state);
447 if (!option) {
448 return;
449 }
450
Alex Bligh40daca52013-08-21 16:03:02 +0100451 icount_warp_timer = timer_new_ns(QEMU_CLOCK_REALTIME,
452 icount_warp_rt, NULL);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200453 if (strcmp(option, "auto") != 0) {
454 icount_time_shift = strtol(option, NULL, 0);
455 use_icount = 1;
456 return;
457 }
458
459 use_icount = 2;
460
461 /* 125MIPS seems a reasonable initial guess at the guest speed.
462 It will be corrected fairly quickly anyway. */
463 icount_time_shift = 3;
464
465 /* Have both realtime and virtual time triggers for speed adjustment.
466 The realtime trigger catches emulated time passing too slowly,
467 the virtual time trigger catches emulated time passing too fast.
468 Realtime triggers occur even when idle, so use them less frequently
469 than VM triggers. */
Alex Bligh40daca52013-08-21 16:03:02 +0100470 icount_rt_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
471 icount_adjust_rt, NULL);
472 timer_mod(icount_rt_timer,
473 qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000);
474 icount_vm_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
475 icount_adjust_vm, NULL);
476 timer_mod(icount_vm_timer,
477 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
478 get_ticks_per_sec() / 10);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200479}
480
481/***********************************************************/
Blue Swirl296af7c2010-03-29 19:23:50 +0000482void hw_error(const char *fmt, ...)
483{
484 va_list ap;
Andreas Färber55e5c282012-12-17 06:18:02 +0100485 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000486
487 va_start(ap, fmt);
488 fprintf(stderr, "qemu: hardware error: ");
489 vfprintf(stderr, fmt, ap);
490 fprintf(stderr, "\n");
Andreas Färberbdc44642013-06-24 23:50:24 +0200491 CPU_FOREACH(cpu) {
Andreas Färber55e5c282012-12-17 06:18:02 +0100492 fprintf(stderr, "CPU #%d:\n", cpu->cpu_index);
Andreas Färber878096e2013-05-27 01:33:50 +0200493 cpu_dump_state(cpu, stderr, fprintf, CPU_DUMP_FPU);
Blue Swirl296af7c2010-03-29 19:23:50 +0000494 }
495 va_end(ap);
496 abort();
497}
498
499void cpu_synchronize_all_states(void)
500{
Andreas Färber182735e2013-05-29 22:29:20 +0200501 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000502
Andreas Färberbdc44642013-06-24 23:50:24 +0200503 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +0200504 cpu_synchronize_state(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000505 }
506}
507
508void cpu_synchronize_all_post_reset(void)
509{
Andreas Färber182735e2013-05-29 22:29:20 +0200510 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000511
Andreas Färberbdc44642013-06-24 23:50:24 +0200512 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +0200513 cpu_synchronize_post_reset(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000514 }
515}
516
517void cpu_synchronize_all_post_init(void)
518{
Andreas Färber182735e2013-05-29 22:29:20 +0200519 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000520
Andreas Färberbdc44642013-06-24 23:50:24 +0200521 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +0200522 cpu_synchronize_post_init(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000523 }
524}
525
Kevin Wolf56983462013-07-05 13:49:54 +0200526static int do_vm_stop(RunState state)
Blue Swirl296af7c2010-03-29 19:23:50 +0000527{
Kevin Wolf56983462013-07-05 13:49:54 +0200528 int ret = 0;
529
Luiz Capitulino13548692011-07-29 15:36:43 -0300530 if (runstate_is_running()) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000531 cpu_disable_ticks();
Blue Swirl296af7c2010-03-29 19:23:50 +0000532 pause_all_vcpus();
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300533 runstate_set(state);
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300534 vm_state_notify(0, state);
Wenchao Xiaa4e15de2014-06-18 08:43:36 +0200535 qapi_event_send_stop(&error_abort);
Blue Swirl296af7c2010-03-29 19:23:50 +0000536 }
Kevin Wolf56983462013-07-05 13:49:54 +0200537
Kevin Wolf594a45c2013-07-18 14:52:19 +0200538 bdrv_drain_all();
539 ret = bdrv_flush_all();
540
Kevin Wolf56983462013-07-05 13:49:54 +0200541 return ret;
Blue Swirl296af7c2010-03-29 19:23:50 +0000542}
543
Andreas Färbera1fcaa72012-05-02 23:42:26 +0200544static bool cpu_can_run(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +0000545{
Andreas Färber4fdeee72012-05-02 23:10:09 +0200546 if (cpu->stop) {
Andreas Färbera1fcaa72012-05-02 23:42:26 +0200547 return false;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100548 }
Tiejun Chen321bc0b2013-08-02 09:43:09 +0800549 if (cpu_is_stopped(cpu)) {
Andreas Färbera1fcaa72012-05-02 23:42:26 +0200550 return false;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100551 }
Andreas Färbera1fcaa72012-05-02 23:42:26 +0200552 return true;
Blue Swirl296af7c2010-03-29 19:23:50 +0000553}
554
Andreas Färber91325042013-05-27 02:07:49 +0200555static void cpu_handle_guest_debug(CPUState *cpu)
Jan Kiszka3c638d02010-06-25 16:56:56 +0200556{
Andreas Färber64f6b342013-05-27 02:06:09 +0200557 gdb_set_stop_cpu(cpu);
Jan Kiszka8cf71712011-02-07 12:19:16 +0100558 qemu_system_debug_request();
Andreas Färberf324e762012-05-02 23:26:21 +0200559 cpu->stopped = true;
Jan Kiszka3c638d02010-06-25 16:56:56 +0200560}
561
Paolo Bonzini714bd042011-03-12 17:44:06 +0100562static void cpu_signal(int sig)
563{
Andreas Färber4917cf42013-05-27 05:17:50 +0200564 if (current_cpu) {
565 cpu_exit(current_cpu);
Paolo Bonzini714bd042011-03-12 17:44:06 +0100566 }
567 exit_request = 1;
568}
Paolo Bonzini714bd042011-03-12 17:44:06 +0100569
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100570#ifdef CONFIG_LINUX
571static void sigbus_reraise(void)
572{
573 sigset_t set;
574 struct sigaction action;
575
576 memset(&action, 0, sizeof(action));
577 action.sa_handler = SIG_DFL;
578 if (!sigaction(SIGBUS, &action, NULL)) {
579 raise(SIGBUS);
580 sigemptyset(&set);
581 sigaddset(&set, SIGBUS);
582 sigprocmask(SIG_UNBLOCK, &set, NULL);
583 }
584 perror("Failed to re-raise SIGBUS!\n");
585 abort();
586}
587
588static void sigbus_handler(int n, struct qemu_signalfd_siginfo *siginfo,
589 void *ctx)
590{
591 if (kvm_on_sigbus(siginfo->ssi_code,
592 (void *)(intptr_t)siginfo->ssi_addr)) {
593 sigbus_reraise();
594 }
595}
596
597static void qemu_init_sigbus(void)
598{
599 struct sigaction action;
600
601 memset(&action, 0, sizeof(action));
602 action.sa_flags = SA_SIGINFO;
603 action.sa_sigaction = (void (*)(int, siginfo_t*, void*))sigbus_handler;
604 sigaction(SIGBUS, &action, NULL);
605
606 prctl(PR_MCE_KILL, PR_MCE_KILL_SET, PR_MCE_KILL_EARLY, 0, 0);
607}
608
Andreas Färber290adf32013-01-17 09:30:27 +0100609static void qemu_kvm_eat_signals(CPUState *cpu)
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100610{
611 struct timespec ts = { 0, 0 };
612 siginfo_t siginfo;
613 sigset_t waitset;
614 sigset_t chkset;
615 int r;
616
617 sigemptyset(&waitset);
618 sigaddset(&waitset, SIG_IPI);
619 sigaddset(&waitset, SIGBUS);
620
621 do {
622 r = sigtimedwait(&waitset, &siginfo, &ts);
623 if (r == -1 && !(errno == EAGAIN || errno == EINTR)) {
624 perror("sigtimedwait");
625 exit(1);
626 }
627
628 switch (r) {
629 case SIGBUS:
Andreas Färber290adf32013-01-17 09:30:27 +0100630 if (kvm_on_sigbus_vcpu(cpu, siginfo.si_code, siginfo.si_addr)) {
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100631 sigbus_reraise();
632 }
633 break;
634 default:
635 break;
636 }
637
638 r = sigpending(&chkset);
639 if (r == -1) {
640 perror("sigpending");
641 exit(1);
642 }
643 } while (sigismember(&chkset, SIG_IPI) || sigismember(&chkset, SIGBUS));
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100644}
645
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100646#else /* !CONFIG_LINUX */
647
648static void qemu_init_sigbus(void)
649{
650}
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100651
Andreas Färber290adf32013-01-17 09:30:27 +0100652static void qemu_kvm_eat_signals(CPUState *cpu)
Jan Kiszka1ab3c6c2011-03-15 12:26:12 +0100653{
654}
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100655#endif /* !CONFIG_LINUX */
656
Blue Swirl296af7c2010-03-29 19:23:50 +0000657#ifndef _WIN32
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100658static void dummy_signal(int sig)
Blue Swirl296af7c2010-03-29 19:23:50 +0000659{
660}
661
Andreas Färber13618e02013-05-26 23:41:00 +0200662static void qemu_kvm_init_cpu_signals(CPUState *cpu)
Paolo Bonzini714bd042011-03-12 17:44:06 +0100663{
664 int r;
665 sigset_t set;
666 struct sigaction sigact;
667
668 memset(&sigact, 0, sizeof(sigact));
669 sigact.sa_handler = dummy_signal;
670 sigaction(SIG_IPI, &sigact, NULL);
671
Paolo Bonzini714bd042011-03-12 17:44:06 +0100672 pthread_sigmask(SIG_BLOCK, NULL, &set);
673 sigdelset(&set, SIG_IPI);
674 sigdelset(&set, SIGBUS);
Andreas Färber491d6e82013-05-26 23:38:10 +0200675 r = kvm_set_signal_mask(cpu, &set);
Paolo Bonzini714bd042011-03-12 17:44:06 +0100676 if (r) {
677 fprintf(stderr, "kvm_set_signal_mask: %s\n", strerror(-r));
678 exit(1);
679 }
Paolo Bonzini714bd042011-03-12 17:44:06 +0100680}
681
682static void qemu_tcg_init_cpu_signals(void)
683{
Paolo Bonzini714bd042011-03-12 17:44:06 +0100684 sigset_t set;
685 struct sigaction sigact;
686
687 memset(&sigact, 0, sizeof(sigact));
688 sigact.sa_handler = cpu_signal;
689 sigaction(SIG_IPI, &sigact, NULL);
690
691 sigemptyset(&set);
692 sigaddset(&set, SIG_IPI);
693 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
Paolo Bonzini714bd042011-03-12 17:44:06 +0100694}
695
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100696#else /* _WIN32 */
Andreas Färber13618e02013-05-26 23:41:00 +0200697static void qemu_kvm_init_cpu_signals(CPUState *cpu)
Paolo Bonzini714bd042011-03-12 17:44:06 +0100698{
699 abort();
700}
701
702static void qemu_tcg_init_cpu_signals(void)
703{
704}
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100705#endif /* _WIN32 */
Blue Swirl296af7c2010-03-29 19:23:50 +0000706
Stefan Weilb2532d82012-09-27 07:41:42 +0200707static QemuMutex qemu_global_mutex;
Paolo Bonzini46daff12011-06-09 13:10:24 +0200708static QemuCond qemu_io_proceeded_cond;
709static bool iothread_requesting_mutex;
Blue Swirl296af7c2010-03-29 19:23:50 +0000710
711static QemuThread io_thread;
712
713static QemuThread *tcg_cpu_thread;
714static QemuCond *tcg_halt_cond;
715
Blue Swirl296af7c2010-03-29 19:23:50 +0000716/* cpu creation */
717static QemuCond qemu_cpu_cond;
718/* system init */
Blue Swirl296af7c2010-03-29 19:23:50 +0000719static QemuCond qemu_pause_cond;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300720static QemuCond qemu_work_cond;
Blue Swirl296af7c2010-03-29 19:23:50 +0000721
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200722void qemu_init_cpu_loop(void)
Blue Swirl296af7c2010-03-29 19:23:50 +0000723{
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100724 qemu_init_sigbus();
Anthony Liguoried945922011-02-08 18:18:18 +0100725 qemu_cond_init(&qemu_cpu_cond);
Anthony Liguoried945922011-02-08 18:18:18 +0100726 qemu_cond_init(&qemu_pause_cond);
727 qemu_cond_init(&qemu_work_cond);
Paolo Bonzini46daff12011-06-09 13:10:24 +0200728 qemu_cond_init(&qemu_io_proceeded_cond);
Blue Swirl296af7c2010-03-29 19:23:50 +0000729 qemu_mutex_init(&qemu_global_mutex);
Blue Swirl296af7c2010-03-29 19:23:50 +0000730
Jan Kiszkab7680cb2011-03-12 17:43:51 +0100731 qemu_thread_get_self(&io_thread);
Blue Swirl296af7c2010-03-29 19:23:50 +0000732}
733
Andreas Färberf100f0b2012-05-03 14:58:47 +0200734void run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data)
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300735{
736 struct qemu_work_item wi;
737
Andreas Färber60e82572012-05-02 22:23:49 +0200738 if (qemu_cpu_is_self(cpu)) {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300739 func(data);
740 return;
741 }
742
743 wi.func = func;
744 wi.data = data;
Chegu Vinod3c022702013-06-24 03:49:41 -0600745 wi.free = false;
Andreas Färberc64ca812012-05-03 02:11:45 +0200746 if (cpu->queued_work_first == NULL) {
747 cpu->queued_work_first = &wi;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100748 } else {
Andreas Färberc64ca812012-05-03 02:11:45 +0200749 cpu->queued_work_last->next = &wi;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100750 }
Andreas Färberc64ca812012-05-03 02:11:45 +0200751 cpu->queued_work_last = &wi;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300752 wi.next = NULL;
753 wi.done = false;
754
Andreas Färberc08d7422012-05-03 04:34:15 +0200755 qemu_cpu_kick(cpu);
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300756 while (!wi.done) {
Andreas Färber4917cf42013-05-27 05:17:50 +0200757 CPUState *self_cpu = current_cpu;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300758
759 qemu_cond_wait(&qemu_work_cond, &qemu_global_mutex);
Andreas Färber4917cf42013-05-27 05:17:50 +0200760 current_cpu = self_cpu;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300761 }
762}
763
Chegu Vinod3c022702013-06-24 03:49:41 -0600764void async_run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data)
765{
766 struct qemu_work_item *wi;
767
768 if (qemu_cpu_is_self(cpu)) {
769 func(data);
770 return;
771 }
772
773 wi = g_malloc0(sizeof(struct qemu_work_item));
774 wi->func = func;
775 wi->data = data;
776 wi->free = true;
777 if (cpu->queued_work_first == NULL) {
778 cpu->queued_work_first = wi;
779 } else {
780 cpu->queued_work_last->next = wi;
781 }
782 cpu->queued_work_last = wi;
783 wi->next = NULL;
784 wi->done = false;
785
786 qemu_cpu_kick(cpu);
787}
788
Andreas Färber6d45b102012-05-03 02:13:22 +0200789static void flush_queued_work(CPUState *cpu)
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300790{
791 struct qemu_work_item *wi;
792
Andreas Färberc64ca812012-05-03 02:11:45 +0200793 if (cpu->queued_work_first == NULL) {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300794 return;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100795 }
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300796
Andreas Färberc64ca812012-05-03 02:11:45 +0200797 while ((wi = cpu->queued_work_first)) {
798 cpu->queued_work_first = wi->next;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300799 wi->func(wi->data);
800 wi->done = true;
Chegu Vinod3c022702013-06-24 03:49:41 -0600801 if (wi->free) {
802 g_free(wi);
803 }
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300804 }
Andreas Färberc64ca812012-05-03 02:11:45 +0200805 cpu->queued_work_last = NULL;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300806 qemu_cond_broadcast(&qemu_work_cond);
807}
808
Andreas Färber509a0d72012-05-03 02:18:09 +0200809static void qemu_wait_io_event_common(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +0000810{
Andreas Färber4fdeee72012-05-02 23:10:09 +0200811 if (cpu->stop) {
812 cpu->stop = false;
Andreas Färberf324e762012-05-02 23:26:21 +0200813 cpu->stopped = true;
Blue Swirl296af7c2010-03-29 19:23:50 +0000814 qemu_cond_signal(&qemu_pause_cond);
815 }
Andreas Färber6d45b102012-05-03 02:13:22 +0200816 flush_queued_work(cpu);
Andreas Färber216fc9a2012-05-02 17:49:49 +0200817 cpu->thread_kicked = false;
Blue Swirl296af7c2010-03-29 19:23:50 +0000818}
819
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200820static void qemu_tcg_wait_io_event(void)
Blue Swirl296af7c2010-03-29 19:23:50 +0000821{
Andreas Färber182735e2013-05-29 22:29:20 +0200822 CPUState *cpu;
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200823
Jan Kiszka16400322011-02-09 16:29:37 +0100824 while (all_cpu_threads_idle()) {
Paolo Bonziniab33fcd2011-04-13 10:03:44 +0200825 /* Start accounting real time to the virtual clock if the CPUs
826 are idle. */
Alex Bligh40daca52013-08-21 16:03:02 +0100827 qemu_clock_warp(QEMU_CLOCK_VIRTUAL);
Paolo Bonzini9705fbb2011-03-12 17:44:00 +0100828 qemu_cond_wait(tcg_halt_cond, &qemu_global_mutex);
Jan Kiszka16400322011-02-09 16:29:37 +0100829 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000830
Paolo Bonzini46daff12011-06-09 13:10:24 +0200831 while (iothread_requesting_mutex) {
832 qemu_cond_wait(&qemu_io_proceeded_cond, &qemu_global_mutex);
833 }
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200834
Andreas Färberbdc44642013-06-24 23:50:24 +0200835 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +0200836 qemu_wait_io_event_common(cpu);
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200837 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000838}
839
Andreas Färberfd529e82013-05-26 23:24:55 +0200840static void qemu_kvm_wait_io_event(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +0000841{
Andreas Färbera98ae1d2013-05-26 23:21:08 +0200842 while (cpu_thread_is_idle(cpu)) {
Andreas Färberf5c121b2012-05-03 01:22:49 +0200843 qemu_cond_wait(cpu->halt_cond, &qemu_global_mutex);
Jan Kiszka16400322011-02-09 16:29:37 +0100844 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000845
Andreas Färber290adf32013-01-17 09:30:27 +0100846 qemu_kvm_eat_signals(cpu);
Andreas Färber509a0d72012-05-03 02:18:09 +0200847 qemu_wait_io_event_common(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000848}
849
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100850static void *qemu_kvm_cpu_thread_fn(void *arg)
Blue Swirl296af7c2010-03-29 19:23:50 +0000851{
Andreas Färber48a106b2013-05-27 02:20:39 +0200852 CPUState *cpu = arg;
Jan Kiszka84b49152011-02-01 22:15:50 +0100853 int r;
Blue Swirl296af7c2010-03-29 19:23:50 +0000854
Marcelo Tosatti6164e6d2010-03-23 13:37:13 -0300855 qemu_mutex_lock(&qemu_global_mutex);
Andreas Färber814e6122012-05-02 17:00:37 +0200856 qemu_thread_get_self(cpu->thread);
Andreas Färber9f09e182012-05-03 06:59:07 +0200857 cpu->thread_id = qemu_get_thread_id();
Andreas Färber4917cf42013-05-27 05:17:50 +0200858 current_cpu = cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +0000859
Andreas Färber504134d2012-12-17 06:38:45 +0100860 r = kvm_init_vcpu(cpu);
Jan Kiszka84b49152011-02-01 22:15:50 +0100861 if (r < 0) {
862 fprintf(stderr, "kvm_init_vcpu failed: %s\n", strerror(-r));
863 exit(1);
864 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000865
Andreas Färber13618e02013-05-26 23:41:00 +0200866 qemu_kvm_init_cpu_signals(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000867
868 /* signal CPU creation */
Andreas Färber61a46212012-05-02 22:49:36 +0200869 cpu->created = true;
Blue Swirl296af7c2010-03-29 19:23:50 +0000870 qemu_cond_signal(&qemu_cpu_cond);
871
Blue Swirl296af7c2010-03-29 19:23:50 +0000872 while (1) {
Andreas Färbera1fcaa72012-05-02 23:42:26 +0200873 if (cpu_can_run(cpu)) {
Andreas Färber1458c362013-05-26 23:46:55 +0200874 r = kvm_cpu_exec(cpu);
Jan Kiszka83f338f2011-02-07 12:19:17 +0100875 if (r == EXCP_DEBUG) {
Andreas Färber91325042013-05-27 02:07:49 +0200876 cpu_handle_guest_debug(cpu);
Jan Kiszka83f338f2011-02-07 12:19:17 +0100877 }
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100878 }
Andreas Färberfd529e82013-05-26 23:24:55 +0200879 qemu_kvm_wait_io_event(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +0000880 }
881
882 return NULL;
883}
884
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200885static void *qemu_dummy_cpu_thread_fn(void *arg)
886{
887#ifdef _WIN32
888 fprintf(stderr, "qtest is not supported under Windows\n");
889 exit(1);
890#else
Andreas Färber10a90212013-05-27 02:24:35 +0200891 CPUState *cpu = arg;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200892 sigset_t waitset;
893 int r;
894
895 qemu_mutex_lock_iothread();
Andreas Färber814e6122012-05-02 17:00:37 +0200896 qemu_thread_get_self(cpu->thread);
Andreas Färber9f09e182012-05-03 06:59:07 +0200897 cpu->thread_id = qemu_get_thread_id();
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200898
899 sigemptyset(&waitset);
900 sigaddset(&waitset, SIG_IPI);
901
902 /* signal CPU creation */
Andreas Färber61a46212012-05-02 22:49:36 +0200903 cpu->created = true;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200904 qemu_cond_signal(&qemu_cpu_cond);
905
Andreas Färber4917cf42013-05-27 05:17:50 +0200906 current_cpu = cpu;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200907 while (1) {
Andreas Färber4917cf42013-05-27 05:17:50 +0200908 current_cpu = NULL;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200909 qemu_mutex_unlock_iothread();
910 do {
911 int sig;
912 r = sigwait(&waitset, &sig);
913 } while (r == -1 && (errno == EAGAIN || errno == EINTR));
914 if (r == -1) {
915 perror("sigwait");
916 exit(1);
917 }
918 qemu_mutex_lock_iothread();
Andreas Färber4917cf42013-05-27 05:17:50 +0200919 current_cpu = cpu;
Andreas Färber509a0d72012-05-03 02:18:09 +0200920 qemu_wait_io_event_common(cpu);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200921 }
922
923 return NULL;
924#endif
925}
926
Jan Kiszkabdb7ca62011-09-26 09:40:39 +0200927static void tcg_exec_all(void);
928
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100929static void *qemu_tcg_cpu_thread_fn(void *arg)
Blue Swirl296af7c2010-03-29 19:23:50 +0000930{
Andreas Färberc3586ba2012-05-03 01:41:24 +0200931 CPUState *cpu = arg;
Blue Swirl296af7c2010-03-29 19:23:50 +0000932
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100933 qemu_tcg_init_cpu_signals();
Andreas Färber814e6122012-05-02 17:00:37 +0200934 qemu_thread_get_self(cpu->thread);
Blue Swirl296af7c2010-03-29 19:23:50 +0000935
Blue Swirl296af7c2010-03-29 19:23:50 +0000936 qemu_mutex_lock(&qemu_global_mutex);
Andreas Färber38fcbd32013-07-07 19:50:23 +0200937 CPU_FOREACH(cpu) {
938 cpu->thread_id = qemu_get_thread_id();
939 cpu->created = true;
940 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000941 qemu_cond_signal(&qemu_cpu_cond);
942
Jan Kiszkafa7d1862011-08-22 18:35:25 +0200943 /* wait for initial kick-off after machine start */
Andreas Färberbdc44642013-06-24 23:50:24 +0200944 while (QTAILQ_FIRST(&cpus)->stopped) {
Jan Kiszkafa7d1862011-08-22 18:35:25 +0200945 qemu_cond_wait(tcg_halt_cond, &qemu_global_mutex);
Jan Kiszka8e564b42012-02-17 18:31:15 +0100946
947 /* process any pending work */
Andreas Färberbdc44642013-06-24 23:50:24 +0200948 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +0200949 qemu_wait_io_event_common(cpu);
Jan Kiszka8e564b42012-02-17 18:31:15 +0100950 }
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100951 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000952
953 while (1) {
Jan Kiszkabdb7ca62011-09-26 09:40:39 +0200954 tcg_exec_all();
Alex Blighac70aaf2013-08-21 16:02:57 +0100955
956 if (use_icount) {
Alex Bligh40daca52013-08-21 16:03:02 +0100957 int64_t deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
Alex Blighac70aaf2013-08-21 16:02:57 +0100958
959 if (deadline == 0) {
Alex Bligh40daca52013-08-21 16:03:02 +0100960 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
Alex Blighac70aaf2013-08-21 16:02:57 +0100961 }
Paolo Bonzini3b2319a2011-04-13 10:03:43 +0200962 }
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200963 qemu_tcg_wait_io_event();
Blue Swirl296af7c2010-03-29 19:23:50 +0000964 }
965
966 return NULL;
967}
968
Andreas Färber2ff09a42012-05-03 00:23:30 +0200969static void qemu_cpu_kick_thread(CPUState *cpu)
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100970{
971#ifndef _WIN32
972 int err;
973
Andreas Färber814e6122012-05-02 17:00:37 +0200974 err = pthread_kill(cpu->thread->thread, SIG_IPI);
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100975 if (err) {
976 fprintf(stderr, "qemu:%s: %s", __func__, strerror(err));
977 exit(1);
978 }
979#else /* _WIN32 */
Andreas Färber60e82572012-05-02 22:23:49 +0200980 if (!qemu_cpu_is_self(cpu)) {
Olivier Hainqueed9164a2013-04-09 18:06:53 +0200981 CONTEXT tcgContext;
982
983 if (SuspendThread(cpu->hThread) == (DWORD)-1) {
Stefan Weil7f1721d2013-04-13 22:45:50 +0200984 fprintf(stderr, "qemu:%s: GetLastError:%lu\n", __func__,
Olivier Hainqueed9164a2013-04-09 18:06:53 +0200985 GetLastError());
986 exit(1);
987 }
988
989 /* On multi-core systems, we are not sure that the thread is actually
990 * suspended until we can get the context.
991 */
992 tcgContext.ContextFlags = CONTEXT_CONTROL;
993 while (GetThreadContext(cpu->hThread, &tcgContext) != 0) {
994 continue;
995 }
996
Paolo Bonzinicc015e92011-03-12 17:44:08 +0100997 cpu_signal(0);
Olivier Hainqueed9164a2013-04-09 18:06:53 +0200998
999 if (ResumeThread(cpu->hThread) == (DWORD)-1) {
Stefan Weil7f1721d2013-04-13 22:45:50 +02001000 fprintf(stderr, "qemu:%s: GetLastError:%lu\n", __func__,
Olivier Hainqueed9164a2013-04-09 18:06:53 +02001001 GetLastError());
1002 exit(1);
1003 }
Paolo Bonzinicc015e92011-03-12 17:44:08 +01001004 }
1005#endif
1006}
1007
Andreas Färberc08d7422012-05-03 04:34:15 +02001008void qemu_cpu_kick(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +00001009{
Andreas Färberf5c121b2012-05-03 01:22:49 +02001010 qemu_cond_broadcast(cpu->halt_cond);
Andreas Färber216fc9a2012-05-02 17:49:49 +02001011 if (!tcg_enabled() && !cpu->thread_kicked) {
Andreas Färber2ff09a42012-05-03 00:23:30 +02001012 qemu_cpu_kick_thread(cpu);
Andreas Färber216fc9a2012-05-02 17:49:49 +02001013 cpu->thread_kicked = true;
Jan Kiszkaaa2c3642011-02-01 22:15:42 +01001014 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001015}
1016
Jan Kiszka46d62fa2011-02-01 22:15:59 +01001017void qemu_cpu_kick_self(void)
1018{
Paolo Bonzinib55c22c2011-03-12 17:44:07 +01001019#ifndef _WIN32
Andreas Färber4917cf42013-05-27 05:17:50 +02001020 assert(current_cpu);
Jan Kiszka46d62fa2011-02-01 22:15:59 +01001021
Andreas Färber4917cf42013-05-27 05:17:50 +02001022 if (!current_cpu->thread_kicked) {
1023 qemu_cpu_kick_thread(current_cpu);
1024 current_cpu->thread_kicked = true;
Jan Kiszka46d62fa2011-02-01 22:15:59 +01001025 }
Paolo Bonzinib55c22c2011-03-12 17:44:07 +01001026#else
1027 abort();
1028#endif
Blue Swirl296af7c2010-03-29 19:23:50 +00001029}
1030
Andreas Färber60e82572012-05-02 22:23:49 +02001031bool qemu_cpu_is_self(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +00001032{
Andreas Färber814e6122012-05-02 17:00:37 +02001033 return qemu_thread_is_self(cpu->thread);
Blue Swirl296af7c2010-03-29 19:23:50 +00001034}
1035
Juan Quintelaaa723c22012-09-18 16:30:11 +02001036static bool qemu_in_vcpu_thread(void)
1037{
Andreas Färber4917cf42013-05-27 05:17:50 +02001038 return current_cpu && qemu_cpu_is_self(current_cpu);
Juan Quintelaaa723c22012-09-18 16:30:11 +02001039}
1040
Blue Swirl296af7c2010-03-29 19:23:50 +00001041void qemu_mutex_lock_iothread(void)
1042{
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001043 if (!tcg_enabled()) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001044 qemu_mutex_lock(&qemu_global_mutex);
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -03001045 } else {
Paolo Bonzini46daff12011-06-09 13:10:24 +02001046 iothread_requesting_mutex = true;
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -03001047 if (qemu_mutex_trylock(&qemu_global_mutex)) {
Andreas Färber182735e2013-05-29 22:29:20 +02001048 qemu_cpu_kick_thread(first_cpu);
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -03001049 qemu_mutex_lock(&qemu_global_mutex);
1050 }
Paolo Bonzini46daff12011-06-09 13:10:24 +02001051 iothread_requesting_mutex = false;
1052 qemu_cond_broadcast(&qemu_io_proceeded_cond);
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -03001053 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001054}
1055
1056void qemu_mutex_unlock_iothread(void)
1057{
1058 qemu_mutex_unlock(&qemu_global_mutex);
1059}
1060
1061static int all_vcpus_paused(void)
1062{
Andreas Färberbdc44642013-06-24 23:50:24 +02001063 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +00001064
Andreas Färberbdc44642013-06-24 23:50:24 +02001065 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +02001066 if (!cpu->stopped) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001067 return 0;
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001068 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001069 }
1070
1071 return 1;
1072}
1073
1074void pause_all_vcpus(void)
1075{
Andreas Färberbdc44642013-06-24 23:50:24 +02001076 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +00001077
Alex Bligh40daca52013-08-21 16:03:02 +01001078 qemu_clock_enable(QEMU_CLOCK_VIRTUAL, false);
Andreas Färberbdc44642013-06-24 23:50:24 +02001079 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +02001080 cpu->stop = true;
1081 qemu_cpu_kick(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +00001082 }
1083
Juan Quintelaaa723c22012-09-18 16:30:11 +02001084 if (qemu_in_vcpu_thread()) {
Jan Kiszkad798e972012-02-17 18:31:16 +01001085 cpu_stop_current();
1086 if (!kvm_enabled()) {
Andreas Färberbdc44642013-06-24 23:50:24 +02001087 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +02001088 cpu->stop = false;
1089 cpu->stopped = true;
Jan Kiszkad798e972012-02-17 18:31:16 +01001090 }
1091 return;
1092 }
1093 }
1094
Blue Swirl296af7c2010-03-29 19:23:50 +00001095 while (!all_vcpus_paused()) {
Paolo Bonzinibe7d6c52011-03-12 17:44:02 +01001096 qemu_cond_wait(&qemu_pause_cond, &qemu_global_mutex);
Andreas Färberbdc44642013-06-24 23:50:24 +02001097 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +02001098 qemu_cpu_kick(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +00001099 }
1100 }
1101}
1102
Igor Mammedov29936832013-04-23 10:29:37 +02001103void cpu_resume(CPUState *cpu)
1104{
1105 cpu->stop = false;
1106 cpu->stopped = false;
1107 qemu_cpu_kick(cpu);
1108}
1109
Blue Swirl296af7c2010-03-29 19:23:50 +00001110void resume_all_vcpus(void)
1111{
Andreas Färberbdc44642013-06-24 23:50:24 +02001112 CPUState *cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +00001113
Alex Bligh40daca52013-08-21 16:03:02 +01001114 qemu_clock_enable(QEMU_CLOCK_VIRTUAL, true);
Andreas Färberbdc44642013-06-24 23:50:24 +02001115 CPU_FOREACH(cpu) {
Andreas Färber182735e2013-05-29 22:29:20 +02001116 cpu_resume(cpu);
Blue Swirl296af7c2010-03-29 19:23:50 +00001117 }
1118}
1119
Dr. David Alan Gilbert49001162014-01-30 10:20:32 +00001120/* For temporary buffers for forming a name */
1121#define VCPU_THREAD_NAME_SIZE 16
1122
Andreas Färbere5ab30a2012-05-03 01:50:44 +02001123static void qemu_tcg_init_vcpu(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +00001124{
Dr. David Alan Gilbert49001162014-01-30 10:20:32 +00001125 char thread_name[VCPU_THREAD_NAME_SIZE];
1126
Edgar E. Iglesias09daed82013-12-17 13:06:51 +10001127 tcg_cpu_address_space_init(cpu, cpu->as);
1128
Blue Swirl296af7c2010-03-29 19:23:50 +00001129 /* share a single thread for all cpus with TCG */
1130 if (!tcg_cpu_thread) {
Andreas Färber814e6122012-05-02 17:00:37 +02001131 cpu->thread = g_malloc0(sizeof(QemuThread));
Andreas Färberf5c121b2012-05-03 01:22:49 +02001132 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
1133 qemu_cond_init(cpu->halt_cond);
1134 tcg_halt_cond = cpu->halt_cond;
Dr. David Alan Gilbert49001162014-01-30 10:20:32 +00001135 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/TCG",
1136 cpu->cpu_index);
1137 qemu_thread_create(cpu->thread, thread_name, qemu_tcg_cpu_thread_fn,
1138 cpu, QEMU_THREAD_JOINABLE);
Paolo Bonzini1ecf47b2011-12-13 13:43:52 +01001139#ifdef _WIN32
Andreas Färber814e6122012-05-02 17:00:37 +02001140 cpu->hThread = qemu_thread_get_handle(cpu->thread);
Paolo Bonzini1ecf47b2011-12-13 13:43:52 +01001141#endif
Andreas Färber61a46212012-05-02 22:49:36 +02001142 while (!cpu->created) {
Paolo Bonzini18a85722011-03-12 17:44:03 +01001143 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001144 }
Andreas Färber814e6122012-05-02 17:00:37 +02001145 tcg_cpu_thread = cpu->thread;
Blue Swirl296af7c2010-03-29 19:23:50 +00001146 } else {
Andreas Färber814e6122012-05-02 17:00:37 +02001147 cpu->thread = tcg_cpu_thread;
Andreas Färberf5c121b2012-05-03 01:22:49 +02001148 cpu->halt_cond = tcg_halt_cond;
Blue Swirl296af7c2010-03-29 19:23:50 +00001149 }
1150}
1151
Andreas Färber48a106b2013-05-27 02:20:39 +02001152static void qemu_kvm_start_vcpu(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +00001153{
Dr. David Alan Gilbert49001162014-01-30 10:20:32 +00001154 char thread_name[VCPU_THREAD_NAME_SIZE];
1155
Andreas Färber814e6122012-05-02 17:00:37 +02001156 cpu->thread = g_malloc0(sizeof(QemuThread));
Andreas Färberf5c121b2012-05-03 01:22:49 +02001157 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
1158 qemu_cond_init(cpu->halt_cond);
Dr. David Alan Gilbert49001162014-01-30 10:20:32 +00001159 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/KVM",
1160 cpu->cpu_index);
1161 qemu_thread_create(cpu->thread, thread_name, qemu_kvm_cpu_thread_fn,
1162 cpu, QEMU_THREAD_JOINABLE);
Andreas Färber61a46212012-05-02 22:49:36 +02001163 while (!cpu->created) {
Paolo Bonzini18a85722011-03-12 17:44:03 +01001164 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001165 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001166}
1167
Andreas Färber10a90212013-05-27 02:24:35 +02001168static void qemu_dummy_start_vcpu(CPUState *cpu)
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001169{
Dr. David Alan Gilbert49001162014-01-30 10:20:32 +00001170 char thread_name[VCPU_THREAD_NAME_SIZE];
1171
Andreas Färber814e6122012-05-02 17:00:37 +02001172 cpu->thread = g_malloc0(sizeof(QemuThread));
Andreas Färberf5c121b2012-05-03 01:22:49 +02001173 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
1174 qemu_cond_init(cpu->halt_cond);
Dr. David Alan Gilbert49001162014-01-30 10:20:32 +00001175 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/DUMMY",
1176 cpu->cpu_index);
1177 qemu_thread_create(cpu->thread, thread_name, qemu_dummy_cpu_thread_fn, cpu,
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001178 QEMU_THREAD_JOINABLE);
Andreas Färber61a46212012-05-02 22:49:36 +02001179 while (!cpu->created) {
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001180 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
1181 }
1182}
1183
Andreas Färberc643bed2013-05-27 03:23:24 +02001184void qemu_init_vcpu(CPUState *cpu)
Blue Swirl296af7c2010-03-29 19:23:50 +00001185{
Andreas Färberce3960e2012-12-17 03:27:07 +01001186 cpu->nr_cores = smp_cores;
1187 cpu->nr_threads = smp_threads;
Andreas Färberf324e762012-05-02 23:26:21 +02001188 cpu->stopped = true;
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001189 if (kvm_enabled()) {
Andreas Färber48a106b2013-05-27 02:20:39 +02001190 qemu_kvm_start_vcpu(cpu);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001191 } else if (tcg_enabled()) {
Andreas Färbere5ab30a2012-05-03 01:50:44 +02001192 qemu_tcg_init_vcpu(cpu);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001193 } else {
Andreas Färber10a90212013-05-27 02:24:35 +02001194 qemu_dummy_start_vcpu(cpu);
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001195 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001196}
1197
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001198void cpu_stop_current(void)
Blue Swirl296af7c2010-03-29 19:23:50 +00001199{
Andreas Färber4917cf42013-05-27 05:17:50 +02001200 if (current_cpu) {
1201 current_cpu->stop = false;
1202 current_cpu->stopped = true;
1203 cpu_exit(current_cpu);
Paolo Bonzini67bb1722011-03-12 17:43:59 +01001204 qemu_cond_signal(&qemu_pause_cond);
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001205 }
Blue Swirl296af7c2010-03-29 19:23:50 +00001206}
1207
Kevin Wolf56983462013-07-05 13:49:54 +02001208int vm_stop(RunState state)
Blue Swirl296af7c2010-03-29 19:23:50 +00001209{
Juan Quintelaaa723c22012-09-18 16:30:11 +02001210 if (qemu_in_vcpu_thread()) {
Paolo Bonzini74892d22014-06-05 14:53:58 +02001211 qemu_system_vmstop_request_prepare();
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001212 qemu_system_vmstop_request(state);
Blue Swirl296af7c2010-03-29 19:23:50 +00001213 /*
1214 * FIXME: should not return to device code in case
1215 * vm_stop() has been requested.
1216 */
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001217 cpu_stop_current();
Kevin Wolf56983462013-07-05 13:49:54 +02001218 return 0;
Blue Swirl296af7c2010-03-29 19:23:50 +00001219 }
Kevin Wolf56983462013-07-05 13:49:54 +02001220
1221 return do_vm_stop(state);
Blue Swirl296af7c2010-03-29 19:23:50 +00001222}
1223
Luiz Capitulino8a9236f2011-10-14 11:18:09 -03001224/* does a state transition even if the VM is already stopped,
1225 current state is forgotten forever */
Kevin Wolf56983462013-07-05 13:49:54 +02001226int vm_stop_force_state(RunState state)
Luiz Capitulino8a9236f2011-10-14 11:18:09 -03001227{
1228 if (runstate_is_running()) {
Kevin Wolf56983462013-07-05 13:49:54 +02001229 return vm_stop(state);
Luiz Capitulino8a9236f2011-10-14 11:18:09 -03001230 } else {
1231 runstate_set(state);
Kevin Wolf594a45c2013-07-18 14:52:19 +02001232 /* Make sure to return an error if the flush in a previous vm_stop()
1233 * failed. */
1234 return bdrv_flush_all();
Luiz Capitulino8a9236f2011-10-14 11:18:09 -03001235 }
1236}
1237
Andreas Färber9349b4f2012-03-14 01:38:32 +01001238static int tcg_cpu_exec(CPUArchState *env)
Blue Swirl296af7c2010-03-29 19:23:50 +00001239{
Andreas Färberefee7342013-08-26 05:39:29 +02001240 CPUState *cpu = ENV_GET_CPU(env);
Blue Swirl296af7c2010-03-29 19:23:50 +00001241 int ret;
1242#ifdef CONFIG_PROFILER
1243 int64_t ti;
1244#endif
1245
1246#ifdef CONFIG_PROFILER
1247 ti = profile_getclock();
1248#endif
1249 if (use_icount) {
1250 int64_t count;
Alex Blighac70aaf2013-08-21 16:02:57 +01001251 int64_t deadline;
Blue Swirl296af7c2010-03-29 19:23:50 +00001252 int decr;
Andreas Färber28ecfd72013-08-26 05:51:49 +02001253 qemu_icount -= (cpu->icount_decr.u16.low + cpu->icount_extra);
1254 cpu->icount_decr.u16.low = 0;
Andreas Färberefee7342013-08-26 05:39:29 +02001255 cpu->icount_extra = 0;
Alex Bligh40daca52013-08-21 16:03:02 +01001256 deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
Alex Blighac70aaf2013-08-21 16:02:57 +01001257
1258 /* Maintain prior (possibly buggy) behaviour where if no deadline
Alex Bligh40daca52013-08-21 16:03:02 +01001259 * was set (as there is no QEMU_CLOCK_VIRTUAL timer) or it is more than
Alex Blighac70aaf2013-08-21 16:02:57 +01001260 * INT32_MAX nanoseconds ahead, we still use INT32_MAX
1261 * nanoseconds.
1262 */
1263 if ((deadline < 0) || (deadline > INT32_MAX)) {
1264 deadline = INT32_MAX;
1265 }
1266
1267 count = qemu_icount_round(deadline);
Blue Swirl296af7c2010-03-29 19:23:50 +00001268 qemu_icount += count;
1269 decr = (count > 0xffff) ? 0xffff : count;
1270 count -= decr;
Andreas Färber28ecfd72013-08-26 05:51:49 +02001271 cpu->icount_decr.u16.low = decr;
Andreas Färberefee7342013-08-26 05:39:29 +02001272 cpu->icount_extra = count;
Blue Swirl296af7c2010-03-29 19:23:50 +00001273 }
1274 ret = cpu_exec(env);
1275#ifdef CONFIG_PROFILER
1276 qemu_time += profile_getclock() - ti;
1277#endif
1278 if (use_icount) {
1279 /* Fold pending instructions back into the
1280 instruction counter, and clear the interrupt flag. */
Andreas Färber28ecfd72013-08-26 05:51:49 +02001281 qemu_icount -= (cpu->icount_decr.u16.low + cpu->icount_extra);
1282 cpu->icount_decr.u32 = 0;
Andreas Färberefee7342013-08-26 05:39:29 +02001283 cpu->icount_extra = 0;
Blue Swirl296af7c2010-03-29 19:23:50 +00001284 }
1285 return ret;
1286}
1287
Jan Kiszkabdb7ca62011-09-26 09:40:39 +02001288static void tcg_exec_all(void)
Blue Swirl296af7c2010-03-29 19:23:50 +00001289{
Jan Kiszka9a360852011-02-01 22:15:55 +01001290 int r;
1291
Alex Bligh40daca52013-08-21 16:03:02 +01001292 /* Account partial waits to QEMU_CLOCK_VIRTUAL. */
1293 qemu_clock_warp(QEMU_CLOCK_VIRTUAL);
Paolo Bonziniab33fcd2011-04-13 10:03:44 +02001294
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001295 if (next_cpu == NULL) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001296 next_cpu = first_cpu;
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001297 }
Andreas Färberbdc44642013-06-24 23:50:24 +02001298 for (; next_cpu != NULL && !exit_request; next_cpu = CPU_NEXT(next_cpu)) {
Andreas Färber182735e2013-05-29 22:29:20 +02001299 CPUState *cpu = next_cpu;
1300 CPUArchState *env = cpu->env_ptr;
Blue Swirl296af7c2010-03-29 19:23:50 +00001301
Alex Bligh40daca52013-08-21 16:03:02 +01001302 qemu_clock_enable(QEMU_CLOCK_VIRTUAL,
Andreas Färbered2803d2013-06-21 20:20:45 +02001303 (cpu->singlestep_enabled & SSTEP_NOTIMER) == 0);
Blue Swirl296af7c2010-03-29 19:23:50 +00001304
Andreas Färbera1fcaa72012-05-02 23:42:26 +02001305 if (cpu_can_run(cpu)) {
Jan Kiszkabdb7ca62011-09-26 09:40:39 +02001306 r = tcg_cpu_exec(env);
Jan Kiszka9a360852011-02-01 22:15:55 +01001307 if (r == EXCP_DEBUG) {
Andreas Färber91325042013-05-27 02:07:49 +02001308 cpu_handle_guest_debug(cpu);
Jan Kiszka3c638d02010-06-25 16:56:56 +02001309 break;
1310 }
Andreas Färberf324e762012-05-02 23:26:21 +02001311 } else if (cpu->stop || cpu->stopped) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001312 break;
1313 }
1314 }
Jan Kiszkac629a4b2010-06-25 16:56:52 +02001315 exit_request = 0;
Blue Swirl296af7c2010-03-29 19:23:50 +00001316}
1317
Stefan Weil9a78eea2010-10-22 23:03:33 +02001318void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg)
Blue Swirl262353c2010-05-04 19:55:35 +00001319{
1320 /* XXX: implement xxx_cpu_list for targets that still miss it */
Peter Maydelle916cbf2012-09-05 17:41:08 -03001321#if defined(cpu_list)
1322 cpu_list(f, cpu_fprintf);
Blue Swirl262353c2010-05-04 19:55:35 +00001323#endif
1324}
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001325
1326CpuInfoList *qmp_query_cpus(Error **errp)
1327{
1328 CpuInfoList *head = NULL, *cur_item = NULL;
Andreas Färber182735e2013-05-29 22:29:20 +02001329 CPUState *cpu;
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001330
Andreas Färberbdc44642013-06-24 23:50:24 +02001331 CPU_FOREACH(cpu) {
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001332 CpuInfoList *info;
Andreas Färber182735e2013-05-29 22:29:20 +02001333#if defined(TARGET_I386)
1334 X86CPU *x86_cpu = X86_CPU(cpu);
1335 CPUX86State *env = &x86_cpu->env;
1336#elif defined(TARGET_PPC)
1337 PowerPCCPU *ppc_cpu = POWERPC_CPU(cpu);
1338 CPUPPCState *env = &ppc_cpu->env;
1339#elif defined(TARGET_SPARC)
1340 SPARCCPU *sparc_cpu = SPARC_CPU(cpu);
1341 CPUSPARCState *env = &sparc_cpu->env;
1342#elif defined(TARGET_MIPS)
1343 MIPSCPU *mips_cpu = MIPS_CPU(cpu);
1344 CPUMIPSState *env = &mips_cpu->env;
1345#endif
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001346
Andreas Färbercb446ec2013-05-01 14:24:52 +02001347 cpu_synchronize_state(cpu);
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001348
1349 info = g_malloc0(sizeof(*info));
1350 info->value = g_malloc0(sizeof(*info->value));
Andreas Färber55e5c282012-12-17 06:18:02 +01001351 info->value->CPU = cpu->cpu_index;
Andreas Färber182735e2013-05-29 22:29:20 +02001352 info->value->current = (cpu == first_cpu);
Andreas Färber259186a2013-01-17 18:51:17 +01001353 info->value->halted = cpu->halted;
Andreas Färber9f09e182012-05-03 06:59:07 +02001354 info->value->thread_id = cpu->thread_id;
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001355#if defined(TARGET_I386)
1356 info->value->has_pc = true;
1357 info->value->pc = env->eip + env->segs[R_CS].base;
1358#elif defined(TARGET_PPC)
1359 info->value->has_nip = true;
1360 info->value->nip = env->nip;
1361#elif defined(TARGET_SPARC)
1362 info->value->has_pc = true;
1363 info->value->pc = env->pc;
1364 info->value->has_npc = true;
1365 info->value->npc = env->npc;
1366#elif defined(TARGET_MIPS)
1367 info->value->has_PC = true;
1368 info->value->PC = env->active_tc.PC;
1369#endif
1370
1371 /* XXX: waiting for the qapi to support GSList */
1372 if (!cur_item) {
1373 head = cur_item = info;
1374 } else {
1375 cur_item->next = info;
1376 cur_item = info;
1377 }
1378 }
1379
1380 return head;
1381}
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001382
1383void qmp_memsave(int64_t addr, int64_t size, const char *filename,
1384 bool has_cpu, int64_t cpu_index, Error **errp)
1385{
1386 FILE *f;
1387 uint32_t l;
Andreas Färber55e5c282012-12-17 06:18:02 +01001388 CPUState *cpu;
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001389 uint8_t buf[1024];
1390
1391 if (!has_cpu) {
1392 cpu_index = 0;
1393 }
1394
Andreas Färber151d1322013-02-15 15:41:49 +01001395 cpu = qemu_get_cpu(cpu_index);
1396 if (cpu == NULL) {
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001397 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
1398 "a CPU number");
1399 return;
1400 }
1401
1402 f = fopen(filename, "wb");
1403 if (!f) {
Luiz Capitulino618da852013-06-07 14:35:06 -04001404 error_setg_file_open(errp, errno, filename);
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001405 return;
1406 }
1407
1408 while (size != 0) {
1409 l = sizeof(buf);
1410 if (l > size)
1411 l = size;
Aneesh Kumar K.V2f4d0f52013-10-01 21:49:30 +05301412 if (cpu_memory_rw_debug(cpu, addr, buf, l, 0) != 0) {
1413 error_setg(errp, "Invalid addr 0x%016" PRIx64 "specified", addr);
1414 goto exit;
1415 }
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001416 if (fwrite(buf, 1, l, f) != l) {
1417 error_set(errp, QERR_IO_ERROR);
1418 goto exit;
1419 }
1420 addr += l;
1421 size -= l;
1422 }
1423
1424exit:
1425 fclose(f);
1426}
Luiz Capitulino6d3962b2011-11-22 17:26:46 -02001427
1428void qmp_pmemsave(int64_t addr, int64_t size, const char *filename,
1429 Error **errp)
1430{
1431 FILE *f;
1432 uint32_t l;
1433 uint8_t buf[1024];
1434
1435 f = fopen(filename, "wb");
1436 if (!f) {
Luiz Capitulino618da852013-06-07 14:35:06 -04001437 error_setg_file_open(errp, errno, filename);
Luiz Capitulino6d3962b2011-11-22 17:26:46 -02001438 return;
1439 }
1440
1441 while (size != 0) {
1442 l = sizeof(buf);
1443 if (l > size)
1444 l = size;
Stefan Weileb6282f2014-04-07 20:28:23 +02001445 cpu_physical_memory_read(addr, buf, l);
Luiz Capitulino6d3962b2011-11-22 17:26:46 -02001446 if (fwrite(buf, 1, l, f) != l) {
1447 error_set(errp, QERR_IO_ERROR);
1448 goto exit;
1449 }
1450 addr += l;
1451 size -= l;
1452 }
1453
1454exit:
1455 fclose(f);
1456}
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001457
1458void qmp_inject_nmi(Error **errp)
1459{
1460#if defined(TARGET_I386)
Andreas Färber182735e2013-05-29 22:29:20 +02001461 CPUState *cs;
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001462
Andreas Färberbdc44642013-06-24 23:50:24 +02001463 CPU_FOREACH(cs) {
Andreas Färber182735e2013-05-29 22:29:20 +02001464 X86CPU *cpu = X86_CPU(cs);
Andreas Färber182735e2013-05-29 22:29:20 +02001465
Chen Fan02e51482013-12-23 17:04:02 +08001466 if (!cpu->apic_state) {
Andreas Färber182735e2013-05-29 22:29:20 +02001467 cpu_interrupt(cs, CPU_INTERRUPT_NMI);
Jan Kiszka02c09192011-10-18 00:00:06 +08001468 } else {
Chen Fan02e51482013-12-23 17:04:02 +08001469 apic_deliver_nmi(cpu->apic_state);
Jan Kiszka02c09192011-10-18 00:00:06 +08001470 }
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001471 }
Eugene (jno) Dvurechenski7f7f9752012-12-05 15:50:07 +01001472#elif defined(TARGET_S390X)
1473 CPUState *cs;
1474 S390CPU *cpu;
1475
Andreas Färberbdc44642013-06-24 23:50:24 +02001476 CPU_FOREACH(cs) {
Eugene (jno) Dvurechenski7f7f9752012-12-05 15:50:07 +01001477 cpu = S390_CPU(cs);
1478 if (cpu->env.cpu_num == monitor_get_cpu_index()) {
1479 if (s390_cpu_restart(S390_CPU(cs)) == -1) {
1480 error_set(errp, QERR_UNSUPPORTED);
1481 return;
1482 }
1483 break;
1484 }
1485 }
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001486#else
1487 error_set(errp, QERR_UNSUPPORTED);
1488#endif
1489}