Vishwanatha Subbanna | 15b1dc1 | 2017-05-23 15:16:13 +0530 | [diff] [blame] | 1 | /** |
| 2 | * Copyright © 2017 IBM Corporation |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Vishwanatha Subbanna | d7a3f13 | 2017-05-29 19:39:08 +0530 | [diff] [blame] | 17 | #include "watchdog.hpp" |
Vishwanatha Subbanna | 15b1dc1 | 2017-05-23 15:16:13 +0530 | [diff] [blame] | 18 | |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 19 | #include <CLI/CLI.hpp> |
William A. Kennington III | 26eef26 | 2019-04-04 15:30:30 -0700 | [diff] [blame] | 20 | #include <functional> |
Patrick Venture | 8f6c515 | 2018-09-11 17:45:33 -0700 | [diff] [blame] | 21 | #include <iostream> |
William A. Kennington III | 73c2cfb | 2018-09-12 18:01:37 -0700 | [diff] [blame] | 22 | #include <optional> |
Patrick Venture | 8f6c515 | 2018-09-11 17:45:33 -0700 | [diff] [blame] | 23 | #include <phosphor-logging/elog-errors.hpp> |
| 24 | #include <phosphor-logging/elog.hpp> |
| 25 | #include <phosphor-logging/log.hpp> |
William A. Kennington III | 8d8bc46 | 2019-01-16 14:59:07 -0800 | [diff] [blame] | 26 | #include <sdbusplus/bus.hpp> |
| 27 | #include <sdbusplus/exception.hpp> |
| 28 | #include <sdbusplus/server/manager.hpp> |
| 29 | #include <sdeventplus/event.hpp> |
Patrick Venture | 8f6c515 | 2018-09-11 17:45:33 -0700 | [diff] [blame] | 30 | #include <string> |
| 31 | #include <xyz/openbmc_project/Common/error.hpp> |
| 32 | |
William A. Kennington III | 1232a15 | 2018-02-02 15:57:34 -0800 | [diff] [blame] | 33 | using phosphor::watchdog::Watchdog; |
William A. Kennington III | 9397526 | 2018-02-02 16:00:50 -0800 | [diff] [blame] | 34 | using sdbusplus::xyz::openbmc_project::State::server::convertForMessage; |
William A. Kennington III | 1232a15 | 2018-02-02 15:57:34 -0800 | [diff] [blame] | 35 | |
William A. Kennington III | 3bb2f40 | 2018-09-13 00:35:47 -0700 | [diff] [blame] | 36 | void printActionTargetMap(const Watchdog::ActionTargetMap& actionTargetMap) |
William A. Kennington III | 9397526 | 2018-02-02 16:00:50 -0800 | [diff] [blame] | 37 | { |
| 38 | std::cerr << "Action Targets:\n"; |
William A. Kennington III | 3bb2f40 | 2018-09-13 00:35:47 -0700 | [diff] [blame] | 39 | for (const auto& [action, target] : actionTargetMap) |
William A. Kennington III | 9397526 | 2018-02-02 16:00:50 -0800 | [diff] [blame] | 40 | { |
William A. Kennington III | 3bb2f40 | 2018-09-13 00:35:47 -0700 | [diff] [blame] | 41 | std::cerr << " " << convertForMessage(action) << " -> " << target |
| 42 | << "\n"; |
William A. Kennington III | 9397526 | 2018-02-02 16:00:50 -0800 | [diff] [blame] | 43 | } |
| 44 | std::cerr << std::flush; |
| 45 | } |
| 46 | |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 47 | void printFallback(const Watchdog::Fallback& fallback) |
| 48 | { |
| 49 | std::cerr << "Fallback Options:\n"; |
| 50 | std::cerr << " Action: " << convertForMessage(fallback.action) << "\n"; |
| 51 | std::cerr << " Interval(ms): " << std::dec << fallback.interval << "\n"; |
| 52 | std::cerr << " Always re-execute: " << std::boolalpha << fallback.always |
| 53 | << "\n"; |
| 54 | std::cerr << std::flush; |
| 55 | } |
| 56 | |
William A. Kennington III | 3bb2f40 | 2018-09-13 00:35:47 -0700 | [diff] [blame] | 57 | int main(int argc, char* argv[]) |
Vishwanatha Subbanna | 15b1dc1 | 2017-05-23 15:16:13 +0530 | [diff] [blame] | 58 | { |
Vishwanatha Subbanna | 7e14655 | 2017-05-29 17:03:33 +0530 | [diff] [blame] | 59 | using namespace phosphor::logging; |
Patrick Venture | 8f6c515 | 2018-09-11 17:45:33 -0700 | [diff] [blame] | 60 | using InternalFailure = |
| 61 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Vishwanatha Subbanna | 15b1dc1 | 2017-05-23 15:16:13 +0530 | [diff] [blame] | 62 | |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 63 | CLI::App app{"Canonical openbmc host watchdog daemon"}; |
Patrick Venture | 09eebe3 | 2017-08-11 15:23:17 -0700 | [diff] [blame] | 64 | |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 65 | // Service related options |
| 66 | const std::string serviceGroup = "Service Options"; |
| 67 | std::string path; |
| 68 | app.add_option("-p,--path", path, |
| 69 | "DBus Object Path. " |
| 70 | "Ex: /xyz/openbmc_project/state/watchdog/host0") |
| 71 | ->required() |
| 72 | ->group(serviceGroup); |
| 73 | std::string service; |
| 74 | app.add_option("-s,--service", service, |
| 75 | "DBus Service Name. " |
| 76 | "Ex: xyz.openbmc_project.State.Watchdog.Host") |
| 77 | ->required() |
| 78 | ->group(serviceGroup); |
Jae Hyun Yoo | 61bc6cd | 2021-07-01 14:48:41 -0700 | [diff] [blame] | 79 | bool continueAfterTimeout{false}; |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 80 | app.add_flag("-c,--continue", continueAfterTimeout, |
| 81 | "Continue daemon after watchdog timeout") |
| 82 | ->group(serviceGroup); |
Vishwanatha Subbanna | 15b1dc1 | 2017-05-23 15:16:13 +0530 | [diff] [blame] | 83 | |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 84 | // Target related options |
| 85 | const std::string targetGroup = "Target Options"; |
| 86 | std::optional<std::string> target; |
| 87 | app.add_option("-t,--target", target, |
| 88 | "Systemd unit to be called on " |
| 89 | "timeout for all actions but NONE. " |
| 90 | "Deprecated, use --action_target instead.") |
| 91 | ->group(targetGroup); |
| 92 | std::vector<std::string> actionTargets; |
| 93 | app.add_option("-a,--action_target", actionTargets, |
| 94 | "Map of action to " |
| 95 | "systemd unit to be called on timeout if that action is " |
| 96 | "set for ExpireAction when the timer expires.") |
| 97 | ->group(targetGroup); |
Vishwanatha Subbanna | 15b1dc1 | 2017-05-23 15:16:13 +0530 | [diff] [blame] | 98 | |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 99 | // Fallback related options |
| 100 | const std::string fallbackGroup = "Fallback Options"; |
| 101 | std::optional<std::string> fallbackAction; |
| 102 | auto fallbackActionOpt = |
| 103 | app.add_option("-f,--fallback_action", fallbackAction, |
| 104 | "Enables the " |
| 105 | "watchdog even when disabled via the dbus interface. " |
| 106 | "Perform this action when the fallback expires.") |
| 107 | ->group(fallbackGroup); |
| 108 | std::optional<unsigned> fallbackIntervalMs; |
| 109 | auto fallbackIntervalOpt = |
| 110 | app.add_option("-i,--fallback_interval", fallbackIntervalMs, |
| 111 | "Enables the " |
| 112 | "watchdog even when disabled via the dbus interface. " |
| 113 | "Waits for this interval before performing the fallback " |
| 114 | "action.") |
| 115 | ->group(fallbackGroup); |
| 116 | fallbackIntervalOpt->needs(fallbackActionOpt); |
| 117 | fallbackActionOpt->needs(fallbackIntervalOpt); |
Jae Hyun Yoo | 61bc6cd | 2021-07-01 14:48:41 -0700 | [diff] [blame] | 118 | bool fallbackAlways{false}; |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 119 | app.add_flag("-e,--fallback_always", fallbackAlways, |
| 120 | "Enables the " |
| 121 | "watchdog even when disabled by the dbus interface. " |
| 122 | "This option is only valid with a fallback specified") |
| 123 | ->group(fallbackGroup) |
| 124 | ->needs(fallbackActionOpt) |
| 125 | ->needs(fallbackIntervalOpt); |
| 126 | |
William A. Kennington III | 26eef26 | 2019-04-04 15:30:30 -0700 | [diff] [blame] | 127 | // Should we watch for postcodes |
Jae Hyun Yoo | 61bc6cd | 2021-07-01 14:48:41 -0700 | [diff] [blame] | 128 | bool watchPostcodes{false}; |
William A. Kennington III | 26eef26 | 2019-04-04 15:30:30 -0700 | [diff] [blame] | 129 | app.add_flag("-w,--watch_postcodes", watchPostcodes, |
| 130 | "Should we reset the time remaining any time a postcode " |
| 131 | "is signaled."); |
| 132 | |
Andrew Geissler | afc369a | 2021-06-03 14:17:16 -0500 | [diff] [blame] | 133 | // Interval related options |
Ofer Yehielli | c35135d | 2019-06-14 11:30:25 -0700 | [diff] [blame] | 134 | uint64_t minInterval = phosphor::watchdog::DEFAULT_MIN_INTERVAL_MS; |
Kun Yi | 0868375 | 2019-12-05 10:34:45 -0800 | [diff] [blame] | 135 | app.add_option("-m,--min_interval", minInterval, |
| 136 | "Set minimum interval for watchdog in milliseconds"); |
Ofer Yehielli | c35135d | 2019-06-14 11:30:25 -0700 | [diff] [blame] | 137 | |
Andrew Geissler | afc369a | 2021-06-03 14:17:16 -0500 | [diff] [blame] | 138 | // 0 to indicate to use default from PDI if not passed in |
| 139 | uint64_t defaultInterval = 0; |
| 140 | app.add_option("-d,--default_interval", defaultInterval, |
| 141 | "Set default interval for watchdog in milliseconds"); |
| 142 | |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 143 | CLI11_PARSE(app, argc, argv); |
| 144 | |
| 145 | // Put together a list of actions and associated systemd targets |
| 146 | // The new --action_target options take precedence over the legacy |
| 147 | // --target |
William A. Kennington III | 3bb2f40 | 2018-09-13 00:35:47 -0700 | [diff] [blame] | 148 | Watchdog::ActionTargetMap actionTargetMap; |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 149 | if (target) |
Patrick Venture | 8f6c515 | 2018-09-11 17:45:33 -0700 | [diff] [blame] | 150 | { |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 151 | actionTargetMap[Watchdog::Action::HardReset] = *target; |
| 152 | actionTargetMap[Watchdog::Action::PowerOff] = *target; |
| 153 | actionTargetMap[Watchdog::Action::PowerCycle] = *target; |
William A. Kennington III | 1232a15 | 2018-02-02 15:57:34 -0800 | [diff] [blame] | 154 | } |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 155 | for (const auto& actionTarget : actionTargets) |
William A. Kennington III | 27df4b5 | 2018-02-02 16:02:05 -0800 | [diff] [blame] | 156 | { |
| 157 | size_t keyValueSplit = actionTarget.find("="); |
| 158 | if (keyValueSplit == std::string::npos) |
| 159 | { |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 160 | std::cerr << "Invalid action_target format, " |
| 161 | "expect <action>=<target>." |
| 162 | << std::endl; |
| 163 | return 1; |
William A. Kennington III | 27df4b5 | 2018-02-02 16:02:05 -0800 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | std::string key = actionTarget.substr(0, keyValueSplit); |
Patrick Venture | 8f6c515 | 2018-09-11 17:45:33 -0700 | [diff] [blame] | 167 | std::string value = actionTarget.substr(keyValueSplit + 1); |
William A. Kennington III | 27df4b5 | 2018-02-02 16:02:05 -0800 | [diff] [blame] | 168 | |
| 169 | // Convert an action from a fully namespaced value |
| 170 | Watchdog::Action action; |
| 171 | try |
| 172 | { |
| 173 | action = Watchdog::convertActionFromString(key); |
| 174 | } |
Patrick Venture | 8f6c515 | 2018-09-11 17:45:33 -0700 | [diff] [blame] | 175 | catch (const sdbusplus::exception::InvalidEnumString&) |
William A. Kennington III | 27df4b5 | 2018-02-02 16:02:05 -0800 | [diff] [blame] | 176 | { |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 177 | std::cerr << "Bad action specified: " << key << std::endl; |
| 178 | return 1; |
William A. Kennington III | 27df4b5 | 2018-02-02 16:02:05 -0800 | [diff] [blame] | 179 | } |
| 180 | |
William A. Kennington III | c2c26ce | 2018-09-13 18:35:56 -0700 | [diff] [blame] | 181 | // Detect duplicate action target arguments |
| 182 | if (actionTargetMap.find(action) != actionTargetMap.end()) |
| 183 | { |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 184 | std::cerr << "Got duplicate action: " << key << std::endl; |
| 185 | return 1; |
William A. Kennington III | c2c26ce | 2018-09-13 18:35:56 -0700 | [diff] [blame] | 186 | } |
| 187 | |
William A. Kennington III | 3bb2f40 | 2018-09-13 00:35:47 -0700 | [diff] [blame] | 188 | actionTargetMap[action] = std::move(value); |
William A. Kennington III | 27df4b5 | 2018-02-02 16:02:05 -0800 | [diff] [blame] | 189 | } |
William A. Kennington III | 3bb2f40 | 2018-09-13 00:35:47 -0700 | [diff] [blame] | 190 | printActionTargetMap(actionTargetMap); |
William A. Kennington III | 9397526 | 2018-02-02 16:00:50 -0800 | [diff] [blame] | 191 | |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 192 | // Build the fallback option used for the Watchdog |
| 193 | std::optional<Watchdog::Fallback> maybeFallback; |
| 194 | if (fallbackAction) |
William A. Kennington III | d133108 | 2018-02-27 18:47:05 -0800 | [diff] [blame] | 195 | { |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 196 | Watchdog::Fallback fallback; |
William A. Kennington III | d133108 | 2018-02-27 18:47:05 -0800 | [diff] [blame] | 197 | try |
| 198 | { |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 199 | fallback.action = |
| 200 | Watchdog::convertActionFromString(*fallbackAction); |
William A. Kennington III | d133108 | 2018-02-27 18:47:05 -0800 | [diff] [blame] | 201 | } |
Patrick Venture | 8f6c515 | 2018-09-11 17:45:33 -0700 | [diff] [blame] | 202 | catch (const sdbusplus::exception::InvalidEnumString&) |
William A. Kennington III | d133108 | 2018-02-27 18:47:05 -0800 | [diff] [blame] | 203 | { |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 204 | std::cerr << "Bad fallback action specified: " << *fallbackAction |
| 205 | << std::endl; |
| 206 | return 1; |
William A. Kennington III | d133108 | 2018-02-27 18:47:05 -0800 | [diff] [blame] | 207 | } |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 208 | fallback.interval = *fallbackIntervalMs; |
| 209 | fallback.always = fallbackAlways; |
William A. Kennington III | d133108 | 2018-02-27 18:47:05 -0800 | [diff] [blame] | 210 | |
William A. Kennington III | 1eb97d9 | 2018-09-13 00:36:12 -0700 | [diff] [blame] | 211 | printFallback(fallback); |
| 212 | maybeFallback = std::move(fallback); |
William A. Kennington III | 2235219 | 2018-02-27 18:51:44 -0800 | [diff] [blame] | 213 | } |
| 214 | |
Vishwanatha Subbanna | 4d5ef3f | 2017-05-31 18:54:22 +0530 | [diff] [blame] | 215 | try |
Vishwanatha Subbanna | 7e14655 | 2017-05-29 17:03:33 +0530 | [diff] [blame] | 216 | { |
William A. Kennington III | f505fc0 | 2018-09-12 18:30:09 -0700 | [diff] [blame] | 217 | // Get a default event loop |
| 218 | auto event = sdeventplus::Event::get_default(); |
| 219 | |
| 220 | // Get a handle to system dbus. |
| 221 | auto bus = sdbusplus::bus::new_default(); |
| 222 | |
| 223 | // Add systemd object manager. |
| 224 | sdbusplus::server::manager::manager(bus, path.c_str()); |
| 225 | |
| 226 | // Attach the bus to sd_event to service user requests |
| 227 | bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL); |
| 228 | |
Vishwanatha Subbanna | 4d5ef3f | 2017-05-31 18:54:22 +0530 | [diff] [blame] | 229 | // Create a watchdog object |
William A. Kennington III | f505fc0 | 2018-09-12 18:30:09 -0700 | [diff] [blame] | 230 | Watchdog watchdog(bus, path.c_str(), event, std::move(actionTargetMap), |
Andrew Geissler | afc369a | 2021-06-03 14:17:16 -0500 | [diff] [blame] | 231 | std::move(maybeFallback), minInterval, |
| 232 | defaultInterval); |
William A. Kennington III | d133108 | 2018-02-27 18:47:05 -0800 | [diff] [blame] | 233 | |
William A. Kennington III | 26eef26 | 2019-04-04 15:30:30 -0700 | [diff] [blame] | 234 | std::optional<sdbusplus::bus::match::match> watchPostcodeMatch; |
| 235 | if (watchPostcodes) |
| 236 | { |
| 237 | watchPostcodeMatch.emplace( |
| 238 | bus, |
| 239 | sdbusplus::bus::match::rules::propertiesChanged( |
William A. Kennington III | 459b6c7 | 2021-05-12 12:02:48 -0700 | [diff] [blame] | 240 | "/xyz/openbmc_project/state/boot/raw0", |
William A. Kennington III | 26eef26 | 2019-04-04 15:30:30 -0700 | [diff] [blame] | 241 | "xyz.openbmc_project.State.Boot.Raw"), |
| 242 | std::bind(&Watchdog::resetTimeRemaining, std::ref(watchdog), |
| 243 | false)); |
| 244 | } |
| 245 | |
Vishwanatha Subbanna | 4d5ef3f | 2017-05-31 18:54:22 +0530 | [diff] [blame] | 246 | // Claim the bus |
| 247 | bus.request_name(service.c_str()); |
| 248 | |
William A. Kennington III | 825f498 | 2018-02-27 19:10:56 -0800 | [diff] [blame] | 249 | // Loop until our timer expires and we don't want to continue |
| 250 | while (continueAfterTimeout || !watchdog.timerExpired()) |
Vishwanatha Subbanna | 7e14655 | 2017-05-29 17:03:33 +0530 | [diff] [blame] | 251 | { |
William A. Kennington III | f505fc0 | 2018-09-12 18:30:09 -0700 | [diff] [blame] | 252 | // Run and never timeout |
| 253 | event.run(std::nullopt); |
Vishwanatha Subbanna | 7e14655 | 2017-05-29 17:03:33 +0530 | [diff] [blame] | 254 | } |
| 255 | } |
Patrick Venture | 8f6c515 | 2018-09-11 17:45:33 -0700 | [diff] [blame] | 256 | catch (InternalFailure& e) |
Vishwanatha Subbanna | 4d5ef3f | 2017-05-31 18:54:22 +0530 | [diff] [blame] | 257 | { |
| 258 | phosphor::logging::commit<InternalFailure>(); |
| 259 | |
| 260 | // Need a coredump in the error cases. |
| 261 | std::terminate(); |
| 262 | } |
Vishwanatha Subbanna | 15b1dc1 | 2017-05-23 15:16:13 +0530 | [diff] [blame] | 263 | return 0; |
| 264 | } |