blob: 3fd62e8a5c79457b9639e5d2fa48269086e312e6 [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 <fifo_map.hpp>
26#include <nlohmann/json.hpp>
27#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
45// Use fifo_map as nlohmann::json's map. We are just ignoring the 'less'
46// compare. With this map the keys are kept in FIFO order.
47template <class K, class V, class dummy_compare, class A>
48using fifoMap = nlohmann::fifo_map<K, V, nlohmann::fifo_map_compare<K>, A>;
49using fifoJSON = nlohmann::basic_json<fifoMap>;
50
51void pyDecRef(PyObject* pyObj)
52{
53 Py_XDECREF(pyObj);
54}
55
56/**
57 * @brief Returns a JSON string to append to SRC section.
58 *
59 * The returning string will contain a JSON object, but without
60 * the outer {}. If the input JSON isn't a JSON object (dict), then
61 * one will be created with the input added to a 'SRC Details' key.
62 *
63 * @param[in] json - The JSON to convert to a string
64 *
65 * @return std::string - The JSON string
66 */
67std::string prettyJSON(const fifoJSON& json)
68{
69 fifoJSON output;
70 if (!json.is_object())
71 {
72 output["SRC Details"] = json;
73 }
74 else
75 {
76 for (const auto& [key, value] : json.items())
77 {
78 output[key] = value;
79 }
80 }
81
82 // Let nlohmann do the pretty printing.
83 std::stringstream stream;
84 stream << std::setw(4) << output;
85
86 auto jsonString = stream.str();
87
88 // Now it looks like:
89 // {
90 // "Key": "Value",
91 // ...
92 // }
93
94 // Replace the { and the following newline, and the } and its
95 // preceeding newline.
96 jsonString.erase(0, 2);
97
98 auto pos = jsonString.find_last_of('}');
99 jsonString.erase(pos - 1);
100
101 return jsonString;
102}
103
104/**
105 * @brief Call Python modules to parse the data into a JSON string
106 *
107 * The module to call is based on the Creator Subsystem ID under the namespace
108 * "srcparsers". For example: "srcparsers.xsrc.xsrc" where "x" is the Creator
109 * Subsystem ID in ASCII lowercase.
110 *
111 * All modules must provide the following:
112 * Function: parseSRCToJson
113 * Argument list:
114 * 1. (str) ASCII string (Hex Word 1)
115 * 2. (str) Hex Word 2
116 * 3. (str) Hex Word 3
117 * 4. (str) Hex Word 4
118 * 5. (str) Hex Word 5
119 * 6. (str) Hex Word 6
120 * 7. (str) Hex Word 7
121 * 8. (str) Hex Word 8
122 * 9. (str) Hex Word 9
123 *-Return data:
124 * 1. (str) JSON string
125 *
126 * @param[in] hexwords - Vector of strings of Hexwords 1-9
127 * @param[in] creatorID - The creatorID from the Private Header section
128 * @return std::optional<std::string> - The JSON string if it could be created,
129 * else std::nullopt
130 */
131std::optional<std::string> getPythonJSON(std::vector<std::string>& hexwords,
132 uint8_t creatorID)
133{
134 PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pResult, *pBytes,
135 *eType, *eValue, *eTraceback;
136 std::string pErrStr;
137 std::string module = getNumberString("%c", tolower(creatorID)) + "src";
138 pName = PyUnicode_FromString(
139 std::string("srcparsers." + module + "." + module).c_str());
140 std::unique_ptr<PyObject, decltype(&pyDecRef)> modNamePtr(pName, &pyDecRef);
141 pModule = PyImport_Import(pName);
142 std::unique_ptr<PyObject, decltype(&pyDecRef)> modPtr(pModule, &pyDecRef);
143 if (pModule == NULL)
144 {
145 pErrStr = "No error string found";
146 PyErr_Fetch(&eType, &eValue, &eTraceback);
147 if (eValue)
148 {
149 PyObject* pStr = PyObject_Str(eValue);
150 if (pStr)
151 {
152 pErrStr = PyUnicode_AsUTF8(pStr);
153 }
154 Py_XDECREF(pStr);
155 }
156 }
157 else
158 {
159 pDict = PyModule_GetDict(pModule);
160 pFunc = PyDict_GetItemString(pDict, "parseSRCToJson");
161 if (PyCallable_Check(pFunc))
162 {
163 pArgs = PyTuple_New(9);
164 std::unique_ptr<PyObject, decltype(&pyDecRef)> argPtr(pArgs,
165 &pyDecRef);
166 for (size_t i = 0; i < 9; i++)
167 {
168 if (i < hexwords.size())
169 {
170 auto arg = hexwords[i];
171 PyTuple_SetItem(pArgs, i,
172 Py_BuildValue("s#", arg.c_str(), 8));
173 }
174 else
175 {
176 PyTuple_SetItem(pArgs, i, Py_BuildValue("s", "00000000"));
177 }
178 }
179 pResult = PyObject_CallObject(pFunc, pArgs);
180 std::unique_ptr<PyObject, decltype(&pyDecRef)> resPtr(pResult,
181 &pyDecRef);
182 if (pResult)
183 {
184 pBytes = PyUnicode_AsEncodedString(pResult, "utf-8", "~E~");
185 std::unique_ptr<PyObject, decltype(&pyDecRef)> pyBytePtr(
186 pBytes, &pyDecRef);
187 const char* output = PyBytes_AS_STRING(pBytes);
188 try
189 {
190 fifoJSON json = nlohmann::json::parse(output);
191 return prettyJSON(json);
192 }
193 catch (std::exception& e)
194 {
195 log<level::ERR>("Bad JSON from parser",
196 entry("ERROR=%s", e.what()),
197 entry("SRC=%s", hexwords.front().c_str()),
198 entry("PARSER_MODULE=%s", module.c_str()));
199 return std::nullopt;
200 }
201 }
202 else
203 {
204 pErrStr = "No error string found";
205 PyErr_Fetch(&eType, &eValue, &eTraceback);
206 if (eValue)
207 {
208 PyObject* pStr = PyObject_Str(eValue);
209 if (pStr)
210 {
211 pErrStr = PyUnicode_AsUTF8(pStr);
212 }
213 Py_XDECREF(pStr);
214 }
215 }
216 }
217 }
218 if (!pErrStr.empty())
219 {
220 log<level::ERR>("Python exception thrown by parser",
221 entry("ERROR=%s", pErrStr.c_str()),
222 entry("SRC=%s", hexwords.front().c_str()),
223 entry("PARSER_MODULE=%s", module.c_str()));
224 }
225 Py_XDECREF(eType);
226 Py_XDECREF(eValue);
227 Py_XDECREF(eTraceback);
228 return std::nullopt;
229}
230#endif
231
Matt Spinlerf9bae182019-10-09 13:37:38 -0500232void SRC::unflatten(Stream& stream)
233{
234 stream >> _header >> _version >> _flags >> _reserved1B >> _wordCount >>
235 _reserved2B >> _size;
236
237 for (auto& word : _hexData)
238 {
239 stream >> word;
240 }
241
242 _asciiString = std::make_unique<src::AsciiString>(stream);
243
244 if (hasAdditionalSections())
245 {
246 // The callouts section is currently the only extra subsection type
247 _callouts = std::make_unique<src::Callouts>(stream);
248 }
249}
250
Matt Spinler06885452019-11-06 10:35:42 -0600251void SRC::flatten(Stream& stream) const
Matt Spinlerf9bae182019-10-09 13:37:38 -0500252{
253 stream << _header << _version << _flags << _reserved1B << _wordCount
254 << _reserved2B << _size;
255
256 for (auto& word : _hexData)
257 {
258 stream << word;
259 }
260
261 _asciiString->flatten(stream);
262
263 if (_callouts)
264 {
265 _callouts->flatten(stream);
266 }
267}
268
269SRC::SRC(Stream& pel)
270{
271 try
272 {
273 unflatten(pel);
274 validate();
275 }
276 catch (const std::exception& e)
277 {
278 log<level::ERR>("Cannot unflatten SRC", entry("ERROR=%s", e.what()));
279 _valid = false;
280 }
281}
282
Matt Spinler075e5ba2020-02-21 15:46:00 -0600283SRC::SRC(const message::Entry& regEntry, const AdditionalData& additionalData,
Matt Spinler5a90a952020-08-27 09:39:03 -0500284 const nlohmann::json& jsonCallouts, const DataInterfaceBase& dataIface)
Matt Spinlerbd716f02019-10-15 10:54:11 -0500285{
286 _header.id = static_cast<uint16_t>(SectionID::primarySRC);
287 _header.version = srcSectionVersion;
288 _header.subType = srcSectionSubtype;
289 _header.componentID = regEntry.componentID;
290
291 _version = srcVersion;
292
293 _flags = 0;
294 if (regEntry.src.powerFault.value_or(false))
295 {
296 _flags |= powerFaultEvent;
297 }
298
299 _reserved1B = 0;
300
301 _wordCount = numSRCHexDataWords + 1;
302
303 _reserved2B = 0;
304
305 // There are multiple fields encoded in the hex data words.
306 std::for_each(_hexData.begin(), _hexData.end(),
307 [](auto& word) { word = 0; });
Matt Spinler7c619182020-07-27 15:15:11 -0500308
309 // Hex Word 2 Nibbles:
310 // MIGVEPFF
311 // M: Partition dump status = 0
312 // I: System boot state = TODO
313 // G: Partition Boot type = 0
314 // V: BMC dump status = TODO
315 // E: Platform boot mode = 0 (side = temporary, speed = fast)
316 // P: Platform dump status = TODO
317 // FF: SRC format, set below
318
Matt Spinlerbd716f02019-10-15 10:54:11 -0500319 setBMCFormat();
320 setBMCPosition();
Matt Spinler075e5ba2020-02-21 15:46:00 -0600321 setMotherboardCCIN(dataIface);
322
Matt Spinlerbd716f02019-10-15 10:54:11 -0500323 // Fill in the last 4 words from the AdditionalData property contents.
324 setUserDefinedHexWords(regEntry, additionalData);
325
326 _asciiString = std::make_unique<src::AsciiString>(regEntry);
327
Matt Spinler5a90a952020-08-27 09:39:03 -0500328 addCallouts(regEntry, additionalData, jsonCallouts, dataIface);
Matt Spinlerbd716f02019-10-15 10:54:11 -0500329
330 _size = baseSRCSize;
331 _size += _callouts ? _callouts->flattenedSize() : 0;
332 _header.size = Section::flattenedSize() + _size;
333
334 _valid = true;
335}
336
337void SRC::setUserDefinedHexWords(const message::Entry& regEntry,
338 const AdditionalData& ad)
339{
340 if (!regEntry.src.hexwordADFields)
341 {
342 return;
343 }
344
345 // Save the AdditionalData value corresponding to the
346 // adName key in _hexData[wordNum].
347 for (const auto& [wordNum, adName] : *regEntry.src.hexwordADFields)
348 {
349 // Can only set words 6 - 9
350 if (!isUserDefinedWord(wordNum))
351 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500352 std::string msg =
353 "SRC user data word out of range: " + std::to_string(wordNum);
354 addDebugData(msg);
Matt Spinlerbd716f02019-10-15 10:54:11 -0500355 continue;
356 }
357
358 auto value = ad.getValue(adName);
359 if (value)
360 {
361 _hexData[getWordIndexFromWordNum(wordNum)] =
362 std::strtoul(value.value().c_str(), nullptr, 0);
363 }
364 else
365 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500366 std::string msg =
367 "Source for user data SRC word not found: " + adName;
368 addDebugData(msg);
Matt Spinlerbd716f02019-10-15 10:54:11 -0500369 }
370 }
371}
372
Matt Spinler075e5ba2020-02-21 15:46:00 -0600373void SRC::setMotherboardCCIN(const DataInterfaceBase& dataIface)
374{
375 uint32_t ccin = 0;
376 auto ccinString = dataIface.getMotherboardCCIN();
377
378 try
379 {
380 if (ccinString.size() == ccinSize)
381 {
382 ccin = std::stoi(ccinString, 0, 16);
383 }
384 }
385 catch (std::exception& e)
386 {
387 log<level::WARNING>("Could not convert motherboard CCIN to a number",
388 entry("CCIN=%s", ccinString.c_str()));
389 return;
390 }
391
392 // Set the first 2 bytes
393 _hexData[1] |= ccin << 16;
394}
395
Matt Spinlerf9bae182019-10-09 13:37:38 -0500396void SRC::validate()
397{
398 bool failed = false;
399
400 if ((header().id != static_cast<uint16_t>(SectionID::primarySRC)) &&
401 (header().id != static_cast<uint16_t>(SectionID::secondarySRC)))
402 {
403 log<level::ERR>("Invalid SRC section ID",
404 entry("ID=0x%X", header().id));
405 failed = true;
406 }
407
408 // Check the version in the SRC, not in the header
Matt Spinlerbd716f02019-10-15 10:54:11 -0500409 if (_version != srcVersion)
Matt Spinlerf9bae182019-10-09 13:37:38 -0500410 {
Matt Spinlerbd716f02019-10-15 10:54:11 -0500411 log<level::ERR>("Invalid SRC version", entry("VERSION=0x%X", _version));
Matt Spinlerf9bae182019-10-09 13:37:38 -0500412 failed = true;
413 }
414
415 _valid = failed ? false : true;
416}
417
Matt Spinler075e5ba2020-02-21 15:46:00 -0600418bool SRC::isBMCSRC() const
419{
420 auto as = asciiString();
421 if (as.length() >= 2)
422 {
423 uint8_t errorType = strtoul(as.substr(0, 2).c_str(), nullptr, 16);
424 return (errorType == static_cast<uint8_t>(SRCType::bmcError) ||
425 errorType == static_cast<uint8_t>(SRCType::powerError));
426 }
427 return false;
428}
429
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800430std::optional<std::string> SRC::getErrorDetails(message::Registry& registry,
431 DetailLevel type,
432 bool toCache) const
433{
434 const std::string jsonIndent(indentLevel, 0x20);
435 std::string errorOut;
Matt Spinler075e5ba2020-02-21 15:46:00 -0600436 if (isBMCSRC())
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800437 {
438 auto entry = registry.lookup("0x" + asciiString().substr(4, 4),
439 rg::LookupType::reasonCode, toCache);
440 if (entry)
441 {
442 errorOut.append(jsonIndent + "\"Error Details\": {\n");
443 auto errorMsg = getErrorMessage(*entry);
444 if (errorMsg)
445 {
446 if (type == DetailLevel::message)
447 {
448 return errorMsg.value();
449 }
450 else
451 {
452 jsonInsert(errorOut, "Message", errorMsg.value(), 2);
453 }
454 }
455 if (entry->src.hexwordADFields)
456 {
457 std::map<size_t, std::string> adFields =
458 entry->src.hexwordADFields.value();
459 for (const auto& hexwordMap : adFields)
460 {
461 jsonInsert(errorOut, hexwordMap.second,
462 getNumberString("0x%X",
463 _hexData[getWordIndexFromWordNum(
464 hexwordMap.first)]),
465 2);
466 }
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 {
484 size_t msgLen = regEntry.doc.message.length();
485 char msg[msgLen + 1];
486 strcpy(msg, regEntry.doc.message.c_str());
487 std::vector<uint32_t> argSourceVals;
488 std::string message;
489 const auto& argValues = regEntry.doc.messageArgSources.value();
490 for (size_t i = 0; i < argValues.size(); ++i)
491 {
492 argSourceVals.push_back(_hexData[getWordIndexFromWordNum(
493 argValues[i].back() - '0')]);
494 }
495 const char* msgPointer = msg;
496 while (*msgPointer)
497 {
498 if (*msgPointer == '%')
499 {
500 msgPointer++;
501 size_t wordIndex = *msgPointer - '0';
502 if (isdigit(*msgPointer) && wordIndex >= 1 &&
503 static_cast<uint16_t>(wordIndex) <=
504 argSourceVals.size())
505 {
506 message.append(getNumberString(
507 "0x%X", argSourceVals[wordIndex - 1]));
508 }
509 else
510 {
511 message.append("%" + std::string(1, *msgPointer));
512 }
513 }
514 else
515 {
516 message.push_back(*msgPointer);
517 }
518 msgPointer++;
519 }
520 return message;
521 }
522 else
523 {
524 return regEntry.doc.message;
525 }
526 }
527 catch (const std::exception& e)
528 {
529 log<level::ERR>("Cannot get error message from registry entry",
530 entry("ERROR=%s", e.what()));
531 }
532 return std::nullopt;
533}
534
535std::optional<std::string> SRC::getCallouts() const
536{
537 if (!_callouts)
538 {
539 return std::nullopt;
540 }
541 std::string printOut;
542 const std::string jsonIndent(indentLevel, 0x20);
543 const auto& callout = _callouts->callouts();
544 const auto& compDescrp = pv::failingComponentType;
545 printOut.append(jsonIndent + "\"Callout Section\": {\n");
546 jsonInsert(printOut, "Callout Count", std::to_string(callout.size()), 2);
547 printOut.append(jsonIndent + jsonIndent + "\"Callouts\": [");
548 for (auto& entry : callout)
549 {
550 printOut.append("{\n");
551 if (entry->fruIdentity())
552 {
553 jsonInsert(
554 printOut, "FRU Type",
555 compDescrp.at(entry->fruIdentity()->failingComponentType()), 3);
556 jsonInsert(printOut, "Priority",
557 pv::getValue(entry->priority(),
558 pel_values::calloutPriorityValues),
559 3);
560 if (!entry->locationCode().empty())
561 {
562 jsonInsert(printOut, "Location Code", entry->locationCode(), 3);
563 }
564 if (entry->fruIdentity()->getPN().has_value())
565 {
566 jsonInsert(printOut, "Part Number",
567 entry->fruIdentity()->getPN().value(), 3);
568 }
569 if (entry->fruIdentity()->getMaintProc().has_value())
570 {
Matt Spinler9e8b49e2020-09-10 13:15:26 -0500571 jsonInsert(printOut, "Procedure",
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800572 entry->fruIdentity()->getMaintProc().value(), 3);
573 if (pv::procedureDesc.find(
574 entry->fruIdentity()->getMaintProc().value()) !=
575 pv::procedureDesc.end())
576 {
577 jsonInsert(
578 printOut, "Description",
579 pv::procedureDesc.at(
580 entry->fruIdentity()->getMaintProc().value()),
581 3);
582 }
583 }
584 if (entry->fruIdentity()->getCCIN().has_value())
585 {
586 jsonInsert(printOut, "CCIN",
587 entry->fruIdentity()->getCCIN().value(), 3);
588 }
589 if (entry->fruIdentity()->getSN().has_value())
590 {
591 jsonInsert(printOut, "Serial Number",
592 entry->fruIdentity()->getSN().value(), 3);
593 }
594 }
595 if (entry->pceIdentity())
596 {
597 const auto& pceIdentMtms = entry->pceIdentity()->mtms();
598 if (!pceIdentMtms.machineTypeAndModel().empty())
599 {
600 jsonInsert(printOut, "PCE MTMS",
601 pceIdentMtms.machineTypeAndModel() + "_" +
602 pceIdentMtms.machineSerialNumber(),
603 3);
604 }
605 if (!entry->pceIdentity()->enclosureName().empty())
606 {
607 jsonInsert(printOut, "PCE Name",
608 entry->pceIdentity()->enclosureName(), 3);
609 }
610 }
611 if (entry->mru())
612 {
613 const auto& mruCallouts = entry->mru()->mrus();
614 std::string mruId;
615 for (auto& element : mruCallouts)
616 {
617 if (!mruId.empty())
618 {
619 mruId.append(", " + getNumberString("%08X", element.id));
620 }
621 else
622 {
623 mruId.append(getNumberString("%08X", element.id));
624 }
625 }
626 jsonInsert(printOut, "MRU Id", mruId, 3);
627 }
628 printOut.erase(printOut.size() - 2);
629 printOut.append("\n" + jsonIndent + jsonIndent + "}, ");
630 };
631 printOut.erase(printOut.size() - 2);
632 printOut.append("]\n" + jsonIndent + "}");
633 return printOut;
634}
635
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800636std::optional<std::string> SRC::getJSON(message::Registry& registry,
637 const std::vector<std::string>& plugins,
638 uint8_t creatorID) const
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800639{
640 std::string ps;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800641 std::vector<std::string> hexwords;
Harisuddin Mohamed Isabebeb942020-03-12 17:12:24 +0800642 jsonInsert(ps, pv::sectionVer, getNumberString("%d", _header.version), 1);
643 jsonInsert(ps, pv::subSection, getNumberString("%d", _header.subType), 1);
644 jsonInsert(ps, pv::createdBy, getNumberString("0x%X", _header.componentID),
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800645 1);
646 jsonInsert(ps, "SRC Version", getNumberString("0x%02X", _version), 1);
Harisuddin Mohamed Isac32e5512020-02-06 18:05:21 +0800647 jsonInsert(ps, "SRC Format", getNumberString("0x%02X", _hexData[0] & 0xFF),
648 1);
649 jsonInsert(ps, "Virtual Progress SRC",
650 pv::boolString.at(_flags & virtualProgressSRC), 1);
651 jsonInsert(ps, "I5/OS Service Event Bit",
652 pv::boolString.at(_flags & i5OSServiceEventBit), 1);
653 jsonInsert(ps, "Hypervisor Dump Initiated",
654 pv::boolString.at(_flags & hypDumpInit), 1);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800655 jsonInsert(ps, "Power Control Net Fault",
656 pv::boolString.at(isPowerFaultEvent()), 1);
Matt Spinler075e5ba2020-02-21 15:46:00 -0600657
658 if (isBMCSRC())
659 {
660 std::string ccinString;
661 uint32_t ccin = _hexData[1] >> 16;
662
663 if (ccin)
664 {
665 ccinString = getNumberString("%04X", ccin);
666 }
667 // The PEL spec calls it a backplane, so call it that here.
668 jsonInsert(ps, "Backplane CCIN", ccinString, 1);
Matt Spinlerafa2c792020-08-27 11:01:39 -0500669
670 jsonInsert(ps, "Deconfigured",
671 pv::boolString.at(
672 _hexData[3] &
673 static_cast<uint32_t>(ErrorStatusFlags::deconfigured)),
674 1);
675
676 jsonInsert(
677 ps, "Guarded",
678 pv::boolString.at(_hexData[3] &
679 static_cast<uint32_t>(ErrorStatusFlags::guarded)),
680 1);
Matt Spinler075e5ba2020-02-21 15:46:00 -0600681 }
682
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800683 auto errorDetails = getErrorDetails(registry, DetailLevel::json, true);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800684 if (errorDetails)
685 {
686 ps.append(errorDetails.value());
687 }
688 jsonInsert(ps, "Valid Word Count", getNumberString("0x%02X", _wordCount),
689 1);
690 std::string refcode = asciiString();
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800691 hexwords.push_back(refcode);
Harisuddin Mohamed Isafecaa572020-03-11 16:04:50 +0800692 std::string extRefcode;
693 size_t pos = refcode.find(0x20);
694 if (pos != std::string::npos)
695 {
696 size_t nextPos = refcode.find_first_not_of(0x20, pos);
697 if (nextPos != std::string::npos)
698 {
699 extRefcode = trimEnd(refcode.substr(nextPos));
700 }
701 refcode.erase(pos);
702 }
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800703 jsonInsert(ps, "Reference Code", refcode, 1);
Harisuddin Mohamed Isafecaa572020-03-11 16:04:50 +0800704 if (!extRefcode.empty())
705 {
706 jsonInsert(ps, "Extended Reference Code", extRefcode, 1);
707 }
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800708 for (size_t i = 2; i <= _wordCount; i++)
709 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800710 std::string tmpWord =
711 getNumberString("%08X", _hexData[getWordIndexFromWordNum(i)]);
712 jsonInsert(ps, "Hex Word " + std::to_string(i), tmpWord, 1);
713 hexwords.push_back(tmpWord);
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800714 }
715 auto calloutJson = getCallouts();
716 if (calloutJson)
717 {
718 ps.append(calloutJson.value());
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800719 ps.append(",\n");
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800720 }
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800721 std::string subsystem = getNumberString("%c", tolower(creatorID));
722 bool srcDetailExists = false;
723#ifdef PELTOOL
724 if (std::find(plugins.begin(), plugins.end(), subsystem + "src") !=
725 plugins.end())
726 {
727 auto pyJson = getPythonJSON(hexwords, creatorID);
728 if (pyJson)
729 {
730 ps.append(pyJson.value());
731 srcDetailExists = true;
732 }
733 }
734#endif
735 if (!srcDetailExists)
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800736 {
737 ps.erase(ps.size() - 2);
738 }
739 return ps;
740}
741
Matt Spinler03984582020-04-09 13:17:58 -0500742void SRC::addCallouts(const message::Entry& regEntry,
743 const AdditionalData& additionalData,
Matt Spinler5a90a952020-08-27 09:39:03 -0500744 const nlohmann::json& jsonCallouts,
Matt Spinlered046852020-03-13 13:58:15 -0500745 const DataInterfaceBase& dataIface)
746{
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500747 auto registryCallouts =
748 getRegistryCallouts(regEntry, additionalData, dataIface);
749
Matt Spinlered046852020-03-13 13:58:15 -0500750 auto item = additionalData.getValue("CALLOUT_INVENTORY_PATH");
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500751
752 // If the first registry callout says to use the passed in inventory
753 // path to get the location code for a symbolic FRU callout with a
754 // trusted location code, then do not add the inventory path as a
755 // normal FRU callout.
756 bool useInvForSymbolicFRULocCode =
757 !registryCallouts.empty() && registryCallouts[0].useInventoryLocCode &&
758 !registryCallouts[0].symbolicFRUTrusted.empty();
759
760 if (item && !useInvForSymbolicFRULocCode)
Matt Spinlered046852020-03-13 13:58:15 -0500761 {
Matt Spinleraf191c72020-06-04 11:35:13 -0500762 addInventoryCallout(*item, std::nullopt, std::nullopt, dataIface);
Matt Spinlered046852020-03-13 13:58:15 -0500763 }
764
Matt Spinler717de422020-06-04 13:10:14 -0500765 addDevicePathCallouts(additionalData, dataIface);
Matt Spinler03984582020-04-09 13:17:58 -0500766
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500767 addRegistryCallouts(registryCallouts, dataIface,
768 (useInvForSymbolicFRULocCode) ? item : std::nullopt);
Matt Spinler5a90a952020-08-27 09:39:03 -0500769
770 if (!jsonCallouts.empty())
771 {
772 addJSONCallouts(jsonCallouts, dataIface);
773 }
Matt Spinlered046852020-03-13 13:58:15 -0500774}
775
776void SRC::addInventoryCallout(const std::string& inventoryPath,
Matt Spinleraf191c72020-06-04 11:35:13 -0500777 const std::optional<CalloutPriority>& priority,
778 const std::optional<std::string>& locationCode,
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500779 const DataInterfaceBase& dataIface,
780 const std::vector<src::MRU::MRUCallout>& mrus)
Matt Spinlered046852020-03-13 13:58:15 -0500781{
782 std::string locCode;
783 std::string fn;
784 std::string ccin;
785 std::string sn;
786 std::unique_ptr<src::Callout> callout;
787
Matt Spinlered046852020-03-13 13:58:15 -0500788 try
789 {
Matt Spinleraf191c72020-06-04 11:35:13 -0500790 // Use the passed in location code if there otherwise look it up
791 if (locationCode)
792 {
793 locCode = *locationCode;
794 }
795 else
796 {
797 locCode = dataIface.getLocationCode(inventoryPath);
798 }
Matt Spinlered046852020-03-13 13:58:15 -0500799
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500800 try
801 {
802 dataIface.getHWCalloutFields(inventoryPath, fn, ccin, sn);
803
Matt Spinleraf191c72020-06-04 11:35:13 -0500804 CalloutPriority p =
805 priority ? priority.value() : CalloutPriority::high;
806
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500807 callout =
808 std::make_unique<src::Callout>(p, locCode, fn, ccin, sn, mrus);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500809 }
810 catch (const SdBusError& e)
811 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500812 std::string msg =
813 "No VPD found for " + inventoryPath + ": " + e.what();
814 addDebugData(msg);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500815
816 // Just create the callout with empty FRU fields
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500817 callout = std::make_unique<src::Callout>(
818 CalloutPriority::high, locCode, fn, ccin, sn, mrus);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500819 }
Matt Spinlered046852020-03-13 13:58:15 -0500820 }
821 catch (const SdBusError& e)
822 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500823 std::string msg = "Could not get location code for " + inventoryPath +
824 ": " + e.what();
825 addDebugData(msg);
Matt Spinlered046852020-03-13 13:58:15 -0500826
Matt Spinlered046852020-03-13 13:58:15 -0500827 callout = std::make_unique<src::Callout>(CalloutPriority::high,
Matt Spinlera27e2e52020-04-09 11:06:11 -0500828 "no_vpd_for_fru");
Matt Spinlered046852020-03-13 13:58:15 -0500829 }
830
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500831 createCalloutsObject();
Matt Spinlered046852020-03-13 13:58:15 -0500832 _callouts->addCallout(std::move(callout));
Matt Spinler03984582020-04-09 13:17:58 -0500833}
Matt Spinlered046852020-03-13 13:58:15 -0500834
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500835std::vector<message::RegistryCallout>
836 SRC::getRegistryCallouts(const message::Entry& regEntry,
837 const AdditionalData& additionalData,
838 const DataInterfaceBase& dataIface)
839{
840 std::vector<message::RegistryCallout> registryCallouts;
841
842 if (regEntry.callouts)
843 {
844 try
845 {
846 auto systemNames = dataIface.getSystemNames();
847
848 registryCallouts = message::Registry::getCallouts(
849 regEntry.callouts.value(), systemNames, additionalData);
850 }
851 catch (const std::exception& e)
852 {
853 addDebugData(fmt::format(
854 "Error parsing PEL message registry callout JSON: {}",
855 e.what()));
856 }
857 }
858
859 return registryCallouts;
860}
861
862void SRC::addRegistryCallouts(
863 const std::vector<message::RegistryCallout>& callouts,
864 const DataInterfaceBase& dataIface,
865 std::optional<std::string> trustedSymbolicFRUInvPath)
Matt Spinler03984582020-04-09 13:17:58 -0500866{
867 try
868 {
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500869 for (const auto& callout : callouts)
Matt Spinler03984582020-04-09 13:17:58 -0500870 {
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500871 addRegistryCallout(callout, dataIface, trustedSymbolicFRUInvPath);
872
873 // Only the first callout gets the inventory path
874 if (trustedSymbolicFRUInvPath)
875 {
876 trustedSymbolicFRUInvPath = std::nullopt;
877 }
Matt Spinler03984582020-04-09 13:17:58 -0500878 }
879 }
880 catch (std::exception& e)
881 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500882 std::string msg =
883 "Error parsing PEL message registry callout JSON: "s + e.what();
884 addDebugData(msg);
Matt Spinler03984582020-04-09 13:17:58 -0500885 }
886}
887
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500888void SRC::addRegistryCallout(
889 const message::RegistryCallout& regCallout,
890 const DataInterfaceBase& dataIface,
891 const std::optional<std::string>& trustedSymbolicFRUInvPath)
Matt Spinler03984582020-04-09 13:17:58 -0500892{
893 std::unique_ptr<src::Callout> callout;
Matt Spinler03984582020-04-09 13:17:58 -0500894 auto locCode = regCallout.locCode;
895
Matt Spinleraf191c72020-06-04 11:35:13 -0500896 if (!locCode.empty())
897 {
898 try
899 {
900 locCode = dataIface.expandLocationCode(locCode, 0);
901 }
902 catch (const std::exception& e)
903 {
904 auto msg =
905 "Unable to expand location code " + locCode + ": " + e.what();
906 addDebugData(msg);
907 return;
908 }
909 }
910
Matt Spinler03984582020-04-09 13:17:58 -0500911 // Via the PEL values table, get the priority enum.
912 // The schema will have validated the priority was a valid value.
913 auto priorityIt =
914 pv::findByName(regCallout.priority, pv::calloutPriorityValues);
915 assert(priorityIt != pv::calloutPriorityValues.end());
916 auto priority =
917 static_cast<CalloutPriority>(std::get<pv::fieldValuePos>(*priorityIt));
918
919 if (!regCallout.procedure.empty())
920 {
921 // Procedure callout
922 callout =
923 std::make_unique<src::Callout>(priority, regCallout.procedure);
924 }
925 else if (!regCallout.symbolicFRU.empty())
926 {
927 // Symbolic FRU callout
928 callout = std::make_unique<src::Callout>(
929 priority, regCallout.symbolicFRU, locCode, false);
930 }
931 else if (!regCallout.symbolicFRUTrusted.empty())
932 {
933 // Symbolic FRU with trusted location code callout
934
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500935 // Use the location code from the inventory path if there is one.
936 if (trustedSymbolicFRUInvPath)
937 {
938 try
939 {
940 locCode = dataIface.getLocationCode(*trustedSymbolicFRUInvPath);
941 }
942 catch (const std::exception& e)
943 {
944 addDebugData(
945 fmt::format("Could not get location code for {}: {}",
946 *trustedSymbolicFRUInvPath, e.what()));
947 locCode.clear();
948 }
949 }
950
Matt Spinler03984582020-04-09 13:17:58 -0500951 // The registry wants it to be trusted, but that requires a valid
952 // location code for it to actually be.
953 callout = std::make_unique<src::Callout>(
954 priority, regCallout.symbolicFRUTrusted, locCode, !locCode.empty());
955 }
956 else
957 {
Matt Spinleraf191c72020-06-04 11:35:13 -0500958 // A hardware callout
959 std::string inventoryPath;
960
961 try
962 {
963 // Get the inventory item from the unexpanded location code
964 inventoryPath =
Matt Spinler2f9225a2020-08-05 12:58:49 -0500965 dataIface.getInventoryFromLocCode(regCallout.locCode, 0, false);
Matt Spinleraf191c72020-06-04 11:35:13 -0500966 }
967 catch (const std::exception& e)
968 {
969 std::string msg =
970 "Unable to get inventory path from location code: " + locCode +
971 ": " + e.what();
972 addDebugData(msg);
973 return;
974 }
975
976 addInventoryCallout(inventoryPath, priority, locCode, dataIface);
Matt Spinler03984582020-04-09 13:17:58 -0500977 }
978
979 if (callout)
980 {
981 createCalloutsObject();
982 _callouts->addCallout(std::move(callout));
983 }
984}
Matt Spinlered046852020-03-13 13:58:15 -0500985
Matt Spinler717de422020-06-04 13:10:14 -0500986void SRC::addDevicePathCallouts(const AdditionalData& additionalData,
987 const DataInterfaceBase& dataIface)
988{
989 std::vector<device_callouts::Callout> callouts;
990 auto i2cBus = additionalData.getValue("CALLOUT_IIC_BUS");
991 auto i2cAddr = additionalData.getValue("CALLOUT_IIC_ADDR");
992 auto devPath = additionalData.getValue("CALLOUT_DEVICE_PATH");
993
994 // A device callout contains either:
995 // * CALLOUT_ERRNO, CALLOUT_DEVICE_PATH
996 // * CALLOUT_ERRNO, CALLOUT_IIC_BUS, CALLOUT_IIC_ADDR
997 // We don't care about the errno.
998
999 if (devPath)
1000 {
1001 try
1002 {
1003 callouts = device_callouts::getCallouts(*devPath,
1004 dataIface.getSystemNames());
1005 }
1006 catch (const std::exception& e)
1007 {
1008 addDebugData(e.what());
1009 callouts.clear();
1010 }
1011 }
1012 else if (i2cBus && i2cAddr)
1013 {
1014 size_t bus;
1015 uint8_t address;
1016
1017 try
1018 {
1019 // If /dev/i2c- is prepended, remove it
1020 if (i2cBus->find("/dev/i2c-") != std::string::npos)
1021 {
1022 *i2cBus = i2cBus->substr(9);
1023 }
1024
1025 bus = stoul(*i2cBus, nullptr, 0);
1026 address = stoul(*i2cAddr, nullptr, 0);
1027 }
1028 catch (const std::exception& e)
1029 {
1030 std::string msg = "Invalid CALLOUT_IIC_BUS " + *i2cBus +
1031 " or CALLOUT_IIC_ADDR " + *i2cAddr +
1032 " in AdditionalData property";
1033 addDebugData(msg);
1034 return;
1035 }
1036
1037 try
1038 {
1039 callouts = device_callouts::getI2CCallouts(
1040 bus, address, dataIface.getSystemNames());
1041 }
1042 catch (const std::exception& e)
1043 {
1044 addDebugData(e.what());
1045 callouts.clear();
1046 }
1047 }
1048
1049 for (const auto& callout : callouts)
1050 {
1051 // The priority shouldn't be invalid, but check just in case.
1052 CalloutPriority priority = CalloutPriority::high;
1053
1054 if (!callout.priority.empty())
1055 {
1056 auto p = pel_values::findByValue(
1057 static_cast<uint32_t>(callout.priority[0]),
1058 pel_values::calloutPriorityValues);
1059
1060 if (p != pel_values::calloutPriorityValues.end())
1061 {
1062 priority = static_cast<CalloutPriority>(callout.priority[0]);
1063 }
1064 else
1065 {
1066 std::string msg =
1067 "Invalid priority found in dev callout JSON: " +
1068 callout.priority[0];
1069 addDebugData(msg);
1070 }
1071 }
1072
1073 try
1074 {
Matt Spinler2f9225a2020-08-05 12:58:49 -05001075 auto inventoryPath = dataIface.getInventoryFromLocCode(
1076 callout.locationCode, 0, false);
Matt Spinler717de422020-06-04 13:10:14 -05001077
1078 addInventoryCallout(inventoryPath, priority, std::nullopt,
1079 dataIface);
1080 }
1081 catch (const std::exception& e)
1082 {
1083 std::string msg =
1084 "Unable to get inventory path from location code: " +
1085 callout.locationCode + ": " + e.what();
1086 addDebugData(msg);
1087 }
1088
1089 // Until the code is there to convert these MRU value strings to
1090 // the official MRU values in the callout objects, just store
1091 // the MRU name in the debug UserData section.
1092 if (!callout.mru.empty())
1093 {
1094 std::string msg = "MRU: " + callout.mru;
1095 addDebugData(msg);
1096 }
1097
1098 // getCallouts() may have generated some debug data it stored
1099 // in a callout object. Save it as well.
1100 if (!callout.debug.empty())
1101 {
1102 addDebugData(callout.debug);
1103 }
1104 }
1105}
1106
Matt Spinler5a90a952020-08-27 09:39:03 -05001107void SRC::addJSONCallouts(const nlohmann::json& jsonCallouts,
1108 const DataInterfaceBase& dataIface)
1109{
1110 if (jsonCallouts.empty())
1111 {
1112 return;
1113 }
1114
1115 if (!jsonCallouts.is_array())
1116 {
1117 addDebugData("Callout JSON isn't an array");
1118 return;
1119 }
1120
1121 for (const auto& callout : jsonCallouts)
1122 {
1123 try
1124 {
1125 addJSONCallout(callout, dataIface);
1126 }
1127 catch (const std::exception& e)
1128 {
1129 addDebugData(fmt::format(
1130 "Failed extracting callout data from JSON: {}", e.what()));
1131 }
1132 }
1133}
1134
1135void SRC::addJSONCallout(const nlohmann::json& jsonCallout,
1136 const DataInterfaceBase& dataIface)
1137{
Matt Spinler3bdd0112020-08-27 10:24:34 -05001138 auto priority = getPriorityFromJSON(jsonCallout);
1139 std::string locCode;
1140 std::string unexpandedLocCode;
1141 std::unique_ptr<src::Callout> callout;
1142
1143 // Expand the location code if it's there
1144 if (jsonCallout.contains("LocationCode"))
1145 {
1146 unexpandedLocCode = jsonCallout.at("LocationCode").get<std::string>();
1147
1148 try
1149 {
1150 locCode = dataIface.expandLocationCode(unexpandedLocCode, 0);
1151 }
1152 catch (const std::exception& e)
1153 {
1154 addDebugData(fmt::format("Unable to expand location code {}: {}",
1155 unexpandedLocCode, e.what()));
1156 // Use the value from the JSON so at least there's something
1157 locCode = unexpandedLocCode;
1158 }
1159 }
1160
1161 // Create either a procedure, symbolic FRU, or normal FRU callout.
1162 if (jsonCallout.contains("Procedure"))
1163 {
1164 auto procedure = jsonCallout.at("Procedure").get<std::string>();
1165
1166 callout = std::make_unique<src::Callout>(
1167 static_cast<CalloutPriority>(priority), procedure,
1168 src::CalloutValueType::raw);
1169 }
1170 else if (jsonCallout.contains("SymbolicFRU"))
1171 {
1172 auto fru = jsonCallout.at("SymbolicFRU").get<std::string>();
1173
1174 bool trusted = false;
1175 if (jsonCallout.contains("TrustedLocationCode") && !locCode.empty())
1176 {
1177 trusted = jsonCallout.at("TrustedLocationCode").get<bool>();
1178 }
1179
1180 callout = std::make_unique<src::Callout>(
1181 static_cast<CalloutPriority>(priority), fru,
1182 src::CalloutValueType::raw, locCode, trusted);
1183 }
1184 else
1185 {
1186 // A hardware FRU
1187 std::string inventoryPath;
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001188 std::vector<src::MRU::MRUCallout> mrus;
Matt Spinler3bdd0112020-08-27 10:24:34 -05001189
1190 if (jsonCallout.contains("InventoryPath"))
1191 {
1192 inventoryPath = jsonCallout.at("InventoryPath").get<std::string>();
1193 }
1194 else
1195 {
1196 if (unexpandedLocCode.empty())
1197 {
1198 throw std::runtime_error{"JSON callout needs either an "
1199 "inventory path or location code"};
1200 }
1201
1202 try
1203 {
1204 inventoryPath = dataIface.getInventoryFromLocCode(
1205 unexpandedLocCode, 0, false);
1206 }
1207 catch (const std::exception& e)
1208 {
1209 throw std::runtime_error{
1210 fmt::format("Unable to get inventory path from "
1211 "location code: {}: {}",
1212 unexpandedLocCode, e.what())};
1213 }
1214 }
1215
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001216 if (jsonCallout.contains("MRUs"))
1217 {
1218 mrus = getMRUsFromJSON(jsonCallout.at("MRUs"));
1219 }
1220
Matt Spinler3bdd0112020-08-27 10:24:34 -05001221 // If the location code was also passed in, use that here too
1222 // so addInventoryCallout doesn't have to look it up.
1223 std::optional<std::string> lc;
1224 if (!locCode.empty())
1225 {
1226 lc = locCode;
1227 }
1228
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001229 addInventoryCallout(inventoryPath, priority, lc, dataIface, mrus);
Matt Spinlerafa2c792020-08-27 11:01:39 -05001230
1231 if (jsonCallout.contains("Deconfigured"))
1232 {
1233 if (jsonCallout.at("Deconfigured").get<bool>())
1234 {
1235 setErrorStatusFlag(ErrorStatusFlags::deconfigured);
1236 }
1237 }
1238
1239 if (jsonCallout.contains("Guarded"))
1240 {
1241 if (jsonCallout.at("Guarded").get<bool>())
1242 {
1243 setErrorStatusFlag(ErrorStatusFlags::guarded);
1244 }
1245 }
Matt Spinler3bdd0112020-08-27 10:24:34 -05001246 }
1247
1248 if (callout)
1249 {
1250 createCalloutsObject();
1251 _callouts->addCallout(std::move(callout));
1252 }
1253}
1254
1255CalloutPriority SRC::getPriorityFromJSON(const nlohmann::json& json)
1256{
1257 // Looks like:
1258 // {
1259 // "Priority": "H"
1260 // }
1261 auto p = json.at("Priority").get<std::string>();
1262 if (p.empty())
1263 {
1264 throw std::runtime_error{"Priority field in callout is empty"};
1265 }
1266
1267 auto priority = static_cast<CalloutPriority>(p.front());
1268
1269 // Validate it
1270 auto priorityIt = pv::findByValue(static_cast<uint32_t>(priority),
1271 pv::calloutPriorityValues);
1272 if (priorityIt == pv::calloutPriorityValues.end())
1273 {
1274 throw std::runtime_error{
1275 fmt::format("Invalid priority '{}' found in JSON callout", p)};
1276 }
1277
1278 return priority;
Matt Spinler5a90a952020-08-27 09:39:03 -05001279}
1280
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001281std::vector<src::MRU::MRUCallout>
1282 SRC::getMRUsFromJSON(const nlohmann::json& mruJSON)
1283{
1284 std::vector<src::MRU::MRUCallout> mrus;
1285
1286 // Looks like:
1287 // [
1288 // {
1289 // "ID": 100,
1290 // "Priority": "H"
1291 // }
1292 // ]
1293 if (!mruJSON.is_array())
1294 {
1295 addDebugData("MRU callout JSON is not an array");
1296 return mrus;
1297 }
1298
1299 for (const auto& mruCallout : mruJSON)
1300 {
1301 try
1302 {
1303 auto priority = getPriorityFromJSON(mruCallout);
1304 auto id = mruCallout.at("ID").get<uint32_t>();
1305
1306 src::MRU::MRUCallout mru{static_cast<uint32_t>(priority), id};
1307 mrus.push_back(std::move(mru));
1308 }
1309 catch (const std::exception& e)
1310 {
1311 addDebugData(fmt::format("Invalid MRU entry in JSON: {}: {}",
1312 mruCallout.dump(), e.what()));
1313 }
1314 }
1315
1316 return mrus;
1317}
1318
Matt Spinlerf9bae182019-10-09 13:37:38 -05001319} // namespace pels
1320} // namespace openpower