Patrick Venture | 46470a3 | 2018-09-07 19:26:25 -0700 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
| 3 | #include "selutility.hpp" |
| 4 | |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 5 | #include <chrono> |
Vernon Mauery | bdda800 | 2019-02-26 10:18:51 -0800 | [diff] [blame] | 6 | #include <filesystem> |
Vernon Mauery | e08fbff | 2019-04-03 09:19:34 -0700 | [diff] [blame] | 7 | #include <ipmid/api.hpp> |
Vernon Mauery | 3325024 | 2019-03-12 16:49:26 -0700 | [diff] [blame] | 8 | #include <ipmid/types.hpp> |
Vernon Mauery | 6a98fe7 | 2019-03-11 15:57:48 -0700 | [diff] [blame] | 9 | #include <ipmid/utils.hpp> |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 10 | #include <phosphor-logging/elog-errors.hpp> |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 11 | #include <vector> |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 12 | #include <xyz/openbmc_project/Common/error.hpp> |
Patrick Venture | 46470a3 | 2018-09-07 19:26:25 -0700 | [diff] [blame] | 13 | |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 14 | extern const ipmi::sensor::InvObjectIDMap invSensors; |
| 15 | using namespace phosphor::logging; |
| 16 | using InternalFailure = |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 17 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 18 | |
| 19 | namespace ipmi |
| 20 | { |
| 21 | |
| 22 | namespace sel |
| 23 | { |
| 24 | |
| 25 | namespace internal |
| 26 | { |
| 27 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 28 | GetSELEntryResponse |
| 29 | prepareSELEntry(const std::string& objPath, |
| 30 | ipmi::sensor::InvObjectIDMap::const_iterator iter) |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 31 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 32 | GetSELEntryResponse record{}; |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 33 | |
| 34 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 35 | auto service = ipmi::getService(bus, logEntryIntf, objPath); |
| 36 | |
| 37 | // Read all the log entry properties. |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 38 | auto methodCall = bus.new_method_call(service.c_str(), objPath.c_str(), |
| 39 | propIntf, "GetAll"); |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 40 | methodCall.append(logEntryIntf); |
| 41 | |
| 42 | auto reply = bus.call(methodCall); |
| 43 | if (reply.is_method_error()) |
| 44 | { |
| 45 | log<level::ERR>("Error in reading logging property entries"); |
| 46 | elog<InternalFailure>(); |
| 47 | } |
| 48 | |
Tom Joseph | 306878b | 2017-07-10 19:30:54 +0530 | [diff] [blame] | 49 | std::map<PropertyName, PropertyType> entryData; |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 50 | reply.read(entryData); |
| 51 | |
| 52 | // Read Id from the log entry. |
| 53 | static constexpr auto propId = "Id"; |
| 54 | auto iterId = entryData.find(propId); |
| 55 | if (iterId == entryData.end()) |
| 56 | { |
| 57 | log<level::ERR>("Error in reading Id of logging entry"); |
| 58 | elog<InternalFailure>(); |
| 59 | } |
| 60 | |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 61 | record.recordID = static_cast<uint16_t>(std::get<uint32_t>(iterId->second)); |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 62 | |
| 63 | // Read Timestamp from the log entry. |
| 64 | static constexpr auto propTimeStamp = "Timestamp"; |
| 65 | auto iterTimeStamp = entryData.find(propTimeStamp); |
| 66 | if (iterTimeStamp == entryData.end()) |
| 67 | { |
| 68 | log<level::ERR>("Error in reading Timestamp of logging entry"); |
| 69 | elog<InternalFailure>(); |
| 70 | } |
| 71 | |
| 72 | std::chrono::milliseconds chronoTimeStamp( |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 73 | std::get<uint64_t>(iterTimeStamp->second)); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 74 | record.timeStamp = static_cast<uint32_t>( |
| 75 | std::chrono::duration_cast<std::chrono::seconds>(chronoTimeStamp) |
| 76 | .count()); |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 77 | |
| 78 | static constexpr auto systemEventRecord = 0x02; |
| 79 | static constexpr auto generatorID = 0x2000; |
| 80 | static constexpr auto eventMsgRevision = 0x04; |
| 81 | |
| 82 | record.recordType = systemEventRecord; |
| 83 | record.generatorID = generatorID; |
| 84 | record.eventMsgRevision = eventMsgRevision; |
| 85 | |
| 86 | record.sensorType = iter->second.sensorType; |
| 87 | record.sensorNum = iter->second.sensorID; |
| 88 | record.eventData1 = iter->second.eventOffset; |
| 89 | |
| 90 | // Read Resolved from the log entry. |
| 91 | static constexpr auto propResolved = "Resolved"; |
| 92 | auto iterResolved = entryData.find(propResolved); |
| 93 | if (iterResolved == entryData.end()) |
| 94 | { |
| 95 | log<level::ERR>("Error in reading Resolved field of logging entry"); |
| 96 | elog<InternalFailure>(); |
| 97 | } |
| 98 | |
| 99 | static constexpr auto deassertEvent = 0x80; |
| 100 | |
| 101 | // Evaluate if the event is assertion or deassertion event |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 102 | if (std::get<bool>(iterResolved->second)) |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 103 | { |
| 104 | record.eventType = deassertEvent | iter->second.eventReadingType; |
| 105 | } |
| 106 | else |
| 107 | { |
| 108 | record.eventType = iter->second.eventReadingType; |
| 109 | } |
| 110 | |
| 111 | return record; |
| 112 | } |
| 113 | |
| 114 | } // namespace internal |
| 115 | |
Tom Joseph | 6edc8a0 | 2017-06-30 18:52:56 +0530 | [diff] [blame] | 116 | GetSELEntryResponse convertLogEntrytoSEL(const std::string& objPath) |
| 117 | { |
| 118 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 119 | |
| 120 | static constexpr auto assocIntf = "org.openbmc.Associations"; |
| 121 | static constexpr auto assocProp = "associations"; |
| 122 | |
| 123 | auto service = ipmi::getService(bus, assocIntf, objPath); |
| 124 | |
| 125 | // Read the Associations interface. |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 126 | auto methodCall = |
| 127 | bus.new_method_call(service.c_str(), objPath.c_str(), propIntf, "Get"); |
Tom Joseph | 6edc8a0 | 2017-06-30 18:52:56 +0530 | [diff] [blame] | 128 | methodCall.append(assocIntf); |
| 129 | methodCall.append(assocProp); |
| 130 | |
| 131 | auto reply = bus.call(methodCall); |
| 132 | if (reply.is_method_error()) |
| 133 | { |
| 134 | log<level::ERR>("Error in reading Associations interface"); |
| 135 | elog<InternalFailure>(); |
| 136 | } |
| 137 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 138 | using AssociationList = |
| 139 | std::vector<std::tuple<std::string, std::string, std::string>>; |
Tom Joseph | 6edc8a0 | 2017-06-30 18:52:56 +0530 | [diff] [blame] | 140 | |
| 141 | sdbusplus::message::variant<AssociationList> list; |
| 142 | reply.read(list); |
| 143 | |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 144 | auto& assocs = std::get<AssociationList>(list); |
Tom Joseph | 6edc8a0 | 2017-06-30 18:52:56 +0530 | [diff] [blame] | 145 | |
| 146 | /* |
| 147 | * Check if the log entry has any callout associations, if there is a |
| 148 | * callout association try to match the inventory path to the corresponding |
| 149 | * IPMI sensor. |
| 150 | */ |
| 151 | for (const auto& item : assocs) |
| 152 | { |
| 153 | if (std::get<0>(item).compare(CALLOUT_FWD_ASSOCIATION) == 0) |
| 154 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 155 | auto iter = invSensors.find(std::get<2>(item)); |
| 156 | if (iter == invSensors.end()) |
| 157 | { |
| 158 | iter = invSensors.find(BOARD_SENSOR); |
| 159 | if (iter == invSensors.end()) |
| 160 | { |
| 161 | log<level::ERR>("Motherboard sensor not found"); |
| 162 | elog<InternalFailure>(); |
| 163 | } |
| 164 | } |
Tom Joseph | 6edc8a0 | 2017-06-30 18:52:56 +0530 | [diff] [blame] | 165 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 166 | return internal::prepareSELEntry(objPath, iter); |
Tom Joseph | 6edc8a0 | 2017-06-30 18:52:56 +0530 | [diff] [blame] | 167 | } |
| 168 | } |
| 169 | |
| 170 | // If there are no callout associations link the log entry to system event |
| 171 | // sensor |
| 172 | auto iter = invSensors.find(SYSTEM_SENSOR); |
| 173 | if (iter == invSensors.end()) |
| 174 | { |
| 175 | log<level::ERR>("System event sensor not found"); |
| 176 | elog<InternalFailure>(); |
| 177 | } |
| 178 | |
| 179 | return internal::prepareSELEntry(objPath, iter); |
| 180 | } |
| 181 | |
Tom Joseph | 399fd92 | 2017-06-30 18:40:30 +0530 | [diff] [blame] | 182 | std::chrono::seconds getEntryTimeStamp(const std::string& objPath) |
| 183 | { |
| 184 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 185 | |
| 186 | auto service = ipmi::getService(bus, logEntryIntf, objPath); |
| 187 | |
| 188 | using namespace std::string_literals; |
| 189 | static const auto propTimeStamp = "Timestamp"s; |
| 190 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 191 | auto methodCall = |
| 192 | bus.new_method_call(service.c_str(), objPath.c_str(), propIntf, "Get"); |
Tom Joseph | 399fd92 | 2017-06-30 18:40:30 +0530 | [diff] [blame] | 193 | methodCall.append(logEntryIntf); |
| 194 | methodCall.append(propTimeStamp); |
| 195 | |
| 196 | auto reply = bus.call(methodCall); |
| 197 | if (reply.is_method_error()) |
| 198 | { |
| 199 | log<level::ERR>("Error in reading Timestamp from Entry interface"); |
| 200 | elog<InternalFailure>(); |
| 201 | } |
| 202 | |
| 203 | sdbusplus::message::variant<uint64_t> timeStamp; |
| 204 | reply.read(timeStamp); |
| 205 | |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 206 | std::chrono::milliseconds chronoTimeStamp(std::get<uint64_t>(timeStamp)); |
Tom Joseph | 399fd92 | 2017-06-30 18:40:30 +0530 | [diff] [blame] | 207 | |
| 208 | return std::chrono::duration_cast<std::chrono::seconds>(chronoTimeStamp); |
| 209 | } |
| 210 | |
Tom Joseph | 232f529 | 2017-07-07 20:14:02 +0530 | [diff] [blame] | 211 | void readLoggingObjectPaths(ObjectPaths& paths) |
| 212 | { |
| 213 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 214 | auto depth = 0; |
| 215 | paths.clear(); |
| 216 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 217 | auto mapperCall = bus.new_method_call(mapperBusName, mapperObjPath, |
| 218 | mapperIntf, "GetSubTreePaths"); |
Tom Joseph | 232f529 | 2017-07-07 20:14:02 +0530 | [diff] [blame] | 219 | mapperCall.append(logBasePath); |
| 220 | mapperCall.append(depth); |
| 221 | mapperCall.append(ObjectPaths({logEntryIntf})); |
| 222 | |
| 223 | auto reply = bus.call(mapperCall); |
| 224 | if (reply.is_method_error()) |
| 225 | { |
| 226 | log<level::INFO>("Error in reading logging entry object paths"); |
| 227 | } |
| 228 | else |
| 229 | { |
| 230 | reply.read(paths); |
| 231 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 232 | std::sort(paths.begin(), paths.end(), |
| 233 | [](const std::string& a, const std::string& b) { |
| 234 | namespace fs = std::filesystem; |
| 235 | fs::path pathA(a); |
| 236 | fs::path pathB(b); |
| 237 | auto idA = std::stoul(pathA.filename().string()); |
| 238 | auto idB = std::stoul(pathB.filename().string()); |
Tom Joseph | 232f529 | 2017-07-07 20:14:02 +0530 | [diff] [blame] | 239 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 240 | return idA < idB; |
| 241 | }); |
Tom Joseph | 232f529 | 2017-07-07 20:14:02 +0530 | [diff] [blame] | 242 | } |
| 243 | } |
| 244 | |
Tom Joseph | 6b7a143 | 2017-05-19 10:43:36 +0530 | [diff] [blame] | 245 | } // namespace sel |
| 246 | |
| 247 | } // namespace ipmi |