blob: cd3b6a6b8e473dbad761459206fb881c82d27330 [file] [log] [blame]
Patrick Venture46470a32018-09-07 19:26:25 -07001#include "config.h"
2
3#include "selutility.hpp"
4
Tom Joseph6b7a1432017-05-19 10:43:36 +05305#include <chrono>
Vernon Mauerybdda8002019-02-26 10:18:51 -08006#include <filesystem>
Vernon Mauerye08fbff2019-04-03 09:19:34 -07007#include <ipmid/api.hpp>
Vernon Mauery33250242019-03-12 16:49:26 -07008#include <ipmid/types.hpp>
Vernon Mauery6a98fe72019-03-11 15:57:48 -07009#include <ipmid/utils.hpp>
Patrick Venture3a5071a2018-09-12 13:27:42 -070010#include <phosphor-logging/elog-errors.hpp>
Tom Joseph6b7a1432017-05-19 10:43:36 +053011#include <vector>
Patrick Venture3a5071a2018-09-12 13:27:42 -070012#include <xyz/openbmc_project/Common/error.hpp>
Patrick Venture46470a32018-09-07 19:26:25 -070013
Tom Joseph6b7a1432017-05-19 10:43:36 +053014extern const ipmi::sensor::InvObjectIDMap invSensors;
15using namespace phosphor::logging;
16using InternalFailure =
Patrick Venture0b02be92018-08-31 11:55:55 -070017 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Tom Joseph6b7a1432017-05-19 10:43:36 +053018
19namespace ipmi
20{
21
22namespace sel
23{
24
25namespace internal
26{
27
Patrick Venture0b02be92018-08-31 11:55:55 -070028GetSELEntryResponse
29 prepareSELEntry(const std::string& objPath,
30 ipmi::sensor::InvObjectIDMap::const_iterator iter)
Tom Joseph6b7a1432017-05-19 10:43:36 +053031{
Patrick Venture0b02be92018-08-31 11:55:55 -070032 GetSELEntryResponse record{};
Tom Joseph6b7a1432017-05-19 10:43:36 +053033
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 Venture0b02be92018-08-31 11:55:55 -070038 auto methodCall = bus.new_method_call(service.c_str(), objPath.c_str(),
39 propIntf, "GetAll");
Tom Joseph6b7a1432017-05-19 10:43:36 +053040 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 Joseph306878b2017-07-10 19:30:54 +053049 std::map<PropertyName, PropertyType> entryData;
Tom Joseph6b7a1432017-05-19 10:43:36 +053050 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 Maueryf442e112019-04-09 11:44:36 -070061 record.recordID = static_cast<uint16_t>(std::get<uint32_t>(iterId->second));
Tom Joseph6b7a1432017-05-19 10:43:36 +053062
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 Maueryf442e112019-04-09 11:44:36 -070073 std::get<uint64_t>(iterTimeStamp->second));
Patrick Venture0b02be92018-08-31 11:55:55 -070074 record.timeStamp = static_cast<uint32_t>(
75 std::chrono::duration_cast<std::chrono::seconds>(chronoTimeStamp)
76 .count());
Tom Joseph6b7a1432017-05-19 10:43:36 +053077
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 Maueryf442e112019-04-09 11:44:36 -0700102 if (std::get<bool>(iterResolved->second))
Tom Joseph6b7a1432017-05-19 10:43:36 +0530103 {
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 Joseph6edc8a02017-06-30 18:52:56 +0530116GetSELEntryResponse convertLogEntrytoSEL(const std::string& objPath)
117{
118 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
119
Vernon Mauerya7f81cc2019-11-06 12:51:43 -0800120 static constexpr auto assocIntf =
121 "xyz.openbmc_project.Association.Definitions";
122 static constexpr auto assocProp = "Associations";
Tom Joseph6edc8a02017-06-30 18:52:56 +0530123
124 auto service = ipmi::getService(bus, assocIntf, objPath);
125
126 // Read the Associations interface.
Patrick Venture0b02be92018-08-31 11:55:55 -0700127 auto methodCall =
128 bus.new_method_call(service.c_str(), objPath.c_str(), propIntf, "Get");
Tom Joseph6edc8a02017-06-30 18:52:56 +0530129 methodCall.append(assocIntf);
130 methodCall.append(assocProp);
131
132 auto reply = bus.call(methodCall);
133 if (reply.is_method_error())
134 {
135 log<level::ERR>("Error in reading Associations interface");
136 elog<InternalFailure>();
137 }
138
Patrick Venture0b02be92018-08-31 11:55:55 -0700139 using AssociationList =
140 std::vector<std::tuple<std::string, std::string, std::string>>;
Tom Joseph6edc8a02017-06-30 18:52:56 +0530141
Vernon Mauery16b86932019-05-01 08:36:11 -0700142 std::variant<AssociationList> list;
Tom Joseph6edc8a02017-06-30 18:52:56 +0530143 reply.read(list);
144
Vernon Maueryf442e112019-04-09 11:44:36 -0700145 auto& assocs = std::get<AssociationList>(list);
Tom Joseph6edc8a02017-06-30 18:52:56 +0530146
147 /*
148 * Check if the log entry has any callout associations, if there is a
149 * callout association try to match the inventory path to the corresponding
150 * IPMI sensor.
151 */
152 for (const auto& item : assocs)
153 {
154 if (std::get<0>(item).compare(CALLOUT_FWD_ASSOCIATION) == 0)
155 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700156 auto iter = invSensors.find(std::get<2>(item));
157 if (iter == invSensors.end())
158 {
159 iter = invSensors.find(BOARD_SENSOR);
160 if (iter == invSensors.end())
161 {
162 log<level::ERR>("Motherboard sensor not found");
163 elog<InternalFailure>();
164 }
165 }
Tom Joseph6edc8a02017-06-30 18:52:56 +0530166
Patrick Venture0b02be92018-08-31 11:55:55 -0700167 return internal::prepareSELEntry(objPath, iter);
Tom Joseph6edc8a02017-06-30 18:52:56 +0530168 }
169 }
170
171 // If there are no callout associations link the log entry to system event
172 // sensor
173 auto iter = invSensors.find(SYSTEM_SENSOR);
174 if (iter == invSensors.end())
175 {
176 log<level::ERR>("System event sensor not found");
177 elog<InternalFailure>();
178 }
179
180 return internal::prepareSELEntry(objPath, iter);
181}
182
Tom Joseph399fd922017-06-30 18:40:30 +0530183std::chrono::seconds getEntryTimeStamp(const std::string& objPath)
184{
185 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
186
187 auto service = ipmi::getService(bus, logEntryIntf, objPath);
188
189 using namespace std::string_literals;
190 static const auto propTimeStamp = "Timestamp"s;
191
Patrick Venture0b02be92018-08-31 11:55:55 -0700192 auto methodCall =
193 bus.new_method_call(service.c_str(), objPath.c_str(), propIntf, "Get");
Tom Joseph399fd922017-06-30 18:40:30 +0530194 methodCall.append(logEntryIntf);
195 methodCall.append(propTimeStamp);
196
197 auto reply = bus.call(methodCall);
198 if (reply.is_method_error())
199 {
200 log<level::ERR>("Error in reading Timestamp from Entry interface");
201 elog<InternalFailure>();
202 }
203
Vernon Mauery16b86932019-05-01 08:36:11 -0700204 std::variant<uint64_t> timeStamp;
Tom Joseph399fd922017-06-30 18:40:30 +0530205 reply.read(timeStamp);
206
Vernon Maueryf442e112019-04-09 11:44:36 -0700207 std::chrono::milliseconds chronoTimeStamp(std::get<uint64_t>(timeStamp));
Tom Joseph399fd922017-06-30 18:40:30 +0530208
209 return std::chrono::duration_cast<std::chrono::seconds>(chronoTimeStamp);
210}
211
Tom Joseph232f5292017-07-07 20:14:02 +0530212void readLoggingObjectPaths(ObjectPaths& paths)
213{
214 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
215 auto depth = 0;
216 paths.clear();
217
Patrick Venture0b02be92018-08-31 11:55:55 -0700218 auto mapperCall = bus.new_method_call(mapperBusName, mapperObjPath,
219 mapperIntf, "GetSubTreePaths");
Tom Joseph232f5292017-07-07 20:14:02 +0530220 mapperCall.append(logBasePath);
221 mapperCall.append(depth);
222 mapperCall.append(ObjectPaths({logEntryIntf}));
223
224 auto reply = bus.call(mapperCall);
225 if (reply.is_method_error())
226 {
227 log<level::INFO>("Error in reading logging entry object paths");
228 }
229 else
230 {
231 reply.read(paths);
232
Patrick Venture0b02be92018-08-31 11:55:55 -0700233 std::sort(paths.begin(), paths.end(),
234 [](const std::string& a, const std::string& b) {
235 namespace fs = std::filesystem;
236 fs::path pathA(a);
237 fs::path pathB(b);
238 auto idA = std::stoul(pathA.filename().string());
239 auto idB = std::stoul(pathB.filename().string());
Tom Joseph232f5292017-07-07 20:14:02 +0530240
Patrick Venture0b02be92018-08-31 11:55:55 -0700241 return idA < idB;
242 });
Tom Joseph232f5292017-07-07 20:14:02 +0530243 }
244}
245
Tom Joseph6b7a1432017-05-19 10:43:36 +0530246} // namespace sel
247
248} // namespace ipmi