blob: c1c6da650d0f15d50d828e153d99716bed5aadeb [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 */
Aatir7b291ec2019-11-19 10:37:37 -060016#include "config.h"
17
18#include "../bcd_time.hpp"
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +080019#include "../json_utils.hpp"
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +080020#include "../paths.hpp"
Aatir186ce8c2019-10-20 15:13:39 -050021#include "../pel.hpp"
Aatir7b291ec2019-11-19 10:37:37 -060022#include "../pel_types.hpp"
23#include "../pel_values.hpp"
Aatir186ce8c2019-10-20 15:13:39 -050024
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +080025#include <Python.h>
26
Aatir186ce8c2019-10-20 15:13:39 -050027#include <CLI/CLI.hpp>
Aatir7b291ec2019-11-19 10:37:37 -060028#include <bitset>
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +080029#include <fstream>
Aatir186ce8c2019-10-20 15:13:39 -050030#include <iostream>
Matt Spinler7f1b9052022-03-22 09:18:58 -050031#include <phosphor-logging/log.hpp>
Aatir7b291ec2019-11-19 10:37:37 -060032#include <regex>
Aatir186ce8c2019-10-20 15:13:39 -050033#include <string>
34
William A. Kennington IIIb6b25572021-05-19 17:09:41 -070035#include "config_main.h"
36
Aatir7b291ec2019-11-19 10:37:37 -060037namespace fs = std::filesystem;
Matt Spinler7f1b9052022-03-22 09:18:58 -050038using namespace phosphor::logging;
Aatir186ce8c2019-10-20 15:13:39 -050039using namespace openpower::pels;
Aatir7b291ec2019-11-19 10:37:37 -060040namespace message = openpower::pels::message;
41namespace pv = openpower::pels::pel_values;
Aatir186ce8c2019-10-20 15:13:39 -050042
Miguel Gomez011ccae2021-03-25 23:42:09 +000043const uint8_t critSysTermSeverity = 0x51;
44
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +080045using PELFunc = std::function<void(const PEL&, bool hexDump)>;
Matt Spinler0d804ef2020-05-12 16:16:26 -050046message::Registry registry(getPELReadOnlyDataPath() / message::registryFileName,
Matt Spinlerd8e29002020-04-09 09:11:22 -050047 false);
Matt Spinler27de6f32020-02-21 08:35:57 -060048namespace service
49{
50constexpr auto logging = "xyz.openbmc_project.Logging";
51} // namespace service
52
53namespace interface
54{
55constexpr auto deleteObj = "xyz.openbmc_project.Object.Delete";
56constexpr auto deleteAll = "xyz.openbmc_project.Collection.DeleteAll";
57} // namespace interface
58
59namespace object_path
60{
61constexpr auto logEntry = "/xyz/openbmc_project/logging/entry/";
62constexpr auto logging = "/xyz/openbmc_project/logging";
63} // namespace object_path
64
William A. Kennington IIIb6b25572021-05-19 17:09:41 -070065std::string pelLogDir()
66{
67 return std::string(EXTENSION_PERSIST_DIR) + "/pels/logs";
68}
69
Aatire340c132019-12-09 14:19:29 -060070/**
Aatir37822f62019-12-10 14:40:27 -060071 * @brief helper function to get PEL commit timestamp from file name
Sumit Kumar104c7962022-02-09 06:30:39 -060072 * @retrun uint64_t - PEL commit timestamp
Aatir37822f62019-12-10 14:40:27 -060073 * @param[in] std::string - file name
74 */
Sumit Kumar104c7962022-02-09 06:30:39 -060075uint64_t fileNameToTimestamp(const std::string& fileName)
Aatir37822f62019-12-10 14:40:27 -060076{
77 std::string token = fileName.substr(0, fileName.find("_"));
78 int i = 0;
Sumit Kumar104c7962022-02-09 06:30:39 -060079 uint64_t bcdTime = 0;
Aatir37822f62019-12-10 14:40:27 -060080 if (token.length() >= 14)
81 {
82 try
83 {
Sumit Kumar104c7962022-02-09 06:30:39 -060084 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
85 bcdTime |= (static_cast<uint64_t>(tmp) << 56);
Aatir37822f62019-12-10 14:40:27 -060086 }
Patrick Williams66491c62021-10-06 12:23:37 -050087 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -060088 {
89 std::cout << "Conversion failure: " << err.what() << std::endl;
90 }
91 i += 2;
92 try
93 {
Sumit Kumar104c7962022-02-09 06:30:39 -060094 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
95 bcdTime |= (static_cast<uint64_t>(tmp) << 48);
Aatir37822f62019-12-10 14:40:27 -060096 }
Patrick Williams66491c62021-10-06 12:23:37 -050097 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -060098 {
99 std::cout << "Conversion failure: " << err.what() << std::endl;
100 }
101 i += 2;
102 try
103 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600104 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
105 bcdTime |= (static_cast<uint64_t>(tmp) << 40);
Aatir37822f62019-12-10 14:40:27 -0600106 }
Patrick Williams66491c62021-10-06 12:23:37 -0500107 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600108 {
109 std::cout << "Conversion failure: " << err.what() << std::endl;
110 }
111 i += 2;
112 try
113 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600114 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
115 bcdTime |= (static_cast<uint64_t>(tmp) << 32);
Aatir37822f62019-12-10 14:40:27 -0600116 }
Patrick Williams66491c62021-10-06 12:23:37 -0500117 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600118 {
119 std::cout << "Conversion failure: " << err.what() << std::endl;
120 }
121 i += 2;
122 try
123 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600124 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
125 bcdTime |= (tmp << 24);
Aatir37822f62019-12-10 14:40:27 -0600126 }
Patrick Williams66491c62021-10-06 12:23:37 -0500127 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600128 {
129 std::cout << "Conversion failure: " << err.what() << std::endl;
130 }
131 i += 2;
132 try
133 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600134 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
135 bcdTime |= (tmp << 16);
Aatir37822f62019-12-10 14:40:27 -0600136 }
Patrick Williams66491c62021-10-06 12:23:37 -0500137 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600138 {
139 std::cout << "Conversion failure: " << err.what() << std::endl;
140 }
141 i += 2;
142 try
143 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600144 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
145 bcdTime |= (tmp << 8);
Aatir37822f62019-12-10 14:40:27 -0600146 }
Patrick Williams66491c62021-10-06 12:23:37 -0500147 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600148 {
149 std::cout << "Conversion failure: " << err.what() << std::endl;
150 }
151 i += 2;
152 try
153 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600154 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
155 bcdTime |= tmp;
Aatir37822f62019-12-10 14:40:27 -0600156 }
Patrick Williams66491c62021-10-06 12:23:37 -0500157 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600158 {
159 std::cout << "Conversion failure: " << err.what() << std::endl;
160 }
161 }
Sumit Kumar104c7962022-02-09 06:30:39 -0600162 return bcdTime;
Aatir37822f62019-12-10 14:40:27 -0600163}
164
165/**
166 * @brief helper function to get PEL id from file name
167 * @retrun uint32_t - PEL id
168 * @param[in] std::string - file name
169 */
170uint32_t fileNameToPELId(const std::string& fileName)
171{
172 uint32_t num = 0;
173 try
174 {
Sumit Kumara1e40842021-06-23 09:52:25 -0500175 num = std::stoul(fileName.substr(fileName.find("_") + 1), 0, 16);
Aatir37822f62019-12-10 14:40:27 -0600176 }
Patrick Williams66491c62021-10-06 12:23:37 -0500177 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600178 {
179 std::cout << "Conversion failure: " << err.what() << std::endl;
180 }
181 return num;
182}
183
184/**
Aatire340c132019-12-09 14:19:29 -0600185 * @brief helper function to check string suffix
186 * @retrun bool - true with suffix matches
187 * @param[in] std::string - string to check for suffix
188 * @param[in] std::string - suffix string
189 */
190bool ends_with(const std::string& str, const std::string& end)
191{
192 size_t slen = str.size(), elen = end.size();
193 if (slen < elen)
194 return false;
195 while (elen)
196 {
197 if (str[--slen] != end[--elen])
198 return false;
199 }
200 return true;
201}
202
Aatir37822f62019-12-10 14:40:27 -0600203/**
204 * @brief get data form raw PEL file.
205 * @param[in] std::string Name of file with raw PEL
206 * @return std::vector<uint8_t> char vector read from raw PEL file.
207 */
Aatirbad5f8a2019-12-10 15:27:16 -0600208std::vector<uint8_t> getFileData(const std::string& name)
Aatir37822f62019-12-10 14:40:27 -0600209{
210 std::ifstream file(name, std::ifstream::in);
211 if (file.good())
212 {
213 std::vector<uint8_t> data{std::istreambuf_iterator<char>(file),
214 std::istreambuf_iterator<char>()};
215 return data;
216 }
217 else
218 {
Aatir37822f62019-12-10 14:40:27 -0600219 return {};
220 }
221}
222
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800223/**
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800224 * @brief Initialize Python interpreter and gather all UD parser modules under
225 * the paths found in Python sys.path and the current user directory.
226 * This is to prevent calling a non-existant module which causes Python
227 * to print an import error message and breaking JSON output.
228 *
229 * @return std::vector<std::string> Vector of plugins found in filesystem
230 */
231std::vector<std::string> getPlugins()
232{
233 Py_Initialize();
234 std::vector<std::string> plugins;
235 std::vector<std::string> siteDirs;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800236 std::array<std::string, 2> parserDirs = {"udparsers", "srcparsers"};
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800237 PyObject* pName = PyUnicode_FromString("sys");
238 PyObject* pModule = PyImport_Import(pName);
239 Py_XDECREF(pName);
240 PyObject* pDict = PyModule_GetDict(pModule);
241 Py_XDECREF(pModule);
242 PyObject* pResult = PyDict_GetItemString(pDict, "path");
243 PyObject* pValue = PyUnicode_FromString(".");
244 PyList_Append(pResult, pValue);
245 Py_XDECREF(pValue);
246 auto list_size = PyList_Size(pResult);
247 for (auto i = 0; i < list_size; i++)
248 {
249 PyObject* item = PyList_GetItem(pResult, i);
250 PyObject* pBytes = PyUnicode_AsEncodedString(item, "utf-8", "~E~");
251 const char* output = PyBytes_AS_STRING(pBytes);
252 Py_XDECREF(pBytes);
253 std::string tmpStr(output);
254 siteDirs.push_back(tmpStr);
255 }
256 for (const auto& dir : siteDirs)
257 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800258 for (const auto& parserDir : parserDirs)
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800259 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800260 if (fs::exists(dir + "/" + parserDir))
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800261 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800262 for (const auto& entry :
263 fs::directory_iterator(dir + "/" + parserDir))
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800264 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800265 if (entry.is_directory() and
266 fs::exists(entry.path().string() + "/" +
267 entry.path().stem().string() + ".py"))
268 {
269 plugins.push_back(entry.path().stem());
270 }
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800271 }
272 }
273 }
274 }
275 return plugins;
276}
277
278/**
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800279 * @brief Creates JSON string of a PEL entry if fullPEL is false or prints to
280 * stdout the full PEL in JSON if fullPEL is true
281 * @param[in] itr - std::map iterator of <uint32_t, BCDTime>
282 * @param[in] hidden - Boolean to include hidden PELs
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800283 * @param[in] includeInfo - Boolean to include informational PELs
Miguel Gomez011ccae2021-03-25 23:42:09 +0000284 * @param[in] critSysTerm - Boolean to include critical error and system
285 * termination PELs
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800286 * @param[in] fullPEL - Boolean to print full JSON representation of PEL
287 * @param[in] foundPEL - Boolean to check if any PEL is present
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800288 * @param[in] scrubRegex - SRC regex object
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800289 * @param[in] plugins - Vector of strings of plugins found in filesystem
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800290 * @param[in] hexDump - Boolean to print hexdump of PEL instead of JSON
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800291 * @return std::string - JSON string of PEL entry (empty if fullPEL is true)
292 */
Aatir7b291ec2019-11-19 10:37:37 -0600293template <typename T>
Miguel Gomez011ccae2021-03-25 23:42:09 +0000294std::string genPELJSON(T itr, bool hidden, bool includeInfo, bool critSysTerm,
295 bool fullPEL, bool& foundPEL,
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800296 const std::optional<std::regex>& scrubRegex,
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500297 const std::vector<std::string>& plugins, bool hexDump,
298 bool archive)
Aatir7b291ec2019-11-19 10:37:37 -0600299{
300 std::size_t found;
301 std::string val;
302 char tmpValStr[50];
303 std::string listStr;
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700304 char name[51];
Sumit Kumar104c7962022-02-09 06:30:39 -0600305 sprintf(name, "/%.2X%.2X%.2X%.2X%.2X%.2X%.2X%.2X_%.8X",
306 static_cast<uint8_t>((itr.second >> 56) & 0xFF),
307 static_cast<uint8_t>((itr.second >> 48) & 0xFF),
308 static_cast<uint8_t>((itr.second >> 40) & 0xFF),
309 static_cast<uint8_t>((itr.second >> 32) & 0xFF),
310 static_cast<uint8_t>((itr.second >> 24) & 0xFF),
311 static_cast<uint8_t>((itr.second >> 16) & 0xFF),
312 static_cast<uint8_t>((itr.second >> 8) & 0xFF),
313 static_cast<uint8_t>(itr.second & 0xFF), itr.first);
314
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500315 auto fileName = (archive ? pelLogDir() + "/archive" : pelLogDir()) + name;
Aatir7b291ec2019-11-19 10:37:37 -0600316 try
317 {
Aatir37822f62019-12-10 14:40:27 -0600318 std::vector<uint8_t> data = getFileData(fileName);
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800319 if (data.empty())
Aatir37822f62019-12-10 14:40:27 -0600320 {
Matt Spinler7f1b9052022-03-22 09:18:58 -0500321 log<level::ERR>("Empty PEL file",
322 entry("FILENAME=%s", fileName.c_str()));
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800323 return listStr;
324 }
325 PEL pel{data};
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800326 if (!pel.valid())
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800327 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800328 return listStr;
329 }
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800330 if (!includeInfo && pel.userHeader().severity() == 0)
331 {
332 return listStr;
333 }
Miguel Gomez011ccae2021-03-25 23:42:09 +0000334 if (critSysTerm && pel.userHeader().severity() != critSysTermSeverity)
335 {
336 return listStr;
337 }
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800338 std::bitset<16> actionFlags{pel.userHeader().actionFlags()};
339 if (!hidden && actionFlags.test(hiddenFlagBit))
340 {
341 return listStr;
342 }
343 if (pel.primarySRC() && scrubRegex)
344 {
345 val = pel.primarySRC().value()->asciiString();
346 if (std::regex_search(trimEnd(val), scrubRegex.value(),
347 std::regex_constants::match_not_null))
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800348 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800349 return listStr;
350 }
351 }
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800352 if (hexDump)
353 {
354 std::cout << dumpHex(std::data(pel.data()), pel.size(), 0, false)
355 << std::endl;
356 }
357 else if (fullPEL)
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800358 {
359 if (!foundPEL)
360 {
361 std::cout << "[\n";
362 foundPEL = true;
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800363 }
364 else
Aatir7b291ec2019-11-19 10:37:37 -0600365 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800366 std::cout << ",\n\n";
367 }
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800368 pel.toJSON(registry, plugins);
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800369 }
370 else
371 {
372 // id
Matt Spinler3025d0b2021-06-02 15:12:52 -0600373 listStr += " \"" +
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800374 getNumberString("0x%X", pel.privateHeader().id()) +
375 "\": {\n";
376 // ASCII
377 if (pel.primarySRC())
378 {
379 val = pel.primarySRC().value()->asciiString();
Matt Spinler3025d0b2021-06-02 15:12:52 -0600380 jsonInsert(listStr, "SRC", trimEnd(val), 2);
381
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800382 // Registry message
383 auto regVal = pel.primarySRC().value()->getErrorDetails(
384 registry, DetailLevel::message, true);
385 if (regVal)
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800386 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800387 val = regVal.value();
Matt Spinler3025d0b2021-06-02 15:12:52 -0600388 jsonInsert(listStr, "Message", val, 2);
Aatir37822f62019-12-10 14:40:27 -0600389 }
Aatir7b291ec2019-11-19 10:37:37 -0600390 }
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800391 else
392 {
Matt Spinler3025d0b2021-06-02 15:12:52 -0600393 jsonInsert(listStr, "SRC", "No SRC", 2);
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800394 }
Matt Spinler3025d0b2021-06-02 15:12:52 -0600395
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800396 // platformid
Matt Spinler3025d0b2021-06-02 15:12:52 -0600397 jsonInsert(listStr, "PLID",
398 getNumberString("0x%X", pel.privateHeader().plid()), 2);
399
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800400 // creatorid
401 std::string creatorID =
402 getNumberString("%c", pel.privateHeader().creatorID());
403 val = pv::creatorIDs.count(creatorID) ? pv::creatorIDs.at(creatorID)
404 : "Unknown Creator ID";
Matt Spinler3025d0b2021-06-02 15:12:52 -0600405 jsonInsert(listStr, "CreatorID", val, 2);
406
407 // subsystem
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800408 std::string subsystem = pv::getValue(pel.userHeader().subsystem(),
409 pel_values::subsystemValues);
Matt Spinler3025d0b2021-06-02 15:12:52 -0600410 jsonInsert(listStr, "Subsystem", subsystem, 2);
411
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800412 // commit time
413 sprintf(tmpValStr, "%02X/%02X/%02X%02X %02X:%02X:%02X",
414 pel.privateHeader().commitTimestamp().month,
415 pel.privateHeader().commitTimestamp().day,
416 pel.privateHeader().commitTimestamp().yearMSB,
417 pel.privateHeader().commitTimestamp().yearLSB,
418 pel.privateHeader().commitTimestamp().hour,
419 pel.privateHeader().commitTimestamp().minutes,
420 pel.privateHeader().commitTimestamp().seconds);
Matt Spinler3025d0b2021-06-02 15:12:52 -0600421 jsonInsert(listStr, "Commit Time", tmpValStr, 2);
422
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800423 // severity
424 std::string severity = pv::getValue(pel.userHeader().severity(),
425 pel_values::severityValues);
Matt Spinler3025d0b2021-06-02 15:12:52 -0600426 jsonInsert(listStr, "Sev", severity, 2);
427
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800428 // compID
Matt Spinler3025d0b2021-06-02 15:12:52 -0600429 jsonInsert(listStr, "CompID",
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800430 getNumberString(
Matt Spinler3025d0b2021-06-02 15:12:52 -0600431 "0x%X", pel.privateHeader().header().componentID),
432 2);
433
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800434 found = listStr.rfind(",");
435 if (found != std::string::npos)
436 {
437 listStr.replace(found, 1, "");
Matt Spinler3025d0b2021-06-02 15:12:52 -0600438 listStr += " },\n";
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800439 }
440 foundPEL = true;
Aatir7b291ec2019-11-19 10:37:37 -0600441 }
442 }
Patrick Williams66491c62021-10-06 12:23:37 -0500443 catch (const std::exception& e)
Aatir7b291ec2019-11-19 10:37:37 -0600444 {
Matt Spinler7f1b9052022-03-22 09:18:58 -0500445 log<level::ERR>("Hit exception while reading PEL File",
446 entry("FILENAME=%s", fileName.c_str()),
447 entry("ERROR=%s", e.what()));
Aatir7b291ec2019-11-19 10:37:37 -0600448 }
449 return listStr;
450}
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800451
Aatir7b291ec2019-11-19 10:37:37 -0600452/**
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800453 * @brief Print a list of PELs or a JSON array of PELs
454 * @param[in] order - Boolean to print in reverse orser
455 * @param[in] hidden - Boolean to include hidden PELs
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800456 * @param[in] includeInfo - Boolean to include informational PELs
Miguel Gomez011ccae2021-03-25 23:42:09 +0000457 * @param[in] critSysTerm - Boolean to include critical error and system
458 * termination PELs
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800459 * @param[in] fullPEL - Boolean to print full PEL into a JSON array
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800460 * @param[in] scrubRegex - SRC regex object
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800461 * @param[in] hexDump - Boolean to print hexdump of PEL instead of JSON
Aatir7b291ec2019-11-19 10:37:37 -0600462 */
Miguel Gomez011ccae2021-03-25 23:42:09 +0000463void printPELs(bool order, bool hidden, bool includeInfo, bool critSysTerm,
464 bool fullPEL, const std::optional<std::regex>& scrubRegex,
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500465 bool hexDump, bool archive = false)
Aatir7b291ec2019-11-19 10:37:37 -0600466{
467 std::string listStr;
Sumit Kumar104c7962022-02-09 06:30:39 -0600468 std::vector<std::pair<uint32_t, uint64_t>> PELs;
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800469 std::vector<std::string> plugins;
Aatir7b291ec2019-11-19 10:37:37 -0600470 listStr = "{\n";
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500471 for (auto it = (archive ? fs::directory_iterator(pelLogDir() + "/archive")
472 : fs::directory_iterator(pelLogDir()));
Aatir7b291ec2019-11-19 10:37:37 -0600473 it != fs::directory_iterator(); ++it)
474 {
475 if (!fs::is_regular_file((*it).path()))
476 {
477 continue;
478 }
Aatir37822f62019-12-10 14:40:27 -0600479 else
Aatir7b291ec2019-11-19 10:37:37 -0600480 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600481 PELs.emplace_back(fileNameToPELId((*it).path().filename()),
482 fileNameToTimestamp((*it).path().filename()));
Aatir7b291ec2019-11-19 10:37:37 -0600483 }
484 }
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500485
Sumit Kumar104c7962022-02-09 06:30:39 -0600486 // Sort the pairs based on second time parameter
487 std::sort(PELs.begin(), PELs.end(), [](auto& left, auto& right) {
488 return left.second < right.second;
489 });
490
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800491 bool foundPEL = false;
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800492
493 if (fullPEL && !hexDump)
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800494 {
495 plugins = getPlugins();
496 }
Miguel Gomez011ccae2021-03-25 23:42:09 +0000497 auto buildJSON = [&listStr, &hidden, &includeInfo, &critSysTerm, &fullPEL,
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500498 &foundPEL, &scrubRegex, &plugins, &hexDump,
499 &archive](const auto& i) {
Miguel Gomez011ccae2021-03-25 23:42:09 +0000500 listStr += genPELJSON(i, hidden, includeInfo, critSysTerm, fullPEL,
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500501 foundPEL, scrubRegex, plugins, hexDump, archive);
Aatir37822f62019-12-10 14:40:27 -0600502 };
Aatir7b291ec2019-11-19 10:37:37 -0600503 if (order)
504 {
505 std::for_each(PELs.rbegin(), PELs.rend(), buildJSON);
506 }
507 else
508 {
509 std::for_each(PELs.begin(), PELs.end(), buildJSON);
510 }
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800511 if (hexDump)
512 {
513 return;
514 }
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800515 if (foundPEL)
Aatir7b291ec2019-11-19 10:37:37 -0600516 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800517 if (fullPEL)
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800518 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800519 std::cout << "]" << std::endl;
520 }
521 else
522 {
523 std::size_t found;
524 found = listStr.rfind(",");
525 if (found != std::string::npos)
526 {
527 listStr.replace(found, 1, "");
528 listStr += "}\n";
529 printf("%s", listStr.c_str());
530 }
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800531 }
532 }
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800533 else
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800534 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800535 std::string emptyJSON = fullPEL ? "[]" : "{}";
536 std::cout << emptyJSON << std::endl;
Aatir7b291ec2019-11-19 10:37:37 -0600537 }
538}
Aatir186ce8c2019-10-20 15:13:39 -0500539
Matt Spinler27de6f32020-02-21 08:35:57 -0600540/**
541 * @brief Calls the function passed in on the PEL with the ID
542 * passed in.
543 *
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800544 * @param[in] id - The string version of the PEL or BMC Log ID, either with or
Matt Spinler27de6f32020-02-21 08:35:57 -0600545 * without the 0x prefix.
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800546 * @param[in] func - The std::function<void(const PEL&, bool hexDump)> function
547 * to run.
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800548 * @param[in] useBMC - if true, search by BMC Log ID, else search by PEL ID
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800549 * @param[in] hexDump - Boolean to print hexdump of PEL instead of JSON
Matt Spinler27de6f32020-02-21 08:35:57 -0600550 */
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800551void callFunctionOnPEL(const std::string& id, const PELFunc& func,
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500552 bool useBMC = false, bool hexDump = false,
553 bool archive = false)
Matt Spinler27de6f32020-02-21 08:35:57 -0600554{
555 std::string pelID{id};
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800556 if (!useBMC)
Matt Spinler27de6f32020-02-21 08:35:57 -0600557 {
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800558 std::transform(pelID.begin(), pelID.end(), pelID.begin(), toupper);
559
560 if (pelID.find("0X") == 0)
561 {
562 pelID.erase(0, 2);
563 }
Matt Spinler27de6f32020-02-21 08:35:57 -0600564 }
565
566 bool found = false;
567
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500568 for (auto it = (archive ? fs::directory_iterator(pelLogDir() + "/archive")
569 : fs::directory_iterator(pelLogDir()));
Matt Spinler27de6f32020-02-21 08:35:57 -0600570 it != fs::directory_iterator(); ++it)
571 {
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800572 // The PEL ID is part of the filename, so use that to find the PEL if
573 // "useBMC" is set to false, otherwise we have to search within the PEL
Matt Spinler27de6f32020-02-21 08:35:57 -0600574
575 if (!fs::is_regular_file((*it).path()))
576 {
577 continue;
578 }
579
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800580 if ((ends_with((*it).path(), pelID) && !useBMC) || useBMC)
Matt Spinler27de6f32020-02-21 08:35:57 -0600581 {
Matt Spinler27de6f32020-02-21 08:35:57 -0600582 auto data = getFileData((*it).path());
583 if (!data.empty())
584 {
585 PEL pel{data};
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800586 if (!useBMC ||
587 (useBMC && pel.obmcLogID() == std::stoul(id, nullptr, 0)))
Matt Spinler27de6f32020-02-21 08:35:57 -0600588 {
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800589 found = true;
590 try
591 {
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800592 func(pel, hexDump);
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800593 break;
594 }
Patrick Williams66491c62021-10-06 12:23:37 -0500595 catch (const std::exception& e)
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800596 {
597 std::cerr << " Internal function threw an exception: "
598 << e.what() << "\n";
599 exit(1);
600 }
Matt Spinler27de6f32020-02-21 08:35:57 -0600601 }
602 }
603 else
604 {
605 std::cerr << "Could not read PEL file\n";
606 exit(1);
607 }
Matt Spinler27de6f32020-02-21 08:35:57 -0600608 }
609 }
610
611 if (!found)
612 {
613 std::cerr << "PEL not found\n";
614 exit(1);
615 }
616}
617
618/**
Matt Spinler25d986c2021-02-10 13:26:18 -0600619 * @brief Delete a PEL file.
Matt Spinler27de6f32020-02-21 08:35:57 -0600620 *
Matt Spinler25d986c2021-02-10 13:26:18 -0600621 * @param[in] id - The PEL ID to delete.
Matt Spinler27de6f32020-02-21 08:35:57 -0600622 */
Matt Spinler25d986c2021-02-10 13:26:18 -0600623void deletePEL(const std::string& id)
Matt Spinler27de6f32020-02-21 08:35:57 -0600624{
Matt Spinler25d986c2021-02-10 13:26:18 -0600625 std::string pelID{id};
Matt Spinler27de6f32020-02-21 08:35:57 -0600626
Matt Spinler25d986c2021-02-10 13:26:18 -0600627 std::transform(pelID.begin(), pelID.end(), pelID.begin(), toupper);
628
629 if (pelID.find("0X") == 0)
Matt Spinler27de6f32020-02-21 08:35:57 -0600630 {
Matt Spinler25d986c2021-02-10 13:26:18 -0600631 pelID.erase(0, 2);
Matt Spinler27de6f32020-02-21 08:35:57 -0600632 }
Matt Spinler25d986c2021-02-10 13:26:18 -0600633
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700634 for (auto it = fs::directory_iterator(pelLogDir());
Matt Spinler25d986c2021-02-10 13:26:18 -0600635 it != fs::directory_iterator(); ++it)
Matt Spinler27de6f32020-02-21 08:35:57 -0600636 {
Matt Spinler25d986c2021-02-10 13:26:18 -0600637 if (ends_with((*it).path(), pelID))
638 {
639 fs::remove((*it).path());
640 }
Matt Spinler27de6f32020-02-21 08:35:57 -0600641 }
642}
643
644/**
Matt Spinler25d986c2021-02-10 13:26:18 -0600645 * @brief Delete all PEL files.
Matt Spinler27de6f32020-02-21 08:35:57 -0600646 */
647void deleteAllPELs()
648{
Matt Spinler7f1b9052022-03-22 09:18:58 -0500649 log<level::INFO>("peltool deleting all event logs");
Matt Spinler27de6f32020-02-21 08:35:57 -0600650
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700651 for (const auto& entry : fs::directory_iterator(pelLogDir()))
Matt Spinler27de6f32020-02-21 08:35:57 -0600652 {
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500653 if (!fs::is_regular_file(entry.path()))
654 {
655 continue;
656 }
Matt Spinler25d986c2021-02-10 13:26:18 -0600657 fs::remove(entry.path());
Matt Spinler27de6f32020-02-21 08:35:57 -0600658 }
659}
660
Matt Spinler1b420bc2020-02-21 08:54:25 -0600661/**
662 * @brief Display a single PEL
663 *
664 * @param[in] pel - the PEL to display
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800665 * @param[in] hexDump - Boolean to print hexdump of PEL instead of JSON
Matt Spinler1b420bc2020-02-21 08:54:25 -0600666 */
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800667void displayPEL(const PEL& pel, bool hexDump)
Matt Spinler1b420bc2020-02-21 08:54:25 -0600668{
669 if (pel.valid())
670 {
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800671 if (hexDump)
672 {
673 std::string dstr =
674 dumpHex(std::data(pel.data()), pel.size(), 0, false);
675 std::cout << dstr << std::endl;
676 }
677 else
678 {
679 auto plugins = getPlugins();
680 pel.toJSON(registry, plugins);
681 }
Matt Spinler1b420bc2020-02-21 08:54:25 -0600682 }
683 else
684 {
685 std::cerr << "PEL was malformed\n";
686 exit(1);
687 }
688}
689
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800690/**
691 * @brief Print number of PELs
692 * @param[in] hidden - Bool to include hidden logs
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800693 * @param[in] includeInfo - Bool to include informational logs
Miguel Gomez011ccae2021-03-25 23:42:09 +0000694 * @param[in] critSysTerm - Bool to include CritSysTerm
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800695 * @param[in] scrubRegex - SRC regex object
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800696 */
Miguel Gomez011ccae2021-03-25 23:42:09 +0000697void printPELCount(bool hidden, bool includeInfo, bool critSysTerm,
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800698 const std::optional<std::regex>& scrubRegex)
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800699{
700 std::size_t count = 0;
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700701
702 for (auto it = fs::directory_iterator(pelLogDir());
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800703 it != fs::directory_iterator(); ++it)
704 {
705 if (!fs::is_regular_file((*it).path()))
706 {
707 continue;
708 }
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800709 std::vector<uint8_t> data = getFileData((*it).path());
710 if (data.empty())
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800711 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800712 continue;
713 }
714 PEL pel{data};
715 if (!pel.valid())
716 {
717 continue;
718 }
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800719 if (!includeInfo && pel.userHeader().severity() == 0)
720 {
721 continue;
722 }
Miguel Gomez011ccae2021-03-25 23:42:09 +0000723 if (critSysTerm && pel.userHeader().severity() != critSysTermSeverity)
724 {
725 continue;
726 }
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800727 std::bitset<16> actionFlags{pel.userHeader().actionFlags()};
728 if (!hidden && actionFlags.test(hiddenFlagBit))
729 {
730 continue;
731 }
732 if (pel.primarySRC() && scrubRegex)
733 {
734 std::string val = pel.primarySRC().value()->asciiString();
735 if (std::regex_search(trimEnd(val), scrubRegex.value(),
736 std::regex_constants::match_not_null))
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800737 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800738 continue;
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800739 }
740 }
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800741 count++;
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800742 }
743 std::cout << "{\n"
744 << " \"Number of PELs found\": "
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800745 << getNumberString("%d", count) << "\n}\n";
746}
747
748/**
749 * @brief Generate regex pattern object from file contents
750 * @param[in] scrubFile - File containing regex pattern
751 * @return std::regex - SRC regex object
752 */
753std::regex genRegex(std::string& scrubFile)
754{
755 std::string pattern;
756 std::ifstream contents(scrubFile);
757 if (contents.fail())
758 {
759 std::cerr << "Can't open \"" << scrubFile << "\"\n";
760 exit(1);
761 }
762 std::string line;
763 while (std::getline(contents, line))
764 {
765 if (!line.empty())
766 {
767 pattern.append(line + "|");
768 }
769 }
770 try
771 {
772 std::regex scrubRegex(pattern, std::regex::icase);
773 return scrubRegex;
774 }
Patrick Williams66491c62021-10-06 12:23:37 -0500775 catch (const std::regex_error& e)
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800776 {
777 if (e.code() == std::regex_constants::error_collate)
778 std::cerr << "Invalid collating element request\n";
779 else if (e.code() == std::regex_constants::error_ctype)
780 std::cerr << "Invalid character class\n";
781 else if (e.code() == std::regex_constants::error_escape)
782 std::cerr << "Invalid escape character or trailing escape\n";
783 else if (e.code() == std::regex_constants::error_backref)
784 std::cerr << "Invalid back reference\n";
785 else if (e.code() == std::regex_constants::error_brack)
786 std::cerr << "Mismatched bracket ([ or ])\n";
787 else if (e.code() == std::regex_constants::error_paren)
788 {
789 // to catch return code error_badrepeat when error_paren is retured
790 // instead
791 size_t pos = pattern.find_first_of("*+?{");
792 while (pos != std::string::npos)
793 {
794 if (pos == 0 || pattern.substr(pos - 1, 1) == "|")
795 {
796 std::cerr
797 << "A repetition character (*, ?, +, or {) was not "
798 "preceded by a valid regular expression\n";
799 exit(1);
800 }
801 pos = pattern.find_first_of("*+?{", pos + 1);
802 }
803 std::cerr << "Mismatched parentheses (( or ))\n";
804 }
805 else if (e.code() == std::regex_constants::error_brace)
806 std::cerr << "Mismatched brace ({ or })\n";
807 else if (e.code() == std::regex_constants::error_badbrace)
808 std::cerr << "Invalid range inside a { }\n";
809 else if (e.code() == std::regex_constants::error_range)
810 std::cerr << "Invalid character range (e.g., [z-a])\n";
811 else if (e.code() == std::regex_constants::error_space)
812 std::cerr << "Insufficient memory to handle regular expression\n";
813 else if (e.code() == std::regex_constants::error_badrepeat)
814 std::cerr << "A repetition character (*, ?, +, or {) was not "
815 "preceded by a valid regular expression\n";
816 else if (e.code() == std::regex_constants::error_complexity)
817 std::cerr << "The requested match is too complex\n";
818 else if (e.code() == std::regex_constants::error_stack)
819 std::cerr << "Insufficient memory to evaluate a match\n";
820 exit(1);
821 }
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800822}
823
Aatir186ce8c2019-10-20 15:13:39 -0500824static void exitWithError(const std::string& help, const char* err)
825{
826 std::cerr << "ERROR: " << err << std::endl << help << std::endl;
827 exit(-1);
828}
829
830int main(int argc, char** argv)
831{
832 CLI::App app{"OpenBMC PEL Tool"};
833 std::string fileName;
Aatire340c132019-12-09 14:19:29 -0600834 std::string idPEL;
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800835 std::string bmcId;
Matt Spinler27de6f32020-02-21 08:35:57 -0600836 std::string idToDelete;
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800837 std::string scrubFile;
838 std::optional<std::regex> scrubRegex;
Aatire340c132019-12-09 14:19:29 -0600839 bool listPEL = false;
840 bool listPELDescOrd = false;
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800841 bool hidden = false;
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800842 bool includeInfo = false;
Miguel Gomez011ccae2021-03-25 23:42:09 +0000843 bool critSysTerm = false;
Matt Spinler27de6f32020-02-21 08:35:57 -0600844 bool deleteAll = false;
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800845 bool showPELCount = false;
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800846 bool fullPEL = false;
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800847 bool hexDump = false;
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500848 bool archive = false;
Matt Spinler27de6f32020-02-21 08:35:57 -0600849
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800850 app.set_help_flag("--help", "Print this help message and exit");
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800851 app.add_option("--file", fileName, "Display a PEL using its Raw PEL file");
Aatire340c132019-12-09 14:19:29 -0600852 app.add_option("-i, --id", idPEL, "Display a PEL based on its ID");
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800853 app.add_option("--bmc-id", bmcId,
854 "Display a PEL based on its BMC Event ID");
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800855 app.add_flag("-a", fullPEL, "Display all PELs");
Aatirbad5f8a2019-12-10 15:27:16 -0600856 app.add_flag("-l", listPEL, "List PELs");
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800857 app.add_flag("-n", showPELCount, "Show number of PELs");
Aatir7b291ec2019-11-19 10:37:37 -0600858 app.add_flag("-r", listPELDescOrd, "Reverse order of output");
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800859 app.add_flag("-h", hidden, "Include hidden PELs");
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800860 app.add_flag("-f,--info", includeInfo, "Include informational PELs");
Miguel Gomez011ccae2021-03-25 23:42:09 +0000861 app.add_flag("-t, --termination", critSysTerm,
862 "List only critical system terminating PELs");
Matt Spinler27de6f32020-02-21 08:35:57 -0600863 app.add_option("-d, --delete", idToDelete, "Delete a PEL based on its ID");
864 app.add_flag("-D, --delete-all", deleteAll, "Delete all PELs");
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800865 app.add_option("-s, --scrub", scrubFile,
866 "File containing SRC regular expressions to ignore");
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800867 app.add_flag("-x", hexDump, "Display PEL(s) in hexdump instead of JSON");
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500868 app.add_flag("--archive", archive, "List or display archived PELs");
Matt Spinler27de6f32020-02-21 08:35:57 -0600869
Aatir186ce8c2019-10-20 15:13:39 -0500870 CLI11_PARSE(app, argc, argv);
871
872 if (!fileName.empty())
873 {
874 std::vector<uint8_t> data = getFileData(fileName);
875 if (!data.empty())
876 {
877 PEL pel{data};
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800878 if (hexDump)
879 {
880 std::string dstr =
881 dumpHex(std::data(pel.data()), pel.size(), 0, false);
882 std::cout << dstr << std::endl;
883 }
884 else
885 {
886 auto plugins = getPlugins();
887 pel.toJSON(registry, plugins);
888 }
Aatir186ce8c2019-10-20 15:13:39 -0500889 }
890 else
891 {
892 exitWithError(app.help("", CLI::AppFormatMode::All),
893 "Raw PEL file can't be read.");
894 }
895 }
Aatire340c132019-12-09 14:19:29 -0600896 else if (!idPEL.empty())
897 {
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500898 callFunctionOnPEL(idPEL, displayPEL, false, hexDump, archive);
Harisuddin Mohamed Isa58d3a982020-09-17 19:48:05 +0800899 }
900 else if (!bmcId.empty())
901 {
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500902 callFunctionOnPEL(bmcId, displayPEL, true, hexDump, archive);
Aatire340c132019-12-09 14:19:29 -0600903 }
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800904 else if (fullPEL || listPEL)
Aatir7b291ec2019-11-19 10:37:37 -0600905 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800906 if (!scrubFile.empty())
907 {
908 scrubRegex = genRegex(scrubFile);
909 }
Miguel Gomez011ccae2021-03-25 23:42:09 +0000910 printPELs(listPELDescOrd, hidden, includeInfo, critSysTerm, fullPEL,
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500911 scrubRegex, hexDump, archive);
Harisuddin Mohamed Isad4002f32020-02-26 16:19:58 +0800912 }
913 else if (showPELCount)
914 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800915 if (!scrubFile.empty())
916 {
917 scrubRegex = genRegex(scrubFile);
918 }
Miguel Gomez011ccae2021-03-25 23:42:09 +0000919 printPELCount(hidden, includeInfo, critSysTerm, scrubRegex);
Aatir7b291ec2019-11-19 10:37:37 -0600920 }
Matt Spinler27de6f32020-02-21 08:35:57 -0600921 else if (!idToDelete.empty())
922 {
Matt Spinler25d986c2021-02-10 13:26:18 -0600923 deletePEL(idToDelete);
Matt Spinler27de6f32020-02-21 08:35:57 -0600924 }
925 else if (deleteAll)
926 {
927 deleteAllPELs();
928 }
Aatir186ce8c2019-10-20 15:13:39 -0500929 else
930 {
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800931 std::cout << app.help("", CLI::AppFormatMode::All) << std::endl;
Aatir186ce8c2019-10-20 15:13:39 -0500932 }
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800933 Py_Finalize();
Aatir186ce8c2019-10-20 15:13:39 -0500934 return 0;
935}