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
25 #include "qemu/osdep.h"
26 #include "monitor/monitor.h"
27 #include "qemu/coroutine-tls.h"
28 #include "qapi/error.h"
29 #include "qapi/qapi-commands-machine.h"
30 #include "qapi/qapi-commands-misc.h"
31 #include "qapi/qapi-events-run-state.h"
32 #include "qapi/qmp/qerror.h"
33 #include "exec/gdbstub.h"
34 #include "sysemu/hw_accel.h"
35 #include "exec/cpu-common.h"
36 #include "qemu/thread.h"
37 #include "qemu/main-loop.h"
38 #include "qemu/plugin.h"
39 #include "sysemu/cpus.h"
40 #include "qemu/guest-random.h"
41 #include "hw/nmi.h"
42 #include "sysemu/replay.h"
43 #include "sysemu/runstate.h"
44 #include "sysemu/cpu-timers.h"
45 #include "sysemu/whpx.h"
46 #include "hw/boards.h"
47 #include "hw/hw.h"
48 #include "trace.h"
49
50 #ifdef CONFIG_LINUX
51
52 #include <sys/prctl.h>
53
54 #ifndef PR_MCE_KILL
55 #define PR_MCE_KILL 33
56 #endif
57
58 #ifndef PR_MCE_KILL_SET
59 #define PR_MCE_KILL_SET 1
60 #endif
61
62 #ifndef PR_MCE_KILL_EARLY
63 #define PR_MCE_KILL_EARLY 1
64 #endif
65
66 #endif /* CONFIG_LINUX */
67
68 /* The Big QEMU Lock (BQL) */
69 static QemuMutex bql;
70
71 /*
72 * The chosen accelerator is supposed to register this.
73 */
74 static const AccelOpsClass *cpus_accel;
75
cpu_is_stopped(CPUState * cpu)76 bool cpu_is_stopped(CPUState *cpu)
77 {
78 return cpu->stopped || !runstate_is_running();
79 }
80
cpu_work_list_empty(CPUState * cpu)81 bool cpu_work_list_empty(CPUState *cpu)
82 {
83 return QSIMPLEQ_EMPTY_ATOMIC(&cpu->work_list);
84 }
85
cpu_thread_is_idle(CPUState * cpu)86 bool cpu_thread_is_idle(CPUState *cpu)
87 {
88 if (cpu->stop || !cpu_work_list_empty(cpu)) {
89 return false;
90 }
91 if (cpu_is_stopped(cpu)) {
92 return true;
93 }
94 if (!cpu->halted || cpu_has_work(cpu)) {
95 return false;
96 }
97 if (cpus_accel->cpu_thread_is_idle) {
98 return cpus_accel->cpu_thread_is_idle(cpu);
99 }
100 return true;
101 }
102
all_cpu_threads_idle(void)103 bool all_cpu_threads_idle(void)
104 {
105 CPUState *cpu;
106
107 CPU_FOREACH(cpu) {
108 if (!cpu_thread_is_idle(cpu)) {
109 return false;
110 }
111 }
112 return true;
113 }
114
115 /***********************************************************/
hw_error(const char * fmt,...)116 void hw_error(const char *fmt, ...)
117 {
118 va_list ap;
119 CPUState *cpu;
120
121 va_start(ap, fmt);
122 fprintf(stderr, "qemu: hardware error: ");
123 vfprintf(stderr, fmt, ap);
124 fprintf(stderr, "\n");
125 CPU_FOREACH(cpu) {
126 fprintf(stderr, "CPU #%d:\n", cpu->cpu_index);
127 cpu_dump_state(cpu, stderr, CPU_DUMP_FPU);
128 }
129 va_end(ap);
130 abort();
131 }
132
cpu_synchronize_all_states(void)133 void cpu_synchronize_all_states(void)
134 {
135 CPUState *cpu;
136
137 CPU_FOREACH(cpu) {
138 cpu_synchronize_state(cpu);
139 }
140 }
141
cpu_synchronize_all_post_reset(void)142 void cpu_synchronize_all_post_reset(void)
143 {
144 CPUState *cpu;
145
146 CPU_FOREACH(cpu) {
147 cpu_synchronize_post_reset(cpu);
148 }
149 }
150
cpu_synchronize_all_post_init(void)151 void cpu_synchronize_all_post_init(void)
152 {
153 CPUState *cpu;
154
155 CPU_FOREACH(cpu) {
156 cpu_synchronize_post_init(cpu);
157 }
158 }
159
cpu_synchronize_all_pre_loadvm(void)160 void cpu_synchronize_all_pre_loadvm(void)
161 {
162 CPUState *cpu;
163
164 CPU_FOREACH(cpu) {
165 cpu_synchronize_pre_loadvm(cpu);
166 }
167 }
168
cpu_synchronize_state(CPUState * cpu)169 void cpu_synchronize_state(CPUState *cpu)
170 {
171 if (cpus_accel->synchronize_state) {
172 cpus_accel->synchronize_state(cpu);
173 }
174 }
175
cpu_synchronize_post_reset(CPUState * cpu)176 void cpu_synchronize_post_reset(CPUState *cpu)
177 {
178 if (cpus_accel->synchronize_post_reset) {
179 cpus_accel->synchronize_post_reset(cpu);
180 }
181 }
182
cpu_synchronize_post_init(CPUState * cpu)183 void cpu_synchronize_post_init(CPUState *cpu)
184 {
185 if (cpus_accel->synchronize_post_init) {
186 cpus_accel->synchronize_post_init(cpu);
187 }
188 }
189
cpu_synchronize_pre_loadvm(CPUState * cpu)190 void cpu_synchronize_pre_loadvm(CPUState *cpu)
191 {
192 if (cpus_accel->synchronize_pre_loadvm) {
193 cpus_accel->synchronize_pre_loadvm(cpu);
194 }
195 }
196
cpus_are_resettable(void)197 bool cpus_are_resettable(void)
198 {
199 if (cpus_accel->cpus_are_resettable) {
200 return cpus_accel->cpus_are_resettable();
201 }
202 return true;
203 }
204
cpu_exec_reset_hold(CPUState * cpu)205 void cpu_exec_reset_hold(CPUState *cpu)
206 {
207 if (cpus_accel->cpu_reset_hold) {
208 cpus_accel->cpu_reset_hold(cpu);
209 }
210 }
211
cpus_get_virtual_clock(void)212 int64_t cpus_get_virtual_clock(void)
213 {
214 /*
215 * XXX
216 *
217 * need to check that cpus_accel is not NULL, because qcow2 calls
218 * qemu_get_clock_ns(CLOCK_VIRTUAL) without any accel initialized and
219 * with ticks disabled in some io-tests:
220 * 030 040 041 060 099 120 127 140 156 161 172 181 191 192 195 203 229 249 256 267
221 *
222 * is this expected?
223 *
224 * XXX
225 */
226 if (cpus_accel && cpus_accel->get_virtual_clock) {
227 return cpus_accel->get_virtual_clock();
228 }
229 return cpu_get_clock();
230 }
231
232 /*
233 * Signal the new virtual time to the accelerator. This is only needed
234 * by accelerators that need to track the changes as we warp time.
235 */
cpus_set_virtual_clock(int64_t new_time)236 void cpus_set_virtual_clock(int64_t new_time)
237 {
238 if (cpus_accel && cpus_accel->set_virtual_clock) {
239 cpus_accel->set_virtual_clock(new_time);
240 }
241 }
242
243 /*
244 * return the time elapsed in VM between vm_start and vm_stop. Unless
245 * icount is active, cpus_get_elapsed_ticks() uses units of the host CPU cycle
246 * counter.
247 */
cpus_get_elapsed_ticks(void)248 int64_t cpus_get_elapsed_ticks(void)
249 {
250 if (cpus_accel->get_elapsed_ticks) {
251 return cpus_accel->get_elapsed_ticks();
252 }
253 return cpu_get_ticks();
254 }
255
generic_handle_interrupt(CPUState * cpu,int mask)256 static void generic_handle_interrupt(CPUState *cpu, int mask)
257 {
258 cpu->interrupt_request |= mask;
259
260 if (!qemu_cpu_is_self(cpu)) {
261 qemu_cpu_kick(cpu);
262 }
263 }
264
cpu_interrupt(CPUState * cpu,int mask)265 void cpu_interrupt(CPUState *cpu, int mask)
266 {
267 if (cpus_accel->handle_interrupt) {
268 cpus_accel->handle_interrupt(cpu, mask);
269 } else {
270 generic_handle_interrupt(cpu, mask);
271 }
272 }
273
274 /*
275 * True if the vm was previously suspended, and has not been woken or reset.
276 */
277 static int vm_was_suspended;
278
vm_set_suspended(bool suspended)279 void vm_set_suspended(bool suspended)
280 {
281 vm_was_suspended = suspended;
282 }
283
vm_get_suspended(void)284 bool vm_get_suspended(void)
285 {
286 return vm_was_suspended;
287 }
288
do_vm_stop(RunState state,bool send_stop)289 static int do_vm_stop(RunState state, bool send_stop)
290 {
291 int ret = 0;
292 RunState oldstate = runstate_get();
293
294 if (runstate_is_live(oldstate)) {
295 vm_was_suspended = (oldstate == RUN_STATE_SUSPENDED);
296 runstate_set(state);
297 cpu_disable_ticks();
298 if (oldstate == RUN_STATE_RUNNING) {
299 pause_all_vcpus();
300 }
301 vm_state_notify(0, state);
302 if (send_stop) {
303 qapi_event_send_stop();
304 }
305 }
306
307 bdrv_drain_all();
308 ret = bdrv_flush_all();
309 trace_vm_stop_flush_all(ret);
310
311 return ret;
312 }
313
314 /* Special vm_stop() variant for terminating the process. Historically clients
315 * did not expect a QMP STOP event and so we need to retain compatibility.
316 */
vm_shutdown(void)317 int vm_shutdown(void)
318 {
319 return do_vm_stop(RUN_STATE_SHUTDOWN, false);
320 }
321
cpu_can_run(CPUState * cpu)322 bool cpu_can_run(CPUState *cpu)
323 {
324 if (cpu->stop) {
325 return false;
326 }
327 if (cpu_is_stopped(cpu)) {
328 return false;
329 }
330 return true;
331 }
332
cpu_handle_guest_debug(CPUState * cpu)333 void cpu_handle_guest_debug(CPUState *cpu)
334 {
335 if (replay_running_debug()) {
336 if (!cpu->singlestep_enabled) {
337 /*
338 * Report about the breakpoint and
339 * make a single step to skip it
340 */
341 replay_breakpoint();
342 cpu_single_step(cpu, SSTEP_ENABLE);
343 } else {
344 cpu_single_step(cpu, 0);
345 }
346 } else {
347 gdb_set_stop_cpu(cpu);
348 qemu_system_debug_request();
349 cpu->stopped = true;
350 }
351 }
352
353 #ifdef CONFIG_LINUX
sigbus_reraise(void)354 static void sigbus_reraise(void)
355 {
356 sigset_t set;
357 struct sigaction action;
358
359 memset(&action, 0, sizeof(action));
360 action.sa_handler = SIG_DFL;
361 if (!sigaction(SIGBUS, &action, NULL)) {
362 raise(SIGBUS);
363 sigemptyset(&set);
364 sigaddset(&set, SIGBUS);
365 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
366 }
367 perror("Failed to re-raise SIGBUS!");
368 abort();
369 }
370
sigbus_handler(int n,siginfo_t * siginfo,void * ctx)371 static void sigbus_handler(int n, siginfo_t *siginfo, void *ctx)
372 {
373 if (siginfo->si_code != BUS_MCEERR_AO && siginfo->si_code != BUS_MCEERR_AR) {
374 sigbus_reraise();
375 }
376
377 if (current_cpu) {
378 /* Called asynchronously in VCPU thread. */
379 if (kvm_on_sigbus_vcpu(current_cpu, siginfo->si_code, siginfo->si_addr)) {
380 sigbus_reraise();
381 }
382 } else {
383 /* Called synchronously (via signalfd) in main thread. */
384 if (kvm_on_sigbus(siginfo->si_code, siginfo->si_addr)) {
385 sigbus_reraise();
386 }
387 }
388 }
389
qemu_init_sigbus(void)390 static void qemu_init_sigbus(void)
391 {
392 struct sigaction action;
393
394 /*
395 * ALERT: when modifying this, take care that SIGBUS forwarding in
396 * qemu_prealloc_mem() will continue working as expected.
397 */
398 memset(&action, 0, sizeof(action));
399 action.sa_flags = SA_SIGINFO;
400 action.sa_sigaction = sigbus_handler;
401 sigaction(SIGBUS, &action, NULL);
402
403 prctl(PR_MCE_KILL, PR_MCE_KILL_SET, PR_MCE_KILL_EARLY, 0, 0);
404 }
405 #else /* !CONFIG_LINUX */
qemu_init_sigbus(void)406 static void qemu_init_sigbus(void)
407 {
408 }
409 #endif /* !CONFIG_LINUX */
410
411 static QemuThread io_thread;
412
413 /* cpu creation */
414 static QemuCond qemu_cpu_cond;
415 /* system init */
416 static QemuCond qemu_pause_cond;
417
qemu_init_cpu_loop(void)418 void qemu_init_cpu_loop(void)
419 {
420 qemu_init_sigbus();
421 qemu_cond_init(&qemu_cpu_cond);
422 qemu_cond_init(&qemu_pause_cond);
423 qemu_mutex_init(&bql);
424
425 qemu_thread_get_self(&io_thread);
426 }
427
run_on_cpu(CPUState * cpu,run_on_cpu_func func,run_on_cpu_data data)428 void run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data)
429 {
430 do_run_on_cpu(cpu, func, data, &bql);
431 }
432
qemu_cpu_stop(CPUState * cpu,bool exit)433 static void qemu_cpu_stop(CPUState *cpu, bool exit)
434 {
435 g_assert(qemu_cpu_is_self(cpu));
436 cpu->stop = false;
437 cpu->stopped = true;
438 if (exit) {
439 cpu_exit(cpu);
440 }
441 qemu_cond_broadcast(&qemu_pause_cond);
442 }
443
qemu_wait_io_event_common(CPUState * cpu)444 void qemu_wait_io_event_common(CPUState *cpu)
445 {
446 qatomic_set_mb(&cpu->thread_kicked, false);
447 if (cpu->stop) {
448 qemu_cpu_stop(cpu, false);
449 }
450 process_queued_cpu_work(cpu);
451 }
452
qemu_wait_io_event(CPUState * cpu)453 void qemu_wait_io_event(CPUState *cpu)
454 {
455 bool slept = false;
456
457 while (cpu_thread_is_idle(cpu)) {
458 if (!slept) {
459 slept = true;
460 qemu_plugin_vcpu_idle_cb(cpu);
461 }
462 qemu_cond_wait(cpu->halt_cond, &bql);
463 }
464 if (slept) {
465 qemu_plugin_vcpu_resume_cb(cpu);
466 }
467
468 qemu_wait_io_event_common(cpu);
469 }
470
cpus_kick_thread(CPUState * cpu)471 void cpus_kick_thread(CPUState *cpu)
472 {
473 if (cpu->thread_kicked) {
474 return;
475 }
476 cpu->thread_kicked = true;
477
478 #ifndef _WIN32
479 int err = pthread_kill(cpu->thread->thread, SIG_IPI);
480 if (err && err != ESRCH) {
481 fprintf(stderr, "qemu:%s: %s", __func__, strerror(err));
482 exit(1);
483 }
484 #else
485 qemu_sem_post(&cpu->sem);
486 #endif
487 }
488
qemu_cpu_kick(CPUState * cpu)489 void qemu_cpu_kick(CPUState *cpu)
490 {
491 qemu_cond_broadcast(cpu->halt_cond);
492 if (cpus_accel->kick_vcpu_thread) {
493 cpus_accel->kick_vcpu_thread(cpu);
494 } else { /* default */
495 cpus_kick_thread(cpu);
496 }
497 }
498
qemu_cpu_kick_self(void)499 void qemu_cpu_kick_self(void)
500 {
501 assert(current_cpu);
502 cpus_kick_thread(current_cpu);
503 }
504
qemu_cpu_is_self(CPUState * cpu)505 bool qemu_cpu_is_self(CPUState *cpu)
506 {
507 return qemu_thread_is_self(cpu->thread);
508 }
509
qemu_in_vcpu_thread(void)510 bool qemu_in_vcpu_thread(void)
511 {
512 return current_cpu && qemu_cpu_is_self(current_cpu);
513 }
514
QEMU_DEFINE_STATIC_CO_TLS(bool,bql_locked)515 QEMU_DEFINE_STATIC_CO_TLS(bool, bql_locked)
516
517 bool bql_locked(void)
518 {
519 return get_bql_locked();
520 }
521
qemu_in_main_thread(void)522 bool qemu_in_main_thread(void)
523 {
524 return bql_locked();
525 }
526
527 /*
528 * The BQL is taken from so many places that it is worth profiling the
529 * callers directly, instead of funneling them all through a single function.
530 */
bql_lock_impl(const char * file,int line)531 void bql_lock_impl(const char *file, int line)
532 {
533 QemuMutexLockFunc bql_lock_fn = qatomic_read(&bql_mutex_lock_func);
534
535 g_assert(!bql_locked());
536 bql_lock_fn(&bql, file, line);
537 set_bql_locked(true);
538 }
539
bql_unlock(void)540 void bql_unlock(void)
541 {
542 g_assert(bql_locked());
543 set_bql_locked(false);
544 qemu_mutex_unlock(&bql);
545 }
546
qemu_cond_wait_bql(QemuCond * cond)547 void qemu_cond_wait_bql(QemuCond *cond)
548 {
549 qemu_cond_wait(cond, &bql);
550 }
551
qemu_cond_timedwait_bql(QemuCond * cond,int ms)552 void qemu_cond_timedwait_bql(QemuCond *cond, int ms)
553 {
554 qemu_cond_timedwait(cond, &bql, ms);
555 }
556
557 /* signal CPU creation */
cpu_thread_signal_created(CPUState * cpu)558 void cpu_thread_signal_created(CPUState *cpu)
559 {
560 cpu->created = true;
561 qemu_cond_signal(&qemu_cpu_cond);
562 }
563
564 /* signal CPU destruction */
cpu_thread_signal_destroyed(CPUState * cpu)565 void cpu_thread_signal_destroyed(CPUState *cpu)
566 {
567 cpu->created = false;
568 qemu_cond_signal(&qemu_cpu_cond);
569 }
570
cpu_pause(CPUState * cpu)571 void cpu_pause(CPUState *cpu)
572 {
573 if (qemu_cpu_is_self(cpu)) {
574 qemu_cpu_stop(cpu, true);
575 } else {
576 cpu->stop = true;
577 qemu_cpu_kick(cpu);
578 }
579 }
580
cpu_resume(CPUState * cpu)581 void cpu_resume(CPUState *cpu)
582 {
583 cpu->stop = false;
584 cpu->stopped = false;
585 qemu_cpu_kick(cpu);
586 }
587
all_vcpus_paused(void)588 static bool all_vcpus_paused(void)
589 {
590 CPUState *cpu;
591
592 CPU_FOREACH(cpu) {
593 if (!cpu->stopped) {
594 return false;
595 }
596 }
597
598 return true;
599 }
600
pause_all_vcpus(void)601 void pause_all_vcpus(void)
602 {
603 CPUState *cpu;
604
605 qemu_clock_enable(QEMU_CLOCK_VIRTUAL, false);
606 CPU_FOREACH(cpu) {
607 cpu_pause(cpu);
608 }
609
610 /* We need to drop the replay_lock so any vCPU threads woken up
611 * can finish their replay tasks
612 */
613 replay_mutex_unlock();
614
615 while (!all_vcpus_paused()) {
616 qemu_cond_wait(&qemu_pause_cond, &bql);
617 CPU_FOREACH(cpu) {
618 qemu_cpu_kick(cpu);
619 }
620 }
621
622 bql_unlock();
623 replay_mutex_lock();
624 bql_lock();
625 }
626
resume_all_vcpus(void)627 void resume_all_vcpus(void)
628 {
629 CPUState *cpu;
630
631 if (!runstate_is_running()) {
632 return;
633 }
634
635 qemu_clock_enable(QEMU_CLOCK_VIRTUAL, true);
636 CPU_FOREACH(cpu) {
637 cpu_resume(cpu);
638 }
639 }
640
cpu_remove_sync(CPUState * cpu)641 void cpu_remove_sync(CPUState *cpu)
642 {
643 cpu->stop = true;
644 cpu->unplug = true;
645 qemu_cpu_kick(cpu);
646 bql_unlock();
647 qemu_thread_join(cpu->thread);
648 bql_lock();
649 }
650
cpus_register_accel(const AccelOpsClass * ops)651 void cpus_register_accel(const AccelOpsClass *ops)
652 {
653 assert(ops != NULL);
654 assert(ops->create_vcpu_thread != NULL); /* mandatory */
655 cpus_accel = ops;
656 }
657
cpus_get_accel(void)658 const AccelOpsClass *cpus_get_accel(void)
659 {
660 /* broken if we call this early */
661 assert(cpus_accel);
662 return cpus_accel;
663 }
664
qemu_init_vcpu(CPUState * cpu)665 void qemu_init_vcpu(CPUState *cpu)
666 {
667 MachineState *ms = MACHINE(qdev_get_machine());
668
669 cpu->nr_cores = machine_topo_get_cores_per_socket(ms);
670 cpu->nr_threads = ms->smp.threads;
671 cpu->stopped = true;
672 cpu->random_seed = qemu_guest_random_seed_thread_part1();
673
674 if (!cpu->as) {
675 /* If the target cpu hasn't set up any address spaces itself,
676 * give it the default one.
677 */
678 cpu->num_ases = 1;
679 cpu_address_space_init(cpu, 0, "cpu-memory", cpu->memory);
680 }
681
682 /* accelerators all implement the AccelOpsClass */
683 g_assert(cpus_accel != NULL && cpus_accel->create_vcpu_thread != NULL);
684 cpus_accel->create_vcpu_thread(cpu);
685
686 while (!cpu->created) {
687 qemu_cond_wait(&qemu_cpu_cond, &bql);
688 }
689 }
690
cpu_stop_current(void)691 void cpu_stop_current(void)
692 {
693 if (current_cpu) {
694 current_cpu->stop = true;
695 cpu_exit(current_cpu);
696 }
697 }
698
vm_stop(RunState state)699 int vm_stop(RunState state)
700 {
701 if (qemu_in_vcpu_thread()) {
702 qemu_system_vmstop_request_prepare();
703 qemu_system_vmstop_request(state);
704 /*
705 * FIXME: should not return to device code in case
706 * vm_stop() has been requested.
707 */
708 cpu_stop_current();
709 return 0;
710 }
711
712 return do_vm_stop(state, true);
713 }
714
715 /**
716 * Prepare for (re)starting the VM.
717 * Returns 0 if the vCPUs should be restarted, -1 on an error condition,
718 * and 1 otherwise.
719 */
vm_prepare_start(bool step_pending)720 int vm_prepare_start(bool step_pending)
721 {
722 int ret = vm_was_suspended ? 1 : 0;
723 RunState state = vm_was_suspended ? RUN_STATE_SUSPENDED : RUN_STATE_RUNNING;
724 RunState requested;
725
726 qemu_vmstop_requested(&requested);
727 if (runstate_is_running() && requested == RUN_STATE__MAX) {
728 return -1;
729 }
730
731 /* Ensure that a STOP/RESUME pair of events is emitted if a
732 * vmstop request was pending. The BLOCK_IO_ERROR event, for
733 * example, according to documentation is always followed by
734 * the STOP event.
735 */
736 if (runstate_is_running()) {
737 qapi_event_send_stop();
738 qapi_event_send_resume();
739 return -1;
740 }
741
742 /*
743 * WHPX accelerator needs to know whether we are going to step
744 * any CPUs, before starting the first one.
745 */
746 if (cpus_accel->synchronize_pre_resume) {
747 cpus_accel->synchronize_pre_resume(step_pending);
748 }
749
750 /* We are sending this now, but the CPUs will be resumed shortly later */
751 qapi_event_send_resume();
752
753 cpu_enable_ticks();
754 runstate_set(state);
755 vm_state_notify(1, state);
756 vm_was_suspended = false;
757 return ret;
758 }
759
vm_start(void)760 void vm_start(void)
761 {
762 if (!vm_prepare_start(false)) {
763 resume_all_vcpus();
764 }
765 }
766
vm_resume(RunState state)767 void vm_resume(RunState state)
768 {
769 if (runstate_is_live(state)) {
770 vm_start();
771 } else {
772 runstate_set(state);
773 }
774 }
775
776 /* does a state transition even if the VM is already stopped,
777 current state is forgotten forever */
vm_stop_force_state(RunState state)778 int vm_stop_force_state(RunState state)
779 {
780 if (runstate_is_live(runstate_get())) {
781 return vm_stop(state);
782 } else {
783 int ret;
784 runstate_set(state);
785
786 bdrv_drain_all();
787 /* Make sure to return an error if the flush in a previous vm_stop()
788 * failed. */
789 ret = bdrv_flush_all();
790 trace_vm_stop_flush_all(ret);
791 return ret;
792 }
793 }
794
qmp_memsave(uint64_t addr,uint64_t size,const char * filename,bool has_cpu,int64_t cpu_index,Error ** errp)795 void qmp_memsave(uint64_t addr, uint64_t size, const char *filename,
796 bool has_cpu, int64_t cpu_index, Error **errp)
797 {
798 FILE *f;
799 uint64_t l;
800 CPUState *cpu;
801 uint8_t buf[1024];
802 uint64_t orig_addr = addr, orig_size = size;
803
804 if (!has_cpu) {
805 cpu_index = 0;
806 }
807
808 cpu = qemu_get_cpu(cpu_index);
809 if (cpu == NULL) {
810 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
811 "a CPU number");
812 return;
813 }
814
815 f = fopen(filename, "wb");
816 if (!f) {
817 error_setg_file_open(errp, errno, filename);
818 return;
819 }
820
821 while (size != 0) {
822 l = sizeof(buf);
823 if (l > size)
824 l = size;
825 if (cpu_memory_rw_debug(cpu, addr, buf, l, 0) != 0) {
826 error_setg(errp, "Invalid addr 0x%016" PRIx64 "/size %" PRIu64
827 " specified", orig_addr, orig_size);
828 goto exit;
829 }
830 if (fwrite(buf, 1, l, f) != l) {
831 error_setg(errp, "writing memory to '%s' failed",
832 filename);
833 goto exit;
834 }
835 addr += l;
836 size -= l;
837 }
838
839 exit:
840 fclose(f);
841 }
842
qmp_pmemsave(uint64_t addr,uint64_t size,const char * filename,Error ** errp)843 void qmp_pmemsave(uint64_t addr, uint64_t size, const char *filename,
844 Error **errp)
845 {
846 FILE *f;
847 uint64_t l;
848 uint8_t buf[1024];
849
850 f = fopen(filename, "wb");
851 if (!f) {
852 error_setg_file_open(errp, errno, filename);
853 return;
854 }
855
856 while (size != 0) {
857 l = sizeof(buf);
858 if (l > size)
859 l = size;
860 cpu_physical_memory_read(addr, buf, l);
861 if (fwrite(buf, 1, l, f) != l) {
862 error_setg(errp, "writing memory to '%s' failed",
863 filename);
864 goto exit;
865 }
866 addr += l;
867 size -= l;
868 }
869
870 exit:
871 fclose(f);
872 }
873
qmp_inject_nmi(Error ** errp)874 void qmp_inject_nmi(Error **errp)
875 {
876 nmi_monitor_handle(monitor_get_cpu_index(monitor_cur()), errp);
877 }
878
879