blob: 2113c0f153a35eeef510eef77946b4212659ea31 [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 */
Matt Spinlercb6b0592019-07-16 15:58:51 -050016#include "pel.hpp"
17
18#include "bcd_time.hpp"
Matt Spinler386a61e2020-08-13 15:51:12 -050019#include "extended_user_data.hpp"
Matt Spinlerc63e2e82019-12-02 15:50:12 -060020#include "extended_user_header.hpp"
Matt Spinleraa659472019-10-23 09:26:48 -050021#include "failing_mtms.hpp"
Harisuddin Mohamed Isa600d15a2019-12-20 12:42:26 +080022#include "json_utils.hpp"
Matt Spinlercb6b0592019-07-16 15:58:51 -050023#include "log_id.hpp"
Matt Spinlerf1e85e22019-11-01 11:31:31 -050024#include "pel_rules.hpp"
Aatir186ce8c2019-10-20 15:13:39 -050025#include "pel_values.hpp"
Matt Spinler131870c2019-09-25 13:29:04 -050026#include "section_factory.hpp"
Matt Spinlerbd716f02019-10-15 10:54:11 -050027#include "src.hpp"
Matt Spinlercb6b0592019-07-16 15:58:51 -050028#include "stream.hpp"
Matt Spinlerafa857c2019-10-24 13:03:46 -050029#include "user_data_formats.hpp"
Matt Spinlercb6b0592019-07-16 15:58:51 -050030
Matt Spinler5b289b22020-03-26 14:27:19 -050031#include <sys/stat.h>
32#include <unistd.h>
33
Aatir186ce8c2019-10-20 15:13:39 -050034#include <iostream>
Matt Spinler07eefc52019-09-26 11:18:26 -050035#include <phosphor-logging/log.hpp>
36
Matt Spinlercb6b0592019-07-16 15:58:51 -050037namespace openpower
38{
39namespace pels
40{
Matt Spinlerb8323632019-09-20 15:11:04 -050041namespace message = openpower::pels::message;
Aatir186ce8c2019-10-20 15:13:39 -050042namespace pv = openpower::pels::pel_values;
Matt Spinler4bfc9082020-03-24 15:05:54 -050043using namespace phosphor::logging;
Matt Spinlerb8323632019-09-20 15:11:04 -050044
Matt Spinler677381b2020-01-23 10:04:29 -060045constexpr auto unknownValue = "Unknown";
Matt Spinler5a90a952020-08-27 09:39:03 -050046constexpr uint8_t jsonCalloutSubtype = 0xCA;
Matt Spinler677381b2020-01-23 10:04:29 -060047
Matt Spinler4bfc9082020-03-24 15:05:54 -050048PEL::PEL(const message::Entry& regEntry, uint32_t obmcLogID, uint64_t timestamp,
Matt Spinlerbd716f02019-10-15 10:54:11 -050049 phosphor::logging::Entry::Level severity,
Matt Spinler56ad2a02020-03-26 14:00:52 -050050 const AdditionalData& additionalData, const PelFFDC& ffdcFiles,
Matt Spinleraa659472019-10-23 09:26:48 -050051 const DataInterfaceBase& dataIface)
Matt Spinlerb8323632019-09-20 15:11:04 -050052{
Matt Spinler85f61a62020-06-03 16:28:55 -050053 std::map<std::string, std::vector<std::string>> debugData;
Matt Spinler5a90a952020-08-27 09:39:03 -050054 nlohmann::json callouts;
Matt Spinler85f61a62020-06-03 16:28:55 -050055
Matt Spinler4bfc9082020-03-24 15:05:54 -050056 _ph = std::make_unique<PrivateHeader>(regEntry.componentID, obmcLogID,
Matt Spinlerb8323632019-09-20 15:11:04 -050057 timestamp);
Matt Spinleraadccc82020-04-10 14:33:42 -050058 _uh = std::make_unique<UserHeader>(regEntry, severity, dataIface);
Matt Spinlerb8323632019-09-20 15:11:04 -050059
Matt Spinler5a90a952020-08-27 09:39:03 -050060 // Extract any callouts embedded in an FFDC file.
61 if (!ffdcFiles.empty())
62 {
63 try
64 {
65 callouts = getCalloutJSON(ffdcFiles);
66 }
67 catch (const std::exception& e)
68 {
69 debugData.emplace("FFDC file JSON callouts error",
70 std::vector<std::string>{e.what()});
71 }
72 }
73
74 auto src =
75 std::make_unique<SRC>(regEntry, additionalData, callouts, dataIface);
76
Matt Spinler85f61a62020-06-03 16:28:55 -050077 if (!src->getDebugData().empty())
78 {
79 // Something didn't go as planned
80 debugData.emplace("SRC", src->getDebugData());
81 }
Matt Spinlerc63e2e82019-12-02 15:50:12 -060082
Matt Spinler4bfc9082020-03-24 15:05:54 -050083 auto euh = std::make_unique<ExtendedUserHeader>(dataIface, regEntry, *src);
Matt Spinlerc63e2e82019-12-02 15:50:12 -060084
Matt Spinlerbd716f02019-10-15 10:54:11 -050085 _optionalSections.push_back(std::move(src));
Matt Spinlerc63e2e82019-12-02 15:50:12 -060086 _optionalSections.push_back(std::move(euh));
Matt Spinlerb8323632019-09-20 15:11:04 -050087
Matt Spinleraa659472019-10-23 09:26:48 -050088 auto mtms = std::make_unique<FailingMTMS>(dataIface);
89 _optionalSections.push_back(std::move(mtms));
Matt Spinlerbd716f02019-10-15 10:54:11 -050090
Matt Spinler4dcd3f42020-01-22 14:55:07 -060091 auto ud = util::makeSysInfoUserDataSection(additionalData, dataIface);
Matt Spinler85f61a62020-06-03 16:28:55 -050092 addUserDataSection(std::move(ud));
Matt Spinler4dcd3f42020-01-22 14:55:07 -060093
Matt Spinler9b7e94f2020-03-24 15:44:41 -050094 // Create a UserData section from AdditionalData.
Matt Spinlerafa857c2019-10-24 13:03:46 -050095 if (!additionalData.empty())
96 {
Matt Spinler4dcd3f42020-01-22 14:55:07 -060097 ud = util::makeADUserDataSection(additionalData);
Matt Spinler85f61a62020-06-03 16:28:55 -050098 addUserDataSection(std::move(ud));
Matt Spinlerafa857c2019-10-24 13:03:46 -050099 }
100
Matt Spinler56ad2a02020-03-26 14:00:52 -0500101 // Add any FFDC files into UserData sections
102 for (const auto& file : ffdcFiles)
103 {
104 ud = util::makeFFDCuserDataSection(regEntry.componentID, file);
105 if (!ud)
106 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500107 // Add this error into the debug data UserData section
108 std::ostringstream msg;
109 msg << "Could not make PEL FFDC UserData section from file"
110 << std::hex << regEntry.componentID << " " << file.subType
111 << " " << file.version;
112 if (debugData.count("FFDC File"))
113 {
114 debugData.at("FFDC File").push_back(msg.str());
115 }
116 else
117 {
118 debugData.emplace("FFDC File",
119 std::vector<std::string>{msg.str()});
120 }
121
Matt Spinler56ad2a02020-03-26 14:00:52 -0500122 continue;
123 }
124
Matt Spinler85f61a62020-06-03 16:28:55 -0500125 addUserDataSection(std::move(ud));
126 }
Matt Spinler56ad2a02020-03-26 14:00:52 -0500127
Matt Spinler85f61a62020-06-03 16:28:55 -0500128 // Store in the PEL any important debug data created while
129 // building the PEL sections.
130 if (!debugData.empty())
131 {
132 nlohmann::json data;
133 data["PEL Internal Debug Data"] = debugData;
134 ud = util::makeJSONUserDataSection(data);
135
136 addUserDataSection(std::move(ud));
137
138 // Also put in the journal for debug
139 for (const auto& [name, data] : debugData)
140 {
141 for (const auto& message : data)
142 {
143 std::string entry = name + ": " + message;
144 log<level::INFO>(entry.c_str());
Matt Spinler56ad2a02020-03-26 14:00:52 -0500145 }
146 }
Matt Spinler56ad2a02020-03-26 14:00:52 -0500147 }
148
Matt Spinler97d19b42019-10-29 11:34:03 -0500149 _ph->setSectionCount(2 + _optionalSections.size());
Matt Spinlerf1e85e22019-11-01 11:31:31 -0500150
151 checkRulesAndFix();
Matt Spinlerb8323632019-09-20 15:11:04 -0500152}
Matt Spinlercb6b0592019-07-16 15:58:51 -0500153
Matt Spinler07eefc52019-09-26 11:18:26 -0500154PEL::PEL(std::vector<uint8_t>& data) : PEL(data, 0)
Matt Spinlercb6b0592019-07-16 15:58:51 -0500155{
156}
157
Matt Spinler07eefc52019-09-26 11:18:26 -0500158PEL::PEL(std::vector<uint8_t>& data, uint32_t obmcLogID)
Matt Spinlercb6b0592019-07-16 15:58:51 -0500159{
Matt Spinler07eefc52019-09-26 11:18:26 -0500160 populateFromRawData(data, obmcLogID);
Matt Spinlercb6b0592019-07-16 15:58:51 -0500161}
162
Matt Spinler07eefc52019-09-26 11:18:26 -0500163void PEL::populateFromRawData(std::vector<uint8_t>& data, uint32_t obmcLogID)
Matt Spinlercb6b0592019-07-16 15:58:51 -0500164{
Matt Spinler07eefc52019-09-26 11:18:26 -0500165 Stream pelData{data};
Matt Spinlercb6b0592019-07-16 15:58:51 -0500166 _ph = std::make_unique<PrivateHeader>(pelData);
167 if (obmcLogID != 0)
168 {
Matt Spinler97d19b42019-10-29 11:34:03 -0500169 _ph->setOBMCLogID(obmcLogID);
Matt Spinlercb6b0592019-07-16 15:58:51 -0500170 }
171
172 _uh = std::make_unique<UserHeader>(pelData);
Matt Spinler131870c2019-09-25 13:29:04 -0500173
174 // Use the section factory to create the rest of the objects
175 for (size_t i = 2; i < _ph->sectionCount(); i++)
176 {
177 auto section = section_factory::create(pelData);
178 _optionalSections.push_back(std::move(section));
179 }
Matt Spinlercb6b0592019-07-16 15:58:51 -0500180}
181
182bool PEL::valid() const
183{
184 bool valid = _ph->valid();
185
186 if (valid)
187 {
188 valid = _uh->valid();
189 }
190
Matt Spinler131870c2019-09-25 13:29:04 -0500191 if (valid)
192 {
193 if (!std::all_of(_optionalSections.begin(), _optionalSections.end(),
194 [](const auto& section) { return section->valid(); }))
195 {
196 valid = false;
197 }
198 }
199
Matt Spinlercb6b0592019-07-16 15:58:51 -0500200 return valid;
201}
202
203void PEL::setCommitTime()
204{
205 auto now = std::chrono::system_clock::now();
Matt Spinler97d19b42019-10-29 11:34:03 -0500206 _ph->setCommitTimestamp(getBCDTime(now));
Matt Spinlercb6b0592019-07-16 15:58:51 -0500207}
208
209void PEL::assignID()
210{
Matt Spinler97d19b42019-10-29 11:34:03 -0500211 _ph->setID(generatePELID());
Matt Spinlercb6b0592019-07-16 15:58:51 -0500212}
213
Matt Spinler06885452019-11-06 10:35:42 -0600214void PEL::flatten(std::vector<uint8_t>& pelBuffer) const
Matt Spinlercb6b0592019-07-16 15:58:51 -0500215{
216 Stream pelData{pelBuffer};
Matt Spinlerb8323632019-09-20 15:11:04 -0500217
Matt Spinler07eefc52019-09-26 11:18:26 -0500218 if (!valid())
Matt Spinlercb6b0592019-07-16 15:58:51 -0500219 {
Matt Spinler07eefc52019-09-26 11:18:26 -0500220 log<level::WARNING>("Unflattening an invalid PEL");
Matt Spinlercb6b0592019-07-16 15:58:51 -0500221 }
222
Matt Spinler07eefc52019-09-26 11:18:26 -0500223 _ph->flatten(pelData);
Matt Spinlerb8323632019-09-20 15:11:04 -0500224 _uh->flatten(pelData);
Matt Spinler07eefc52019-09-26 11:18:26 -0500225
226 for (auto& section : _optionalSections)
227 {
228 section->flatten(pelData);
229 }
Matt Spinlercb6b0592019-07-16 15:58:51 -0500230}
231
Matt Spinler06885452019-11-06 10:35:42 -0600232std::vector<uint8_t> PEL::data() const
Matt Spinlercb6b0592019-07-16 15:58:51 -0500233{
Matt Spinler07eefc52019-09-26 11:18:26 -0500234 std::vector<uint8_t> pelData;
235 flatten(pelData);
236 return pelData;
Matt Spinlercb6b0592019-07-16 15:58:51 -0500237}
238
Matt Spinlerf1b46ff2020-01-22 14:10:04 -0600239size_t PEL::size() const
240{
241 size_t size = 0;
242
243 if (_ph)
244 {
245 size += _ph->header().size;
246 }
247
248 if (_uh)
249 {
250 size += _uh->header().size;
251 }
252
253 for (const auto& section : _optionalSections)
254 {
255 size += section->header().size;
256 }
257
258 return size;
259}
260
Matt Spinlerbd716f02019-10-15 10:54:11 -0500261std::optional<SRC*> PEL::primarySRC() const
262{
263 auto src = std::find_if(
264 _optionalSections.begin(), _optionalSections.end(), [](auto& section) {
265 return section->header().id ==
266 static_cast<uint16_t>(SectionID::primarySRC);
267 });
268 if (src != _optionalSections.end())
269 {
270 return static_cast<SRC*>(src->get());
271 }
272
273 return std::nullopt;
274}
275
Matt Spinlerf1e85e22019-11-01 11:31:31 -0500276void PEL::checkRulesAndFix()
277{
278 auto [actionFlags, eventType] =
279 pel_rules::check(_uh->actionFlags(), _uh->eventType(), _uh->severity());
280
281 _uh->setActionFlags(actionFlags);
282 _uh->setEventType(eventType);
283}
284
Matt Spinleracb7c102020-01-10 13:49:22 -0600285void PEL::printSectionInJSON(const Section& section, std::string& buf,
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800286 std::map<uint16_t, size_t>& pluralSections,
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800287 message::Registry& registry,
288 const std::vector<std::string>& plugins,
289 uint8_t creatorID) const
Aatir186ce8c2019-10-20 15:13:39 -0500290{
291 char tmpB[5];
Aatir Manzurad0e0472019-10-07 13:18:37 -0500292 uint8_t id[] = {static_cast<uint8_t>(section.header().id >> 8),
293 static_cast<uint8_t>(section.header().id)};
294 sprintf(tmpB, "%c%c", id[0], id[1]);
295 std::string sectionID(tmpB);
296 std::string sectionName = pv::sectionTitles.count(sectionID)
297 ? pv::sectionTitles.at(sectionID)
298 : "Unknown Section";
Matt Spinleracb7c102020-01-10 13:49:22 -0600299
300 // Add a count if there are multiple of this type of section
301 auto count = pluralSections.find(section.header().id);
302 if (count != pluralSections.end())
303 {
304 sectionName += " " + std::to_string(count->second);
305 count->second++;
306 }
307
Aatir186ce8c2019-10-20 15:13:39 -0500308 if (section.valid())
309 {
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800310 std::optional<std::string> json;
311 if (sectionID == "PS" || sectionID == "SS")
312 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800313 json = section.getJSON(registry, plugins, creatorID);
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800314 }
Matt Spinler386a61e2020-08-13 15:51:12 -0500315 else if ((sectionID == "UD") || (sectionID == "ED"))
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800316 {
Harisuddin Mohamed Isa3fdcd4e2020-08-26 11:56:42 +0800317 json = section.getJSON(creatorID, plugins);
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800318 }
319 else
320 {
321 json = section.getJSON();
322 }
Matt Spinler4220a152020-03-26 10:18:09 -0500323
324 buf += "\"" + sectionName + "\": {\n";
325
Aatir Manzurad0e0472019-10-07 13:18:37 -0500326 if (json)
327 {
Harisuddin Mohamed Isa600d15a2019-12-20 12:42:26 +0800328 buf += *json + "\n},\n";
Aatir Manzurad0e0472019-10-07 13:18:37 -0500329 }
330 else
331 {
Matt Spinler4220a152020-03-26 10:18:09 -0500332 jsonInsert(buf, pv::sectionVer,
333 getNumberString("%d", section.header().version), 1);
334 jsonInsert(buf, pv::subSection,
335 getNumberString("%d", section.header().subType), 1);
336 jsonInsert(buf, pv::createdBy,
337 getNumberString("0x%X", section.header().componentID),
338 1);
339
Aatir Manzurad0e0472019-10-07 13:18:37 -0500340 std::vector<uint8_t> data;
341 Stream s{data};
342 section.flatten(s);
Matt Spinler4220a152020-03-26 10:18:09 -0500343 std::string dstr =
344 dumpHex(std::data(data) + SectionHeader::flattenedSize(),
Harisuddin Mohamed Isa097ad122020-06-11 21:19:41 +0800345 data.size() - SectionHeader::flattenedSize(), 2);
Matt Spinler4220a152020-03-26 10:18:09 -0500346 std::string jsonIndent(indentLevel, 0x20);
347 buf += jsonIndent + "\"Data\": [\n";
348 buf += dstr;
349 buf += jsonIndent + "]\n";
350 buf += "},\n";
Aatir Manzurad0e0472019-10-07 13:18:37 -0500351 }
Aatir186ce8c2019-10-20 15:13:39 -0500352 }
353 else
354 {
Harisuddin Mohamed Isa600d15a2019-12-20 12:42:26 +0800355 buf += "\n\"Invalid Section\": [\n \"invalid\"\n],\n";
Aatir186ce8c2019-10-20 15:13:39 -0500356 }
357}
358
Matt Spinleracb7c102020-01-10 13:49:22 -0600359std::map<uint16_t, size_t> PEL::getPluralSections() const
360{
361 std::map<uint16_t, size_t> sectionCounts;
362
363 for (const auto& section : optionalSections())
364 {
365 if (sectionCounts.find(section->header().id) == sectionCounts.end())
366 {
367 sectionCounts[section->header().id] = 1;
368 }
369 else
370 {
371 sectionCounts[section->header().id]++;
372 }
373 }
374
375 std::map<uint16_t, size_t> sections;
376 for (const auto& [id, count] : sectionCounts)
377 {
378 if (count > 1)
379 {
380 // Start with 0 here and printSectionInJSON()
381 // will increment it as it goes.
382 sections.emplace(id, 0);
383 }
384 }
385
386 return sections;
387}
388
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800389void PEL::toJSON(message::Registry& registry,
390 const std::vector<std::string>& plugins) const
Aatir186ce8c2019-10-20 15:13:39 -0500391{
Matt Spinleracb7c102020-01-10 13:49:22 -0600392 auto sections = getPluralSections();
393
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800394 std::string buf = "{\n";
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800395 printSectionInJSON(*(_ph.get()), buf, sections, registry, plugins);
396 printSectionInJSON(*(_uh.get()), buf, sections, registry, plugins);
Aatir186ce8c2019-10-20 15:13:39 -0500397 for (auto& section : this->optionalSections())
398 {
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800399 printSectionInJSON(*(section.get()), buf, sections, registry, plugins,
400 _ph->creatorID());
Aatir186ce8c2019-10-20 15:13:39 -0500401 }
402 buf += "}";
403 std::size_t found = buf.rfind(",");
404 if (found != std::string::npos)
405 buf.replace(found, 1, "");
406 std::cout << buf << std::endl;
407}
Harisuddin Mohamed Isa600d15a2019-12-20 12:42:26 +0800408
Matt Spinler85f61a62020-06-03 16:28:55 -0500409bool PEL::addUserDataSection(std::unique_ptr<UserData> userData)
410{
411 if (size() + userData->header().size > _maxPELSize)
412 {
413 if (userData->shrink(_maxPELSize - size()))
414 {
415 _optionalSections.push_back(std::move(userData));
416 }
417 else
418 {
419 log<level::WARNING>(
420 "Could not shrink UserData section. Dropping",
421 entry("SECTION_SIZE=%d\n", userData->header().size),
422 entry("COMPONENT_ID=0x%02X", userData->header().componentID),
423 entry("SUBTYPE=0x%X", userData->header().subType),
424 entry("VERSION=0x%X", userData->header().version));
425 return false;
426 }
427 }
428 else
429 {
430 _optionalSections.push_back(std::move(userData));
431 }
432 return true;
433}
434
Matt Spinler5a90a952020-08-27 09:39:03 -0500435nlohmann::json PEL::getCalloutJSON(const PelFFDC& ffdcFiles)
436{
437 nlohmann::json callouts;
438
439 for (const auto& file : ffdcFiles)
440 {
441 if ((file.format == UserDataFormat::json) &&
442 (file.subType == jsonCalloutSubtype))
443 {
444 auto data = util::readFD(file.fd);
445 if (data.empty())
446 {
447 throw std::runtime_error{
448 "Could not get data from JSON callout file descriptor"};
449 }
450
451 std::string jsonString{data.begin(), data.begin() + data.size()};
452
453 callouts = nlohmann::json::parse(jsonString);
454 break;
455 }
456 }
457
458 return callouts;
459}
460
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600461namespace util
462{
463
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600464std::unique_ptr<UserData> makeJSONUserDataSection(const nlohmann::json& json)
465{
466 auto jsonString = json.dump();
467 std::vector<uint8_t> jsonData(jsonString.begin(), jsonString.end());
468
469 // Pad to a 4 byte boundary
470 while ((jsonData.size() % 4) != 0)
471 {
472 jsonData.push_back(0);
473 }
474
475 return std::make_unique<UserData>(
476 static_cast<uint16_t>(ComponentID::phosphorLogging),
477 static_cast<uint8_t>(UserDataFormat::json),
478 static_cast<uint8_t>(UserDataFormatVersion::json), jsonData);
479}
480
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600481std::unique_ptr<UserData> makeADUserDataSection(const AdditionalData& ad)
482{
483 assert(!ad.empty());
484 nlohmann::json json;
485
486 // Remove the 'ESEL' entry, as it contains a full PEL in the value.
487 if (ad.getValue("ESEL"))
488 {
489 auto newAD = ad;
490 newAD.remove("ESEL");
491 json = newAD.toJSON();
492 }
493 else
494 {
495 json = ad.toJSON();
496 }
497
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600498 return makeJSONUserDataSection(json);
499}
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600500
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600501void addProcessNameToJSON(nlohmann::json& json,
502 const std::optional<std::string>& pid,
503 const DataInterfaceBase& dataIface)
504{
Matt Spinler677381b2020-01-23 10:04:29 -0600505 std::string name{unknownValue};
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600506
507 try
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600508 {
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600509 if (pid)
510 {
511 auto n = dataIface.getProcessName(*pid);
512 if (n)
513 {
514 name = *n;
515 }
516 }
517 }
518 catch (std::exception& e)
519 {
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600520 }
521
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600522 json["Process Name"] = std::move(name);
523}
524
Matt Spinler677381b2020-01-23 10:04:29 -0600525void addBMCFWVersionIDToJSON(nlohmann::json& json,
526 const DataInterfaceBase& dataIface)
527{
528 auto id = dataIface.getBMCFWVersionID();
529 if (id.empty())
530 {
531 id = unknownValue;
532 }
533
534 json["BMC Version ID"] = std::move(id);
535}
536
Matt Spinler4aa23a12020-02-03 15:05:09 -0600537std::string lastSegment(char separator, std::string data)
538{
539 auto pos = data.find_last_of(separator);
540 if (pos != std::string::npos)
541 {
542 data = data.substr(pos + 1);
543 }
544
545 return data;
546}
547
548void addStatesToJSON(nlohmann::json& json, const DataInterfaceBase& dataIface)
549{
550 json["BMCState"] = lastSegment('.', dataIface.getBMCState());
551 json["ChassisState"] = lastSegment('.', dataIface.getChassisState());
552 json["HostState"] = lastSegment('.', dataIface.getHostState());
553}
554
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600555std::unique_ptr<UserData>
556 makeSysInfoUserDataSection(const AdditionalData& ad,
557 const DataInterfaceBase& dataIface)
558{
559 nlohmann::json json;
560
561 addProcessNameToJSON(json, ad.getValue("_PID"), dataIface);
Matt Spinler677381b2020-01-23 10:04:29 -0600562 addBMCFWVersionIDToJSON(json, dataIface);
Matt Spinler4aa23a12020-02-03 15:05:09 -0600563 addStatesToJSON(json, dataIface);
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600564
565 return makeJSONUserDataSection(json);
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600566}
567
Matt Spinler5b289b22020-03-26 14:27:19 -0500568std::vector<uint8_t> readFD(int fd)
569{
570 std::vector<uint8_t> data;
571
572 // Get the size
573 struct stat s;
574 int r = fstat(fd, &s);
575 if (r != 0)
576 {
577 auto e = errno;
578 log<level::ERR>("Could not get FFDC file size from FD",
579 entry("ERRNO=%d", e));
580 return data;
581 }
582
583 if (0 == s.st_size)
584 {
585 log<level::ERR>("FFDC file is empty");
586 return data;
587 }
588
589 data.resize(s.st_size);
590
591 // Make sure its at the beginning, as maybe another
592 // extension already used it.
593 r = lseek(fd, 0, SEEK_SET);
594 if (r == -1)
595 {
596 auto e = errno;
597 log<level::ERR>("Could not seek to beginning of FFDC file",
598 entry("ERRNO=%d", e));
599 return data;
600 }
601
602 r = read(fd, data.data(), s.st_size);
603 if (r == -1)
604 {
605 auto e = errno;
606 log<level::ERR>("Could not read FFDC file", entry("ERRNO=%d", e));
607 }
608 else if (r != s.st_size)
609 {
610 log<level::WARNING>("Could not read full FFDC file",
611 entry("FILE_SIZE=%d", s.st_size),
612 entry("SIZE_READ=%d", r));
613 }
614
615 return data;
616}
617
Matt Spinler56ad2a02020-03-26 14:00:52 -0500618std::unique_ptr<UserData> makeFFDCuserDataSection(uint16_t componentID,
619 const PelFFDCfile& file)
620{
Matt Spinler5b289b22020-03-26 14:27:19 -0500621 auto data = readFD(file.fd);
622
623 if (data.empty())
624 {
625 return std::unique_ptr<UserData>();
626 }
627
628 // The data needs 4 Byte alignment, and save amount padded for the
629 // CBOR case.
630 uint32_t pad = 0;
631 while (data.size() % 4)
632 {
633 data.push_back(0);
634 pad++;
635 }
636
637 // For JSON, CBOR, and Text use our component ID, subType, and version,
638 // otherwise use the supplied ones.
639 uint16_t compID = static_cast<uint16_t>(ComponentID::phosphorLogging);
640 uint8_t subType{};
641 uint8_t version{};
642
643 switch (file.format)
644 {
645 case UserDataFormat::json:
646 subType = static_cast<uint8_t>(UserDataFormat::json);
647 version = static_cast<uint8_t>(UserDataFormatVersion::json);
648 break;
649 case UserDataFormat::cbor:
650 subType = static_cast<uint8_t>(UserDataFormat::cbor);
651 version = static_cast<uint8_t>(UserDataFormatVersion::cbor);
652
653 // The CBOR parser will fail on the extra pad bytes since they
654 // aren't CBOR. Add the amount we padded to the end and other
655 // code will remove it all before parsing.
656 {
657 data.resize(data.size() + 4);
658 Stream stream{data};
659 stream.offset(data.size() - 4);
660 stream << pad;
661 }
662
663 break;
664 case UserDataFormat::text:
665 subType = static_cast<uint8_t>(UserDataFormat::text);
666 version = static_cast<uint8_t>(UserDataFormatVersion::text);
667 break;
668 case UserDataFormat::custom:
669 default:
670 // Use the passed in values
671 compID = componentID;
672 subType = file.subType;
673 version = file.version;
674 break;
675 }
676
677 return std::make_unique<UserData>(compID, subType, version, data);
Matt Spinler56ad2a02020-03-26 14:00:52 -0500678}
679
Matt Spinlerc7c3e402020-01-22 15:07:25 -0600680} // namespace util
681
Matt Spinlercb6b0592019-07-16 15:58:51 -0500682} // namespace pels
683} // namespace openpower