blob: e32719f3fe6c5cb8226253312fa415ac4edf2bd6 [file] [log] [blame]
Matt Spinler711d51d2019-11-06 09:36:51 -06001/**
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 Spinlerd3335df2019-07-10 11:04:21 -050016#include "private_header.hpp"
17
Harisuddin Mohamed Isa2ecb4652020-01-10 10:51:02 +080018#include "json_utils.hpp"
Matt Spinler289aa472019-09-20 12:33:29 -050019#include "log_id.hpp"
Matt Spinler1a94cc32019-09-11 13:32:12 -050020#include "pel_types.hpp"
Aatirc92b4eb2019-11-18 13:44:51 -060021#include "pel_values.hpp"
Matt Spinler1a94cc32019-09-11 13:32:12 -050022
Arya K Padman5bc26532024-04-10 06:19:25 -050023#include <phosphor-logging/lg2.hpp>
Matt Spinlerd3335df2019-07-10 11:04:21 -050024
Jayanth Othayoth1aa90d42023-09-13 04:25:45 -050025#include <format>
26
Matt Spinlerd3335df2019-07-10 11:04:21 -050027namespace openpower
28{
29namespace pels
30{
31
Aatirc92b4eb2019-11-18 13:44:51 -060032namespace pv = openpower::pels::pel_values;
Matt Spinlerd3335df2019-07-10 11:04:21 -050033
Matt Spinler289aa472019-09-20 12:33:29 -050034PrivateHeader::PrivateHeader(uint16_t componentID, uint32_t obmcLogID,
35 uint64_t timestamp)
36{
37 _header.id = static_cast<uint16_t>(SectionID::privateHeader);
38 _header.size = PrivateHeader::flattenedSize();
39 _header.version = privateHeaderVersion;
40 _header.subType = 0;
41 _header.componentID = componentID;
42
43 _createTimestamp = getBCDTime(timestamp);
44
45 auto now = std::chrono::system_clock::now();
46 _commitTimestamp = getBCDTime(now);
47
48 _creatorID = static_cast<uint8_t>(CreatorID::openBMC);
49
50 // Add support for reminder and telemetry log types here if
51 // ever necessary.
52 _logType = 0;
53
54 _reservedByte = 0;
55
56 // the final section count will be updated later
57 _sectionCount = 1;
58
59 _obmcLogID = obmcLogID;
60
61 _id = generatePELID();
62
63 _plid = _id;
64
65 // Leave _creatorVersion at 0
66
67 _valid = true;
68}
69
Matt Spinler31eed992019-10-09 14:07:52 -050070PrivateHeader::PrivateHeader(Stream& pel) :
71 _creatorID(0), _logType(0), _reservedByte(0), _sectionCount(0),
72 _obmcLogID(0), _plid(0), _id(0)
Matt Spinlerd3335df2019-07-10 11:04:21 -050073{
74 try
75 {
Matt Spinlercf5a8d02019-09-05 12:58:53 -050076 unflatten(pel);
Matt Spinlerd3335df2019-07-10 11:04:21 -050077 validate();
78 }
79 catch (const std::exception& e)
80 {
Arya K Padman5bc26532024-04-10 06:19:25 -050081 lg2::error("Cannot unflatten private header: {EXCEPTION}", "EXCEPTION",
82 e);
Matt Spinlerd3335df2019-07-10 11:04:21 -050083 _valid = false;
84 }
85}
Matt Spinlerb832aa52023-03-21 15:32:34 -050086std::optional<std::string> PrivateHeader::getJSON(uint8_t creatorID) const
Aatirc92b4eb2019-11-18 13:44:51 -060087{
88 char tmpPhVal[50];
Harisuddin Mohamed Isa160c51c2020-02-13 23:42:20 +080089 sprintf(tmpPhVal, "%02X/%02X/%02X%02X %02X:%02X:%02X",
Aatirc92b4eb2019-11-18 13:44:51 -060090 _createTimestamp.month, _createTimestamp.day,
91 _createTimestamp.yearMSB, _createTimestamp.yearLSB,
92 _createTimestamp.hour, _createTimestamp.minutes,
93 _createTimestamp.seconds);
94 std::string phCreateTStr(tmpPhVal);
Harisuddin Mohamed Isa160c51c2020-02-13 23:42:20 +080095 sprintf(tmpPhVal, "%02X/%02X/%02X%02X %02X:%02X:%02X",
Aatirc92b4eb2019-11-18 13:44:51 -060096 _commitTimestamp.month, _commitTimestamp.day,
Sumit Kumar74348c62021-10-26 05:48:28 -050097 _commitTimestamp.yearMSB, _commitTimestamp.yearLSB,
Aatirc92b4eb2019-11-18 13:44:51 -060098 _commitTimestamp.hour, _commitTimestamp.minutes,
99 _commitTimestamp.seconds);
100 std::string phCommitTStr(tmpPhVal);
Harisuddin Mohamed Isabebeb942020-03-12 17:12:24 +0800101 std::string creator = getNumberString("%c", _creatorID);
Aatirc92b4eb2019-11-18 13:44:51 -0600102 creator = pv::creatorIDs.count(creator) ? pv::creatorIDs.at(creator)
103 : "Unknown CreatorID";
104 std::string phCreatorVersionStr =
105 std::string(reinterpret_cast<const char*>(_creatorVersion.version));
Matt Spinlerd3335df2019-07-10 11:04:21 -0500106
Harisuddin Mohamed Isa2ecb4652020-01-10 10:51:02 +0800107 std::string ph;
Harisuddin Mohamed Isabebeb942020-03-12 17:12:24 +0800108 jsonInsert(ph, pv::sectionVer, getNumberString("%d", privateHeaderVersion),
109 1);
110 jsonInsert(ph, pv::subSection, getNumberString("%d", _header.subType), 1);
Matt Spinlerb832aa52023-03-21 15:32:34 -0500111 jsonInsert(ph, pv::createdBy,
112 getComponentName(_header.componentID, creatorID), 1);
Harisuddin Mohamed Isa2ecb4652020-01-10 10:51:02 +0800113 jsonInsert(ph, "Created at", phCreateTStr, 1);
114 jsonInsert(ph, "Committed at", phCommitTStr, 1);
115 jsonInsert(ph, "Creator Subsystem", creator, 1);
116 jsonInsert(ph, "CSSVER", phCreatorVersionStr, 1);
Harisuddin Mohamed Isabebeb942020-03-12 17:12:24 +0800117 jsonInsert(ph, "Platform Log Id", getNumberString("0x%X", _plid), 1);
118 jsonInsert(ph, "Entry Id", getNumberString("0x%X", _id), 1);
119 jsonInsert(ph, "BMC Event Log Id", std::to_string(_obmcLogID), 1);
Harisuddin Mohamed Isa2ecb4652020-01-10 10:51:02 +0800120 ph.erase(ph.size() - 2);
Aatirc92b4eb2019-11-18 13:44:51 -0600121
122 return ph;
123}
Matt Spinlerd3335df2019-07-10 11:04:21 -0500124void PrivateHeader::validate()
125{
126 bool failed = false;
127
Matt Spinler1a94cc32019-09-11 13:32:12 -0500128 if (header().id != static_cast<uint16_t>(SectionID::privateHeader))
Matt Spinlerd3335df2019-07-10 11:04:21 -0500129 {
Arya K Padman5bc26532024-04-10 06:19:25 -0500130 lg2::error("Invalid private header section ID: {HEADER_ID}",
131 "HEADER_ID", lg2::hex, header().id);
Matt Spinlerd3335df2019-07-10 11:04:21 -0500132 failed = true;
133 }
134
135 if (header().version != privateHeaderVersion)
136 {
Arya K Padman5bc26532024-04-10 06:19:25 -0500137 lg2::error("Invalid private header version: {HEADER_VERSION}",
138 "HEADER_VERSION", lg2::hex, header().version);
Matt Spinlerd3335df2019-07-10 11:04:21 -0500139 failed = true;
140 }
141
142 if (_sectionCount < minSectionCount)
143 {
Arya K Padman5bc26532024-04-10 06:19:25 -0500144 lg2::error("Invalid section count in private header: {SECTION_COUNT}",
145 "SECTION_COUNT", lg2::hex, _sectionCount);
Matt Spinlerd3335df2019-07-10 11:04:21 -0500146 failed = true;
147 }
148
149 _valid = (failed) ? false : true;
150}
151
Matt Spinlercf5a8d02019-09-05 12:58:53 -0500152void PrivateHeader::unflatten(Stream& stream)
Matt Spinlerd3335df2019-07-10 11:04:21 -0500153{
Matt Spinlercf5a8d02019-09-05 12:58:53 -0500154 stream >> _header >> _createTimestamp >> _commitTimestamp >> _creatorID >>
155 _logType >> _reservedByte >> _sectionCount >> _obmcLogID >>
156 _creatorVersion >> _plid >> _id;
Matt Spinlerd3335df2019-07-10 11:04:21 -0500157}
158
Matt Spinler06885452019-11-06 10:35:42 -0600159void PrivateHeader::flatten(Stream& stream) const
Matt Spinlerd3335df2019-07-10 11:04:21 -0500160{
Matt Spinlercf5a8d02019-09-05 12:58:53 -0500161 stream << _header << _createTimestamp << _commitTimestamp << _creatorID
162 << _logType << _reservedByte << _sectionCount << _obmcLogID
163 << _creatorVersion << _plid << _id;
Matt Spinlerd3335df2019-07-10 11:04:21 -0500164}
165
166Stream& operator>>(Stream& s, CreatorVersion& cv)
167{
168 for (size_t i = 0; i < sizeof(CreatorVersion); i++)
169 {
170 s >> cv.version[i];
171 }
172 return s;
173}
174
Matt Spinler06885452019-11-06 10:35:42 -0600175Stream& operator<<(Stream& s, const CreatorVersion& cv)
Matt Spinlerd3335df2019-07-10 11:04:21 -0500176{
177 for (size_t i = 0; i < sizeof(CreatorVersion); i++)
178 {
179 s << cv.version[i];
180 }
181 return s;
182}
183
184} // namespace pels
185} // namespace openpower