blob: dd65e457f281d1aca502f85d59e82fe566d46650 [file] [log] [blame]
Patrick Venture5e6ac712017-10-25 12:16:19 -07001#include "watchdog.hpp"
2
Patrick Venture0b02be92018-08-31 11:55:55 -07003#include "watchdog_service.hpp"
4
William A. Kennington III52575252018-02-09 15:54:56 -08005#include <endian.h>
Patrick Venture0b02be92018-08-31 11:55:55 -07006
Vernon Mauerye08fbff2019-04-03 09:19:34 -07007#include <ipmid/api.hpp>
William A. Kennington III021b4c12018-05-10 11:12:51 -07008#include <phosphor-logging/elog-errors.hpp>
Patrick Venture0b02be92018-08-31 11:55:55 -07009#include <phosphor-logging/elog.hpp>
George Liu05e93872024-07-17 14:48:14 +080010#include <phosphor-logging/lg2.hpp>
William A. Kennington III021b4c12018-05-10 11:12:51 -070011#include <xyz/openbmc_project/Common/error.hpp>
Patrick Venture894571d2017-11-09 14:46:54 -080012
Patrick Williamsfbc6c9d2023-05-10 07:50:16 -050013#include <bitset>
14#include <cstdint>
15#include <string>
16
William A. Kennington IIIbae471c2018-06-15 10:38:01 -070017using phosphor::logging::commit;
William A. Kennington III52575252018-02-09 15:54:56 -080018using phosphor::logging::level;
19using phosphor::logging::log;
Willy Tu523e2d12023-09-05 11:36:48 -070020using sdbusplus::error::xyz::openbmc_project::common::InternalFailure;
Patrick Venture5e6ac712017-10-25 12:16:19 -070021
William A. Kennington IIIbae471c2018-06-15 10:38:01 -070022static bool lastCallSuccessful = false;
23
24void reportError()
25{
26 // We don't want to fill the SEL with errors if the daemon dies and doesn't
27 // come back but the watchdog keeps on ticking. Instead, we only report the
28 // error if we haven't reported one since the last successful call
29 if (!lastCallSuccessful)
30 {
31 return;
32 }
33 lastCallSuccessful = false;
34
35 // TODO: This slow down the end of the IPMI transaction waiting
36 // for the commit to finish. commit<>() can take at least 5 seconds
37 // to complete. 5s is very slow for an IPMI command and ends up
38 // congesting the IPMI channel needlessly, especially if the watchdog
39 // is ticking fairly quickly and we have some transient issues.
40 commit<InternalFailure>();
41}
42
Vernon Mauery11df4f62019-03-25 14:17:54 -070043ipmi::RspType<> ipmiAppResetWatchdogTimer()
Patrick Venture5e6ac712017-10-25 12:16:19 -070044{
William A. Kennington III52575252018-02-09 15:54:56 -080045 try
46 {
47 WatchdogService wd_service;
William A. Kennington III52575252018-02-09 15:54:56 -080048
William A. Kennington IIIde14a022018-02-09 16:11:18 -080049 // Notify the caller if we haven't initialized our timer yet
50 // so it can configure actions and timeouts
William A. Kennington III2ecf5122018-04-27 14:31:51 -070051 if (!wd_service.getInitialized())
William A. Kennington IIIde14a022018-02-09 16:11:18 -080052 {
William A. Kennington IIIbae471c2018-06-15 10:38:01 -070053 lastCallSuccessful = true;
Vernon Mauery11df4f62019-03-25 14:17:54 -070054
55 constexpr uint8_t ccWatchdogNotInit = 0x80;
56 return ipmi::response(ccWatchdogNotInit);
William A. Kennington IIIde14a022018-02-09 16:11:18 -080057 }
58
William A. Kennington III4b017a92018-04-27 14:31:08 -070059 // The ipmi standard dictates we enable the watchdog during reset
60 wd_service.resetTimeRemaining(true);
William A. Kennington IIIbae471c2018-06-15 10:38:01 -070061 lastCallSuccessful = true;
Vernon Mauery11df4f62019-03-25 14:17:54 -070062 return ipmi::responseSuccess();
Patrick Venture5e6ac712017-10-25 12:16:19 -070063 }
William A. Kennington III021b4c12018-05-10 11:12:51 -070064 catch (const InternalFailure& e)
65 {
William A. Kennington IIIbae471c2018-06-15 10:38:01 -070066 reportError();
Vernon Mauery11df4f62019-03-25 14:17:54 -070067 return ipmi::responseUnspecifiedError();
William A. Kennington III021b4c12018-05-10 11:12:51 -070068 }
William A. Kennington III52575252018-02-09 15:54:56 -080069 catch (const std::exception& e)
70 {
George Liu05e93872024-07-17 14:48:14 +080071 lg2::error("wd_reset: {ERROR}", "ERROR", e);
Vernon Mauery11df4f62019-03-25 14:17:54 -070072 return ipmi::responseUnspecifiedError();
William A. Kennington III5325f2c2018-01-08 15:17:09 -080073 }
William A. Kennington III52575252018-02-09 15:54:56 -080074 catch (...)
75 {
George Liu05e93872024-07-17 14:48:14 +080076 lg2::error("wd_reset: Unknown Error");
Vernon Mauery11df4f62019-03-25 14:17:54 -070077 return ipmi::responseUnspecifiedError();
William A. Kennington III5325f2c2018-01-08 15:17:09 -080078 }
Patrick Venture5e6ac712017-10-25 12:16:19 -070079}
William A. Kennington III61d5f7b2018-02-09 15:23:53 -080080
William A. Kennington III52575252018-02-09 15:54:56 -080081static constexpr uint8_t wd_dont_stop = 0x1 << 6;
82static constexpr uint8_t wd_timeout_action_mask = 0x3;
83
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +000084static constexpr uint8_t wdTimerUseResTimer1 = 0x0;
85static constexpr uint8_t wdTimerUseResTimer2 = 0x6;
86static constexpr uint8_t wdTimerUseResTimer3 = 0x7;
87
Yong Li4dd71af2019-09-29 14:18:07 +080088static constexpr uint8_t wdTimeoutActionMax = 3;
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +000089static constexpr uint8_t wdTimeoutInterruptTimer = 0x04;
Yong Li118907e2019-01-11 17:36:17 +080090
Patrick Venture0b02be92018-08-31 11:55:55 -070091enum class IpmiAction : uint8_t
92{
William A. Kennington III52575252018-02-09 15:54:56 -080093 None = 0x0,
94 HardReset = 0x1,
95 PowerOff = 0x2,
96 PowerCycle = 0x3,
97};
98
William A. Kennington IIIb638de22018-02-09 16:12:53 -080099/** @brief Converts an IPMI Watchdog Action to DBUS defined action
100 * @param[in] ipmi_action The IPMI Watchdog Action
101 * @return The Watchdog Action that the ipmi_action maps to
102 */
103WatchdogService::Action ipmiActionToWdAction(IpmiAction ipmi_action)
104{
Patrick Venture0b02be92018-08-31 11:55:55 -0700105 switch (ipmi_action)
William A. Kennington IIIb638de22018-02-09 16:12:53 -0800106 {
107 case IpmiAction::None:
108 {
109 return WatchdogService::Action::None;
110 }
111 case IpmiAction::HardReset:
112 {
113 return WatchdogService::Action::HardReset;
114 }
115 case IpmiAction::PowerOff:
116 {
117 return WatchdogService::Action::PowerOff;
118 }
119 case IpmiAction::PowerCycle:
120 {
121 return WatchdogService::Action::PowerCycle;
122 }
123 default:
124 {
125 throw std::domain_error("IPMI Action is invalid");
126 }
127 }
128}
129
Yong Li118907e2019-01-11 17:36:17 +0800130enum class IpmiTimerUse : uint8_t
131{
132 Reserved = 0x0,
133 BIOSFRB2 = 0x1,
134 BIOSPOST = 0x2,
135 OSLoad = 0x3,
136 SMSOS = 0x4,
137 OEM = 0x5,
138};
139
140WatchdogService::TimerUse ipmiTimerUseToWdTimerUse(IpmiTimerUse ipmiTimerUse)
141{
142 switch (ipmiTimerUse)
143 {
144 case IpmiTimerUse::Reserved:
145 {
146 return WatchdogService::TimerUse::Reserved;
147 }
148 case IpmiTimerUse::BIOSFRB2:
149 {
150 return WatchdogService::TimerUse::BIOSFRB2;
151 }
152 case IpmiTimerUse::BIOSPOST:
153 {
154 return WatchdogService::TimerUse::BIOSPOST;
155 }
156 case IpmiTimerUse::OSLoad:
157 {
158 return WatchdogService::TimerUse::OSLoad;
159 }
160 case IpmiTimerUse::SMSOS:
161 {
162 return WatchdogService::TimerUse::SMSOS;
163 }
164 case IpmiTimerUse::OEM:
165 {
166 return WatchdogService::TimerUse::OEM;
167 }
168 default:
169 {
170 return WatchdogService::TimerUse::Reserved;
171 }
172 }
173}
174
Yong Li4dd71af2019-09-29 14:18:07 +0800175static bool timerNotLogFlags = false;
Yong Lia729bf42019-10-14 12:42:10 +0800176static std::bitset<8> timerUseExpirationFlags = 0;
Yong Li4dd71af2019-09-29 14:18:07 +0800177static uint3_t timerPreTimeoutInterrupt = 0;
Yong Lia729bf42019-10-14 12:42:10 +0800178static constexpr uint8_t wdExpirationFlagReservedBit0 = 0x0;
179static constexpr uint8_t wdExpirationFlagReservedBit6 = 0x6;
180static constexpr uint8_t wdExpirationFlagReservedBit7 = 0x7;
William A. Kennington III52575252018-02-09 15:54:56 -0800181
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000182/**@brief The Set Watchdog Timer ipmi command.
183 *
184 * @param
185 * - timerUse
186 * - dontStopTimer
187 * - dontLog
188 * - timerAction
189 * - pretimeout
190 * - expireFlags
191 * - initialCountdown
192 *
193 * @return completion code on success.
194 **/
Yong Lia729bf42019-10-14 12:42:10 +0800195ipmi::RspType<>
196 ipmiSetWatchdogTimer(uint3_t timerUse, uint3_t reserved, bool dontStopTimer,
197 bool dontLog, uint3_t timeoutAction, uint1_t reserved1,
198 uint3_t preTimeoutInterrupt, uint1_t reserved2,
199 uint8_t preTimeoutInterval,
200 std::bitset<8> expFlagValue, uint16_t initialCountdown)
William A. Kennington III61d5f7b2018-02-09 15:23:53 -0800201{
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000202 if ((timerUse == wdTimerUseResTimer1) ||
203 (timerUse == wdTimerUseResTimer2) ||
204 (timerUse == wdTimerUseResTimer3) ||
Yong Li4dd71af2019-09-29 14:18:07 +0800205 (timeoutAction > wdTimeoutActionMax) ||
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000206 (preTimeoutInterrupt == wdTimeoutInterruptTimer) ||
Yong Lia729bf42019-10-14 12:42:10 +0800207 (reserved | reserved1 | reserved2 |
208 expFlagValue.test(wdExpirationFlagReservedBit0) |
209 expFlagValue.test(wdExpirationFlagReservedBit6) |
210 expFlagValue.test(wdExpirationFlagReservedBit7)))
William A. Kennington III52575252018-02-09 15:54:56 -0800211 {
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000212 return ipmi::responseInvalidFieldRequest();
William A. Kennington III52575252018-02-09 15:54:56 -0800213 }
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000214
215 if (preTimeoutInterval > (initialCountdown / 10))
216 {
217 return ipmi::responseInvalidFieldRequest();
218 }
219
Yong Li4dd71af2019-09-29 14:18:07 +0800220 timerNotLogFlags = dontLog;
221 timerPreTimeoutInterrupt = preTimeoutInterrupt;
William A. Kennington III61d5f7b2018-02-09 15:23:53 -0800222
William A. Kennington III52575252018-02-09 15:54:56 -0800223 try
William A. Kennington III61d5f7b2018-02-09 15:23:53 -0800224 {
William A. Kennington III52575252018-02-09 15:54:56 -0800225 WatchdogService wd_service;
226 // Stop the timer if the don't stop bit is not set
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000227 if (!(dontStopTimer))
William A. Kennington III52575252018-02-09 15:54:56 -0800228 {
229 wd_service.setEnabled(false);
William A. Kennington III61d5f7b2018-02-09 15:23:53 -0800230 }
231
William A. Kennington III52575252018-02-09 15:54:56 -0800232 // Set the action based on the request
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000233 const auto ipmi_action = static_cast<IpmiAction>(
234 static_cast<uint8_t>(timeoutAction) & wd_timeout_action_mask);
William A. Kennington IIIb638de22018-02-09 16:12:53 -0800235 wd_service.setExpireAction(ipmiActionToWdAction(ipmi_action));
William A. Kennington III52575252018-02-09 15:54:56 -0800236
William A. Kennington III7a0e5df2021-05-19 13:31:29 -0700237 const auto ipmiTimerUse = types::enum_cast<IpmiTimerUse>(timerUse);
Yong Li118907e2019-01-11 17:36:17 +0800238 wd_service.setTimerUse(ipmiTimerUseToWdTimerUse(ipmiTimerUse));
239
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000240 wd_service.setExpiredTimerUse(WatchdogService::TimerUse::Reserved);
241
Yong Lia729bf42019-10-14 12:42:10 +0800242 timerUseExpirationFlags &= ~expFlagValue;
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000243
William A. Kennington III52575252018-02-09 15:54:56 -0800244 // Set the new interval and the time remaining deci -> mill seconds
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000245 const uint64_t interval = initialCountdown * 100;
William A. Kennington III52575252018-02-09 15:54:56 -0800246 wd_service.setInterval(interval);
William A. Kennington IIIebc53cb2019-12-05 17:04:29 -0800247 wd_service.resetTimeRemaining(false);
William A. Kennington III52575252018-02-09 15:54:56 -0800248
William A. Kennington IIIde14a022018-02-09 16:11:18 -0800249 // Mark as initialized so that future resets behave correctly
250 wd_service.setInitialized(true);
Tim Chao65362f42023-11-14 14:47:25 +0800251 wd_service.setLogTimeout(!dontLog);
William A. Kennington IIIde14a022018-02-09 16:11:18 -0800252
William A. Kennington IIIbae471c2018-06-15 10:38:01 -0700253 lastCallSuccessful = true;
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000254 return ipmi::responseSuccess();
William A. Kennington III61d5f7b2018-02-09 15:23:53 -0800255 }
Patrick Venture0b02be92018-08-31 11:55:55 -0700256 catch (const std::domain_error&)
William A. Kennington III52575252018-02-09 15:54:56 -0800257 {
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000258 return ipmi::responseInvalidFieldRequest();
William A. Kennington III52575252018-02-09 15:54:56 -0800259 }
William A. Kennington III021b4c12018-05-10 11:12:51 -0700260 catch (const InternalFailure& e)
261 {
William A. Kennington IIIbae471c2018-06-15 10:38:01 -0700262 reportError();
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000263 return ipmi::responseUnspecifiedError();
William A. Kennington III021b4c12018-05-10 11:12:51 -0700264 }
William A. Kennington III52575252018-02-09 15:54:56 -0800265 catch (const std::exception& e)
266 {
George Liu05e93872024-07-17 14:48:14 +0800267 lg2::error("wd_set: {ERROR}", "ERROR", e);
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000268 return ipmi::responseUnspecifiedError();
William A. Kennington III52575252018-02-09 15:54:56 -0800269 }
270 catch (...)
271 {
George Liu05e93872024-07-17 14:48:14 +0800272 lg2::error("wd_set: Unknown Error");
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000273 return ipmi::responseUnspecifiedError();
William A. Kennington III52575252018-02-09 15:54:56 -0800274 }
William A. Kennington III61d5f7b2018-02-09 15:23:53 -0800275}
William A. Kennington III73f44512018-02-09 15:28:46 -0800276
277/** @brief Converts a DBUS Watchdog Action to IPMI defined action
278 * @param[in] wd_action The DBUS Watchdog Action
279 * @return The IpmiAction that the wd_action maps to
280 */
281IpmiAction wdActionToIpmiAction(WatchdogService::Action wd_action)
282{
Patrick Venture0b02be92018-08-31 11:55:55 -0700283 switch (wd_action)
William A. Kennington III73f44512018-02-09 15:28:46 -0800284 {
285 case WatchdogService::Action::None:
286 {
287 return IpmiAction::None;
288 }
289 case WatchdogService::Action::HardReset:
290 {
291 return IpmiAction::HardReset;
292 }
293 case WatchdogService::Action::PowerOff:
294 {
295 return IpmiAction::PowerOff;
296 }
297 case WatchdogService::Action::PowerCycle:
298 {
299 return IpmiAction::PowerCycle;
300 }
301 default:
302 {
303 // We have no method via IPMI to signal that the action is unknown
304 // or unmappable in some way.
305 // Just ignore the error and return NONE so the host can reconcile.
306 return IpmiAction::None;
307 }
308 }
309}
310
Yong Li118907e2019-01-11 17:36:17 +0800311IpmiTimerUse wdTimerUseToIpmiTimerUse(WatchdogService::TimerUse wdTimerUse)
312{
313 switch (wdTimerUse)
314 {
315 case WatchdogService::TimerUse::Reserved:
316 {
317 return IpmiTimerUse::Reserved;
318 }
319 case WatchdogService::TimerUse::BIOSFRB2:
320 {
321 return IpmiTimerUse::BIOSFRB2;
322 }
323 case WatchdogService::TimerUse::BIOSPOST:
324 {
325 return IpmiTimerUse::BIOSPOST;
326 }
327 case WatchdogService::TimerUse::OSLoad:
328 {
329 return IpmiTimerUse::OSLoad;
330 }
331
332 case WatchdogService::TimerUse::SMSOS:
333 {
334 return IpmiTimerUse::SMSOS;
335 }
336 case WatchdogService::TimerUse::OEM:
337 {
338 return IpmiTimerUse::OEM;
339 }
340 default:
341 {
342 return IpmiTimerUse::Reserved;
343 }
344 }
345}
346
William A. Kennington III73f44512018-02-09 15:28:46 -0800347static constexpr uint8_t wd_running = 0x1 << 6;
348
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000349/**@brief The getWatchdogTimer ipmi command.
350 *
351 * @return Completion code plus timer details.
352 * - timerUse
353 * - timerAction
354 * - pretimeout
355 * - expireFlags
356 * - initialCountdown
357 * - presentCountdown
358 **/
Patrick Williamsfbc6c9d2023-05-10 07:50:16 -0500359ipmi::RspType<uint3_t, // timerUse - timer use
360 uint3_t, // timerUse - reserved
361 bool, // timerUse - timer is started
362 bool, // timerUse - don't log
Yong Li4dd71af2019-09-29 14:18:07 +0800363
Patrick Williamsfbc6c9d2023-05-10 07:50:16 -0500364 uint3_t, // timerAction - timeout action
365 uint1_t, // timerAction - reserved
366 uint3_t, // timerAction - pre-timeout interrupt
367 uint1_t, // timerAction - reserved
Yong Li4dd71af2019-09-29 14:18:07 +0800368
Yong Lia729bf42019-10-14 12:42:10 +0800369 uint8_t, // pretimeout
370 std::bitset<8>, // expireFlags
371 uint16_t, // initial Countdown - Little Endian (deciseconds)
372 uint16_t // present Countdown - Little Endian (deciseconds)
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000373 >
374 ipmiGetWatchdogTimer()
William A. Kennington III73f44512018-02-09 15:28:46 -0800375{
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000376 uint16_t presentCountdown = 0;
377 uint8_t pretimeout = 0;
William A. Kennington III73f44512018-02-09 15:28:46 -0800378
379 try
380 {
381 WatchdogService wd_service;
382 WatchdogService::Properties wd_prop = wd_service.getProperties();
383
384 // Build and return the response
Yong Lif7c9db02019-01-15 13:45:33 +0800385 // Interval and timeRemaining need converted from milli -> deci seconds
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000386 uint16_t initialCountdown = htole16(wd_prop.interval / 100);
387
388 if (wd_prop.expiredTimerUse != WatchdogService::TimerUse::Reserved)
389 {
Yong Lia729bf42019-10-14 12:42:10 +0800390 timerUseExpirationFlags.set(static_cast<uint8_t>(
391 wdTimerUseToIpmiTimerUse(wd_prop.expiredTimerUse)));
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000392 }
393
William A. Kennington III73f44512018-02-09 15:28:46 -0800394 if (wd_prop.enabled)
395 {
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000396 presentCountdown = htole16(wd_prop.timeRemaining / 100);
Yong Lif7c9db02019-01-15 13:45:33 +0800397 }
398 else
399 {
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000400 if (wd_prop.expiredTimerUse == WatchdogService::TimerUse::Reserved)
401 {
402 presentCountdown = initialCountdown;
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000403 }
404 else
405 {
406 presentCountdown = 0;
Yong Li4dd71af2019-09-29 14:18:07 +0800407 // Automatically clear it whenever a timer expiration occurs.
408 timerNotLogFlags = false;
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000409 }
William A. Kennington III73f44512018-02-09 15:28:46 -0800410 }
Yong Li118907e2019-01-11 17:36:17 +0800411
William A. Kennington III73f44512018-02-09 15:28:46 -0800412 // TODO: Do something about having pretimeout support
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000413 pretimeout = 0;
414
William A. Kennington IIIbae471c2018-06-15 10:38:01 -0700415 lastCallSuccessful = true;
Yong Li4dd71af2019-09-29 14:18:07 +0800416 return ipmi::responseSuccess(
William A. Kennington III7a0e5df2021-05-19 13:31:29 -0700417 types::enum_cast<uint3_t>(
418 wdTimerUseToIpmiTimerUse(wd_prop.timerUse)),
419 0, wd_prop.enabled, timerNotLogFlags,
420 types::enum_cast<uint3_t>(
421 wdActionToIpmiAction(wd_prop.expireAction)),
422 0, timerPreTimeoutInterrupt, 0, pretimeout, timerUseExpirationFlags,
Yong Li4dd71af2019-09-29 14:18:07 +0800423 initialCountdown, presentCountdown);
William A. Kennington III73f44512018-02-09 15:28:46 -0800424 }
William A. Kennington III021b4c12018-05-10 11:12:51 -0700425 catch (const InternalFailure& e)
426 {
William A. Kennington IIIbae471c2018-06-15 10:38:01 -0700427 reportError();
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000428 return ipmi::responseUnspecifiedError();
William A. Kennington III021b4c12018-05-10 11:12:51 -0700429 }
William A. Kennington III73f44512018-02-09 15:28:46 -0800430 catch (const std::exception& e)
431 {
George Liu05e93872024-07-17 14:48:14 +0800432 lg2::error("wd_get: {ERROR}", "ERROR", e);
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000433 return ipmi::responseUnspecifiedError();
William A. Kennington III73f44512018-02-09 15:28:46 -0800434 }
435 catch (...)
436 {
George Liu05e93872024-07-17 14:48:14 +0800437 lg2::error("wd_get: Unknown Error");
Deepak Kumar Sahucfae9482019-05-20 14:58:58 +0000438 return ipmi::responseUnspecifiedError();
William A. Kennington III73f44512018-02-09 15:28:46 -0800439 }
440}