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 | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 16 | #include "user_header.hpp" |
| 17 | |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 18 | #include "json_utils.hpp" |
Matt Spinler | 1a94cc3 | 2019-09-11 13:32:12 -0500 | [diff] [blame] | 19 | #include "pel_types.hpp" |
Aatir | c148935 | 2019-12-09 13:13:20 -0600 | [diff] [blame] | 20 | #include "pel_values.hpp" |
Matt Spinler | fdb6a20 | 2019-09-20 14:09:20 -0500 | [diff] [blame] | 21 | #include "severity.hpp" |
Matt Spinler | 1a94cc3 | 2019-09-11 13:32:12 -0500 | [diff] [blame] | 22 | |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 23 | #include <iostream> |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 24 | #include <phosphor-logging/log.hpp> |
| 25 | |
| 26 | namespace openpower |
| 27 | { |
| 28 | namespace pels |
| 29 | { |
| 30 | |
Aatir | c148935 | 2019-12-09 13:13:20 -0600 | [diff] [blame] | 31 | namespace pv = openpower::pels::pel_values; |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 32 | using namespace phosphor::logging; |
| 33 | |
Matt Spinler | cf5a8d0 | 2019-09-05 12:58:53 -0500 | [diff] [blame] | 34 | void UserHeader::unflatten(Stream& stream) |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 35 | { |
Matt Spinler | cf5a8d0 | 2019-09-05 12:58:53 -0500 | [diff] [blame] | 36 | stream >> _header >> _eventSubsystem >> _eventScope >> _eventSeverity >> |
| 37 | _eventType >> _reserved4Byte1 >> _problemDomain >> _problemVector >> |
Matt Spinler | eb11144 | 2019-11-07 13:05:36 -0600 | [diff] [blame] | 38 | _actionFlags >> _states; |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 39 | } |
| 40 | |
Matt Spinler | 0688545 | 2019-11-06 10:35:42 -0600 | [diff] [blame] | 41 | void UserHeader::flatten(Stream& stream) const |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 42 | { |
Matt Spinler | cf5a8d0 | 2019-09-05 12:58:53 -0500 | [diff] [blame] | 43 | stream << _header << _eventSubsystem << _eventScope << _eventSeverity |
| 44 | << _eventType << _reserved4Byte1 << _problemDomain << _problemVector |
Matt Spinler | eb11144 | 2019-11-07 13:05:36 -0600 | [diff] [blame] | 45 | << _actionFlags << _states; |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 46 | } |
| 47 | |
Matt Spinler | fdb6a20 | 2019-09-20 14:09:20 -0500 | [diff] [blame] | 48 | UserHeader::UserHeader(const message::Entry& entry, |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 49 | phosphor::logging::Entry::Level severity, |
Vijay Lobo | 6b3f345 | 2021-04-15 23:04:42 -0500 | [diff] [blame] | 50 | const AdditionalData& additionalData, |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 51 | const DataInterfaceBase& dataIface) |
Matt Spinler | fdb6a20 | 2019-09-20 14:09:20 -0500 | [diff] [blame] | 52 | { |
| 53 | _header.id = static_cast<uint16_t>(SectionID::userHeader); |
| 54 | _header.size = UserHeader::flattenedSize(); |
| 55 | _header.version = userHeaderVersion; |
| 56 | _header.subType = 0; |
| 57 | _header.componentID = static_cast<uint16_t>(ComponentID::phosphorLogging); |
| 58 | |
| 59 | _eventSubsystem = entry.subsystem; |
| 60 | |
| 61 | _eventScope = entry.eventScope.value_or( |
| 62 | static_cast<uint8_t>(EventScope::entirePlatform)); |
| 63 | |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 64 | { |
Sumit Kumar | 3b8ed7f | 2021-05-18 12:38:35 -0500 | [diff] [blame] | 65 | bool mfgSevStatus = false; |
| 66 | bool mfgActionFlagStatus = false; |
| 67 | std::optional<uint8_t> sev = std::nullopt; |
| 68 | uint16_t val = 0; |
| 69 | |
| 70 | // Get the mfg severity & action flags |
| 71 | if (entry.mfgSeverity || entry.mfgActionFlags) |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 72 | { |
Sumit Kumar | 3b8ed7f | 2021-05-18 12:38:35 -0500 | [diff] [blame] | 73 | if (entry.mfgSeverity) |
| 74 | { |
| 75 | // Find the mf severity possibly dependent on the system type. |
| 76 | sev = getSeverity(entry.mfgSeverity.value(), dataIface); |
| 77 | } |
| 78 | |
| 79 | if (entry.mfgActionFlags) |
| 80 | { |
| 81 | // Find the mfg action flags |
| 82 | val = entry.mfgActionFlags.value(); |
| 83 | } |
| 84 | |
| 85 | if (sev || val) |
| 86 | { |
| 87 | bool mfgProp = dataIface.getQuiesceOnError(); |
| 88 | if (mfgProp) |
| 89 | { |
| 90 | if (sev) |
| 91 | { |
| 92 | _eventSeverity = *sev; |
| 93 | mfgSevStatus = true; |
| 94 | } |
| 95 | |
| 96 | if (val) |
| 97 | { |
| 98 | _actionFlags = val; |
| 99 | mfgActionFlagStatus = true; |
| 100 | } |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | if (!mfgSevStatus) |
| 106 | { |
| 107 | // Get the severity from the registry if it's there, otherwise get |
| 108 | // it from the OpenBMC event log severity value. |
| 109 | if (!entry.severity) |
| 110 | { |
| 111 | _eventSeverity = convertOBMCSeverityToPEL(severity); |
| 112 | } |
| 113 | else |
| 114 | { |
| 115 | // Find the severity possibly dependent on the system type. |
| 116 | auto sev = getSeverity(entry.severity.value(), dataIface); |
| 117 | if (sev) |
| 118 | { |
| 119 | _eventSeverity = *sev; |
| 120 | } |
| 121 | else |
| 122 | { |
| 123 | // Either someone screwed up the message registry |
| 124 | // or getSystemNames failed. |
| 125 | std::string types; |
| 126 | log<level::ERR>( |
| 127 | "Failed finding the severity in the message registry", |
| 128 | phosphor::logging::entry("ERROR=%s", |
| 129 | entry.name.c_str())); |
| 130 | |
| 131 | // Have to choose something, just use informational. |
| 132 | _eventSeverity = 0; |
| 133 | } |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | // Convert Critical error (0x50) to Critical Error-System Termination |
| 138 | // (0x51), if the AdditionalData is set to SYSTEM_TERM |
| 139 | auto sevLevel = additionalData.getValue("SEVERITY_DETAIL"); |
| 140 | if ((_eventSeverity & 0xF0) == 0x50) |
| 141 | { |
| 142 | if (sevLevel.value_or("") == "SYSTEM_TERM") |
| 143 | { |
| 144 | // Change to Critical Error, System Termination |
| 145 | _eventSeverity = 0x51; |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | if (entry.eventType) |
| 150 | { |
| 151 | _eventType = *entry.eventType; |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 152 | } |
| 153 | else |
| 154 | { |
Sumit Kumar | 3b8ed7f | 2021-05-18 12:38:35 -0500 | [diff] [blame] | 155 | // There are different default event types for info errors |
| 156 | // vs non info ones. |
| 157 | auto sevType = static_cast<SeverityType>(_eventSeverity & 0xF0); |
| 158 | _eventType = |
| 159 | (sevType == SeverityType::nonError) |
| 160 | ? static_cast<uint8_t>(EventType::miscInformational) |
| 161 | : static_cast<uint8_t>(EventType::notApplicable); |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 162 | } |
Matt Spinler | fdb6a20 | 2019-09-20 14:09:20 -0500 | [diff] [blame] | 163 | |
Sumit Kumar | 3b8ed7f | 2021-05-18 12:38:35 -0500 | [diff] [blame] | 164 | _reserved4Byte1 = 0; |
| 165 | |
| 166 | // No uses for problem domain or vector |
| 167 | _problemDomain = 0; |
| 168 | _problemVector = 0; |
| 169 | |
| 170 | // These will be set in pel_rules::check() if they're still |
| 171 | // at the default value. |
| 172 | if (!mfgActionFlagStatus) |
Vijay Lobo | 6b3f345 | 2021-04-15 23:04:42 -0500 | [diff] [blame] | 173 | { |
Sumit Kumar | 3b8ed7f | 2021-05-18 12:38:35 -0500 | [diff] [blame] | 174 | _actionFlags = entry.actionFlags.value_or(actionFlagsDefault); |
Vijay Lobo | 6b3f345 | 2021-04-15 23:04:42 -0500 | [diff] [blame] | 175 | } |
Sumit Kumar | 3b8ed7f | 2021-05-18 12:38:35 -0500 | [diff] [blame] | 176 | |
| 177 | _states = 0; |
| 178 | |
| 179 | _valid = true; |
Vijay Lobo | 6b3f345 | 2021-04-15 23:04:42 -0500 | [diff] [blame] | 180 | } |
Matt Spinler | fdb6a20 | 2019-09-20 14:09:20 -0500 | [diff] [blame] | 181 | } |
| 182 | |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 183 | UserHeader::UserHeader(Stream& pel) |
| 184 | { |
| 185 | try |
| 186 | { |
Matt Spinler | cf5a8d0 | 2019-09-05 12:58:53 -0500 | [diff] [blame] | 187 | unflatten(pel); |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 188 | validate(); |
| 189 | } |
| 190 | catch (const std::exception& e) |
| 191 | { |
| 192 | log<level::ERR>("Cannot unflatten user header", |
| 193 | entry("ERROR=%s", e.what())); |
| 194 | _valid = false; |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | void UserHeader::validate() |
| 199 | { |
| 200 | bool failed = false; |
Matt Spinler | 1a94cc3 | 2019-09-11 13:32:12 -0500 | [diff] [blame] | 201 | if (header().id != static_cast<uint16_t>(SectionID::userHeader)) |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 202 | { |
| 203 | log<level::ERR>("Invalid user header section ID", |
| 204 | entry("ID=0x%X", header().id)); |
| 205 | failed = true; |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | if (header().version != userHeaderVersion) |
| 209 | { |
| 210 | log<level::ERR>("Invalid user header version", |
| 211 | entry("VERSION=0x%X", header().version)); |
| 212 | failed = true; |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | _valid = (failed) ? false : true; |
| 216 | } |
| 217 | |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 218 | std::optional<std::string> UserHeader::getJSON() const |
| 219 | { |
| 220 | std::string severity; |
| 221 | std::string subsystem; |
| 222 | std::string eventScope; |
| 223 | std::string eventType; |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 224 | std::vector<std::string> actionFlags; |
Aatir | c148935 | 2019-12-09 13:13:20 -0600 | [diff] [blame] | 225 | severity = pv::getValue(_eventSeverity, pel_values::severityValues); |
| 226 | subsystem = pv::getValue(_eventSubsystem, pel_values::subsystemValues); |
| 227 | eventScope = pv::getValue(_eventScope, pel_values::eventScopeValues); |
| 228 | eventType = pv::getValue(_eventType, pel_values::eventTypeValues); |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 229 | actionFlags = |
| 230 | pv::getValuesBitwise(_actionFlags, pel_values::actionFlagsValues); |
Matt Spinler | 455587e | 2020-01-15 14:31:52 -0600 | [diff] [blame] | 231 | |
| 232 | std::string hostState{"Invalid"}; |
| 233 | auto iter = pv::transmissionStates.find( |
| 234 | static_cast<TransmissionState>(hostTransmissionState())); |
| 235 | if (iter != pv::transmissionStates.end()) |
| 236 | { |
| 237 | hostState = iter->second; |
| 238 | } |
| 239 | |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 240 | std::string uh; |
Harisuddin Mohamed Isa | bebeb94 | 2020-03-12 17:12:24 +0800 | [diff] [blame] | 241 | jsonInsert(uh, pv::sectionVer, getNumberString("%d", userHeaderVersion), 1); |
| 242 | jsonInsert(uh, pv::subSection, getNumberString("%d", _header.subType), 1); |
| 243 | jsonInsert(uh, "Log Committed by", |
| 244 | getNumberString("0x%X", _header.componentID), 1); |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 245 | jsonInsert(uh, "Subsystem", subsystem, 1); |
| 246 | jsonInsert(uh, "Event Scope", eventScope, 1); |
| 247 | jsonInsert(uh, "Event Severity", severity, 1); |
| 248 | jsonInsert(uh, "Event Type", eventType, 1); |
| 249 | jsonInsertArray(uh, "Action Flags", actionFlags, 1); |
Matt Spinler | 455587e | 2020-01-15 14:31:52 -0600 | [diff] [blame] | 250 | jsonInsert(uh, "Host Transmission", hostState, 1); |
Harisuddin Mohamed Isa | 600d15a | 2019-12-20 12:42:26 +0800 | [diff] [blame] | 251 | uh.erase(uh.size() - 2); |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 252 | return uh; |
| 253 | } |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 254 | |
| 255 | std::optional<uint8_t> UserHeader::getSeverity( |
| 256 | const std::vector<message::RegistrySeverity>& severities, |
Matt Spinler | 1ab6696 | 2020-10-29 13:21:44 -0500 | [diff] [blame] | 257 | const DataInterfaceBase& dataIface) const |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 258 | { |
| 259 | const uint8_t* s = nullptr; |
Matt Spinler | 1ab6696 | 2020-10-29 13:21:44 -0500 | [diff] [blame] | 260 | std::vector<std::string> systemNames; |
| 261 | |
| 262 | // getSystemNames makes D-Bus calls, so only call it if we |
| 263 | // know we'll need it because there is a system name in the sev list |
| 264 | if (std::any_of(severities.begin(), severities.end(), |
| 265 | [](const auto& sev) { return !sev.system.empty(); })) |
| 266 | { |
| 267 | try |
| 268 | { |
| 269 | systemNames = dataIface.getSystemNames(); |
| 270 | } |
| 271 | catch (const std::exception& e) |
| 272 | { |
| 273 | log<level::ERR>("Failed trying to look up system names on D-Bus", |
| 274 | entry("ERROR=%s", e.what())); |
| 275 | return std::nullopt; |
| 276 | } |
| 277 | } |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 278 | |
| 279 | // Find the severity to use for this system type, or use the default |
| 280 | // entry (where no system type is specified). |
| 281 | for (const auto& sev : severities) |
| 282 | { |
Matt Spinler | 6ea4d5f | 2020-05-20 13:31:07 -0500 | [diff] [blame] | 283 | if (std::find(systemNames.begin(), systemNames.end(), sev.system) != |
| 284 | systemNames.end()) |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 285 | { |
| 286 | s = &sev.severity; |
| 287 | break; |
| 288 | } |
| 289 | else if (sev.system.empty()) |
| 290 | { |
| 291 | s = &sev.severity; |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | if (s) |
| 296 | { |
| 297 | return *s; |
| 298 | } |
| 299 | |
| 300 | return std::nullopt; |
| 301 | } |
| 302 | |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 303 | } // namespace pels |
| 304 | } // namespace openpower |