blob: 19deaba766869d92140bc8df42d2e275a0620911 [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
Matt Spinlerd3335df2019-07-10 11:04:21 -050023#include <phosphor-logging/log.hpp>
24
25namespace openpower
26{
27namespace pels
28{
29
Aatirc92b4eb2019-11-18 13:44:51 -060030namespace pv = openpower::pels::pel_values;
Matt Spinlerd3335df2019-07-10 11:04:21 -050031using namespace phosphor::logging;
32
Matt Spinler289aa472019-09-20 12:33:29 -050033PrivateHeader::PrivateHeader(uint16_t componentID, uint32_t obmcLogID,
34 uint64_t timestamp)
35{
36 _header.id = static_cast<uint16_t>(SectionID::privateHeader);
37 _header.size = PrivateHeader::flattenedSize();
38 _header.version = privateHeaderVersion;
39 _header.subType = 0;
40 _header.componentID = componentID;
41
42 _createTimestamp = getBCDTime(timestamp);
43
44 auto now = std::chrono::system_clock::now();
45 _commitTimestamp = getBCDTime(now);
46
47 _creatorID = static_cast<uint8_t>(CreatorID::openBMC);
48
49 // Add support for reminder and telemetry log types here if
50 // ever necessary.
51 _logType = 0;
52
53 _reservedByte = 0;
54
55 // the final section count will be updated later
56 _sectionCount = 1;
57
58 _obmcLogID = obmcLogID;
59
60 _id = generatePELID();
61
62 _plid = _id;
63
64 // Leave _creatorVersion at 0
65
66 _valid = true;
67}
68
Matt Spinler31eed992019-10-09 14:07:52 -050069PrivateHeader::PrivateHeader(Stream& pel) :
70 _creatorID(0), _logType(0), _reservedByte(0), _sectionCount(0),
71 _obmcLogID(0), _plid(0), _id(0)
Matt Spinlerd3335df2019-07-10 11:04:21 -050072{
73 try
74 {
Matt Spinlercf5a8d02019-09-05 12:58:53 -050075 unflatten(pel);
Matt Spinlerd3335df2019-07-10 11:04:21 -050076 validate();
77 }
78 catch (const std::exception& e)
79 {
80 log<level::ERR>("Cannot unflatten private header",
81 entry("ERROR=%s", e.what()));
82 _valid = false;
83 }
84}
Aatirc92b4eb2019-11-18 13:44:51 -060085std::optional<std::string> PrivateHeader::getJSON() const
86{
87 char tmpPhVal[50];
88 sprintf(tmpPhVal, "%02X/%02X/%02X%02X %02X:%02X:%02X",
89 _createTimestamp.month, _createTimestamp.day,
90 _createTimestamp.yearMSB, _createTimestamp.yearLSB,
91 _createTimestamp.hour, _createTimestamp.minutes,
92 _createTimestamp.seconds);
93 std::string phCreateTStr(tmpPhVal);
94 sprintf(tmpPhVal, "%02X/%02X/%02X%02X %02X:%02X:%02X",
95 _commitTimestamp.month, _commitTimestamp.day,
96 _createTimestamp.yearMSB, _commitTimestamp.yearLSB,
97 _commitTimestamp.hour, _commitTimestamp.minutes,
98 _commitTimestamp.seconds);
99 std::string phCommitTStr(tmpPhVal);
100 sprintf(tmpPhVal, "%c", _creatorID);
101 std::string creator(tmpPhVal);
102 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
Aatirc92b4eb2019-11-18 13:44:51 -0600107 sprintf(tmpPhVal, "0x%X", _header.componentID);
108 std::string phCbStr(tmpPhVal);
109 sprintf(tmpPhVal, "%d", _header.subType);
110 std::string phStStr(tmpPhVal);
111 sprintf(tmpPhVal, "%d", privateHeaderVersion);
112 std::string phVerStr(tmpPhVal);
113 sprintf(tmpPhVal, "0x%X", _plid);
114 std::string phPlatformIDStr(tmpPhVal);
115 sprintf(tmpPhVal, "0x%X", _id);
116 std::string phLogEntryIDStr(tmpPhVal);
Harisuddin Mohamed Isa2ecb4652020-01-10 10:51:02 +0800117 std::string ph;
118 jsonInsert(ph, "Section Version", phVerStr, 1);
119 jsonInsert(ph, "Sub-section type", phStStr, 1);
120 jsonInsert(ph, "Created by", phCbStr, 1);
121 jsonInsert(ph, "Created at", phCreateTStr, 1);
122 jsonInsert(ph, "Committed at", phCommitTStr, 1);
123 jsonInsert(ph, "Creator Subsystem", creator, 1);
124 jsonInsert(ph, "CSSVER", phCreatorVersionStr, 1);
125 jsonInsert(ph, "Platform Log Id", phPlatformIDStr, 1);
126 jsonInsert(ph, "Entry Id", phLogEntryIDStr, 1);
127 ph.erase(ph.size() - 2);
Aatirc92b4eb2019-11-18 13:44:51 -0600128
129 return ph;
130}
Matt Spinlerd3335df2019-07-10 11:04:21 -0500131void PrivateHeader::validate()
132{
133 bool failed = false;
134
Matt Spinler1a94cc32019-09-11 13:32:12 -0500135 if (header().id != static_cast<uint16_t>(SectionID::privateHeader))
Matt Spinlerd3335df2019-07-10 11:04:21 -0500136 {
137 log<level::ERR>("Invalid private header section ID",
138 entry("ID=0x%X", header().id));
139 failed = true;
140 }
141
142 if (header().version != privateHeaderVersion)
143 {
144 log<level::ERR>("Invalid private header version",
145 entry("VERSION=0x%X", header().version));
146 failed = true;
147 }
148
149 if (_sectionCount < minSectionCount)
150 {
151 log<level::ERR>("Invalid section count in private header",
152 entry("SECTION_COUNT=0x%X", _sectionCount));
153 failed = true;
154 }
155
156 _valid = (failed) ? false : true;
157}
158
Matt Spinlercf5a8d02019-09-05 12:58:53 -0500159void PrivateHeader::unflatten(Stream& stream)
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
Matt Spinler06885452019-11-06 10:35:42 -0600166void PrivateHeader::flatten(Stream& stream) const
Matt Spinlerd3335df2019-07-10 11:04:21 -0500167{
Matt Spinlercf5a8d02019-09-05 12:58:53 -0500168 stream << _header << _createTimestamp << _commitTimestamp << _creatorID
169 << _logType << _reservedByte << _sectionCount << _obmcLogID
170 << _creatorVersion << _plid << _id;
Matt Spinlerd3335df2019-07-10 11:04:21 -0500171}
172
173Stream& operator>>(Stream& s, CreatorVersion& cv)
174{
175 for (size_t i = 0; i < sizeof(CreatorVersion); i++)
176 {
177 s >> cv.version[i];
178 }
179 return s;
180}
181
Matt Spinler06885452019-11-06 10:35:42 -0600182Stream& operator<<(Stream& s, const CreatorVersion& cv)
Matt Spinlerd3335df2019-07-10 11:04:21 -0500183{
184 for (size_t i = 0; i < sizeof(CreatorVersion); i++)
185 {
186 s << cv.version[i];
187 }
188 return s;
189}
190
191} // namespace pels
192} // namespace openpower