blob: 00ea0b8f93fab3631b496e9989b2002ae37635ed [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 Spinlerf9bae182019-10-09 13:37:38 -050016#include "src.hpp"
17
Matt Spinler717de422020-06-04 13:10:14 -050018#include "device_callouts.hpp"
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +080019#include "json_utils.hpp"
20#include "paths.hpp"
21#include "pel_values.hpp"
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080022#ifdef PELTOOL
23#include <Python.h>
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +080024
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080025#include <nlohmann/json.hpp>
Patrick Williams2544b412022-10-04 08:41:06 -050026
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080027#include <sstream>
28#endif
Matt Spinler5a90a952020-08-27 09:39:03 -050029#include <fmt/format.h>
30
Matt Spinlerf9bae182019-10-09 13:37:38 -050031#include <phosphor-logging/log.hpp>
32
33namespace openpower
34{
35namespace pels
36{
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +080037namespace pv = openpower::pels::pel_values;
38namespace rg = openpower::pels::message;
Matt Spinlerf9bae182019-10-09 13:37:38 -050039using namespace phosphor::logging;
Matt Spinler85f61a62020-06-03 16:28:55 -050040using namespace std::string_literals;
Matt Spinlerf9bae182019-10-09 13:37:38 -050041
Matt Spinler075e5ba2020-02-21 15:46:00 -060042constexpr size_t ccinSize = 4;
43
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080044#ifdef PELTOOL
Sumit Kumar516935a2021-04-14 13:00:54 -050045using orderedJSON = nlohmann::ordered_json;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080046
47void pyDecRef(PyObject* pyObj)
48{
49 Py_XDECREF(pyObj);
50}
51
52/**
53 * @brief Returns a JSON string to append to SRC section.
54 *
55 * The returning string will contain a JSON object, but without
56 * the outer {}. If the input JSON isn't a JSON object (dict), then
57 * one will be created with the input added to a 'SRC Details' key.
58 *
59 * @param[in] json - The JSON to convert to a string
60 *
61 * @return std::string - The JSON string
62 */
Sumit Kumar516935a2021-04-14 13:00:54 -050063std::string prettyJSON(const orderedJSON& json)
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080064{
Sumit Kumar516935a2021-04-14 13:00:54 -050065 orderedJSON output;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080066 if (!json.is_object())
67 {
68 output["SRC Details"] = json;
69 }
70 else
71 {
72 for (const auto& [key, value] : json.items())
73 {
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +080074 output["SRC Details"][key] = value;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080075 }
76 }
77
78 // Let nlohmann do the pretty printing.
79 std::stringstream stream;
80 stream << std::setw(4) << output;
81
82 auto jsonString = stream.str();
83
84 // Now it looks like:
85 // {
86 // "Key": "Value",
87 // ...
88 // }
89
90 // Replace the { and the following newline, and the } and its
91 // preceeding newline.
92 jsonString.erase(0, 2);
93
94 auto pos = jsonString.find_last_of('}');
95 jsonString.erase(pos - 1);
96
97 return jsonString;
98}
99
100/**
101 * @brief Call Python modules to parse the data into a JSON string
102 *
103 * The module to call is based on the Creator Subsystem ID under the namespace
104 * "srcparsers". For example: "srcparsers.xsrc.xsrc" where "x" is the Creator
105 * Subsystem ID in ASCII lowercase.
106 *
107 * All modules must provide the following:
108 * Function: parseSRCToJson
109 * Argument list:
110 * 1. (str) ASCII string (Hex Word 1)
111 * 2. (str) Hex Word 2
112 * 3. (str) Hex Word 3
113 * 4. (str) Hex Word 4
114 * 5. (str) Hex Word 5
115 * 6. (str) Hex Word 6
116 * 7. (str) Hex Word 7
117 * 8. (str) Hex Word 8
118 * 9. (str) Hex Word 9
119 *-Return data:
120 * 1. (str) JSON string
121 *
122 * @param[in] hexwords - Vector of strings of Hexwords 1-9
123 * @param[in] creatorID - The creatorID from the Private Header section
124 * @return std::optional<std::string> - The JSON string if it could be created,
125 * else std::nullopt
126 */
127std::optional<std::string> getPythonJSON(std::vector<std::string>& hexwords,
128 uint8_t creatorID)
129{
Matt Spinlerbe952d22022-07-01 11:30:11 -0500130 PyObject *pName, *pModule, *eType, *eValue, *eTraceback;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800131 std::string pErrStr;
132 std::string module = getNumberString("%c", tolower(creatorID)) + "src";
133 pName = PyUnicode_FromString(
134 std::string("srcparsers." + module + "." + module).c_str());
135 std::unique_ptr<PyObject, decltype(&pyDecRef)> modNamePtr(pName, &pyDecRef);
136 pModule = PyImport_Import(pName);
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800137 if (pModule == NULL)
138 {
139 pErrStr = "No error string found";
140 PyErr_Fetch(&eType, &eValue, &eTraceback);
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800141 if (eType)
142 {
143 Py_XDECREF(eType);
144 }
145 if (eTraceback)
146 {
147 Py_XDECREF(eTraceback);
148 }
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800149 if (eValue)
150 {
151 PyObject* pStr = PyObject_Str(eValue);
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800152 Py_XDECREF(eValue);
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800153 if (pStr)
154 {
155 pErrStr = PyUnicode_AsUTF8(pStr);
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800156 Py_XDECREF(pStr);
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800157 }
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800158 }
159 }
160 else
161 {
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800162 std::unique_ptr<PyObject, decltype(&pyDecRef)> modPtr(pModule,
163 &pyDecRef);
164 std::string funcToCall = "parseSRCToJson";
Matt Spinlerbe952d22022-07-01 11:30:11 -0500165 PyObject* pKey = PyUnicode_FromString(funcToCall.c_str());
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800166 std::unique_ptr<PyObject, decltype(&pyDecRef)> keyPtr(pKey, &pyDecRef);
Matt Spinlerbe952d22022-07-01 11:30:11 -0500167 PyObject* pDict = PyModule_GetDict(pModule);
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800168 Py_INCREF(pDict);
169 if (!PyDict_Contains(pDict, pKey))
170 {
171 Py_DECREF(pDict);
172 log<level::ERR>(
173 "Python module error",
174 entry("ERROR=%s",
175 std::string(funcToCall + " function missing").c_str()),
176 entry("SRC=%s", hexwords.front().c_str()),
177 entry("PARSER_MODULE=%s", module.c_str()));
178 return std::nullopt;
179 }
Matt Spinlerbe952d22022-07-01 11:30:11 -0500180 PyObject* pFunc = PyDict_GetItemString(pDict, funcToCall.c_str());
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800181 Py_DECREF(pDict);
182 Py_INCREF(pFunc);
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800183 if (PyCallable_Check(pFunc))
184 {
Matt Spinlerbe952d22022-07-01 11:30:11 -0500185 PyObject* pArgs = PyTuple_New(9);
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800186 std::unique_ptr<PyObject, decltype(&pyDecRef)> argPtr(pArgs,
187 &pyDecRef);
188 for (size_t i = 0; i < 9; i++)
189 {
Matt Spinlerc1984032023-01-05 10:09:59 -0600190 std::string arg{"00000000"};
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800191 if (i < hexwords.size())
192 {
Matt Spinlerc1984032023-01-05 10:09:59 -0600193 arg = hexwords[i];
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800194 }
Matt Spinlerc1984032023-01-05 10:09:59 -0600195 PyTuple_SetItem(pArgs, i, Py_BuildValue("s", arg.c_str()));
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800196 }
Matt Spinlerbe952d22022-07-01 11:30:11 -0500197 PyObject* pResult = PyObject_CallObject(pFunc, pArgs);
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800198 Py_DECREF(pFunc);
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800199 if (pResult)
200 {
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800201 std::unique_ptr<PyObject, decltype(&pyDecRef)> resPtr(
202 pResult, &pyDecRef);
Patrick Williams2544b412022-10-04 08:41:06 -0500203 PyObject* pBytes = PyUnicode_AsEncodedString(pResult, "utf-8",
204 "~E~");
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800205 std::unique_ptr<PyObject, decltype(&pyDecRef)> pyBytePtr(
206 pBytes, &pyDecRef);
207 const char* output = PyBytes_AS_STRING(pBytes);
208 try
209 {
Matt Spinlerbb1c1d52021-06-03 13:18:48 -0600210 orderedJSON json = orderedJSON::parse(output);
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800211 if ((json.is_object() && !json.empty()) ||
212 (json.is_array() && json.size() > 0) ||
213 (json.is_string() && json != ""))
214 {
215 return prettyJSON(json);
216 }
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800217 }
Patrick Williams66491c62021-10-06 12:23:37 -0500218 catch (const std::exception& e)
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800219 {
220 log<level::ERR>("Bad JSON from parser",
221 entry("ERROR=%s", e.what()),
222 entry("SRC=%s", hexwords.front().c_str()),
223 entry("PARSER_MODULE=%s", module.c_str()));
224 return std::nullopt;
225 }
226 }
227 else
228 {
229 pErrStr = "No error string found";
230 PyErr_Fetch(&eType, &eValue, &eTraceback);
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800231 if (eType)
232 {
233 Py_XDECREF(eType);
234 }
235 if (eTraceback)
236 {
237 Py_XDECREF(eTraceback);
238 }
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800239 if (eValue)
240 {
241 PyObject* pStr = PyObject_Str(eValue);
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800242 Py_XDECREF(eValue);
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800243 if (pStr)
244 {
245 pErrStr = PyUnicode_AsUTF8(pStr);
Harisuddin Mohamed Isa69c18272021-05-29 13:18:45 +0800246 Py_XDECREF(pStr);
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800247 }
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800248 }
249 }
250 }
251 }
252 if (!pErrStr.empty())
253 {
Matt Spinler3279cc52022-02-15 11:02:00 -0600254 log<level::DEBUG>("Python exception thrown by parser",
255 entry("ERROR=%s", pErrStr.c_str()),
256 entry("SRC=%s", hexwords.front().c_str()),
257 entry("PARSER_MODULE=%s", module.c_str()));
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800258 }
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800259 return std::nullopt;
260}
261#endif
262
Matt Spinlerf9bae182019-10-09 13:37:38 -0500263void SRC::unflatten(Stream& stream)
264{
265 stream >> _header >> _version >> _flags >> _reserved1B >> _wordCount >>
266 _reserved2B >> _size;
267
268 for (auto& word : _hexData)
269 {
270 stream >> word;
271 }
272
273 _asciiString = std::make_unique<src::AsciiString>(stream);
274
275 if (hasAdditionalSections())
276 {
277 // The callouts section is currently the only extra subsection type
278 _callouts = std::make_unique<src::Callouts>(stream);
279 }
280}
281
Matt Spinler06885452019-11-06 10:35:42 -0600282void SRC::flatten(Stream& stream) const
Matt Spinlerf9bae182019-10-09 13:37:38 -0500283{
284 stream << _header << _version << _flags << _reserved1B << _wordCount
285 << _reserved2B << _size;
286
287 for (auto& word : _hexData)
288 {
289 stream << word;
290 }
291
292 _asciiString->flatten(stream);
293
294 if (_callouts)
295 {
296 _callouts->flatten(stream);
297 }
298}
299
300SRC::SRC(Stream& pel)
301{
302 try
303 {
304 unflatten(pel);
305 validate();
306 }
307 catch (const std::exception& e)
308 {
Matt Spinler8ac20502023-01-04 11:03:58 -0600309 log<level::ERR>(
310 fmt::format("Cannot unflatten SRC: {}", e.what()).c_str());
Matt Spinlerf9bae182019-10-09 13:37:38 -0500311 _valid = false;
312 }
313}
314
Matt Spinler075e5ba2020-02-21 15:46:00 -0600315SRC::SRC(const message::Entry& regEntry, const AdditionalData& additionalData,
Matt Spinler5a90a952020-08-27 09:39:03 -0500316 const nlohmann::json& jsonCallouts, const DataInterfaceBase& dataIface)
Matt Spinlerbd716f02019-10-15 10:54:11 -0500317{
318 _header.id = static_cast<uint16_t>(SectionID::primarySRC);
319 _header.version = srcSectionVersion;
320 _header.subType = srcSectionSubtype;
321 _header.componentID = regEntry.componentID;
322
323 _version = srcVersion;
324
325 _flags = 0;
Vijay Lobof3702bb2021-04-09 15:10:19 -0500326
Matt Spinlerbd716f02019-10-15 10:54:11 -0500327 _reserved1B = 0;
328
329 _wordCount = numSRCHexDataWords + 1;
330
331 _reserved2B = 0;
332
333 // There are multiple fields encoded in the hex data words.
334 std::for_each(_hexData.begin(), _hexData.end(),
335 [](auto& word) { word = 0; });
Matt Spinler7c619182020-07-27 15:15:11 -0500336
337 // Hex Word 2 Nibbles:
338 // MIGVEPFF
339 // M: Partition dump status = 0
340 // I: System boot state = TODO
341 // G: Partition Boot type = 0
Sumit Kumar9d43a722021-08-24 09:46:19 -0500342 // V: BMC dump status
Matt Spinler7c619182020-07-27 15:15:11 -0500343 // E: Platform boot mode = 0 (side = temporary, speed = fast)
Sumit Kumar9d43a722021-08-24 09:46:19 -0500344 // P: Platform dump status
Matt Spinler7c619182020-07-27 15:15:11 -0500345 // FF: SRC format, set below
346
Vijay Lobo875b6c72021-10-20 17:38:56 -0500347 setProgressCode(dataIface);
Sumit Kumar9d43a722021-08-24 09:46:19 -0500348 setDumpStatus(dataIface);
Matt Spinlerbd716f02019-10-15 10:54:11 -0500349 setBMCFormat();
350 setBMCPosition();
Matt Spinler075e5ba2020-02-21 15:46:00 -0600351 setMotherboardCCIN(dataIface);
352
Matt Spinlerda5b76b2023-06-01 15:56:57 -0500353 if (regEntry.src.checkstopFlag)
354 {
355 setErrorStatusFlag(ErrorStatusFlags::hwCheckstop);
356 }
357
Matt Spinler3fe93e92023-04-14 14:06:59 -0500358 if (regEntry.src.deconfigFlag)
359 {
360 setErrorStatusFlag(ErrorStatusFlags::deconfigured);
361 }
362
Matt Spinlerbd716f02019-10-15 10:54:11 -0500363 // Fill in the last 4 words from the AdditionalData property contents.
364 setUserDefinedHexWords(regEntry, additionalData);
365
366 _asciiString = std::make_unique<src::AsciiString>(regEntry);
367
Sumit Kumar50bfa692022-01-06 06:48:26 -0600368 // Check for additional data - PEL_SUBSYSTEM
369 auto ss = additionalData.getValue("PEL_SUBSYSTEM");
370 if (ss)
371 {
372 auto eventSubsystem = std::stoul(*ss, NULL, 16);
Patrick Williams2544b412022-10-04 08:41:06 -0500373 std::string subsystem = pv::getValue(eventSubsystem,
374 pel_values::subsystemValues);
Sumit Kumar50bfa692022-01-06 06:48:26 -0600375 if (subsystem == "invalid")
376 {
377 log<level::WARNING>(
378 fmt::format("SRC: Invalid SubSystem value:{:#X}",
379 eventSubsystem)
380 .c_str());
381 }
382 else
383 {
384 _asciiString->setByte(2, eventSubsystem);
385 }
386 }
387
Matt Spinler5a90a952020-08-27 09:39:03 -0500388 addCallouts(regEntry, additionalData, jsonCallouts, dataIface);
Matt Spinlerbd716f02019-10-15 10:54:11 -0500389
390 _size = baseSRCSize;
391 _size += _callouts ? _callouts->flattenedSize() : 0;
392 _header.size = Section::flattenedSize() + _size;
393
394 _valid = true;
395}
396
397void SRC::setUserDefinedHexWords(const message::Entry& regEntry,
398 const AdditionalData& ad)
399{
400 if (!regEntry.src.hexwordADFields)
401 {
402 return;
403 }
404
Harisuddin Mohamed Isa1a1b0df2020-11-23 16:34:36 +0800405 // Save the AdditionalData value corresponding to the first element of
406 // adName tuple into _hexData[wordNum].
Matt Spinlerbd716f02019-10-15 10:54:11 -0500407 for (const auto& [wordNum, adName] : *regEntry.src.hexwordADFields)
408 {
409 // Can only set words 6 - 9
410 if (!isUserDefinedWord(wordNum))
411 {
Patrick Williams2544b412022-10-04 08:41:06 -0500412 std::string msg = "SRC user data word out of range: " +
413 std::to_string(wordNum);
Matt Spinler85f61a62020-06-03 16:28:55 -0500414 addDebugData(msg);
Matt Spinlerbd716f02019-10-15 10:54:11 -0500415 continue;
416 }
417
Harisuddin Mohamed Isa1a1b0df2020-11-23 16:34:36 +0800418 auto value = ad.getValue(std::get<0>(adName));
Matt Spinlerbd716f02019-10-15 10:54:11 -0500419 if (value)
420 {
421 _hexData[getWordIndexFromWordNum(wordNum)] =
422 std::strtoul(value.value().c_str(), nullptr, 0);
423 }
424 else
425 {
Harisuddin Mohamed Isa1a1b0df2020-11-23 16:34:36 +0800426 std::string msg = "Source for user data SRC word not found: " +
427 std::get<0>(adName);
Matt Spinler85f61a62020-06-03 16:28:55 -0500428 addDebugData(msg);
Matt Spinlerbd716f02019-10-15 10:54:11 -0500429 }
430 }
431}
432
Matt Spinler075e5ba2020-02-21 15:46:00 -0600433void SRC::setMotherboardCCIN(const DataInterfaceBase& dataIface)
434{
435 uint32_t ccin = 0;
436 auto ccinString = dataIface.getMotherboardCCIN();
437
438 try
439 {
440 if (ccinString.size() == ccinSize)
441 {
442 ccin = std::stoi(ccinString, 0, 16);
443 }
444 }
Patrick Williams66491c62021-10-06 12:23:37 -0500445 catch (const std::exception& e)
Matt Spinler075e5ba2020-02-21 15:46:00 -0600446 {
447 log<level::WARNING>("Could not convert motherboard CCIN to a number",
448 entry("CCIN=%s", ccinString.c_str()));
449 return;
450 }
451
452 // Set the first 2 bytes
453 _hexData[1] |= ccin << 16;
454}
455
Matt Spinlerf9bae182019-10-09 13:37:38 -0500456void SRC::validate()
457{
458 bool failed = false;
459
460 if ((header().id != static_cast<uint16_t>(SectionID::primarySRC)) &&
461 (header().id != static_cast<uint16_t>(SectionID::secondarySRC)))
462 {
Matt Spinler8ac20502023-01-04 11:03:58 -0600463 log<level::ERR>(
464 fmt::format("Invalid SRC section ID: {0:#x}", header().id).c_str());
Matt Spinlerf9bae182019-10-09 13:37:38 -0500465 failed = true;
466 }
467
468 // Check the version in the SRC, not in the header
Matt Spinlerbd716f02019-10-15 10:54:11 -0500469 if (_version != srcVersion)
Matt Spinlerf9bae182019-10-09 13:37:38 -0500470 {
Matt Spinler8ac20502023-01-04 11:03:58 -0600471 log<level::ERR>(
472 fmt::format("Invalid SRC version: {0:#x}", header().version)
473 .c_str());
Matt Spinlerf9bae182019-10-09 13:37:38 -0500474 failed = true;
475 }
476
477 _valid = failed ? false : true;
478}
479
Matt Spinler075e5ba2020-02-21 15:46:00 -0600480bool SRC::isBMCSRC() const
481{
482 auto as = asciiString();
483 if (as.length() >= 2)
484 {
485 uint8_t errorType = strtoul(as.substr(0, 2).c_str(), nullptr, 16);
486 return (errorType == static_cast<uint8_t>(SRCType::bmcError) ||
487 errorType == static_cast<uint8_t>(SRCType::powerError));
488 }
489 return false;
490}
491
Matt Spinler4deed972023-04-28 14:09:22 -0500492bool SRC::isHostbootSRC() const
493{
494 auto as = asciiString();
495 if (as.length() >= 2)
496 {
497 uint8_t errorType = strtoul(as.substr(0, 2).c_str(), nullptr, 16);
498 return errorType == static_cast<uint8_t>(SRCType::hostbootError);
499 }
500 return false;
501}
502
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800503std::optional<std::string> SRC::getErrorDetails(message::Registry& registry,
504 DetailLevel type,
505 bool toCache) const
506{
507 const std::string jsonIndent(indentLevel, 0x20);
508 std::string errorOut;
Matt Spinler075e5ba2020-02-21 15:46:00 -0600509 if (isBMCSRC())
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800510 {
511 auto entry = registry.lookup("0x" + asciiString().substr(4, 4),
512 rg::LookupType::reasonCode, toCache);
513 if (entry)
514 {
515 errorOut.append(jsonIndent + "\"Error Details\": {\n");
516 auto errorMsg = getErrorMessage(*entry);
517 if (errorMsg)
518 {
519 if (type == DetailLevel::message)
520 {
521 return errorMsg.value();
522 }
523 else
524 {
525 jsonInsert(errorOut, "Message", errorMsg.value(), 2);
526 }
527 }
528 if (entry->src.hexwordADFields)
529 {
Harisuddin Mohamed Isa1a1b0df2020-11-23 16:34:36 +0800530 std::map<size_t, std::tuple<std::string, std::string>>
531 adFields = entry->src.hexwordADFields.value();
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800532 for (const auto& hexwordMap : adFields)
533 {
Zane Shelleye8db29b2021-11-13 10:34:07 -0600534 auto srcValue = getNumberString(
Harisuddin Mohamed Isa1a1b0df2020-11-23 16:34:36 +0800535 "0x%X",
Zane Shelleye8db29b2021-11-13 10:34:07 -0600536 _hexData[getWordIndexFromWordNum(hexwordMap.first)]);
537
538 auto srcKey = std::get<0>(hexwordMap.second);
539 auto srcDesc = std::get<1>(hexwordMap.second);
540
541 // Only include this hex word in the error details if the
542 // description exists.
543 if (!srcDesc.empty())
544 {
545 std::vector<std::string> valueDescr;
546 valueDescr.push_back(srcValue);
547 valueDescr.push_back(srcDesc);
548 jsonInsertArray(errorOut, srcKey, valueDescr, 2);
549 }
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800550 }
551 }
552 errorOut.erase(errorOut.size() - 2);
553 errorOut.append("\n");
554 errorOut.append(jsonIndent + "},\n");
555 return errorOut;
556 }
557 }
558 return std::nullopt;
559}
560
561std::optional<std::string>
562 SRC::getErrorMessage(const message::Entry& regEntry) const
563{
564 try
565 {
566 if (regEntry.doc.messageArgSources)
567 {
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800568 std::vector<uint32_t> argSourceVals;
569 std::string message;
570 const auto& argValues = regEntry.doc.messageArgSources.value();
571 for (size_t i = 0; i < argValues.size(); ++i)
572 {
573 argSourceVals.push_back(_hexData[getWordIndexFromWordNum(
574 argValues[i].back() - '0')]);
575 }
Patrick Williams0230abb2021-04-19 14:32:50 -0500576
577 auto it = std::begin(regEntry.doc.message);
578 auto it_end = std::end(regEntry.doc.message);
579
580 while (it != it_end)
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800581 {
Patrick Williams0230abb2021-04-19 14:32:50 -0500582 if (*it == '%')
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800583 {
Patrick Williams0230abb2021-04-19 14:32:50 -0500584 ++it;
585
586 size_t wordIndex = *it - '0';
587 if (isdigit(*it) && wordIndex >= 1 &&
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800588 static_cast<uint16_t>(wordIndex) <=
589 argSourceVals.size())
590 {
591 message.append(getNumberString(
Zane Shelley39936e32021-11-13 16:19:34 -0600592 "0x%08X", argSourceVals[wordIndex - 1]));
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800593 }
594 else
595 {
Patrick Williams0230abb2021-04-19 14:32:50 -0500596 message.append("%" + std::string(1, *it));
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800597 }
598 }
599 else
600 {
Patrick Williams0230abb2021-04-19 14:32:50 -0500601 message.push_back(*it);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800602 }
Patrick Williams0230abb2021-04-19 14:32:50 -0500603 ++it;
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800604 }
Patrick Williams0230abb2021-04-19 14:32:50 -0500605
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800606 return message;
607 }
608 else
609 {
610 return regEntry.doc.message;
611 }
612 }
613 catch (const std::exception& e)
614 {
615 log<level::ERR>("Cannot get error message from registry entry",
616 entry("ERROR=%s", e.what()));
617 }
618 return std::nullopt;
619}
620
621std::optional<std::string> SRC::getCallouts() const
622{
623 if (!_callouts)
624 {
625 return std::nullopt;
626 }
627 std::string printOut;
628 const std::string jsonIndent(indentLevel, 0x20);
629 const auto& callout = _callouts->callouts();
630 const auto& compDescrp = pv::failingComponentType;
631 printOut.append(jsonIndent + "\"Callout Section\": {\n");
632 jsonInsert(printOut, "Callout Count", std::to_string(callout.size()), 2);
633 printOut.append(jsonIndent + jsonIndent + "\"Callouts\": [");
634 for (auto& entry : callout)
635 {
636 printOut.append("{\n");
637 if (entry->fruIdentity())
638 {
639 jsonInsert(
640 printOut, "FRU Type",
641 compDescrp.at(entry->fruIdentity()->failingComponentType()), 3);
642 jsonInsert(printOut, "Priority",
643 pv::getValue(entry->priority(),
644 pel_values::calloutPriorityValues),
645 3);
646 if (!entry->locationCode().empty())
647 {
648 jsonInsert(printOut, "Location Code", entry->locationCode(), 3);
649 }
650 if (entry->fruIdentity()->getPN().has_value())
651 {
652 jsonInsert(printOut, "Part Number",
653 entry->fruIdentity()->getPN().value(), 3);
654 }
655 if (entry->fruIdentity()->getMaintProc().has_value())
656 {
Matt Spinler9e8b49e2020-09-10 13:15:26 -0500657 jsonInsert(printOut, "Procedure",
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800658 entry->fruIdentity()->getMaintProc().value(), 3);
659 if (pv::procedureDesc.find(
660 entry->fruIdentity()->getMaintProc().value()) !=
661 pv::procedureDesc.end())
662 {
663 jsonInsert(
664 printOut, "Description",
665 pv::procedureDesc.at(
666 entry->fruIdentity()->getMaintProc().value()),
667 3);
668 }
669 }
670 if (entry->fruIdentity()->getCCIN().has_value())
671 {
672 jsonInsert(printOut, "CCIN",
673 entry->fruIdentity()->getCCIN().value(), 3);
674 }
675 if (entry->fruIdentity()->getSN().has_value())
676 {
677 jsonInsert(printOut, "Serial Number",
678 entry->fruIdentity()->getSN().value(), 3);
679 }
680 }
681 if (entry->pceIdentity())
682 {
683 const auto& pceIdentMtms = entry->pceIdentity()->mtms();
684 if (!pceIdentMtms.machineTypeAndModel().empty())
685 {
686 jsonInsert(printOut, "PCE MTMS",
687 pceIdentMtms.machineTypeAndModel() + "_" +
688 pceIdentMtms.machineSerialNumber(),
689 3);
690 }
691 if (!entry->pceIdentity()->enclosureName().empty())
692 {
693 jsonInsert(printOut, "PCE Name",
694 entry->pceIdentity()->enclosureName(), 3);
695 }
696 }
697 if (entry->mru())
698 {
699 const auto& mruCallouts = entry->mru()->mrus();
700 std::string mruId;
701 for (auto& element : mruCallouts)
702 {
703 if (!mruId.empty())
704 {
705 mruId.append(", " + getNumberString("%08X", element.id));
706 }
707 else
708 {
709 mruId.append(getNumberString("%08X", element.id));
710 }
711 }
712 jsonInsert(printOut, "MRU Id", mruId, 3);
713 }
714 printOut.erase(printOut.size() - 2);
715 printOut.append("\n" + jsonIndent + jsonIndent + "}, ");
716 };
717 printOut.erase(printOut.size() - 2);
718 printOut.append("]\n" + jsonIndent + "}");
719 return printOut;
720}
721
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800722std::optional<std::string> SRC::getJSON(message::Registry& registry,
Patrick Williamsd26fa3e2021-04-21 15:22:23 -0500723 const std::vector<std::string>& plugins
724 [[maybe_unused]],
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800725 uint8_t creatorID) const
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800726{
727 std::string ps;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800728 std::vector<std::string> hexwords;
Harisuddin Mohamed Isabebeb942020-03-12 17:12:24 +0800729 jsonInsert(ps, pv::sectionVer, getNumberString("%d", _header.version), 1);
730 jsonInsert(ps, pv::subSection, getNumberString("%d", _header.subType), 1);
Matt Spinlerb832aa52023-03-21 15:32:34 -0500731 jsonInsert(ps, pv::createdBy,
732 getComponentName(_header.componentID, creatorID), 1);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800733 jsonInsert(ps, "SRC Version", getNumberString("0x%02X", _version), 1);
Harisuddin Mohamed Isac32e5512020-02-06 18:05:21 +0800734 jsonInsert(ps, "SRC Format", getNumberString("0x%02X", _hexData[0] & 0xFF),
735 1);
736 jsonInsert(ps, "Virtual Progress SRC",
737 pv::boolString.at(_flags & virtualProgressSRC), 1);
738 jsonInsert(ps, "I5/OS Service Event Bit",
739 pv::boolString.at(_flags & i5OSServiceEventBit), 1);
740 jsonInsert(ps, "Hypervisor Dump Initiated",
741 pv::boolString.at(_flags & hypDumpInit), 1);
Matt Spinler075e5ba2020-02-21 15:46:00 -0600742
743 if (isBMCSRC())
744 {
745 std::string ccinString;
746 uint32_t ccin = _hexData[1] >> 16;
747
748 if (ccin)
749 {
750 ccinString = getNumberString("%04X", ccin);
751 }
752 // The PEL spec calls it a backplane, so call it that here.
753 jsonInsert(ps, "Backplane CCIN", ccinString, 1);
Matt Spinlerafa2c792020-08-27 11:01:39 -0500754
Sumit Kumar3e274432021-09-14 06:37:56 -0500755 jsonInsert(ps, "Terminate FW Error",
756 pv::boolString.at(
757 _hexData[3] &
758 static_cast<uint32_t>(ErrorStatusFlags::terminateFwErr)),
759 1);
Matt Spinler4deed972023-04-28 14:09:22 -0500760 }
761
762 if (isBMCSRC() || isHostbootSRC())
763 {
Matt Spinlerafa2c792020-08-27 11:01:39 -0500764 jsonInsert(ps, "Deconfigured",
765 pv::boolString.at(
766 _hexData[3] &
767 static_cast<uint32_t>(ErrorStatusFlags::deconfigured)),
768 1);
769
770 jsonInsert(
771 ps, "Guarded",
772 pv::boolString.at(_hexData[3] &
773 static_cast<uint32_t>(ErrorStatusFlags::guarded)),
774 1);
Matt Spinler075e5ba2020-02-21 15:46:00 -0600775 }
776
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800777 auto errorDetails = getErrorDetails(registry, DetailLevel::json, true);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800778 if (errorDetails)
779 {
780 ps.append(errorDetails.value());
781 }
782 jsonInsert(ps, "Valid Word Count", getNumberString("0x%02X", _wordCount),
783 1);
784 std::string refcode = asciiString();
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800785 hexwords.push_back(refcode);
Harisuddin Mohamed Isafecaa572020-03-11 16:04:50 +0800786 std::string extRefcode;
787 size_t pos = refcode.find(0x20);
788 if (pos != std::string::npos)
789 {
790 size_t nextPos = refcode.find_first_not_of(0x20, pos);
791 if (nextPos != std::string::npos)
792 {
793 extRefcode = trimEnd(refcode.substr(nextPos));
794 }
795 refcode.erase(pos);
796 }
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800797 jsonInsert(ps, "Reference Code", refcode, 1);
Harisuddin Mohamed Isafecaa572020-03-11 16:04:50 +0800798 if (!extRefcode.empty())
799 {
800 jsonInsert(ps, "Extended Reference Code", extRefcode, 1);
801 }
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800802 for (size_t i = 2; i <= _wordCount; i++)
803 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800804 std::string tmpWord =
805 getNumberString("%08X", _hexData[getWordIndexFromWordNum(i)]);
806 jsonInsert(ps, "Hex Word " + std::to_string(i), tmpWord, 1);
807 hexwords.push_back(tmpWord);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800808 }
809 auto calloutJson = getCallouts();
810 if (calloutJson)
811 {
812 ps.append(calloutJson.value());
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800813 ps.append(",\n");
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800814 }
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800815 std::string subsystem = getNumberString("%c", tolower(creatorID));
816 bool srcDetailExists = false;
817#ifdef PELTOOL
818 if (std::find(plugins.begin(), plugins.end(), subsystem + "src") !=
819 plugins.end())
820 {
821 auto pyJson = getPythonJSON(hexwords, creatorID);
822 if (pyJson)
823 {
824 ps.append(pyJson.value());
825 srcDetailExists = true;
826 }
827 }
828#endif
829 if (!srcDetailExists)
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800830 {
831 ps.erase(ps.size() - 2);
832 }
833 return ps;
834}
835
Matt Spinler03984582020-04-09 13:17:58 -0500836void SRC::addCallouts(const message::Entry& regEntry,
837 const AdditionalData& additionalData,
Matt Spinler5a90a952020-08-27 09:39:03 -0500838 const nlohmann::json& jsonCallouts,
Matt Spinlered046852020-03-13 13:58:15 -0500839 const DataInterfaceBase& dataIface)
840{
Patrick Williams2544b412022-10-04 08:41:06 -0500841 auto registryCallouts = getRegistryCallouts(regEntry, additionalData,
842 dataIface);
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500843
Matt Spinlered046852020-03-13 13:58:15 -0500844 auto item = additionalData.getValue("CALLOUT_INVENTORY_PATH");
Miguel Gomez53ef1552020-10-14 21:16:32 +0000845 auto priority = additionalData.getValue("CALLOUT_PRIORITY");
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500846
Miguel Gomez53ef1552020-10-14 21:16:32 +0000847 std::optional<CalloutPriority> calloutPriority;
848
849 // Only H, M or L priority values.
850 if (priority && !(*priority).empty())
851 {
852 uint8_t p = (*priority)[0];
853 if (p == 'H' || p == 'M' || p == 'L')
854 {
855 calloutPriority = static_cast<CalloutPriority>(p);
856 }
857 }
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500858 // If the first registry callout says to use the passed in inventory
859 // path to get the location code for a symbolic FRU callout with a
860 // trusted location code, then do not add the inventory path as a
861 // normal FRU callout.
862 bool useInvForSymbolicFRULocCode =
863 !registryCallouts.empty() && registryCallouts[0].useInventoryLocCode &&
864 !registryCallouts[0].symbolicFRUTrusted.empty();
865
866 if (item && !useInvForSymbolicFRULocCode)
Matt Spinlered046852020-03-13 13:58:15 -0500867 {
Miguel Gomez53ef1552020-10-14 21:16:32 +0000868 addInventoryCallout(*item, calloutPriority, std::nullopt, dataIface);
Matt Spinlered046852020-03-13 13:58:15 -0500869 }
870
Matt Spinler717de422020-06-04 13:10:14 -0500871 addDevicePathCallouts(additionalData, dataIface);
Matt Spinler03984582020-04-09 13:17:58 -0500872
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500873 addRegistryCallouts(registryCallouts, dataIface,
874 (useInvForSymbolicFRULocCode) ? item : std::nullopt);
Matt Spinler5a90a952020-08-27 09:39:03 -0500875
876 if (!jsonCallouts.empty())
877 {
878 addJSONCallouts(jsonCallouts, dataIface);
879 }
Matt Spinlered046852020-03-13 13:58:15 -0500880}
881
882void SRC::addInventoryCallout(const std::string& inventoryPath,
Matt Spinleraf191c72020-06-04 11:35:13 -0500883 const std::optional<CalloutPriority>& priority,
884 const std::optional<std::string>& locationCode,
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500885 const DataInterfaceBase& dataIface,
886 const std::vector<src::MRU::MRUCallout>& mrus)
Matt Spinlered046852020-03-13 13:58:15 -0500887{
888 std::string locCode;
889 std::string fn;
890 std::string ccin;
891 std::string sn;
892 std::unique_ptr<src::Callout> callout;
893
Matt Spinlered046852020-03-13 13:58:15 -0500894 try
895 {
Matt Spinleraf191c72020-06-04 11:35:13 -0500896 // Use the passed in location code if there otherwise look it up
897 if (locationCode)
898 {
899 locCode = *locationCode;
900 }
901 else
902 {
903 locCode = dataIface.getLocationCode(inventoryPath);
904 }
Matt Spinlered046852020-03-13 13:58:15 -0500905
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500906 try
907 {
908 dataIface.getHWCalloutFields(inventoryPath, fn, ccin, sn);
909
Patrick Williams2544b412022-10-04 08:41:06 -0500910 CalloutPriority p = priority ? priority.value()
911 : CalloutPriority::high;
Matt Spinleraf191c72020-06-04 11:35:13 -0500912
Patrick Williams2544b412022-10-04 08:41:06 -0500913 callout = std::make_unique<src::Callout>(p, locCode, fn, ccin, sn,
914 mrus);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500915 }
Patrick Williams45e83522022-07-22 19:26:52 -0500916 catch (const sdbusplus::exception_t& e)
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500917 {
Patrick Williams2544b412022-10-04 08:41:06 -0500918 std::string msg = "No VPD found for " + inventoryPath + ": " +
919 e.what();
Matt Spinler85f61a62020-06-03 16:28:55 -0500920 addDebugData(msg);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500921
922 // Just create the callout with empty FRU fields
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500923 callout = std::make_unique<src::Callout>(
924 CalloutPriority::high, locCode, fn, ccin, sn, mrus);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500925 }
Matt Spinlered046852020-03-13 13:58:15 -0500926 }
Patrick Williams45e83522022-07-22 19:26:52 -0500927 catch (const sdbusplus::exception_t& e)
Matt Spinlered046852020-03-13 13:58:15 -0500928 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500929 std::string msg = "Could not get location code for " + inventoryPath +
930 ": " + e.what();
931 addDebugData(msg);
Matt Spinlered046852020-03-13 13:58:15 -0500932
Matt Spinler479b6922021-08-17 16:34:59 -0500933 // Don't add a callout in this case, because:
934 // 1) With how the inventory is primed, there is no case where
935 // a location code is expected to be missing. This implies
936 // the caller is passing in something invalid.
937 // 2) The addDebugData call above will put the passed in path into
938 // a user data section that can be seen by development for debug.
939 // 3) Even if we wanted to do a 'no_vpd_for_fru' sort of maint.
940 // procedure, we don't have a good way to indicate to the user
941 // anything about the intended callout (they won't see user data).
942 // 4) Creating a new standalone event log for this problem isn't
943 // possible from inside a PEL section.
Matt Spinlered046852020-03-13 13:58:15 -0500944 }
945
Matt Spinler479b6922021-08-17 16:34:59 -0500946 if (callout)
947 {
948 createCalloutsObject();
949 _callouts->addCallout(std::move(callout));
950 }
Matt Spinler03984582020-04-09 13:17:58 -0500951}
Matt Spinlered046852020-03-13 13:58:15 -0500952
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500953std::vector<message::RegistryCallout>
954 SRC::getRegistryCallouts(const message::Entry& regEntry,
955 const AdditionalData& additionalData,
956 const DataInterfaceBase& dataIface)
957{
958 std::vector<message::RegistryCallout> registryCallouts;
959
960 if (regEntry.callouts)
961 {
Matt Spinler9a50c8d2021-04-12 14:22:26 -0500962 std::vector<std::string> systemNames;
963
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500964 try
965 {
Matt Spinler9a50c8d2021-04-12 14:22:26 -0500966 systemNames = dataIface.getSystemNames();
967 }
968 catch (const std::exception& e)
969 {
970 // Compatible interface not available yet
971 }
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500972
Matt Spinler9a50c8d2021-04-12 14:22:26 -0500973 try
974 {
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500975 registryCallouts = message::Registry::getCallouts(
976 regEntry.callouts.value(), systemNames, additionalData);
977 }
978 catch (const std::exception& e)
979 {
980 addDebugData(fmt::format(
981 "Error parsing PEL message registry callout JSON: {}",
982 e.what()));
983 }
984 }
985
986 return registryCallouts;
987}
988
989void SRC::addRegistryCallouts(
990 const std::vector<message::RegistryCallout>& callouts,
991 const DataInterfaceBase& dataIface,
992 std::optional<std::string> trustedSymbolicFRUInvPath)
Matt Spinler03984582020-04-09 13:17:58 -0500993{
994 try
995 {
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500996 for (const auto& callout : callouts)
Matt Spinler03984582020-04-09 13:17:58 -0500997 {
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500998 addRegistryCallout(callout, dataIface, trustedSymbolicFRUInvPath);
999
1000 // Only the first callout gets the inventory path
1001 if (trustedSymbolicFRUInvPath)
1002 {
1003 trustedSymbolicFRUInvPath = std::nullopt;
1004 }
Matt Spinler03984582020-04-09 13:17:58 -05001005 }
1006 }
Patrick Williams66491c62021-10-06 12:23:37 -05001007 catch (const std::exception& e)
Matt Spinler03984582020-04-09 13:17:58 -05001008 {
Patrick Williams2544b412022-10-04 08:41:06 -05001009 std::string msg = "Error parsing PEL message registry callout JSON: "s +
1010 e.what();
Matt Spinler85f61a62020-06-03 16:28:55 -05001011 addDebugData(msg);
Matt Spinler03984582020-04-09 13:17:58 -05001012 }
1013}
1014
Matt Spinlerf00f9d02020-10-23 09:14:22 -05001015void SRC::addRegistryCallout(
1016 const message::RegistryCallout& regCallout,
1017 const DataInterfaceBase& dataIface,
1018 const std::optional<std::string>& trustedSymbolicFRUInvPath)
Matt Spinler03984582020-04-09 13:17:58 -05001019{
1020 std::unique_ptr<src::Callout> callout;
Matt Spinler03984582020-04-09 13:17:58 -05001021 auto locCode = regCallout.locCode;
1022
Matt Spinleraf191c72020-06-04 11:35:13 -05001023 if (!locCode.empty())
1024 {
1025 try
1026 {
1027 locCode = dataIface.expandLocationCode(locCode, 0);
1028 }
1029 catch (const std::exception& e)
1030 {
Patrick Williams2544b412022-10-04 08:41:06 -05001031 auto msg = "Unable to expand location code " + locCode + ": " +
1032 e.what();
Matt Spinleraf191c72020-06-04 11:35:13 -05001033 addDebugData(msg);
1034 return;
1035 }
1036 }
1037
Matt Spinler03984582020-04-09 13:17:58 -05001038 // Via the PEL values table, get the priority enum.
1039 // The schema will have validated the priority was a valid value.
Patrick Williams2544b412022-10-04 08:41:06 -05001040 auto priorityIt = pv::findByName(regCallout.priority,
1041 pv::calloutPriorityValues);
Matt Spinler03984582020-04-09 13:17:58 -05001042 assert(priorityIt != pv::calloutPriorityValues.end());
1043 auto priority =
1044 static_cast<CalloutPriority>(std::get<pv::fieldValuePos>(*priorityIt));
1045
1046 if (!regCallout.procedure.empty())
1047 {
1048 // Procedure callout
Patrick Williams2544b412022-10-04 08:41:06 -05001049 callout = std::make_unique<src::Callout>(priority,
1050 regCallout.procedure);
Matt Spinler03984582020-04-09 13:17:58 -05001051 }
1052 else if (!regCallout.symbolicFRU.empty())
1053 {
1054 // Symbolic FRU callout
1055 callout = std::make_unique<src::Callout>(
1056 priority, regCallout.symbolicFRU, locCode, false);
1057 }
1058 else if (!regCallout.symbolicFRUTrusted.empty())
1059 {
1060 // Symbolic FRU with trusted location code callout
1061
Matt Spinlerf00f9d02020-10-23 09:14:22 -05001062 // Use the location code from the inventory path if there is one.
1063 if (trustedSymbolicFRUInvPath)
1064 {
1065 try
1066 {
1067 locCode = dataIface.getLocationCode(*trustedSymbolicFRUInvPath);
1068 }
1069 catch (const std::exception& e)
1070 {
1071 addDebugData(
1072 fmt::format("Could not get location code for {}: {}",
1073 *trustedSymbolicFRUInvPath, e.what()));
1074 locCode.clear();
1075 }
1076 }
1077
Matt Spinler03984582020-04-09 13:17:58 -05001078 // The registry wants it to be trusted, but that requires a valid
1079 // location code for it to actually be.
1080 callout = std::make_unique<src::Callout>(
1081 priority, regCallout.symbolicFRUTrusted, locCode, !locCode.empty());
1082 }
1083 else
1084 {
Matt Spinleraf191c72020-06-04 11:35:13 -05001085 // A hardware callout
Matt Spinlerbad056b2023-01-25 14:16:57 -06001086 std::vector<std::string> inventoryPaths;
Matt Spinleraf191c72020-06-04 11:35:13 -05001087
1088 try
1089 {
1090 // Get the inventory item from the unexpanded location code
Matt Spinlerbad056b2023-01-25 14:16:57 -06001091 inventoryPaths =
Matt Spinler2f9225a2020-08-05 12:58:49 -05001092 dataIface.getInventoryFromLocCode(regCallout.locCode, 0, false);
Matt Spinleraf191c72020-06-04 11:35:13 -05001093 }
1094 catch (const std::exception& e)
1095 {
1096 std::string msg =
1097 "Unable to get inventory path from location code: " + locCode +
1098 ": " + e.what();
1099 addDebugData(msg);
1100 return;
1101 }
1102
Matt Spinlerbad056b2023-01-25 14:16:57 -06001103 // Just use first path returned since they all point to the same FRU.
1104 addInventoryCallout(inventoryPaths[0], priority, locCode, dataIface);
Matt Spinler03984582020-04-09 13:17:58 -05001105 }
1106
1107 if (callout)
1108 {
1109 createCalloutsObject();
1110 _callouts->addCallout(std::move(callout));
1111 }
1112}
Matt Spinlered046852020-03-13 13:58:15 -05001113
Matt Spinler717de422020-06-04 13:10:14 -05001114void SRC::addDevicePathCallouts(const AdditionalData& additionalData,
1115 const DataInterfaceBase& dataIface)
1116{
1117 std::vector<device_callouts::Callout> callouts;
1118 auto i2cBus = additionalData.getValue("CALLOUT_IIC_BUS");
1119 auto i2cAddr = additionalData.getValue("CALLOUT_IIC_ADDR");
1120 auto devPath = additionalData.getValue("CALLOUT_DEVICE_PATH");
1121
1122 // A device callout contains either:
1123 // * CALLOUT_ERRNO, CALLOUT_DEVICE_PATH
1124 // * CALLOUT_ERRNO, CALLOUT_IIC_BUS, CALLOUT_IIC_ADDR
1125 // We don't care about the errno.
1126
1127 if (devPath)
1128 {
1129 try
1130 {
1131 callouts = device_callouts::getCallouts(*devPath,
1132 dataIface.getSystemNames());
1133 }
1134 catch (const std::exception& e)
1135 {
1136 addDebugData(e.what());
1137 callouts.clear();
1138 }
1139 }
1140 else if (i2cBus && i2cAddr)
1141 {
1142 size_t bus;
1143 uint8_t address;
1144
1145 try
1146 {
1147 // If /dev/i2c- is prepended, remove it
1148 if (i2cBus->find("/dev/i2c-") != std::string::npos)
1149 {
1150 *i2cBus = i2cBus->substr(9);
1151 }
1152
1153 bus = stoul(*i2cBus, nullptr, 0);
1154 address = stoul(*i2cAddr, nullptr, 0);
1155 }
1156 catch (const std::exception& e)
1157 {
1158 std::string msg = "Invalid CALLOUT_IIC_BUS " + *i2cBus +
1159 " or CALLOUT_IIC_ADDR " + *i2cAddr +
1160 " in AdditionalData property";
1161 addDebugData(msg);
1162 return;
1163 }
1164
1165 try
1166 {
1167 callouts = device_callouts::getI2CCallouts(
1168 bus, address, dataIface.getSystemNames());
1169 }
1170 catch (const std::exception& e)
1171 {
1172 addDebugData(e.what());
1173 callouts.clear();
1174 }
1175 }
1176
1177 for (const auto& callout : callouts)
1178 {
1179 // The priority shouldn't be invalid, but check just in case.
1180 CalloutPriority priority = CalloutPriority::high;
1181
1182 if (!callout.priority.empty())
1183 {
1184 auto p = pel_values::findByValue(
1185 static_cast<uint32_t>(callout.priority[0]),
1186 pel_values::calloutPriorityValues);
1187
1188 if (p != pel_values::calloutPriorityValues.end())
1189 {
1190 priority = static_cast<CalloutPriority>(callout.priority[0]);
1191 }
1192 else
1193 {
1194 std::string msg =
1195 "Invalid priority found in dev callout JSON: " +
1196 callout.priority[0];
1197 addDebugData(msg);
1198 }
1199 }
1200
Matt Spinler0d92b522021-06-16 13:28:17 -06001201 std::optional<std::string> locCode;
1202
1203 try
1204 {
1205 locCode = dataIface.expandLocationCode(callout.locationCode, 0);
1206 }
1207 catch (const std::exception& e)
1208 {
1209 auto msg = fmt::format("Unable to expand location code {}: {}",
1210 callout.locationCode, e.what());
1211 addDebugData(msg);
1212 }
1213
Matt Spinler717de422020-06-04 13:10:14 -05001214 try
1215 {
Matt Spinlerbad056b2023-01-25 14:16:57 -06001216 auto inventoryPaths = dataIface.getInventoryFromLocCode(
Matt Spinler2f9225a2020-08-05 12:58:49 -05001217 callout.locationCode, 0, false);
Matt Spinler717de422020-06-04 13:10:14 -05001218
Matt Spinlerbad056b2023-01-25 14:16:57 -06001219 // Just use first path returned since they all
1220 // point to the same FRU.
1221 addInventoryCallout(inventoryPaths[0], priority, locCode,
1222 dataIface);
Matt Spinler717de422020-06-04 13:10:14 -05001223 }
1224 catch (const std::exception& e)
1225 {
1226 std::string msg =
1227 "Unable to get inventory path from location code: " +
1228 callout.locationCode + ": " + e.what();
1229 addDebugData(msg);
1230 }
1231
1232 // Until the code is there to convert these MRU value strings to
1233 // the official MRU values in the callout objects, just store
1234 // the MRU name in the debug UserData section.
1235 if (!callout.mru.empty())
1236 {
1237 std::string msg = "MRU: " + callout.mru;
1238 addDebugData(msg);
1239 }
1240
1241 // getCallouts() may have generated some debug data it stored
1242 // in a callout object. Save it as well.
1243 if (!callout.debug.empty())
1244 {
1245 addDebugData(callout.debug);
1246 }
1247 }
1248}
1249
Matt Spinler5a90a952020-08-27 09:39:03 -05001250void SRC::addJSONCallouts(const nlohmann::json& jsonCallouts,
1251 const DataInterfaceBase& dataIface)
1252{
1253 if (jsonCallouts.empty())
1254 {
1255 return;
1256 }
1257
1258 if (!jsonCallouts.is_array())
1259 {
1260 addDebugData("Callout JSON isn't an array");
1261 return;
1262 }
1263
1264 for (const auto& callout : jsonCallouts)
1265 {
1266 try
1267 {
1268 addJSONCallout(callout, dataIface);
1269 }
1270 catch (const std::exception& e)
1271 {
1272 addDebugData(fmt::format(
1273 "Failed extracting callout data from JSON: {}", e.what()));
1274 }
1275 }
1276}
1277
1278void SRC::addJSONCallout(const nlohmann::json& jsonCallout,
1279 const DataInterfaceBase& dataIface)
1280{
Matt Spinler3bdd0112020-08-27 10:24:34 -05001281 auto priority = getPriorityFromJSON(jsonCallout);
1282 std::string locCode;
1283 std::string unexpandedLocCode;
1284 std::unique_ptr<src::Callout> callout;
1285
1286 // Expand the location code if it's there
1287 if (jsonCallout.contains("LocationCode"))
1288 {
1289 unexpandedLocCode = jsonCallout.at("LocationCode").get<std::string>();
1290
1291 try
1292 {
1293 locCode = dataIface.expandLocationCode(unexpandedLocCode, 0);
1294 }
1295 catch (const std::exception& e)
1296 {
1297 addDebugData(fmt::format("Unable to expand location code {}: {}",
1298 unexpandedLocCode, e.what()));
1299 // Use the value from the JSON so at least there's something
1300 locCode = unexpandedLocCode;
1301 }
1302 }
1303
1304 // Create either a procedure, symbolic FRU, or normal FRU callout.
1305 if (jsonCallout.contains("Procedure"))
1306 {
1307 auto procedure = jsonCallout.at("Procedure").get<std::string>();
1308
Matt Spinler3c7ec6d2022-05-06 08:50:20 -05001309 // If it's the registry name instead of the raw name, convert.
1310 if (pv::maintenanceProcedures.find(procedure) !=
1311 pv::maintenanceProcedures.end())
1312 {
1313 procedure = pv::maintenanceProcedures.at(procedure);
1314 }
1315
Matt Spinler3bdd0112020-08-27 10:24:34 -05001316 callout = std::make_unique<src::Callout>(
1317 static_cast<CalloutPriority>(priority), procedure,
1318 src::CalloutValueType::raw);
1319 }
1320 else if (jsonCallout.contains("SymbolicFRU"))
1321 {
1322 auto fru = jsonCallout.at("SymbolicFRU").get<std::string>();
1323
Matt Spinler3c7ec6d2022-05-06 08:50:20 -05001324 // If it's the registry name instead of the raw name, convert.
1325 if (pv::symbolicFRUs.find(fru) != pv::symbolicFRUs.end())
1326 {
1327 fru = pv::symbolicFRUs.at(fru);
1328 }
1329
Matt Spinler3bdd0112020-08-27 10:24:34 -05001330 bool trusted = false;
1331 if (jsonCallout.contains("TrustedLocationCode") && !locCode.empty())
1332 {
1333 trusted = jsonCallout.at("TrustedLocationCode").get<bool>();
1334 }
1335
1336 callout = std::make_unique<src::Callout>(
1337 static_cast<CalloutPriority>(priority), fru,
1338 src::CalloutValueType::raw, locCode, trusted);
1339 }
1340 else
1341 {
1342 // A hardware FRU
1343 std::string inventoryPath;
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001344 std::vector<src::MRU::MRUCallout> mrus;
Matt Spinler3bdd0112020-08-27 10:24:34 -05001345
1346 if (jsonCallout.contains("InventoryPath"))
1347 {
1348 inventoryPath = jsonCallout.at("InventoryPath").get<std::string>();
1349 }
1350 else
1351 {
1352 if (unexpandedLocCode.empty())
1353 {
1354 throw std::runtime_error{"JSON callout needs either an "
1355 "inventory path or location code"};
1356 }
1357
1358 try
1359 {
Matt Spinlerbad056b2023-01-25 14:16:57 -06001360 auto inventoryPaths = dataIface.getInventoryFromLocCode(
Matt Spinler3bdd0112020-08-27 10:24:34 -05001361 unexpandedLocCode, 0, false);
Matt Spinlerbad056b2023-01-25 14:16:57 -06001362 // Just use first path returned since they all
1363 // point to the same FRU.
1364 inventoryPath = inventoryPaths[0];
Matt Spinler3bdd0112020-08-27 10:24:34 -05001365 }
1366 catch (const std::exception& e)
1367 {
1368 throw std::runtime_error{
1369 fmt::format("Unable to get inventory path from "
1370 "location code: {}: {}",
1371 unexpandedLocCode, e.what())};
1372 }
1373 }
1374
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001375 if (jsonCallout.contains("MRUs"))
1376 {
1377 mrus = getMRUsFromJSON(jsonCallout.at("MRUs"));
1378 }
1379
Matt Spinler3bdd0112020-08-27 10:24:34 -05001380 // If the location code was also passed in, use that here too
1381 // so addInventoryCallout doesn't have to look it up.
1382 std::optional<std::string> lc;
1383 if (!locCode.empty())
1384 {
1385 lc = locCode;
1386 }
1387
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001388 addInventoryCallout(inventoryPath, priority, lc, dataIface, mrus);
Matt Spinlerafa2c792020-08-27 11:01:39 -05001389
1390 if (jsonCallout.contains("Deconfigured"))
1391 {
1392 if (jsonCallout.at("Deconfigured").get<bool>())
1393 {
1394 setErrorStatusFlag(ErrorStatusFlags::deconfigured);
1395 }
1396 }
1397
1398 if (jsonCallout.contains("Guarded"))
1399 {
1400 if (jsonCallout.at("Guarded").get<bool>())
1401 {
1402 setErrorStatusFlag(ErrorStatusFlags::guarded);
1403 }
1404 }
Matt Spinler3bdd0112020-08-27 10:24:34 -05001405 }
1406
1407 if (callout)
1408 {
1409 createCalloutsObject();
1410 _callouts->addCallout(std::move(callout));
1411 }
1412}
1413
1414CalloutPriority SRC::getPriorityFromJSON(const nlohmann::json& json)
1415{
1416 // Looks like:
1417 // {
1418 // "Priority": "H"
1419 // }
1420 auto p = json.at("Priority").get<std::string>();
1421 if (p.empty())
1422 {
1423 throw std::runtime_error{"Priority field in callout is empty"};
1424 }
1425
1426 auto priority = static_cast<CalloutPriority>(p.front());
1427
1428 // Validate it
1429 auto priorityIt = pv::findByValue(static_cast<uint32_t>(priority),
1430 pv::calloutPriorityValues);
1431 if (priorityIt == pv::calloutPriorityValues.end())
1432 {
1433 throw std::runtime_error{
1434 fmt::format("Invalid priority '{}' found in JSON callout", p)};
1435 }
1436
1437 return priority;
Matt Spinler5a90a952020-08-27 09:39:03 -05001438}
1439
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001440std::vector<src::MRU::MRUCallout>
1441 SRC::getMRUsFromJSON(const nlohmann::json& mruJSON)
1442{
1443 std::vector<src::MRU::MRUCallout> mrus;
1444
1445 // Looks like:
1446 // [
1447 // {
1448 // "ID": 100,
1449 // "Priority": "H"
1450 // }
1451 // ]
1452 if (!mruJSON.is_array())
1453 {
1454 addDebugData("MRU callout JSON is not an array");
1455 return mrus;
1456 }
1457
1458 for (const auto& mruCallout : mruJSON)
1459 {
1460 try
1461 {
1462 auto priority = getPriorityFromJSON(mruCallout);
1463 auto id = mruCallout.at("ID").get<uint32_t>();
1464
1465 src::MRU::MRUCallout mru{static_cast<uint32_t>(priority), id};
1466 mrus.push_back(std::move(mru));
1467 }
1468 catch (const std::exception& e)
1469 {
1470 addDebugData(fmt::format("Invalid MRU entry in JSON: {}: {}",
1471 mruCallout.dump(), e.what()));
1472 }
1473 }
1474
1475 return mrus;
1476}
1477
Sumit Kumar9d43a722021-08-24 09:46:19 -05001478void SRC::setDumpStatus(const DataInterfaceBase& dataIface)
1479{
1480 std::vector<bool> dumpStatus{false, false, false};
1481
1482 try
1483 {
1484 std::vector<std::string> dumpType = {"bmc/entry", "resource/entry",
1485 "system/entry"};
1486 dumpStatus = dataIface.checkDumpStatus(dumpType);
1487
1488 // For bmc - set bit 0 of nibble [4-7] bits of byte-1 SP dump
1489 // For resource - set bit 2 of nibble [4-7] bits of byte-2 Hypervisor
1490 // For system - set bit 1 of nibble [4-7] bits of byte-2 HW dump
1491 _hexData[0] |= ((dumpStatus[0] << 19) | (dumpStatus[1] << 9) |
1492 (dumpStatus[2] << 10));
1493 }
1494 catch (const std::exception& e)
1495 {
Matt Spinler35a405b2022-03-02 11:42:42 -06001496 log<level::ERR>(
1497 fmt::format("Checking dump status failed: {}", e.what()).c_str());
Sumit Kumar9d43a722021-08-24 09:46:19 -05001498 }
1499}
1500
Sumit Kumar3e274432021-09-14 06:37:56 -05001501std::vector<uint8_t> SRC::getSrcStruct()
1502{
1503 std::vector<uint8_t> data;
1504 Stream stream{data};
1505
1506 //------ Ref section 4.3 in PEL doc---
1507 //------ SRC Structure 40 bytes-------
1508 // Byte-0 | Byte-1 | Byte-2 | Byte-3 |
1509 // -----------------------------------
1510 // 02 | 08 | 00 | 09 | ==> Header
1511 // 00 | 00 | 00 | 48 | ==> Header
1512 // 00 | 00 | 00 | 00 | ==> Hex data word-2
1513 // 00 | 00 | 00 | 00 | ==> Hex data word-3
1514 // 00 | 00 | 00 | 00 | ==> Hex data word-4
1515 // 20 | 00 | 00 | 00 | ==> Hex data word-5
1516 // 00 | 00 | 00 | 00 | ==> Hex data word-6
1517 // 00 | 00 | 00 | 00 | ==> Hex data word-7
1518 // 00 | 00 | 00 | 00 | ==> Hex data word-8
1519 // 00 | 00 | 00 | 00 | ==> Hex data word-9
1520 // -----------------------------------
1521 // ASCII string - 8 bytes |
1522 // -----------------------------------
1523 // ASCII space NULL - 24 bytes |
1524 // -----------------------------------
1525 //_size = Base SRC struct: 8 byte header + hex data section + ASCII string
1526
1527 uint8_t flags = (_flags | postOPPanel);
1528
1529 stream << _version << flags << _reserved1B << _wordCount << _reserved2B
1530 << _size;
1531
1532 for (auto& word : _hexData)
1533 {
1534 stream << word;
1535 }
1536
1537 _asciiString->flatten(stream);
1538
1539 return data;
1540}
1541
Vijay Lobo875b6c72021-10-20 17:38:56 -05001542void SRC::setProgressCode(const DataInterfaceBase& dataIface)
1543{
1544 std::vector<uint8_t> progressSRC;
1545
1546 try
1547 {
1548 progressSRC = dataIface.getRawProgressSRC();
1549 }
1550 catch (const std::exception& e)
1551 {
1552 log<level::ERR>(
1553 fmt::format("Error getting progress code: {}", e.what()).c_str());
1554 return;
1555 }
1556
1557 _hexData[2] = getProgressCode(progressSRC);
1558}
1559
1560uint32_t SRC::getProgressCode(std::vector<uint8_t>& rawProgressSRC)
1561{
1562 uint32_t progressCode = 0;
1563
1564 // A valid progress SRC is at least 72 bytes
1565 if (rawProgressSRC.size() < 72)
1566 {
1567 return progressCode;
1568 }
1569
1570 try
1571 {
1572 // The ASCII string field in progress SRCs starts at offset 40.
1573 // Take the first 8 characters to put in the uint32:
1574 // "CC009189" -> 0xCC009189
1575 Stream stream{rawProgressSRC, 40};
1576 src::AsciiString aString{stream};
1577 auto progressCodeString = aString.get().substr(0, 8);
1578
1579 if (std::all_of(progressCodeString.begin(), progressCodeString.end(),
1580 [](char c) {
Patrick Williamsac1ba3f2023-05-10 07:50:16 -05001581 return std::isxdigit(static_cast<unsigned char>(c));
1582 }))
Vijay Lobo875b6c72021-10-20 17:38:56 -05001583 {
1584 progressCode = std::stoul(progressCodeString, nullptr, 16);
1585 }
1586 }
1587 catch (const std::exception& e)
1588 {}
1589
1590 return progressCode;
1591}
1592
Matt Spinlerf9bae182019-10-09 13:37:38 -05001593} // namespace pels
1594} // namespace openpower