blob: f74eaf37c3e910468a21c6d1ceaf3a41f8e523e0 [file] [log] [blame]
Matt Spinler711d51d2019-11-06 09:36:51 -06001/**
2 * Copyright © 2019 IBM 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 */
Jayanth Othayothda9b5832021-11-05 04:19:43 -050016#include "config.h"
17
Matt Spinlercb6b0592019-07-16 15:58:51 -050018#include "pel.hpp"
19
20#include "bcd_time.hpp"
Matt Spinler386a61e2020-08-13 15:51:12 -050021#include "extended_user_data.hpp"
Matt Spinlerc63e2e82019-12-02 15:50:12 -060022#include "extended_user_header.hpp"
Matt Spinleraa659472019-10-23 09:26:48 -050023#include "failing_mtms.hpp"
Andrew Geisslerf8e750d2022-01-14 14:56:13 -060024#include "fru_identity.hpp"
Harisuddin Mohamed Isa600d15a2019-12-20 12:42:26 +080025#include "json_utils.hpp"
Matt Spinlercb6b0592019-07-16 15:58:51 -050026#include "log_id.hpp"
Matt Spinlerf1e85e22019-11-01 11:31:31 -050027#include "pel_rules.hpp"
Aatir186ce8c2019-10-20 15:13:39 -050028#include "pel_values.hpp"
Matt Spinler131870c2019-09-25 13:29:04 -050029#include "section_factory.hpp"
Matt Spinlerbd716f02019-10-15 10:54:11 -050030#include "src.hpp"
Matt Spinlercb6b0592019-07-16 15:58:51 -050031#include "stream.hpp"
Matt Spinlerafa857c2019-10-24 13:03:46 -050032#include "user_data_formats.hpp"
Matt Spinlercb6b0592019-07-16 15:58:51 -050033
Jayanth Othayoth92b20662021-11-05 00:09:15 -050034#ifdef PEL_ENABLE_PHAL
Jayanth Othayothda9b5832021-11-05 04:19:43 -050035#include "phal_service_actions.hpp"
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050036#include "sbe_ffdc_handler.hpp"
37#endif
38
Ben Tynere32b7e72021-05-18 12:38:40 -050039#include <fmt/format.h>
Matt Spinler5b289b22020-03-26 14:27:19 -050040#include <sys/stat.h>
41#include <unistd.h>
42
Matt Spinler07eefc52019-09-26 11:18:26 -050043#include <phosphor-logging/log.hpp>
44
Patrick Williams2544b412022-10-04 08:41:06 -050045#include <iostream>
46
Matt Spinlercb6b0592019-07-16 15:58:51 -050047namespace openpower
48{
49namespace pels
50{
Aatir186ce8c2019-10-20 15:13:39 -050051namespace pv = openpower::pels::pel_values;
Matt Spinler4bfc9082020-03-24 15:05:54 -050052using namespace phosphor::logging;
Matt Spinlerb8323632019-09-20 15:11:04 -050053
Matt Spinler677381b2020-01-23 10:04:29 -060054constexpr auto unknownValue = "Unknown";
55
Matt Spinler4bfc9082020-03-24 15:05:54 -050056PEL::PEL(const message::Entry& regEntry, uint32_t obmcLogID, uint64_t timestamp,
Matt Spinlerbd716f02019-10-15 10:54:11 -050057 phosphor::logging::Entry::Level severity,
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050058 const AdditionalData& additionalData, const PelFFDC& ffdcFilesIn,
Matt Spinleraa659472019-10-23 09:26:48 -050059 const DataInterfaceBase& dataIface)
Matt Spinlerb8323632019-09-20 15:11:04 -050060{
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050061 // No changes in input, for non SBE error related requests
62 PelFFDC ffdcFiles = ffdcFilesIn;
63
Jayanth Othayoth92b20662021-11-05 00:09:15 -050064#ifdef PEL_ENABLE_PHAL
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050065 // Add sbe ffdc processed data into ffdcfiles.
66 namespace sbe = openpower::pels::sbe;
67 auto processReq =
68 std::any_of(ffdcFiles.begin(), ffdcFiles.end(), [](const auto& file) {
69 return file.format == UserDataFormat::custom &&
70 file.subType == sbe::sbeFFDCSubType;
71 });
72 // sbeFFDC can't be destroyed until the end of the PEL constructor
73 // because it needs to keep around the FFDC Files to be used below.
74 std::unique_ptr<sbe::SbeFFDC> sbeFFDCPtr;
75 if (processReq)
76 {
Patrick Williams2544b412022-10-04 08:41:06 -050077 sbeFFDCPtr = std::make_unique<sbe::SbeFFDC>(additionalData,
78 ffdcFilesIn);
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050079 const auto& sbeFFDCFiles = sbeFFDCPtr->getSbeFFDC();
80 ffdcFiles.insert(ffdcFiles.end(), sbeFFDCFiles.begin(),
81 sbeFFDCFiles.end());
Jayanth Othayoth742b00b2022-06-30 05:16:57 -050082
83 // update pel priority for spare clock failures
84 if (auto customSeverity = sbeFFDCPtr->getSeverity())
85 {
86 severity = customSeverity.value();
87 }
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050088 }
89#endif
90
Matt Spinler85f61a62020-06-03 16:28:55 -050091 std::map<std::string, std::vector<std::string>> debugData;
Matt Spinler5a90a952020-08-27 09:39:03 -050092 nlohmann::json callouts;
Matt Spinler85f61a62020-06-03 16:28:55 -050093
Matt Spinler4bfc9082020-03-24 15:05:54 -050094 _ph = std::make_unique<PrivateHeader>(regEntry.componentID, obmcLogID,
Matt Spinlerb8323632019-09-20 15:11:04 -050095 timestamp);
Vijay Lobo6b3f3452021-04-15 23:04:42 -050096 _uh = std::make_unique<UserHeader>(regEntry, severity, additionalData,
97 dataIface);
Matt Spinlerb8323632019-09-20 15:11:04 -050098
Matt Spinler5a90a952020-08-27 09:39:03 -050099 // Extract any callouts embedded in an FFDC file.
100 if (!ffdcFiles.empty())
101 {
102 try
103 {
104 callouts = getCalloutJSON(ffdcFiles);
105 }
106 catch (const std::exception& e)
107 {
108 debugData.emplace("FFDC file JSON callouts error",
109 std::vector<std::string>{e.what()});
110 }
111 }
112
Patrick Williams2544b412022-10-04 08:41:06 -0500113 auto src = std::make_unique<SRC>(regEntry, additionalData, callouts,
114 dataIface);
Matt Spinler5a90a952020-08-27 09:39:03 -0500115
Matt Spinler85f61a62020-06-03 16:28:55 -0500116 if (!src->getDebugData().empty())
117 {
118 // Something didn't go as planned
119 debugData.emplace("SRC", src->getDebugData());
120 }
Matt Spinlerc63e2e82019-12-02 15:50:12 -0600121
Matt Spinler4bfc9082020-03-24 15:05:54 -0500122 auto euh = std::make_unique<ExtendedUserHeader>(dataIface, regEntry, *src);
Matt Spinlerc63e2e82019-12-02 15:50:12 -0600123
Matt Spinlerbd716f02019-10-15 10:54:11 -0500124 _optionalSections.push_back(std::move(src));
Matt Spinlerc63e2e82019-12-02 15:50:12 -0600125 _optionalSections.push_back(std::move(euh));
Matt Spinlerb8323632019-09-20 15:11:04 -0500126
Matt Spinleraa659472019-10-23 09:26:48 -0500127 auto mtms = std::make_unique<FailingMTMS>(dataIface);
128 _optionalSections.push_back(std::move(mtms));
Matt Spinlerbd716f02019-10-15 10:54:11 -0500129
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600130 auto ud = util::makeSysInfoUserDataSection(additionalData, dataIface);
Matt Spinler85f61a62020-06-03 16:28:55 -0500131 addUserDataSection(std::move(ud));
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600132
Sumit Kumar3e274432021-09-14 06:37:56 -0500133 // Check for pel severity of type - 0x51 = critical error, system
134 // termination and update terminate bit in SRC for pels
135 updateTerminateBitInSRCSection();
136
Matt Spinler9b7e94f2020-03-24 15:44:41 -0500137 // Create a UserData section from AdditionalData.
Matt Spinlerafa857c2019-10-24 13:03:46 -0500138 if (!additionalData.empty())
139 {
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600140 ud = util::makeADUserDataSection(additionalData);
Matt Spinler85f61a62020-06-03 16:28:55 -0500141 addUserDataSection(std::move(ud));
Matt Spinlerafa857c2019-10-24 13:03:46 -0500142 }
143
Matt Spinler56ad2a02020-03-26 14:00:52 -0500144 // Add any FFDC files into UserData sections
145 for (const auto& file : ffdcFiles)
146 {
147 ud = util::makeFFDCuserDataSection(regEntry.componentID, file);
148 if (!ud)
149 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500150 // Add this error into the debug data UserData section
151 std::ostringstream msg;
152 msg << "Could not make PEL FFDC UserData section from file"
153 << std::hex << regEntry.componentID << " " << file.subType
154 << " " << file.version;
155 if (debugData.count("FFDC File"))
156 {
157 debugData.at("FFDC File").push_back(msg.str());
158 }
159 else
160 {
161 debugData.emplace("FFDC File",
162 std::vector<std::string>{msg.str()});
163 }
164
Matt Spinler56ad2a02020-03-26 14:00:52 -0500165 continue;
166 }
167
Matt Spinler85f61a62020-06-03 16:28:55 -0500168 addUserDataSection(std::move(ud));
169 }
Matt Spinler56ad2a02020-03-26 14:00:52 -0500170
Jayanth Othayothda9b5832021-11-05 04:19:43 -0500171#ifdef PEL_ENABLE_PHAL
172 auto path = std::string(OBJ_ENTRY) + '/' + std::to_string(obmcLogID);
Jayanth Othayoth3ef7b602021-11-09 06:40:38 -0600173 openpower::pels::phal::createServiceActions(callouts, path, dataIface,
174 plid());
Jayanth Othayothda9b5832021-11-05 04:19:43 -0500175#endif
176
Matt Spinler85f61a62020-06-03 16:28:55 -0500177 // Store in the PEL any important debug data created while
178 // building the PEL sections.
179 if (!debugData.empty())
180 {
181 nlohmann::json data;
182 data["PEL Internal Debug Data"] = debugData;
183 ud = util::makeJSONUserDataSection(data);
184
185 addUserDataSection(std::move(ud));
186
187 // Also put in the journal for debug
Matt Spinler45796e82022-07-01 11:25:27 -0500188 for (const auto& [name, msgs] : debugData)
Matt Spinler85f61a62020-06-03 16:28:55 -0500189 {
Matt Spinler45796e82022-07-01 11:25:27 -0500190 for (const auto& message : msgs)
Matt Spinler85f61a62020-06-03 16:28:55 -0500191 {
192 std::string entry = name + ": " + message;
193 log<level::INFO>(entry.c_str());
Matt Spinler56ad2a02020-03-26 14:00:52 -0500194 }
195 }
Matt Spinler56ad2a02020-03-26 14:00:52 -0500196 }
197
Matt Spinler97d19b42019-10-29 11:34:03 -0500198 _ph->setSectionCount(2 + _optionalSections.size());
Matt Spinlerf1e85e22019-11-01 11:31:31 -0500199
200 checkRulesAndFix();
Matt Spinlerb8323632019-09-20 15:11:04 -0500201}
Matt Spinlercb6b0592019-07-16 15:58:51 -0500202
Patrick Williams2544b412022-10-04 08:41:06 -0500203PEL::PEL(std::vector<uint8_t>& data) : PEL(data, 0) {}
Matt Spinlercb6b0592019-07-16 15:58:51 -0500204
Matt Spinler07eefc52019-09-26 11:18:26 -0500205PEL::PEL(std::vector<uint8_t>& data, uint32_t obmcLogID)
Matt Spinlercb6b0592019-07-16 15:58:51 -0500206{
Matt Spinler07eefc52019-09-26 11:18:26 -0500207 populateFromRawData(data, obmcLogID);
Matt Spinlercb6b0592019-07-16 15:58:51 -0500208}
209
Matt Spinler07eefc52019-09-26 11:18:26 -0500210void PEL::populateFromRawData(std::vector<uint8_t>& data, uint32_t obmcLogID)
Matt Spinlercb6b0592019-07-16 15:58:51 -0500211{
Matt Spinler07eefc52019-09-26 11:18:26 -0500212 Stream pelData{data};
Matt Spinlercb6b0592019-07-16 15:58:51 -0500213 _ph = std::make_unique<PrivateHeader>(pelData);
214 if (obmcLogID != 0)
215 {
Matt Spinler97d19b42019-10-29 11:34:03 -0500216 _ph->setOBMCLogID(obmcLogID);
Matt Spinlercb6b0592019-07-16 15:58:51 -0500217 }
218
219 _uh = std::make_unique<UserHeader>(pelData);
Matt Spinler131870c2019-09-25 13:29:04 -0500220
221 // Use the section factory to create the rest of the objects
222 for (size_t i = 2; i < _ph->sectionCount(); i++)
223 {
224 auto section = section_factory::create(pelData);
225 _optionalSections.push_back(std::move(section));
226 }
Matt Spinlercb6b0592019-07-16 15:58:51 -0500227}
228
229bool PEL::valid() const
230{
231 bool valid = _ph->valid();
232
233 if (valid)
234 {
235 valid = _uh->valid();
236 }
237
Matt Spinler131870c2019-09-25 13:29:04 -0500238 if (valid)
239 {
240 if (!std::all_of(_optionalSections.begin(), _optionalSections.end(),
241 [](const auto& section) { return section->valid(); }))
242 {
243 valid = false;
244 }
245 }
246
Matt Spinlercb6b0592019-07-16 15:58:51 -0500247 return valid;
248}
249
250void PEL::setCommitTime()
251{
252 auto now = std::chrono::system_clock::now();
Matt Spinler97d19b42019-10-29 11:34:03 -0500253 _ph->setCommitTimestamp(getBCDTime(now));
Matt Spinlercb6b0592019-07-16 15:58:51 -0500254}
255
256void PEL::assignID()
257{
Matt Spinler97d19b42019-10-29 11:34:03 -0500258 _ph->setID(generatePELID());
Matt Spinlercb6b0592019-07-16 15:58:51 -0500259}
260
Matt Spinler06885452019-11-06 10:35:42 -0600261void PEL::flatten(std::vector<uint8_t>& pelBuffer) const
Matt Spinlercb6b0592019-07-16 15:58:51 -0500262{
263 Stream pelData{pelBuffer};
Matt Spinlerb8323632019-09-20 15:11:04 -0500264
Matt Spinler07eefc52019-09-26 11:18:26 -0500265 if (!valid())
Matt Spinlercb6b0592019-07-16 15:58:51 -0500266 {
Matt Spinler07eefc52019-09-26 11:18:26 -0500267 log<level::WARNING>("Unflattening an invalid PEL");
Matt Spinlercb6b0592019-07-16 15:58:51 -0500268 }
269
Matt Spinler07eefc52019-09-26 11:18:26 -0500270 _ph->flatten(pelData);
Matt Spinlerb8323632019-09-20 15:11:04 -0500271 _uh->flatten(pelData);
Matt Spinler07eefc52019-09-26 11:18:26 -0500272
273 for (auto& section : _optionalSections)
274 {
275 section->flatten(pelData);
276 }
Matt Spinlercb6b0592019-07-16 15:58:51 -0500277}
278
Matt Spinler06885452019-11-06 10:35:42 -0600279std::vector<uint8_t> PEL::data() const
Matt Spinlercb6b0592019-07-16 15:58:51 -0500280{
Matt Spinler07eefc52019-09-26 11:18:26 -0500281 std::vector<uint8_t> pelData;
282 flatten(pelData);
283 return pelData;
Matt Spinlercb6b0592019-07-16 15:58:51 -0500284}
285
Matt Spinlerf1b46ff2020-01-22 14:10:04 -0600286size_t PEL::size() const
287{
288 size_t size = 0;
289
290 if (_ph)
291 {
292 size += _ph->header().size;
293 }
294
295 if (_uh)
296 {
297 size += _uh->header().size;
298 }
299
300 for (const auto& section : _optionalSections)
301 {
302 size += section->header().size;
303 }
304
305 return size;
306}
307
Matt Spinlerbd716f02019-10-15 10:54:11 -0500308std::optional<SRC*> PEL::primarySRC() const
309{
310 auto src = std::find_if(
311 _optionalSections.begin(), _optionalSections.end(), [](auto& section) {
312 return section->header().id ==
313 static_cast<uint16_t>(SectionID::primarySRC);
314 });
315 if (src != _optionalSections.end())
316 {
317 return static_cast<SRC*>(src->get());
318 }
319
320 return std::nullopt;
321}
322
Matt Spinlerf1e85e22019-11-01 11:31:31 -0500323void PEL::checkRulesAndFix()
324{
Matt Spinler1f93c592020-09-10 10:43:08 -0500325 // Only fix if the action flags are at their default value which
326 // means they weren't specified in the registry. Otherwise
327 // assume the user knows what they are doing.
328 if (_uh->actionFlags() == actionFlagsDefault)
329 {
Patrick Williams2544b412022-10-04 08:41:06 -0500330 auto [actionFlags, eventType] = pel_rules::check(0, _uh->eventType(),
331 _uh->severity());
Matt Spinlerf1e85e22019-11-01 11:31:31 -0500332
Matt Spinler1f93c592020-09-10 10:43:08 -0500333 _uh->setActionFlags(actionFlags);
334 _uh->setEventType(eventType);
335 }
Matt Spinlerf1e85e22019-11-01 11:31:31 -0500336}
337
Matt Spinleracb7c102020-01-10 13:49:22 -0600338void PEL::printSectionInJSON(const Section& section, std::string& buf,
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800339 std::map<uint16_t, size_t>& pluralSections,
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800340 message::Registry& registry,
341 const std::vector<std::string>& plugins,
342 uint8_t creatorID) const
Aatir186ce8c2019-10-20 15:13:39 -0500343{
344 char tmpB[5];
Aatir Manzurad0e0472019-10-07 13:18:37 -0500345 uint8_t id[] = {static_cast<uint8_t>(section.header().id >> 8),
346 static_cast<uint8_t>(section.header().id)};
347 sprintf(tmpB, "%c%c", id[0], id[1]);
348 std::string sectionID(tmpB);
349 std::string sectionName = pv::sectionTitles.count(sectionID)
350 ? pv::sectionTitles.at(sectionID)
351 : "Unknown Section";
Matt Spinleracb7c102020-01-10 13:49:22 -0600352
353 // Add a count if there are multiple of this type of section
354 auto count = pluralSections.find(section.header().id);
355 if (count != pluralSections.end())
356 {
357 sectionName += " " + std::to_string(count->second);
358 count->second++;
359 }
360
Aatir186ce8c2019-10-20 15:13:39 -0500361 if (section.valid())
362 {
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800363 std::optional<std::string> json;
364 if (sectionID == "PS" || sectionID == "SS")
365 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800366 json = section.getJSON(registry, plugins, creatorID);
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800367 }
Matt Spinler386a61e2020-08-13 15:51:12 -0500368 else if ((sectionID == "UD") || (sectionID == "ED"))
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800369 {
Harisuddin Mohamed Isa3fdcd4e2020-08-26 11:56:42 +0800370 json = section.getJSON(creatorID, plugins);
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800371 }
372 else
373 {
374 json = section.getJSON();
375 }
Matt Spinler4220a152020-03-26 10:18:09 -0500376
377 buf += "\"" + sectionName + "\": {\n";
378
Aatir Manzurad0e0472019-10-07 13:18:37 -0500379 if (json)
380 {
Harisuddin Mohamed Isa600d15a2019-12-20 12:42:26 +0800381 buf += *json + "\n},\n";
Aatir Manzurad0e0472019-10-07 13:18:37 -0500382 }
383 else
384 {
Matt Spinler4220a152020-03-26 10:18:09 -0500385 jsonInsert(buf, pv::sectionVer,
386 getNumberString("%d", section.header().version), 1);
387 jsonInsert(buf, pv::subSection,
388 getNumberString("%d", section.header().subType), 1);
389 jsonInsert(buf, pv::createdBy,
390 getNumberString("0x%X", section.header().componentID),
391 1);
392
Aatir Manzurad0e0472019-10-07 13:18:37 -0500393 std::vector<uint8_t> data;
394 Stream s{data};
395 section.flatten(s);
Matt Spinler4220a152020-03-26 10:18:09 -0500396 std::string dstr =
397 dumpHex(std::data(data) + SectionHeader::flattenedSize(),
Harisuddin Mohamed Isa097ad122020-06-11 21:19:41 +0800398 data.size() - SectionHeader::flattenedSize(), 2);
Matt Spinler4220a152020-03-26 10:18:09 -0500399 std::string jsonIndent(indentLevel, 0x20);
400 buf += jsonIndent + "\"Data\": [\n";
401 buf += dstr;
402 buf += jsonIndent + "]\n";
403 buf += "},\n";
Aatir Manzurad0e0472019-10-07 13:18:37 -0500404 }
Aatir186ce8c2019-10-20 15:13:39 -0500405 }
406 else
407 {
Harisuddin Mohamed Isa600d15a2019-12-20 12:42:26 +0800408 buf += "\n\"Invalid Section\": [\n \"invalid\"\n],\n";
Aatir186ce8c2019-10-20 15:13:39 -0500409 }
410}
411
Matt Spinleracb7c102020-01-10 13:49:22 -0600412std::map<uint16_t, size_t> PEL::getPluralSections() const
413{
414 std::map<uint16_t, size_t> sectionCounts;
415
416 for (const auto& section : optionalSections())
417 {
418 if (sectionCounts.find(section->header().id) == sectionCounts.end())
419 {
420 sectionCounts[section->header().id] = 1;
421 }
422 else
423 {
424 sectionCounts[section->header().id]++;
425 }
426 }
427
428 std::map<uint16_t, size_t> sections;
429 for (const auto& [id, count] : sectionCounts)
430 {
431 if (count > 1)
432 {
433 // Start with 0 here and printSectionInJSON()
434 // will increment it as it goes.
435 sections.emplace(id, 0);
436 }
437 }
438
439 return sections;
440}
441
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800442void PEL::toJSON(message::Registry& registry,
443 const std::vector<std::string>& plugins) const
Aatir186ce8c2019-10-20 15:13:39 -0500444{
Matt Spinleracb7c102020-01-10 13:49:22 -0600445 auto sections = getPluralSections();
446
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800447 std::string buf = "{\n";
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800448 printSectionInJSON(*(_ph.get()), buf, sections, registry, plugins);
449 printSectionInJSON(*(_uh.get()), buf, sections, registry, plugins);
Aatir186ce8c2019-10-20 15:13:39 -0500450 for (auto& section : this->optionalSections())
451 {
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800452 printSectionInJSON(*(section.get()), buf, sections, registry, plugins,
453 _ph->creatorID());
Aatir186ce8c2019-10-20 15:13:39 -0500454 }
455 buf += "}";
456 std::size_t found = buf.rfind(",");
457 if (found != std::string::npos)
458 buf.replace(found, 1, "");
459 std::cout << buf << std::endl;
460}
Harisuddin Mohamed Isa600d15a2019-12-20 12:42:26 +0800461
Matt Spinler85f61a62020-06-03 16:28:55 -0500462bool PEL::addUserDataSection(std::unique_ptr<UserData> userData)
463{
464 if (size() + userData->header().size > _maxPELSize)
465 {
466 if (userData->shrink(_maxPELSize - size()))
467 {
468 _optionalSections.push_back(std::move(userData));
469 }
470 else
471 {
472 log<level::WARNING>(
473 "Could not shrink UserData section. Dropping",
474 entry("SECTION_SIZE=%d\n", userData->header().size),
475 entry("COMPONENT_ID=0x%02X", userData->header().componentID),
476 entry("SUBTYPE=0x%X", userData->header().subType),
477 entry("VERSION=0x%X", userData->header().version));
478 return false;
479 }
480 }
481 else
482 {
483 _optionalSections.push_back(std::move(userData));
484 }
485 return true;
486}
487
Matt Spinler5a90a952020-08-27 09:39:03 -0500488nlohmann::json PEL::getCalloutJSON(const PelFFDC& ffdcFiles)
489{
490 nlohmann::json callouts;
491
492 for (const auto& file : ffdcFiles)
493 {
494 if ((file.format == UserDataFormat::json) &&
495 (file.subType == jsonCalloutSubtype))
496 {
497 auto data = util::readFD(file.fd);
498 if (data.empty())
499 {
500 throw std::runtime_error{
501 "Could not get data from JSON callout file descriptor"};
502 }
503
504 std::string jsonString{data.begin(), data.begin() + data.size()};
505
506 callouts = nlohmann::json::parse(jsonString);
507 break;
508 }
509 }
510
511 return callouts;
512}
513
Andrew Geisslerf8e750d2022-01-14 14:56:13 -0600514bool PEL::isHwCalloutPresent() const
Andrew Geissler44fc3162020-07-09 09:21:31 -0500515{
516 auto pSRC = primarySRC();
517 if (!pSRC)
518 {
519 return false;
520 }
521
522 bool calloutPresent = false;
523 if ((*pSRC)->callouts())
524 {
525 for (auto& i : (*pSRC)->callouts()->callouts())
526 {
527 if (((*i).fruIdentity()))
528 {
529 auto& fruId = (*i).fruIdentity();
Andrew Geisslerf8e750d2022-01-14 14:56:13 -0600530 if ((*fruId).failingComponentType() ==
531 src::FRUIdentity::hardwareFRU)
Andrew Geissler44fc3162020-07-09 09:21:31 -0500532 {
533 calloutPresent = true;
534 break;
535 }
536 }
537 }
538 }
539
540 return calloutPresent;
541}
542
Sumit Kumar3160a542021-04-26 08:07:04 -0500543void PEL::updateSysInfoInExtendedUserDataSection(
544 const DataInterfaceBase& dataIface)
545{
546 const AdditionalData additionalData;
547
548 // Check for PEL from Hostboot
549 if (_ph->creatorID() == static_cast<uint8_t>(CreatorID::hostboot))
550 {
551 // Get the ED section from PEL
552 auto op = std::find_if(_optionalSections.begin(),
553 _optionalSections.end(), [](auto& section) {
554 return section->header().id ==
555 static_cast<uint16_t>(
556 SectionID::extUserData);
557 });
558
559 // Check for ED section found and its not the last section of PEL
560 if (op != _optionalSections.end())
561 {
562 // Get the extended user data class mapped to found section
563 auto extUserData = static_cast<ExtendedUserData*>(op->get());
564
565 // Check for the creator ID is for OpenBMC
566 if (extUserData->creatorID() ==
567 static_cast<uint8_t>(CreatorID::openBMC))
568 {
569 // Update subtype and component id
570 auto subType = static_cast<uint8_t>(UserDataFormat::json);
571 auto componentId =
572 static_cast<uint16_t>(ComponentID::phosphorLogging);
573
574 // Update system data to ED section
George Liu9ac0d9b2022-07-15 10:57:38 +0800575 auto ud = util::makeSysInfoUserDataSection(additionalData,
576 dataIface, false);
Sumit Kumar3160a542021-04-26 08:07:04 -0500577 extUserData->updateDataSection(subType, componentId,
578 ud->data());
579 }
580 }
581 }
582}
583
Sumit Kumar3e274432021-09-14 06:37:56 -0500584void PEL::updateTerminateBitInSRCSection()
585{
586 // Check for pel severity of type - 0x51 = critical error, system
587 // termination
588 if (_uh->severity() == 0x51)
589 {
590 // Get the primary SRC section
591 auto pSRC = primarySRC();
592 if (pSRC)
593 {
594 (*pSRC)->setTerminateBit();
595 }
596 }
597}
598
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600599namespace util
600{
601
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600602std::unique_ptr<UserData> makeJSONUserDataSection(const nlohmann::json& json)
603{
604 auto jsonString = json.dump();
605 std::vector<uint8_t> jsonData(jsonString.begin(), jsonString.end());
606
607 // Pad to a 4 byte boundary
608 while ((jsonData.size() % 4) != 0)
609 {
610 jsonData.push_back(0);
611 }
612
613 return std::make_unique<UserData>(
614 static_cast<uint16_t>(ComponentID::phosphorLogging),
615 static_cast<uint8_t>(UserDataFormat::json),
616 static_cast<uint8_t>(UserDataFormatVersion::json), jsonData);
617}
618
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600619std::unique_ptr<UserData> makeADUserDataSection(const AdditionalData& ad)
620{
621 assert(!ad.empty());
622 nlohmann::json json;
623
624 // Remove the 'ESEL' entry, as it contains a full PEL in the value.
625 if (ad.getValue("ESEL"))
626 {
627 auto newAD = ad;
628 newAD.remove("ESEL");
629 json = newAD.toJSON();
630 }
631 else
632 {
633 json = ad.toJSON();
634 }
635
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600636 return makeJSONUserDataSection(json);
637}
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600638
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600639void addProcessNameToJSON(nlohmann::json& json,
640 const std::optional<std::string>& pid,
641 const DataInterfaceBase& dataIface)
642{
Matt Spinler677381b2020-01-23 10:04:29 -0600643 std::string name{unknownValue};
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600644
645 try
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600646 {
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600647 if (pid)
648 {
649 auto n = dataIface.getProcessName(*pid);
650 if (n)
651 {
652 name = *n;
653 }
654 }
655 }
Patrick Williams66491c62021-10-06 12:23:37 -0500656 catch (const std::exception& e)
Patrick Williams2544b412022-10-04 08:41:06 -0500657 {}
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600658
Sumit Kumar3160a542021-04-26 08:07:04 -0500659 if (pid)
660 {
661 json["Process Name"] = std::move(name);
662 }
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600663}
664
Matt Spinler677381b2020-01-23 10:04:29 -0600665void addBMCFWVersionIDToJSON(nlohmann::json& json,
666 const DataInterfaceBase& dataIface)
667{
668 auto id = dataIface.getBMCFWVersionID();
669 if (id.empty())
670 {
671 id = unknownValue;
672 }
673
Matt Spinlerc2b8a512021-05-21 12:44:42 -0600674 json["FW Version ID"] = std::move(id);
Matt Spinler677381b2020-01-23 10:04:29 -0600675}
676
Matt Spinler4aa23a12020-02-03 15:05:09 -0600677std::string lastSegment(char separator, std::string data)
678{
679 auto pos = data.find_last_of(separator);
680 if (pos != std::string::npos)
681 {
682 data = data.substr(pos + 1);
683 }
684
685 return data;
686}
687
Ben Tynere32b7e72021-05-18 12:38:40 -0500688void addIMKeyword(nlohmann::json& json, const DataInterfaceBase& dataIface)
689{
690 auto keyword = dataIface.getSystemIMKeyword();
691
692 std::string value{};
693
694 std::for_each(keyword.begin(), keyword.end(), [&](const auto& byte) {
695 value += fmt::format("{:02X}", byte);
696 });
697
698 json["System IM"] = value;
699}
700
Matt Spinler4aa23a12020-02-03 15:05:09 -0600701void addStatesToJSON(nlohmann::json& json, const DataInterfaceBase& dataIface)
702{
703 json["BMCState"] = lastSegment('.', dataIface.getBMCState());
704 json["ChassisState"] = lastSegment('.', dataIface.getChassisState());
705 json["HostState"] = lastSegment('.', dataIface.getHostState());
Sumit Kumar2c36fdd2021-09-21 03:12:11 -0500706 json["BootState"] = lastSegment('.', dataIface.getBootState());
Matt Spinler4aa23a12020-02-03 15:05:09 -0600707}
708
George Liu9ac0d9b2022-07-15 10:57:38 +0800709void addBMCUptime(nlohmann::json& json, const DataInterfaceBase& dataIface)
710{
711 auto seconds = dataIface.getUptimeInSeconds();
712 if (seconds)
713 {
714 json["BMCUptime"] = dataIface.getBMCUptime(*seconds);
715 }
716 else
717 {
718 json["BMCUptime"] = "";
719 }
720 json["BMCLoad"] = dataIface.getBMCLoadAvg();
721}
722
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600723std::unique_ptr<UserData>
724 makeSysInfoUserDataSection(const AdditionalData& ad,
George Liu9ac0d9b2022-07-15 10:57:38 +0800725 const DataInterfaceBase& dataIface,
726 bool addUptime)
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600727{
728 nlohmann::json json;
729
730 addProcessNameToJSON(json, ad.getValue("_PID"), dataIface);
Matt Spinler677381b2020-01-23 10:04:29 -0600731 addBMCFWVersionIDToJSON(json, dataIface);
Ben Tynere32b7e72021-05-18 12:38:40 -0500732 addIMKeyword(json, dataIface);
Matt Spinler4aa23a12020-02-03 15:05:09 -0600733 addStatesToJSON(json, dataIface);
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600734
George Liu9ac0d9b2022-07-15 10:57:38 +0800735 if (addUptime)
736 {
737 addBMCUptime(json, dataIface);
738 }
739
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600740 return makeJSONUserDataSection(json);
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600741}
742
Matt Spinler5b289b22020-03-26 14:27:19 -0500743std::vector<uint8_t> readFD(int fd)
744{
745 std::vector<uint8_t> data;
746
747 // Get the size
748 struct stat s;
749 int r = fstat(fd, &s);
750 if (r != 0)
751 {
752 auto e = errno;
753 log<level::ERR>("Could not get FFDC file size from FD",
754 entry("ERRNO=%d", e));
755 return data;
756 }
757
758 if (0 == s.st_size)
759 {
760 log<level::ERR>("FFDC file is empty");
761 return data;
762 }
763
764 data.resize(s.st_size);
765
766 // Make sure its at the beginning, as maybe another
767 // extension already used it.
768 r = lseek(fd, 0, SEEK_SET);
769 if (r == -1)
770 {
771 auto e = errno;
772 log<level::ERR>("Could not seek to beginning of FFDC file",
773 entry("ERRNO=%d", e));
774 return data;
775 }
776
777 r = read(fd, data.data(), s.st_size);
778 if (r == -1)
779 {
780 auto e = errno;
781 log<level::ERR>("Could not read FFDC file", entry("ERRNO=%d", e));
782 }
783 else if (r != s.st_size)
784 {
785 log<level::WARNING>("Could not read full FFDC file",
786 entry("FILE_SIZE=%d", s.st_size),
787 entry("SIZE_READ=%d", r));
788 }
789
790 return data;
791}
792
Matt Spinler56ad2a02020-03-26 14:00:52 -0500793std::unique_ptr<UserData> makeFFDCuserDataSection(uint16_t componentID,
794 const PelFFDCfile& file)
795{
Matt Spinler5b289b22020-03-26 14:27:19 -0500796 auto data = readFD(file.fd);
797
798 if (data.empty())
799 {
800 return std::unique_ptr<UserData>();
801 }
802
803 // The data needs 4 Byte alignment, and save amount padded for the
804 // CBOR case.
805 uint32_t pad = 0;
806 while (data.size() % 4)
807 {
808 data.push_back(0);
809 pad++;
810 }
811
812 // For JSON, CBOR, and Text use our component ID, subType, and version,
813 // otherwise use the supplied ones.
814 uint16_t compID = static_cast<uint16_t>(ComponentID::phosphorLogging);
815 uint8_t subType{};
816 uint8_t version{};
817
818 switch (file.format)
819 {
820 case UserDataFormat::json:
821 subType = static_cast<uint8_t>(UserDataFormat::json);
822 version = static_cast<uint8_t>(UserDataFormatVersion::json);
823 break;
824 case UserDataFormat::cbor:
825 subType = static_cast<uint8_t>(UserDataFormat::cbor);
826 version = static_cast<uint8_t>(UserDataFormatVersion::cbor);
827
828 // The CBOR parser will fail on the extra pad bytes since they
829 // aren't CBOR. Add the amount we padded to the end and other
830 // code will remove it all before parsing.
831 {
832 data.resize(data.size() + 4);
833 Stream stream{data};
834 stream.offset(data.size() - 4);
835 stream << pad;
836 }
837
838 break;
839 case UserDataFormat::text:
840 subType = static_cast<uint8_t>(UserDataFormat::text);
841 version = static_cast<uint8_t>(UserDataFormatVersion::text);
842 break;
843 case UserDataFormat::custom:
844 default:
845 // Use the passed in values
846 compID = componentID;
847 subType = file.subType;
848 version = file.version;
849 break;
850 }
851
852 return std::make_unique<UserData>(compID, subType, version, data);
Matt Spinler56ad2a02020-03-26 14:00:52 -0500853}
854
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600855} // namespace util
856
Matt Spinlercb6b0592019-07-16 15:58:51 -0500857} // namespace pels
858} // namespace openpower