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 | */ |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 16 | #include "pel.hpp" |
| 17 | |
| 18 | #include "bcd_time.hpp" |
Matt Spinler | 386a61e | 2020-08-13 15:51:12 -0500 | [diff] [blame] | 19 | #include "extended_user_data.hpp" |
Matt Spinler | c63e2e8 | 2019-12-02 15:50:12 -0600 | [diff] [blame] | 20 | #include "extended_user_header.hpp" |
Matt Spinler | aa65947 | 2019-10-23 09:26:48 -0500 | [diff] [blame] | 21 | #include "failing_mtms.hpp" |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 22 | #include "json_utils.hpp" |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 23 | #include "log_id.hpp" |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 24 | #include "pel_rules.hpp" |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 25 | #include "pel_values.hpp" |
Matt Spinler | 131870c | 2019-09-25 13:29:04 -0500 | [diff] [blame] | 26 | #include "section_factory.hpp" |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 27 | #include "src.hpp" |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 28 | #include "stream.hpp" |
Matt Spinler | afa857c | 2019-10-24 13:03:46 -0500 | [diff] [blame] | 29 | #include "user_data_formats.hpp" |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 30 | |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 31 | #include <sys/stat.h> |
| 32 | #include <unistd.h> |
| 33 | |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 34 | #include <iostream> |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 35 | #include <phosphor-logging/log.hpp> |
| 36 | |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 37 | namespace openpower |
| 38 | { |
| 39 | namespace pels |
| 40 | { |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 41 | namespace message = openpower::pels::message; |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 42 | namespace pv = openpower::pels::pel_values; |
Matt Spinler | 4bfc908 | 2020-03-24 15:05:54 -0500 | [diff] [blame] | 43 | using namespace phosphor::logging; |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 44 | |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 45 | constexpr auto unknownValue = "Unknown"; |
Matt Spinler | 5a90a95 | 2020-08-27 09:39:03 -0500 | [diff] [blame] | 46 | constexpr uint8_t jsonCalloutSubtype = 0xCA; |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 47 | |
Matt Spinler | 4bfc908 | 2020-03-24 15:05:54 -0500 | [diff] [blame] | 48 | PEL::PEL(const message::Entry& regEntry, uint32_t obmcLogID, uint64_t timestamp, |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 49 | phosphor::logging::Entry::Level severity, |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 50 | const AdditionalData& additionalData, const PelFFDC& ffdcFiles, |
Matt Spinler | aa65947 | 2019-10-23 09:26:48 -0500 | [diff] [blame] | 51 | const DataInterfaceBase& dataIface) |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 52 | { |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 53 | std::map<std::string, std::vector<std::string>> debugData; |
Matt Spinler | 5a90a95 | 2020-08-27 09:39:03 -0500 | [diff] [blame] | 54 | nlohmann::json callouts; |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 55 | |
Matt Spinler | 4bfc908 | 2020-03-24 15:05:54 -0500 | [diff] [blame] | 56 | _ph = std::make_unique<PrivateHeader>(regEntry.componentID, obmcLogID, |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 57 | timestamp); |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 58 | _uh = std::make_unique<UserHeader>(regEntry, severity, dataIface); |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 59 | |
Matt Spinler | 5a90a95 | 2020-08-27 09:39:03 -0500 | [diff] [blame] | 60 | // Extract any callouts embedded in an FFDC file. |
| 61 | if (!ffdcFiles.empty()) |
| 62 | { |
| 63 | try |
| 64 | { |
| 65 | callouts = getCalloutJSON(ffdcFiles); |
| 66 | } |
| 67 | catch (const std::exception& e) |
| 68 | { |
| 69 | debugData.emplace("FFDC file JSON callouts error", |
| 70 | std::vector<std::string>{e.what()}); |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | auto src = |
| 75 | std::make_unique<SRC>(regEntry, additionalData, callouts, dataIface); |
| 76 | |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 77 | if (!src->getDebugData().empty()) |
| 78 | { |
| 79 | // Something didn't go as planned |
| 80 | debugData.emplace("SRC", src->getDebugData()); |
| 81 | } |
Matt Spinler | c63e2e8 | 2019-12-02 15:50:12 -0600 | [diff] [blame] | 82 | |
Matt Spinler | 4bfc908 | 2020-03-24 15:05:54 -0500 | [diff] [blame] | 83 | auto euh = std::make_unique<ExtendedUserHeader>(dataIface, regEntry, *src); |
Matt Spinler | c63e2e8 | 2019-12-02 15:50:12 -0600 | [diff] [blame] | 84 | |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 85 | _optionalSections.push_back(std::move(src)); |
Matt Spinler | c63e2e8 | 2019-12-02 15:50:12 -0600 | [diff] [blame] | 86 | _optionalSections.push_back(std::move(euh)); |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 87 | |
Matt Spinler | aa65947 | 2019-10-23 09:26:48 -0500 | [diff] [blame] | 88 | auto mtms = std::make_unique<FailingMTMS>(dataIface); |
| 89 | _optionalSections.push_back(std::move(mtms)); |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 90 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 91 | auto ud = util::makeSysInfoUserDataSection(additionalData, dataIface); |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 92 | addUserDataSection(std::move(ud)); |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 93 | |
Matt Spinler | 9b7e94f | 2020-03-24 15:44:41 -0500 | [diff] [blame] | 94 | // Create a UserData section from AdditionalData. |
Matt Spinler | afa857c | 2019-10-24 13:03:46 -0500 | [diff] [blame] | 95 | if (!additionalData.empty()) |
| 96 | { |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 97 | ud = util::makeADUserDataSection(additionalData); |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 98 | addUserDataSection(std::move(ud)); |
Matt Spinler | afa857c | 2019-10-24 13:03:46 -0500 | [diff] [blame] | 99 | } |
| 100 | |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 101 | // Add any FFDC files into UserData sections |
| 102 | for (const auto& file : ffdcFiles) |
| 103 | { |
| 104 | ud = util::makeFFDCuserDataSection(regEntry.componentID, file); |
| 105 | if (!ud) |
| 106 | { |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 107 | // Add this error into the debug data UserData section |
| 108 | std::ostringstream msg; |
| 109 | msg << "Could not make PEL FFDC UserData section from file" |
| 110 | << std::hex << regEntry.componentID << " " << file.subType |
| 111 | << " " << file.version; |
| 112 | if (debugData.count("FFDC File")) |
| 113 | { |
| 114 | debugData.at("FFDC File").push_back(msg.str()); |
| 115 | } |
| 116 | else |
| 117 | { |
| 118 | debugData.emplace("FFDC File", |
| 119 | std::vector<std::string>{msg.str()}); |
| 120 | } |
| 121 | |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 122 | continue; |
| 123 | } |
| 124 | |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 125 | addUserDataSection(std::move(ud)); |
| 126 | } |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 127 | |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 128 | // Store in the PEL any important debug data created while |
| 129 | // building the PEL sections. |
| 130 | if (!debugData.empty()) |
| 131 | { |
| 132 | nlohmann::json data; |
| 133 | data["PEL Internal Debug Data"] = debugData; |
| 134 | ud = util::makeJSONUserDataSection(data); |
| 135 | |
| 136 | addUserDataSection(std::move(ud)); |
| 137 | |
| 138 | // Also put in the journal for debug |
| 139 | for (const auto& [name, data] : debugData) |
| 140 | { |
| 141 | for (const auto& message : data) |
| 142 | { |
| 143 | std::string entry = name + ": " + message; |
| 144 | log<level::INFO>(entry.c_str()); |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 145 | } |
| 146 | } |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 147 | } |
| 148 | |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 149 | _ph->setSectionCount(2 + _optionalSections.size()); |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 150 | |
| 151 | checkRulesAndFix(); |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 152 | } |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 153 | |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 154 | PEL::PEL(std::vector<uint8_t>& data) : PEL(data, 0) |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 155 | { |
| 156 | } |
| 157 | |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 158 | PEL::PEL(std::vector<uint8_t>& data, uint32_t obmcLogID) |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 159 | { |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 160 | populateFromRawData(data, obmcLogID); |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 161 | } |
| 162 | |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 163 | void PEL::populateFromRawData(std::vector<uint8_t>& data, uint32_t obmcLogID) |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 164 | { |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 165 | Stream pelData{data}; |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 166 | _ph = std::make_unique<PrivateHeader>(pelData); |
| 167 | if (obmcLogID != 0) |
| 168 | { |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 169 | _ph->setOBMCLogID(obmcLogID); |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | _uh = std::make_unique<UserHeader>(pelData); |
Matt Spinler | 131870c | 2019-09-25 13:29:04 -0500 | [diff] [blame] | 173 | |
| 174 | // Use the section factory to create the rest of the objects |
| 175 | for (size_t i = 2; i < _ph->sectionCount(); i++) |
| 176 | { |
| 177 | auto section = section_factory::create(pelData); |
| 178 | _optionalSections.push_back(std::move(section)); |
| 179 | } |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | bool PEL::valid() const |
| 183 | { |
| 184 | bool valid = _ph->valid(); |
| 185 | |
| 186 | if (valid) |
| 187 | { |
| 188 | valid = _uh->valid(); |
| 189 | } |
| 190 | |
Matt Spinler | 131870c | 2019-09-25 13:29:04 -0500 | [diff] [blame] | 191 | if (valid) |
| 192 | { |
| 193 | if (!std::all_of(_optionalSections.begin(), _optionalSections.end(), |
| 194 | [](const auto& section) { return section->valid(); })) |
| 195 | { |
| 196 | valid = false; |
| 197 | } |
| 198 | } |
| 199 | |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 200 | return valid; |
| 201 | } |
| 202 | |
| 203 | void PEL::setCommitTime() |
| 204 | { |
| 205 | auto now = std::chrono::system_clock::now(); |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 206 | _ph->setCommitTimestamp(getBCDTime(now)); |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | void PEL::assignID() |
| 210 | { |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 211 | _ph->setID(generatePELID()); |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 212 | } |
| 213 | |
Matt Spinler | 0688545 | 2019-11-06 10:35:42 -0600 | [diff] [blame] | 214 | void PEL::flatten(std::vector<uint8_t>& pelBuffer) const |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 215 | { |
| 216 | Stream pelData{pelBuffer}; |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 217 | |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 218 | if (!valid()) |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 219 | { |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 220 | log<level::WARNING>("Unflattening an invalid PEL"); |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 221 | } |
| 222 | |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 223 | _ph->flatten(pelData); |
Matt Spinler | b832363 | 2019-09-20 15:11:04 -0500 | [diff] [blame] | 224 | _uh->flatten(pelData); |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 225 | |
| 226 | for (auto& section : _optionalSections) |
| 227 | { |
| 228 | section->flatten(pelData); |
| 229 | } |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 230 | } |
| 231 | |
Matt Spinler | 0688545 | 2019-11-06 10:35:42 -0600 | [diff] [blame] | 232 | std::vector<uint8_t> PEL::data() const |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 233 | { |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 234 | std::vector<uint8_t> pelData; |
| 235 | flatten(pelData); |
| 236 | return pelData; |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 237 | } |
| 238 | |
Matt Spinler | f1b46ff | 2020-01-22 14:10:04 -0600 | [diff] [blame] | 239 | size_t PEL::size() const |
| 240 | { |
| 241 | size_t size = 0; |
| 242 | |
| 243 | if (_ph) |
| 244 | { |
| 245 | size += _ph->header().size; |
| 246 | } |
| 247 | |
| 248 | if (_uh) |
| 249 | { |
| 250 | size += _uh->header().size; |
| 251 | } |
| 252 | |
| 253 | for (const auto& section : _optionalSections) |
| 254 | { |
| 255 | size += section->header().size; |
| 256 | } |
| 257 | |
| 258 | return size; |
| 259 | } |
| 260 | |
Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 261 | std::optional<SRC*> PEL::primarySRC() const |
| 262 | { |
| 263 | auto src = std::find_if( |
| 264 | _optionalSections.begin(), _optionalSections.end(), [](auto& section) { |
| 265 | return section->header().id == |
| 266 | static_cast<uint16_t>(SectionID::primarySRC); |
| 267 | }); |
| 268 | if (src != _optionalSections.end()) |
| 269 | { |
| 270 | return static_cast<SRC*>(src->get()); |
| 271 | } |
| 272 | |
| 273 | return std::nullopt; |
| 274 | } |
| 275 | |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 276 | void PEL::checkRulesAndFix() |
| 277 | { |
Matt Spinler | 1f93c59 | 2020-09-10 10:43:08 -0500 | [diff] [blame] | 278 | // Only fix if the action flags are at their default value which |
| 279 | // means they weren't specified in the registry. Otherwise |
| 280 | // assume the user knows what they are doing. |
| 281 | if (_uh->actionFlags() == actionFlagsDefault) |
| 282 | { |
| 283 | auto [actionFlags, eventType] = |
| 284 | pel_rules::check(0, _uh->eventType(), _uh->severity()); |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 285 | |
Matt Spinler | 1f93c59 | 2020-09-10 10:43:08 -0500 | [diff] [blame] | 286 | _uh->setActionFlags(actionFlags); |
| 287 | _uh->setEventType(eventType); |
| 288 | } |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 289 | } |
| 290 | |
Matt Spinler | acb7c10 | 2020-01-10 13:49:22 -0600 | [diff] [blame] | 291 | void PEL::printSectionInJSON(const Section& section, std::string& buf, |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 292 | std::map<uint16_t, size_t>& pluralSections, |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 293 | message::Registry& registry, |
| 294 | const std::vector<std::string>& plugins, |
| 295 | uint8_t creatorID) const |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 296 | { |
| 297 | char tmpB[5]; |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 298 | uint8_t id[] = {static_cast<uint8_t>(section.header().id >> 8), |
| 299 | static_cast<uint8_t>(section.header().id)}; |
| 300 | sprintf(tmpB, "%c%c", id[0], id[1]); |
| 301 | std::string sectionID(tmpB); |
| 302 | std::string sectionName = pv::sectionTitles.count(sectionID) |
| 303 | ? pv::sectionTitles.at(sectionID) |
| 304 | : "Unknown Section"; |
Matt Spinler | acb7c10 | 2020-01-10 13:49:22 -0600 | [diff] [blame] | 305 | |
| 306 | // Add a count if there are multiple of this type of section |
| 307 | auto count = pluralSections.find(section.header().id); |
| 308 | if (count != pluralSections.end()) |
| 309 | { |
| 310 | sectionName += " " + std::to_string(count->second); |
| 311 | count->second++; |
| 312 | } |
| 313 | |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 314 | if (section.valid()) |
| 315 | { |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 316 | std::optional<std::string> json; |
| 317 | if (sectionID == "PS" || sectionID == "SS") |
| 318 | { |
Harisuddin Mohamed Isa | c8d6cc6 | 2020-08-19 22:47:19 +0800 | [diff] [blame] | 319 | json = section.getJSON(registry, plugins, creatorID); |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 320 | } |
Matt Spinler | 386a61e | 2020-08-13 15:51:12 -0500 | [diff] [blame] | 321 | else if ((sectionID == "UD") || (sectionID == "ED")) |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 322 | { |
Harisuddin Mohamed Isa | 3fdcd4e | 2020-08-26 11:56:42 +0800 | [diff] [blame] | 323 | json = section.getJSON(creatorID, plugins); |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 324 | } |
| 325 | else |
| 326 | { |
| 327 | json = section.getJSON(); |
| 328 | } |
Matt Spinler | 4220a15 | 2020-03-26 10:18:09 -0500 | [diff] [blame] | 329 | |
| 330 | buf += "\"" + sectionName + "\": {\n"; |
| 331 | |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 332 | if (json) |
| 333 | { |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 334 | buf += *json + "\n},\n"; |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 335 | } |
| 336 | else |
| 337 | { |
Matt Spinler | 4220a15 | 2020-03-26 10:18:09 -0500 | [diff] [blame] | 338 | jsonInsert(buf, pv::sectionVer, |
| 339 | getNumberString("%d", section.header().version), 1); |
| 340 | jsonInsert(buf, pv::subSection, |
| 341 | getNumberString("%d", section.header().subType), 1); |
| 342 | jsonInsert(buf, pv::createdBy, |
| 343 | getNumberString("0x%X", section.header().componentID), |
| 344 | 1); |
| 345 | |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 346 | std::vector<uint8_t> data; |
| 347 | Stream s{data}; |
| 348 | section.flatten(s); |
Matt Spinler | 4220a15 | 2020-03-26 10:18:09 -0500 | [diff] [blame] | 349 | std::string dstr = |
| 350 | dumpHex(std::data(data) + SectionHeader::flattenedSize(), |
Harisuddin Mohamed Isa | 097ad12 | 2020-06-11 21:19:41 +0800 | [diff] [blame] | 351 | data.size() - SectionHeader::flattenedSize(), 2); |
Matt Spinler | 4220a15 | 2020-03-26 10:18:09 -0500 | [diff] [blame] | 352 | std::string jsonIndent(indentLevel, 0x20); |
| 353 | buf += jsonIndent + "\"Data\": [\n"; |
| 354 | buf += dstr; |
| 355 | buf += jsonIndent + "]\n"; |
| 356 | buf += "},\n"; |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 357 | } |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 358 | } |
| 359 | else |
| 360 | { |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 361 | buf += "\n\"Invalid Section\": [\n \"invalid\"\n],\n"; |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 362 | } |
| 363 | } |
| 364 | |
Matt Spinler | acb7c10 | 2020-01-10 13:49:22 -0600 | [diff] [blame] | 365 | std::map<uint16_t, size_t> PEL::getPluralSections() const |
| 366 | { |
| 367 | std::map<uint16_t, size_t> sectionCounts; |
| 368 | |
| 369 | for (const auto& section : optionalSections()) |
| 370 | { |
| 371 | if (sectionCounts.find(section->header().id) == sectionCounts.end()) |
| 372 | { |
| 373 | sectionCounts[section->header().id] = 1; |
| 374 | } |
| 375 | else |
| 376 | { |
| 377 | sectionCounts[section->header().id]++; |
| 378 | } |
| 379 | } |
| 380 | |
| 381 | std::map<uint16_t, size_t> sections; |
| 382 | for (const auto& [id, count] : sectionCounts) |
| 383 | { |
| 384 | if (count > 1) |
| 385 | { |
| 386 | // Start with 0 here and printSectionInJSON() |
| 387 | // will increment it as it goes. |
| 388 | sections.emplace(id, 0); |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | return sections; |
| 393 | } |
| 394 | |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 395 | void PEL::toJSON(message::Registry& registry, |
| 396 | const std::vector<std::string>& plugins) const |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 397 | { |
Matt Spinler | acb7c10 | 2020-01-10 13:49:22 -0600 | [diff] [blame] | 398 | auto sections = getPluralSections(); |
| 399 | |
Harisuddin Mohamed Isa | a214ed3 | 2020-02-28 15:58:23 +0800 | [diff] [blame] | 400 | std::string buf = "{\n"; |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 401 | printSectionInJSON(*(_ph.get()), buf, sections, registry, plugins); |
| 402 | printSectionInJSON(*(_uh.get()), buf, sections, registry, plugins); |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 403 | for (auto& section : this->optionalSections()) |
| 404 | { |
Harisuddin Mohamed Isa | f67bafd | 2020-07-06 17:51:21 +0800 | [diff] [blame] | 405 | printSectionInJSON(*(section.get()), buf, sections, registry, plugins, |
| 406 | _ph->creatorID()); |
Aatir | 186ce8c | 2019-10-20 15:13:39 -0500 | [diff] [blame] | 407 | } |
| 408 | buf += "}"; |
| 409 | std::size_t found = buf.rfind(","); |
| 410 | if (found != std::string::npos) |
| 411 | buf.replace(found, 1, ""); |
| 412 | std::cout << buf << std::endl; |
| 413 | } |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 414 | |
Matt Spinler | 85f61a6 | 2020-06-03 16:28:55 -0500 | [diff] [blame] | 415 | bool PEL::addUserDataSection(std::unique_ptr<UserData> userData) |
| 416 | { |
| 417 | if (size() + userData->header().size > _maxPELSize) |
| 418 | { |
| 419 | if (userData->shrink(_maxPELSize - size())) |
| 420 | { |
| 421 | _optionalSections.push_back(std::move(userData)); |
| 422 | } |
| 423 | else |
| 424 | { |
| 425 | log<level::WARNING>( |
| 426 | "Could not shrink UserData section. Dropping", |
| 427 | entry("SECTION_SIZE=%d\n", userData->header().size), |
| 428 | entry("COMPONENT_ID=0x%02X", userData->header().componentID), |
| 429 | entry("SUBTYPE=0x%X", userData->header().subType), |
| 430 | entry("VERSION=0x%X", userData->header().version)); |
| 431 | return false; |
| 432 | } |
| 433 | } |
| 434 | else |
| 435 | { |
| 436 | _optionalSections.push_back(std::move(userData)); |
| 437 | } |
| 438 | return true; |
| 439 | } |
| 440 | |
Matt Spinler | 5a90a95 | 2020-08-27 09:39:03 -0500 | [diff] [blame] | 441 | nlohmann::json PEL::getCalloutJSON(const PelFFDC& ffdcFiles) |
| 442 | { |
| 443 | nlohmann::json callouts; |
| 444 | |
| 445 | for (const auto& file : ffdcFiles) |
| 446 | { |
| 447 | if ((file.format == UserDataFormat::json) && |
| 448 | (file.subType == jsonCalloutSubtype)) |
| 449 | { |
| 450 | auto data = util::readFD(file.fd); |
| 451 | if (data.empty()) |
| 452 | { |
| 453 | throw std::runtime_error{ |
| 454 | "Could not get data from JSON callout file descriptor"}; |
| 455 | } |
| 456 | |
| 457 | std::string jsonString{data.begin(), data.begin() + data.size()}; |
| 458 | |
| 459 | callouts = nlohmann::json::parse(jsonString); |
| 460 | break; |
| 461 | } |
| 462 | } |
| 463 | |
| 464 | return callouts; |
| 465 | } |
| 466 | |
Andrew Geissler | 44fc316 | 2020-07-09 09:21:31 -0500 | [diff] [blame] | 467 | bool PEL::isCalloutPresent() const |
| 468 | { |
| 469 | auto pSRC = primarySRC(); |
| 470 | if (!pSRC) |
| 471 | { |
| 472 | return false; |
| 473 | } |
| 474 | |
| 475 | bool calloutPresent = false; |
| 476 | if ((*pSRC)->callouts()) |
| 477 | { |
| 478 | for (auto& i : (*pSRC)->callouts()->callouts()) |
| 479 | { |
| 480 | if (((*i).fruIdentity())) |
| 481 | { |
| 482 | auto& fruId = (*i).fruIdentity(); |
| 483 | if ((*fruId).failingComponentType() != 0) |
| 484 | { |
| 485 | calloutPresent = true; |
| 486 | break; |
| 487 | } |
| 488 | } |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | return calloutPresent; |
| 493 | } |
| 494 | |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 495 | namespace util |
| 496 | { |
| 497 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 498 | std::unique_ptr<UserData> makeJSONUserDataSection(const nlohmann::json& json) |
| 499 | { |
| 500 | auto jsonString = json.dump(); |
| 501 | std::vector<uint8_t> jsonData(jsonString.begin(), jsonString.end()); |
| 502 | |
| 503 | // Pad to a 4 byte boundary |
| 504 | while ((jsonData.size() % 4) != 0) |
| 505 | { |
| 506 | jsonData.push_back(0); |
| 507 | } |
| 508 | |
| 509 | return std::make_unique<UserData>( |
| 510 | static_cast<uint16_t>(ComponentID::phosphorLogging), |
| 511 | static_cast<uint8_t>(UserDataFormat::json), |
| 512 | static_cast<uint8_t>(UserDataFormatVersion::json), jsonData); |
| 513 | } |
| 514 | |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 515 | std::unique_ptr<UserData> makeADUserDataSection(const AdditionalData& ad) |
| 516 | { |
| 517 | assert(!ad.empty()); |
| 518 | nlohmann::json json; |
| 519 | |
| 520 | // Remove the 'ESEL' entry, as it contains a full PEL in the value. |
| 521 | if (ad.getValue("ESEL")) |
| 522 | { |
| 523 | auto newAD = ad; |
| 524 | newAD.remove("ESEL"); |
| 525 | json = newAD.toJSON(); |
| 526 | } |
| 527 | else |
| 528 | { |
| 529 | json = ad.toJSON(); |
| 530 | } |
| 531 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 532 | return makeJSONUserDataSection(json); |
| 533 | } |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 534 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 535 | void addProcessNameToJSON(nlohmann::json& json, |
| 536 | const std::optional<std::string>& pid, |
| 537 | const DataInterfaceBase& dataIface) |
| 538 | { |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 539 | std::string name{unknownValue}; |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 540 | |
| 541 | try |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 542 | { |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 543 | if (pid) |
| 544 | { |
| 545 | auto n = dataIface.getProcessName(*pid); |
| 546 | if (n) |
| 547 | { |
| 548 | name = *n; |
| 549 | } |
| 550 | } |
| 551 | } |
| 552 | catch (std::exception& e) |
| 553 | { |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 554 | } |
| 555 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 556 | json["Process Name"] = std::move(name); |
| 557 | } |
| 558 | |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 559 | void addBMCFWVersionIDToJSON(nlohmann::json& json, |
| 560 | const DataInterfaceBase& dataIface) |
| 561 | { |
| 562 | auto id = dataIface.getBMCFWVersionID(); |
| 563 | if (id.empty()) |
| 564 | { |
| 565 | id = unknownValue; |
| 566 | } |
| 567 | |
| 568 | json["BMC Version ID"] = std::move(id); |
| 569 | } |
| 570 | |
Matt Spinler | 4aa23a1 | 2020-02-03 15:05:09 -0600 | [diff] [blame] | 571 | std::string lastSegment(char separator, std::string data) |
| 572 | { |
| 573 | auto pos = data.find_last_of(separator); |
| 574 | if (pos != std::string::npos) |
| 575 | { |
| 576 | data = data.substr(pos + 1); |
| 577 | } |
| 578 | |
| 579 | return data; |
| 580 | } |
| 581 | |
| 582 | void addStatesToJSON(nlohmann::json& json, const DataInterfaceBase& dataIface) |
| 583 | { |
| 584 | json["BMCState"] = lastSegment('.', dataIface.getBMCState()); |
| 585 | json["ChassisState"] = lastSegment('.', dataIface.getChassisState()); |
| 586 | json["HostState"] = lastSegment('.', dataIface.getHostState()); |
| 587 | } |
| 588 | |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 589 | std::unique_ptr<UserData> |
| 590 | makeSysInfoUserDataSection(const AdditionalData& ad, |
| 591 | const DataInterfaceBase& dataIface) |
| 592 | { |
| 593 | nlohmann::json json; |
| 594 | |
| 595 | addProcessNameToJSON(json, ad.getValue("_PID"), dataIface); |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 596 | addBMCFWVersionIDToJSON(json, dataIface); |
Matt Spinler | 4aa23a1 | 2020-02-03 15:05:09 -0600 | [diff] [blame] | 597 | addStatesToJSON(json, dataIface); |
Matt Spinler | 4dcd3f4 | 2020-01-22 14:55:07 -0600 | [diff] [blame] | 598 | |
| 599 | return makeJSONUserDataSection(json); |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 600 | } |
| 601 | |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 602 | std::vector<uint8_t> readFD(int fd) |
| 603 | { |
| 604 | std::vector<uint8_t> data; |
| 605 | |
| 606 | // Get the size |
| 607 | struct stat s; |
| 608 | int r = fstat(fd, &s); |
| 609 | if (r != 0) |
| 610 | { |
| 611 | auto e = errno; |
| 612 | log<level::ERR>("Could not get FFDC file size from FD", |
| 613 | entry("ERRNO=%d", e)); |
| 614 | return data; |
| 615 | } |
| 616 | |
| 617 | if (0 == s.st_size) |
| 618 | { |
| 619 | log<level::ERR>("FFDC file is empty"); |
| 620 | return data; |
| 621 | } |
| 622 | |
| 623 | data.resize(s.st_size); |
| 624 | |
| 625 | // Make sure its at the beginning, as maybe another |
| 626 | // extension already used it. |
| 627 | r = lseek(fd, 0, SEEK_SET); |
| 628 | if (r == -1) |
| 629 | { |
| 630 | auto e = errno; |
| 631 | log<level::ERR>("Could not seek to beginning of FFDC file", |
| 632 | entry("ERRNO=%d", e)); |
| 633 | return data; |
| 634 | } |
| 635 | |
| 636 | r = read(fd, data.data(), s.st_size); |
| 637 | if (r == -1) |
| 638 | { |
| 639 | auto e = errno; |
| 640 | log<level::ERR>("Could not read FFDC file", entry("ERRNO=%d", e)); |
| 641 | } |
| 642 | else if (r != s.st_size) |
| 643 | { |
| 644 | log<level::WARNING>("Could not read full FFDC file", |
| 645 | entry("FILE_SIZE=%d", s.st_size), |
| 646 | entry("SIZE_READ=%d", r)); |
| 647 | } |
| 648 | |
| 649 | return data; |
| 650 | } |
| 651 | |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 652 | std::unique_ptr<UserData> makeFFDCuserDataSection(uint16_t componentID, |
| 653 | const PelFFDCfile& file) |
| 654 | { |
Matt Spinler | 5b289b2 | 2020-03-26 14:27:19 -0500 | [diff] [blame] | 655 | auto data = readFD(file.fd); |
| 656 | |
| 657 | if (data.empty()) |
| 658 | { |
| 659 | return std::unique_ptr<UserData>(); |
| 660 | } |
| 661 | |
| 662 | // The data needs 4 Byte alignment, and save amount padded for the |
| 663 | // CBOR case. |
| 664 | uint32_t pad = 0; |
| 665 | while (data.size() % 4) |
| 666 | { |
| 667 | data.push_back(0); |
| 668 | pad++; |
| 669 | } |
| 670 | |
| 671 | // For JSON, CBOR, and Text use our component ID, subType, and version, |
| 672 | // otherwise use the supplied ones. |
| 673 | uint16_t compID = static_cast<uint16_t>(ComponentID::phosphorLogging); |
| 674 | uint8_t subType{}; |
| 675 | uint8_t version{}; |
| 676 | |
| 677 | switch (file.format) |
| 678 | { |
| 679 | case UserDataFormat::json: |
| 680 | subType = static_cast<uint8_t>(UserDataFormat::json); |
| 681 | version = static_cast<uint8_t>(UserDataFormatVersion::json); |
| 682 | break; |
| 683 | case UserDataFormat::cbor: |
| 684 | subType = static_cast<uint8_t>(UserDataFormat::cbor); |
| 685 | version = static_cast<uint8_t>(UserDataFormatVersion::cbor); |
| 686 | |
| 687 | // The CBOR parser will fail on the extra pad bytes since they |
| 688 | // aren't CBOR. Add the amount we padded to the end and other |
| 689 | // code will remove it all before parsing. |
| 690 | { |
| 691 | data.resize(data.size() + 4); |
| 692 | Stream stream{data}; |
| 693 | stream.offset(data.size() - 4); |
| 694 | stream << pad; |
| 695 | } |
| 696 | |
| 697 | break; |
| 698 | case UserDataFormat::text: |
| 699 | subType = static_cast<uint8_t>(UserDataFormat::text); |
| 700 | version = static_cast<uint8_t>(UserDataFormatVersion::text); |
| 701 | break; |
| 702 | case UserDataFormat::custom: |
| 703 | default: |
| 704 | // Use the passed in values |
| 705 | compID = componentID; |
| 706 | subType = file.subType; |
| 707 | version = file.version; |
| 708 | break; |
| 709 | } |
| 710 | |
| 711 | return std::make_unique<UserData>(compID, subType, version, data); |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 712 | } |
| 713 | |
Matt Spinler | c7c3e40 | 2020-01-22 15:07:25 -0600 | [diff] [blame] | 714 | } // namespace util |
| 715 | |
Matt Spinler | cb6b059 | 2019-07-16 15:58:51 -0500 | [diff] [blame] | 716 | } // namespace pels |
| 717 | } // namespace openpower |