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 | */ |
Jayanth Othayoth | da9b583 | 2021-11-05 04:19:43 -0500 | [diff] [blame] | 16 | #include "config.h" |
| 17 | |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 18 | #include "pel.hpp" |
| 19 | |
| 20 | #include "bcd_time.hpp" |
Matt Spinler | 386a61e | 2020-08-13 15:51:12 -0500 | [diff] [blame] | 21 | #include "extended_user_data.hpp" |
Matt Spinler | c63e2e8 | 2019-12-02 15:50:12 -0600 | [diff] [blame] | 22 | #include "extended_user_header.hpp" |
Matt Spinler | aa65947 | 2019-10-23 09:26:48 -0500 | [diff] [blame] | 23 | #include "failing_mtms.hpp" |
Andrew Geissler | f8e750d | 2022-01-14 14:56:13 -0600 | [diff] [blame] | 24 | #include "fru_identity.hpp" |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 25 | #include "json_utils.hpp" |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 26 | #include "log_id.hpp" |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 27 | #include "pel_rules.hpp" |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 28 | #include "pel_values.hpp" |
Matt Spinler | 131870c | 2019-09-25 13:29:04 -0500 | [diff] [blame] | 29 | #include "section_factory.hpp" |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 30 | #include "src.hpp" |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 31 | #include "stream.hpp" |
Matt Spinler | afa857c | 2019-10-24 13:03:46 -0500 | [diff] [blame] | 32 | #include "user_data_formats.hpp" |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 33 | |
Jayanth Othayoth | 92b2066 | 2021-11-05 00:09:15 -0500 | [diff] [blame] | 34 | #ifdef PEL_ENABLE_PHAL |
Jayanth Othayoth | da9b583 | 2021-11-05 04:19:43 -0500 | [diff] [blame] | 35 | #include "phal_service_actions.hpp" |
Jayanth Othayoth | e8bdeea | 2021-06-03 03:01:16 -0500 | [diff] [blame] | 36 | #include "sbe_ffdc_handler.hpp" |
| 37 | #endif |
| 38 | |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 39 | #include <sys/stat.h> |
| 40 | #include <unistd.h> |
| 41 | |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 42 | #include <phosphor-logging/lg2.hpp> |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 43 | |
Jayanth Othayoth | 1aa90d4 | 2023-09-13 04:25:45 -0500 | [diff] [blame] | 44 | #include <format> |
Patrick Williams | 2544b41 | 2022-10-04 08:41:06 -0500 | [diff] [blame] | 45 | #include <iostream> |
| 46 | |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 47 | namespace openpower |
| 48 | { |
| 49 | namespace pels |
| 50 | { |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 51 | namespace pv = openpower::pels::pel_values; |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 52 | |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 53 | constexpr auto unknownValue = "Unknown"; |
| 54 | |
Matt Spinler | 4bfc908 | 2020-03-24 15:05:54 -0500 | [diff] [blame] | 55 | PEL::PEL(const message::Entry& regEntry, uint32_t obmcLogID, uint64_t timestamp, |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 56 | phosphor::logging::Entry::Level severity, |
Jayanth Othayoth | e8bdeea | 2021-06-03 03:01:16 -0500 | [diff] [blame] | 57 | const AdditionalData& additionalData, const PelFFDC& ffdcFilesIn, |
Matt Spinler | 9d92109 | 2022-12-15 11:54:49 -0600 | [diff] [blame] | 58 | const DataInterfaceBase& dataIface, const JournalBase& journal) |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 59 | { |
Jayanth Othayoth | e8bdeea | 2021-06-03 03:01:16 -0500 | [diff] [blame] | 60 | // No changes in input, for non SBE error related requests |
| 61 | PelFFDC ffdcFiles = ffdcFilesIn; |
| 62 | |
Jayanth Othayoth | 92b2066 | 2021-11-05 00:09:15 -0500 | [diff] [blame] | 63 | #ifdef PEL_ENABLE_PHAL |
Jayanth Othayoth | e8bdeea | 2021-06-03 03:01:16 -0500 | [diff] [blame] | 64 | // Add sbe ffdc processed data into ffdcfiles. |
| 65 | namespace sbe = openpower::pels::sbe; |
Patrick Williams | ac1ba3f | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 66 | auto processReq = std::any_of(ffdcFiles.begin(), ffdcFiles.end(), |
| 67 | [](const auto& file) { |
| 68 | return file.format == UserDataFormat::custom && |
| 69 | file.subType == sbe::sbeFFDCSubType; |
| 70 | }); |
Jayanth Othayoth | e8bdeea | 2021-06-03 03:01:16 -0500 | [diff] [blame] | 71 | // sbeFFDC can't be destroyed until the end of the PEL constructor |
| 72 | // because it needs to keep around the FFDC Files to be used below. |
| 73 | std::unique_ptr<sbe::SbeFFDC> sbeFFDCPtr; |
| 74 | if (processReq) |
| 75 | { |
Patrick Williams | 2544b41 | 2022-10-04 08:41:06 -0500 | [diff] [blame] | 76 | sbeFFDCPtr = std::make_unique<sbe::SbeFFDC>(additionalData, |
| 77 | ffdcFilesIn); |
Jayanth Othayoth | e8bdeea | 2021-06-03 03:01:16 -0500 | [diff] [blame] | 78 | const auto& sbeFFDCFiles = sbeFFDCPtr->getSbeFFDC(); |
| 79 | ffdcFiles.insert(ffdcFiles.end(), sbeFFDCFiles.begin(), |
| 80 | sbeFFDCFiles.end()); |
Jayanth Othayoth | 742b00b | 2022-06-30 05:16:57 -0500 | [diff] [blame] | 81 | |
| 82 | // update pel priority for spare clock failures |
| 83 | if (auto customSeverity = sbeFFDCPtr->getSeverity()) |
| 84 | { |
| 85 | severity = customSeverity.value(); |
| 86 | } |
Jayanth Othayoth | e8bdeea | 2021-06-03 03:01:16 -0500 | [diff] [blame] | 87 | } |
| 88 | #endif |
| 89 | |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 90 | std::map<std::string, std::vector<std::string>> debugData; |
Matt Spinler | 5a90a95 | 2020-08-27 09:39:03 -0500 | [diff] [blame] | 91 | nlohmann::json callouts; |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 92 | |
Matt Spinler | 4bfc908 | 2020-03-24 15:05:54 -0500 | [diff] [blame] | 93 | _ph = std::make_unique<PrivateHeader>(regEntry.componentID, obmcLogID, |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 94 | timestamp); |
Vijay Lobo | 6b3f345 | 2021-04-15 23:04:42 -0500 | [diff] [blame] | 95 | _uh = std::make_unique<UserHeader>(regEntry, severity, additionalData, |
| 96 | dataIface); |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 97 | |
Matt Spinler | 5a90a95 | 2020-08-27 09:39:03 -0500 | [diff] [blame] | 98 | // Extract any callouts embedded in an FFDC file. |
| 99 | if (!ffdcFiles.empty()) |
| 100 | { |
| 101 | try |
| 102 | { |
| 103 | callouts = getCalloutJSON(ffdcFiles); |
| 104 | } |
| 105 | catch (const std::exception& e) |
| 106 | { |
| 107 | debugData.emplace("FFDC file JSON callouts error", |
| 108 | std::vector<std::string>{e.what()}); |
| 109 | } |
| 110 | } |
| 111 | |
Patrick Williams | 2544b41 | 2022-10-04 08:41:06 -0500 | [diff] [blame] | 112 | auto src = std::make_unique<SRC>(regEntry, additionalData, callouts, |
| 113 | dataIface); |
Matt Spinler | 5a90a95 | 2020-08-27 09:39:03 -0500 | [diff] [blame] | 114 | |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 115 | if (!src->getDebugData().empty()) |
| 116 | { |
| 117 | // Something didn't go as planned |
| 118 | debugData.emplace("SRC", src->getDebugData()); |
| 119 | } |
Matt Spinler | c63e2e8 | 2019-12-02 15:50:12 -0600 | [diff] [blame] | 120 | |
Matt Spinler | 4bfc908 | 2020-03-24 15:05:54 -0500 | [diff] [blame] | 121 | auto euh = std::make_unique<ExtendedUserHeader>(dataIface, regEntry, *src); |
Matt Spinler | c63e2e8 | 2019-12-02 15:50:12 -0600 | [diff] [blame] | 122 | |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 123 | _optionalSections.push_back(std::move(src)); |
Matt Spinler | c63e2e8 | 2019-12-02 15:50:12 -0600 | [diff] [blame] | 124 | _optionalSections.push_back(std::move(euh)); |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 125 | |
Matt Spinler | aa65947 | 2019-10-23 09:26:48 -0500 | [diff] [blame] | 126 | auto mtms = std::make_unique<FailingMTMS>(dataIface); |
| 127 | _optionalSections.push_back(std::move(mtms)); |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 128 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 129 | auto ud = util::makeSysInfoUserDataSection(additionalData, dataIface); |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 130 | addUserDataSection(std::move(ud)); |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 131 | |
Sumit Kumar | 3e27443 | 2021-09-14 06:37:56 -0500 | [diff] [blame] | 132 | // Check for pel severity of type - 0x51 = critical error, system |
| 133 | // termination and update terminate bit in SRC for pels |
| 134 | updateTerminateBitInSRCSection(); |
| 135 | |
Matt Spinler | 9b7e94f | 2020-03-24 15:44:41 -0500 | [diff] [blame] | 136 | // Create a UserData section from AdditionalData. |
Matt Spinler | afa857c | 2019-10-24 13:03:46 -0500 | [diff] [blame] | 137 | if (!additionalData.empty()) |
| 138 | { |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 139 | ud = util::makeADUserDataSection(additionalData); |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 140 | addUserDataSection(std::move(ud)); |
Matt Spinler | afa857c | 2019-10-24 13:03:46 -0500 | [diff] [blame] | 141 | } |
| 142 | |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 143 | // Add any FFDC files into UserData sections |
| 144 | for (const auto& file : ffdcFiles) |
| 145 | { |
| 146 | ud = util::makeFFDCuserDataSection(regEntry.componentID, file); |
| 147 | if (!ud) |
| 148 | { |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 149 | // Add this error into the debug data UserData section |
| 150 | std::ostringstream msg; |
| 151 | msg << "Could not make PEL FFDC UserData section from file" |
| 152 | << std::hex << regEntry.componentID << " " << file.subType |
| 153 | << " " << file.version; |
| 154 | if (debugData.count("FFDC File")) |
| 155 | { |
| 156 | debugData.at("FFDC File").push_back(msg.str()); |
| 157 | } |
| 158 | else |
| 159 | { |
| 160 | debugData.emplace("FFDC File", |
| 161 | std::vector<std::string>{msg.str()}); |
| 162 | } |
| 163 | |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 164 | continue; |
| 165 | } |
| 166 | |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 167 | addUserDataSection(std::move(ud)); |
| 168 | } |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 169 | |
Jayanth Othayoth | da9b583 | 2021-11-05 04:19:43 -0500 | [diff] [blame] | 170 | #ifdef PEL_ENABLE_PHAL |
| 171 | auto path = std::string(OBJ_ENTRY) + '/' + std::to_string(obmcLogID); |
Jayanth Othayoth | 3ef7b60 | 2021-11-09 06:40:38 -0600 | [diff] [blame] | 172 | openpower::pels::phal::createServiceActions(callouts, path, dataIface, |
| 173 | plid()); |
Jayanth Othayoth | da9b583 | 2021-11-05 04:19:43 -0500 | [diff] [blame] | 174 | #endif |
| 175 | |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 176 | // Store in the PEL any important debug data created while |
| 177 | // building the PEL sections. |
| 178 | if (!debugData.empty()) |
| 179 | { |
| 180 | nlohmann::json data; |
| 181 | data["PEL Internal Debug Data"] = debugData; |
| 182 | ud = util::makeJSONUserDataSection(data); |
| 183 | |
| 184 | addUserDataSection(std::move(ud)); |
| 185 | |
| 186 | // Also put in the journal for debug |
Matt Spinler | 45796e8 | 2022-07-01 11:25:27 -0500 | [diff] [blame] | 187 | for (const auto& [name, msgs] : debugData) |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 188 | { |
Matt Spinler | 45796e8 | 2022-07-01 11:25:27 -0500 | [diff] [blame] | 189 | for (const auto& message : msgs) |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 190 | { |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 191 | lg2::info("{NAME}: {MSG}", "NAME", name, "MSG", message); |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 192 | } |
| 193 | } |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 194 | } |
| 195 | |
Matt Spinler | 9d92109 | 2022-12-15 11:54:49 -0600 | [diff] [blame] | 196 | addJournalSections(regEntry, journal); |
| 197 | |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 198 | _ph->setSectionCount(2 + _optionalSections.size()); |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 199 | |
| 200 | checkRulesAndFix(); |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 201 | } |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 202 | |
Patrick Williams | 2544b41 | 2022-10-04 08:41:06 -0500 | [diff] [blame] | 203 | PEL::PEL(std::vector<uint8_t>& data) : PEL(data, 0) {} |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 204 | |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 205 | PEL::PEL(std::vector<uint8_t>& data, uint32_t obmcLogID) |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 206 | { |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 207 | populateFromRawData(data, obmcLogID); |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 208 | } |
| 209 | |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 210 | void PEL::populateFromRawData(std::vector<uint8_t>& data, uint32_t obmcLogID) |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 211 | { |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 212 | Stream pelData{data}; |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 213 | _ph = std::make_unique<PrivateHeader>(pelData); |
| 214 | if (obmcLogID != 0) |
| 215 | { |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 216 | _ph->setOBMCLogID(obmcLogID); |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | _uh = std::make_unique<UserHeader>(pelData); |
Matt Spinler | 131870c | 2019-09-25 13:29:04 -0500 | [diff] [blame] | 220 | |
| 221 | // Use the section factory to create the rest of the objects |
| 222 | for (size_t i = 2; i < _ph->sectionCount(); i++) |
| 223 | { |
| 224 | auto section = section_factory::create(pelData); |
| 225 | _optionalSections.push_back(std::move(section)); |
| 226 | } |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | bool PEL::valid() const |
| 230 | { |
| 231 | bool valid = _ph->valid(); |
| 232 | |
| 233 | if (valid) |
| 234 | { |
| 235 | valid = _uh->valid(); |
| 236 | } |
| 237 | |
Matt Spinler | 131870c | 2019-09-25 13:29:04 -0500 | [diff] [blame] | 238 | if (valid) |
| 239 | { |
| 240 | if (!std::all_of(_optionalSections.begin(), _optionalSections.end(), |
| 241 | [](const auto& section) { return section->valid(); })) |
| 242 | { |
| 243 | valid = false; |
| 244 | } |
| 245 | } |
| 246 | |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 247 | return valid; |
| 248 | } |
| 249 | |
| 250 | void PEL::setCommitTime() |
| 251 | { |
| 252 | auto now = std::chrono::system_clock::now(); |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 253 | _ph->setCommitTimestamp(getBCDTime(now)); |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | void PEL::assignID() |
| 257 | { |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 258 | _ph->setID(generatePELID()); |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 259 | } |
| 260 | |
Matt Spinler | 0688545 | 2019-11-06 10:35:42 -0600 | [diff] [blame] | 261 | void PEL::flatten(std::vector<uint8_t>& pelBuffer) const |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 262 | { |
| 263 | Stream pelData{pelBuffer}; |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 264 | |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 265 | if (!valid()) |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 266 | { |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 267 | lg2::warning("Unflattening an invalid PEL"); |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 268 | } |
| 269 | |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 270 | _ph->flatten(pelData); |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 271 | _uh->flatten(pelData); |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 272 | |
| 273 | for (auto& section : _optionalSections) |
| 274 | { |
| 275 | section->flatten(pelData); |
| 276 | } |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 277 | } |
| 278 | |
Matt Spinler | 0688545 | 2019-11-06 10:35:42 -0600 | [diff] [blame] | 279 | std::vector<uint8_t> PEL::data() const |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 280 | { |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 281 | std::vector<uint8_t> pelData; |
| 282 | flatten(pelData); |
| 283 | return pelData; |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 284 | } |
| 285 | |
Matt Spinler | f1b46ff | 2020-01-22 14:10:04 -0600 | [diff] [blame] | 286 | size_t PEL::size() const |
| 287 | { |
| 288 | size_t size = 0; |
| 289 | |
| 290 | if (_ph) |
| 291 | { |
| 292 | size += _ph->header().size; |
| 293 | } |
| 294 | |
| 295 | if (_uh) |
| 296 | { |
| 297 | size += _uh->header().size; |
| 298 | } |
| 299 | |
| 300 | for (const auto& section : _optionalSections) |
| 301 | { |
| 302 | size += section->header().size; |
| 303 | } |
| 304 | |
| 305 | return size; |
| 306 | } |
| 307 | |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 308 | std::optional<SRC*> PEL::primarySRC() const |
| 309 | { |
Patrick Williams | ac1ba3f | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 310 | auto src = std::find_if(_optionalSections.begin(), _optionalSections.end(), |
| 311 | [](auto& section) { |
| 312 | return section->header().id == |
| 313 | static_cast<uint16_t>(SectionID::primarySRC); |
| 314 | }); |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 315 | if (src != _optionalSections.end()) |
| 316 | { |
| 317 | return static_cast<SRC*>(src->get()); |
| 318 | } |
| 319 | |
| 320 | return std::nullopt; |
| 321 | } |
| 322 | |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 323 | void PEL::checkRulesAndFix() |
| 324 | { |
Matt Spinler | 1f93c59 | 2020-09-10 10:43:08 -0500 | [diff] [blame] | 325 | // Only fix if the action flags are at their default value which |
| 326 | // means they weren't specified in the registry. Otherwise |
| 327 | // assume the user knows what they are doing. |
| 328 | if (_uh->actionFlags() == actionFlagsDefault) |
| 329 | { |
Patrick Williams | 2544b41 | 2022-10-04 08:41:06 -0500 | [diff] [blame] | 330 | auto [actionFlags, eventType] = pel_rules::check(0, _uh->eventType(), |
| 331 | _uh->severity()); |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 332 | |
Matt Spinler | 1f93c59 | 2020-09-10 10:43:08 -0500 | [diff] [blame] | 333 | _uh->setActionFlags(actionFlags); |
| 334 | _uh->setEventType(eventType); |
| 335 | } |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 336 | } |
| 337 | |
Matt Spinler | acb7c10 | 2020-01-10 13:49:22 -0600 | [diff] [blame] | 338 | void PEL::printSectionInJSON(const Section& section, std::string& buf, |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 339 | std::map<uint16_t, size_t>& pluralSections, |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 340 | message::Registry& registry, |
| 341 | const std::vector<std::string>& plugins, |
| 342 | uint8_t creatorID) const |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 343 | { |
| 344 | char tmpB[5]; |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 345 | uint8_t id[] = {static_cast<uint8_t>(section.header().id >> 8), |
| 346 | static_cast<uint8_t>(section.header().id)}; |
| 347 | sprintf(tmpB, "%c%c", id[0], id[1]); |
| 348 | std::string sectionID(tmpB); |
| 349 | std::string sectionName = pv::sectionTitles.count(sectionID) |
| 350 | ? pv::sectionTitles.at(sectionID) |
| 351 | : "Unknown Section"; |
Matt Spinler | acb7c10 | 2020-01-10 13:49:22 -0600 | [diff] [blame] | 352 | |
| 353 | // Add a count if there are multiple of this type of section |
| 354 | auto count = pluralSections.find(section.header().id); |
| 355 | if (count != pluralSections.end()) |
| 356 | { |
| 357 | sectionName += " " + std::to_string(count->second); |
| 358 | count->second++; |
| 359 | } |
| 360 | |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 361 | if (section.valid()) |
| 362 | { |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 363 | std::optional<std::string> json; |
| 364 | if (sectionID == "PS" || sectionID == "SS") |
| 365 | { |
Harisuddin Mohamed Isa | c8d6cc6 | 2020-08-19 22:47:19 +0800 | [diff] [blame] | 366 | json = section.getJSON(registry, plugins, creatorID); |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 367 | } |
Matt Spinler | 386a61e | 2020-08-13 15:51:12 -0500 | [diff] [blame] | 368 | else if ((sectionID == "UD") || (sectionID == "ED")) |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 369 | { |
Harisuddin Mohamed Isa | 3fdcd4e | 2020-08-26 11:56:42 +0800 | [diff] [blame] | 370 | json = section.getJSON(creatorID, plugins); |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 371 | } |
| 372 | else |
| 373 | { |
Matt Spinler | b832aa5 | 2023-03-21 15:32:34 -0500 | [diff] [blame] | 374 | json = section.getJSON(creatorID); |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 375 | } |
Matt Spinler | 4220a15 | 2020-03-26 10:18:09 -0500 | [diff] [blame] | 376 | |
| 377 | buf += "\"" + sectionName + "\": {\n"; |
| 378 | |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 379 | if (json) |
| 380 | { |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 381 | buf += *json + "\n},\n"; |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 382 | } |
| 383 | else |
| 384 | { |
Matt Spinler | 4220a15 | 2020-03-26 10:18:09 -0500 | [diff] [blame] | 385 | jsonInsert(buf, pv::sectionVer, |
| 386 | getNumberString("%d", section.header().version), 1); |
| 387 | jsonInsert(buf, pv::subSection, |
| 388 | getNumberString("%d", section.header().subType), 1); |
| 389 | jsonInsert(buf, pv::createdBy, |
| 390 | getNumberString("0x%X", section.header().componentID), |
| 391 | 1); |
| 392 | |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 393 | std::vector<uint8_t> data; |
| 394 | Stream s{data}; |
| 395 | section.flatten(s); |
Matt Spinler | 4220a15 | 2020-03-26 10:18:09 -0500 | [diff] [blame] | 396 | std::string dstr = |
| 397 | dumpHex(std::data(data) + SectionHeader::flattenedSize(), |
Harisuddin Mohamed Isa | 097ad12 | 2020-06-11 21:19:41 +0800 | [diff] [blame] | 398 | data.size() - SectionHeader::flattenedSize(), 2); |
Matt Spinler | 4220a15 | 2020-03-26 10:18:09 -0500 | [diff] [blame] | 399 | std::string jsonIndent(indentLevel, 0x20); |
| 400 | buf += jsonIndent + "\"Data\": [\n"; |
| 401 | buf += dstr; |
| 402 | buf += jsonIndent + "]\n"; |
| 403 | buf += "},\n"; |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 404 | } |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 405 | } |
| 406 | else |
| 407 | { |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 408 | buf += "\n\"Invalid Section\": [\n \"invalid\"\n],\n"; |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 409 | } |
| 410 | } |
| 411 | |
Matt Spinler | acb7c10 | 2020-01-10 13:49:22 -0600 | [diff] [blame] | 412 | std::map<uint16_t, size_t> PEL::getPluralSections() const |
| 413 | { |
| 414 | std::map<uint16_t, size_t> sectionCounts; |
| 415 | |
| 416 | for (const auto& section : optionalSections()) |
| 417 | { |
| 418 | if (sectionCounts.find(section->header().id) == sectionCounts.end()) |
| 419 | { |
| 420 | sectionCounts[section->header().id] = 1; |
| 421 | } |
| 422 | else |
| 423 | { |
| 424 | sectionCounts[section->header().id]++; |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | std::map<uint16_t, size_t> sections; |
| 429 | for (const auto& [id, count] : sectionCounts) |
| 430 | { |
| 431 | if (count > 1) |
| 432 | { |
| 433 | // Start with 0 here and printSectionInJSON() |
| 434 | // will increment it as it goes. |
| 435 | sections.emplace(id, 0); |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | return sections; |
| 440 | } |
| 441 | |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 442 | void PEL::toJSON(message::Registry& registry, |
| 443 | const std::vector<std::string>& plugins) const |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 444 | { |
Matt Spinler | acb7c10 | 2020-01-10 13:49:22 -0600 | [diff] [blame] | 445 | auto sections = getPluralSections(); |
| 446 | |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 447 | std::string buf = "{\n"; |
Matt Spinler | b832aa5 | 2023-03-21 15:32:34 -0500 | [diff] [blame] | 448 | printSectionInJSON(*(_ph.get()), buf, sections, registry, plugins, |
| 449 | _ph->creatorID()); |
| 450 | printSectionInJSON(*(_uh.get()), buf, sections, registry, plugins, |
| 451 | _ph->creatorID()); |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 452 | for (auto& section : this->optionalSections()) |
| 453 | { |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 454 | printSectionInJSON(*(section.get()), buf, sections, registry, plugins, |
| 455 | _ph->creatorID()); |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 456 | } |
| 457 | buf += "}"; |
| 458 | std::size_t found = buf.rfind(","); |
| 459 | if (found != std::string::npos) |
| 460 | buf.replace(found, 1, ""); |
| 461 | std::cout << buf << std::endl; |
| 462 | } |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 463 | |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 464 | bool PEL::addUserDataSection(std::unique_ptr<UserData> userData) |
| 465 | { |
| 466 | if (size() + userData->header().size > _maxPELSize) |
| 467 | { |
| 468 | if (userData->shrink(_maxPELSize - size())) |
| 469 | { |
| 470 | _optionalSections.push_back(std::move(userData)); |
| 471 | } |
| 472 | else |
| 473 | { |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 474 | lg2::warning("Could not shrink UserData section. Dropping. " |
| 475 | "Section size = {SSIZE}, Component ID = {COMP_ID}, " |
| 476 | "Subtype = {SUBTYPE}, Version = {VERSION}", |
| 477 | "SSIZE", userData->header().size, "COMP_ID", |
| 478 | userData->header().componentID, "SUBTYPE", |
| 479 | userData->header().subType, "VERSION", |
| 480 | userData->header().version); |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 481 | return false; |
| 482 | } |
| 483 | } |
| 484 | else |
| 485 | { |
| 486 | _optionalSections.push_back(std::move(userData)); |
| 487 | } |
| 488 | return true; |
| 489 | } |
| 490 | |
Matt Spinler | 5a90a95 | 2020-08-27 09:39:03 -0500 | [diff] [blame] | 491 | nlohmann::json PEL::getCalloutJSON(const PelFFDC& ffdcFiles) |
| 492 | { |
| 493 | nlohmann::json callouts; |
| 494 | |
| 495 | for (const auto& file : ffdcFiles) |
| 496 | { |
| 497 | if ((file.format == UserDataFormat::json) && |
| 498 | (file.subType == jsonCalloutSubtype)) |
| 499 | { |
| 500 | auto data = util::readFD(file.fd); |
| 501 | if (data.empty()) |
| 502 | { |
| 503 | throw std::runtime_error{ |
| 504 | "Could not get data from JSON callout file descriptor"}; |
| 505 | } |
| 506 | |
| 507 | std::string jsonString{data.begin(), data.begin() + data.size()}; |
| 508 | |
| 509 | callouts = nlohmann::json::parse(jsonString); |
| 510 | break; |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | return callouts; |
| 515 | } |
| 516 | |
Andrew Geissler | f8e750d | 2022-01-14 14:56:13 -0600 | [diff] [blame] | 517 | bool PEL::isHwCalloutPresent() const |
Andrew Geissler | 44fc316 | 2020-07-09 09:21:31 -0500 | [diff] [blame] | 518 | { |
| 519 | auto pSRC = primarySRC(); |
| 520 | if (!pSRC) |
| 521 | { |
| 522 | return false; |
| 523 | } |
| 524 | |
| 525 | bool calloutPresent = false; |
| 526 | if ((*pSRC)->callouts()) |
| 527 | { |
| 528 | for (auto& i : (*pSRC)->callouts()->callouts()) |
| 529 | { |
| 530 | if (((*i).fruIdentity())) |
| 531 | { |
| 532 | auto& fruId = (*i).fruIdentity(); |
Andrew Geissler | f8e750d | 2022-01-14 14:56:13 -0600 | [diff] [blame] | 533 | if ((*fruId).failingComponentType() == |
| 534 | src::FRUIdentity::hardwareFRU) |
Andrew Geissler | 44fc316 | 2020-07-09 09:21:31 -0500 | [diff] [blame] | 535 | { |
| 536 | calloutPresent = true; |
| 537 | break; |
| 538 | } |
| 539 | } |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | return calloutPresent; |
| 544 | } |
| 545 | |
Sumit Kumar | 3160a54 | 2021-04-26 08:07:04 -0500 | [diff] [blame] | 546 | void PEL::updateSysInfoInExtendedUserDataSection( |
| 547 | const DataInterfaceBase& dataIface) |
| 548 | { |
| 549 | const AdditionalData additionalData; |
| 550 | |
| 551 | // Check for PEL from Hostboot |
| 552 | if (_ph->creatorID() == static_cast<uint8_t>(CreatorID::hostboot)) |
| 553 | { |
| 554 | // Get the ED section from PEL |
| 555 | auto op = std::find_if(_optionalSections.begin(), |
Patrick Williams | 5fb575a | 2023-10-20 11:18:21 -0500 | [diff] [blame] | 556 | _optionalSections.end(), [](auto& section) { |
Patrick Williams | ac1ba3f | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 557 | return section->header().id == |
| 558 | static_cast<uint16_t>(SectionID::extUserData); |
| 559 | }); |
Sumit Kumar | 3160a54 | 2021-04-26 08:07:04 -0500 | [diff] [blame] | 560 | |
| 561 | // Check for ED section found and its not the last section of PEL |
| 562 | if (op != _optionalSections.end()) |
| 563 | { |
| 564 | // Get the extended user data class mapped to found section |
| 565 | auto extUserData = static_cast<ExtendedUserData*>(op->get()); |
| 566 | |
| 567 | // Check for the creator ID is for OpenBMC |
| 568 | if (extUserData->creatorID() == |
| 569 | static_cast<uint8_t>(CreatorID::openBMC)) |
| 570 | { |
| 571 | // Update subtype and component id |
| 572 | auto subType = static_cast<uint8_t>(UserDataFormat::json); |
| 573 | auto componentId = |
| 574 | static_cast<uint16_t>(ComponentID::phosphorLogging); |
| 575 | |
| 576 | // Update system data to ED section |
George Liu | 9ac0d9b | 2022-07-15 10:57:38 +0800 | [diff] [blame] | 577 | auto ud = util::makeSysInfoUserDataSection(additionalData, |
| 578 | dataIface, false); |
Sumit Kumar | 3160a54 | 2021-04-26 08:07:04 -0500 | [diff] [blame] | 579 | extUserData->updateDataSection(subType, componentId, |
| 580 | ud->data()); |
| 581 | } |
| 582 | } |
| 583 | } |
| 584 | } |
| 585 | |
Matt Spinler | 8e65f4e | 2023-05-02 13:40:08 -0500 | [diff] [blame] | 586 | bool PEL::getDeconfigFlag() const |
| 587 | { |
| 588 | auto creator = static_cast<CreatorID>(_ph->creatorID()); |
| 589 | |
| 590 | if ((creator == CreatorID::openBMC) || (creator == CreatorID::hostboot)) |
| 591 | { |
| 592 | auto src = primarySRC(); |
| 593 | return (*src)->getErrorStatusFlag(SRC::ErrorStatusFlags::deconfigured); |
| 594 | } |
| 595 | return false; |
| 596 | } |
| 597 | |
| 598 | bool PEL::getGuardFlag() const |
| 599 | { |
| 600 | auto creator = static_cast<CreatorID>(_ph->creatorID()); |
| 601 | |
| 602 | if ((creator == CreatorID::openBMC) || (creator == CreatorID::hostboot)) |
| 603 | { |
| 604 | auto src = primarySRC(); |
| 605 | return (*src)->getErrorStatusFlag(SRC::ErrorStatusFlags::guarded); |
| 606 | } |
| 607 | return false; |
| 608 | } |
| 609 | |
Sumit Kumar | 3e27443 | 2021-09-14 06:37:56 -0500 | [diff] [blame] | 610 | void PEL::updateTerminateBitInSRCSection() |
| 611 | { |
| 612 | // Check for pel severity of type - 0x51 = critical error, system |
| 613 | // termination |
| 614 | if (_uh->severity() == 0x51) |
| 615 | { |
| 616 | // Get the primary SRC section |
| 617 | auto pSRC = primarySRC(); |
| 618 | if (pSRC) |
| 619 | { |
| 620 | (*pSRC)->setTerminateBit(); |
| 621 | } |
| 622 | } |
| 623 | } |
| 624 | |
Matt Spinler | 9d92109 | 2022-12-15 11:54:49 -0600 | [diff] [blame] | 625 | void PEL::addJournalSections(const message::Entry& regEntry, |
| 626 | const JournalBase& journal) |
| 627 | { |
| 628 | if (!regEntry.journalCapture) |
| 629 | { |
| 630 | return; |
| 631 | } |
| 632 | |
| 633 | // Write all unwritten journal data to disk. |
| 634 | journal.sync(); |
| 635 | |
| 636 | const auto& jc = regEntry.journalCapture.value(); |
| 637 | std::vector<std::vector<std::string>> allMessages; |
| 638 | |
| 639 | if (std::holds_alternative<size_t>(jc)) |
| 640 | { |
| 641 | // Get the previous numLines journal entries |
| 642 | const auto& numLines = std::get<size_t>(jc); |
| 643 | try |
| 644 | { |
| 645 | auto messages = journal.getMessages("", numLines); |
| 646 | if (!messages.empty()) |
| 647 | { |
| 648 | allMessages.push_back(std::move(messages)); |
| 649 | } |
| 650 | } |
| 651 | catch (const std::exception& e) |
| 652 | { |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 653 | lg2::error("Failed during journal collection: {ERROR}", "ERROR", e); |
Matt Spinler | 9d92109 | 2022-12-15 11:54:49 -0600 | [diff] [blame] | 654 | } |
| 655 | } |
| 656 | else if (std::holds_alternative<message::AppCaptureList>(jc)) |
| 657 | { |
| 658 | // Get journal entries based on the syslog id field. |
| 659 | const auto& sections = std::get<message::AppCaptureList>(jc); |
| 660 | for (const auto& [syslogID, numLines] : sections) |
| 661 | { |
| 662 | try |
| 663 | { |
| 664 | auto messages = journal.getMessages(syslogID, numLines); |
| 665 | if (!messages.empty()) |
| 666 | { |
| 667 | allMessages.push_back(std::move(messages)); |
| 668 | } |
| 669 | } |
| 670 | catch (const std::exception& e) |
| 671 | { |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 672 | lg2::error("Failed during journal collection: {ERROR}", "ERROR", |
| 673 | e); |
Matt Spinler | 9d92109 | 2022-12-15 11:54:49 -0600 | [diff] [blame] | 674 | } |
| 675 | } |
| 676 | } |
| 677 | |
| 678 | // Create the UserData sections |
| 679 | for (const auto& messages : allMessages) |
| 680 | { |
| 681 | auto buffer = util::flattenLines(messages); |
| 682 | |
| 683 | // If the buffer is way too big, it can overflow the uint16_t |
| 684 | // PEL section size field that is checked below so do a cursory |
| 685 | // check here. |
| 686 | if (buffer.size() > _maxPELSize) |
| 687 | { |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 688 | lg2::warning( |
| 689 | "Journal UserData section does not fit in PEL, dropping. " |
| 690 | "PEL size = {PEL_SIZE}, data size = {DATA_SIZE}", |
| 691 | "PEL_SIZE", size(), "DATA_SIZE", buffer.size()); |
Matt Spinler | 9d92109 | 2022-12-15 11:54:49 -0600 | [diff] [blame] | 692 | continue; |
| 693 | } |
| 694 | |
| 695 | // Sections must be 4 byte aligned. |
| 696 | while (buffer.size() % 4 != 0) |
| 697 | { |
| 698 | buffer.push_back(0); |
| 699 | } |
| 700 | |
| 701 | auto ud = std::make_unique<UserData>( |
| 702 | static_cast<uint16_t>(ComponentID::phosphorLogging), |
| 703 | static_cast<uint8_t>(UserDataFormat::text), |
| 704 | static_cast<uint8_t>(UserDataFormatVersion::text), buffer); |
| 705 | |
| 706 | if (size() + ud->header().size <= _maxPELSize) |
| 707 | { |
| 708 | _optionalSections.push_back(std::move(ud)); |
| 709 | } |
| 710 | else |
| 711 | { |
| 712 | // Don't attempt to shrink here since we'd be dropping the |
| 713 | // most recent journal entries which would be confusing. |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 714 | lg2::warning( |
| 715 | "Journal UserData section does not fit in PEL, dropping. " |
| 716 | "PEL size = {PEL_SIZE}, data size = {DATA_SIZE}", |
| 717 | "PEL_SIZE", size(), "DATA_SIZE", buffer.size()); |
Matt Spinler | 9d92109 | 2022-12-15 11:54:49 -0600 | [diff] [blame] | 718 | ud.reset(); |
| 719 | continue; |
| 720 | } |
| 721 | } |
| 722 | } |
| 723 | |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 724 | namespace util |
| 725 | { |
| 726 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 727 | std::unique_ptr<UserData> makeJSONUserDataSection(const nlohmann::json& json) |
| 728 | { |
| 729 | auto jsonString = json.dump(); |
| 730 | std::vector<uint8_t> jsonData(jsonString.begin(), jsonString.end()); |
| 731 | |
| 732 | // Pad to a 4 byte boundary |
| 733 | while ((jsonData.size() % 4) != 0) |
| 734 | { |
| 735 | jsonData.push_back(0); |
| 736 | } |
| 737 | |
| 738 | return std::make_unique<UserData>( |
| 739 | static_cast<uint16_t>(ComponentID::phosphorLogging), |
| 740 | static_cast<uint8_t>(UserDataFormat::json), |
| 741 | static_cast<uint8_t>(UserDataFormatVersion::json), jsonData); |
| 742 | } |
| 743 | |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 744 | std::unique_ptr<UserData> makeADUserDataSection(const AdditionalData& ad) |
| 745 | { |
| 746 | assert(!ad.empty()); |
| 747 | nlohmann::json json; |
| 748 | |
| 749 | // Remove the 'ESEL' entry, as it contains a full PEL in the value. |
| 750 | if (ad.getValue("ESEL")) |
| 751 | { |
| 752 | auto newAD = ad; |
| 753 | newAD.remove("ESEL"); |
| 754 | json = newAD.toJSON(); |
| 755 | } |
| 756 | else |
| 757 | { |
| 758 | json = ad.toJSON(); |
| 759 | } |
| 760 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 761 | return makeJSONUserDataSection(json); |
| 762 | } |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 763 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 764 | void addProcessNameToJSON(nlohmann::json& json, |
| 765 | const std::optional<std::string>& pid, |
| 766 | const DataInterfaceBase& dataIface) |
| 767 | { |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 768 | std::string name{unknownValue}; |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 769 | |
| 770 | try |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 771 | { |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 772 | if (pid) |
| 773 | { |
| 774 | auto n = dataIface.getProcessName(*pid); |
| 775 | if (n) |
| 776 | { |
| 777 | name = *n; |
| 778 | } |
| 779 | } |
| 780 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 781 | catch (const std::exception& e) |
Patrick Williams | 2544b41 | 2022-10-04 08:41:06 -0500 | [diff] [blame] | 782 | {} |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 783 | |
Sumit Kumar | 3160a54 | 2021-04-26 08:07:04 -0500 | [diff] [blame] | 784 | if (pid) |
| 785 | { |
| 786 | json["Process Name"] = std::move(name); |
| 787 | } |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 788 | } |
| 789 | |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 790 | void addBMCFWVersionIDToJSON(nlohmann::json& json, |
| 791 | const DataInterfaceBase& dataIface) |
| 792 | { |
| 793 | auto id = dataIface.getBMCFWVersionID(); |
| 794 | if (id.empty()) |
| 795 | { |
| 796 | id = unknownValue; |
| 797 | } |
| 798 | |
Matt Spinler | c2b8a51 | 2021-05-21 12:44:42 -0600 | [diff] [blame] | 799 | json["FW Version ID"] = std::move(id); |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 800 | } |
| 801 | |
Matt Spinler | 4aa23a1 | 2020-02-03 15:05:09 -0600 | [diff] [blame] | 802 | std::string lastSegment(char separator, std::string data) |
| 803 | { |
| 804 | auto pos = data.find_last_of(separator); |
| 805 | if (pos != std::string::npos) |
| 806 | { |
| 807 | data = data.substr(pos + 1); |
| 808 | } |
| 809 | |
| 810 | return data; |
| 811 | } |
| 812 | |
Ben Tyner | e32b7e7 | 2021-05-18 12:38:40 -0500 | [diff] [blame] | 813 | void addIMKeyword(nlohmann::json& json, const DataInterfaceBase& dataIface) |
| 814 | { |
| 815 | auto keyword = dataIface.getSystemIMKeyword(); |
| 816 | |
| 817 | std::string value{}; |
| 818 | |
| 819 | std::for_each(keyword.begin(), keyword.end(), [&](const auto& byte) { |
Jayanth Othayoth | 1aa90d4 | 2023-09-13 04:25:45 -0500 | [diff] [blame] | 820 | value += std::format("{:02X}", byte); |
Ben Tyner | e32b7e7 | 2021-05-18 12:38:40 -0500 | [diff] [blame] | 821 | }); |
| 822 | |
| 823 | json["System IM"] = value; |
| 824 | } |
| 825 | |
Matt Spinler | 4aa23a1 | 2020-02-03 15:05:09 -0600 | [diff] [blame] | 826 | void addStatesToJSON(nlohmann::json& json, const DataInterfaceBase& dataIface) |
| 827 | { |
| 828 | json["BMCState"] = lastSegment('.', dataIface.getBMCState()); |
| 829 | json["ChassisState"] = lastSegment('.', dataIface.getChassisState()); |
| 830 | json["HostState"] = lastSegment('.', dataIface.getHostState()); |
Sumit Kumar | 2c36fdd | 2021-09-21 03:12:11 -0500 | [diff] [blame] | 831 | json["BootState"] = lastSegment('.', dataIface.getBootState()); |
Matt Spinler | 4aa23a1 | 2020-02-03 15:05:09 -0600 | [diff] [blame] | 832 | } |
| 833 | |
George Liu | 9ac0d9b | 2022-07-15 10:57:38 +0800 | [diff] [blame] | 834 | void addBMCUptime(nlohmann::json& json, const DataInterfaceBase& dataIface) |
| 835 | { |
| 836 | auto seconds = dataIface.getUptimeInSeconds(); |
| 837 | if (seconds) |
| 838 | { |
| 839 | json["BMCUptime"] = dataIface.getBMCUptime(*seconds); |
| 840 | } |
| 841 | else |
| 842 | { |
| 843 | json["BMCUptime"] = ""; |
| 844 | } |
| 845 | json["BMCLoad"] = dataIface.getBMCLoadAvg(); |
| 846 | } |
| 847 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 848 | std::unique_ptr<UserData> |
| 849 | makeSysInfoUserDataSection(const AdditionalData& ad, |
George Liu | 9ac0d9b | 2022-07-15 10:57:38 +0800 | [diff] [blame] | 850 | const DataInterfaceBase& dataIface, |
| 851 | bool addUptime) |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 852 | { |
| 853 | nlohmann::json json; |
| 854 | |
| 855 | addProcessNameToJSON(json, ad.getValue("_PID"), dataIface); |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 856 | addBMCFWVersionIDToJSON(json, dataIface); |
Ben Tyner | e32b7e7 | 2021-05-18 12:38:40 -0500 | [diff] [blame] | 857 | addIMKeyword(json, dataIface); |
Matt Spinler | 4aa23a1 | 2020-02-03 15:05:09 -0600 | [diff] [blame] | 858 | addStatesToJSON(json, dataIface); |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 859 | |
George Liu | 9ac0d9b | 2022-07-15 10:57:38 +0800 | [diff] [blame] | 860 | if (addUptime) |
| 861 | { |
| 862 | addBMCUptime(json, dataIface); |
| 863 | } |
| 864 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 865 | return makeJSONUserDataSection(json); |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 866 | } |
| 867 | |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 868 | std::vector<uint8_t> readFD(int fd) |
| 869 | { |
| 870 | std::vector<uint8_t> data; |
| 871 | |
| 872 | // Get the size |
| 873 | struct stat s; |
| 874 | int r = fstat(fd, &s); |
| 875 | if (r != 0) |
| 876 | { |
| 877 | auto e = errno; |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 878 | lg2::error("Could not get FFDC file size from FD, errno = {ERRNO}", |
| 879 | "ERRNO", e); |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 880 | return data; |
| 881 | } |
| 882 | |
| 883 | if (0 == s.st_size) |
| 884 | { |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 885 | lg2::error("FFDC file is empty"); |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 886 | return data; |
| 887 | } |
| 888 | |
| 889 | data.resize(s.st_size); |
| 890 | |
| 891 | // Make sure its at the beginning, as maybe another |
| 892 | // extension already used it. |
| 893 | r = lseek(fd, 0, SEEK_SET); |
| 894 | if (r == -1) |
| 895 | { |
| 896 | auto e = errno; |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 897 | lg2::error("Could not seek to beginning of FFDC file, errno = {ERRNO}", |
| 898 | "ERRNO", e); |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 899 | return data; |
| 900 | } |
| 901 | |
| 902 | r = read(fd, data.data(), s.st_size); |
| 903 | if (r == -1) |
| 904 | { |
| 905 | auto e = errno; |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 906 | lg2::error("Could not read FFDC file, errno = {ERRNO}", "ERRNO", e); |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 907 | } |
| 908 | else if (r != s.st_size) |
| 909 | { |
Matt Spinler | fd2da66 | 2023-07-07 16:25:14 -0500 | [diff] [blame] | 910 | lg2::warning("Could not read full FFDC file. " |
| 911 | "File size = {FSIZE}, Size read = {SIZE_READ}", |
| 912 | "FSIZE", s.st_size, "SIZE_READ", r); |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 913 | } |
| 914 | |
| 915 | return data; |
| 916 | } |
| 917 | |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 918 | std::unique_ptr<UserData> makeFFDCuserDataSection(uint16_t componentID, |
| 919 | const PelFFDCfile& file) |
| 920 | { |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 921 | auto data = readFD(file.fd); |
| 922 | |
| 923 | if (data.empty()) |
| 924 | { |
| 925 | return std::unique_ptr<UserData>(); |
| 926 | } |
| 927 | |
| 928 | // The data needs 4 Byte alignment, and save amount padded for the |
| 929 | // CBOR case. |
| 930 | uint32_t pad = 0; |
| 931 | while (data.size() % 4) |
| 932 | { |
| 933 | data.push_back(0); |
| 934 | pad++; |
| 935 | } |
| 936 | |
| 937 | // For JSON, CBOR, and Text use our component ID, subType, and version, |
| 938 | // otherwise use the supplied ones. |
| 939 | uint16_t compID = static_cast<uint16_t>(ComponentID::phosphorLogging); |
| 940 | uint8_t subType{}; |
| 941 | uint8_t version{}; |
| 942 | |
| 943 | switch (file.format) |
| 944 | { |
| 945 | case UserDataFormat::json: |
| 946 | subType = static_cast<uint8_t>(UserDataFormat::json); |
| 947 | version = static_cast<uint8_t>(UserDataFormatVersion::json); |
| 948 | break; |
| 949 | case UserDataFormat::cbor: |
| 950 | subType = static_cast<uint8_t>(UserDataFormat::cbor); |
| 951 | version = static_cast<uint8_t>(UserDataFormatVersion::cbor); |
| 952 | |
| 953 | // The CBOR parser will fail on the extra pad bytes since they |
| 954 | // aren't CBOR. Add the amount we padded to the end and other |
| 955 | // code will remove it all before parsing. |
| 956 | { |
| 957 | data.resize(data.size() + 4); |
| 958 | Stream stream{data}; |
| 959 | stream.offset(data.size() - 4); |
| 960 | stream << pad; |
| 961 | } |
| 962 | |
| 963 | break; |
| 964 | case UserDataFormat::text: |
| 965 | subType = static_cast<uint8_t>(UserDataFormat::text); |
| 966 | version = static_cast<uint8_t>(UserDataFormatVersion::text); |
| 967 | break; |
| 968 | case UserDataFormat::custom: |
| 969 | default: |
| 970 | // Use the passed in values |
| 971 | compID = componentID; |
| 972 | subType = file.subType; |
| 973 | version = file.version; |
| 974 | break; |
| 975 | } |
| 976 | |
| 977 | return std::make_unique<UserData>(compID, subType, version, data); |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 978 | } |
| 979 | |
Matt Spinler | 9d92109 | 2022-12-15 11:54:49 -0600 | [diff] [blame] | 980 | std::vector<uint8_t> flattenLines(const std::vector<std::string>& lines) |
| 981 | { |
| 982 | std::vector<uint8_t> out; |
| 983 | |
| 984 | for (const auto& line : lines) |
| 985 | { |
| 986 | out.insert(out.end(), line.begin(), line.end()); |
| 987 | |
| 988 | if (out.back() != '\n') |
| 989 | { |
| 990 | out.push_back('\n'); |
| 991 | } |
| 992 | } |
| 993 | |
| 994 | return out; |
| 995 | } |
| 996 | |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 997 | } // namespace util |
| 998 | |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 999 | } // namespace pels |
| 1000 | } // namespace openpower |