| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Virtual Machine coreinfo device | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2017 Red Hat, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Authors: Marc-André Lureau <marcandre.lureau@redhat.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This work is licensed under the terms of the GNU GPL, version 2 or later. | 
					
						
							|  |  |  |  * See the COPYING file in the top-level directory. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							|  |  |  | #include "qapi/error.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | #include "qemu/module.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:38 +02:00
										 |  |  | #include "sysemu/reset.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  | #include "hw/nvram/fw_cfg.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:45 +02:00
										 |  |  | #include "migration/vmstate.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  | #include "hw/misc/vmcoreinfo.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void fw_cfg_vmci_write(void *dev, off_t offset, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     VMCoreInfoState *s = VMCOREINFO(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->has_vmcoreinfo = offset == 0 && len == sizeof(s->vmcoreinfo) | 
					
						
							| 
									
										
										
										
											2018-08-17 17:59:10 +02:00
										 |  |  |         && s->vmcoreinfo.guest_format != FW_CFG_VMCOREINFO_FORMAT_NONE; | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void vmcoreinfo_reset(void *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     VMCoreInfoState *s = VMCOREINFO(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->has_vmcoreinfo = false; | 
					
						
							|  |  |  |     memset(&s->vmcoreinfo, 0, sizeof(s->vmcoreinfo)); | 
					
						
							| 
									
										
										
										
											2018-08-17 17:59:10 +02:00
										 |  |  |     s->vmcoreinfo.host_format = cpu_to_le16(FW_CFG_VMCOREINFO_FORMAT_ELF); | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void vmcoreinfo_realize(DeviceState *dev, Error **errp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     VMCoreInfoState *s = VMCOREINFO(dev); | 
					
						
							|  |  |  |     FWCfgState *fw_cfg = fw_cfg_find(); | 
					
						
							| 
									
										
										
										
											2017-12-12 17:27:58 +01:00
										 |  |  |     /* for gdb script dump-guest-memory.py */ | 
					
						
							|  |  |  |     static VMCoreInfoState * volatile vmcoreinfo_state G_GNUC_UNUSED; | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Given that this function is executing, there is at least one VMCOREINFO
 | 
					
						
							|  |  |  |      * device. Check if there are several. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!vmcoreinfo_find()) { | 
					
						
							|  |  |  |         error_setg(errp, "at most one %s device is permitted", | 
					
						
							|  |  |  |                    VMCOREINFO_DEVICE); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!fw_cfg || !fw_cfg->dma_enabled) { | 
					
						
							|  |  |  |         error_setg(errp, "%s device requires fw_cfg with DMA", | 
					
						
							|  |  |  |                    VMCOREINFO_DEVICE); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-17 17:59:10 +02:00
										 |  |  |     fw_cfg_add_file_callback(fw_cfg, FW_CFG_VMCOREINFO_FILENAME, | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  |                              NULL, fw_cfg_vmci_write, s, | 
					
						
							|  |  |  |                              &s->vmcoreinfo, sizeof(s->vmcoreinfo), false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-10 15:15:27 +02:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * This device requires to register a global reset because it is | 
					
						
							|  |  |  |      * not plugged to a bus (which, as its QOM parent, would reset it). | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  |     qemu_register_reset(vmcoreinfo_reset, dev); | 
					
						
							| 
									
										
										
										
											2017-12-12 17:27:58 +01:00
										 |  |  |     vmcoreinfo_state = s; | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const VMStateDescription vmstate_vmcoreinfo = { | 
					
						
							|  |  |  |     .name = "vmcoreinfo", | 
					
						
							|  |  |  |     .version_id = 1, | 
					
						
							|  |  |  |     .minimum_version_id = 1, | 
					
						
							| 
									
										
										
										
											2023-12-21 14:16:21 +11:00
										 |  |  |     .fields = (const VMStateField[]) { | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  |         VMSTATE_BOOL(has_vmcoreinfo, VMCoreInfoState), | 
					
						
							|  |  |  |         VMSTATE_UINT16(vmcoreinfo.host_format, VMCoreInfoState), | 
					
						
							|  |  |  |         VMSTATE_UINT16(vmcoreinfo.guest_format, VMCoreInfoState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(vmcoreinfo.size, VMCoreInfoState), | 
					
						
							|  |  |  |         VMSTATE_UINT64(vmcoreinfo.paddr, VMCoreInfoState), | 
					
						
							|  |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void vmcoreinfo_device_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dc->vmsd = &vmstate_vmcoreinfo; | 
					
						
							|  |  |  |     dc->realize = vmcoreinfo_realize; | 
					
						
							|  |  |  |     dc->hotpluggable = false; | 
					
						
							| 
									
										
										
										
											2017-11-06 12:50:32 +01:00
										 |  |  |     set_bit(DEVICE_CATEGORY_MISC, dc->categories); | 
					
						
							| 
									
										
										
										
											2017-09-11 18:59:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const TypeInfo vmcoreinfo_device_info = { | 
					
						
							|  |  |  |     .name          = VMCOREINFO_DEVICE, | 
					
						
							|  |  |  |     .parent        = TYPE_DEVICE, | 
					
						
							|  |  |  |     .instance_size = sizeof(VMCoreInfoState), | 
					
						
							|  |  |  |     .class_init    = vmcoreinfo_device_class_init, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void vmcoreinfo_register_types(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     type_register_static(&vmcoreinfo_device_info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type_init(vmcoreinfo_register_types) |