Vishwanatha Subbanna | d7a3f13 | 2017-05-29 19:39:08 +0530 | [diff] [blame] | 1 | #include <chrono> |
| 2 | #include <phosphor-logging/log.hpp> |
| 3 | #include "watchdog.hpp" |
Vishwanatha Subbanna | d7a3f13 | 2017-05-29 19:39:08 +0530 | [diff] [blame] | 4 | namespace phosphor |
| 5 | { |
| 6 | namespace watchdog |
| 7 | { |
| 8 | using namespace std::chrono; |
| 9 | using namespace std::chrono_literals; |
| 10 | using namespace phosphor::logging; |
| 11 | |
Vishwanatha Subbanna | 3473d70 | 2017-05-30 16:38:50 +0530 | [diff] [blame] | 12 | // systemd service to kick start a target. |
| 13 | constexpr auto SYSTEMD_SERVICE = "org.freedesktop.systemd1"; |
| 14 | constexpr auto SYSTEMD_ROOT = "/org/freedesktop/systemd1"; |
| 15 | constexpr auto SYSTEMD_INTERFACE = "org.freedesktop.systemd1.Manager"; |
| 16 | |
Vishwanatha Subbanna | d7a3f13 | 2017-05-29 19:39:08 +0530 | [diff] [blame] | 17 | // Enable or disable watchdog |
| 18 | bool Watchdog::enabled(bool value) |
| 19 | { |
Vishwanatha Subbanna | 00bd377 | 2017-05-31 14:53:42 +0530 | [diff] [blame] | 20 | if (this->enabled() != value) |
Vishwanatha Subbanna | d7a3f13 | 2017-05-29 19:39:08 +0530 | [diff] [blame] | 21 | { |
| 22 | if (value) |
| 23 | { |
| 24 | // Start ONESHOT timer. Timer handles all in usec |
| 25 | auto usec = duration_cast<microseconds>( |
| 26 | milliseconds(this->interval())); |
| 27 | // Update new expiration |
| 28 | timer.start(usec); |
| 29 | |
| 30 | // Enable timer |
| 31 | timer.setEnabled<std::true_type>(); |
| 32 | |
| 33 | log<level::INFO>("watchdog: enabled and started", |
| 34 | entry("INTERVAL=%llu", this->interval())); |
| 35 | } |
| 36 | else |
| 37 | { |
| 38 | timer.setEnabled<std::false_type>(); |
Patrick Venture | 09eebe3 | 2017-08-11 15:23:17 -0700 | [diff] [blame] | 39 | timer.clearExpired(); |
Vishwanatha Subbanna | d7a3f13 | 2017-05-29 19:39:08 +0530 | [diff] [blame] | 40 | log<level::INFO>("watchdog: disabled"); |
| 41 | } |
| 42 | } |
| 43 | return WatchdogInherits::enabled(value); |
| 44 | } |
| 45 | |
| 46 | // Get the remaining time before timer expires. |
| 47 | // If the timer is disabled, returns 0 |
| 48 | uint64_t Watchdog::timeRemaining() const |
| 49 | { |
| 50 | uint64_t timeRemain = 0; |
| 51 | |
Vishwanatha Subbanna | 00bd377 | 2017-05-31 14:53:42 +0530 | [diff] [blame] | 52 | if (this->enabled()) |
Vishwanatha Subbanna | d7a3f13 | 2017-05-29 19:39:08 +0530 | [diff] [blame] | 53 | { |
| 54 | // timer may have already expired and disabled |
| 55 | if (timer.getEnabled() != SD_EVENT_OFF) |
| 56 | { |
| 57 | // the one-shot timer does not expire yet |
| 58 | auto expiry = duration_cast<milliseconds>( |
| 59 | timer.getRemaining()); |
| 60 | |
| 61 | // convert to msec per interface expectation. |
| 62 | auto timeNow = duration_cast<milliseconds>( |
| 63 | Timer::getCurrentTime()); |
| 64 | |
| 65 | // Its possible that timer may have expired by now. |
| 66 | // So need to cross verify. |
| 67 | timeRemain = (expiry > timeNow) ? |
| 68 | (expiry - timeNow).count() : 0; |
| 69 | } |
| 70 | } |
| 71 | return timeRemain; |
| 72 | } |
| 73 | |
| 74 | // Reset the timer to a new expiration value |
| 75 | uint64_t Watchdog::timeRemaining(uint64_t value) |
| 76 | { |
Vishwanatha Subbanna | 00bd377 | 2017-05-31 14:53:42 +0530 | [diff] [blame] | 77 | if (this->enabled()) |
Vishwanatha Subbanna | d7a3f13 | 2017-05-29 19:39:08 +0530 | [diff] [blame] | 78 | { |
| 79 | // Disable the timer |
| 80 | timer.setEnabled<std::false_type>(); |
| 81 | |
| 82 | // Timer handles all in microseconds and hence converting |
| 83 | auto usec = duration_cast<microseconds>( |
| 84 | milliseconds(value)); |
| 85 | // Update new expiration |
| 86 | timer.start(usec); |
| 87 | |
| 88 | // Enable the timer. |
| 89 | timer.setEnabled<std::true_type>(); |
| 90 | |
Vishwanatha Subbanna | d7a3f13 | 2017-05-29 19:39:08 +0530 | [diff] [blame] | 91 | // Update Base class data. |
| 92 | return WatchdogInherits::timeRemaining(value); |
| 93 | } |
| 94 | return 0; |
| 95 | } |
| 96 | |
Vishwanatha Subbanna | 8c5a229 | 2017-05-30 15:34:23 +0530 | [diff] [blame] | 97 | // Optional callback function on timer expiration |
| 98 | void Watchdog::timeOutHandler() |
| 99 | { |
William A. Kennington III | 1232a15 | 2018-02-02 15:57:34 -0800 | [diff] [blame] | 100 | auto action = expireAction(); |
| 101 | auto target = actionTargets.find(action); |
Vishwanatha Subbanna | 3473d70 | 2017-05-30 16:38:50 +0530 | [diff] [blame] | 102 | |
William A. Kennington III | 1232a15 | 2018-02-02 15:57:34 -0800 | [diff] [blame] | 103 | if (target == actionTargets.end()) |
| 104 | { |
| 105 | log<level::INFO>("watchdog: Timed out with no target", |
| 106 | entry("ACTION=%s", convertForMessage(action).c_str())); |
| 107 | return; |
Vishwanatha Subbanna | 3473d70 | 2017-05-30 16:38:50 +0530 | [diff] [blame] | 108 | } |
William A. Kennington III | 1232a15 | 2018-02-02 15:57:34 -0800 | [diff] [blame] | 109 | |
| 110 | auto method = bus.new_method_call(SYSTEMD_SERVICE, |
| 111 | SYSTEMD_ROOT, |
| 112 | SYSTEMD_INTERFACE, |
| 113 | "StartUnit"); |
| 114 | method.append(target->second); |
| 115 | method.append("replace"); |
| 116 | |
| 117 | log<level::INFO>("watchdog: Timed out", |
| 118 | entry("ACTION=%s", convertForMessage(action).c_str()), |
| 119 | entry("TARGET=%s", target->second.c_str())); |
| 120 | bus.call_noreply(method); |
Vishwanatha Subbanna | 8c5a229 | 2017-05-30 15:34:23 +0530 | [diff] [blame] | 121 | } |
| 122 | |
Vishwanatha Subbanna | d7a3f13 | 2017-05-29 19:39:08 +0530 | [diff] [blame] | 123 | } // namespace watchdog |
| 124 | } // namepsace phosphor |