Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 3 | #include "data_interface.hpp" |
Matt Spinler | fdb6a20 | 2019-09-20 14:09:20 -0500 | [diff] [blame] | 4 | #include "elog_entry.hpp" |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 5 | #include "pel_values.hpp" |
Matt Spinler | fdb6a20 | 2019-09-20 14:09:20 -0500 | [diff] [blame] | 6 | #include "registry.hpp" |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 7 | #include "section.hpp" |
| 8 | #include "stream.hpp" |
| 9 | |
| 10 | namespace openpower |
| 11 | { |
| 12 | namespace pels |
| 13 | { |
| 14 | |
Matt Spinler | 1a94cc3 | 2019-09-11 13:32:12 -0500 | [diff] [blame] | 15 | static constexpr uint8_t userHeaderVersion = 0x01; |
Matt Spinler | 1f93c59 | 2020-09-10 10:43:08 -0500 | [diff] [blame] | 16 | static constexpr uint16_t actionFlagsDefault = 0xFFFF; |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 17 | |
| 18 | /** |
| 19 | * @class UserHeader |
| 20 | * |
| 21 | * This represents the User Header section in a PEL. It is required, |
| 22 | * and it is always the second section. |
| 23 | * |
| 24 | * The Section base class handles the section header structure that every |
| 25 | * PEL section has at offset zero. |
| 26 | * |
| 27 | * The fields in this class directly correspond to the order and sizes of |
| 28 | * the fields in the section. |
| 29 | */ |
| 30 | class UserHeader : public Section |
| 31 | { |
| 32 | public: |
| 33 | UserHeader() = delete; |
| 34 | ~UserHeader() = default; |
| 35 | UserHeader(const UserHeader&) = default; |
| 36 | UserHeader& operator=(const UserHeader&) = default; |
| 37 | UserHeader(UserHeader&&) = default; |
| 38 | UserHeader& operator=(UserHeader&&) = default; |
| 39 | |
| 40 | /** |
| 41 | * @brief Constructor |
| 42 | * |
Matt Spinler | fdb6a20 | 2019-09-20 14:09:20 -0500 | [diff] [blame] | 43 | * Creates a valid UserHeader with the passed in data. |
| 44 | * |
| 45 | * @param[in] entry - The message registry entry for this error |
| 46 | * @param[in] severity - The OpenBMC event log severity for this error |
Vijay Lobo | 6b3f345 | 2021-04-15 23:04:42 -0500 | [diff] [blame] | 47 | * @param[in] additionalData - The AdditionalData properties in this |
| 48 | * error log |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 49 | * @param[in] dataIface - The DataInterface object |
Matt Spinler | fdb6a20 | 2019-09-20 14:09:20 -0500 | [diff] [blame] | 50 | */ |
| 51 | UserHeader(const message::Entry& entry, |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 52 | phosphor::logging::Entry::Level severity, |
Vijay Lobo | 6b3f345 | 2021-04-15 23:04:42 -0500 | [diff] [blame] | 53 | const AdditionalData& additionalData, |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 54 | const DataInterfaceBase& dataIface); |
Matt Spinler | fdb6a20 | 2019-09-20 14:09:20 -0500 | [diff] [blame] | 55 | |
| 56 | /** |
| 57 | * @brief Constructor |
| 58 | * |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 59 | * Fills in this class's data fields from the stream. |
| 60 | * |
| 61 | * @param[in] pel - the PEL data stream |
| 62 | */ |
| 63 | explicit UserHeader(Stream& pel); |
| 64 | |
| 65 | /** |
Matt Spinler | cf5a8d0 | 2019-09-05 12:58:53 -0500 | [diff] [blame] | 66 | * @brief Flatten the section into the stream |
| 67 | * |
| 68 | * @param[in] stream - The stream to write to |
| 69 | */ |
Matt Spinler | 0688545 | 2019-11-06 10:35:42 -0600 | [diff] [blame] | 70 | void flatten(Stream& stream) const override; |
Matt Spinler | cf5a8d0 | 2019-09-05 12:58:53 -0500 | [diff] [blame] | 71 | |
| 72 | /** |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 73 | * @brief Returns the subsystem field. |
| 74 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 75 | * @return uint8_t - the subsystem |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 76 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 77 | uint8_t subsystem() const |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 78 | { |
| 79 | return _eventSubsystem; |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * @brief Returns the event scope field. |
| 84 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 85 | * @return uint8_t - the event scope |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 86 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 87 | uint8_t scope() const |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 88 | { |
| 89 | return _eventScope; |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * @brief Returns the severity field. |
| 94 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 95 | * @return uint8_t - the severity |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 96 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 97 | uint8_t severity() const |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 98 | { |
| 99 | return _eventSeverity; |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * @brief Returns the event type field. |
| 104 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 105 | * @return uint8_t - the event type |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 106 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 107 | uint8_t eventType() const |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 108 | { |
| 109 | return _eventType; |
| 110 | } |
| 111 | |
| 112 | /** |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 113 | * @brief Set the event type field |
| 114 | * |
| 115 | * @param[in] type - the new event type |
| 116 | */ |
| 117 | void setEventType(uint8_t type) |
| 118 | { |
| 119 | _eventType = type; |
| 120 | } |
| 121 | |
| 122 | /** |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 123 | * @brief Returns the problem domain field. |
| 124 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 125 | * @return uint8_t - the problem domain |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 126 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 127 | uint8_t problemDomain() const |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 128 | { |
| 129 | return _problemDomain; |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * @brief Returns the problem vector field. |
| 134 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 135 | * @return uint8_t - the problem vector |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 136 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 137 | uint8_t problemVector() const |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 138 | { |
| 139 | return _problemVector; |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * @brief Returns the action flags field. |
| 144 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 145 | * @return uint16_t - the action flags |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 146 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 147 | uint16_t actionFlags() const |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 148 | { |
| 149 | return _actionFlags; |
| 150 | } |
| 151 | |
| 152 | /** |
Matt Spinler | f1e85e2 | 2019-11-01 11:31:31 -0500 | [diff] [blame] | 153 | * @brief Sets the action flags field |
| 154 | * |
| 155 | * @param[in] flags - the new action flags |
| 156 | */ |
| 157 | void setActionFlags(uint16_t flags) |
| 158 | { |
| 159 | _actionFlags = flags; |
| 160 | } |
| 161 | |
| 162 | /** |
Matt Spinler | eb11144 | 2019-11-07 13:05:36 -0600 | [diff] [blame] | 163 | * @brief Returns the host transmission state |
| 164 | * |
| 165 | * @return uint8_t - the host transmission state |
| 166 | */ |
| 167 | uint8_t hostTransmissionState() const |
| 168 | { |
| 169 | return _states & 0xFF; |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * @brief Sets the host transmission state |
| 174 | * |
| 175 | * @param[in] state - the new state |
| 176 | */ |
| 177 | void setHostTransmissionState(uint8_t state) |
| 178 | { |
| 179 | _states &= 0xFFFFFF00; |
| 180 | _states |= state; |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * @brief Returns the HMC transmission state |
| 185 | * |
| 186 | * (HMC = Hardware Management Console) |
| 187 | * |
| 188 | * @return uint8_t - the HMC transmission state |
| 189 | */ |
| 190 | uint8_t hmcTransmissionState() const |
| 191 | { |
| 192 | return (_states & 0x0000FF00) >> 8; |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * @brief Sets the HMC transmission state |
| 197 | * |
| 198 | * @param[in] state - the new state |
| 199 | */ |
| 200 | void setHMCTransmissionState(uint8_t state) |
| 201 | { |
| 202 | uint32_t newState = state << 8; |
| 203 | _states &= 0xFFFF00FF; |
| 204 | _states |= newState; |
| 205 | } |
| 206 | |
| 207 | /** |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 208 | * @brief Returns the size of this section when flattened into a PEL |
| 209 | * |
| 210 | * @return size_t - the size of the section |
| 211 | */ |
| 212 | static constexpr size_t flattenedSize() |
| 213 | { |
| 214 | return Section::flattenedSize() + sizeof(_eventSubsystem) + |
| 215 | sizeof(_eventScope) + sizeof(_eventSeverity) + |
| 216 | sizeof(_eventType) + sizeof(_reserved4Byte1) + |
| 217 | sizeof(_problemDomain) + sizeof(_problemVector) + |
Matt Spinler | eb11144 | 2019-11-07 13:05:36 -0600 | [diff] [blame] | 218 | sizeof(_actionFlags) + sizeof(_states); |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 219 | } |
| 220 | |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 221 | /** |
| 222 | * @brief Get section in JSON. |
Aatir | c148935 | 2019-12-09 13:13:20 -0600 | [diff] [blame] | 223 | * @return std::optional<std::string> -User header section's JSON |
Aatir Manzur | ad0e047 | 2019-10-07 13:18:37 -0500 | [diff] [blame] | 224 | */ |
| 225 | std::optional<std::string> getJSON() const override; |
| 226 | |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 227 | private: |
| 228 | /** |
Matt Spinler | cf5a8d0 | 2019-09-05 12:58:53 -0500 | [diff] [blame] | 229 | * @brief Fills in the object from the stream data |
| 230 | * |
| 231 | * @param[in] stream - The stream to read from |
| 232 | */ |
| 233 | void unflatten(Stream& stream); |
| 234 | |
| 235 | /** |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 236 | * @brief Validates the section contents |
| 237 | * |
| 238 | * Updates _valid (in Section) with the results. |
| 239 | */ |
| 240 | void validate() override; |
| 241 | |
| 242 | /** |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 243 | * @brief Returns the severity value to use from the list |
| 244 | * of them passed in based on the system type. |
| 245 | * |
| 246 | * If there isn't an entry found for the current system |
| 247 | * type then std::nullopt will be returned. |
| 248 | * |
| 249 | * @param[in] severities - The array of {systype, severity} |
| 250 | * structures to find an entry in. |
Matt Spinler | 1ab6696 | 2020-10-29 13:21:44 -0500 | [diff] [blame] | 251 | * @param[in] dataIface - The DataInterface object |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 252 | */ |
| 253 | std::optional<uint8_t> |
| 254 | getSeverity(const std::vector<message::RegistrySeverity>& severities, |
Matt Spinler | 1ab6696 | 2020-10-29 13:21:44 -0500 | [diff] [blame] | 255 | const DataInterfaceBase& dataIface) const; |
| 256 | |
Matt Spinler | aadccc8 | 2020-04-10 14:33:42 -0500 | [diff] [blame] | 257 | /** |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 258 | * @brief The subsystem associated with the event. |
| 259 | */ |
| 260 | uint8_t _eventSubsystem; |
| 261 | |
| 262 | /** |
| 263 | * @brief The event scope field. |
| 264 | */ |
| 265 | uint8_t _eventScope; |
| 266 | |
| 267 | /** |
| 268 | * @brief The event severity. |
| 269 | */ |
| 270 | uint8_t _eventSeverity; |
| 271 | |
| 272 | /** |
| 273 | * @brief The event type. |
| 274 | */ |
| 275 | uint8_t _eventType; |
| 276 | |
| 277 | /** |
| 278 | * @brief A reserved word placeholder |
| 279 | */ |
| 280 | uint32_t _reserved4Byte1; |
| 281 | |
| 282 | /** |
| 283 | * @brief The problem domain field. |
| 284 | */ |
| 285 | uint8_t _problemDomain; |
| 286 | |
| 287 | /** |
| 288 | * @brief The problem vector field. |
| 289 | */ |
| 290 | uint8_t _problemVector; |
| 291 | |
| 292 | /** |
| 293 | * @brief The action flags field. |
| 294 | */ |
| 295 | uint16_t _actionFlags; |
| 296 | |
| 297 | /** |
Matt Spinler | eb11144 | 2019-11-07 13:05:36 -0600 | [diff] [blame] | 298 | * @brief The second reserved word that we are |
| 299 | * using for storing state information. |
| 300 | * |
| 301 | * 0x0000AABB |
| 302 | * Where: |
| 303 | * 0xAA = HMC transmission state |
| 304 | * 0xBB = Host transmission state |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 305 | */ |
Matt Spinler | eb11144 | 2019-11-07 13:05:36 -0600 | [diff] [blame] | 306 | uint32_t _states; |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 307 | }; |
| 308 | |
Matt Spinler | 03c1d91 | 2019-07-10 14:12:15 -0500 | [diff] [blame] | 309 | } // namespace pels |
| 310 | } // namespace openpower |