]>
Commit | Line | Data |
---|---|---|
296af7c9 BS |
1 | /* |
2 | * QEMU System Emulator | |
3 | * | |
4 | * Copyright (c) 2003-2008 Fabrice Bellard | |
5 | * | |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
24 | ||
7b31bbc2 | 25 | #include "qemu/osdep.h" |
83c9089e | 26 | #include "monitor/monitor.h" |
d5d2b15e | 27 | #include "qemu/coroutine-tls.h" |
e688df6b | 28 | #include "qapi/error.h" |
df7a1f48 | 29 | #include "qapi/qapi-commands-machine.h" |
112ed241 | 30 | #include "qapi/qapi-commands-misc.h" |
9af23989 | 31 | #include "qapi/qapi-events-run-state.h" |
a4e15de9 | 32 | #include "qapi/qmp/qerror.h" |
022c62cb | 33 | #include "exec/gdbstub.h" |
b3946626 | 34 | #include "sysemu/hw_accel.h" |
73842ef0 | 35 | #include "exec/cpu-common.h" |
1de7afc9 | 36 | #include "qemu/thread.h" |
30865f31 | 37 | #include "qemu/plugin.h" |
9c17d615 | 38 | #include "sysemu/cpus.h" |
9c09a251 | 39 | #include "qemu/guest-random.h" |
9cb805fd | 40 | #include "hw/nmi.h" |
8b427044 | 41 | #include "sysemu/replay.h" |
54d31236 | 42 | #include "sysemu/runstate.h" |
740b1759 | 43 | #include "sysemu/cpu-timers.h" |
faf20793 | 44 | #include "sysemu/whpx.h" |
5cc8767d | 45 | #include "hw/boards.h" |
650d103d | 46 | #include "hw/hw.h" |
8af3f5c6 | 47 | #include "trace.h" |
0ff0fc19 | 48 | |
6d9cb73c JK |
49 | #ifdef CONFIG_LINUX |
50 | ||
51 | #include <sys/prctl.h> | |
52 | ||
c0532a76 MT |
53 | #ifndef PR_MCE_KILL |
54 | #define PR_MCE_KILL 33 | |
55 | #endif | |
56 | ||
6d9cb73c JK |
57 | #ifndef PR_MCE_KILL_SET |
58 | #define PR_MCE_KILL_SET 1 | |
59 | #endif | |
60 | ||
61 | #ifndef PR_MCE_KILL_EARLY | |
62 | #define PR_MCE_KILL_EARLY 1 | |
63 | #endif | |
64 | ||
65 | #endif /* CONFIG_LINUX */ | |
66 | ||
bd1f7ff4 YK |
67 | static QemuMutex qemu_global_mutex; |
68 | ||
5f74af8b PMD |
69 | /* |
70 | * The chosen accelerator is supposed to register this. | |
71 | */ | |
72 | static const AccelOpsClass *cpus_accel; | |
73 | ||
321bc0b2 TC |
74 | bool cpu_is_stopped(CPUState *cpu) |
75 | { | |
76 | return cpu->stopped || !runstate_is_running(); | |
77 | } | |
78 | ||
430065da | 79 | bool cpu_work_list_empty(CPUState *cpu) |
0c0fcc20 | 80 | { |
25e82fb7 | 81 | return QSIMPLEQ_EMPTY_ATOMIC(&cpu->work_list); |
0c0fcc20 EC |
82 | } |
83 | ||
430065da | 84 | bool cpu_thread_is_idle(CPUState *cpu) |
ac873f1e | 85 | { |
0c0fcc20 | 86 | if (cpu->stop || !cpu_work_list_empty(cpu)) { |
ac873f1e PM |
87 | return false; |
88 | } | |
321bc0b2 | 89 | if (cpu_is_stopped(cpu)) { |
ac873f1e PM |
90 | return true; |
91 | } | |
ad7d684d | 92 | if (!cpu->halted || cpu_has_work(cpu)) { |
ac873f1e PM |
93 | return false; |
94 | } | |
ad7d684d PMD |
95 | if (cpus_accel->cpu_thread_is_idle) { |
96 | return cpus_accel->cpu_thread_is_idle(cpu); | |
97 | } | |
ac873f1e PM |
98 | return true; |
99 | } | |
100 | ||
740b1759 | 101 | bool all_cpu_threads_idle(void) |
ac873f1e | 102 | { |
182735ef | 103 | CPUState *cpu; |
ac873f1e | 104 | |
bdc44640 | 105 | CPU_FOREACH(cpu) { |
182735ef | 106 | if (!cpu_thread_is_idle(cpu)) { |
ac873f1e PM |
107 | return false; |
108 | } | |
109 | } | |
110 | return true; | |
111 | } | |
112 | ||
296af7c9 BS |
113 | /***********************************************************/ |
114 | void hw_error(const char *fmt, ...) | |
115 | { | |
116 | va_list ap; | |
55e5c285 | 117 | CPUState *cpu; |
296af7c9 BS |
118 | |
119 | va_start(ap, fmt); | |
120 | fprintf(stderr, "qemu: hardware error: "); | |
121 | vfprintf(stderr, fmt, ap); | |
122 | fprintf(stderr, "\n"); | |
bdc44640 | 123 | CPU_FOREACH(cpu) { |
55e5c285 | 124 | fprintf(stderr, "CPU #%d:\n", cpu->cpu_index); |
90c84c56 | 125 | cpu_dump_state(cpu, stderr, CPU_DUMP_FPU); |
296af7c9 BS |
126 | } |
127 | va_end(ap); | |
128 | abort(); | |
129 | } | |
130 | ||
131 | void cpu_synchronize_all_states(void) | |
132 | { | |
182735ef | 133 | CPUState *cpu; |
296af7c9 | 134 | |
bdc44640 | 135 | CPU_FOREACH(cpu) { |
182735ef | 136 | cpu_synchronize_state(cpu); |
296af7c9 BS |
137 | } |
138 | } | |
139 | ||
140 | void cpu_synchronize_all_post_reset(void) | |
141 | { | |
182735ef | 142 | CPUState *cpu; |
296af7c9 | 143 | |
bdc44640 | 144 | CPU_FOREACH(cpu) { |
182735ef | 145 | cpu_synchronize_post_reset(cpu); |
296af7c9 BS |
146 | } |
147 | } | |
148 | ||
149 | void cpu_synchronize_all_post_init(void) | |
150 | { | |
182735ef | 151 | CPUState *cpu; |
296af7c9 | 152 | |
bdc44640 | 153 | CPU_FOREACH(cpu) { |
182735ef | 154 | cpu_synchronize_post_init(cpu); |
296af7c9 BS |
155 | } |
156 | } | |
157 | ||
75e972da DG |
158 | void cpu_synchronize_all_pre_loadvm(void) |
159 | { | |
160 | CPUState *cpu; | |
161 | ||
162 | CPU_FOREACH(cpu) { | |
163 | cpu_synchronize_pre_loadvm(cpu); | |
164 | } | |
165 | } | |
166 | ||
430065da CF |
167 | void cpu_synchronize_state(CPUState *cpu) |
168 | { | |
994aa172 | 169 | if (cpus_accel->synchronize_state) { |
430065da CF |
170 | cpus_accel->synchronize_state(cpu); |
171 | } | |
430065da CF |
172 | } |
173 | ||
174 | void cpu_synchronize_post_reset(CPUState *cpu) | |
175 | { | |
994aa172 | 176 | if (cpus_accel->synchronize_post_reset) { |
430065da CF |
177 | cpus_accel->synchronize_post_reset(cpu); |
178 | } | |
430065da CF |
179 | } |
180 | ||
181 | void cpu_synchronize_post_init(CPUState *cpu) | |
182 | { | |
994aa172 | 183 | if (cpus_accel->synchronize_post_init) { |
430065da CF |
184 | cpus_accel->synchronize_post_init(cpu); |
185 | } | |
430065da CF |
186 | } |
187 | ||
188 | void cpu_synchronize_pre_loadvm(CPUState *cpu) | |
189 | { | |
994aa172 | 190 | if (cpus_accel->synchronize_pre_loadvm) { |
430065da CF |
191 | cpus_accel->synchronize_pre_loadvm(cpu); |
192 | } | |
430065da CF |
193 | } |
194 | ||
92a5199b TL |
195 | bool cpus_are_resettable(void) |
196 | { | |
39196355 PMD |
197 | if (cpus_accel->cpus_are_resettable) { |
198 | return cpus_accel->cpus_are_resettable(); | |
199 | } | |
200 | return true; | |
92a5199b TL |
201 | } |
202 | ||
430065da CF |
203 | int64_t cpus_get_virtual_clock(void) |
204 | { | |
994aa172 CF |
205 | /* |
206 | * XXX | |
207 | * | |
208 | * need to check that cpus_accel is not NULL, because qcow2 calls | |
209 | * qemu_get_clock_ns(CLOCK_VIRTUAL) without any accel initialized and | |
210 | * with ticks disabled in some io-tests: | |
211 | * 030 040 041 060 099 120 127 140 156 161 172 181 191 192 195 203 229 249 256 267 | |
212 | * | |
213 | * is this expected? | |
214 | * | |
215 | * XXX | |
216 | */ | |
430065da CF |
217 | if (cpus_accel && cpus_accel->get_virtual_clock) { |
218 | return cpus_accel->get_virtual_clock(); | |
219 | } | |
430065da CF |
220 | return cpu_get_clock(); |
221 | } | |
222 | ||
223 | /* | |
224 | * return the time elapsed in VM between vm_start and vm_stop. Unless | |
225 | * icount is active, cpus_get_elapsed_ticks() uses units of the host CPU cycle | |
226 | * counter. | |
227 | */ | |
228 | int64_t cpus_get_elapsed_ticks(void) | |
229 | { | |
994aa172 | 230 | if (cpus_accel->get_elapsed_ticks) { |
430065da CF |
231 | return cpus_accel->get_elapsed_ticks(); |
232 | } | |
430065da CF |
233 | return cpu_get_ticks(); |
234 | } | |
235 | ||
bb4776be CF |
236 | static void generic_handle_interrupt(CPUState *cpu, int mask) |
237 | { | |
238 | cpu->interrupt_request |= mask; | |
239 | ||
240 | if (!qemu_cpu_is_self(cpu)) { | |
241 | qemu_cpu_kick(cpu); | |
242 | } | |
243 | } | |
244 | ||
245 | void cpu_interrupt(CPUState *cpu, int mask) | |
246 | { | |
247 | if (cpus_accel->handle_interrupt) { | |
248 | cpus_accel->handle_interrupt(cpu, mask); | |
249 | } else { | |
250 | generic_handle_interrupt(cpu, mask); | |
251 | } | |
252 | } | |
253 | ||
4486e89c | 254 | static int do_vm_stop(RunState state, bool send_stop) |
296af7c9 | 255 | { |
56983463 KW |
256 | int ret = 0; |
257 | ||
1354869c | 258 | if (runstate_is_running()) { |
f962cac4 | 259 | runstate_set(state); |
296af7c9 | 260 | cpu_disable_ticks(); |
296af7c9 | 261 | pause_all_vcpus(); |
1dfb4dd9 | 262 | vm_state_notify(0, state); |
4486e89c | 263 | if (send_stop) { |
3ab72385 | 264 | qapi_event_send_stop(); |
4486e89c | 265 | } |
296af7c9 | 266 | } |
56983463 | 267 | |
594a45ce | 268 | bdrv_drain_all(); |
22af08ea | 269 | ret = bdrv_flush_all(); |
8af3f5c6 | 270 | trace_vm_stop_flush_all(ret); |
594a45ce | 271 | |
56983463 | 272 | return ret; |
296af7c9 BS |
273 | } |
274 | ||
4486e89c SH |
275 | /* Special vm_stop() variant for terminating the process. Historically clients |
276 | * did not expect a QMP STOP event and so we need to retain compatibility. | |
277 | */ | |
278 | int vm_shutdown(void) | |
279 | { | |
280 | return do_vm_stop(RUN_STATE_SHUTDOWN, false); | |
281 | } | |
282 | ||
430065da | 283 | bool cpu_can_run(CPUState *cpu) |
296af7c9 | 284 | { |
4fdeee7c | 285 | if (cpu->stop) { |
a1fcaa73 | 286 | return false; |
0ab07c62 | 287 | } |
321bc0b2 | 288 | if (cpu_is_stopped(cpu)) { |
a1fcaa73 | 289 | return false; |
0ab07c62 | 290 | } |
a1fcaa73 | 291 | return true; |
296af7c9 BS |
292 | } |
293 | ||
430065da | 294 | void cpu_handle_guest_debug(CPUState *cpu) |
83f338f7 | 295 | { |
fda8458b PD |
296 | if (replay_running_debug()) { |
297 | if (!cpu->singlestep_enabled) { | |
cda38259 PD |
298 | /* |
299 | * Report about the breakpoint and | |
300 | * make a single step to skip it | |
301 | */ | |
302 | replay_breakpoint(); | |
fda8458b PD |
303 | cpu_single_step(cpu, SSTEP_ENABLE); |
304 | } else { | |
305 | cpu_single_step(cpu, 0); | |
306 | } | |
307 | } else { | |
308 | gdb_set_stop_cpu(cpu); | |
309 | qemu_system_debug_request(); | |
310 | cpu->stopped = true; | |
311 | } | |
3c638d06 JK |
312 | } |
313 | ||
6d9cb73c JK |
314 | #ifdef CONFIG_LINUX |
315 | static void sigbus_reraise(void) | |
316 | { | |
317 | sigset_t set; | |
318 | struct sigaction action; | |
319 | ||
320 | memset(&action, 0, sizeof(action)); | |
321 | action.sa_handler = SIG_DFL; | |
322 | if (!sigaction(SIGBUS, &action, NULL)) { | |
323 | raise(SIGBUS); | |
324 | sigemptyset(&set); | |
325 | sigaddset(&set, SIGBUS); | |
a2d1761d | 326 | pthread_sigmask(SIG_UNBLOCK, &set, NULL); |
6d9cb73c | 327 | } |
eb1960aa | 328 | perror("Failed to re-raise SIGBUS!"); |
6d9cb73c JK |
329 | abort(); |
330 | } | |
331 | ||
d98d4072 | 332 | static void sigbus_handler(int n, siginfo_t *siginfo, void *ctx) |
6d9cb73c | 333 | { |
a16fc07e PB |
334 | if (siginfo->si_code != BUS_MCEERR_AO && siginfo->si_code != BUS_MCEERR_AR) { |
335 | sigbus_reraise(); | |
336 | } | |
337 | ||
2ae41db2 PB |
338 | if (current_cpu) { |
339 | /* Called asynchronously in VCPU thread. */ | |
340 | if (kvm_on_sigbus_vcpu(current_cpu, siginfo->si_code, siginfo->si_addr)) { | |
341 | sigbus_reraise(); | |
342 | } | |
343 | } else { | |
344 | /* Called synchronously (via signalfd) in main thread. */ | |
345 | if (kvm_on_sigbus(siginfo->si_code, siginfo->si_addr)) { | |
346 | sigbus_reraise(); | |
347 | } | |
6d9cb73c JK |
348 | } |
349 | } | |
350 | ||
351 | static void qemu_init_sigbus(void) | |
352 | { | |
353 | struct sigaction action; | |
354 | ||
29b838c0 DH |
355 | /* |
356 | * ALERT: when modifying this, take care that SIGBUS forwarding in | |
6556aadc | 357 | * qemu_prealloc_mem() will continue working as expected. |
29b838c0 | 358 | */ |
6d9cb73c JK |
359 | memset(&action, 0, sizeof(action)); |
360 | action.sa_flags = SA_SIGINFO; | |
d98d4072 | 361 | action.sa_sigaction = sigbus_handler; |
6d9cb73c JK |
362 | sigaction(SIGBUS, &action, NULL); |
363 | ||
364 | prctl(PR_MCE_KILL, PR_MCE_KILL_SET, PR_MCE_KILL_EARLY, 0, 0); | |
365 | } | |
6d9cb73c | 366 | #else /* !CONFIG_LINUX */ |
6d9cb73c JK |
367 | static void qemu_init_sigbus(void) |
368 | { | |
369 | } | |
a16fc07e | 370 | #endif /* !CONFIG_LINUX */ |
ff48eb5f | 371 | |
296af7c9 BS |
372 | static QemuThread io_thread; |
373 | ||
296af7c9 BS |
374 | /* cpu creation */ |
375 | static QemuCond qemu_cpu_cond; | |
376 | /* system init */ | |
296af7c9 BS |
377 | static QemuCond qemu_pause_cond; |
378 | ||
d3b12f5d | 379 | void qemu_init_cpu_loop(void) |
296af7c9 | 380 | { |
6d9cb73c | 381 | qemu_init_sigbus(); |
ed94592b | 382 | qemu_cond_init(&qemu_cpu_cond); |
ed94592b | 383 | qemu_cond_init(&qemu_pause_cond); |
296af7c9 | 384 | qemu_mutex_init(&qemu_global_mutex); |
296af7c9 | 385 | |
b7680cb6 | 386 | qemu_thread_get_self(&io_thread); |
296af7c9 BS |
387 | } |
388 | ||
14e6fe12 | 389 | void run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data) |
e82bcec2 | 390 | { |
d148d90e | 391 | do_run_on_cpu(cpu, func, data, &qemu_global_mutex); |
3c02270d CV |
392 | } |
393 | ||
ebd05fea DH |
394 | static void qemu_cpu_stop(CPUState *cpu, bool exit) |
395 | { | |
396 | g_assert(qemu_cpu_is_self(cpu)); | |
397 | cpu->stop = false; | |
398 | cpu->stopped = true; | |
399 | if (exit) { | |
400 | cpu_exit(cpu); | |
401 | } | |
402 | qemu_cond_broadcast(&qemu_pause_cond); | |
403 | } | |
404 | ||
430065da | 405 | void qemu_wait_io_event_common(CPUState *cpu) |
296af7c9 | 406 | { |
d73415a3 | 407 | qatomic_mb_set(&cpu->thread_kicked, false); |
4fdeee7c | 408 | if (cpu->stop) { |
ebd05fea | 409 | qemu_cpu_stop(cpu, false); |
296af7c9 | 410 | } |
a5403c69 | 411 | process_queued_cpu_work(cpu); |
37257942 AB |
412 | } |
413 | ||
430065da | 414 | void qemu_wait_io_event(CPUState *cpu) |
296af7c9 | 415 | { |
30865f31 EC |
416 | bool slept = false; |
417 | ||
a98ae1d8 | 418 | while (cpu_thread_is_idle(cpu)) { |
30865f31 EC |
419 | if (!slept) { |
420 | slept = true; | |
421 | qemu_plugin_vcpu_idle_cb(cpu); | |
422 | } | |
f5c121b8 | 423 | qemu_cond_wait(cpu->halt_cond, &qemu_global_mutex); |
16400322 | 424 | } |
30865f31 EC |
425 | if (slept) { |
426 | qemu_plugin_vcpu_resume_cb(cpu); | |
427 | } | |
296af7c9 | 428 | |
db08b687 | 429 | #ifdef _WIN32 |
430065da CF |
430 | /* Eat dummy APC queued by cpus_kick_thread. */ |
431 | if (hax_enabled()) { | |
db08b687 | 432 | SleepEx(0, TRUE); |
c97d6d2c | 433 | } |
db08b687 | 434 | #endif |
c97d6d2c SAGDR |
435 | qemu_wait_io_event_common(cpu); |
436 | } | |
437 | ||
430065da | 438 | void cpus_kick_thread(CPUState *cpu) |
cc015e9a | 439 | { |
e0c38211 PB |
440 | if (cpu->thread_kicked) { |
441 | return; | |
9102deda | 442 | } |
e0c38211 | 443 | cpu->thread_kicked = true; |
c9923550 XC |
444 | |
445 | #ifndef _WIN32 | |
446 | int err = pthread_kill(cpu->thread->thread, SIG_IPI); | |
d455ebc4 | 447 | if (err && err != ESRCH) { |
cc015e9a PB |
448 | fprintf(stderr, "qemu:%s: %s", __func__, strerror(err)); |
449 | exit(1); | |
450 | } | |
c9923550 XC |
451 | #else |
452 | qemu_sem_post(&cpu->sem); | |
e0c38211 PB |
453 | #endif |
454 | } | |
ed9164a3 | 455 | |
c08d7424 | 456 | void qemu_cpu_kick(CPUState *cpu) |
296af7c9 | 457 | { |
f5c121b8 | 458 | qemu_cond_broadcast(cpu->halt_cond); |
994aa172 | 459 | if (cpus_accel->kick_vcpu_thread) { |
430065da | 460 | cpus_accel->kick_vcpu_thread(cpu); |
e92558e4 | 461 | } else { /* default */ |
430065da | 462 | cpus_kick_thread(cpu); |
e0c38211 | 463 | } |
296af7c9 BS |
464 | } |
465 | ||
46d62fac | 466 | void qemu_cpu_kick_self(void) |
296af7c9 | 467 | { |
4917cf44 | 468 | assert(current_cpu); |
430065da | 469 | cpus_kick_thread(current_cpu); |
296af7c9 BS |
470 | } |
471 | ||
60e82579 | 472 | bool qemu_cpu_is_self(CPUState *cpu) |
296af7c9 | 473 | { |
814e612e | 474 | return qemu_thread_is_self(cpu->thread); |
296af7c9 BS |
475 | } |
476 | ||
79e2b9ae | 477 | bool qemu_in_vcpu_thread(void) |
aa723c23 | 478 | { |
4917cf44 | 479 | return current_cpu && qemu_cpu_is_self(current_cpu); |
aa723c23 JQ |
480 | } |
481 | ||
d5d2b15e | 482 | QEMU_DEFINE_STATIC_CO_TLS(bool, iothread_locked) |
afbe7053 PB |
483 | |
484 | bool qemu_mutex_iothread_locked(void) | |
485 | { | |
d5d2b15e | 486 | return get_iothread_locked(); |
afbe7053 PB |
487 | } |
488 | ||
6538692e EGE |
489 | bool qemu_in_main_thread(void) |
490 | { | |
491 | return qemu_mutex_iothread_locked(); | |
492 | } | |
493 | ||
cb764d06 EC |
494 | /* |
495 | * The BQL is taken from so many places that it is worth profiling the | |
496 | * callers directly, instead of funneling them all through a single function. | |
497 | */ | |
498 | void qemu_mutex_lock_iothread_impl(const char *file, int line) | |
296af7c9 | 499 | { |
d73415a3 | 500 | QemuMutexLockFunc bql_lock = qatomic_read(&qemu_bql_mutex_lock_func); |
cb764d06 | 501 | |
8d04fb55 | 502 | g_assert(!qemu_mutex_iothread_locked()); |
cb764d06 | 503 | bql_lock(&qemu_global_mutex, file, line); |
d5d2b15e | 504 | set_iothread_locked(true); |
296af7c9 BS |
505 | } |
506 | ||
507 | void qemu_mutex_unlock_iothread(void) | |
508 | { | |
8d04fb55 | 509 | g_assert(qemu_mutex_iothread_locked()); |
d5d2b15e | 510 | set_iothread_locked(false); |
296af7c9 BS |
511 | qemu_mutex_unlock(&qemu_global_mutex); |
512 | } | |
513 | ||
19e067e0 AP |
514 | void qemu_cond_wait_iothread(QemuCond *cond) |
515 | { | |
516 | qemu_cond_wait(cond, &qemu_global_mutex); | |
517 | } | |
518 | ||
b0c3cf94 CF |
519 | void qemu_cond_timedwait_iothread(QemuCond *cond, int ms) |
520 | { | |
521 | qemu_cond_timedwait(cond, &qemu_global_mutex, ms); | |
522 | } | |
523 | ||
430065da CF |
524 | /* signal CPU creation */ |
525 | void cpu_thread_signal_created(CPUState *cpu) | |
526 | { | |
527 | cpu->created = true; | |
528 | qemu_cond_signal(&qemu_cpu_cond); | |
529 | } | |
530 | ||
531 | /* signal CPU destruction */ | |
532 | void cpu_thread_signal_destroyed(CPUState *cpu) | |
533 | { | |
534 | cpu->created = false; | |
535 | qemu_cond_signal(&qemu_cpu_cond); | |
536 | } | |
537 | ||
538 | ||
e8faee06 | 539 | static bool all_vcpus_paused(void) |
296af7c9 | 540 | { |
bdc44640 | 541 | CPUState *cpu; |
296af7c9 | 542 | |
bdc44640 | 543 | CPU_FOREACH(cpu) { |
182735ef | 544 | if (!cpu->stopped) { |
e8faee06 | 545 | return false; |
0ab07c62 | 546 | } |
296af7c9 BS |
547 | } |
548 | ||
e8faee06 | 549 | return true; |
296af7c9 BS |
550 | } |
551 | ||
552 | void pause_all_vcpus(void) | |
553 | { | |
bdc44640 | 554 | CPUState *cpu; |
296af7c9 | 555 | |
40daca54 | 556 | qemu_clock_enable(QEMU_CLOCK_VIRTUAL, false); |
bdc44640 | 557 | CPU_FOREACH(cpu) { |
ebd05fea DH |
558 | if (qemu_cpu_is_self(cpu)) { |
559 | qemu_cpu_stop(cpu, true); | |
560 | } else { | |
561 | cpu->stop = true; | |
562 | qemu_cpu_kick(cpu); | |
563 | } | |
d798e974 JK |
564 | } |
565 | ||
d759c951 AB |
566 | /* We need to drop the replay_lock so any vCPU threads woken up |
567 | * can finish their replay tasks | |
568 | */ | |
569 | replay_mutex_unlock(); | |
570 | ||
296af7c9 | 571 | while (!all_vcpus_paused()) { |
be7d6c57 | 572 | qemu_cond_wait(&qemu_pause_cond, &qemu_global_mutex); |
bdc44640 | 573 | CPU_FOREACH(cpu) { |
182735ef | 574 | qemu_cpu_kick(cpu); |
296af7c9 BS |
575 | } |
576 | } | |
d759c951 AB |
577 | |
578 | qemu_mutex_unlock_iothread(); | |
579 | replay_mutex_lock(); | |
580 | qemu_mutex_lock_iothread(); | |
296af7c9 BS |
581 | } |
582 | ||
2993683b IM |
583 | void cpu_resume(CPUState *cpu) |
584 | { | |
585 | cpu->stop = false; | |
586 | cpu->stopped = false; | |
587 | qemu_cpu_kick(cpu); | |
588 | } | |
589 | ||
296af7c9 BS |
590 | void resume_all_vcpus(void) |
591 | { | |
bdc44640 | 592 | CPUState *cpu; |
296af7c9 | 593 | |
f962cac4 LM |
594 | if (!runstate_is_running()) { |
595 | return; | |
596 | } | |
597 | ||
40daca54 | 598 | qemu_clock_enable(QEMU_CLOCK_VIRTUAL, true); |
bdc44640 | 599 | CPU_FOREACH(cpu) { |
182735ef | 600 | cpu_resume(cpu); |
296af7c9 BS |
601 | } |
602 | } | |
603 | ||
dbadee4f | 604 | void cpu_remove_sync(CPUState *cpu) |
4c055ab5 GZ |
605 | { |
606 | cpu->stop = true; | |
607 | cpu->unplug = true; | |
608 | qemu_cpu_kick(cpu); | |
dbadee4f PB |
609 | qemu_mutex_unlock_iothread(); |
610 | qemu_thread_join(cpu->thread); | |
611 | qemu_mutex_lock_iothread(); | |
2c579042 BR |
612 | } |
613 | ||
b86f59c7 | 614 | void cpus_register_accel(const AccelOpsClass *ops) |
430065da | 615 | { |
b86f59c7 CF |
616 | assert(ops != NULL); |
617 | assert(ops->create_vcpu_thread != NULL); /* mandatory */ | |
618 | cpus_accel = ops; | |
430065da CF |
619 | } |
620 | ||
ae7467b1 AB |
621 | const AccelOpsClass *cpus_get_accel(void) |
622 | { | |
623 | /* broken if we call this early */ | |
624 | assert(cpus_accel); | |
625 | return cpus_accel; | |
626 | } | |
627 | ||
c643bed9 | 628 | void qemu_init_vcpu(CPUState *cpu) |
296af7c9 | 629 | { |
5cc8767d LX |
630 | MachineState *ms = MACHINE(qdev_get_machine()); |
631 | ||
632 | cpu->nr_cores = ms->smp.cores; | |
633 | cpu->nr_threads = ms->smp.threads; | |
f324e766 | 634 | cpu->stopped = true; |
9c09a251 | 635 | cpu->random_seed = qemu_guest_random_seed_thread_part1(); |
56943e8c PM |
636 | |
637 | if (!cpu->as) { | |
638 | /* If the target cpu hasn't set up any address spaces itself, | |
639 | * give it the default one. | |
640 | */ | |
12ebc9a7 | 641 | cpu->num_ases = 1; |
80ceb07a | 642 | cpu_address_space_init(cpu, 0, "cpu-memory", cpu->memory); |
56943e8c PM |
643 | } |
644 | ||
b86f59c7 | 645 | /* accelerators all implement the AccelOpsClass */ |
994aa172 CF |
646 | g_assert(cpus_accel != NULL && cpus_accel->create_vcpu_thread != NULL); |
647 | cpus_accel->create_vcpu_thread(cpu); | |
81e96311 DH |
648 | |
649 | while (!cpu->created) { | |
650 | qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex); | |
651 | } | |
296af7c9 BS |
652 | } |
653 | ||
b4a3d965 | 654 | void cpu_stop_current(void) |
296af7c9 | 655 | { |
4917cf44 | 656 | if (current_cpu) { |
0ec7e677 PM |
657 | current_cpu->stop = true; |
658 | cpu_exit(current_cpu); | |
b4a3d965 | 659 | } |
296af7c9 BS |
660 | } |
661 | ||
56983463 | 662 | int vm_stop(RunState state) |
296af7c9 | 663 | { |
aa723c23 | 664 | if (qemu_in_vcpu_thread()) { |
74892d24 | 665 | qemu_system_vmstop_request_prepare(); |
1dfb4dd9 | 666 | qemu_system_vmstop_request(state); |
296af7c9 BS |
667 | /* |
668 | * FIXME: should not return to device code in case | |
669 | * vm_stop() has been requested. | |
670 | */ | |
b4a3d965 | 671 | cpu_stop_current(); |
56983463 | 672 | return 0; |
296af7c9 | 673 | } |
56983463 | 674 | |
4486e89c | 675 | return do_vm_stop(state, true); |
296af7c9 BS |
676 | } |
677 | ||
2d76e823 CI |
678 | /** |
679 | * Prepare for (re)starting the VM. | |
680 | * Returns -1 if the vCPUs are not to be restarted (e.g. if they are already | |
681 | * running or in case of an error condition), 0 otherwise. | |
682 | */ | |
d7482ffe | 683 | int vm_prepare_start(bool step_pending) |
2d76e823 CI |
684 | { |
685 | RunState requested; | |
2d76e823 CI |
686 | |
687 | qemu_vmstop_requested(&requested); | |
688 | if (runstate_is_running() && requested == RUN_STATE__MAX) { | |
689 | return -1; | |
690 | } | |
691 | ||
692 | /* Ensure that a STOP/RESUME pair of events is emitted if a | |
693 | * vmstop request was pending. The BLOCK_IO_ERROR event, for | |
694 | * example, according to documentation is always followed by | |
695 | * the STOP event. | |
696 | */ | |
697 | if (runstate_is_running()) { | |
3ab72385 PX |
698 | qapi_event_send_stop(); |
699 | qapi_event_send_resume(); | |
f056158d | 700 | return -1; |
2d76e823 CI |
701 | } |
702 | ||
d7482ffe IS |
703 | /* |
704 | * WHPX accelerator needs to know whether we are going to step | |
705 | * any CPUs, before starting the first one. | |
706 | */ | |
707 | if (cpus_accel->synchronize_pre_resume) { | |
708 | cpus_accel->synchronize_pre_resume(step_pending); | |
709 | } | |
710 | ||
2d76e823 | 711 | /* We are sending this now, but the CPUs will be resumed shortly later */ |
3ab72385 | 712 | qapi_event_send_resume(); |
f056158d | 713 | |
f056158d MA |
714 | cpu_enable_ticks(); |
715 | runstate_set(RUN_STATE_RUNNING); | |
716 | vm_state_notify(1, RUN_STATE_RUNNING); | |
717 | return 0; | |
2d76e823 CI |
718 | } |
719 | ||
720 | void vm_start(void) | |
721 | { | |
d7482ffe | 722 | if (!vm_prepare_start(false)) { |
2d76e823 CI |
723 | resume_all_vcpus(); |
724 | } | |
725 | } | |
726 | ||
8a9236f1 LC |
727 | /* does a state transition even if the VM is already stopped, |
728 | current state is forgotten forever */ | |
56983463 | 729 | int vm_stop_force_state(RunState state) |
8a9236f1 LC |
730 | { |
731 | if (runstate_is_running()) { | |
56983463 | 732 | return vm_stop(state); |
8a9236f1 | 733 | } else { |
8af3f5c6 | 734 | int ret; |
8a9236f1 | 735 | runstate_set(state); |
b2780d32 WC |
736 | |
737 | bdrv_drain_all(); | |
594a45ce KW |
738 | /* Make sure to return an error if the flush in a previous vm_stop() |
739 | * failed. */ | |
8af3f5c6 DB |
740 | ret = bdrv_flush_all(); |
741 | trace_vm_stop_flush_all(ret); | |
742 | return ret; | |
8a9236f1 LC |
743 | } |
744 | } | |
745 | ||
0cfd6a9a LC |
746 | void qmp_memsave(int64_t addr, int64_t size, const char *filename, |
747 | bool has_cpu, int64_t cpu_index, Error **errp) | |
748 | { | |
749 | FILE *f; | |
750 | uint32_t l; | |
55e5c285 | 751 | CPUState *cpu; |
0cfd6a9a | 752 | uint8_t buf[1024]; |
0dc9daf0 | 753 | int64_t orig_addr = addr, orig_size = size; |
0cfd6a9a LC |
754 | |
755 | if (!has_cpu) { | |
756 | cpu_index = 0; | |
757 | } | |
758 | ||
151d1322 AF |
759 | cpu = qemu_get_cpu(cpu_index); |
760 | if (cpu == NULL) { | |
c6bd8c70 MA |
761 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index", |
762 | "a CPU number"); | |
0cfd6a9a LC |
763 | return; |
764 | } | |
765 | ||
766 | f = fopen(filename, "wb"); | |
767 | if (!f) { | |
618da851 | 768 | error_setg_file_open(errp, errno, filename); |
0cfd6a9a LC |
769 | return; |
770 | } | |
771 | ||
772 | while (size != 0) { | |
773 | l = sizeof(buf); | |
774 | if (l > size) | |
775 | l = size; | |
2f4d0f59 | 776 | if (cpu_memory_rw_debug(cpu, addr, buf, l, 0) != 0) { |
0dc9daf0 BP |
777 | error_setg(errp, "Invalid addr 0x%016" PRIx64 "/size %" PRId64 |
778 | " specified", orig_addr, orig_size); | |
2f4d0f59 AK |
779 | goto exit; |
780 | } | |
0cfd6a9a | 781 | if (fwrite(buf, 1, l, f) != l) { |
c6bd8c70 | 782 | error_setg(errp, QERR_IO_ERROR); |
0cfd6a9a LC |
783 | goto exit; |
784 | } | |
785 | addr += l; | |
786 | size -= l; | |
787 | } | |
788 | ||
789 | exit: | |
790 | fclose(f); | |
791 | } | |
6d3962bf LC |
792 | |
793 | void qmp_pmemsave(int64_t addr, int64_t size, const char *filename, | |
794 | Error **errp) | |
795 | { | |
796 | FILE *f; | |
797 | uint32_t l; | |
798 | uint8_t buf[1024]; | |
799 | ||
800 | f = fopen(filename, "wb"); | |
801 | if (!f) { | |
618da851 | 802 | error_setg_file_open(errp, errno, filename); |
6d3962bf LC |
803 | return; |
804 | } | |
805 | ||
806 | while (size != 0) { | |
807 | l = sizeof(buf); | |
808 | if (l > size) | |
809 | l = size; | |
eb6282f2 | 810 | cpu_physical_memory_read(addr, buf, l); |
6d3962bf | 811 | if (fwrite(buf, 1, l, f) != l) { |
c6bd8c70 | 812 | error_setg(errp, QERR_IO_ERROR); |
6d3962bf LC |
813 | goto exit; |
814 | } | |
815 | addr += l; | |
816 | size -= l; | |
817 | } | |
818 | ||
819 | exit: | |
820 | fclose(f); | |
821 | } | |
ab49ab5c LC |
822 | |
823 | void qmp_inject_nmi(Error **errp) | |
824 | { | |
947e4744 | 825 | nmi_monitor_handle(monitor_get_cpu_index(monitor_cur()), errp); |
ab49ab5c | 826 | } |
27498bef | 827 |