blob: 64244c36da5249b5a93de02a341bb55d8c9fa660 [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
Matt Spinler5b289b22020-03-26 14:27:19 -050039#include <sys/stat.h>
40#include <unistd.h>
41
Matt Spinlerfd2da662023-07-07 16:25:14 -050042#include <phosphor-logging/lg2.hpp>
Matt Spinler07eefc52019-09-26 11:18:26 -050043
Jayanth Othayoth1aa90d42023-09-13 04:25:45 -050044#include <format>
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 Spinlerb8323632019-09-20 15:11:04 -050052
Matt Spinler677381b2020-01-23 10:04:29 -060053constexpr auto unknownValue = "Unknown";
54
Matt Spinler4bfc9082020-03-24 15:05:54 -050055PEL::PEL(const message::Entry& regEntry, uint32_t obmcLogID, uint64_t timestamp,
Matt Spinlerbd716f02019-10-15 10:54:11 -050056 phosphor::logging::Entry::Level severity,
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050057 const AdditionalData& additionalData, const PelFFDC& ffdcFilesIn,
Matt Spinler9d921092022-12-15 11:54:49 -060058 const DataInterfaceBase& dataIface, const JournalBase& journal)
Matt Spinlerb8323632019-09-20 15:11:04 -050059{
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050060 // No changes in input, for non SBE error related requests
61 PelFFDC ffdcFiles = ffdcFilesIn;
62
Jayanth Othayoth92b20662021-11-05 00:09:15 -050063#ifdef PEL_ENABLE_PHAL
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050064 // Add sbe ffdc processed data into ffdcfiles.
65 namespace sbe = openpower::pels::sbe;
Patrick Williamsac1ba3f2023-05-10 07:50:16 -050066 auto processReq = std::any_of(ffdcFiles.begin(), ffdcFiles.end(),
67 [](const auto& file) {
68 return file.format == UserDataFormat::custom &&
69 file.subType == sbe::sbeFFDCSubType;
70 });
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050071 // sbeFFDC can't be destroyed until the end of the PEL constructor
72 // because it needs to keep around the FFDC Files to be used below.
73 std::unique_ptr<sbe::SbeFFDC> sbeFFDCPtr;
74 if (processReq)
75 {
Patrick Williams2544b412022-10-04 08:41:06 -050076 sbeFFDCPtr = std::make_unique<sbe::SbeFFDC>(additionalData,
77 ffdcFilesIn);
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050078 const auto& sbeFFDCFiles = sbeFFDCPtr->getSbeFFDC();
79 ffdcFiles.insert(ffdcFiles.end(), sbeFFDCFiles.begin(),
80 sbeFFDCFiles.end());
Jayanth Othayoth742b00b2022-06-30 05:16:57 -050081
82 // update pel priority for spare clock failures
83 if (auto customSeverity = sbeFFDCPtr->getSeverity())
84 {
85 severity = customSeverity.value();
86 }
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050087 }
88#endif
89
Matt Spinler85f61a62020-06-03 16:28:55 -050090 std::map<std::string, std::vector<std::string>> debugData;
Matt Spinler5a90a952020-08-27 09:39:03 -050091 nlohmann::json callouts;
Matt Spinler85f61a62020-06-03 16:28:55 -050092
Matt Spinler4bfc9082020-03-24 15:05:54 -050093 _ph = std::make_unique<PrivateHeader>(regEntry.componentID, obmcLogID,
Matt Spinlerb8323632019-09-20 15:11:04 -050094 timestamp);
Vijay Lobo6b3f3452021-04-15 23:04:42 -050095 _uh = std::make_unique<UserHeader>(regEntry, severity, additionalData,
96 dataIface);
Matt Spinlerb8323632019-09-20 15:11:04 -050097
Matt Spinler5a90a952020-08-27 09:39:03 -050098 // Extract any callouts embedded in an FFDC file.
99 if (!ffdcFiles.empty())
100 {
101 try
102 {
103 callouts = getCalloutJSON(ffdcFiles);
104 }
105 catch (const std::exception& e)
106 {
107 debugData.emplace("FFDC file JSON callouts error",
108 std::vector<std::string>{e.what()});
109 }
110 }
111
Patrick Williams2544b412022-10-04 08:41:06 -0500112 auto src = std::make_unique<SRC>(regEntry, additionalData, callouts,
113 dataIface);
Matt Spinler5a90a952020-08-27 09:39:03 -0500114
Matt Spinler85f61a62020-06-03 16:28:55 -0500115 if (!src->getDebugData().empty())
116 {
117 // Something didn't go as planned
118 debugData.emplace("SRC", src->getDebugData());
119 }
Matt Spinlerc63e2e82019-12-02 15:50:12 -0600120
Matt Spinler4bfc9082020-03-24 15:05:54 -0500121 auto euh = std::make_unique<ExtendedUserHeader>(dataIface, regEntry, *src);
Matt Spinlerc63e2e82019-12-02 15:50:12 -0600122
Matt Spinlerbd716f02019-10-15 10:54:11 -0500123 _optionalSections.push_back(std::move(src));
Matt Spinlerc63e2e82019-12-02 15:50:12 -0600124 _optionalSections.push_back(std::move(euh));
Matt Spinlerb8323632019-09-20 15:11:04 -0500125
Matt Spinleraa659472019-10-23 09:26:48 -0500126 auto mtms = std::make_unique<FailingMTMS>(dataIface);
127 _optionalSections.push_back(std::move(mtms));
Matt Spinlerbd716f02019-10-15 10:54:11 -0500128
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600129 auto ud = util::makeSysInfoUserDataSection(additionalData, dataIface);
Matt Spinler85f61a62020-06-03 16:28:55 -0500130 addUserDataSection(std::move(ud));
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600131
Sumit Kumar3e274432021-09-14 06:37:56 -0500132 // Check for pel severity of type - 0x51 = critical error, system
133 // termination and update terminate bit in SRC for pels
134 updateTerminateBitInSRCSection();
135
Matt Spinler9b7e94f2020-03-24 15:44:41 -0500136 // Create a UserData section from AdditionalData.
Matt Spinlerafa857c2019-10-24 13:03:46 -0500137 if (!additionalData.empty())
138 {
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600139 ud = util::makeADUserDataSection(additionalData);
Matt Spinler85f61a62020-06-03 16:28:55 -0500140 addUserDataSection(std::move(ud));
Matt Spinlerafa857c2019-10-24 13:03:46 -0500141 }
142
Matt Spinler56ad2a02020-03-26 14:00:52 -0500143 // Add any FFDC files into UserData sections
144 for (const auto& file : ffdcFiles)
145 {
146 ud = util::makeFFDCuserDataSection(regEntry.componentID, file);
147 if (!ud)
148 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500149 // Add this error into the debug data UserData section
150 std::ostringstream msg;
151 msg << "Could not make PEL FFDC UserData section from file"
152 << std::hex << regEntry.componentID << " " << file.subType
153 << " " << file.version;
154 if (debugData.count("FFDC File"))
155 {
156 debugData.at("FFDC File").push_back(msg.str());
157 }
158 else
159 {
160 debugData.emplace("FFDC File",
161 std::vector<std::string>{msg.str()});
162 }
163
Matt Spinler56ad2a02020-03-26 14:00:52 -0500164 continue;
165 }
166
Matt Spinler85f61a62020-06-03 16:28:55 -0500167 addUserDataSection(std::move(ud));
168 }
Matt Spinler56ad2a02020-03-26 14:00:52 -0500169
Jayanth Othayothda9b5832021-11-05 04:19:43 -0500170#ifdef PEL_ENABLE_PHAL
171 auto path = std::string(OBJ_ENTRY) + '/' + std::to_string(obmcLogID);
Jayanth Othayoth3ef7b602021-11-09 06:40:38 -0600172 openpower::pels::phal::createServiceActions(callouts, path, dataIface,
173 plid());
Jayanth Othayothda9b5832021-11-05 04:19:43 -0500174#endif
175
Matt Spinler85f61a62020-06-03 16:28:55 -0500176 // Store in the PEL any important debug data created while
177 // building the PEL sections.
178 if (!debugData.empty())
179 {
180 nlohmann::json data;
181 data["PEL Internal Debug Data"] = debugData;
182 ud = util::makeJSONUserDataSection(data);
183
184 addUserDataSection(std::move(ud));
185
186 // Also put in the journal for debug
Matt Spinler45796e82022-07-01 11:25:27 -0500187 for (const auto& [name, msgs] : debugData)
Matt Spinler85f61a62020-06-03 16:28:55 -0500188 {
Matt Spinler45796e82022-07-01 11:25:27 -0500189 for (const auto& message : msgs)
Matt Spinler85f61a62020-06-03 16:28:55 -0500190 {
Matt Spinlerfd2da662023-07-07 16:25:14 -0500191 lg2::info("{NAME}: {MSG}", "NAME", name, "MSG", message);
Matt Spinler56ad2a02020-03-26 14:00:52 -0500192 }
193 }
Matt Spinler56ad2a02020-03-26 14:00:52 -0500194 }
195
Matt Spinler9d921092022-12-15 11:54:49 -0600196 addJournalSections(regEntry, journal);
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 Spinlerfd2da662023-07-07 16:25:14 -0500267 lg2::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{
Patrick Williamsac1ba3f2023-05-10 07:50:16 -0500310 auto src = std::find_if(_optionalSections.begin(), _optionalSections.end(),
311 [](auto& section) {
312 return section->header().id ==
313 static_cast<uint16_t>(SectionID::primarySRC);
314 });
Matt Spinlerbd716f02019-10-15 10:54:11 -0500315 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 {
Matt Spinlerb832aa52023-03-21 15:32:34 -0500374 json = section.getJSON(creatorID);
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800375 }
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(),
Arya K Padman8c8aaa02024-04-28 23:23:45 -0500398 data.size() - SectionHeader::flattenedSize(), 2)
399 .get();
Matt Spinler4220a152020-03-26 10:18:09 -0500400 std::string jsonIndent(indentLevel, 0x20);
401 buf += jsonIndent + "\"Data\": [\n";
402 buf += dstr;
403 buf += jsonIndent + "]\n";
404 buf += "},\n";
Aatir Manzurad0e0472019-10-07 13:18:37 -0500405 }
Aatir186ce8c2019-10-20 15:13:39 -0500406 }
407 else
408 {
Harisuddin Mohamed Isa600d15a2019-12-20 12:42:26 +0800409 buf += "\n\"Invalid Section\": [\n \"invalid\"\n],\n";
Aatir186ce8c2019-10-20 15:13:39 -0500410 }
411}
412
Matt Spinleracb7c102020-01-10 13:49:22 -0600413std::map<uint16_t, size_t> PEL::getPluralSections() const
414{
415 std::map<uint16_t, size_t> sectionCounts;
416
417 for (const auto& section : optionalSections())
418 {
419 if (sectionCounts.find(section->header().id) == sectionCounts.end())
420 {
421 sectionCounts[section->header().id] = 1;
422 }
423 else
424 {
425 sectionCounts[section->header().id]++;
426 }
427 }
428
429 std::map<uint16_t, size_t> sections;
430 for (const auto& [id, count] : sectionCounts)
431 {
432 if (count > 1)
433 {
434 // Start with 0 here and printSectionInJSON()
435 // will increment it as it goes.
436 sections.emplace(id, 0);
437 }
438 }
439
440 return sections;
441}
442
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800443void PEL::toJSON(message::Registry& registry,
444 const std::vector<std::string>& plugins) const
Aatir186ce8c2019-10-20 15:13:39 -0500445{
Matt Spinleracb7c102020-01-10 13:49:22 -0600446 auto sections = getPluralSections();
447
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800448 std::string buf = "{\n";
Matt Spinlerb832aa52023-03-21 15:32:34 -0500449 printSectionInJSON(*(_ph.get()), buf, sections, registry, plugins,
450 _ph->creatorID());
451 printSectionInJSON(*(_uh.get()), buf, sections, registry, plugins,
452 _ph->creatorID());
Aatir186ce8c2019-10-20 15:13:39 -0500453 for (auto& section : this->optionalSections())
454 {
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800455 printSectionInJSON(*(section.get()), buf, sections, registry, plugins,
456 _ph->creatorID());
Aatir186ce8c2019-10-20 15:13:39 -0500457 }
458 buf += "}";
459 std::size_t found = buf.rfind(",");
460 if (found != std::string::npos)
461 buf.replace(found, 1, "");
462 std::cout << buf << std::endl;
463}
Harisuddin Mohamed Isa600d15a2019-12-20 12:42:26 +0800464
Matt Spinler85f61a62020-06-03 16:28:55 -0500465bool PEL::addUserDataSection(std::unique_ptr<UserData> userData)
466{
467 if (size() + userData->header().size > _maxPELSize)
468 {
469 if (userData->shrink(_maxPELSize - size()))
470 {
471 _optionalSections.push_back(std::move(userData));
472 }
473 else
474 {
Matt Spinlerfd2da662023-07-07 16:25:14 -0500475 lg2::warning("Could not shrink UserData section. Dropping. "
476 "Section size = {SSIZE}, Component ID = {COMP_ID}, "
477 "Subtype = {SUBTYPE}, Version = {VERSION}",
478 "SSIZE", userData->header().size, "COMP_ID",
479 userData->header().componentID, "SUBTYPE",
480 userData->header().subType, "VERSION",
481 userData->header().version);
Matt Spinler85f61a62020-06-03 16:28:55 -0500482 return false;
483 }
484 }
485 else
486 {
487 _optionalSections.push_back(std::move(userData));
488 }
489 return true;
490}
491
Matt Spinler5a90a952020-08-27 09:39:03 -0500492nlohmann::json PEL::getCalloutJSON(const PelFFDC& ffdcFiles)
493{
494 nlohmann::json callouts;
495
496 for (const auto& file : ffdcFiles)
497 {
498 if ((file.format == UserDataFormat::json) &&
499 (file.subType == jsonCalloutSubtype))
500 {
501 auto data = util::readFD(file.fd);
502 if (data.empty())
503 {
504 throw std::runtime_error{
505 "Could not get data from JSON callout file descriptor"};
506 }
507
508 std::string jsonString{data.begin(), data.begin() + data.size()};
509
510 callouts = nlohmann::json::parse(jsonString);
511 break;
512 }
513 }
514
515 return callouts;
516}
517
Andrew Geisslerf8e750d2022-01-14 14:56:13 -0600518bool PEL::isHwCalloutPresent() const
Andrew Geissler44fc3162020-07-09 09:21:31 -0500519{
520 auto pSRC = primarySRC();
521 if (!pSRC)
522 {
523 return false;
524 }
525
526 bool calloutPresent = false;
527 if ((*pSRC)->callouts())
528 {
529 for (auto& i : (*pSRC)->callouts()->callouts())
530 {
531 if (((*i).fruIdentity()))
532 {
533 auto& fruId = (*i).fruIdentity();
Andrew Geisslerf8e750d2022-01-14 14:56:13 -0600534 if ((*fruId).failingComponentType() ==
535 src::FRUIdentity::hardwareFRU)
Andrew Geissler44fc3162020-07-09 09:21:31 -0500536 {
537 calloutPresent = true;
538 break;
539 }
540 }
541 }
542 }
543
544 return calloutPresent;
545}
546
Sumit Kumar3160a542021-04-26 08:07:04 -0500547void PEL::updateSysInfoInExtendedUserDataSection(
548 const DataInterfaceBase& dataIface)
549{
550 const AdditionalData additionalData;
551
552 // Check for PEL from Hostboot
553 if (_ph->creatorID() == static_cast<uint8_t>(CreatorID::hostboot))
554 {
555 // Get the ED section from PEL
556 auto op = std::find_if(_optionalSections.begin(),
Patrick Williams5fb575a2023-10-20 11:18:21 -0500557 _optionalSections.end(), [](auto& section) {
Patrick Williamsac1ba3f2023-05-10 07:50:16 -0500558 return section->header().id ==
559 static_cast<uint16_t>(SectionID::extUserData);
560 });
Sumit Kumar3160a542021-04-26 08:07:04 -0500561
562 // Check for ED section found and its not the last section of PEL
563 if (op != _optionalSections.end())
564 {
565 // Get the extended user data class mapped to found section
566 auto extUserData = static_cast<ExtendedUserData*>(op->get());
567
568 // Check for the creator ID is for OpenBMC
569 if (extUserData->creatorID() ==
570 static_cast<uint8_t>(CreatorID::openBMC))
571 {
572 // Update subtype and component id
573 auto subType = static_cast<uint8_t>(UserDataFormat::json);
574 auto componentId =
575 static_cast<uint16_t>(ComponentID::phosphorLogging);
576
577 // Update system data to ED section
George Liu9ac0d9b2022-07-15 10:57:38 +0800578 auto ud = util::makeSysInfoUserDataSection(additionalData,
579 dataIface, false);
Sumit Kumar3160a542021-04-26 08:07:04 -0500580 extUserData->updateDataSection(subType, componentId,
581 ud->data());
582 }
583 }
584 }
585}
586
Matt Spinler8e65f4e2023-05-02 13:40:08 -0500587bool PEL::getDeconfigFlag() const
588{
589 auto creator = static_cast<CreatorID>(_ph->creatorID());
590
591 if ((creator == CreatorID::openBMC) || (creator == CreatorID::hostboot))
592 {
593 auto src = primarySRC();
594 return (*src)->getErrorStatusFlag(SRC::ErrorStatusFlags::deconfigured);
595 }
596 return false;
597}
598
599bool PEL::getGuardFlag() const
600{
601 auto creator = static_cast<CreatorID>(_ph->creatorID());
602
603 if ((creator == CreatorID::openBMC) || (creator == CreatorID::hostboot))
604 {
605 auto src = primarySRC();
606 return (*src)->getErrorStatusFlag(SRC::ErrorStatusFlags::guarded);
607 }
608 return false;
609}
610
Sumit Kumar3e274432021-09-14 06:37:56 -0500611void PEL::updateTerminateBitInSRCSection()
612{
613 // Check for pel severity of type - 0x51 = critical error, system
614 // termination
615 if (_uh->severity() == 0x51)
616 {
617 // Get the primary SRC section
618 auto pSRC = primarySRC();
619 if (pSRC)
620 {
621 (*pSRC)->setTerminateBit();
622 }
623 }
624}
625
Matt Spinler9d921092022-12-15 11:54:49 -0600626void PEL::addJournalSections(const message::Entry& regEntry,
627 const JournalBase& journal)
628{
629 if (!regEntry.journalCapture)
630 {
631 return;
632 }
633
634 // Write all unwritten journal data to disk.
635 journal.sync();
636
637 const auto& jc = regEntry.journalCapture.value();
638 std::vector<std::vector<std::string>> allMessages;
639
640 if (std::holds_alternative<size_t>(jc))
641 {
642 // Get the previous numLines journal entries
643 const auto& numLines = std::get<size_t>(jc);
644 try
645 {
646 auto messages = journal.getMessages("", numLines);
647 if (!messages.empty())
648 {
649 allMessages.push_back(std::move(messages));
650 }
651 }
652 catch (const std::exception& e)
653 {
Matt Spinlerfd2da662023-07-07 16:25:14 -0500654 lg2::error("Failed during journal collection: {ERROR}", "ERROR", e);
Matt Spinler9d921092022-12-15 11:54:49 -0600655 }
656 }
657 else if (std::holds_alternative<message::AppCaptureList>(jc))
658 {
659 // Get journal entries based on the syslog id field.
660 const auto& sections = std::get<message::AppCaptureList>(jc);
661 for (const auto& [syslogID, numLines] : sections)
662 {
663 try
664 {
665 auto messages = journal.getMessages(syslogID, numLines);
666 if (!messages.empty())
667 {
668 allMessages.push_back(std::move(messages));
669 }
670 }
671 catch (const std::exception& e)
672 {
Matt Spinlerfd2da662023-07-07 16:25:14 -0500673 lg2::error("Failed during journal collection: {ERROR}", "ERROR",
674 e);
Matt Spinler9d921092022-12-15 11:54:49 -0600675 }
676 }
677 }
678
679 // Create the UserData sections
680 for (const auto& messages : allMessages)
681 {
682 auto buffer = util::flattenLines(messages);
683
684 // If the buffer is way too big, it can overflow the uint16_t
685 // PEL section size field that is checked below so do a cursory
686 // check here.
687 if (buffer.size() > _maxPELSize)
688 {
Matt Spinlerfd2da662023-07-07 16:25:14 -0500689 lg2::warning(
690 "Journal UserData section does not fit in PEL, dropping. "
691 "PEL size = {PEL_SIZE}, data size = {DATA_SIZE}",
692 "PEL_SIZE", size(), "DATA_SIZE", buffer.size());
Matt Spinler9d921092022-12-15 11:54:49 -0600693 continue;
694 }
695
696 // Sections must be 4 byte aligned.
697 while (buffer.size() % 4 != 0)
698 {
699 buffer.push_back(0);
700 }
701
702 auto ud = std::make_unique<UserData>(
703 static_cast<uint16_t>(ComponentID::phosphorLogging),
704 static_cast<uint8_t>(UserDataFormat::text),
705 static_cast<uint8_t>(UserDataFormatVersion::text), buffer);
706
707 if (size() + ud->header().size <= _maxPELSize)
708 {
709 _optionalSections.push_back(std::move(ud));
710 }
711 else
712 {
713 // Don't attempt to shrink here since we'd be dropping the
714 // most recent journal entries which would be confusing.
Matt Spinlerfd2da662023-07-07 16:25:14 -0500715 lg2::warning(
716 "Journal UserData section does not fit in PEL, dropping. "
717 "PEL size = {PEL_SIZE}, data size = {DATA_SIZE}",
718 "PEL_SIZE", size(), "DATA_SIZE", buffer.size());
Matt Spinler9d921092022-12-15 11:54:49 -0600719 ud.reset();
720 continue;
721 }
722 }
723}
724
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600725namespace util
726{
727
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600728std::unique_ptr<UserData> makeJSONUserDataSection(const nlohmann::json& json)
729{
730 auto jsonString = json.dump();
731 std::vector<uint8_t> jsonData(jsonString.begin(), jsonString.end());
732
733 // Pad to a 4 byte boundary
734 while ((jsonData.size() % 4) != 0)
735 {
736 jsonData.push_back(0);
737 }
738
739 return std::make_unique<UserData>(
740 static_cast<uint16_t>(ComponentID::phosphorLogging),
741 static_cast<uint8_t>(UserDataFormat::json),
742 static_cast<uint8_t>(UserDataFormatVersion::json), jsonData);
743}
744
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600745std::unique_ptr<UserData> makeADUserDataSection(const AdditionalData& ad)
746{
747 assert(!ad.empty());
748 nlohmann::json json;
749
750 // Remove the 'ESEL' entry, as it contains a full PEL in the value.
751 if (ad.getValue("ESEL"))
752 {
753 auto newAD = ad;
754 newAD.remove("ESEL");
755 json = newAD.toJSON();
756 }
757 else
758 {
759 json = ad.toJSON();
760 }
761
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600762 return makeJSONUserDataSection(json);
763}
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600764
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600765void addProcessNameToJSON(nlohmann::json& json,
766 const std::optional<std::string>& pid,
767 const DataInterfaceBase& dataIface)
768{
Matt Spinler677381b2020-01-23 10:04:29 -0600769 std::string name{unknownValue};
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600770
771 try
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600772 {
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600773 if (pid)
774 {
775 auto n = dataIface.getProcessName(*pid);
776 if (n)
777 {
778 name = *n;
779 }
780 }
781 }
Patrick Williams66491c62021-10-06 12:23:37 -0500782 catch (const std::exception& e)
Patrick Williams2544b412022-10-04 08:41:06 -0500783 {}
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600784
Sumit Kumar3160a542021-04-26 08:07:04 -0500785 if (pid)
786 {
787 json["Process Name"] = std::move(name);
788 }
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600789}
790
Matt Spinler677381b2020-01-23 10:04:29 -0600791void addBMCFWVersionIDToJSON(nlohmann::json& json,
792 const DataInterfaceBase& dataIface)
793{
794 auto id = dataIface.getBMCFWVersionID();
795 if (id.empty())
796 {
797 id = unknownValue;
798 }
799
Matt Spinlerc2b8a512021-05-21 12:44:42 -0600800 json["FW Version ID"] = std::move(id);
Matt Spinler677381b2020-01-23 10:04:29 -0600801}
802
Matt Spinler4aa23a12020-02-03 15:05:09 -0600803std::string lastSegment(char separator, std::string data)
804{
805 auto pos = data.find_last_of(separator);
806 if (pos != std::string::npos)
807 {
808 data = data.substr(pos + 1);
809 }
810
811 return data;
812}
813
Ben Tynere32b7e72021-05-18 12:38:40 -0500814void addIMKeyword(nlohmann::json& json, const DataInterfaceBase& dataIface)
815{
816 auto keyword = dataIface.getSystemIMKeyword();
817
818 std::string value{};
819
820 std::for_each(keyword.begin(), keyword.end(), [&](const auto& byte) {
Jayanth Othayoth1aa90d42023-09-13 04:25:45 -0500821 value += std::format("{:02X}", byte);
Ben Tynere32b7e72021-05-18 12:38:40 -0500822 });
823
824 json["System IM"] = value;
825}
826
Matt Spinler4aa23a12020-02-03 15:05:09 -0600827void addStatesToJSON(nlohmann::json& json, const DataInterfaceBase& dataIface)
828{
829 json["BMCState"] = lastSegment('.', dataIface.getBMCState());
830 json["ChassisState"] = lastSegment('.', dataIface.getChassisState());
831 json["HostState"] = lastSegment('.', dataIface.getHostState());
Sumit Kumar2c36fdd2021-09-21 03:12:11 -0500832 json["BootState"] = lastSegment('.', dataIface.getBootState());
Matt Spinler4aa23a12020-02-03 15:05:09 -0600833}
834
George Liu9ac0d9b2022-07-15 10:57:38 +0800835void addBMCUptime(nlohmann::json& json, const DataInterfaceBase& dataIface)
836{
837 auto seconds = dataIface.getUptimeInSeconds();
838 if (seconds)
839 {
840 json["BMCUptime"] = dataIface.getBMCUptime(*seconds);
841 }
842 else
843 {
844 json["BMCUptime"] = "";
845 }
846 json["BMCLoad"] = dataIface.getBMCLoadAvg();
847}
848
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600849std::unique_ptr<UserData>
850 makeSysInfoUserDataSection(const AdditionalData& ad,
George Liu9ac0d9b2022-07-15 10:57:38 +0800851 const DataInterfaceBase& dataIface,
852 bool addUptime)
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600853{
854 nlohmann::json json;
855
856 addProcessNameToJSON(json, ad.getValue("_PID"), dataIface);
Matt Spinler677381b2020-01-23 10:04:29 -0600857 addBMCFWVersionIDToJSON(json, dataIface);
Ben Tynere32b7e72021-05-18 12:38:40 -0500858 addIMKeyword(json, dataIface);
Matt Spinler4aa23a12020-02-03 15:05:09 -0600859 addStatesToJSON(json, dataIface);
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600860
George Liu9ac0d9b2022-07-15 10:57:38 +0800861 if (addUptime)
862 {
863 addBMCUptime(json, dataIface);
864 }
865
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600866 return makeJSONUserDataSection(json);
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600867}
868
Matt Spinler5b289b22020-03-26 14:27:19 -0500869std::vector<uint8_t> readFD(int fd)
870{
871 std::vector<uint8_t> data;
872
873 // Get the size
874 struct stat s;
875 int r = fstat(fd, &s);
876 if (r != 0)
877 {
878 auto e = errno;
Matt Spinlerfd2da662023-07-07 16:25:14 -0500879 lg2::error("Could not get FFDC file size from FD, errno = {ERRNO}",
880 "ERRNO", e);
Matt Spinler5b289b22020-03-26 14:27:19 -0500881 return data;
882 }
883
884 if (0 == s.st_size)
885 {
Matt Spinlerfd2da662023-07-07 16:25:14 -0500886 lg2::error("FFDC file is empty");
Matt Spinler5b289b22020-03-26 14:27:19 -0500887 return data;
888 }
889
890 data.resize(s.st_size);
891
892 // Make sure its at the beginning, as maybe another
893 // extension already used it.
894 r = lseek(fd, 0, SEEK_SET);
895 if (r == -1)
896 {
897 auto e = errno;
Matt Spinlerfd2da662023-07-07 16:25:14 -0500898 lg2::error("Could not seek to beginning of FFDC file, errno = {ERRNO}",
899 "ERRNO", e);
Matt Spinler5b289b22020-03-26 14:27:19 -0500900 return data;
901 }
902
903 r = read(fd, data.data(), s.st_size);
904 if (r == -1)
905 {
906 auto e = errno;
Matt Spinlerfd2da662023-07-07 16:25:14 -0500907 lg2::error("Could not read FFDC file, errno = {ERRNO}", "ERRNO", e);
Matt Spinler5b289b22020-03-26 14:27:19 -0500908 }
909 else if (r != s.st_size)
910 {
Matt Spinlerfd2da662023-07-07 16:25:14 -0500911 lg2::warning("Could not read full FFDC file. "
912 "File size = {FSIZE}, Size read = {SIZE_READ}",
913 "FSIZE", s.st_size, "SIZE_READ", r);
Matt Spinler5b289b22020-03-26 14:27:19 -0500914 }
915
916 return data;
917}
918
Matt Spinler56ad2a02020-03-26 14:00:52 -0500919std::unique_ptr<UserData> makeFFDCuserDataSection(uint16_t componentID,
920 const PelFFDCfile& file)
921{
Matt Spinler5b289b22020-03-26 14:27:19 -0500922 auto data = readFD(file.fd);
923
924 if (data.empty())
925 {
926 return std::unique_ptr<UserData>();
927 }
928
929 // The data needs 4 Byte alignment, and save amount padded for the
930 // CBOR case.
931 uint32_t pad = 0;
932 while (data.size() % 4)
933 {
934 data.push_back(0);
935 pad++;
936 }
937
938 // For JSON, CBOR, and Text use our component ID, subType, and version,
939 // otherwise use the supplied ones.
940 uint16_t compID = static_cast<uint16_t>(ComponentID::phosphorLogging);
941 uint8_t subType{};
942 uint8_t version{};
943
944 switch (file.format)
945 {
946 case UserDataFormat::json:
947 subType = static_cast<uint8_t>(UserDataFormat::json);
948 version = static_cast<uint8_t>(UserDataFormatVersion::json);
949 break;
950 case UserDataFormat::cbor:
951 subType = static_cast<uint8_t>(UserDataFormat::cbor);
952 version = static_cast<uint8_t>(UserDataFormatVersion::cbor);
953
954 // The CBOR parser will fail on the extra pad bytes since they
955 // aren't CBOR. Add the amount we padded to the end and other
956 // code will remove it all before parsing.
957 {
958 data.resize(data.size() + 4);
959 Stream stream{data};
960 stream.offset(data.size() - 4);
961 stream << pad;
962 }
963
964 break;
965 case UserDataFormat::text:
966 subType = static_cast<uint8_t>(UserDataFormat::text);
967 version = static_cast<uint8_t>(UserDataFormatVersion::text);
968 break;
969 case UserDataFormat::custom:
970 default:
971 // Use the passed in values
972 compID = componentID;
973 subType = file.subType;
974 version = file.version;
975 break;
976 }
977
978 return std::make_unique<UserData>(compID, subType, version, data);
Matt Spinler56ad2a02020-03-26 14:00:52 -0500979}
980
Matt Spinler9d921092022-12-15 11:54:49 -0600981std::vector<uint8_t> flattenLines(const std::vector<std::string>& lines)
982{
983 std::vector<uint8_t> out;
984
985 for (const auto& line : lines)
986 {
987 out.insert(out.end(), line.begin(), line.end());
988
989 if (out.back() != '\n')
990 {
991 out.push_back('\n');
992 }
993 }
994
995 return out;
996}
997
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600998} // namespace util
999
Matt Spinlercb6b0592019-07-16 15:58:51 -05001000} // namespace pels
1001} // namespace openpower