1 /* 2 * Virtual hardware watchdog. 3 * 4 * Copyright (C) 2009 Red Hat Inc. 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 9 * of the License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, see <http://www.gnu.org/licenses/>. 18 * 19 * By Richard W.M. Jones (rjones@redhat.com). 20 */ 21 22 #include "qemu/osdep.h" 23 #include "qemu/option.h" 24 #include "qemu/config-file.h" 25 #include "qemu/queue.h" 26 #include "qapi/error.h" 27 #include "qapi/qmp/types.h" 28 #include "sysemu/sysemu.h" 29 #include "sysemu/watchdog.h" 30 #include "qapi-event.h" 31 #include "hw/nmi.h" 32 #include "qemu/help_option.h" 33 #include "qmp-commands.h" 34 35 static WatchdogAction watchdog_action = WATCHDOG_ACTION_RESET; 36 static QLIST_HEAD(watchdog_list, WatchdogTimerModel) watchdog_list; 37 38 void watchdog_add_model(WatchdogTimerModel *model) 39 { 40 QLIST_INSERT_HEAD(&watchdog_list, model, entry); 41 } 42 43 /* Returns: 44 * 0 = continue 45 * 1 = exit program with error 46 * 2 = exit program without error 47 */ 48 int select_watchdog(const char *p) 49 { 50 WatchdogTimerModel *model; 51 QemuOpts *opts; 52 53 /* -watchdog ? lists available devices and exits cleanly. */ 54 if (is_help_option(p)) { 55 QLIST_FOREACH(model, &watchdog_list, entry) { 56 fprintf(stderr, "\t%s\t%s\n", 57 model->wdt_name, model->wdt_description); 58 } 59 return 2; 60 } 61 62 QLIST_FOREACH(model, &watchdog_list, entry) { 63 if (strcasecmp(model->wdt_name, p) == 0) { 64 /* add the device */ 65 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0, 66 &error_abort); 67 qemu_opt_set(opts, "driver", p, &error_abort); 68 return 0; 69 } 70 } 71 72 fprintf(stderr, "Unknown -watchdog device. Supported devices are:\n"); 73 QLIST_FOREACH(model, &watchdog_list, entry) { 74 fprintf(stderr, "\t%s\t%s\n", 75 model->wdt_name, model->wdt_description); 76 } 77 return 1; 78 } 79 80 int select_watchdog_action(const char *p) 81 { 82 int action; 83 char *qapi_value; 84 85 qapi_value = g_ascii_strdown(p, -1); 86 action = qapi_enum_parse(&WatchdogAction_lookup, qapi_value, -1, NULL); 87 g_free(qapi_value); 88 if (action < 0) 89 return -1; 90 qmp_watchdog_set_action(action, &error_abort); 91 return 0; 92 } 93 94 WatchdogAction get_watchdog_action(void) 95 { 96 return watchdog_action; 97 } 98 99 /* This actually performs the "action" once a watchdog has expired, 100 * ie. reboot, shutdown, exit, etc. 101 */ 102 void watchdog_perform_action(void) 103 { 104 switch (watchdog_action) { 105 case WATCHDOG_ACTION_RESET: /* same as 'system_reset' in monitor */ 106 qapi_event_send_watchdog(WATCHDOG_ACTION_RESET, &error_abort); 107 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET); 108 break; 109 110 case WATCHDOG_ACTION_SHUTDOWN: /* same as 'system_powerdown' in monitor */ 111 qapi_event_send_watchdog(WATCHDOG_ACTION_SHUTDOWN, &error_abort); 112 qemu_system_powerdown_request(); 113 break; 114 115 case WATCHDOG_ACTION_POWEROFF: /* same as 'quit' command in monitor */ 116 qapi_event_send_watchdog(WATCHDOG_ACTION_POWEROFF, &error_abort); 117 exit(0); 118 119 case WATCHDOG_ACTION_PAUSE: /* same as 'stop' command in monitor */ 120 /* In a timer callback, when vm_stop calls qemu_clock_enable 121 * you would get a deadlock. Bypass the problem. 122 */ 123 qemu_system_vmstop_request_prepare(); 124 qapi_event_send_watchdog(WATCHDOG_ACTION_PAUSE, &error_abort); 125 qemu_system_vmstop_request(RUN_STATE_WATCHDOG); 126 break; 127 128 case WATCHDOG_ACTION_DEBUG: 129 qapi_event_send_watchdog(WATCHDOG_ACTION_DEBUG, &error_abort); 130 fprintf(stderr, "watchdog: timer fired\n"); 131 break; 132 133 case WATCHDOG_ACTION_NONE: 134 qapi_event_send_watchdog(WATCHDOG_ACTION_NONE, &error_abort); 135 break; 136 137 case WATCHDOG_ACTION_INJECT_NMI: 138 qapi_event_send_watchdog(WATCHDOG_ACTION_INJECT_NMI, 139 &error_abort); 140 nmi_monitor_handle(0, NULL); 141 break; 142 143 default: 144 assert(0); 145 } 146 } 147 148 void qmp_watchdog_set_action(WatchdogAction action, Error **errp) 149 { 150 watchdog_action = action; 151 } 152