blob: 0e248502dfb7a74caf30eb65592202f989597271 [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"
Matt Spinler2ea96f62022-02-23 16:31:01 -060024#include "trace.hpp"
Aatir186ce8c2019-10-20 15:13:39 -050025
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +080026#include <Python.h>
Matt Spinler2ea96f62022-02-23 16:31:01 -060027#include <fmt/format.h>
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +080028
Aatir186ce8c2019-10-20 15:13:39 -050029#include <CLI/CLI.hpp>
Aatir7b291ec2019-11-19 10:37:37 -060030#include <bitset>
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +080031#include <fstream>
Aatir186ce8c2019-10-20 15:13:39 -050032#include <iostream>
Aatir7b291ec2019-11-19 10:37:37 -060033#include <regex>
Aatir186ce8c2019-10-20 15:13:39 -050034#include <string>
Aatir7b291ec2019-11-19 10:37:37 -060035#include <xyz/openbmc_project/Common/File/error.hpp>
Aatir186ce8c2019-10-20 15:13:39 -050036
William A. Kennington IIIb6b25572021-05-19 17:09:41 -070037#include "config_main.h"
38
Aatir7b291ec2019-11-19 10:37:37 -060039namespace fs = std::filesystem;
Aatir186ce8c2019-10-20 15:13:39 -050040using namespace openpower::pels;
Aatir7b291ec2019-11-19 10:37:37 -060041namespace file_error = sdbusplus::xyz::openbmc_project::Common::File::Error;
42namespace message = openpower::pels::message;
43namespace pv = openpower::pels::pel_values;
Aatir186ce8c2019-10-20 15:13:39 -050044
Miguel Gomez011ccae2021-03-25 23:42:09 +000045const uint8_t critSysTermSeverity = 0x51;
46
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +080047using PELFunc = std::function<void(const PEL&, bool hexDump)>;
Matt Spinler0d804ef2020-05-12 16:16:26 -050048message::Registry registry(getPELReadOnlyDataPath() / message::registryFileName,
Matt Spinlerd8e29002020-04-09 09:11:22 -050049 false);
Matt Spinler27de6f32020-02-21 08:35:57 -060050namespace service
51{
52constexpr auto logging = "xyz.openbmc_project.Logging";
53} // namespace service
54
55namespace interface
56{
57constexpr auto deleteObj = "xyz.openbmc_project.Object.Delete";
58constexpr auto deleteAll = "xyz.openbmc_project.Collection.DeleteAll";
59} // namespace interface
60
61namespace object_path
62{
63constexpr auto logEntry = "/xyz/openbmc_project/logging/entry/";
64constexpr auto logging = "/xyz/openbmc_project/logging";
65} // namespace object_path
66
William A. Kennington IIIb6b25572021-05-19 17:09:41 -070067std::string pelLogDir()
68{
69 return std::string(EXTENSION_PERSIST_DIR) + "/pels/logs";
70}
71
Aatire340c132019-12-09 14:19:29 -060072/**
Aatir37822f62019-12-10 14:40:27 -060073 * @brief helper function to get PEL commit timestamp from file name
Sumit Kumar104c7962022-02-09 06:30:39 -060074 * @retrun uint64_t - PEL commit timestamp
Aatir37822f62019-12-10 14:40:27 -060075 * @param[in] std::string - file name
76 */
Sumit Kumar104c7962022-02-09 06:30:39 -060077uint64_t fileNameToTimestamp(const std::string& fileName)
Aatir37822f62019-12-10 14:40:27 -060078{
79 std::string token = fileName.substr(0, fileName.find("_"));
80 int i = 0;
Sumit Kumar104c7962022-02-09 06:30:39 -060081 uint64_t bcdTime = 0;
Aatir37822f62019-12-10 14:40:27 -060082 if (token.length() >= 14)
83 {
84 try
85 {
Sumit Kumar104c7962022-02-09 06:30:39 -060086 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
87 bcdTime |= (static_cast<uint64_t>(tmp) << 56);
Aatir37822f62019-12-10 14:40:27 -060088 }
Patrick Williams66491c62021-10-06 12:23:37 -050089 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -060090 {
91 std::cout << "Conversion failure: " << err.what() << std::endl;
92 }
93 i += 2;
94 try
95 {
Sumit Kumar104c7962022-02-09 06:30:39 -060096 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
97 bcdTime |= (static_cast<uint64_t>(tmp) << 48);
Aatir37822f62019-12-10 14:40:27 -060098 }
Patrick Williams66491c62021-10-06 12:23:37 -050099 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600100 {
101 std::cout << "Conversion failure: " << err.what() << std::endl;
102 }
103 i += 2;
104 try
105 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600106 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
107 bcdTime |= (static_cast<uint64_t>(tmp) << 40);
Aatir37822f62019-12-10 14:40:27 -0600108 }
Patrick Williams66491c62021-10-06 12:23:37 -0500109 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600110 {
111 std::cout << "Conversion failure: " << err.what() << std::endl;
112 }
113 i += 2;
114 try
115 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600116 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
117 bcdTime |= (static_cast<uint64_t>(tmp) << 32);
Aatir37822f62019-12-10 14:40:27 -0600118 }
Patrick Williams66491c62021-10-06 12:23:37 -0500119 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600120 {
121 std::cout << "Conversion failure: " << err.what() << std::endl;
122 }
123 i += 2;
124 try
125 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600126 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
127 bcdTime |= (tmp << 24);
Aatir37822f62019-12-10 14:40:27 -0600128 }
Patrick Williams66491c62021-10-06 12:23:37 -0500129 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600130 {
131 std::cout << "Conversion failure: " << err.what() << std::endl;
132 }
133 i += 2;
134 try
135 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600136 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
137 bcdTime |= (tmp << 16);
Aatir37822f62019-12-10 14:40:27 -0600138 }
Patrick Williams66491c62021-10-06 12:23:37 -0500139 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600140 {
141 std::cout << "Conversion failure: " << err.what() << std::endl;
142 }
143 i += 2;
144 try
145 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600146 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
147 bcdTime |= (tmp << 8);
Aatir37822f62019-12-10 14:40:27 -0600148 }
Patrick Williams66491c62021-10-06 12:23:37 -0500149 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600150 {
151 std::cout << "Conversion failure: " << err.what() << std::endl;
152 }
153 i += 2;
154 try
155 {
Sumit Kumar104c7962022-02-09 06:30:39 -0600156 auto tmp = std::stoul(token.substr(i, 2), 0, 16);
157 bcdTime |= tmp;
Aatir37822f62019-12-10 14:40:27 -0600158 }
Patrick Williams66491c62021-10-06 12:23:37 -0500159 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600160 {
161 std::cout << "Conversion failure: " << err.what() << std::endl;
162 }
163 }
Sumit Kumar104c7962022-02-09 06:30:39 -0600164 return bcdTime;
Aatir37822f62019-12-10 14:40:27 -0600165}
166
167/**
168 * @brief helper function to get PEL id from file name
169 * @retrun uint32_t - PEL id
170 * @param[in] std::string - file name
171 */
172uint32_t fileNameToPELId(const std::string& fileName)
173{
174 uint32_t num = 0;
175 try
176 {
Sumit Kumara1e40842021-06-23 09:52:25 -0500177 num = std::stoul(fileName.substr(fileName.find("_") + 1), 0, 16);
Aatir37822f62019-12-10 14:40:27 -0600178 }
Patrick Williams66491c62021-10-06 12:23:37 -0500179 catch (const std::exception& err)
Aatir37822f62019-12-10 14:40:27 -0600180 {
181 std::cout << "Conversion failure: " << err.what() << std::endl;
182 }
183 return num;
184}
185
186/**
Aatire340c132019-12-09 14:19:29 -0600187 * @brief helper function to check string suffix
188 * @retrun bool - true with suffix matches
189 * @param[in] std::string - string to check for suffix
190 * @param[in] std::string - suffix string
191 */
192bool ends_with(const std::string& str, const std::string& end)
193{
194 size_t slen = str.size(), elen = end.size();
195 if (slen < elen)
196 return false;
197 while (elen)
198 {
199 if (str[--slen] != end[--elen])
200 return false;
201 }
202 return true;
203}
204
Aatir37822f62019-12-10 14:40:27 -0600205/**
206 * @brief get data form raw PEL file.
207 * @param[in] std::string Name of file with raw PEL
208 * @return std::vector<uint8_t> char vector read from raw PEL file.
209 */
Aatirbad5f8a2019-12-10 15:27:16 -0600210std::vector<uint8_t> getFileData(const std::string& name)
Aatir37822f62019-12-10 14:40:27 -0600211{
212 std::ifstream file(name, std::ifstream::in);
213 if (file.good())
214 {
215 std::vector<uint8_t> data{std::istreambuf_iterator<char>(file),
216 std::istreambuf_iterator<char>()};
217 return data;
218 }
219 else
220 {
Aatir37822f62019-12-10 14:40:27 -0600221 return {};
222 }
223}
224
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800225/**
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800226 * @brief Initialize Python interpreter and gather all UD parser modules under
227 * the paths found in Python sys.path and the current user directory.
228 * This is to prevent calling a non-existant module which causes Python
229 * to print an import error message and breaking JSON output.
230 *
231 * @return std::vector<std::string> Vector of plugins found in filesystem
232 */
233std::vector<std::string> getPlugins()
234{
235 Py_Initialize();
236 std::vector<std::string> plugins;
237 std::vector<std::string> siteDirs;
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800238 std::array<std::string, 2> parserDirs = {"udparsers", "srcparsers"};
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800239 PyObject* pName = PyUnicode_FromString("sys");
240 PyObject* pModule = PyImport_Import(pName);
241 Py_XDECREF(pName);
242 PyObject* pDict = PyModule_GetDict(pModule);
243 Py_XDECREF(pModule);
244 PyObject* pResult = PyDict_GetItemString(pDict, "path");
245 PyObject* pValue = PyUnicode_FromString(".");
246 PyList_Append(pResult, pValue);
247 Py_XDECREF(pValue);
248 auto list_size = PyList_Size(pResult);
249 for (auto i = 0; i < list_size; i++)
250 {
251 PyObject* item = PyList_GetItem(pResult, i);
252 PyObject* pBytes = PyUnicode_AsEncodedString(item, "utf-8", "~E~");
253 const char* output = PyBytes_AS_STRING(pBytes);
254 Py_XDECREF(pBytes);
255 std::string tmpStr(output);
256 siteDirs.push_back(tmpStr);
257 }
258 for (const auto& dir : siteDirs)
259 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800260 for (const auto& parserDir : parserDirs)
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800261 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800262 if (fs::exists(dir + "/" + parserDir))
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800263 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800264 for (const auto& entry :
265 fs::directory_iterator(dir + "/" + parserDir))
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800266 {
Harisuddin Mohamed Isac8d6cc62020-08-19 22:47:19 +0800267 if (entry.is_directory() and
268 fs::exists(entry.path().string() + "/" +
269 entry.path().stem().string() + ".py"))
270 {
271 plugins.push_back(entry.path().stem());
272 }
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800273 }
274 }
275 }
276 }
277 return plugins;
278}
279
280/**
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800281 * @brief Creates JSON string of a PEL entry if fullPEL is false or prints to
282 * stdout the full PEL in JSON if fullPEL is true
283 * @param[in] itr - std::map iterator of <uint32_t, BCDTime>
284 * @param[in] hidden - Boolean to include hidden PELs
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800285 * @param[in] includeInfo - Boolean to include informational PELs
Miguel Gomez011ccae2021-03-25 23:42:09 +0000286 * @param[in] critSysTerm - Boolean to include critical error and system
287 * termination PELs
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800288 * @param[in] fullPEL - Boolean to print full JSON representation of PEL
289 * @param[in] foundPEL - Boolean to check if any PEL is present
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800290 * @param[in] scrubRegex - SRC regex object
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800291 * @param[in] plugins - Vector of strings of plugins found in filesystem
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800292 * @param[in] hexDump - Boolean to print hexdump of PEL instead of JSON
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800293 * @return std::string - JSON string of PEL entry (empty if fullPEL is true)
294 */
Aatir7b291ec2019-11-19 10:37:37 -0600295template <typename T>
Miguel Gomez011ccae2021-03-25 23:42:09 +0000296std::string genPELJSON(T itr, bool hidden, bool includeInfo, bool critSysTerm,
297 bool fullPEL, bool& foundPEL,
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800298 const std::optional<std::regex>& scrubRegex,
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500299 const std::vector<std::string>& plugins, bool hexDump,
300 bool archive)
Aatir7b291ec2019-11-19 10:37:37 -0600301{
302 std::size_t found;
303 std::string val;
304 char tmpValStr[50];
305 std::string listStr;
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700306 char name[51];
Sumit Kumar104c7962022-02-09 06:30:39 -0600307 sprintf(name, "/%.2X%.2X%.2X%.2X%.2X%.2X%.2X%.2X_%.8X",
308 static_cast<uint8_t>((itr.second >> 56) & 0xFF),
309 static_cast<uint8_t>((itr.second >> 48) & 0xFF),
310 static_cast<uint8_t>((itr.second >> 40) & 0xFF),
311 static_cast<uint8_t>((itr.second >> 32) & 0xFF),
312 static_cast<uint8_t>((itr.second >> 24) & 0xFF),
313 static_cast<uint8_t>((itr.second >> 16) & 0xFF),
314 static_cast<uint8_t>((itr.second >> 8) & 0xFF),
315 static_cast<uint8_t>(itr.second & 0xFF), itr.first);
316
Sumit Kumar1d8835b2021-06-07 09:35:30 -0500317 auto fileName = (archive ? pelLogDir() + "/archive" : pelLogDir()) + name;
Aatir7b291ec2019-11-19 10:37:37 -0600318 try
319 {
Aatir37822f62019-12-10 14:40:27 -0600320 std::vector<uint8_t> data = getFileData(fileName);
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800321 if (data.empty())
Aatir37822f62019-12-10 14:40:27 -0600322 {
Matt Spinler2ea96f62022-02-23 16:31:01 -0600323 trace::error(fmt::format("Empty PEL file {}", fileName));
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800324 return listStr;
325 }
326 PEL pel{data};
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800327 if (!pel.valid())
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800328 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800329 return listStr;
330 }
Harisuddin Mohamed Isa0c57a672020-03-27 14:16:28 +0800331 if (!includeInfo && pel.userHeader().severity() == 0)
332 {
333 return listStr;
334 }
Miguel Gomez011ccae2021-03-25 23:42:09 +0000335 if (critSysTerm && pel.userHeader().severity() != critSysTermSeverity)
336 {
337 return listStr;
338 }
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800339 std::bitset<16> actionFlags{pel.userHeader().actionFlags()};
340 if (!hidden && actionFlags.test(hiddenFlagBit))
341 {
342 return listStr;
343 }
344 if (pel.primarySRC() && scrubRegex)
345 {
346 val = pel.primarySRC().value()->asciiString();
347 if (std::regex_search(trimEnd(val), scrubRegex.value(),
348 std::regex_constants::match_not_null))
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800349 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800350 return listStr;
351 }
352 }
Harisuddin Mohamed Isaed32c8d2020-10-01 18:12:39 +0800353 if (hexDump)
354 {
355 std::cout << dumpHex(std::data(pel.data()), pel.size(), 0, false)
356 << std::endl;
357 }
358 else if (fullPEL)
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800359 {
360 if (!foundPEL)
361 {
362 std::cout << "[\n";
363 foundPEL = true;
Harisuddin Mohamed Isaa214ed32020-02-28 15:58:23 +0800364 }
365 else
Aatir7b291ec2019-11-19 10:37:37 -0600366 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800367 std::cout << ",\n\n";
368 }
Harisuddin Mohamed Isaf67bafd2020-07-06 17:51:21 +0800369 pel.toJSON(registry, plugins);
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800370 }
371 else
372 {
373 // id
Matt Spinler3025d0b2021-06-02 15:12:52 -0600374 listStr += " \"" +
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800375 getNumberString("0x%X", pel.privateHeader().id()) +
376 "\": {\n";
377 // ASCII
378 if (pel.primarySRC())
379 {
380 val = pel.primarySRC().value()->asciiString();
Matt Spinler3025d0b2021-06-02 15:12:52 -0600381 jsonInsert(listStr, "SRC", trimEnd(val), 2);
382
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800383 // Registry message
384 auto regVal = pel.primarySRC().value()->getErrorDetails(
385 registry, DetailLevel::message, true);
386 if (regVal)
Harisuddin Mohamed Isa0f717e12020-01-15 20:05:33 +0800387 {
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800388 val = regVal.value();
Matt Spinler3025d0b2021-06-02 15:12:52 -0600389 jsonInsert(listStr, "Message", val, 2);
Aatir37822f62019-12-10 14:40:27 -0600390 }
Aatir7b291ec2019-11-19 10:37:37 -0600391 }
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800392 else
393 {
Matt Spinler3025d0b2021-06-02 15:12:52 -0600394 jsonInsert(listStr, "SRC", "No SRC", 2);
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800395 }
Matt Spinler3025d0b2021-06-02 15:12:52 -0600396
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800397 // platformid
Matt Spinler3025d0b2021-06-02 15:12:52 -0600398 jsonInsert(listStr, "PLID",
399 getNumberString("0x%X", pel.privateHeader().plid()), 2);
400
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800401 // creatorid
402 std::string creatorID =
403 getNumberString("%c", pel.privateHeader().creatorID());
404 val = pv::creatorIDs.count(creatorID) ? pv::creatorIDs.at(creatorID)
405 : "Unknown Creator ID";
Matt Spinler3025d0b2021-06-02 15:12:52 -0600406 jsonInsert(listStr, "CreatorID", val, 2);
407
408 // subsystem
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800409 std::string subsystem = pv::getValue(pel.userHeader().subsystem(),
410 pel_values::subsystemValues);
Matt Spinler3025d0b2021-06-02 15:12:52 -0600411 jsonInsert(listStr, "Subsystem", subsystem, 2);
412
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800413 // commit time
414 sprintf(tmpValStr, "%02X/%02X/%02X%02X %02X:%02X:%02X",
415 pel.privateHeader().commitTimestamp().month,
416 pel.privateHeader().commitTimestamp().day,
417 pel.privateHeader().commitTimestamp().yearMSB,
418 pel.privateHeader().commitTimestamp().yearLSB,
419 pel.privateHeader().commitTimestamp().hour,
420 pel.privateHeader().commitTimestamp().minutes,
421 pel.privateHeader().commitTimestamp().seconds);
Matt Spinler3025d0b2021-06-02 15:12:52 -0600422 jsonInsert(listStr, "Commit Time", tmpValStr, 2);
423
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800424 // severity
425 std::string severity = pv::getValue(pel.userHeader().severity(),
426 pel_values::severityValues);
Matt Spinler3025d0b2021-06-02 15:12:52 -0600427 jsonInsert(listStr, "Sev", severity, 2);
428
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800429 // compID
Matt Spinler3025d0b2021-06-02 15:12:52 -0600430 jsonInsert(listStr, "CompID",
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800431 getNumberString(
Matt Spinler3025d0b2021-06-02 15:12:52 -0600432 "0x%X", pel.privateHeader().header().componentID),
433 2);
434
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800435 found = listStr.rfind(",");
436 if (found != std::string::npos)
437 {
438 listStr.replace(found, 1, "");
Matt Spinler3025d0b2021-06-02 15:12:52 -0600439 listStr += " },\n";
Harisuddin Mohamed Isa6f005192020-03-10 17:39:53 +0800440 }
441 foundPEL = true;
Aatir7b291ec2019-11-19 10:37:37 -0600442 }
443 }
Patrick Williams66491c62021-10-06 12:23:37 -0500444 catch (const std::exception& e)
Aatir7b291ec2019-11-19 10:37:37 -0600445 {
Matt Spinler2ea96f62022-02-23 16:31:01 -0600446 trace::error(fmt::format("Hit exception when reading PEL file {}: {}",
447 fileName, 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 Spinler2ea96f62022-02-23 16:31:01 -0600649 trace::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}