blob: 91874843a32eb3c1da4fc9ff6a7f1333da7cfc0a [file] [log] [blame]
Patrick Venture46470a32018-09-07 19:26:25 -07001#include "config.h"
2
3#include "selutility.hpp"
4
Lei YU5015e952020-12-03 14:01:31 +08005#include <charconv>
Tom Joseph6b7a1432017-05-19 10:43:36 +05306#include <chrono>
Vernon Mauerybdda8002019-02-26 10:18:51 -08007#include <filesystem>
Vernon Mauerye08fbff2019-04-03 09:19:34 -07008#include <ipmid/api.hpp>
Vernon Mauery33250242019-03-12 16:49:26 -07009#include <ipmid/types.hpp>
Vernon Mauery6a98fe72019-03-11 15:57:48 -070010#include <ipmid/utils.hpp>
Patrick Venture3a5071a2018-09-12 13:27:42 -070011#include <phosphor-logging/elog-errors.hpp>
Tom Joseph6b7a1432017-05-19 10:43:36 +053012#include <vector>
Patrick Venture3a5071a2018-09-12 13:27:42 -070013#include <xyz/openbmc_project/Common/error.hpp>
Patrick Venture46470a32018-09-07 19:26:25 -070014
Tom Joseph6b7a1432017-05-19 10:43:36 +053015extern const ipmi::sensor::InvObjectIDMap invSensors;
16using namespace phosphor::logging;
17using InternalFailure =
Patrick Venture0b02be92018-08-31 11:55:55 -070018 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Tom Joseph6b7a1432017-05-19 10:43:36 +053019
Lei YU5015e952020-12-03 14:01:31 +080020namespace
21{
22
23constexpr auto systemEventRecord = 0x02;
Lei YU07c15b72020-12-06 15:08:06 +080024constexpr auto generatorID = 0x2000;
25constexpr auto eventMsgRevision = 0x04;
26constexpr auto assertEvent = 0x00;
27constexpr auto deassertEvent = 0x80;
28constexpr auto selDataSize = 3;
29constexpr auto oemCDDataSize = 9;
30constexpr auto oemEFDataSize = 13;
Lei YU5015e952020-12-03 14:01:31 +080031
Lei YU719a41c2020-12-03 17:50:44 +080032constexpr auto propAdditionalData = "AdditionalData";
Lei YU07c15b72020-12-06 15:08:06 +080033constexpr auto propResolved = "Resolved";
34
Lei YU719a41c2020-12-03 17:50:44 +080035constexpr auto strEventDir = "EVENT_DIR";
36constexpr auto strGenerateId = "GENERATOR_ID";
37constexpr auto strRecordType = "RECORD_TYPE";
38constexpr auto strSensorData = "SENSOR_DATA";
39constexpr auto strSensorPath = "SENSOR_PATH";
40
Lei YU5015e952020-12-03 14:01:31 +080041} // namespace
42
Tom Joseph6b7a1432017-05-19 10:43:36 +053043namespace ipmi
44{
45
46namespace sel
47{
48
49namespace internal
50{
51
Lei YU5015e952020-12-03 14:01:31 +080052inline bool isRecordOEM(uint8_t recordType)
53{
54 return recordType != systemEventRecord;
55}
56
Lei YU719a41c2020-12-03 17:50:44 +080057using additionalDataMap = std::map<std::string, std::string>;
Lei YU07c15b72020-12-06 15:08:06 +080058using entryDataMap = std::map<PropertyName, PropertyType>;
Lei YU5015e952020-12-03 14:01:31 +080059/** Parse the entry with format like key=val */
60std::pair<std::string, std::string> parseEntry(const std::string& entry)
61{
62 constexpr auto equalSign = "=";
63 auto pos = entry.find(equalSign);
64 assert(pos != std::string::npos);
65 auto key = entry.substr(0, pos);
66 auto val = entry.substr(pos + 1);
67 return {key, val};
68}
69
Lei YU719a41c2020-12-03 17:50:44 +080070additionalDataMap parseAdditionalData(const AdditionalData& data)
Lei YU5015e952020-12-03 14:01:31 +080071{
72 std::map<std::string, std::string> ret;
73
74 for (const auto& d : data)
75 {
76 ret.insert(parseEntry(d));
77 }
78 return ret;
79}
80
Lei YU07c15b72020-12-06 15:08:06 +080081int convert(const std::string_view& str, int base = 10)
Lei YU5015e952020-12-03 14:01:31 +080082{
83 int ret;
84 std::from_chars(str.data(), str.data() + str.size(), ret, base);
Lei YU07c15b72020-12-06 15:08:06 +080085 return ret;
Lei YU5015e952020-12-03 14:01:31 +080086}
87
88// Convert the string to a vector of uint8_t, where the str is formatted as hex
89std::vector<uint8_t> convertVec(const std::string_view& str)
90{
91 std::vector<uint8_t> ret;
92 auto len = str.size() / 2;
93 ret.reserve(len);
94 for (size_t i = 0; i < len; ++i)
95 {
Lei YU07c15b72020-12-06 15:08:06 +080096 ret.emplace_back(
97 static_cast<uint8_t>(convert(str.substr(i * 2, 2), 16)));
Lei YU5015e952020-12-03 14:01:31 +080098 }
99 return ret;
100}
101
Lei YU719a41c2020-12-03 17:50:44 +0800102/** Construct OEM SEL record according to IPMI spec 32.2, 32.3. */
Lei YU07c15b72020-12-06 15:08:06 +0800103void constructOEMSEL(uint8_t recordType, std::chrono::milliseconds timestamp,
Lei YU719a41c2020-12-03 17:50:44 +0800104 const additionalDataMap& m, GetSELEntryResponse& record)
105{
106 auto dataIter = m.find(strSensorData);
107 assert(dataIter != m.end());
108 auto sensorData = convertVec(dataIter->second);
109 if (recordType >= 0xC0 && recordType < 0xE0)
110 {
111 record.event.oemCD.timeStamp = static_cast<uint32_t>(
112 std::chrono::duration_cast<std::chrono::seconds>(timestamp)
113 .count());
114 record.event.oemCD.recordType = recordType;
115 // The ManufactureID and OEM Defined are packed in the sensor data
116 // Fill the 9 bytes of Manufacture ID and oemDefined
117 memcpy(&record.event.oemCD.manufacturerID, sensorData.data(),
Lei YU07c15b72020-12-06 15:08:06 +0800118 std::min(sensorData.size(), static_cast<size_t>(oemCDDataSize)));
Lei YU719a41c2020-12-03 17:50:44 +0800119 }
120 else if (recordType >= 0xE0)
121 {
122 record.event.oemEF.recordType = recordType;
123 // The remaining 13 bytes are the OEM Defined data
124 memcpy(&record.event.oemEF.oemDefined, sensorData.data(),
Lei YU07c15b72020-12-06 15:08:06 +0800125 std::min(sensorData.size(), static_cast<size_t>(oemEFDataSize)));
Lei YU719a41c2020-12-03 17:50:44 +0800126 }
127}
128
Lei YU07c15b72020-12-06 15:08:06 +0800129void constructSEL(uint8_t recordType, std::chrono::milliseconds timestamp,
130 const additionalDataMap& m, const entryDataMap& entryData,
131 GetSELEntryResponse& record)
132{
133 if (recordType != systemEventRecord)
134 {
135 log<level::ERR>("Invalid recordType");
136 elog<InternalFailure>();
137 }
138
139 // Default values when there is no matched sensor
140 record.event.eventRecord.sensorType = 0;
141 record.event.eventRecord.sensorNum = 0xFF;
142 record.event.eventRecord.eventType = 0;
143
144 auto iter = m.find(strSensorPath);
145 assert(iter != m.end());
146 const auto& sensorPath = iter->second;
147 auto sensorIter = invSensors.find(sensorPath);
148
149 if (sensorIter != invSensors.end())
150 {
151 // There is a matched sensor
152 record.event.eventRecord.sensorType = sensorIter->second.sensorType;
153 record.event.eventRecord.sensorNum = sensorIter->second.sensorID;
154
155 iter = m.find(strEventDir);
156 assert(iter != m.end());
157 auto eventDir = static_cast<uint8_t>(convert(iter->second));
158 uint8_t assert = eventDir ? assertEvent : deassertEvent;
159 record.event.eventRecord.eventType =
160 assert | sensorIter->second.eventReadingType;
161 }
162 record.event.eventRecord.recordType = recordType;
163 record.event.eventRecord.timeStamp = static_cast<uint32_t>(
164 std::chrono::duration_cast<std::chrono::seconds>(timestamp).count());
165 iter = m.find(strGenerateId);
166 assert(iter != m.end());
167 record.event.eventRecord.generatorID =
168 static_cast<uint16_t>(convert(iter->second));
169 record.event.eventRecord.eventMsgRevision = eventMsgRevision;
170 iter = m.find(strSensorData);
171 assert(iter != m.end());
172 auto sensorData = convertVec(iter->second);
173 // The remaining 3 bytes are the sensor data
174 memcpy(&record.event.eventRecord.eventData1, sensorData.data(),
175 std::min(sensorData.size(), static_cast<size_t>(selDataSize)));
176}
177
Patrick Venture0b02be92018-08-31 11:55:55 -0700178GetSELEntryResponse
179 prepareSELEntry(const std::string& objPath,
180 ipmi::sensor::InvObjectIDMap::const_iterator iter)
Tom Joseph6b7a1432017-05-19 10:43:36 +0530181{
Patrick Venture0b02be92018-08-31 11:55:55 -0700182 GetSELEntryResponse record{};
Tom Joseph6b7a1432017-05-19 10:43:36 +0530183
184 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
185 auto service = ipmi::getService(bus, logEntryIntf, objPath);
186
187 // Read all the log entry properties.
Patrick Venture0b02be92018-08-31 11:55:55 -0700188 auto methodCall = bus.new_method_call(service.c_str(), objPath.c_str(),
189 propIntf, "GetAll");
Tom Joseph6b7a1432017-05-19 10:43:36 +0530190 methodCall.append(logEntryIntf);
191
192 auto reply = bus.call(methodCall);
193 if (reply.is_method_error())
194 {
195 log<level::ERR>("Error in reading logging property entries");
196 elog<InternalFailure>();
197 }
198
Lei YU07c15b72020-12-06 15:08:06 +0800199 entryDataMap entryData;
Tom Joseph6b7a1432017-05-19 10:43:36 +0530200 reply.read(entryData);
201
202 // Read Id from the log entry.
203 static constexpr auto propId = "Id";
204 auto iterId = entryData.find(propId);
205 if (iterId == entryData.end())
206 {
207 log<level::ERR>("Error in reading Id of logging entry");
208 elog<InternalFailure>();
209 }
210
Tom Joseph6b7a1432017-05-19 10:43:36 +0530211 // Read Timestamp from the log entry.
212 static constexpr auto propTimeStamp = "Timestamp";
213 auto iterTimeStamp = entryData.find(propTimeStamp);
214 if (iterTimeStamp == entryData.end())
215 {
216 log<level::ERR>("Error in reading Timestamp of logging entry");
217 elog<InternalFailure>();
218 }
Tom Joseph6b7a1432017-05-19 10:43:36 +0530219 std::chrono::milliseconds chronoTimeStamp(
Vernon Maueryf442e112019-04-09 11:44:36 -0700220 std::get<uint64_t>(iterTimeStamp->second));
Tom Joseph6b7a1432017-05-19 10:43:36 +0530221
Lei YUaf378fa2020-12-02 16:28:57 +0800222 if (iter == invSensors.end())
Tom Joseph6b7a1432017-05-19 10:43:36 +0530223 {
Lei YUaf378fa2020-12-02 16:28:57 +0800224 // It is expected to be a custom SEL entry
Lei YU07c15b72020-12-06 15:08:06 +0800225 // The recordID are with the same offset between different types,
226 // so we are safe to set the recordID here
227 record.event.eventRecord.recordID =
Lei YU5015e952020-12-03 14:01:31 +0800228 static_cast<uint16_t>(std::get<uint32_t>(iterId->second));
Lei YU5015e952020-12-03 14:01:31 +0800229 iterId = entryData.find(propAdditionalData);
230 if (iterId == entryData.end())
231 {
232 log<level::ERR>("Error finding AdditionalData");
233 elog<InternalFailure>();
234 }
235 const auto& addData = std::get<AdditionalData>(iterId->second);
236 auto m = parseAdditionalData(addData);
Lei YU07c15b72020-12-06 15:08:06 +0800237 auto recordType = static_cast<uint8_t>(convert(m[strRecordType]));
Lei YU5015e952020-12-03 14:01:31 +0800238 auto isOEM = isRecordOEM(recordType);
239 if (isOEM)
240 {
Lei YU07c15b72020-12-06 15:08:06 +0800241 constructOEMSEL(recordType, chronoTimeStamp, m, record);
Lei YU5015e952020-12-03 14:01:31 +0800242 }
243 else
244 {
Lei YU07c15b72020-12-06 15:08:06 +0800245 constructSEL(recordType, chronoTimeStamp, m, entryData, record);
Lei YU5015e952020-12-03 14:01:31 +0800246 }
Tom Joseph6b7a1432017-05-19 10:43:36 +0530247 }
248 else
249 {
Lei YUaf378fa2020-12-02 16:28:57 +0800250
251 record.event.eventRecord.recordID =
252 static_cast<uint16_t>(std::get<uint32_t>(iterId->second));
253 record.event.eventRecord.timeStamp = static_cast<uint32_t>(
254 std::chrono::duration_cast<std::chrono::seconds>(chronoTimeStamp)
255 .count());
256
Lei YUaf378fa2020-12-02 16:28:57 +0800257 record.event.eventRecord.recordType = systemEventRecord;
258 record.event.eventRecord.generatorID = generatorID;
259 record.event.eventRecord.eventMsgRevision = eventMsgRevision;
260
261 record.event.eventRecord.sensorType = iter->second.sensorType;
262 record.event.eventRecord.sensorNum = iter->second.sensorID;
263 record.event.eventRecord.eventData1 = iter->second.eventOffset;
264
265 // Read Resolved from the log entry.
Lei YUaf378fa2020-12-02 16:28:57 +0800266 auto iterResolved = entryData.find(propResolved);
267 if (iterResolved == entryData.end())
268 {
269 log<level::ERR>("Error in reading Resolved field of logging entry");
270 elog<InternalFailure>();
271 }
272
Lei YUaf378fa2020-12-02 16:28:57 +0800273 // Evaluate if the event is assertion or deassertion event
274 if (std::get<bool>(iterResolved->second))
275 {
276 record.event.eventRecord.eventType =
277 deassertEvent | iter->second.eventReadingType;
278 }
279 else
280 {
281 record.event.eventRecord.eventType = iter->second.eventReadingType;
282 }
Tom Joseph6b7a1432017-05-19 10:43:36 +0530283 }
284
285 return record;
286}
287
288} // namespace internal
289
Tom Joseph6edc8a02017-06-30 18:52:56 +0530290GetSELEntryResponse convertLogEntrytoSEL(const std::string& objPath)
291{
292 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
293
Vernon Mauerya7f81cc2019-11-06 12:51:43 -0800294 static constexpr auto assocIntf =
295 "xyz.openbmc_project.Association.Definitions";
296 static constexpr auto assocProp = "Associations";
Tom Joseph6edc8a02017-06-30 18:52:56 +0530297
298 auto service = ipmi::getService(bus, assocIntf, objPath);
299
300 // Read the Associations interface.
Patrick Venture0b02be92018-08-31 11:55:55 -0700301 auto methodCall =
302 bus.new_method_call(service.c_str(), objPath.c_str(), propIntf, "Get");
Tom Joseph6edc8a02017-06-30 18:52:56 +0530303 methodCall.append(assocIntf);
304 methodCall.append(assocProp);
305
306 auto reply = bus.call(methodCall);
307 if (reply.is_method_error())
308 {
309 log<level::ERR>("Error in reading Associations interface");
310 elog<InternalFailure>();
311 }
312
Patrick Venture0b02be92018-08-31 11:55:55 -0700313 using AssociationList =
314 std::vector<std::tuple<std::string, std::string, std::string>>;
Tom Joseph6edc8a02017-06-30 18:52:56 +0530315
Vernon Mauery16b86932019-05-01 08:36:11 -0700316 std::variant<AssociationList> list;
Tom Joseph6edc8a02017-06-30 18:52:56 +0530317 reply.read(list);
318
Vernon Maueryf442e112019-04-09 11:44:36 -0700319 auto& assocs = std::get<AssociationList>(list);
Tom Joseph6edc8a02017-06-30 18:52:56 +0530320
321 /*
322 * Check if the log entry has any callout associations, if there is a
323 * callout association try to match the inventory path to the corresponding
324 * IPMI sensor.
325 */
326 for (const auto& item : assocs)
327 {
328 if (std::get<0>(item).compare(CALLOUT_FWD_ASSOCIATION) == 0)
329 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700330 auto iter = invSensors.find(std::get<2>(item));
331 if (iter == invSensors.end())
332 {
333 iter = invSensors.find(BOARD_SENSOR);
334 if (iter == invSensors.end())
335 {
336 log<level::ERR>("Motherboard sensor not found");
337 elog<InternalFailure>();
338 }
339 }
Tom Joseph6edc8a02017-06-30 18:52:56 +0530340
Patrick Venture0b02be92018-08-31 11:55:55 -0700341 return internal::prepareSELEntry(objPath, iter);
Tom Joseph6edc8a02017-06-30 18:52:56 +0530342 }
343 }
344
345 // If there are no callout associations link the log entry to system event
346 // sensor
347 auto iter = invSensors.find(SYSTEM_SENSOR);
Tom Joseph6edc8a02017-06-30 18:52:56 +0530348 return internal::prepareSELEntry(objPath, iter);
349}
350
Tom Joseph399fd922017-06-30 18:40:30 +0530351std::chrono::seconds getEntryTimeStamp(const std::string& objPath)
352{
353 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
354
355 auto service = ipmi::getService(bus, logEntryIntf, objPath);
356
357 using namespace std::string_literals;
358 static const auto propTimeStamp = "Timestamp"s;
359
Patrick Venture0b02be92018-08-31 11:55:55 -0700360 auto methodCall =
361 bus.new_method_call(service.c_str(), objPath.c_str(), propIntf, "Get");
Tom Joseph399fd922017-06-30 18:40:30 +0530362 methodCall.append(logEntryIntf);
363 methodCall.append(propTimeStamp);
364
365 auto reply = bus.call(methodCall);
366 if (reply.is_method_error())
367 {
368 log<level::ERR>("Error in reading Timestamp from Entry interface");
369 elog<InternalFailure>();
370 }
371
Vernon Mauery16b86932019-05-01 08:36:11 -0700372 std::variant<uint64_t> timeStamp;
Tom Joseph399fd922017-06-30 18:40:30 +0530373 reply.read(timeStamp);
374
Vernon Maueryf442e112019-04-09 11:44:36 -0700375 std::chrono::milliseconds chronoTimeStamp(std::get<uint64_t>(timeStamp));
Tom Joseph399fd922017-06-30 18:40:30 +0530376
377 return std::chrono::duration_cast<std::chrono::seconds>(chronoTimeStamp);
378}
379
Tom Joseph232f5292017-07-07 20:14:02 +0530380void readLoggingObjectPaths(ObjectPaths& paths)
381{
382 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
383 auto depth = 0;
384 paths.clear();
385
Patrick Venture0b02be92018-08-31 11:55:55 -0700386 auto mapperCall = bus.new_method_call(mapperBusName, mapperObjPath,
387 mapperIntf, "GetSubTreePaths");
Tom Joseph232f5292017-07-07 20:14:02 +0530388 mapperCall.append(logBasePath);
389 mapperCall.append(depth);
390 mapperCall.append(ObjectPaths({logEntryIntf}));
391
392 auto reply = bus.call(mapperCall);
393 if (reply.is_method_error())
394 {
395 log<level::INFO>("Error in reading logging entry object paths");
396 }
397 else
398 {
399 reply.read(paths);
400
Patrick Venture0b02be92018-08-31 11:55:55 -0700401 std::sort(paths.begin(), paths.end(),
402 [](const std::string& a, const std::string& b) {
403 namespace fs = std::filesystem;
404 fs::path pathA(a);
405 fs::path pathB(b);
406 auto idA = std::stoul(pathA.filename().string());
407 auto idB = std::stoul(pathB.filename().string());
Tom Joseph232f5292017-07-07 20:14:02 +0530408
Patrick Venture0b02be92018-08-31 11:55:55 -0700409 return idA < idB;
410 });
Tom Joseph232f5292017-07-07 20:14:02 +0530411 }
412}
413
Tom Joseph6b7a1432017-05-19 10:43:36 +0530414} // namespace sel
415
416} // namespace ipmi