1 #ifndef SYSEMU_H 2 #define SYSEMU_H 3 /* Misc. things related to the system emulator. */ 4 5 #include "qemu/typedefs.h" 6 #include "qemu/option.h" 7 #include "qemu/queue.h" 8 #include "qemu/timer.h" 9 #include "qapi-types.h" 10 #include "qemu/notify.h" 11 #include "qemu/main-loop.h" 12 #include "qemu/bitmap.h" 13 #include "qom/object.h" 14 15 /* vl.c */ 16 17 extern const char *bios_name; 18 19 extern const char *qemu_name; 20 extern uint8_t qemu_uuid[]; 21 extern bool qemu_uuid_set; 22 int qemu_uuid_parse(const char *str, uint8_t *uuid); 23 24 #define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx" 25 #define UUID_NONE "00000000-0000-0000-0000-000000000000" 26 27 bool runstate_check(RunState state); 28 void runstate_set(RunState new_state); 29 int runstate_is_running(void); 30 bool runstate_needs_reset(void); 31 typedef struct vm_change_state_entry VMChangeStateEntry; 32 typedef void VMChangeStateHandler(void *opaque, int running, RunState state); 33 34 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb, 35 void *opaque); 36 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e); 37 void vm_state_notify(int running, RunState state); 38 39 #define VMRESET_SILENT false 40 #define VMRESET_REPORT true 41 42 void vm_start(void); 43 int vm_stop(RunState state); 44 int vm_stop_force_state(RunState state); 45 46 typedef enum WakeupReason { 47 /* Always keep QEMU_WAKEUP_REASON_NONE = 0 */ 48 QEMU_WAKEUP_REASON_NONE = 0, 49 QEMU_WAKEUP_REASON_RTC, 50 QEMU_WAKEUP_REASON_PMTIMER, 51 QEMU_WAKEUP_REASON_OTHER, 52 } WakeupReason; 53 54 void qemu_system_reset_request(void); 55 void qemu_system_suspend_request(void); 56 void qemu_register_suspend_notifier(Notifier *notifier); 57 void qemu_system_wakeup_request(WakeupReason reason); 58 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled); 59 void qemu_register_wakeup_notifier(Notifier *notifier); 60 void qemu_system_shutdown_request(void); 61 void qemu_system_powerdown_request(void); 62 void qemu_register_powerdown_notifier(Notifier *notifier); 63 void qemu_system_debug_request(void); 64 void qemu_system_vmstop_request(RunState reason); 65 void qemu_system_vmstop_request_prepare(void); 66 int qemu_shutdown_requested_get(void); 67 int qemu_reset_requested_get(void); 68 void qemu_system_killed(int signal, pid_t pid); 69 void qemu_devices_reset(void); 70 void qemu_system_reset(bool report); 71 72 void qemu_add_exit_notifier(Notifier *notify); 73 void qemu_remove_exit_notifier(Notifier *notify); 74 75 void qemu_add_machine_init_done_notifier(Notifier *notify); 76 77 void do_savevm(Monitor *mon, const QDict *qdict); 78 int load_vmstate(const char *name); 79 void do_delvm(Monitor *mon, const QDict *qdict); 80 void do_info_snapshots(Monitor *mon, const QDict *qdict); 81 82 void qemu_announce_self(void); 83 84 bool qemu_savevm_state_blocked(Error **errp); 85 void qemu_savevm_state_begin(QEMUFile *f, 86 const MigrationParams *params); 87 int qemu_savevm_state_iterate(QEMUFile *f); 88 void qemu_savevm_state_complete(QEMUFile *f); 89 void qemu_savevm_state_cancel(void); 90 uint64_t qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size); 91 int qemu_loadvm_state(QEMUFile *f); 92 93 /* SLIRP */ 94 void do_info_slirp(Monitor *mon); 95 96 typedef enum DisplayType 97 { 98 DT_DEFAULT, 99 DT_CURSES, 100 DT_SDL, 101 DT_GTK, 102 DT_NOGRAPHIC, 103 DT_NONE, 104 } DisplayType; 105 106 extern int autostart; 107 108 typedef enum { 109 VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB, VGA_QXL, 110 VGA_TCX, VGA_CG3, VGA_DEVICE 111 } VGAInterfaceType; 112 113 extern int vga_interface_type; 114 #define xenfb_enabled (vga_interface_type == VGA_XENFB) 115 116 extern int graphic_width; 117 extern int graphic_height; 118 extern int graphic_depth; 119 extern DisplayType display_type; 120 extern const char *keyboard_layout; 121 extern int win2k_install_hack; 122 extern int alt_grab; 123 extern int ctrl_grab; 124 extern int smp_cpus; 125 extern int max_cpus; 126 extern int cursor_hide; 127 extern int graphic_rotate; 128 extern int no_quit; 129 extern int no_shutdown; 130 extern int semihosting_enabled; 131 extern int old_param; 132 extern int boot_menu; 133 extern uint8_t *boot_splash_filedata; 134 extern size_t boot_splash_filedata_size; 135 extern uint8_t qemu_extra_params_fw[2]; 136 extern QEMUClockType rtc_clock; 137 extern const char *mem_path; 138 extern int mem_prealloc; 139 140 #define MAX_NODES 128 141 142 /* The following shall be true for all CPUs: 143 * cpu->cpu_index < max_cpus <= MAX_CPUMASK_BITS 144 * 145 * Note that cpu->get_arch_id() may be larger than MAX_CPUMASK_BITS. 146 */ 147 #define MAX_CPUMASK_BITS 255 148 149 extern int nb_numa_nodes; /* Number of NUMA nodes */ 150 extern int max_numa_nodeid; /* Highest specified NUMA node ID, plus one. 151 * For all nodes, nodeid < max_numa_nodeid 152 */ 153 154 typedef struct node_info { 155 uint64_t node_mem; 156 DECLARE_BITMAP(node_cpu, MAX_CPUMASK_BITS); 157 struct HostMemoryBackend *node_memdev; 158 bool present; 159 } NodeInfo; 160 extern NodeInfo numa_info[MAX_NODES]; 161 void set_numa_nodes(void); 162 void set_numa_modes(void); 163 extern QemuOptsList qemu_numa_opts; 164 int numa_init_func(QemuOpts *opts, void *opaque); 165 166 #define MAX_OPTION_ROMS 16 167 typedef struct QEMUOptionRom { 168 const char *name; 169 int32_t bootindex; 170 } QEMUOptionRom; 171 extern QEMUOptionRom option_rom[MAX_OPTION_ROMS]; 172 extern int nb_option_roms; 173 174 #define MAX_PROM_ENVS 128 175 extern const char *prom_envs[MAX_PROM_ENVS]; 176 extern unsigned int nb_prom_envs; 177 178 /* pci-hotplug */ 179 void pci_device_hot_add(Monitor *mon, const QDict *qdict); 180 int pci_drive_hot_add(Monitor *mon, const QDict *qdict, DriveInfo *dinfo); 181 void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict); 182 183 /* generic hotplug */ 184 void drive_hot_add(Monitor *mon, const QDict *qdict); 185 186 /* CPU hotplug */ 187 void qemu_register_cpu_added_notifier(Notifier *notifier); 188 189 /* pcie aer error injection */ 190 void pcie_aer_inject_error_print(Monitor *mon, const QObject *data); 191 int do_pcie_aer_inject_error(Monitor *mon, 192 const QDict *qdict, QObject **ret_data); 193 194 /* serial ports */ 195 196 #define MAX_SERIAL_PORTS 4 197 198 extern CharDriverState *serial_hds[MAX_SERIAL_PORTS]; 199 200 /* parallel ports */ 201 202 #define MAX_PARALLEL_PORTS 3 203 204 extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS]; 205 206 void do_usb_add(Monitor *mon, const QDict *qdict); 207 void do_usb_del(Monitor *mon, const QDict *qdict); 208 void usb_info(Monitor *mon, const QDict *qdict); 209 210 void add_boot_device_path(int32_t bootindex, DeviceState *dev, 211 const char *suffix); 212 char *get_boot_devices_list(size_t *size, bool ignore_suffixes); 213 214 DeviceState *get_boot_device(uint32_t position); 215 216 QemuOpts *qemu_get_machine_opts(void); 217 218 bool usb_enabled(bool default_usb); 219 220 extern QemuOptsList qemu_legacy_drive_opts; 221 extern QemuOptsList qemu_common_drive_opts; 222 extern QemuOptsList qemu_drive_opts; 223 extern QemuOptsList qemu_chardev_opts; 224 extern QemuOptsList qemu_device_opts; 225 extern QemuOptsList qemu_netdev_opts; 226 extern QemuOptsList qemu_net_opts; 227 extern QemuOptsList qemu_global_opts; 228 extern QemuOptsList qemu_mon_opts; 229 230 #endif 231