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