blob: 070164cbccf2a245263128d4c1549189d7a68d70 [file] [log] [blame]
Patrick Venturef18bf832018-10-26 18:14:00 -07001#include "config.h"
Jayanth Othayoth9c7f03a2017-09-20 00:04:22 -05002
Deepak Kodihalli72654f12017-06-12 04:33:29 -05003#include "elog_serialize.hpp"
Patrick Venturef18bf832018-10-26 18:14:00 -07004
5#include <cereal/archives/binary.hpp>
6#include <cereal/types/string.hpp>
7#include <cereal/types/tuple.hpp>
8#include <cereal/types/vector.hpp>
9#include <fstream>
Jayanth Othayoth9c7f03a2017-09-20 00:04:22 -050010#include <phosphor-logging/log.hpp>
Vishwanatha Subbanna37af9ba2017-09-28 16:33:53 +053011
12// Register class version
13// From cereal documentation;
14// "This macro should be placed at global scope"
Patrick Williamsf40323d2021-04-16 15:35:17 -050015CEREAL_CLASS_VERSION(phosphor::logging::Entry, CLASS_VERSION)
Deepak Kodihalli72654f12017-06-12 04:33:29 -050016
17namespace phosphor
18{
19namespace logging
20{
21
Deepak Kodihallif1630ea2017-06-25 22:05:47 -050022/** @brief Function required by Cereal to perform serialization.
23 * @tparam Archive - Cereal archive type (binary in our case).
Vishwanatha Subbanna37af9ba2017-09-28 16:33:53 +053024 * @param[in] a - reference to Cereal archive.
25 * @param[in] e - const reference to error entry.
26 * @param[in] version - Class version that enables handling
27 * a serialized data across code levels
Deepak Kodihallif1630ea2017-06-25 22:05:47 -050028 */
Patrick Venturef18bf832018-10-26 18:14:00 -070029template <class Archive>
Patrick Williamsf40323d2021-04-16 15:35:17 -050030void save(Archive& a, const Entry& e, const std::uint32_t /*version*/)
Deepak Kodihallif1630ea2017-06-25 22:05:47 -050031{
Patrick Venturef18bf832018-10-26 18:14:00 -070032 a(e.id(), e.severity(), e.timestamp(), e.message(), e.additionalData(),
Vijay Lobod354a392021-06-01 16:21:02 -050033 e.associations(), e.resolved(), e.version(), e.updateTimestamp(),
Vijay Lobo593a4c62021-06-16 14:25:26 -050034 e.eventId(), e.resolution());
Deepak Kodihallif1630ea2017-06-25 22:05:47 -050035}
36
37/** @brief Function required by Cereal to perform deserialization.
38 * @tparam Archive - Cereal archive type (binary in our case).
Vishwanatha Subbanna37af9ba2017-09-28 16:33:53 +053039 * @param[in] a - reference to Cereal archive.
40 * @param[in] e - reference to error entry.
41 * @param[in] version - Class version that enables handling
42 * a serialized data across code levels
Deepak Kodihallif1630ea2017-06-25 22:05:47 -050043 */
Patrick Venturef18bf832018-10-26 18:14:00 -070044template <class Archive>
Vishwanatha Subbanna37af9ba2017-09-28 16:33:53 +053045void load(Archive& a, Entry& e, const std::uint32_t version)
Deepak Kodihallif1630ea2017-06-25 22:05:47 -050046{
Patrick Venturef18bf832018-10-26 18:14:00 -070047 using namespace sdbusplus::xyz::openbmc_project::Logging::server;
Deepak Kodihallif1630ea2017-06-25 22:05:47 -050048
49 uint32_t id{};
50 Entry::Level severity{};
51 uint64_t timestamp{};
52 std::string message{};
53 std::vector<std::string> additionalData{};
54 bool resolved{};
55 AssociationList associations{};
Matt Spinler375ac9b2018-05-01 15:20:55 -050056 std::string fwVersion{};
Matt Spinler1e71a4d2020-03-04 13:40:22 -060057 uint64_t updateTimestamp{};
Vijay Lobod354a392021-06-01 16:21:02 -050058 std::string eventId{};
Vijay Lobo593a4c62021-06-16 14:25:26 -050059 std::string resolution{};
Deepak Kodihallif1630ea2017-06-25 22:05:47 -050060
Matt Spinler375ac9b2018-05-01 15:20:55 -050061 if (version < std::stoul(FIRST_CEREAL_CLASS_VERSION_WITH_FWLEVEL))
62 {
Patrick Venturef18bf832018-10-26 18:14:00 -070063 a(id, severity, timestamp, message, additionalData, associations,
64 resolved);
Matt Spinler1e71a4d2020-03-04 13:40:22 -060065 updateTimestamp = timestamp;
66 }
67 else if (version < std::stoul(FIRST_CEREAL_CLASS_VERSION_WITH_UPDATE_TS))
68 {
69 a(id, severity, timestamp, message, additionalData, associations,
70 resolved, fwVersion);
71 updateTimestamp = timestamp;
Matt Spinler375ac9b2018-05-01 15:20:55 -050072 }
Vijay Lobod354a392021-06-01 16:21:02 -050073 else if (version < std::stoul(FIRST_CEREAL_CLASS_VERSION_WITH_EVENTID))
Matt Spinler375ac9b2018-05-01 15:20:55 -050074 {
Patrick Venturef18bf832018-10-26 18:14:00 -070075 a(id, severity, timestamp, message, additionalData, associations,
Matt Spinler1e71a4d2020-03-04 13:40:22 -060076 resolved, fwVersion, updateTimestamp);
Matt Spinler375ac9b2018-05-01 15:20:55 -050077 }
Vijay Lobo593a4c62021-06-16 14:25:26 -050078 else if (version < std::stoul(FIRST_CEREAL_CLASS_VERSION_WITH_RESOLUTION))
Vijay Lobod354a392021-06-01 16:21:02 -050079 {
80 a(id, severity, timestamp, message, additionalData, associations,
81 resolved, fwVersion, updateTimestamp, eventId);
82 }
Vijay Lobo593a4c62021-06-16 14:25:26 -050083 else
84 {
85 a(id, severity, timestamp, message, additionalData, associations,
86 resolved, fwVersion, updateTimestamp, eventId, resolution);
87 }
Deepak Kodihallif1630ea2017-06-25 22:05:47 -050088
89 e.id(id);
90 e.severity(severity);
91 e.timestamp(timestamp);
92 e.message(message);
93 e.additionalData(additionalData);
Patrick Venturef18bf832018-10-26 18:14:00 -070094 e.sdbusplus::xyz::openbmc_project::Logging::server::Entry::resolved(
95 resolved);
Deepak Kodihallif1630ea2017-06-25 22:05:47 -050096 e.associations(associations);
Matt Spinler375ac9b2018-05-01 15:20:55 -050097 e.version(fwVersion);
Patrick Venturef18bf832018-10-26 18:14:00 -070098 e.purpose(sdbusplus::xyz::openbmc_project::Software::server::Version::
99 VersionPurpose::BMC);
Matt Spinler1e71a4d2020-03-04 13:40:22 -0600100 e.updateTimestamp(updateTimestamp);
Vijay Lobod354a392021-06-01 16:21:02 -0500101 e.eventId(eventId);
Vijay Lobo593a4c62021-06-16 14:25:26 -0500102 e.resolution(resolution);
Deepak Kodihallif1630ea2017-06-25 22:05:47 -0500103}
104
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500105fs::path serialize(const Entry& e, const fs::path& dir)
106{
107 auto path = dir / std::to_string(e.id());
108 std::ofstream os(path.c_str(), std::ios::binary);
109 cereal::BinaryOutputArchive oarchive(os);
110 oarchive(e);
111 return path;
112}
113
114bool deserialize(const fs::path& path, Entry& e)
115{
Jayanth Othayoth9c7f03a2017-09-20 00:04:22 -0500116 try
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500117 {
Jayanth Othayoth9c7f03a2017-09-20 00:04:22 -0500118 if (fs::exists(path))
119 {
120 std::ifstream is(path.c_str(), std::ios::in | std::ios::binary);
121 cereal::BinaryInputArchive iarchive(is);
122 iarchive(e);
123 return true;
124 }
125 return false;
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500126 }
Patrick Venturef18bf832018-10-26 18:14:00 -0700127 catch (cereal::Exception& e)
Jayanth Othayoth9c7f03a2017-09-20 00:04:22 -0500128 {
129 log<level::ERR>(e.what());
130 fs::remove(path);
131 return false;
132 }
Patrick Venturef18bf832018-10-26 18:14:00 -0700133 catch (const std::length_error& e)
Vishwanatha Subbanna37af9ba2017-09-28 16:33:53 +0530134 {
135 // Running into: USCiLab/cereal#192
136 // This may be indicating some other issue in the
137 // way vector may have been used inside the logging.
138 // possibly associations ??. But handling it here for
139 // now since we are anyway tossing the log
140 // TODO: openbmc/phosphor-logging#8
141 log<level::ERR>(e.what());
142 fs::remove(path);
143 return false;
144 }
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500145}
146
147} // namespace logging
148} // namespace phosphor