blob: 0bbc61f9a05b447bec6c3e3b24186535e0da8812 [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>
26#include <sstream>
27#endif
Matt Spinler5a90a952020-08-27 09:39:03 -050028#include <fmt/format.h>
29
Matt Spinlerf9bae182019-10-09 13:37:38 -050030#include <phosphor-logging/log.hpp>
31
32namespace openpower
33{
34namespace pels
35{
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +080036namespace pv = openpower::pels::pel_values;
37namespace rg = openpower::pels::message;
Matt Spinlerf9bae182019-10-09 13:37:38 -050038using namespace phosphor::logging;
Matt Spinler85f61a62020-06-03 16:28:55 -050039using namespace std::string_literals;
Matt Spinlerf9bae182019-10-09 13:37:38 -050040
Matt Spinler075e5ba2020-02-21 15:46:00 -060041constexpr size_t ccinSize = 4;
42
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080043#ifdef PELTOOL
Sumit Kumar516935a2021-04-14 13:00:54 -050044using orderedJSON = nlohmann::ordered_json;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080045
46void pyDecRef(PyObject* pyObj)
47{
48 Py_XDECREF(pyObj);
49}
50
51/**
52 * @brief Returns a JSON string to append to SRC section.
53 *
54 * The returning string will contain a JSON object, but without
55 * the outer {}. If the input JSON isn't a JSON object (dict), then
56 * one will be created with the input added to a 'SRC Details' key.
57 *
58 * @param[in] json - The JSON to convert to a string
59 *
60 * @return std::string - The JSON string
61 */
Sumit Kumar516935a2021-04-14 13:00:54 -050062std::string prettyJSON(const orderedJSON& json)
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080063{
Sumit Kumar516935a2021-04-14 13:00:54 -050064 orderedJSON output;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +080065 if (!json.is_object())
66 {
67 output["SRC Details"] = json;
68 }
69 else
70 {
71 for (const auto& [key, value] : json.items())
72 {
73 output[key] = value;
74 }
75 }
76
77 // Let nlohmann do the pretty printing.
78 std::stringstream stream;
79 stream << std::setw(4) << output;
80
81 auto jsonString = stream.str();
82
83 // Now it looks like:
84 // {
85 // "Key": "Value",
86 // ...
87 // }
88
89 // Replace the { and the following newline, and the } and its
90 // preceeding newline.
91 jsonString.erase(0, 2);
92
93 auto pos = jsonString.find_last_of('}');
94 jsonString.erase(pos - 1);
95
96 return jsonString;
97}
98
99/**
100 * @brief Call Python modules to parse the data into a JSON string
101 *
102 * The module to call is based on the Creator Subsystem ID under the namespace
103 * "srcparsers". For example: "srcparsers.xsrc.xsrc" where "x" is the Creator
104 * Subsystem ID in ASCII lowercase.
105 *
106 * All modules must provide the following:
107 * Function: parseSRCToJson
108 * Argument list:
109 * 1. (str) ASCII string (Hex Word 1)
110 * 2. (str) Hex Word 2
111 * 3. (str) Hex Word 3
112 * 4. (str) Hex Word 4
113 * 5. (str) Hex Word 5
114 * 6. (str) Hex Word 6
115 * 7. (str) Hex Word 7
116 * 8. (str) Hex Word 8
117 * 9. (str) Hex Word 9
118 *-Return data:
119 * 1. (str) JSON string
120 *
121 * @param[in] hexwords - Vector of strings of Hexwords 1-9
122 * @param[in] creatorID - The creatorID from the Private Header section
123 * @return std::optional<std::string> - The JSON string if it could be created,
124 * else std::nullopt
125 */
126std::optional<std::string> getPythonJSON(std::vector<std::string>& hexwords,
127 uint8_t creatorID)
128{
129 PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pResult, *pBytes,
130 *eType, *eValue, *eTraceback;
131 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);
137 std::unique_ptr<PyObject, decltype(&pyDecRef)> modPtr(pModule, &pyDecRef);
138 if (pModule == NULL)
139 {
140 pErrStr = "No error string found";
141 PyErr_Fetch(&eType, &eValue, &eTraceback);
142 if (eValue)
143 {
144 PyObject* pStr = PyObject_Str(eValue);
145 if (pStr)
146 {
147 pErrStr = PyUnicode_AsUTF8(pStr);
148 }
149 Py_XDECREF(pStr);
150 }
151 }
152 else
153 {
154 pDict = PyModule_GetDict(pModule);
155 pFunc = PyDict_GetItemString(pDict, "parseSRCToJson");
156 if (PyCallable_Check(pFunc))
157 {
158 pArgs = PyTuple_New(9);
159 std::unique_ptr<PyObject, decltype(&pyDecRef)> argPtr(pArgs,
160 &pyDecRef);
161 for (size_t i = 0; i < 9; i++)
162 {
163 if (i < hexwords.size())
164 {
165 auto arg = hexwords[i];
166 PyTuple_SetItem(pArgs, i,
167 Py_BuildValue("s#", arg.c_str(), 8));
168 }
169 else
170 {
171 PyTuple_SetItem(pArgs, i, Py_BuildValue("s", "00000000"));
172 }
173 }
174 pResult = PyObject_CallObject(pFunc, pArgs);
175 std::unique_ptr<PyObject, decltype(&pyDecRef)> resPtr(pResult,
176 &pyDecRef);
177 if (pResult)
178 {
179 pBytes = PyUnicode_AsEncodedString(pResult, "utf-8", "~E~");
180 std::unique_ptr<PyObject, decltype(&pyDecRef)> pyBytePtr(
181 pBytes, &pyDecRef);
182 const char* output = PyBytes_AS_STRING(pBytes);
183 try
184 {
Sumit Kumar516935a2021-04-14 13:00:54 -0500185 orderedJSON json = nlohmann::json::parse(output);
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800186 return prettyJSON(json);
187 }
188 catch (std::exception& e)
189 {
190 log<level::ERR>("Bad JSON from parser",
191 entry("ERROR=%s", e.what()),
192 entry("SRC=%s", hexwords.front().c_str()),
193 entry("PARSER_MODULE=%s", module.c_str()));
194 return std::nullopt;
195 }
196 }
197 else
198 {
199 pErrStr = "No error string found";
200 PyErr_Fetch(&eType, &eValue, &eTraceback);
201 if (eValue)
202 {
203 PyObject* pStr = PyObject_Str(eValue);
204 if (pStr)
205 {
206 pErrStr = PyUnicode_AsUTF8(pStr);
207 }
208 Py_XDECREF(pStr);
209 }
210 }
211 }
212 }
213 if (!pErrStr.empty())
214 {
215 log<level::ERR>("Python exception thrown by parser",
216 entry("ERROR=%s", pErrStr.c_str()),
217 entry("SRC=%s", hexwords.front().c_str()),
218 entry("PARSER_MODULE=%s", module.c_str()));
219 }
220 Py_XDECREF(eType);
221 Py_XDECREF(eValue);
222 Py_XDECREF(eTraceback);
223 return std::nullopt;
224}
225#endif
226
Matt Spinlerf9bae182019-10-09 13:37:38 -0500227void SRC::unflatten(Stream& stream)
228{
229 stream >> _header >> _version >> _flags >> _reserved1B >> _wordCount >>
230 _reserved2B >> _size;
231
232 for (auto& word : _hexData)
233 {
234 stream >> word;
235 }
236
237 _asciiString = std::make_unique<src::AsciiString>(stream);
238
239 if (hasAdditionalSections())
240 {
241 // The callouts section is currently the only extra subsection type
242 _callouts = std::make_unique<src::Callouts>(stream);
243 }
244}
245
Matt Spinler06885452019-11-06 10:35:42 -0600246void SRC::flatten(Stream& stream) const
Matt Spinlerf9bae182019-10-09 13:37:38 -0500247{
248 stream << _header << _version << _flags << _reserved1B << _wordCount
249 << _reserved2B << _size;
250
251 for (auto& word : _hexData)
252 {
253 stream << word;
254 }
255
256 _asciiString->flatten(stream);
257
258 if (_callouts)
259 {
260 _callouts->flatten(stream);
261 }
262}
263
264SRC::SRC(Stream& pel)
265{
266 try
267 {
268 unflatten(pel);
269 validate();
270 }
271 catch (const std::exception& e)
272 {
273 log<level::ERR>("Cannot unflatten SRC", entry("ERROR=%s", e.what()));
274 _valid = false;
275 }
276}
277
Matt Spinler075e5ba2020-02-21 15:46:00 -0600278SRC::SRC(const message::Entry& regEntry, const AdditionalData& additionalData,
Matt Spinler5a90a952020-08-27 09:39:03 -0500279 const nlohmann::json& jsonCallouts, const DataInterfaceBase& dataIface)
Matt Spinlerbd716f02019-10-15 10:54:11 -0500280{
281 _header.id = static_cast<uint16_t>(SectionID::primarySRC);
282 _header.version = srcSectionVersion;
283 _header.subType = srcSectionSubtype;
284 _header.componentID = regEntry.componentID;
285
286 _version = srcVersion;
287
288 _flags = 0;
Vijay Lobof3702bb2021-04-09 15:10:19 -0500289
290 auto item = additionalData.getValue("POWER_THERMAL_CRITICAL_FAULT");
291 if ((regEntry.src.powerFault.value_or(false)) ||
292 (item.value_or("") == "TRUE"))
Matt Spinlerbd716f02019-10-15 10:54:11 -0500293 {
294 _flags |= powerFaultEvent;
295 }
296
297 _reserved1B = 0;
298
299 _wordCount = numSRCHexDataWords + 1;
300
301 _reserved2B = 0;
302
303 // There are multiple fields encoded in the hex data words.
304 std::for_each(_hexData.begin(), _hexData.end(),
305 [](auto& word) { word = 0; });
Matt Spinler7c619182020-07-27 15:15:11 -0500306
307 // Hex Word 2 Nibbles:
308 // MIGVEPFF
309 // M: Partition dump status = 0
310 // I: System boot state = TODO
311 // G: Partition Boot type = 0
312 // V: BMC dump status = TODO
313 // E: Platform boot mode = 0 (side = temporary, speed = fast)
314 // P: Platform dump status = TODO
315 // FF: SRC format, set below
316
Matt Spinlerbd716f02019-10-15 10:54:11 -0500317 setBMCFormat();
318 setBMCPosition();
Matt Spinler075e5ba2020-02-21 15:46:00 -0600319 setMotherboardCCIN(dataIface);
320
Matt Spinlerbd716f02019-10-15 10:54:11 -0500321 // Fill in the last 4 words from the AdditionalData property contents.
322 setUserDefinedHexWords(regEntry, additionalData);
323
324 _asciiString = std::make_unique<src::AsciiString>(regEntry);
325
Matt Spinler5a90a952020-08-27 09:39:03 -0500326 addCallouts(regEntry, additionalData, jsonCallouts, dataIface);
Matt Spinlerbd716f02019-10-15 10:54:11 -0500327
328 _size = baseSRCSize;
329 _size += _callouts ? _callouts->flattenedSize() : 0;
330 _header.size = Section::flattenedSize() + _size;
331
332 _valid = true;
333}
334
335void SRC::setUserDefinedHexWords(const message::Entry& regEntry,
336 const AdditionalData& ad)
337{
338 if (!regEntry.src.hexwordADFields)
339 {
340 return;
341 }
342
Harisuddin Mohamed Isa1a1b0df2020-11-23 16:34:36 +0800343 // Save the AdditionalData value corresponding to the first element of
344 // adName tuple into _hexData[wordNum].
Matt Spinlerbd716f02019-10-15 10:54:11 -0500345 for (const auto& [wordNum, adName] : *regEntry.src.hexwordADFields)
346 {
347 // Can only set words 6 - 9
348 if (!isUserDefinedWord(wordNum))
349 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500350 std::string msg =
351 "SRC user data word out of range: " + std::to_string(wordNum);
352 addDebugData(msg);
Matt Spinlerbd716f02019-10-15 10:54:11 -0500353 continue;
354 }
355
Harisuddin Mohamed Isa1a1b0df2020-11-23 16:34:36 +0800356 auto value = ad.getValue(std::get<0>(adName));
Matt Spinlerbd716f02019-10-15 10:54:11 -0500357 if (value)
358 {
359 _hexData[getWordIndexFromWordNum(wordNum)] =
360 std::strtoul(value.value().c_str(), nullptr, 0);
361 }
362 else
363 {
Harisuddin Mohamed Isa1a1b0df2020-11-23 16:34:36 +0800364 std::string msg = "Source for user data SRC word not found: " +
365 std::get<0>(adName);
Matt Spinler85f61a62020-06-03 16:28:55 -0500366 addDebugData(msg);
Matt Spinlerbd716f02019-10-15 10:54:11 -0500367 }
368 }
369}
370
Matt Spinler075e5ba2020-02-21 15:46:00 -0600371void SRC::setMotherboardCCIN(const DataInterfaceBase& dataIface)
372{
373 uint32_t ccin = 0;
374 auto ccinString = dataIface.getMotherboardCCIN();
375
376 try
377 {
378 if (ccinString.size() == ccinSize)
379 {
380 ccin = std::stoi(ccinString, 0, 16);
381 }
382 }
383 catch (std::exception& e)
384 {
385 log<level::WARNING>("Could not convert motherboard CCIN to a number",
386 entry("CCIN=%s", ccinString.c_str()));
387 return;
388 }
389
390 // Set the first 2 bytes
391 _hexData[1] |= ccin << 16;
392}
393
Matt Spinlerf9bae182019-10-09 13:37:38 -0500394void SRC::validate()
395{
396 bool failed = false;
397
398 if ((header().id != static_cast<uint16_t>(SectionID::primarySRC)) &&
399 (header().id != static_cast<uint16_t>(SectionID::secondarySRC)))
400 {
401 log<level::ERR>("Invalid SRC section ID",
402 entry("ID=0x%X", header().id));
403 failed = true;
404 }
405
406 // Check the version in the SRC, not in the header
Matt Spinlerbd716f02019-10-15 10:54:11 -0500407 if (_version != srcVersion)
Matt Spinlerf9bae182019-10-09 13:37:38 -0500408 {
Matt Spinlerbd716f02019-10-15 10:54:11 -0500409 log<level::ERR>("Invalid SRC version", entry("VERSION=0x%X", _version));
Matt Spinlerf9bae182019-10-09 13:37:38 -0500410 failed = true;
411 }
412
413 _valid = failed ? false : true;
414}
415
Matt Spinler075e5ba2020-02-21 15:46:00 -0600416bool SRC::isBMCSRC() const
417{
418 auto as = asciiString();
419 if (as.length() >= 2)
420 {
421 uint8_t errorType = strtoul(as.substr(0, 2).c_str(), nullptr, 16);
422 return (errorType == static_cast<uint8_t>(SRCType::bmcError) ||
423 errorType == static_cast<uint8_t>(SRCType::powerError));
424 }
425 return false;
426}
427
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800428std::optional<std::string> SRC::getErrorDetails(message::Registry& registry,
429 DetailLevel type,
430 bool toCache) const
431{
432 const std::string jsonIndent(indentLevel, 0x20);
433 std::string errorOut;
Matt Spinler075e5ba2020-02-21 15:46:00 -0600434 if (isBMCSRC())
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800435 {
436 auto entry = registry.lookup("0x" + asciiString().substr(4, 4),
437 rg::LookupType::reasonCode, toCache);
438 if (entry)
439 {
440 errorOut.append(jsonIndent + "\"Error Details\": {\n");
441 auto errorMsg = getErrorMessage(*entry);
442 if (errorMsg)
443 {
444 if (type == DetailLevel::message)
445 {
446 return errorMsg.value();
447 }
448 else
449 {
450 jsonInsert(errorOut, "Message", errorMsg.value(), 2);
451 }
452 }
453 if (entry->src.hexwordADFields)
454 {
Harisuddin Mohamed Isa1a1b0df2020-11-23 16:34:36 +0800455 std::map<size_t, std::tuple<std::string, std::string>>
456 adFields = entry->src.hexwordADFields.value();
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800457 for (const auto& hexwordMap : adFields)
458 {
Harisuddin Mohamed Isa1a1b0df2020-11-23 16:34:36 +0800459 std::vector<std::string> valueDescr;
460 valueDescr.push_back(getNumberString(
461 "0x%X",
462 _hexData[getWordIndexFromWordNum(hexwordMap.first)]));
463 valueDescr.push_back(std::get<1>(hexwordMap.second));
464 jsonInsertArray(errorOut, std::get<0>(hexwordMap.second),
465 valueDescr, 2);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800466 }
467 }
468 errorOut.erase(errorOut.size() - 2);
469 errorOut.append("\n");
470 errorOut.append(jsonIndent + "},\n");
471 return errorOut;
472 }
473 }
474 return std::nullopt;
475}
476
477std::optional<std::string>
478 SRC::getErrorMessage(const message::Entry& regEntry) const
479{
480 try
481 {
482 if (regEntry.doc.messageArgSources)
483 {
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800484 std::vector<uint32_t> argSourceVals;
485 std::string message;
486 const auto& argValues = regEntry.doc.messageArgSources.value();
487 for (size_t i = 0; i < argValues.size(); ++i)
488 {
489 argSourceVals.push_back(_hexData[getWordIndexFromWordNum(
490 argValues[i].back() - '0')]);
491 }
Patrick Williams0230abb2021-04-19 14:32:50 -0500492
493 auto it = std::begin(regEntry.doc.message);
494 auto it_end = std::end(regEntry.doc.message);
495
496 while (it != it_end)
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800497 {
Patrick Williams0230abb2021-04-19 14:32:50 -0500498 if (*it == '%')
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800499 {
Patrick Williams0230abb2021-04-19 14:32:50 -0500500 ++it;
501
502 size_t wordIndex = *it - '0';
503 if (isdigit(*it) && wordIndex >= 1 &&
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800504 static_cast<uint16_t>(wordIndex) <=
505 argSourceVals.size())
506 {
507 message.append(getNumberString(
508 "0x%X", argSourceVals[wordIndex - 1]));
509 }
510 else
511 {
Patrick Williams0230abb2021-04-19 14:32:50 -0500512 message.append("%" + std::string(1, *it));
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800513 }
514 }
515 else
516 {
Patrick Williams0230abb2021-04-19 14:32:50 -0500517 message.push_back(*it);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800518 }
Patrick Williams0230abb2021-04-19 14:32:50 -0500519 ++it;
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800520 }
Patrick Williams0230abb2021-04-19 14:32:50 -0500521
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800522 return message;
523 }
524 else
525 {
526 return regEntry.doc.message;
527 }
528 }
529 catch (const std::exception& e)
530 {
531 log<level::ERR>("Cannot get error message from registry entry",
532 entry("ERROR=%s", e.what()));
533 }
534 return std::nullopt;
535}
536
537std::optional<std::string> SRC::getCallouts() const
538{
539 if (!_callouts)
540 {
541 return std::nullopt;
542 }
543 std::string printOut;
544 const std::string jsonIndent(indentLevel, 0x20);
545 const auto& callout = _callouts->callouts();
546 const auto& compDescrp = pv::failingComponentType;
547 printOut.append(jsonIndent + "\"Callout Section\": {\n");
548 jsonInsert(printOut, "Callout Count", std::to_string(callout.size()), 2);
549 printOut.append(jsonIndent + jsonIndent + "\"Callouts\": [");
550 for (auto& entry : callout)
551 {
552 printOut.append("{\n");
553 if (entry->fruIdentity())
554 {
555 jsonInsert(
556 printOut, "FRU Type",
557 compDescrp.at(entry->fruIdentity()->failingComponentType()), 3);
558 jsonInsert(printOut, "Priority",
559 pv::getValue(entry->priority(),
560 pel_values::calloutPriorityValues),
561 3);
562 if (!entry->locationCode().empty())
563 {
564 jsonInsert(printOut, "Location Code", entry->locationCode(), 3);
565 }
566 if (entry->fruIdentity()->getPN().has_value())
567 {
568 jsonInsert(printOut, "Part Number",
569 entry->fruIdentity()->getPN().value(), 3);
570 }
571 if (entry->fruIdentity()->getMaintProc().has_value())
572 {
Matt Spinler9e8b49e2020-09-10 13:15:26 -0500573 jsonInsert(printOut, "Procedure",
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800574 entry->fruIdentity()->getMaintProc().value(), 3);
575 if (pv::procedureDesc.find(
576 entry->fruIdentity()->getMaintProc().value()) !=
577 pv::procedureDesc.end())
578 {
579 jsonInsert(
580 printOut, "Description",
581 pv::procedureDesc.at(
582 entry->fruIdentity()->getMaintProc().value()),
583 3);
584 }
585 }
586 if (entry->fruIdentity()->getCCIN().has_value())
587 {
588 jsonInsert(printOut, "CCIN",
589 entry->fruIdentity()->getCCIN().value(), 3);
590 }
591 if (entry->fruIdentity()->getSN().has_value())
592 {
593 jsonInsert(printOut, "Serial Number",
594 entry->fruIdentity()->getSN().value(), 3);
595 }
596 }
597 if (entry->pceIdentity())
598 {
599 const auto& pceIdentMtms = entry->pceIdentity()->mtms();
600 if (!pceIdentMtms.machineTypeAndModel().empty())
601 {
602 jsonInsert(printOut, "PCE MTMS",
603 pceIdentMtms.machineTypeAndModel() + "_" +
604 pceIdentMtms.machineSerialNumber(),
605 3);
606 }
607 if (!entry->pceIdentity()->enclosureName().empty())
608 {
609 jsonInsert(printOut, "PCE Name",
610 entry->pceIdentity()->enclosureName(), 3);
611 }
612 }
613 if (entry->mru())
614 {
615 const auto& mruCallouts = entry->mru()->mrus();
616 std::string mruId;
617 for (auto& element : mruCallouts)
618 {
619 if (!mruId.empty())
620 {
621 mruId.append(", " + getNumberString("%08X", element.id));
622 }
623 else
624 {
625 mruId.append(getNumberString("%08X", element.id));
626 }
627 }
628 jsonInsert(printOut, "MRU Id", mruId, 3);
629 }
630 printOut.erase(printOut.size() - 2);
631 printOut.append("\n" + jsonIndent + jsonIndent + "}, ");
632 };
633 printOut.erase(printOut.size() - 2);
634 printOut.append("]\n" + jsonIndent + "}");
635 return printOut;
636}
637
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800638std::optional<std::string> SRC::getJSON(message::Registry& registry,
639 const std::vector<std::string>& plugins,
640 uint8_t creatorID) const
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800641{
642 std::string ps;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800643 std::vector<std::string> hexwords;
Harisuddin Mohamed Isabebeb942020-03-12 17:12:24 +0800644 jsonInsert(ps, pv::sectionVer, getNumberString("%d", _header.version), 1);
645 jsonInsert(ps, pv::subSection, getNumberString("%d", _header.subType), 1);
646 jsonInsert(ps, pv::createdBy, getNumberString("0x%X", _header.componentID),
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800647 1);
648 jsonInsert(ps, "SRC Version", getNumberString("0x%02X", _version), 1);
Harisuddin Mohamed Isac32e5512020-02-06 18:05:21 +0800649 jsonInsert(ps, "SRC Format", getNumberString("0x%02X", _hexData[0] & 0xFF),
650 1);
651 jsonInsert(ps, "Virtual Progress SRC",
652 pv::boolString.at(_flags & virtualProgressSRC), 1);
653 jsonInsert(ps, "I5/OS Service Event Bit",
654 pv::boolString.at(_flags & i5OSServiceEventBit), 1);
655 jsonInsert(ps, "Hypervisor Dump Initiated",
656 pv::boolString.at(_flags & hypDumpInit), 1);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800657 jsonInsert(ps, "Power Control Net Fault",
658 pv::boolString.at(isPowerFaultEvent()), 1);
Matt Spinler075e5ba2020-02-21 15:46:00 -0600659
660 if (isBMCSRC())
661 {
662 std::string ccinString;
663 uint32_t ccin = _hexData[1] >> 16;
664
665 if (ccin)
666 {
667 ccinString = getNumberString("%04X", ccin);
668 }
669 // The PEL spec calls it a backplane, so call it that here.
670 jsonInsert(ps, "Backplane CCIN", ccinString, 1);
Matt Spinlerafa2c792020-08-27 11:01:39 -0500671
672 jsonInsert(ps, "Deconfigured",
673 pv::boolString.at(
674 _hexData[3] &
675 static_cast<uint32_t>(ErrorStatusFlags::deconfigured)),
676 1);
677
678 jsonInsert(
679 ps, "Guarded",
680 pv::boolString.at(_hexData[3] &
681 static_cast<uint32_t>(ErrorStatusFlags::guarded)),
682 1);
Matt Spinler075e5ba2020-02-21 15:46:00 -0600683 }
684
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800685 auto errorDetails = getErrorDetails(registry, DetailLevel::json, true);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800686 if (errorDetails)
687 {
688 ps.append(errorDetails.value());
689 }
690 jsonInsert(ps, "Valid Word Count", getNumberString("0x%02X", _wordCount),
691 1);
692 std::string refcode = asciiString();
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800693 hexwords.push_back(refcode);
Harisuddin Mohamed Isafecaa572020-03-11 16:04:50 +0800694 std::string extRefcode;
695 size_t pos = refcode.find(0x20);
696 if (pos != std::string::npos)
697 {
698 size_t nextPos = refcode.find_first_not_of(0x20, pos);
699 if (nextPos != std::string::npos)
700 {
701 extRefcode = trimEnd(refcode.substr(nextPos));
702 }
703 refcode.erase(pos);
704 }
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800705 jsonInsert(ps, "Reference Code", refcode, 1);
Harisuddin Mohamed Isafecaa572020-03-11 16:04:50 +0800706 if (!extRefcode.empty())
707 {
708 jsonInsert(ps, "Extended Reference Code", extRefcode, 1);
709 }
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800710 for (size_t i = 2; i <= _wordCount; i++)
711 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800712 std::string tmpWord =
713 getNumberString("%08X", _hexData[getWordIndexFromWordNum(i)]);
714 jsonInsert(ps, "Hex Word " + std::to_string(i), tmpWord, 1);
715 hexwords.push_back(tmpWord);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800716 }
717 auto calloutJson = getCallouts();
718 if (calloutJson)
719 {
720 ps.append(calloutJson.value());
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800721 ps.append(",\n");
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800722 }
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800723 std::string subsystem = getNumberString("%c", tolower(creatorID));
724 bool srcDetailExists = false;
725#ifdef PELTOOL
726 if (std::find(plugins.begin(), plugins.end(), subsystem + "src") !=
727 plugins.end())
728 {
729 auto pyJson = getPythonJSON(hexwords, creatorID);
730 if (pyJson)
731 {
732 ps.append(pyJson.value());
733 srcDetailExists = true;
734 }
735 }
736#endif
737 if (!srcDetailExists)
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800738 {
739 ps.erase(ps.size() - 2);
740 }
741 return ps;
742}
743
Matt Spinler03984582020-04-09 13:17:58 -0500744void SRC::addCallouts(const message::Entry& regEntry,
745 const AdditionalData& additionalData,
Matt Spinler5a90a952020-08-27 09:39:03 -0500746 const nlohmann::json& jsonCallouts,
Matt Spinlered046852020-03-13 13:58:15 -0500747 const DataInterfaceBase& dataIface)
748{
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500749 auto registryCallouts =
750 getRegistryCallouts(regEntry, additionalData, dataIface);
751
Matt Spinlered046852020-03-13 13:58:15 -0500752 auto item = additionalData.getValue("CALLOUT_INVENTORY_PATH");
Miguel Gomez53ef1552020-10-14 21:16:32 +0000753 auto priority = additionalData.getValue("CALLOUT_PRIORITY");
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500754
Miguel Gomez53ef1552020-10-14 21:16:32 +0000755 std::optional<CalloutPriority> calloutPriority;
756
757 // Only H, M or L priority values.
758 if (priority && !(*priority).empty())
759 {
760 uint8_t p = (*priority)[0];
761 if (p == 'H' || p == 'M' || p == 'L')
762 {
763 calloutPriority = static_cast<CalloutPriority>(p);
764 }
765 }
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500766 // If the first registry callout says to use the passed in inventory
767 // path to get the location code for a symbolic FRU callout with a
768 // trusted location code, then do not add the inventory path as a
769 // normal FRU callout.
770 bool useInvForSymbolicFRULocCode =
771 !registryCallouts.empty() && registryCallouts[0].useInventoryLocCode &&
772 !registryCallouts[0].symbolicFRUTrusted.empty();
773
774 if (item && !useInvForSymbolicFRULocCode)
Matt Spinlered046852020-03-13 13:58:15 -0500775 {
Miguel Gomez53ef1552020-10-14 21:16:32 +0000776 addInventoryCallout(*item, calloutPriority, std::nullopt, dataIface);
Matt Spinlered046852020-03-13 13:58:15 -0500777 }
778
Matt Spinler717de422020-06-04 13:10:14 -0500779 addDevicePathCallouts(additionalData, dataIface);
Matt Spinler03984582020-04-09 13:17:58 -0500780
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500781 addRegistryCallouts(registryCallouts, dataIface,
782 (useInvForSymbolicFRULocCode) ? item : std::nullopt);
Matt Spinler5a90a952020-08-27 09:39:03 -0500783
784 if (!jsonCallouts.empty())
785 {
786 addJSONCallouts(jsonCallouts, dataIface);
787 }
Matt Spinlered046852020-03-13 13:58:15 -0500788}
789
790void SRC::addInventoryCallout(const std::string& inventoryPath,
Matt Spinleraf191c72020-06-04 11:35:13 -0500791 const std::optional<CalloutPriority>& priority,
792 const std::optional<std::string>& locationCode,
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500793 const DataInterfaceBase& dataIface,
794 const std::vector<src::MRU::MRUCallout>& mrus)
Matt Spinlered046852020-03-13 13:58:15 -0500795{
796 std::string locCode;
797 std::string fn;
798 std::string ccin;
799 std::string sn;
800 std::unique_ptr<src::Callout> callout;
801
Matt Spinlered046852020-03-13 13:58:15 -0500802 try
803 {
Matt Spinleraf191c72020-06-04 11:35:13 -0500804 // Use the passed in location code if there otherwise look it up
805 if (locationCode)
806 {
807 locCode = *locationCode;
808 }
809 else
810 {
811 locCode = dataIface.getLocationCode(inventoryPath);
812 }
Matt Spinlered046852020-03-13 13:58:15 -0500813
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500814 try
815 {
816 dataIface.getHWCalloutFields(inventoryPath, fn, ccin, sn);
817
Matt Spinleraf191c72020-06-04 11:35:13 -0500818 CalloutPriority p =
819 priority ? priority.value() : CalloutPriority::high;
820
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500821 callout =
822 std::make_unique<src::Callout>(p, locCode, fn, ccin, sn, mrus);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500823 }
824 catch (const SdBusError& e)
825 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500826 std::string msg =
827 "No VPD found for " + inventoryPath + ": " + e.what();
828 addDebugData(msg);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500829
830 // Just create the callout with empty FRU fields
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500831 callout = std::make_unique<src::Callout>(
832 CalloutPriority::high, locCode, fn, ccin, sn, mrus);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500833 }
Matt Spinlered046852020-03-13 13:58:15 -0500834 }
835 catch (const SdBusError& e)
836 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500837 std::string msg = "Could not get location code for " + inventoryPath +
838 ": " + e.what();
839 addDebugData(msg);
Matt Spinlered046852020-03-13 13:58:15 -0500840
Matt Spinlered046852020-03-13 13:58:15 -0500841 callout = std::make_unique<src::Callout>(CalloutPriority::high,
Matt Spinlera27e2e52020-04-09 11:06:11 -0500842 "no_vpd_for_fru");
Matt Spinlered046852020-03-13 13:58:15 -0500843 }
844
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500845 createCalloutsObject();
Matt Spinlered046852020-03-13 13:58:15 -0500846 _callouts->addCallout(std::move(callout));
Matt Spinler03984582020-04-09 13:17:58 -0500847}
Matt Spinlered046852020-03-13 13:58:15 -0500848
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500849std::vector<message::RegistryCallout>
850 SRC::getRegistryCallouts(const message::Entry& regEntry,
851 const AdditionalData& additionalData,
852 const DataInterfaceBase& dataIface)
853{
854 std::vector<message::RegistryCallout> registryCallouts;
855
856 if (regEntry.callouts)
857 {
Matt Spinler9a50c8d2021-04-12 14:22:26 -0500858 std::vector<std::string> systemNames;
859
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500860 try
861 {
Matt Spinler9a50c8d2021-04-12 14:22:26 -0500862 systemNames = dataIface.getSystemNames();
863 }
864 catch (const std::exception& e)
865 {
866 // Compatible interface not available yet
867 }
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500868
Matt Spinler9a50c8d2021-04-12 14:22:26 -0500869 try
870 {
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500871 registryCallouts = message::Registry::getCallouts(
872 regEntry.callouts.value(), systemNames, additionalData);
873 }
874 catch (const std::exception& e)
875 {
876 addDebugData(fmt::format(
877 "Error parsing PEL message registry callout JSON: {}",
878 e.what()));
879 }
880 }
881
882 return registryCallouts;
883}
884
885void SRC::addRegistryCallouts(
886 const std::vector<message::RegistryCallout>& callouts,
887 const DataInterfaceBase& dataIface,
888 std::optional<std::string> trustedSymbolicFRUInvPath)
Matt Spinler03984582020-04-09 13:17:58 -0500889{
890 try
891 {
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500892 for (const auto& callout : callouts)
Matt Spinler03984582020-04-09 13:17:58 -0500893 {
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500894 addRegistryCallout(callout, dataIface, trustedSymbolicFRUInvPath);
895
896 // Only the first callout gets the inventory path
897 if (trustedSymbolicFRUInvPath)
898 {
899 trustedSymbolicFRUInvPath = std::nullopt;
900 }
Matt Spinler03984582020-04-09 13:17:58 -0500901 }
902 }
903 catch (std::exception& e)
904 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500905 std::string msg =
906 "Error parsing PEL message registry callout JSON: "s + e.what();
907 addDebugData(msg);
Matt Spinler03984582020-04-09 13:17:58 -0500908 }
909}
910
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500911void SRC::addRegistryCallout(
912 const message::RegistryCallout& regCallout,
913 const DataInterfaceBase& dataIface,
914 const std::optional<std::string>& trustedSymbolicFRUInvPath)
Matt Spinler03984582020-04-09 13:17:58 -0500915{
916 std::unique_ptr<src::Callout> callout;
Matt Spinler03984582020-04-09 13:17:58 -0500917 auto locCode = regCallout.locCode;
918
Matt Spinleraf191c72020-06-04 11:35:13 -0500919 if (!locCode.empty())
920 {
921 try
922 {
923 locCode = dataIface.expandLocationCode(locCode, 0);
924 }
925 catch (const std::exception& e)
926 {
927 auto msg =
928 "Unable to expand location code " + locCode + ": " + e.what();
929 addDebugData(msg);
930 return;
931 }
932 }
933
Matt Spinler03984582020-04-09 13:17:58 -0500934 // Via the PEL values table, get the priority enum.
935 // The schema will have validated the priority was a valid value.
936 auto priorityIt =
937 pv::findByName(regCallout.priority, pv::calloutPriorityValues);
938 assert(priorityIt != pv::calloutPriorityValues.end());
939 auto priority =
940 static_cast<CalloutPriority>(std::get<pv::fieldValuePos>(*priorityIt));
941
942 if (!regCallout.procedure.empty())
943 {
944 // Procedure callout
945 callout =
946 std::make_unique<src::Callout>(priority, regCallout.procedure);
947 }
948 else if (!regCallout.symbolicFRU.empty())
949 {
950 // Symbolic FRU callout
951 callout = std::make_unique<src::Callout>(
952 priority, regCallout.symbolicFRU, locCode, false);
953 }
954 else if (!regCallout.symbolicFRUTrusted.empty())
955 {
956 // Symbolic FRU with trusted location code callout
957
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500958 // Use the location code from the inventory path if there is one.
959 if (trustedSymbolicFRUInvPath)
960 {
961 try
962 {
963 locCode = dataIface.getLocationCode(*trustedSymbolicFRUInvPath);
964 }
965 catch (const std::exception& e)
966 {
967 addDebugData(
968 fmt::format("Could not get location code for {}: {}",
969 *trustedSymbolicFRUInvPath, e.what()));
970 locCode.clear();
971 }
972 }
973
Matt Spinler03984582020-04-09 13:17:58 -0500974 // The registry wants it to be trusted, but that requires a valid
975 // location code for it to actually be.
976 callout = std::make_unique<src::Callout>(
977 priority, regCallout.symbolicFRUTrusted, locCode, !locCode.empty());
978 }
979 else
980 {
Matt Spinleraf191c72020-06-04 11:35:13 -0500981 // A hardware callout
982 std::string inventoryPath;
983
984 try
985 {
986 // Get the inventory item from the unexpanded location code
987 inventoryPath =
Matt Spinler2f9225a2020-08-05 12:58:49 -0500988 dataIface.getInventoryFromLocCode(regCallout.locCode, 0, false);
Matt Spinleraf191c72020-06-04 11:35:13 -0500989 }
990 catch (const std::exception& e)
991 {
992 std::string msg =
993 "Unable to get inventory path from location code: " + locCode +
994 ": " + e.what();
995 addDebugData(msg);
996 return;
997 }
998
999 addInventoryCallout(inventoryPath, priority, locCode, dataIface);
Matt Spinler03984582020-04-09 13:17:58 -05001000 }
1001
1002 if (callout)
1003 {
1004 createCalloutsObject();
1005 _callouts->addCallout(std::move(callout));
1006 }
1007}
Matt Spinlered046852020-03-13 13:58:15 -05001008
Matt Spinler717de422020-06-04 13:10:14 -05001009void SRC::addDevicePathCallouts(const AdditionalData& additionalData,
1010 const DataInterfaceBase& dataIface)
1011{
1012 std::vector<device_callouts::Callout> callouts;
1013 auto i2cBus = additionalData.getValue("CALLOUT_IIC_BUS");
1014 auto i2cAddr = additionalData.getValue("CALLOUT_IIC_ADDR");
1015 auto devPath = additionalData.getValue("CALLOUT_DEVICE_PATH");
1016
1017 // A device callout contains either:
1018 // * CALLOUT_ERRNO, CALLOUT_DEVICE_PATH
1019 // * CALLOUT_ERRNO, CALLOUT_IIC_BUS, CALLOUT_IIC_ADDR
1020 // We don't care about the errno.
1021
1022 if (devPath)
1023 {
1024 try
1025 {
1026 callouts = device_callouts::getCallouts(*devPath,
1027 dataIface.getSystemNames());
1028 }
1029 catch (const std::exception& e)
1030 {
1031 addDebugData(e.what());
1032 callouts.clear();
1033 }
1034 }
1035 else if (i2cBus && i2cAddr)
1036 {
1037 size_t bus;
1038 uint8_t address;
1039
1040 try
1041 {
1042 // If /dev/i2c- is prepended, remove it
1043 if (i2cBus->find("/dev/i2c-") != std::string::npos)
1044 {
1045 *i2cBus = i2cBus->substr(9);
1046 }
1047
1048 bus = stoul(*i2cBus, nullptr, 0);
1049 address = stoul(*i2cAddr, nullptr, 0);
1050 }
1051 catch (const std::exception& e)
1052 {
1053 std::string msg = "Invalid CALLOUT_IIC_BUS " + *i2cBus +
1054 " or CALLOUT_IIC_ADDR " + *i2cAddr +
1055 " in AdditionalData property";
1056 addDebugData(msg);
1057 return;
1058 }
1059
1060 try
1061 {
1062 callouts = device_callouts::getI2CCallouts(
1063 bus, address, dataIface.getSystemNames());
1064 }
1065 catch (const std::exception& e)
1066 {
1067 addDebugData(e.what());
1068 callouts.clear();
1069 }
1070 }
1071
1072 for (const auto& callout : callouts)
1073 {
1074 // The priority shouldn't be invalid, but check just in case.
1075 CalloutPriority priority = CalloutPriority::high;
1076
1077 if (!callout.priority.empty())
1078 {
1079 auto p = pel_values::findByValue(
1080 static_cast<uint32_t>(callout.priority[0]),
1081 pel_values::calloutPriorityValues);
1082
1083 if (p != pel_values::calloutPriorityValues.end())
1084 {
1085 priority = static_cast<CalloutPriority>(callout.priority[0]);
1086 }
1087 else
1088 {
1089 std::string msg =
1090 "Invalid priority found in dev callout JSON: " +
1091 callout.priority[0];
1092 addDebugData(msg);
1093 }
1094 }
1095
1096 try
1097 {
Matt Spinler2f9225a2020-08-05 12:58:49 -05001098 auto inventoryPath = dataIface.getInventoryFromLocCode(
1099 callout.locationCode, 0, false);
Matt Spinler717de422020-06-04 13:10:14 -05001100
1101 addInventoryCallout(inventoryPath, priority, std::nullopt,
1102 dataIface);
1103 }
1104 catch (const std::exception& e)
1105 {
1106 std::string msg =
1107 "Unable to get inventory path from location code: " +
1108 callout.locationCode + ": " + e.what();
1109 addDebugData(msg);
1110 }
1111
1112 // Until the code is there to convert these MRU value strings to
1113 // the official MRU values in the callout objects, just store
1114 // the MRU name in the debug UserData section.
1115 if (!callout.mru.empty())
1116 {
1117 std::string msg = "MRU: " + callout.mru;
1118 addDebugData(msg);
1119 }
1120
1121 // getCallouts() may have generated some debug data it stored
1122 // in a callout object. Save it as well.
1123 if (!callout.debug.empty())
1124 {
1125 addDebugData(callout.debug);
1126 }
1127 }
1128}
1129
Matt Spinler5a90a952020-08-27 09:39:03 -05001130void SRC::addJSONCallouts(const nlohmann::json& jsonCallouts,
1131 const DataInterfaceBase& dataIface)
1132{
1133 if (jsonCallouts.empty())
1134 {
1135 return;
1136 }
1137
1138 if (!jsonCallouts.is_array())
1139 {
1140 addDebugData("Callout JSON isn't an array");
1141 return;
1142 }
1143
1144 for (const auto& callout : jsonCallouts)
1145 {
1146 try
1147 {
1148 addJSONCallout(callout, dataIface);
1149 }
1150 catch (const std::exception& e)
1151 {
1152 addDebugData(fmt::format(
1153 "Failed extracting callout data from JSON: {}", e.what()));
1154 }
1155 }
1156}
1157
1158void SRC::addJSONCallout(const nlohmann::json& jsonCallout,
1159 const DataInterfaceBase& dataIface)
1160{
Matt Spinler3bdd0112020-08-27 10:24:34 -05001161 auto priority = getPriorityFromJSON(jsonCallout);
1162 std::string locCode;
1163 std::string unexpandedLocCode;
1164 std::unique_ptr<src::Callout> callout;
1165
1166 // Expand the location code if it's there
1167 if (jsonCallout.contains("LocationCode"))
1168 {
1169 unexpandedLocCode = jsonCallout.at("LocationCode").get<std::string>();
1170
1171 try
1172 {
1173 locCode = dataIface.expandLocationCode(unexpandedLocCode, 0);
1174 }
1175 catch (const std::exception& e)
1176 {
1177 addDebugData(fmt::format("Unable to expand location code {}: {}",
1178 unexpandedLocCode, e.what()));
1179 // Use the value from the JSON so at least there's something
1180 locCode = unexpandedLocCode;
1181 }
1182 }
1183
1184 // Create either a procedure, symbolic FRU, or normal FRU callout.
1185 if (jsonCallout.contains("Procedure"))
1186 {
1187 auto procedure = jsonCallout.at("Procedure").get<std::string>();
1188
1189 callout = std::make_unique<src::Callout>(
1190 static_cast<CalloutPriority>(priority), procedure,
1191 src::CalloutValueType::raw);
1192 }
1193 else if (jsonCallout.contains("SymbolicFRU"))
1194 {
1195 auto fru = jsonCallout.at("SymbolicFRU").get<std::string>();
1196
1197 bool trusted = false;
1198 if (jsonCallout.contains("TrustedLocationCode") && !locCode.empty())
1199 {
1200 trusted = jsonCallout.at("TrustedLocationCode").get<bool>();
1201 }
1202
1203 callout = std::make_unique<src::Callout>(
1204 static_cast<CalloutPriority>(priority), fru,
1205 src::CalloutValueType::raw, locCode, trusted);
1206 }
1207 else
1208 {
1209 // A hardware FRU
1210 std::string inventoryPath;
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001211 std::vector<src::MRU::MRUCallout> mrus;
Matt Spinler3bdd0112020-08-27 10:24:34 -05001212
1213 if (jsonCallout.contains("InventoryPath"))
1214 {
1215 inventoryPath = jsonCallout.at("InventoryPath").get<std::string>();
1216 }
1217 else
1218 {
1219 if (unexpandedLocCode.empty())
1220 {
1221 throw std::runtime_error{"JSON callout needs either an "
1222 "inventory path or location code"};
1223 }
1224
1225 try
1226 {
1227 inventoryPath = dataIface.getInventoryFromLocCode(
1228 unexpandedLocCode, 0, false);
1229 }
1230 catch (const std::exception& e)
1231 {
1232 throw std::runtime_error{
1233 fmt::format("Unable to get inventory path from "
1234 "location code: {}: {}",
1235 unexpandedLocCode, e.what())};
1236 }
1237 }
1238
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001239 if (jsonCallout.contains("MRUs"))
1240 {
1241 mrus = getMRUsFromJSON(jsonCallout.at("MRUs"));
1242 }
1243
Matt Spinler3bdd0112020-08-27 10:24:34 -05001244 // If the location code was also passed in, use that here too
1245 // so addInventoryCallout doesn't have to look it up.
1246 std::optional<std::string> lc;
1247 if (!locCode.empty())
1248 {
1249 lc = locCode;
1250 }
1251
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001252 addInventoryCallout(inventoryPath, priority, lc, dataIface, mrus);
Matt Spinlerafa2c792020-08-27 11:01:39 -05001253
1254 if (jsonCallout.contains("Deconfigured"))
1255 {
1256 if (jsonCallout.at("Deconfigured").get<bool>())
1257 {
1258 setErrorStatusFlag(ErrorStatusFlags::deconfigured);
1259 }
1260 }
1261
1262 if (jsonCallout.contains("Guarded"))
1263 {
1264 if (jsonCallout.at("Guarded").get<bool>())
1265 {
1266 setErrorStatusFlag(ErrorStatusFlags::guarded);
1267 }
1268 }
Matt Spinler3bdd0112020-08-27 10:24:34 -05001269 }
1270
1271 if (callout)
1272 {
1273 createCalloutsObject();
1274 _callouts->addCallout(std::move(callout));
1275 }
1276}
1277
1278CalloutPriority SRC::getPriorityFromJSON(const nlohmann::json& json)
1279{
1280 // Looks like:
1281 // {
1282 // "Priority": "H"
1283 // }
1284 auto p = json.at("Priority").get<std::string>();
1285 if (p.empty())
1286 {
1287 throw std::runtime_error{"Priority field in callout is empty"};
1288 }
1289
1290 auto priority = static_cast<CalloutPriority>(p.front());
1291
1292 // Validate it
1293 auto priorityIt = pv::findByValue(static_cast<uint32_t>(priority),
1294 pv::calloutPriorityValues);
1295 if (priorityIt == pv::calloutPriorityValues.end())
1296 {
1297 throw std::runtime_error{
1298 fmt::format("Invalid priority '{}' found in JSON callout", p)};
1299 }
1300
1301 return priority;
Matt Spinler5a90a952020-08-27 09:39:03 -05001302}
1303
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001304std::vector<src::MRU::MRUCallout>
1305 SRC::getMRUsFromJSON(const nlohmann::json& mruJSON)
1306{
1307 std::vector<src::MRU::MRUCallout> mrus;
1308
1309 // Looks like:
1310 // [
1311 // {
1312 // "ID": 100,
1313 // "Priority": "H"
1314 // }
1315 // ]
1316 if (!mruJSON.is_array())
1317 {
1318 addDebugData("MRU callout JSON is not an array");
1319 return mrus;
1320 }
1321
1322 for (const auto& mruCallout : mruJSON)
1323 {
1324 try
1325 {
1326 auto priority = getPriorityFromJSON(mruCallout);
1327 auto id = mruCallout.at("ID").get<uint32_t>();
1328
1329 src::MRU::MRUCallout mru{static_cast<uint32_t>(priority), id};
1330 mrus.push_back(std::move(mru));
1331 }
1332 catch (const std::exception& e)
1333 {
1334 addDebugData(fmt::format("Invalid MRU entry in JSON: {}: {}",
1335 mruCallout.dump(), e.what()));
1336 }
1337 }
1338
1339 return mrus;
1340}
1341
Matt Spinlerf9bae182019-10-09 13:37:38 -05001342} // namespace pels
1343} // namespace openpower