Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2019 Intel 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 | |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 17 | #include <systemd/sd-journal.h> |
| 18 | |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 19 | #include <PSUEvent.hpp> |
Ed Tanous | 6cb732a | 2021-02-18 15:33:51 -0800 | [diff] [blame] | 20 | #include <SensorPaths.hpp> |
James Feist | 8086aba | 2020-08-25 16:00:59 -0700 | [diff] [blame] | 21 | #include <boost/asio/io_service.hpp> |
| 22 | #include <boost/asio/read_until.hpp> |
Patrick Venture | 96e97db | 2019-10-31 13:44:38 -0700 | [diff] [blame] | 23 | #include <boost/container/flat_map.hpp> |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 24 | #include <sdbusplus/asio/connection.hpp> |
| 25 | #include <sdbusplus/asio/object_server.hpp> |
James Feist | 38fb598 | 2020-05-28 10:09:54 -0700 | [diff] [blame] | 26 | |
| 27 | #include <iostream> |
| 28 | #include <memory> |
Patrick Venture | 96e97db | 2019-10-31 13:44:38 -0700 | [diff] [blame] | 29 | #include <stdexcept> |
| 30 | #include <string> |
| 31 | #include <utility> |
| 32 | #include <variant> |
| 33 | #include <vector> |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 34 | |
| 35 | PSUCombineEvent::PSUCombineEvent( |
Yong Li | 3046a02 | 2020-04-03 13:01:02 +0800 | [diff] [blame] | 36 | sdbusplus::asio::object_server& objectServer, |
| 37 | std::shared_ptr<sdbusplus::asio::connection>& conn, |
| 38 | boost::asio::io_service& io, const std::string& psuName, |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 39 | boost::container::flat_map<std::string, std::vector<std::string>>& |
| 40 | eventPathList, |
Cheng C Yang | 202a1ff | 2020-01-09 09:34:22 +0800 | [diff] [blame] | 41 | boost::container::flat_map< |
| 42 | std::string, |
| 43 | boost::container::flat_map<std::string, std::vector<std::string>>>& |
| 44 | groupEventPathList, |
Lei YU | 7170a23 | 2021-02-04 16:19:27 +0800 | [diff] [blame] | 45 | const std::string& combineEventName, double pollRate) : |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 46 | objServer(objectServer) |
| 47 | { |
Ed Tanous | 6cb732a | 2021-02-18 15:33:51 -0800 | [diff] [blame] | 48 | std::string psuNameEscaped = sensor_paths::escapePathForDbus(psuName); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 49 | eventInterface = objServer.add_interface( |
Ed Tanous | 6cb732a | 2021-02-18 15:33:51 -0800 | [diff] [blame] | 50 | "/xyz/openbmc_project/State/Decorator/" + psuNameEscaped + "_" + |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 51 | combineEventName, |
| 52 | "xyz.openbmc_project.State.Decorator.OperationalStatus"); |
James Feist | b6c0b91 | 2019-07-09 12:21:44 -0700 | [diff] [blame] | 53 | eventInterface->register_property("functional", true); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 54 | |
| 55 | if (!eventInterface->initialize()) |
| 56 | { |
| 57 | std::cerr << "error initializing event interface\n"; |
| 58 | } |
| 59 | |
| 60 | std::shared_ptr<std::set<std::string>> combineEvent = |
| 61 | std::make_shared<std::set<std::string>>(); |
| 62 | for (const auto& pathList : eventPathList) |
| 63 | { |
Yong Li | 591b1e4 | 2019-12-19 17:46:31 +0800 | [diff] [blame] | 64 | std::shared_ptr<std::set<std::string>> assert = |
| 65 | std::make_shared<std::set<std::string>>(); |
Cheng C Yang | 202a1ff | 2020-01-09 09:34:22 +0800 | [diff] [blame] | 66 | std::shared_ptr<bool> state = std::make_shared<bool>(false); |
Yong Li | 591b1e4 | 2019-12-19 17:46:31 +0800 | [diff] [blame] | 67 | |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 68 | const std::string& eventName = pathList.first; |
| 69 | std::string eventPSUName = eventName + psuName; |
| 70 | for (const auto& path : pathList.second) |
| 71 | { |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 72 | auto p = std::make_shared<PSUSubEvent>( |
Yong Li | 3046a02 | 2020-04-03 13:01:02 +0800 | [diff] [blame] | 73 | eventInterface, path, conn, io, eventName, eventName, assert, |
Lei YU | 7170a23 | 2021-02-04 16:19:27 +0800 | [diff] [blame] | 74 | combineEvent, state, psuName, pollRate); |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 75 | p->setupRead(); |
| 76 | |
| 77 | events[eventPSUName].emplace_back(p); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 78 | asserts.emplace_back(assert); |
| 79 | states.emplace_back(state); |
| 80 | } |
| 81 | } |
Cheng C Yang | 202a1ff | 2020-01-09 09:34:22 +0800 | [diff] [blame] | 82 | |
| 83 | for (const auto& groupPathList : groupEventPathList) |
| 84 | { |
| 85 | for (const auto& pathList : groupPathList.second) |
| 86 | { |
| 87 | std::shared_ptr<std::set<std::string>> assert = |
| 88 | std::make_shared<std::set<std::string>>(); |
| 89 | std::shared_ptr<bool> state = std::make_shared<bool>(false); |
| 90 | |
| 91 | const std::string& groupEventName = pathList.first; |
| 92 | std::string eventPSUName = groupEventName + psuName; |
| 93 | for (const auto& path : pathList.second) |
| 94 | { |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 95 | auto p = std::make_shared<PSUSubEvent>( |
Yong Li | 3046a02 | 2020-04-03 13:01:02 +0800 | [diff] [blame] | 96 | eventInterface, path, conn, io, groupEventName, |
Lei YU | 7170a23 | 2021-02-04 16:19:27 +0800 | [diff] [blame] | 97 | groupPathList.first, assert, combineEvent, state, psuName, |
| 98 | pollRate); |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 99 | p->setupRead(); |
| 100 | events[eventPSUName].emplace_back(p); |
| 101 | |
Cheng C Yang | 202a1ff | 2020-01-09 09:34:22 +0800 | [diff] [blame] | 102 | asserts.emplace_back(assert); |
| 103 | states.emplace_back(state); |
| 104 | } |
| 105 | } |
| 106 | } |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | PSUCombineEvent::~PSUCombineEvent() |
| 110 | { |
Cheng C Yang | 202a1ff | 2020-01-09 09:34:22 +0800 | [diff] [blame] | 111 | // Clear unique_ptr first |
| 112 | for (auto& event : events) |
| 113 | { |
| 114 | for (auto& subEventPtr : event.second) |
| 115 | { |
| 116 | subEventPtr.reset(); |
| 117 | } |
| 118 | } |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 119 | events.clear(); |
| 120 | objServer.remove_interface(eventInterface); |
| 121 | } |
| 122 | |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 123 | static boost::container::flat_map<std::string, |
| 124 | std::pair<std::string, std::string>> |
| 125 | logID = { |
| 126 | {"PredictiveFailure", |
| 127 | {"OpenBMC.0.1.PowerSupplyFailurePredicted", |
| 128 | "OpenBMC.0.1.PowerSupplyPredictedFailureRecovered"}}, |
| 129 | {"Failure", |
| 130 | {"OpenBMC.0.1.PowerSupplyFailed", "OpenBMC.0.1.PowerSupplyRecovered"}}, |
| 131 | {"ACLost", |
Cheng C Yang | bb732ef | 2019-09-18 16:25:58 +0800 | [diff] [blame] | 132 | {"OpenBMC.0.1.PowerSupplyPowerLost", |
| 133 | "OpenBMC.0.1.PowerSupplyPowerRestored"}}, |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 134 | {"FanFault", |
| 135 | {"OpenBMC.0.1.PowerSupplyFanFailed", |
| 136 | "OpenBMC.0.1.PowerSupplyFanRecovered"}}, |
jayaprakash Mutyala | d12f23e | 2019-12-03 23:03:52 +0000 | [diff] [blame] | 137 | {"ConfigureError", |
| 138 | {"OpenBMC.0.1.PowerSupplyConfigurationError", |
| 139 | "OpenBMC.0.1.PowerSupplyConfigurationErrorRecovered"}}}; |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 140 | |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 141 | PSUSubEvent::PSUSubEvent( |
| 142 | std::shared_ptr<sdbusplus::asio::dbus_interface> eventInterface, |
Yong Li | 3046a02 | 2020-04-03 13:01:02 +0800 | [diff] [blame] | 143 | const std::string& path, std::shared_ptr<sdbusplus::asio::connection>& conn, |
| 144 | boost::asio::io_service& io, const std::string& groupEventName, |
| 145 | const std::string& eventName, |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 146 | std::shared_ptr<std::set<std::string>> asserts, |
| 147 | std::shared_ptr<std::set<std::string>> combineEvent, |
Lei YU | 7170a23 | 2021-02-04 16:19:27 +0800 | [diff] [blame] | 148 | std::shared_ptr<bool> state, const std::string& psuName, double pollRate) : |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 149 | std::enable_shared_from_this<PSUSubEvent>(), |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 150 | eventInterface(std::move(eventInterface)), asserts(std::move(asserts)), |
| 151 | combineEvent(std::move(combineEvent)), assertState(std::move(state)), |
| 152 | errCount(0), path(path), eventName(eventName), waitTimer(io), inputDev(io), |
| 153 | psuName(psuName), groupEventName(groupEventName), systemBus(conn) |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 154 | { |
Lei YU | 7170a23 | 2021-02-04 16:19:27 +0800 | [diff] [blame] | 155 | if (pollRate > 0.0) |
| 156 | { |
| 157 | eventPollMs = static_cast<unsigned int>(pollRate * 1000); |
| 158 | } |
Cheng C Yang | a97f134 | 2020-02-11 15:10:41 +0800 | [diff] [blame] | 159 | fd = open(path.c_str(), O_RDONLY); |
| 160 | if (fd < 0) |
| 161 | { |
| 162 | std::cerr << "PSU sub event failed to open file\n"; |
| 163 | return; |
| 164 | } |
| 165 | inputDev.assign(fd); |
| 166 | |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 167 | auto found = logID.find(eventName); |
| 168 | if (found == logID.end()) |
| 169 | { |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 170 | assertMessage.clear(); |
| 171 | deassertMessage.clear(); |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 172 | } |
| 173 | else |
| 174 | { |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 175 | assertMessage = found->second.first; |
| 176 | deassertMessage = found->second.second; |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | auto fanPos = path.find("fan"); |
| 180 | if (fanPos != std::string::npos) |
| 181 | { |
| 182 | fanName = path.substr(fanPos); |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 183 | auto fanNamePos = fanName.find('_'); |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 184 | if (fanNamePos != std::string::npos) |
| 185 | { |
| 186 | fanName = fanName.substr(0, fanNamePos); |
| 187 | } |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 188 | } |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | void PSUSubEvent::setupRead(void) |
| 192 | { |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 193 | std::shared_ptr<boost::asio::streambuf> buffer = |
| 194 | std::make_shared<boost::asio::streambuf>(); |
| 195 | std::weak_ptr<PSUSubEvent> weakRef = weak_from_this(); |
| 196 | |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 197 | boost::asio::async_read_until( |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 198 | inputDev, *buffer, '\n', |
| 199 | [weakRef, buffer](const boost::system::error_code& ec, |
| 200 | std::size_t /*bytes_transfered*/) { |
| 201 | std::shared_ptr<PSUSubEvent> self = weakRef.lock(); |
| 202 | if (self) |
| 203 | { |
| 204 | self->readBuf = buffer; |
| 205 | self->handleResponse(ec); |
| 206 | } |
| 207 | }); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | PSUSubEvent::~PSUSubEvent() |
| 211 | { |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 212 | waitTimer.cancel(); |
Cheng C Yang | a97f134 | 2020-02-11 15:10:41 +0800 | [diff] [blame] | 213 | inputDev.close(); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | void PSUSubEvent::handleResponse(const boost::system::error_code& err) |
| 217 | { |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 218 | if ((err == boost::system::errc::bad_file_descriptor) || |
| 219 | (err == boost::asio::error::misc_errors::not_found)) |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 220 | { |
| 221 | return; |
| 222 | } |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 223 | std::istream responseStream(readBuf.get()); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 224 | if (!err) |
| 225 | { |
| 226 | std::string response; |
| 227 | try |
| 228 | { |
| 229 | std::getline(responseStream, response); |
Josh Lehan | 833661a | 2020-03-04 17:35:41 -0800 | [diff] [blame] | 230 | int nvalue = std::stoi(response); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 231 | responseStream.clear(); |
Josh Lehan | 833661a | 2020-03-04 17:35:41 -0800 | [diff] [blame] | 232 | |
| 233 | updateValue(nvalue); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 234 | errCount = 0; |
| 235 | } |
| 236 | catch (const std::invalid_argument&) |
| 237 | { |
| 238 | errCount++; |
| 239 | } |
| 240 | } |
| 241 | else |
| 242 | { |
| 243 | errCount++; |
| 244 | } |
| 245 | if (errCount >= warnAfterErrorCount) |
| 246 | { |
| 247 | if (errCount == warnAfterErrorCount) |
| 248 | { |
| 249 | std::cerr << "Failure to read event at " << path << "\n"; |
| 250 | } |
| 251 | updateValue(0); |
| 252 | errCount++; |
| 253 | } |
Cheng C Yang | a97f134 | 2020-02-11 15:10:41 +0800 | [diff] [blame] | 254 | lseek(fd, 0, SEEK_SET); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 255 | waitTimer.expires_from_now(boost::posix_time::milliseconds(eventPollMs)); |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 256 | |
| 257 | std::weak_ptr<PSUSubEvent> weakRef = weak_from_this(); |
| 258 | waitTimer.async_wait([weakRef](const boost::system::error_code& ec) { |
| 259 | std::shared_ptr<PSUSubEvent> self = weakRef.lock(); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 260 | if (ec == boost::asio::error::operation_aborted) |
| 261 | { |
| 262 | return; |
| 263 | } |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 264 | if (self) |
| 265 | { |
| 266 | self->setupRead(); |
| 267 | } |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 268 | }); |
| 269 | } |
| 270 | |
| 271 | // Any of the sub events of one event is asserted, then the event will be |
| 272 | // asserted. Only if none of the sub events are asserted, the event will be |
| 273 | // deasserted. |
| 274 | void PSUSubEvent::updateValue(const int& newValue) |
| 275 | { |
Josh Lehan | 833661a | 2020-03-04 17:35:41 -0800 | [diff] [blame] | 276 | // Take no action if value already equal |
| 277 | // Same semantics as Sensor::updateValue(const double&) |
| 278 | if (newValue == value) |
| 279 | { |
| 280 | return; |
| 281 | } |
| 282 | |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 283 | if (newValue == 0) |
| 284 | { |
Yong Li | 591b1e4 | 2019-12-19 17:46:31 +0800 | [diff] [blame] | 285 | // log deassert only after all asserts are gone |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 286 | if (!(*asserts).empty()) |
| 287 | { |
Yong Li | 591b1e4 | 2019-12-19 17:46:31 +0800 | [diff] [blame] | 288 | auto found = (*asserts).find(path); |
| 289 | if (found == (*asserts).end()) |
| 290 | { |
| 291 | return; |
| 292 | } |
| 293 | (*asserts).erase(path); |
| 294 | |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 295 | return; |
| 296 | } |
| 297 | if (*assertState == true) |
| 298 | { |
| 299 | *assertState = false; |
Cheng C Yang | 202a1ff | 2020-01-09 09:34:22 +0800 | [diff] [blame] | 300 | auto foundCombine = (*combineEvent).find(groupEventName); |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 301 | if (foundCombine == (*combineEvent).end()) |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 302 | { |
| 303 | return; |
| 304 | } |
Cheng C Yang | 202a1ff | 2020-01-09 09:34:22 +0800 | [diff] [blame] | 305 | (*combineEvent).erase(groupEventName); |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 306 | if (!deassertMessage.empty()) |
| 307 | { |
| 308 | // Fan Failed has two args |
| 309 | std::string sendMessage = eventName + " deassert"; |
| 310 | if (deassertMessage == "OpenBMC.0.1.PowerSupplyFanRecovered") |
| 311 | { |
| 312 | sd_journal_send( |
| 313 | "MESSAGE=%s", sendMessage.c_str(), "PRIORITY=%i", |
Yong Li | 591b1e4 | 2019-12-19 17:46:31 +0800 | [diff] [blame] | 314 | LOG_INFO, "REDFISH_MESSAGE_ID=%s", |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 315 | deassertMessage.c_str(), "REDFISH_MESSAGE_ARGS=%s,%s", |
| 316 | psuName.c_str(), fanName.c_str(), NULL); |
| 317 | } |
| 318 | else |
| 319 | { |
| 320 | sd_journal_send( |
| 321 | "MESSAGE=%s", sendMessage.c_str(), "PRIORITY=%i", |
Yong Li | 591b1e4 | 2019-12-19 17:46:31 +0800 | [diff] [blame] | 322 | LOG_INFO, "REDFISH_MESSAGE_ID=%s", |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 323 | deassertMessage.c_str(), "REDFISH_MESSAGE_ARGS=%s", |
| 324 | psuName.c_str(), NULL); |
| 325 | } |
| 326 | } |
| 327 | |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 328 | if ((*combineEvent).empty()) |
| 329 | { |
| 330 | eventInterface->set_property("functional", true); |
| 331 | } |
| 332 | } |
| 333 | } |
| 334 | else |
| 335 | { |
Yong Li | 591b1e4 | 2019-12-19 17:46:31 +0800 | [diff] [blame] | 336 | if ((*assertState == false) && ((*asserts).empty())) |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 337 | { |
| 338 | *assertState = true; |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 339 | if (!assertMessage.empty()) |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 340 | { |
Yong Li | 3046a02 | 2020-04-03 13:01:02 +0800 | [diff] [blame] | 341 | // For failure and configure error, spec requires a beep |
| 342 | if ((assertMessage == "OpenBMC.0.1.PowerSupplyFailed") || |
| 343 | (assertMessage == |
| 344 | "OpenBMC.0.1.PowerSupplyConfigurationError")) |
| 345 | { |
| 346 | std::cout << " beep for " << assertMessage << "\n"; |
| 347 | beep(beepPSUFailure); |
| 348 | } |
| 349 | |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 350 | // Fan Failed has two args |
| 351 | std::string sendMessage = eventName + " assert"; |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 352 | if (assertMessage == "OpenBMC.0.1.PowerSupplyFanFailed") |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 353 | { |
Cheng C Yang | 9b53a62 | 2019-08-27 22:13:58 +0800 | [diff] [blame] | 354 | sd_journal_send( |
| 355 | "MESSAGE=%s", sendMessage.c_str(), "PRIORITY=%i", |
Yong Li | 591b1e4 | 2019-12-19 17:46:31 +0800 | [diff] [blame] | 356 | LOG_WARNING, "REDFISH_MESSAGE_ID=%s", |
| 357 | assertMessage.c_str(), "REDFISH_MESSAGE_ARGS=%s,%s", |
| 358 | psuName.c_str(), fanName.c_str(), NULL); |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 359 | } |
| 360 | else |
| 361 | { |
| 362 | sd_journal_send( |
| 363 | "MESSAGE=%s", sendMessage.c_str(), "PRIORITY=%i", |
Yong Li | 591b1e4 | 2019-12-19 17:46:31 +0800 | [diff] [blame] | 364 | LOG_WARNING, "REDFISH_MESSAGE_ID=%s", |
| 365 | assertMessage.c_str(), "REDFISH_MESSAGE_ARGS=%s", |
| 366 | psuName.c_str(), NULL); |
Cheng C Yang | 5665db2 | 2019-07-12 00:57:30 +0800 | [diff] [blame] | 367 | } |
| 368 | } |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 369 | if ((*combineEvent).empty()) |
| 370 | { |
| 371 | eventInterface->set_property("functional", false); |
| 372 | } |
Cheng C Yang | 202a1ff | 2020-01-09 09:34:22 +0800 | [diff] [blame] | 373 | (*combineEvent).emplace(groupEventName); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 374 | } |
Yong Li | 591b1e4 | 2019-12-19 17:46:31 +0800 | [diff] [blame] | 375 | (*asserts).emplace(path); |
Cheng C Yang | 58b2b53 | 2019-05-31 00:19:45 +0800 | [diff] [blame] | 376 | } |
| 377 | value = newValue; |
| 378 | } |
Yong Li | 3046a02 | 2020-04-03 13:01:02 +0800 | [diff] [blame] | 379 | |
| 380 | void PSUSubEvent::beep(const uint8_t& beepPriority) |
| 381 | { |
| 382 | systemBus->async_method_call( |
| 383 | [](boost::system::error_code ec) { |
| 384 | if (ec) |
| 385 | { |
| 386 | std::cerr << "beep error (ec = " << ec << ")\n"; |
| 387 | return; |
| 388 | } |
| 389 | }, |
| 390 | "xyz.openbmc_project.BeepCode", "/xyz/openbmc_project/BeepCode", |
| 391 | "xyz.openbmc_project.BeepCode", "Beep", uint8_t(beepPriority)); |
| 392 | } |