Matt Spinler | 711d51d | 2019-11-06 09:36:51 -0600 | [diff] [blame] | 1 | /** |
| 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 | */ |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 16 | #include "config.h" |
| 17 | |
| 18 | #include "../bcd_time.hpp" |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 19 | #include "../json_utils.hpp" |
Harisuddin Mohamed Isa | 0f717e1 | 2020-01-15 20:05:33 +0800 | [diff] [blame] | 20 | #include "../paths.hpp" |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 21 | #include "../pel.hpp" |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 22 | #include "../pel_types.hpp" |
| 23 | #include "../pel_values.hpp" |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 24 | |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 25 | #include <Python.h> |
| 26 | |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 27 | #include <CLI/CLI.hpp> |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 28 | #include <bitset> |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 29 | #include <fstream> |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 30 | #include <iostream> |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 31 | #include <phosphor-logging/log.hpp> |
| 32 | #include <regex> |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 33 | #include <string> |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 34 | #include <xyz/openbmc_project/Common/File/error.hpp> |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 35 | |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 36 | namespace fs = std::filesystem; |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 37 | using namespace phosphor::logging; |
| 38 | using namespace openpower::pels; |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 39 | using sdbusplus::exception::SdBusError; |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 40 | namespace file_error = sdbusplus::xyz::openbmc_project::Common::File::Error; |
| 41 | namespace message = openpower::pels::message; |
| 42 | namespace pv = openpower::pels::pel_values; |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 43 | |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 44 | const uint8_t critSysTermSeverity = 0x51; |
| 45 | |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 46 | using PELFunc = std::function<void(const PEL&, bool hexDump)>; |
Matt Spinler | 0d804ef | 2020-05-12 16:16:26 -0500 | [diff] [blame] | 47 | message::Registry registry(getPELReadOnlyDataPath() / message::registryFileName, |
Matt Spinler | d8e2900 | 2020-04-09 09:11:22 -0500 | [diff] [blame] | 48 | false); |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 49 | namespace service |
| 50 | { |
| 51 | constexpr auto logging = "xyz.openbmc_project.Logging"; |
| 52 | } // namespace service |
| 53 | |
| 54 | namespace interface |
| 55 | { |
| 56 | constexpr auto deleteObj = "xyz.openbmc_project.Object.Delete"; |
| 57 | constexpr auto deleteAll = "xyz.openbmc_project.Collection.DeleteAll"; |
| 58 | } // namespace interface |
| 59 | |
| 60 | namespace object_path |
| 61 | { |
| 62 | constexpr auto logEntry = "/xyz/openbmc_project/logging/entry/"; |
| 63 | constexpr auto logging = "/xyz/openbmc_project/logging"; |
| 64 | } // namespace object_path |
| 65 | |
Aatir | e340c13 | 2019-12-09 14:19:29 -0600 | [diff] [blame] | 66 | /** |
Aatir | 37822f6 | 2019-12-10 14:40:27 -0600 | [diff] [blame] | 67 | * @brief helper function to get PEL commit timestamp from file name |
| 68 | * @retrun BCDTime - PEL commit timestamp |
| 69 | * @param[in] std::string - file name |
| 70 | */ |
| 71 | BCDTime fileNameToTimestamp(const std::string& fileName) |
| 72 | { |
| 73 | std::string token = fileName.substr(0, fileName.find("_")); |
| 74 | int i = 0; |
| 75 | BCDTime tmp; |
| 76 | if (token.length() >= 14) |
| 77 | { |
| 78 | try |
| 79 | { |
| 80 | tmp.yearMSB = std::stoi(token.substr(i, 2), 0, 16); |
| 81 | } |
| 82 | catch (std::exception& err) |
| 83 | { |
| 84 | std::cout << "Conversion failure: " << err.what() << std::endl; |
| 85 | } |
| 86 | i += 2; |
| 87 | try |
| 88 | { |
| 89 | tmp.yearLSB = std::stoi(token.substr(i, 2), 0, 16); |
| 90 | } |
| 91 | catch (std::exception& err) |
| 92 | { |
| 93 | std::cout << "Conversion failure: " << err.what() << std::endl; |
| 94 | } |
| 95 | i += 2; |
| 96 | try |
| 97 | { |
| 98 | tmp.month = std::stoi(token.substr(i, 2), 0, 16); |
| 99 | } |
| 100 | catch (std::exception& err) |
| 101 | { |
| 102 | std::cout << "Conversion failure: " << err.what() << std::endl; |
| 103 | } |
| 104 | i += 2; |
| 105 | try |
| 106 | { |
| 107 | tmp.day = std::stoi(token.substr(i, 2), 0, 16); |
| 108 | } |
| 109 | catch (std::exception& err) |
| 110 | { |
| 111 | std::cout << "Conversion failure: " << err.what() << std::endl; |
| 112 | } |
| 113 | i += 2; |
| 114 | try |
| 115 | { |
| 116 | tmp.hour = std::stoi(token.substr(i, 2), 0, 16); |
| 117 | } |
| 118 | catch (std::exception& err) |
| 119 | { |
| 120 | std::cout << "Conversion failure: " << err.what() << std::endl; |
| 121 | } |
| 122 | i += 2; |
| 123 | try |
| 124 | { |
| 125 | tmp.minutes = std::stoi(token.substr(i, 2), 0, 16); |
| 126 | } |
| 127 | catch (std::exception& err) |
| 128 | { |
| 129 | std::cout << "Conversion failure: " << err.what() << std::endl; |
| 130 | } |
| 131 | i += 2; |
| 132 | try |
| 133 | { |
| 134 | tmp.seconds = std::stoi(token.substr(i, 2), 0, 16); |
| 135 | } |
| 136 | catch (std::exception& err) |
| 137 | { |
| 138 | std::cout << "Conversion failure: " << err.what() << std::endl; |
| 139 | } |
| 140 | i += 2; |
| 141 | try |
| 142 | { |
| 143 | tmp.hundredths = std::stoi(token.substr(i, 2), 0, 16); |
| 144 | } |
| 145 | catch (std::exception& err) |
| 146 | { |
| 147 | std::cout << "Conversion failure: " << err.what() << std::endl; |
| 148 | } |
| 149 | } |
| 150 | return tmp; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * @brief helper function to get PEL id from file name |
| 155 | * @retrun uint32_t - PEL id |
| 156 | * @param[in] std::string - file name |
| 157 | */ |
| 158 | uint32_t fileNameToPELId(const std::string& fileName) |
| 159 | { |
| 160 | uint32_t num = 0; |
| 161 | try |
| 162 | { |
| 163 | num = std::stoi(fileName.substr(fileName.find("_") + 1), 0, 16); |
| 164 | } |
| 165 | catch (std::exception& err) |
| 166 | { |
| 167 | std::cout << "Conversion failure: " << err.what() << std::endl; |
| 168 | } |
| 169 | return num; |
| 170 | } |
| 171 | |
| 172 | /** |
Aatir | e340c13 | 2019-12-09 14:19:29 -0600 | [diff] [blame] | 173 | * @brief helper function to check string suffix |
| 174 | * @retrun bool - true with suffix matches |
| 175 | * @param[in] std::string - string to check for suffix |
| 176 | * @param[in] std::string - suffix string |
| 177 | */ |
| 178 | bool ends_with(const std::string& str, const std::string& end) |
| 179 | { |
| 180 | size_t slen = str.size(), elen = end.size(); |
| 181 | if (slen < elen) |
| 182 | return false; |
| 183 | while (elen) |
| 184 | { |
| 185 | if (str[--slen] != end[--elen]) |
| 186 | return false; |
| 187 | } |
| 188 | return true; |
| 189 | } |
| 190 | |
Aatir | 37822f6 | 2019-12-10 14:40:27 -0600 | [diff] [blame] | 191 | /** |
| 192 | * @brief get data form raw PEL file. |
| 193 | * @param[in] std::string Name of file with raw PEL |
| 194 | * @return std::vector<uint8_t> char vector read from raw PEL file. |
| 195 | */ |
Aatir | bad5f8a | 2019-12-10 15:27:16 -0600 | [diff] [blame] | 196 | std::vector<uint8_t> getFileData(const std::string& name) |
Aatir | 37822f6 | 2019-12-10 14:40:27 -0600 | [diff] [blame] | 197 | { |
| 198 | std::ifstream file(name, std::ifstream::in); |
| 199 | if (file.good()) |
| 200 | { |
| 201 | std::vector<uint8_t> data{std::istreambuf_iterator<char>(file), |
| 202 | std::istreambuf_iterator<char>()}; |
| 203 | return data; |
| 204 | } |
| 205 | else |
| 206 | { |
Aatir | 37822f6 | 2019-12-10 14:40:27 -0600 | [diff] [blame] | 207 | return {}; |
| 208 | } |
| 209 | } |
| 210 | |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 211 | /** |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 212 | * @brief Initialize Python interpreter and gather all UD parser modules under |
| 213 | * the paths found in Python sys.path and the current user directory. |
| 214 | * This is to prevent calling a non-existant module which causes Python |
| 215 | * to print an import error message and breaking JSON output. |
| 216 | * |
| 217 | * @return std::vector<std::string> Vector of plugins found in filesystem |
| 218 | */ |
| 219 | std::vector<std::string> getPlugins() |
| 220 | { |
| 221 | Py_Initialize(); |
| 222 | std::vector<std::string> plugins; |
| 223 | std::vector<std::string> siteDirs; |
Harisuddin Mohamed Isa | c8d6cc6 | 2020-08-19 22:47:19 +0800 | [diff] [blame] | 224 | std::array<std::string, 2> parserDirs = {"udparsers", "srcparsers"}; |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 225 | PyObject* pName = PyUnicode_FromString("sys"); |
| 226 | PyObject* pModule = PyImport_Import(pName); |
| 227 | Py_XDECREF(pName); |
| 228 | PyObject* pDict = PyModule_GetDict(pModule); |
| 229 | Py_XDECREF(pModule); |
| 230 | PyObject* pResult = PyDict_GetItemString(pDict, "path"); |
| 231 | PyObject* pValue = PyUnicode_FromString("."); |
| 232 | PyList_Append(pResult, pValue); |
| 233 | Py_XDECREF(pValue); |
| 234 | auto list_size = PyList_Size(pResult); |
| 235 | for (auto i = 0; i < list_size; i++) |
| 236 | { |
| 237 | PyObject* item = PyList_GetItem(pResult, i); |
| 238 | PyObject* pBytes = PyUnicode_AsEncodedString(item, "utf-8", "~E~"); |
| 239 | const char* output = PyBytes_AS_STRING(pBytes); |
| 240 | Py_XDECREF(pBytes); |
| 241 | std::string tmpStr(output); |
| 242 | siteDirs.push_back(tmpStr); |
| 243 | } |
| 244 | for (const auto& dir : siteDirs) |
| 245 | { |
Harisuddin Mohamed Isa | c8d6cc6 | 2020-08-19 22:47:19 +0800 | [diff] [blame] | 246 | for (const auto& parserDir : parserDirs) |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 247 | { |
Harisuddin Mohamed Isa | c8d6cc6 | 2020-08-19 22:47:19 +0800 | [diff] [blame] | 248 | if (fs::exists(dir + "/" + parserDir)) |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 249 | { |
Harisuddin Mohamed Isa | c8d6cc6 | 2020-08-19 22:47:19 +0800 | [diff] [blame] | 250 | for (const auto& entry : |
| 251 | fs::directory_iterator(dir + "/" + parserDir)) |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 252 | { |
Harisuddin Mohamed Isa | c8d6cc6 | 2020-08-19 22:47:19 +0800 | [diff] [blame] | 253 | if (entry.is_directory() and |
| 254 | fs::exists(entry.path().string() + "/" + |
| 255 | entry.path().stem().string() + ".py")) |
| 256 | { |
| 257 | plugins.push_back(entry.path().stem()); |
| 258 | } |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 259 | } |
| 260 | } |
| 261 | } |
| 262 | } |
| 263 | return plugins; |
| 264 | } |
| 265 | |
| 266 | /** |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 267 | * @brief Creates JSON string of a PEL entry if fullPEL is false or prints to |
| 268 | * stdout the full PEL in JSON if fullPEL is true |
| 269 | * @param[in] itr - std::map iterator of <uint32_t, BCDTime> |
| 270 | * @param[in] hidden - Boolean to include hidden PELs |
Harisuddin Mohamed Isa | 0c57a67 | 2020-03-27 14:16:28 +0800 | [diff] [blame] | 271 | * @param[in] includeInfo - Boolean to include informational PELs |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 272 | * @param[in] critSysTerm - Boolean to include critical error and system |
| 273 | * termination PELs |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 274 | * @param[in] fullPEL - Boolean to print full JSON representation of PEL |
| 275 | * @param[in] foundPEL - Boolean to check if any PEL is present |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 276 | * @param[in] scrubRegex - SRC regex object |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 277 | * @param[in] plugins - Vector of strings of plugins found in filesystem |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 278 | * @param[in] hexDump - Boolean to print hexdump of PEL instead of JSON |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 279 | * @return std::string - JSON string of PEL entry (empty if fullPEL is true) |
| 280 | */ |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 281 | template <typename T> |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 282 | std::string genPELJSON(T itr, bool hidden, bool includeInfo, bool critSysTerm, |
| 283 | bool fullPEL, bool& foundPEL, |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 284 | const std::optional<std::regex>& scrubRegex, |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 285 | const std::vector<std::string>& plugins, bool hexDump) |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 286 | { |
| 287 | std::size_t found; |
| 288 | std::string val; |
| 289 | char tmpValStr[50]; |
| 290 | std::string listStr; |
| 291 | char name[50]; |
| 292 | sprintf(name, "%.2X%.2X%.2X%.2X%.2X%.2X%.2X%.2X_%.8X", itr.second.yearMSB, |
| 293 | itr.second.yearLSB, itr.second.month, itr.second.day, |
| 294 | itr.second.hour, itr.second.minutes, itr.second.seconds, |
| 295 | itr.second.hundredths, itr.first); |
| 296 | std::string fileName(name); |
| 297 | fileName = EXTENSION_PERSIST_DIR "/pels/logs/" + fileName; |
| 298 | try |
| 299 | { |
Aatir | 37822f6 | 2019-12-10 14:40:27 -0600 | [diff] [blame] | 300 | std::vector<uint8_t> data = getFileData(fileName); |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 301 | if (data.empty()) |
Aatir | 37822f6 | 2019-12-10 14:40:27 -0600 | [diff] [blame] | 302 | { |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 303 | log<level::ERR>("Empty PEL file", |
| 304 | entry("FILENAME=%s", fileName.c_str())); |
| 305 | return listStr; |
| 306 | } |
| 307 | PEL pel{data}; |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 308 | if (!pel.valid()) |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 309 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 310 | return listStr; |
| 311 | } |
Harisuddin Mohamed Isa | 0c57a67 | 2020-03-27 14:16:28 +0800 | [diff] [blame] | 312 | if (!includeInfo && pel.userHeader().severity() == 0) |
| 313 | { |
| 314 | return listStr; |
| 315 | } |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 316 | if (critSysTerm && pel.userHeader().severity() != critSysTermSeverity) |
| 317 | { |
| 318 | return listStr; |
| 319 | } |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 320 | std::bitset<16> actionFlags{pel.userHeader().actionFlags()}; |
| 321 | if (!hidden && actionFlags.test(hiddenFlagBit)) |
| 322 | { |
| 323 | return listStr; |
| 324 | } |
| 325 | if (pel.primarySRC() && scrubRegex) |
| 326 | { |
| 327 | val = pel.primarySRC().value()->asciiString(); |
| 328 | if (std::regex_search(trimEnd(val), scrubRegex.value(), |
| 329 | std::regex_constants::match_not_null)) |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 330 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 331 | return listStr; |
| 332 | } |
| 333 | } |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 334 | if (hexDump) |
| 335 | { |
| 336 | std::cout << dumpHex(std::data(pel.data()), pel.size(), 0, false) |
| 337 | << std::endl; |
| 338 | } |
| 339 | else if (fullPEL) |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 340 | { |
| 341 | if (!foundPEL) |
| 342 | { |
| 343 | std::cout << "[\n"; |
| 344 | foundPEL = true; |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 345 | } |
| 346 | else |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 347 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 348 | std::cout << ",\n\n"; |
| 349 | } |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 350 | pel.toJSON(registry, plugins); |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 351 | } |
| 352 | else |
| 353 | { |
| 354 | // id |
| 355 | listStr += "\t\"" + |
| 356 | getNumberString("0x%X", pel.privateHeader().id()) + |
| 357 | "\": {\n"; |
| 358 | // ASCII |
| 359 | if (pel.primarySRC()) |
| 360 | { |
| 361 | val = pel.primarySRC().value()->asciiString(); |
| 362 | listStr += "\t\t\"SRC\": \"" + trimEnd(val) + "\",\n"; |
| 363 | // Registry message |
| 364 | auto regVal = pel.primarySRC().value()->getErrorDetails( |
| 365 | registry, DetailLevel::message, true); |
| 366 | if (regVal) |
Harisuddin Mohamed Isa | 0f717e1 | 2020-01-15 20:05:33 +0800 | [diff] [blame] | 367 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 368 | val = regVal.value(); |
| 369 | listStr += "\t\t\"Message\": \"" + val + "\",\n"; |
Aatir | 37822f6 | 2019-12-10 14:40:27 -0600 | [diff] [blame] | 370 | } |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 371 | } |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 372 | else |
| 373 | { |
| 374 | listStr += "\t\t\"SRC\": \"No SRC\",\n"; |
| 375 | } |
| 376 | // platformid |
| 377 | listStr += "\t\t\"PLID\": \"" + |
| 378 | getNumberString("0x%X", pel.privateHeader().plid()) + |
| 379 | "\",\n"; |
| 380 | // creatorid |
| 381 | std::string creatorID = |
| 382 | getNumberString("%c", pel.privateHeader().creatorID()); |
| 383 | val = pv::creatorIDs.count(creatorID) ? pv::creatorIDs.at(creatorID) |
| 384 | : "Unknown Creator ID"; |
| 385 | listStr += "\t\t\"CreatorID\": \"" + val + "\",\n"; |
| 386 | // subsytem |
| 387 | std::string subsystem = pv::getValue(pel.userHeader().subsystem(), |
| 388 | pel_values::subsystemValues); |
| 389 | listStr += "\t\t\"Subsystem\": \"" + subsystem + "\",\n"; |
| 390 | // commit time |
| 391 | sprintf(tmpValStr, "%02X/%02X/%02X%02X %02X:%02X:%02X", |
| 392 | pel.privateHeader().commitTimestamp().month, |
| 393 | pel.privateHeader().commitTimestamp().day, |
| 394 | pel.privateHeader().commitTimestamp().yearMSB, |
| 395 | pel.privateHeader().commitTimestamp().yearLSB, |
| 396 | pel.privateHeader().commitTimestamp().hour, |
| 397 | pel.privateHeader().commitTimestamp().minutes, |
| 398 | pel.privateHeader().commitTimestamp().seconds); |
| 399 | val = std::string(tmpValStr); |
| 400 | listStr += "\t\t\"Commit Time\": \"" + val + "\",\n"; |
| 401 | // severity |
| 402 | std::string severity = pv::getValue(pel.userHeader().severity(), |
| 403 | pel_values::severityValues); |
| 404 | listStr += "\t\t\"Sev\": \"" + severity + "\",\n "; |
| 405 | // compID |
| 406 | listStr += "\t\t\"CompID\": \"" + |
| 407 | getNumberString( |
| 408 | "0x%X", pel.privateHeader().header().componentID) + |
| 409 | "\",\n "; |
| 410 | found = listStr.rfind(","); |
| 411 | if (found != std::string::npos) |
| 412 | { |
| 413 | listStr.replace(found, 1, ""); |
| 414 | listStr += "\t},\n"; |
| 415 | } |
| 416 | foundPEL = true; |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 417 | } |
| 418 | } |
| 419 | catch (std::exception& e) |
| 420 | { |
| 421 | log<level::ERR>("Hit exception while reading PEL File", |
| 422 | entry("FILENAME=%s", fileName.c_str()), |
| 423 | entry("ERROR=%s", e.what())); |
| 424 | } |
| 425 | return listStr; |
| 426 | } |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 427 | |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 428 | /** |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 429 | * @brief Print a list of PELs or a JSON array of PELs |
| 430 | * @param[in] order - Boolean to print in reverse orser |
| 431 | * @param[in] hidden - Boolean to include hidden PELs |
Harisuddin Mohamed Isa | 0c57a67 | 2020-03-27 14:16:28 +0800 | [diff] [blame] | 432 | * @param[in] includeInfo - Boolean to include informational PELs |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 433 | * @param[in] critSysTerm - Boolean to include critical error and system |
| 434 | * termination PELs |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 435 | * @param[in] fullPEL - Boolean to print full PEL into a JSON array |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 436 | * @param[in] scrubRegex - SRC regex object |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 437 | * @param[in] hexDump - Boolean to print hexdump of PEL instead of JSON |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 438 | */ |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 439 | void printPELs(bool order, bool hidden, bool includeInfo, bool critSysTerm, |
| 440 | bool fullPEL, const std::optional<std::regex>& scrubRegex, |
| 441 | bool hexDump) |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 442 | { |
| 443 | std::string listStr; |
| 444 | std::map<uint32_t, BCDTime> PELs; |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 445 | std::vector<std::string> plugins; |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 446 | listStr = "{\n"; |
| 447 | for (auto it = fs::directory_iterator(EXTENSION_PERSIST_DIR "/pels/logs"); |
| 448 | it != fs::directory_iterator(); ++it) |
| 449 | { |
| 450 | if (!fs::is_regular_file((*it).path())) |
| 451 | { |
| 452 | continue; |
| 453 | } |
Aatir | 37822f6 | 2019-12-10 14:40:27 -0600 | [diff] [blame] | 454 | else |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 455 | { |
Aatir | 37822f6 | 2019-12-10 14:40:27 -0600 | [diff] [blame] | 456 | PELs.emplace(fileNameToPELId((*it).path().filename()), |
| 457 | fileNameToTimestamp((*it).path().filename())); |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 458 | } |
| 459 | } |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 460 | bool foundPEL = false; |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 461 | |
| 462 | if (fullPEL && !hexDump) |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 463 | { |
| 464 | plugins = getPlugins(); |
| 465 | } |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 466 | auto buildJSON = [&listStr, &hidden, &includeInfo, &critSysTerm, &fullPEL, |
| 467 | &foundPEL, &scrubRegex, &plugins, |
| 468 | &hexDump](const auto& i) { |
| 469 | listStr += genPELJSON(i, hidden, includeInfo, critSysTerm, fullPEL, |
| 470 | foundPEL, scrubRegex, plugins, hexDump); |
Aatir | 37822f6 | 2019-12-10 14:40:27 -0600 | [diff] [blame] | 471 | }; |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 472 | if (order) |
| 473 | { |
| 474 | std::for_each(PELs.rbegin(), PELs.rend(), buildJSON); |
| 475 | } |
| 476 | else |
| 477 | { |
| 478 | std::for_each(PELs.begin(), PELs.end(), buildJSON); |
| 479 | } |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 480 | if (hexDump) |
| 481 | { |
| 482 | return; |
| 483 | } |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 484 | if (foundPEL) |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 485 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 486 | if (fullPEL) |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 487 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 488 | std::cout << "]" << std::endl; |
| 489 | } |
| 490 | else |
| 491 | { |
| 492 | std::size_t found; |
| 493 | found = listStr.rfind(","); |
| 494 | if (found != std::string::npos) |
| 495 | { |
| 496 | listStr.replace(found, 1, ""); |
| 497 | listStr += "}\n"; |
| 498 | printf("%s", listStr.c_str()); |
| 499 | } |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 500 | } |
| 501 | } |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 502 | else |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 503 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 504 | std::string emptyJSON = fullPEL ? "[]" : "{}"; |
| 505 | std::cout << emptyJSON << std::endl; |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 506 | } |
| 507 | } |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 508 | |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 509 | /** |
| 510 | * @brief Calls the function passed in on the PEL with the ID |
| 511 | * passed in. |
| 512 | * |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 513 | * @param[in] id - The string version of the PEL or BMC Log ID, either with or |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 514 | * without the 0x prefix. |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 515 | * @param[in] func - The std::function<void(const PEL&, bool hexDump)> function |
| 516 | * to run. |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 517 | * @param[in] useBMC - if true, search by BMC Log ID, else search by PEL ID |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 518 | * @param[in] hexDump - Boolean to print hexdump of PEL instead of JSON |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 519 | */ |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 520 | void callFunctionOnPEL(const std::string& id, const PELFunc& func, |
| 521 | bool useBMC = false, bool hexDump = false) |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 522 | { |
| 523 | std::string pelID{id}; |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 524 | if (!useBMC) |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 525 | { |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 526 | std::transform(pelID.begin(), pelID.end(), pelID.begin(), toupper); |
| 527 | |
| 528 | if (pelID.find("0X") == 0) |
| 529 | { |
| 530 | pelID.erase(0, 2); |
| 531 | } |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | bool found = false; |
| 535 | |
| 536 | for (auto it = fs::directory_iterator(EXTENSION_PERSIST_DIR "/pels/logs"); |
| 537 | it != fs::directory_iterator(); ++it) |
| 538 | { |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 539 | // The PEL ID is part of the filename, so use that to find the PEL if |
| 540 | // "useBMC" is set to false, otherwise we have to search within the PEL |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 541 | |
| 542 | if (!fs::is_regular_file((*it).path())) |
| 543 | { |
| 544 | continue; |
| 545 | } |
| 546 | |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 547 | if ((ends_with((*it).path(), pelID) && !useBMC) || useBMC) |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 548 | { |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 549 | auto data = getFileData((*it).path()); |
| 550 | if (!data.empty()) |
| 551 | { |
| 552 | PEL pel{data}; |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 553 | if (!useBMC || |
| 554 | (useBMC && pel.obmcLogID() == std::stoul(id, nullptr, 0))) |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 555 | { |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 556 | found = true; |
| 557 | try |
| 558 | { |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 559 | func(pel, hexDump); |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 560 | break; |
| 561 | } |
| 562 | catch (std::exception& e) |
| 563 | { |
| 564 | std::cerr << " Internal function threw an exception: " |
| 565 | << e.what() << "\n"; |
| 566 | exit(1); |
| 567 | } |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 568 | } |
| 569 | } |
| 570 | else |
| 571 | { |
| 572 | std::cerr << "Could not read PEL file\n"; |
| 573 | exit(1); |
| 574 | } |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 575 | } |
| 576 | } |
| 577 | |
| 578 | if (!found) |
| 579 | { |
| 580 | std::cerr << "PEL not found\n"; |
| 581 | exit(1); |
| 582 | } |
| 583 | } |
| 584 | |
| 585 | /** |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 586 | * @brief Delete a PEL file. |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 587 | * |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 588 | * @param[in] id - The PEL ID to delete. |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 589 | */ |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 590 | void deletePEL(const std::string& id) |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 591 | { |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 592 | std::string pelID{id}; |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 593 | |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 594 | std::transform(pelID.begin(), pelID.end(), pelID.begin(), toupper); |
| 595 | |
| 596 | if (pelID.find("0X") == 0) |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 597 | { |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 598 | pelID.erase(0, 2); |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 599 | } |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 600 | |
| 601 | for (auto it = fs::directory_iterator(EXTENSION_PERSIST_DIR "/pels/logs"); |
| 602 | it != fs::directory_iterator(); ++it) |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 603 | { |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 604 | if (ends_with((*it).path(), pelID)) |
| 605 | { |
| 606 | fs::remove((*it).path()); |
| 607 | } |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 608 | } |
| 609 | } |
| 610 | |
| 611 | /** |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 612 | * @brief Delete all PEL files. |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 613 | */ |
| 614 | void deleteAllPELs() |
| 615 | { |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 616 | log<level::INFO>("peltool deleting all event logs"); |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 617 | |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 618 | for (const auto& entry : |
| 619 | fs::directory_iterator(EXTENSION_PERSIST_DIR "/pels/logs")) |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 620 | { |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 621 | fs::remove(entry.path()); |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 622 | } |
| 623 | } |
| 624 | |
Matt Spinler | 1b420bc | 2020-02-21 08:54:25 -0600 | [diff] [blame] | 625 | /** |
| 626 | * @brief Display a single PEL |
| 627 | * |
| 628 | * @param[in] pel - the PEL to display |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 629 | * @param[in] hexDump - Boolean to print hexdump of PEL instead of JSON |
Matt Spinler | 1b420bc | 2020-02-21 08:54:25 -0600 | [diff] [blame] | 630 | */ |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 631 | void displayPEL(const PEL& pel, bool hexDump) |
Matt Spinler | 1b420bc | 2020-02-21 08:54:25 -0600 | [diff] [blame] | 632 | { |
| 633 | if (pel.valid()) |
| 634 | { |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 635 | if (hexDump) |
| 636 | { |
| 637 | std::string dstr = |
| 638 | dumpHex(std::data(pel.data()), pel.size(), 0, false); |
| 639 | std::cout << dstr << std::endl; |
| 640 | } |
| 641 | else |
| 642 | { |
| 643 | auto plugins = getPlugins(); |
| 644 | pel.toJSON(registry, plugins); |
| 645 | } |
Matt Spinler | 1b420bc | 2020-02-21 08:54:25 -0600 | [diff] [blame] | 646 | } |
| 647 | else |
| 648 | { |
| 649 | std::cerr << "PEL was malformed\n"; |
| 650 | exit(1); |
| 651 | } |
| 652 | } |
| 653 | |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 654 | /** |
| 655 | * @brief Print number of PELs |
| 656 | * @param[in] hidden - Bool to include hidden logs |
Harisuddin Mohamed Isa | 0c57a67 | 2020-03-27 14:16:28 +0800 | [diff] [blame] | 657 | * @param[in] includeInfo - Bool to include informational logs |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 658 | * @param[in] critSysTerm - Bool to include CritSysTerm |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 659 | * @param[in] scrubRegex - SRC regex object |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 660 | */ |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 661 | void printPELCount(bool hidden, bool includeInfo, bool critSysTerm, |
Harisuddin Mohamed Isa | 0c57a67 | 2020-03-27 14:16:28 +0800 | [diff] [blame] | 662 | const std::optional<std::regex>& scrubRegex) |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 663 | { |
| 664 | std::size_t count = 0; |
| 665 | for (auto it = fs::directory_iterator(EXTENSION_PERSIST_DIR "/pels/logs"); |
| 666 | it != fs::directory_iterator(); ++it) |
| 667 | { |
| 668 | if (!fs::is_regular_file((*it).path())) |
| 669 | { |
| 670 | continue; |
| 671 | } |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 672 | std::vector<uint8_t> data = getFileData((*it).path()); |
| 673 | if (data.empty()) |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 674 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 675 | continue; |
| 676 | } |
| 677 | PEL pel{data}; |
| 678 | if (!pel.valid()) |
| 679 | { |
| 680 | continue; |
| 681 | } |
Harisuddin Mohamed Isa | 0c57a67 | 2020-03-27 14:16:28 +0800 | [diff] [blame] | 682 | if (!includeInfo && pel.userHeader().severity() == 0) |
| 683 | { |
| 684 | continue; |
| 685 | } |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 686 | if (critSysTerm && pel.userHeader().severity() != critSysTermSeverity) |
| 687 | { |
| 688 | continue; |
| 689 | } |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 690 | std::bitset<16> actionFlags{pel.userHeader().actionFlags()}; |
| 691 | if (!hidden && actionFlags.test(hiddenFlagBit)) |
| 692 | { |
| 693 | continue; |
| 694 | } |
| 695 | if (pel.primarySRC() && scrubRegex) |
| 696 | { |
| 697 | std::string val = pel.primarySRC().value()->asciiString(); |
| 698 | if (std::regex_search(trimEnd(val), scrubRegex.value(), |
| 699 | std::regex_constants::match_not_null)) |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 700 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 701 | continue; |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 702 | } |
| 703 | } |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 704 | count++; |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 705 | } |
| 706 | std::cout << "{\n" |
| 707 | << " \"Number of PELs found\": " |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 708 | << getNumberString("%d", count) << "\n}\n"; |
| 709 | } |
| 710 | |
| 711 | /** |
| 712 | * @brief Generate regex pattern object from file contents |
| 713 | * @param[in] scrubFile - File containing regex pattern |
| 714 | * @return std::regex - SRC regex object |
| 715 | */ |
| 716 | std::regex genRegex(std::string& scrubFile) |
| 717 | { |
| 718 | std::string pattern; |
| 719 | std::ifstream contents(scrubFile); |
| 720 | if (contents.fail()) |
| 721 | { |
| 722 | std::cerr << "Can't open \"" << scrubFile << "\"\n"; |
| 723 | exit(1); |
| 724 | } |
| 725 | std::string line; |
| 726 | while (std::getline(contents, line)) |
| 727 | { |
| 728 | if (!line.empty()) |
| 729 | { |
| 730 | pattern.append(line + "|"); |
| 731 | } |
| 732 | } |
| 733 | try |
| 734 | { |
| 735 | std::regex scrubRegex(pattern, std::regex::icase); |
| 736 | return scrubRegex; |
| 737 | } |
| 738 | catch (std::regex_error& e) |
| 739 | { |
| 740 | if (e.code() == std::regex_constants::error_collate) |
| 741 | std::cerr << "Invalid collating element request\n"; |
| 742 | else if (e.code() == std::regex_constants::error_ctype) |
| 743 | std::cerr << "Invalid character class\n"; |
| 744 | else if (e.code() == std::regex_constants::error_escape) |
| 745 | std::cerr << "Invalid escape character or trailing escape\n"; |
| 746 | else if (e.code() == std::regex_constants::error_backref) |
| 747 | std::cerr << "Invalid back reference\n"; |
| 748 | else if (e.code() == std::regex_constants::error_brack) |
| 749 | std::cerr << "Mismatched bracket ([ or ])\n"; |
| 750 | else if (e.code() == std::regex_constants::error_paren) |
| 751 | { |
| 752 | // to catch return code error_badrepeat when error_paren is retured |
| 753 | // instead |
| 754 | size_t pos = pattern.find_first_of("*+?{"); |
| 755 | while (pos != std::string::npos) |
| 756 | { |
| 757 | if (pos == 0 || pattern.substr(pos - 1, 1) == "|") |
| 758 | { |
| 759 | std::cerr |
| 760 | << "A repetition character (*, ?, +, or {) was not " |
| 761 | "preceded by a valid regular expression\n"; |
| 762 | exit(1); |
| 763 | } |
| 764 | pos = pattern.find_first_of("*+?{", pos + 1); |
| 765 | } |
| 766 | std::cerr << "Mismatched parentheses (( or ))\n"; |
| 767 | } |
| 768 | else if (e.code() == std::regex_constants::error_brace) |
| 769 | std::cerr << "Mismatched brace ({ or })\n"; |
| 770 | else if (e.code() == std::regex_constants::error_badbrace) |
| 771 | std::cerr << "Invalid range inside a { }\n"; |
| 772 | else if (e.code() == std::regex_constants::error_range) |
| 773 | std::cerr << "Invalid character range (e.g., [z-a])\n"; |
| 774 | else if (e.code() == std::regex_constants::error_space) |
| 775 | std::cerr << "Insufficient memory to handle regular expression\n"; |
| 776 | else if (e.code() == std::regex_constants::error_badrepeat) |
| 777 | std::cerr << "A repetition character (*, ?, +, or {) was not " |
| 778 | "preceded by a valid regular expression\n"; |
| 779 | else if (e.code() == std::regex_constants::error_complexity) |
| 780 | std::cerr << "The requested match is too complex\n"; |
| 781 | else if (e.code() == std::regex_constants::error_stack) |
| 782 | std::cerr << "Insufficient memory to evaluate a match\n"; |
| 783 | exit(1); |
| 784 | } |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 785 | } |
| 786 | |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 787 | static void exitWithError(const std::string& help, const char* err) |
| 788 | { |
| 789 | std::cerr << "ERROR: " << err << std::endl << help << std::endl; |
| 790 | exit(-1); |
| 791 | } |
| 792 | |
| 793 | int main(int argc, char** argv) |
| 794 | { |
| 795 | CLI::App app{"OpenBMC PEL Tool"}; |
| 796 | std::string fileName; |
Aatir | e340c13 | 2019-12-09 14:19:29 -0600 | [diff] [blame] | 797 | std::string idPEL; |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 798 | std::string bmcId; |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 799 | std::string idToDelete; |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 800 | std::string scrubFile; |
| 801 | std::optional<std::regex> scrubRegex; |
Aatir | e340c13 | 2019-12-09 14:19:29 -0600 | [diff] [blame] | 802 | bool listPEL = false; |
| 803 | bool listPELDescOrd = false; |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 804 | bool hidden = false; |
Harisuddin Mohamed Isa | 0c57a67 | 2020-03-27 14:16:28 +0800 | [diff] [blame] | 805 | bool includeInfo = false; |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 806 | bool critSysTerm = false; |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 807 | bool deleteAll = false; |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 808 | bool showPELCount = false; |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 809 | bool fullPEL = false; |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 810 | bool hexDump = false; |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 811 | |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 812 | app.set_help_flag("--help", "Print this help message and exit"); |
Harisuddin Mohamed Isa | 0c57a67 | 2020-03-27 14:16:28 +0800 | [diff] [blame] | 813 | app.add_option("--file", fileName, "Display a PEL using its Raw PEL file"); |
Aatir | e340c13 | 2019-12-09 14:19:29 -0600 | [diff] [blame] | 814 | app.add_option("-i, --id", idPEL, "Display a PEL based on its ID"); |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 815 | app.add_option("--bmc-id", bmcId, |
| 816 | "Display a PEL based on its BMC Event ID"); |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 817 | app.add_flag("-a", fullPEL, "Display all PELs"); |
Aatir | bad5f8a | 2019-12-10 15:27:16 -0600 | [diff] [blame] | 818 | app.add_flag("-l", listPEL, "List PELs"); |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 819 | app.add_flag("-n", showPELCount, "Show number of PELs"); |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 820 | app.add_flag("-r", listPELDescOrd, "Reverse order of output"); |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 821 | app.add_flag("-h", hidden, "Include hidden PELs"); |
Harisuddin Mohamed Isa | 0c57a67 | 2020-03-27 14:16:28 +0800 | [diff] [blame] | 822 | app.add_flag("-f,--info", includeInfo, "Include informational PELs"); |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 823 | app.add_flag("-t, --termination", critSysTerm, |
| 824 | "List only critical system terminating PELs"); |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 825 | app.add_option("-d, --delete", idToDelete, "Delete a PEL based on its ID"); |
| 826 | app.add_flag("-D, --delete-all", deleteAll, "Delete all PELs"); |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 827 | app.add_option("-s, --scrub", scrubFile, |
| 828 | "File containing SRC regular expressions to ignore"); |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 829 | app.add_flag("-x", hexDump, "Display PEL(s) in hexdump instead of JSON"); |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 830 | |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 831 | CLI11_PARSE(app, argc, argv); |
| 832 | |
| 833 | if (!fileName.empty()) |
| 834 | { |
| 835 | std::vector<uint8_t> data = getFileData(fileName); |
| 836 | if (!data.empty()) |
| 837 | { |
| 838 | PEL pel{data}; |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 839 | if (hexDump) |
| 840 | { |
| 841 | std::string dstr = |
| 842 | dumpHex(std::data(pel.data()), pel.size(), 0, false); |
| 843 | std::cout << dstr << std::endl; |
| 844 | } |
| 845 | else |
| 846 | { |
| 847 | auto plugins = getPlugins(); |
| 848 | pel.toJSON(registry, plugins); |
| 849 | } |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 850 | } |
| 851 | else |
| 852 | { |
| 853 | exitWithError(app.help("", CLI::AppFormatMode::All), |
| 854 | "Raw PEL file can't be read."); |
| 855 | } |
| 856 | } |
Aatir | e340c13 | 2019-12-09 14:19:29 -0600 | [diff] [blame] | 857 | else if (!idPEL.empty()) |
| 858 | { |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 859 | callFunctionOnPEL(idPEL, displayPEL, false, hexDump); |
Harisuddin Mohamed Isa | 58d3a98 | 2020-09-17 19:48:05 +0800 | [diff] [blame] | 860 | } |
| 861 | else if (!bmcId.empty()) |
| 862 | { |
Harisuddin Mohamed Isa | ed32c8d | 2020-10-01 18:12:39 +0800 | [diff] [blame] | 863 | callFunctionOnPEL(bmcId, displayPEL, true, hexDump); |
Aatir | e340c13 | 2019-12-09 14:19:29 -0600 | [diff] [blame] | 864 | } |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 865 | else if (fullPEL || listPEL) |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 866 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 867 | if (!scrubFile.empty()) |
| 868 | { |
| 869 | scrubRegex = genRegex(scrubFile); |
| 870 | } |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 871 | printPELs(listPELDescOrd, hidden, includeInfo, critSysTerm, fullPEL, |
| 872 | scrubRegex, hexDump); |
Harisuddin Mohamed Isa | d4002f3 | 2020-02-26 16:19:58 +0800 | [diff] [blame] | 873 | } |
| 874 | else if (showPELCount) |
| 875 | { |
Harisuddin Mohamed Isa | 6f00519 | 2020-03-10 17:39:53 +0800 | [diff] [blame] | 876 | if (!scrubFile.empty()) |
| 877 | { |
| 878 | scrubRegex = genRegex(scrubFile); |
| 879 | } |
Miguel Gomez | 011ccae | 2021-03-25 23:42:09 +0000 | [diff] [blame] | 880 | printPELCount(hidden, includeInfo, critSysTerm, scrubRegex); |
Aatir | 7b291ec | 2019-11-19 10:37:37 -0600 | [diff] [blame] | 881 | } |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 882 | else if (!idToDelete.empty()) |
| 883 | { |
Matt Spinler | 25d986c | 2021-02-10 13:26:18 -0600 | [diff] [blame] | 884 | deletePEL(idToDelete); |
Matt Spinler | 27de6f3 | 2020-02-21 08:35:57 -0600 | [diff] [blame] | 885 | } |
| 886 | else if (deleteAll) |
| 887 | { |
| 888 | deleteAllPELs(); |
| 889 | } |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 890 | else |
| 891 | { |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 892 | std::cout << app.help("", CLI::AppFormatMode::All) << std::endl; |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 893 | } |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 894 | Py_Finalize(); |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 895 | return 0; |
| 896 | } |