1 #ifndef SYSEMU_H 2 #define SYSEMU_H 3 /* Misc. things related to the system emulator. */ 4 5 #include "qapi/qapi-types-run-state.h" 6 #include "qemu/queue.h" 7 #include "qemu/timer.h" 8 #include "qemu/notify.h" 9 #include "qemu/main-loop.h" 10 #include "qemu/bitmap.h" 11 #include "qemu/uuid.h" 12 #include "qom/object.h" 13 14 /* vl.c */ 15 16 extern const char *bios_name; 17 extern const char *qemu_name; 18 extern QemuUUID qemu_uuid; 19 extern bool qemu_uuid_set; 20 21 bool runstate_check(RunState state); 22 void runstate_set(RunState new_state); 23 int runstate_is_running(void); 24 bool runstate_needs_reset(void); 25 bool runstate_store(char *str, size_t size); 26 typedef struct vm_change_state_entry VMChangeStateEntry; 27 typedef void VMChangeStateHandler(void *opaque, int running, RunState state); 28 29 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb, 30 void *opaque); 31 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e); 32 void vm_state_notify(int running, RunState state); 33 34 static inline bool shutdown_caused_by_guest(ShutdownCause cause) 35 { 36 return cause >= SHUTDOWN_CAUSE_GUEST_SHUTDOWN; 37 } 38 39 void vm_start(void); 40 int vm_prepare_start(void); 41 int vm_stop(RunState state); 42 int vm_stop_force_state(RunState state); 43 int vm_shutdown(void); 44 45 typedef enum WakeupReason { 46 /* Always keep QEMU_WAKEUP_REASON_NONE = 0 */ 47 QEMU_WAKEUP_REASON_NONE = 0, 48 QEMU_WAKEUP_REASON_RTC, 49 QEMU_WAKEUP_REASON_PMTIMER, 50 QEMU_WAKEUP_REASON_OTHER, 51 } WakeupReason; 52 53 void qemu_exit_preconfig_request(void); 54 void qemu_system_reset_request(ShutdownCause reason); 55 void qemu_system_suspend_request(void); 56 void qemu_register_suspend_notifier(Notifier *notifier); 57 bool qemu_wakeup_suspend_enabled(void); 58 void qemu_system_wakeup_request(WakeupReason reason, Error **errp); 59 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled); 60 void qemu_register_wakeup_notifier(Notifier *notifier); 61 void qemu_register_wakeup_support(void); 62 void qemu_system_shutdown_request(ShutdownCause reason); 63 void qemu_system_powerdown_request(void); 64 void qemu_register_powerdown_notifier(Notifier *notifier); 65 void qemu_register_shutdown_notifier(Notifier *notifier); 66 void qemu_system_debug_request(void); 67 void qemu_system_vmstop_request(RunState reason); 68 void qemu_system_vmstop_request_prepare(void); 69 bool qemu_vmstop_requested(RunState *r); 70 ShutdownCause qemu_shutdown_requested_get(void); 71 ShutdownCause qemu_reset_requested_get(void); 72 void qemu_system_killed(int signal, pid_t pid); 73 void qemu_system_reset(ShutdownCause reason); 74 void qemu_system_guest_panicked(GuestPanicInformation *info); 75 76 void qemu_add_exit_notifier(Notifier *notify); 77 void qemu_remove_exit_notifier(Notifier *notify); 78 79 extern bool machine_init_done; 80 81 void qemu_add_machine_init_done_notifier(Notifier *notify); 82 void qemu_remove_machine_init_done_notifier(Notifier *notify); 83 84 extern int autostart; 85 86 typedef enum { 87 VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB, VGA_QXL, 88 VGA_TCX, VGA_CG3, VGA_DEVICE, VGA_VIRTIO, 89 VGA_TYPE_MAX, 90 } VGAInterfaceType; 91 92 extern int vga_interface_type; 93 #define xenfb_enabled (vga_interface_type == VGA_XENFB) 94 95 extern int graphic_width; 96 extern int graphic_height; 97 extern int graphic_depth; 98 extern int display_opengl; 99 extern const char *keyboard_layout; 100 extern int win2k_install_hack; 101 extern int alt_grab; 102 extern int ctrl_grab; 103 extern int smp_cpus; 104 extern unsigned int max_cpus; 105 extern int cursor_hide; 106 extern int graphic_rotate; 107 extern int no_quit; 108 extern int no_shutdown; 109 extern int old_param; 110 extern int boot_menu; 111 extern bool boot_strict; 112 extern uint8_t *boot_splash_filedata; 113 extern bool enable_mlock; 114 extern bool enable_cpu_pm; 115 extern QEMUClockType rtc_clock; 116 extern const char *mem_path; 117 extern int mem_prealloc; 118 119 #define MAX_NODES 128 120 #define NUMA_NODE_UNASSIGNED MAX_NODES 121 #define NUMA_DISTANCE_MIN 10 122 #define NUMA_DISTANCE_DEFAULT 20 123 #define NUMA_DISTANCE_MAX 254 124 #define NUMA_DISTANCE_UNREACHABLE 255 125 126 #define MAX_OPTION_ROMS 16 127 typedef struct QEMUOptionRom { 128 const char *name; 129 int32_t bootindex; 130 } QEMUOptionRom; 131 extern QEMUOptionRom option_rom[MAX_OPTION_ROMS]; 132 extern int nb_option_roms; 133 134 #define MAX_PROM_ENVS 128 135 extern const char *prom_envs[MAX_PROM_ENVS]; 136 extern unsigned int nb_prom_envs; 137 138 /* generic hotplug */ 139 void hmp_drive_add(Monitor *mon, const QDict *qdict); 140 141 /* pcie aer error injection */ 142 void hmp_pcie_aer_inject_error(Monitor *mon, const QDict *qdict); 143 144 /* serial ports */ 145 146 /* Return the Chardev for serial port i, or NULL if none */ 147 Chardev *serial_hd(int i); 148 /* return the number of serial ports defined by the user. serial_hd(i) 149 * will always return NULL for any i which is greater than or equal to this. 150 */ 151 int serial_max_hds(void); 152 153 /* parallel ports */ 154 155 #define MAX_PARALLEL_PORTS 3 156 157 extern Chardev *parallel_hds[MAX_PARALLEL_PORTS]; 158 159 void hmp_info_usb(Monitor *mon, const QDict *qdict); 160 161 void add_boot_device_path(int32_t bootindex, DeviceState *dev, 162 const char *suffix); 163 char *get_boot_devices_list(size_t *size); 164 165 DeviceState *get_boot_device(uint32_t position); 166 void check_boot_index(int32_t bootindex, Error **errp); 167 void del_boot_device_path(DeviceState *dev, const char *suffix); 168 void device_add_bootindex_property(Object *obj, int32_t *bootindex, 169 const char *name, const char *suffix, 170 DeviceState *dev, Error **errp); 171 void restore_boot_order(void *opaque); 172 void validate_bootdevices(const char *devices, Error **errp); 173 174 /* handler to set the boot_device order for a specific type of MachineClass */ 175 typedef void QEMUBootSetHandler(void *opaque, const char *boot_order, 176 Error **errp); 177 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque); 178 void qemu_boot_set(const char *boot_order, Error **errp); 179 180 QemuOpts *qemu_get_machine_opts(void); 181 182 bool defaults_enabled(void); 183 184 extern QemuOptsList qemu_legacy_drive_opts; 185 extern QemuOptsList qemu_common_drive_opts; 186 extern QemuOptsList qemu_drive_opts; 187 extern QemuOptsList bdrv_runtime_opts; 188 extern QemuOptsList qemu_chardev_opts; 189 extern QemuOptsList qemu_device_opts; 190 extern QemuOptsList qemu_netdev_opts; 191 extern QemuOptsList qemu_nic_opts; 192 extern QemuOptsList qemu_net_opts; 193 extern QemuOptsList qemu_global_opts; 194 extern QemuOptsList qemu_mon_opts; 195 196 #endif 197