blob: 643adec5e9b0aa5de88c61f045aaa0698de8cba5 [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");
Miguel Gomez53ef1552020-10-14 21:16:32 +0000751 auto priority = additionalData.getValue("CALLOUT_PRIORITY");
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500752
Miguel Gomez53ef1552020-10-14 21:16:32 +0000753 std::optional<CalloutPriority> calloutPriority;
754
755 // Only H, M or L priority values.
756 if (priority && !(*priority).empty())
757 {
758 uint8_t p = (*priority)[0];
759 if (p == 'H' || p == 'M' || p == 'L')
760 {
761 calloutPriority = static_cast<CalloutPriority>(p);
762 }
763 }
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500764 // If the first registry callout says to use the passed in inventory
765 // path to get the location code for a symbolic FRU callout with a
766 // trusted location code, then do not add the inventory path as a
767 // normal FRU callout.
768 bool useInvForSymbolicFRULocCode =
769 !registryCallouts.empty() && registryCallouts[0].useInventoryLocCode &&
770 !registryCallouts[0].symbolicFRUTrusted.empty();
771
772 if (item && !useInvForSymbolicFRULocCode)
Matt Spinlered046852020-03-13 13:58:15 -0500773 {
Miguel Gomez53ef1552020-10-14 21:16:32 +0000774 addInventoryCallout(*item, calloutPriority, std::nullopt, dataIface);
Matt Spinlered046852020-03-13 13:58:15 -0500775 }
776
Matt Spinler717de422020-06-04 13:10:14 -0500777 addDevicePathCallouts(additionalData, dataIface);
Matt Spinler03984582020-04-09 13:17:58 -0500778
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500779 addRegistryCallouts(registryCallouts, dataIface,
780 (useInvForSymbolicFRULocCode) ? item : std::nullopt);
Matt Spinler5a90a952020-08-27 09:39:03 -0500781
782 if (!jsonCallouts.empty())
783 {
784 addJSONCallouts(jsonCallouts, dataIface);
785 }
Matt Spinlered046852020-03-13 13:58:15 -0500786}
787
788void SRC::addInventoryCallout(const std::string& inventoryPath,
Matt Spinleraf191c72020-06-04 11:35:13 -0500789 const std::optional<CalloutPriority>& priority,
790 const std::optional<std::string>& locationCode,
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500791 const DataInterfaceBase& dataIface,
792 const std::vector<src::MRU::MRUCallout>& mrus)
Matt Spinlered046852020-03-13 13:58:15 -0500793{
794 std::string locCode;
795 std::string fn;
796 std::string ccin;
797 std::string sn;
798 std::unique_ptr<src::Callout> callout;
799
Matt Spinlered046852020-03-13 13:58:15 -0500800 try
801 {
Matt Spinleraf191c72020-06-04 11:35:13 -0500802 // Use the passed in location code if there otherwise look it up
803 if (locationCode)
804 {
805 locCode = *locationCode;
806 }
807 else
808 {
809 locCode = dataIface.getLocationCode(inventoryPath);
810 }
Matt Spinlered046852020-03-13 13:58:15 -0500811
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500812 try
813 {
814 dataIface.getHWCalloutFields(inventoryPath, fn, ccin, sn);
815
Matt Spinleraf191c72020-06-04 11:35:13 -0500816 CalloutPriority p =
817 priority ? priority.value() : CalloutPriority::high;
818
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500819 callout =
820 std::make_unique<src::Callout>(p, locCode, fn, ccin, sn, mrus);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500821 }
822 catch (const SdBusError& e)
823 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500824 std::string msg =
825 "No VPD found for " + inventoryPath + ": " + e.what();
826 addDebugData(msg);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500827
828 // Just create the callout with empty FRU fields
Matt Spinlerb8cb60f2020-08-27 10:55:55 -0500829 callout = std::make_unique<src::Callout>(
830 CalloutPriority::high, locCode, fn, ccin, sn, mrus);
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500831 }
Matt Spinlered046852020-03-13 13:58:15 -0500832 }
833 catch (const SdBusError& e)
834 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500835 std::string msg = "Could not get location code for " + inventoryPath +
836 ": " + e.what();
837 addDebugData(msg);
Matt Spinlered046852020-03-13 13:58:15 -0500838
Matt Spinlered046852020-03-13 13:58:15 -0500839 callout = std::make_unique<src::Callout>(CalloutPriority::high,
Matt Spinlera27e2e52020-04-09 11:06:11 -0500840 "no_vpd_for_fru");
Matt Spinlered046852020-03-13 13:58:15 -0500841 }
842
Matt Spinler9b90e2a2020-04-14 10:59:04 -0500843 createCalloutsObject();
Matt Spinlered046852020-03-13 13:58:15 -0500844 _callouts->addCallout(std::move(callout));
Matt Spinler03984582020-04-09 13:17:58 -0500845}
Matt Spinlered046852020-03-13 13:58:15 -0500846
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500847std::vector<message::RegistryCallout>
848 SRC::getRegistryCallouts(const message::Entry& regEntry,
849 const AdditionalData& additionalData,
850 const DataInterfaceBase& dataIface)
851{
852 std::vector<message::RegistryCallout> registryCallouts;
853
854 if (regEntry.callouts)
855 {
856 try
857 {
858 auto systemNames = dataIface.getSystemNames();
859
860 registryCallouts = message::Registry::getCallouts(
861 regEntry.callouts.value(), systemNames, additionalData);
862 }
863 catch (const std::exception& e)
864 {
865 addDebugData(fmt::format(
866 "Error parsing PEL message registry callout JSON: {}",
867 e.what()));
868 }
869 }
870
871 return registryCallouts;
872}
873
874void SRC::addRegistryCallouts(
875 const std::vector<message::RegistryCallout>& callouts,
876 const DataInterfaceBase& dataIface,
877 std::optional<std::string> trustedSymbolicFRUInvPath)
Matt Spinler03984582020-04-09 13:17:58 -0500878{
879 try
880 {
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500881 for (const auto& callout : callouts)
Matt Spinler03984582020-04-09 13:17:58 -0500882 {
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500883 addRegistryCallout(callout, dataIface, trustedSymbolicFRUInvPath);
884
885 // Only the first callout gets the inventory path
886 if (trustedSymbolicFRUInvPath)
887 {
888 trustedSymbolicFRUInvPath = std::nullopt;
889 }
Matt Spinler03984582020-04-09 13:17:58 -0500890 }
891 }
892 catch (std::exception& e)
893 {
Matt Spinler85f61a62020-06-03 16:28:55 -0500894 std::string msg =
895 "Error parsing PEL message registry callout JSON: "s + e.what();
896 addDebugData(msg);
Matt Spinler03984582020-04-09 13:17:58 -0500897 }
898}
899
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500900void SRC::addRegistryCallout(
901 const message::RegistryCallout& regCallout,
902 const DataInterfaceBase& dataIface,
903 const std::optional<std::string>& trustedSymbolicFRUInvPath)
Matt Spinler03984582020-04-09 13:17:58 -0500904{
905 std::unique_ptr<src::Callout> callout;
Matt Spinler03984582020-04-09 13:17:58 -0500906 auto locCode = regCallout.locCode;
907
Matt Spinleraf191c72020-06-04 11:35:13 -0500908 if (!locCode.empty())
909 {
910 try
911 {
912 locCode = dataIface.expandLocationCode(locCode, 0);
913 }
914 catch (const std::exception& e)
915 {
916 auto msg =
917 "Unable to expand location code " + locCode + ": " + e.what();
918 addDebugData(msg);
919 return;
920 }
921 }
922
Matt Spinler03984582020-04-09 13:17:58 -0500923 // Via the PEL values table, get the priority enum.
924 // The schema will have validated the priority was a valid value.
925 auto priorityIt =
926 pv::findByName(regCallout.priority, pv::calloutPriorityValues);
927 assert(priorityIt != pv::calloutPriorityValues.end());
928 auto priority =
929 static_cast<CalloutPriority>(std::get<pv::fieldValuePos>(*priorityIt));
930
931 if (!regCallout.procedure.empty())
932 {
933 // Procedure callout
934 callout =
935 std::make_unique<src::Callout>(priority, regCallout.procedure);
936 }
937 else if (!regCallout.symbolicFRU.empty())
938 {
939 // Symbolic FRU callout
940 callout = std::make_unique<src::Callout>(
941 priority, regCallout.symbolicFRU, locCode, false);
942 }
943 else if (!regCallout.symbolicFRUTrusted.empty())
944 {
945 // Symbolic FRU with trusted location code callout
946
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500947 // Use the location code from the inventory path if there is one.
948 if (trustedSymbolicFRUInvPath)
949 {
950 try
951 {
952 locCode = dataIface.getLocationCode(*trustedSymbolicFRUInvPath);
953 }
954 catch (const std::exception& e)
955 {
956 addDebugData(
957 fmt::format("Could not get location code for {}: {}",
958 *trustedSymbolicFRUInvPath, e.what()));
959 locCode.clear();
960 }
961 }
962
Matt Spinler03984582020-04-09 13:17:58 -0500963 // The registry wants it to be trusted, but that requires a valid
964 // location code for it to actually be.
965 callout = std::make_unique<src::Callout>(
966 priority, regCallout.symbolicFRUTrusted, locCode, !locCode.empty());
967 }
968 else
969 {
Matt Spinleraf191c72020-06-04 11:35:13 -0500970 // A hardware callout
971 std::string inventoryPath;
972
973 try
974 {
975 // Get the inventory item from the unexpanded location code
976 inventoryPath =
Matt Spinler2f9225a2020-08-05 12:58:49 -0500977 dataIface.getInventoryFromLocCode(regCallout.locCode, 0, false);
Matt Spinleraf191c72020-06-04 11:35:13 -0500978 }
979 catch (const std::exception& e)
980 {
981 std::string msg =
982 "Unable to get inventory path from location code: " + locCode +
983 ": " + e.what();
984 addDebugData(msg);
985 return;
986 }
987
988 addInventoryCallout(inventoryPath, priority, locCode, dataIface);
Matt Spinler03984582020-04-09 13:17:58 -0500989 }
990
991 if (callout)
992 {
993 createCalloutsObject();
994 _callouts->addCallout(std::move(callout));
995 }
996}
Matt Spinlered046852020-03-13 13:58:15 -0500997
Matt Spinler717de422020-06-04 13:10:14 -0500998void SRC::addDevicePathCallouts(const AdditionalData& additionalData,
999 const DataInterfaceBase& dataIface)
1000{
1001 std::vector<device_callouts::Callout> callouts;
1002 auto i2cBus = additionalData.getValue("CALLOUT_IIC_BUS");
1003 auto i2cAddr = additionalData.getValue("CALLOUT_IIC_ADDR");
1004 auto devPath = additionalData.getValue("CALLOUT_DEVICE_PATH");
1005
1006 // A device callout contains either:
1007 // * CALLOUT_ERRNO, CALLOUT_DEVICE_PATH
1008 // * CALLOUT_ERRNO, CALLOUT_IIC_BUS, CALLOUT_IIC_ADDR
1009 // We don't care about the errno.
1010
1011 if (devPath)
1012 {
1013 try
1014 {
1015 callouts = device_callouts::getCallouts(*devPath,
1016 dataIface.getSystemNames());
1017 }
1018 catch (const std::exception& e)
1019 {
1020 addDebugData(e.what());
1021 callouts.clear();
1022 }
1023 }
1024 else if (i2cBus && i2cAddr)
1025 {
1026 size_t bus;
1027 uint8_t address;
1028
1029 try
1030 {
1031 // If /dev/i2c- is prepended, remove it
1032 if (i2cBus->find("/dev/i2c-") != std::string::npos)
1033 {
1034 *i2cBus = i2cBus->substr(9);
1035 }
1036
1037 bus = stoul(*i2cBus, nullptr, 0);
1038 address = stoul(*i2cAddr, nullptr, 0);
1039 }
1040 catch (const std::exception& e)
1041 {
1042 std::string msg = "Invalid CALLOUT_IIC_BUS " + *i2cBus +
1043 " or CALLOUT_IIC_ADDR " + *i2cAddr +
1044 " in AdditionalData property";
1045 addDebugData(msg);
1046 return;
1047 }
1048
1049 try
1050 {
1051 callouts = device_callouts::getI2CCallouts(
1052 bus, address, dataIface.getSystemNames());
1053 }
1054 catch (const std::exception& e)
1055 {
1056 addDebugData(e.what());
1057 callouts.clear();
1058 }
1059 }
1060
1061 for (const auto& callout : callouts)
1062 {
1063 // The priority shouldn't be invalid, but check just in case.
1064 CalloutPriority priority = CalloutPriority::high;
1065
1066 if (!callout.priority.empty())
1067 {
1068 auto p = pel_values::findByValue(
1069 static_cast<uint32_t>(callout.priority[0]),
1070 pel_values::calloutPriorityValues);
1071
1072 if (p != pel_values::calloutPriorityValues.end())
1073 {
1074 priority = static_cast<CalloutPriority>(callout.priority[0]);
1075 }
1076 else
1077 {
1078 std::string msg =
1079 "Invalid priority found in dev callout JSON: " +
1080 callout.priority[0];
1081 addDebugData(msg);
1082 }
1083 }
1084
1085 try
1086 {
Matt Spinler2f9225a2020-08-05 12:58:49 -05001087 auto inventoryPath = dataIface.getInventoryFromLocCode(
1088 callout.locationCode, 0, false);
Matt Spinler717de422020-06-04 13:10:14 -05001089
1090 addInventoryCallout(inventoryPath, priority, std::nullopt,
1091 dataIface);
1092 }
1093 catch (const std::exception& e)
1094 {
1095 std::string msg =
1096 "Unable to get inventory path from location code: " +
1097 callout.locationCode + ": " + e.what();
1098 addDebugData(msg);
1099 }
1100
1101 // Until the code is there to convert these MRU value strings to
1102 // the official MRU values in the callout objects, just store
1103 // the MRU name in the debug UserData section.
1104 if (!callout.mru.empty())
1105 {
1106 std::string msg = "MRU: " + callout.mru;
1107 addDebugData(msg);
1108 }
1109
1110 // getCallouts() may have generated some debug data it stored
1111 // in a callout object. Save it as well.
1112 if (!callout.debug.empty())
1113 {
1114 addDebugData(callout.debug);
1115 }
1116 }
1117}
1118
Matt Spinler5a90a952020-08-27 09:39:03 -05001119void SRC::addJSONCallouts(const nlohmann::json& jsonCallouts,
1120 const DataInterfaceBase& dataIface)
1121{
1122 if (jsonCallouts.empty())
1123 {
1124 return;
1125 }
1126
1127 if (!jsonCallouts.is_array())
1128 {
1129 addDebugData("Callout JSON isn't an array");
1130 return;
1131 }
1132
1133 for (const auto& callout : jsonCallouts)
1134 {
1135 try
1136 {
1137 addJSONCallout(callout, dataIface);
1138 }
1139 catch (const std::exception& e)
1140 {
1141 addDebugData(fmt::format(
1142 "Failed extracting callout data from JSON: {}", e.what()));
1143 }
1144 }
1145}
1146
1147void SRC::addJSONCallout(const nlohmann::json& jsonCallout,
1148 const DataInterfaceBase& dataIface)
1149{
Matt Spinler3bdd0112020-08-27 10:24:34 -05001150 auto priority = getPriorityFromJSON(jsonCallout);
1151 std::string locCode;
1152 std::string unexpandedLocCode;
1153 std::unique_ptr<src::Callout> callout;
1154
1155 // Expand the location code if it's there
1156 if (jsonCallout.contains("LocationCode"))
1157 {
1158 unexpandedLocCode = jsonCallout.at("LocationCode").get<std::string>();
1159
1160 try
1161 {
1162 locCode = dataIface.expandLocationCode(unexpandedLocCode, 0);
1163 }
1164 catch (const std::exception& e)
1165 {
1166 addDebugData(fmt::format("Unable to expand location code {}: {}",
1167 unexpandedLocCode, e.what()));
1168 // Use the value from the JSON so at least there's something
1169 locCode = unexpandedLocCode;
1170 }
1171 }
1172
1173 // Create either a procedure, symbolic FRU, or normal FRU callout.
1174 if (jsonCallout.contains("Procedure"))
1175 {
1176 auto procedure = jsonCallout.at("Procedure").get<std::string>();
1177
1178 callout = std::make_unique<src::Callout>(
1179 static_cast<CalloutPriority>(priority), procedure,
1180 src::CalloutValueType::raw);
1181 }
1182 else if (jsonCallout.contains("SymbolicFRU"))
1183 {
1184 auto fru = jsonCallout.at("SymbolicFRU").get<std::string>();
1185
1186 bool trusted = false;
1187 if (jsonCallout.contains("TrustedLocationCode") && !locCode.empty())
1188 {
1189 trusted = jsonCallout.at("TrustedLocationCode").get<bool>();
1190 }
1191
1192 callout = std::make_unique<src::Callout>(
1193 static_cast<CalloutPriority>(priority), fru,
1194 src::CalloutValueType::raw, locCode, trusted);
1195 }
1196 else
1197 {
1198 // A hardware FRU
1199 std::string inventoryPath;
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001200 std::vector<src::MRU::MRUCallout> mrus;
Matt Spinler3bdd0112020-08-27 10:24:34 -05001201
1202 if (jsonCallout.contains("InventoryPath"))
1203 {
1204 inventoryPath = jsonCallout.at("InventoryPath").get<std::string>();
1205 }
1206 else
1207 {
1208 if (unexpandedLocCode.empty())
1209 {
1210 throw std::runtime_error{"JSON callout needs either an "
1211 "inventory path or location code"};
1212 }
1213
1214 try
1215 {
1216 inventoryPath = dataIface.getInventoryFromLocCode(
1217 unexpandedLocCode, 0, false);
1218 }
1219 catch (const std::exception& e)
1220 {
1221 throw std::runtime_error{
1222 fmt::format("Unable to get inventory path from "
1223 "location code: {}: {}",
1224 unexpandedLocCode, e.what())};
1225 }
1226 }
1227
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001228 if (jsonCallout.contains("MRUs"))
1229 {
1230 mrus = getMRUsFromJSON(jsonCallout.at("MRUs"));
1231 }
1232
Matt Spinler3bdd0112020-08-27 10:24:34 -05001233 // If the location code was also passed in, use that here too
1234 // so addInventoryCallout doesn't have to look it up.
1235 std::optional<std::string> lc;
1236 if (!locCode.empty())
1237 {
1238 lc = locCode;
1239 }
1240
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001241 addInventoryCallout(inventoryPath, priority, lc, dataIface, mrus);
Matt Spinlerafa2c792020-08-27 11:01:39 -05001242
1243 if (jsonCallout.contains("Deconfigured"))
1244 {
1245 if (jsonCallout.at("Deconfigured").get<bool>())
1246 {
1247 setErrorStatusFlag(ErrorStatusFlags::deconfigured);
1248 }
1249 }
1250
1251 if (jsonCallout.contains("Guarded"))
1252 {
1253 if (jsonCallout.at("Guarded").get<bool>())
1254 {
1255 setErrorStatusFlag(ErrorStatusFlags::guarded);
1256 }
1257 }
Matt Spinler3bdd0112020-08-27 10:24:34 -05001258 }
1259
1260 if (callout)
1261 {
1262 createCalloutsObject();
1263 _callouts->addCallout(std::move(callout));
1264 }
1265}
1266
1267CalloutPriority SRC::getPriorityFromJSON(const nlohmann::json& json)
1268{
1269 // Looks like:
1270 // {
1271 // "Priority": "H"
1272 // }
1273 auto p = json.at("Priority").get<std::string>();
1274 if (p.empty())
1275 {
1276 throw std::runtime_error{"Priority field in callout is empty"};
1277 }
1278
1279 auto priority = static_cast<CalloutPriority>(p.front());
1280
1281 // Validate it
1282 auto priorityIt = pv::findByValue(static_cast<uint32_t>(priority),
1283 pv::calloutPriorityValues);
1284 if (priorityIt == pv::calloutPriorityValues.end())
1285 {
1286 throw std::runtime_error{
1287 fmt::format("Invalid priority '{}' found in JSON callout", p)};
1288 }
1289
1290 return priority;
Matt Spinler5a90a952020-08-27 09:39:03 -05001291}
1292
Matt Spinlerb8cb60f2020-08-27 10:55:55 -05001293std::vector<src::MRU::MRUCallout>
1294 SRC::getMRUsFromJSON(const nlohmann::json& mruJSON)
1295{
1296 std::vector<src::MRU::MRUCallout> mrus;
1297
1298 // Looks like:
1299 // [
1300 // {
1301 // "ID": 100,
1302 // "Priority": "H"
1303 // }
1304 // ]
1305 if (!mruJSON.is_array())
1306 {
1307 addDebugData("MRU callout JSON is not an array");
1308 return mrus;
1309 }
1310
1311 for (const auto& mruCallout : mruJSON)
1312 {
1313 try
1314 {
1315 auto priority = getPriorityFromJSON(mruCallout);
1316 auto id = mruCallout.at("ID").get<uint32_t>();
1317
1318 src::MRU::MRUCallout mru{static_cast<uint32_t>(priority), id};
1319 mrus.push_back(std::move(mru));
1320 }
1321 catch (const std::exception& e)
1322 {
1323 addDebugData(fmt::format("Invalid MRU entry in JSON: {}: {}",
1324 mruCallout.dump(), e.what()));
1325 }
1326 }
1327
1328 return mrus;
1329}
1330
Matt Spinlerf9bae182019-10-09 13:37:38 -05001331} // namespace pels
1332} // namespace openpower