Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 1 | #include "occ_errors.hpp" |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 2 | |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 3 | #include "elog-errors.hpp" |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 4 | |
| 5 | #include <errno.h> |
| 6 | #include <fcntl.h> |
Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 7 | #include <fmt/core.h> |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 8 | #include <sys/ioctl.h> |
| 9 | #include <unistd.h> |
| 10 | |
| 11 | #include <org/open_power/OCC/Device/error.hpp> |
| 12 | #include <phosphor-logging/elog.hpp> |
| 13 | #include <phosphor-logging/log.hpp> |
| 14 | #include <xyz/openbmc_project/Common/error.hpp> |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 15 | namespace open_power |
| 16 | { |
| 17 | namespace occ |
| 18 | { |
| 19 | |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 20 | using namespace phosphor::logging; |
| 21 | using namespace sdbusplus::org::open_power::OCC::Device::Error; |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 22 | using InternalFailure = |
| 23 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 24 | |
| 25 | // Populate the file descriptor on the error file |
| 26 | void Error::openFile() |
| 27 | { |
| 28 | using namespace phosphor::logging; |
| 29 | |
| 30 | fd = open(file.c_str(), O_RDONLY | O_NONBLOCK); |
Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 31 | const int open_errno = errno; |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 32 | if (fd < 0) |
| 33 | { |
Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 34 | log<level::ERR>( |
| 35 | fmt::format("Error::openFile: open failed (errno={})", open_errno) |
| 36 | .c_str()); |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 37 | elog<OpenFailure>(phosphor::logging::org::open_power::OCC::Device:: |
Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 38 | OpenFailure::CALLOUT_ERRNO(open_errno), |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 39 | phosphor::logging::org::open_power::OCC::Device:: |
| 40 | OpenFailure::CALLOUT_DEVICE_PATH(file.c_str())); |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 41 | } |
| 42 | } |
| 43 | |
| 44 | // Attaches the FD to event loop and registers the callback handler |
| 45 | void Error::registerCallBack() |
| 46 | { |
| 47 | decltype(eventSource.get()) sourcePtr = nullptr; |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 48 | auto r = sd_event_add_io(event.get(), &sourcePtr, fd, EPOLLPRI | EPOLLERR, |
| 49 | processEvents, this); |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 50 | eventSource.reset(sourcePtr); |
| 51 | |
| 52 | if (r < 0) |
| 53 | { |
| 54 | log<level::ERR>("Failed to register callback handler", |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 55 | entry("ERROR=%s", strerror(-r))); |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 56 | elog<InternalFailure>(); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | // Starts to watch for errors |
Eddie James | 774f9af | 2019-03-19 20:58:53 +0000 | [diff] [blame] | 61 | void Error::addWatch(bool poll) |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 62 | { |
Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 63 | if (!watching) |
| 64 | { |
| 65 | // Open the file |
| 66 | openFile(); |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 67 | |
Eddie James | 774f9af | 2019-03-19 20:58:53 +0000 | [diff] [blame] | 68 | if (poll) |
| 69 | { |
| 70 | // register the callback handler |
| 71 | registerCallBack(); |
| 72 | } |
Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 73 | |
| 74 | // Set we are watching the error |
| 75 | watching = true; |
| 76 | } |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | // Stops watching for errors |
| 80 | void Error::removeWatch() |
| 81 | { |
Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 82 | if (watching) |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 83 | { |
Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 84 | // Close the file |
| 85 | if (fd >= 0) |
| 86 | { |
| 87 | close(fd); |
| 88 | } |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 89 | |
Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 90 | // Reduce the reference count. Since there is only one instances |
| 91 | // of add_io, this will result empty loop |
| 92 | eventSource.reset(); |
| 93 | |
| 94 | // We are no more watching the error |
| 95 | watching = false; |
| 96 | } |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | // Callback handler when there is an activity on the FD |
George Liu | d0345ae | 2021-09-10 13:13:28 +0800 | [diff] [blame] | 100 | int Error::processEvents(sd_event_source* /*es*/, int /*fd*/, |
| 101 | uint32_t /*revents*/, void* userData) |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 102 | { |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 103 | auto error = static_cast<Error*>(userData); |
| 104 | |
| 105 | error->analyzeEvent(); |
| 106 | return 0; |
| 107 | } |
| 108 | |
| 109 | // Reads the error file and analyzes the data |
| 110 | void Error::analyzeEvent() |
| 111 | { |
| 112 | // Get the number of bytes to read |
Eddie James | 9789e71 | 2022-05-25 15:43:40 -0500 | [diff] [blame] | 113 | int err = 0; |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 114 | int len = -1; |
| 115 | auto r = ioctl(fd, FIONREAD, &len); |
| 116 | if (r < 0) |
| 117 | { |
| 118 | elog<ConfigFailure>( |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 119 | phosphor::logging::org::open_power::OCC::Device::ConfigFailure:: |
| 120 | CALLOUT_ERRNO(errno), |
| 121 | phosphor::logging::org::open_power::OCC::Device::ConfigFailure:: |
| 122 | CALLOUT_DEVICE_PATH(file.c_str())); |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | // A non-zero data indicates an error condition |
| 126 | // Let the caller take appropriate action on this |
| 127 | auto data = readFile(len); |
Eddie James | 9789e71 | 2022-05-25 15:43:40 -0500 | [diff] [blame] | 128 | if (!data.empty()) |
| 129 | err = std::stoi(data, nullptr, 0); |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 130 | if (callBack) |
| 131 | { |
Eddie James | 9789e71 | 2022-05-25 15:43:40 -0500 | [diff] [blame] | 132 | callBack(err); |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 133 | } |
| 134 | return; |
| 135 | } |
| 136 | |
| 137 | // Reads so many bytes as passed in |
| 138 | std::string Error::readFile(int len) const |
| 139 | { |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 140 | auto data = std::make_unique<char[]>(len + 1); |
Andrew Geissler | 1111087 | 2018-01-17 11:07:01 -0800 | [diff] [blame] | 141 | auto retries = 3; |
| 142 | auto delay = std::chrono::milliseconds{100}; |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 143 | |
Andrew Geissler | 1111087 | 2018-01-17 11:07:01 -0800 | [diff] [blame] | 144 | // OCC / FSI have intermittent issues so retry all reads |
| 145 | while (true) |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 146 | { |
Andrew Geissler | 1111087 | 2018-01-17 11:07:01 -0800 | [diff] [blame] | 147 | // This file get created soon after binding. A value of 0 is |
| 148 | // deemed success and anything else is a Failure |
| 149 | // Since all the sysfs files would have size of 4096, if we read 0 |
| 150 | // bytes -or- value '0', then it just means we are fine |
| 151 | auto r = read(fd, data.get(), len); |
| 152 | if (r < 0) |
| 153 | { |
| 154 | retries--; |
| 155 | if (retries == 0) |
| 156 | { |
| 157 | elog<ReadFailure>( |
| 158 | phosphor::logging::org::open_power::OCC::Device:: |
| 159 | ReadFailure::CALLOUT_ERRNO(errno), |
| 160 | phosphor::logging::org::open_power::OCC::Device:: |
| 161 | ReadFailure::CALLOUT_DEVICE_PATH(file.c_str())); |
| 162 | break; |
| 163 | } |
| 164 | std::this_thread::sleep_for(delay); |
| 165 | continue; |
| 166 | } |
| 167 | break; |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 168 | } |
Vishwanatha Subbanna | 2c12913 | 2017-08-29 21:12:01 +0530 | [diff] [blame] | 169 | // Need to seek to START, else the poll returns immediately telling |
| 170 | // there is data to be read |
Andrew Geissler | 1111087 | 2018-01-17 11:07:01 -0800 | [diff] [blame] | 171 | auto r = lseek(fd, 0, SEEK_SET); |
Vishwanatha Subbanna | 2c12913 | 2017-08-29 21:12:01 +0530 | [diff] [blame] | 172 | if (r < 0) |
| 173 | { |
| 174 | log<level::ERR>("Failure seeking error file to START"); |
| 175 | elog<ConfigFailure>( |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 176 | phosphor::logging::org::open_power::OCC::Device::ConfigFailure:: |
| 177 | CALLOUT_ERRNO(errno), |
| 178 | phosphor::logging::org::open_power::OCC::Device::ConfigFailure:: |
| 179 | CALLOUT_DEVICE_PATH(file.c_str())); |
Vishwanatha Subbanna | 2c12913 | 2017-08-29 21:12:01 +0530 | [diff] [blame] | 180 | } |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 181 | return std::string(data.get()); |
| 182 | } |
| 183 | |
| 184 | } // namespace occ |
| 185 | } // namespace open_power |