Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 1 | #include "config.h" |
Jayanth Othayoth | 9c7f03a | 2017-09-20 00:04:22 -0500 | [diff] [blame] | 2 | |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 3 | #include "elog_serialize.hpp" |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 4 | |
| 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 Othayoth | 9c7f03a | 2017-09-20 00:04:22 -0500 | [diff] [blame] | 10 | #include <phosphor-logging/log.hpp> |
Vishwanatha Subbanna | 37af9ba | 2017-09-28 16:33:53 +0530 | [diff] [blame] | 11 | |
| 12 | // Register class version |
| 13 | // From cereal documentation; |
| 14 | // "This macro should be placed at global scope" |
Patrick Williams | f40323d | 2021-04-16 15:35:17 -0500 | [diff] [blame] | 15 | CEREAL_CLASS_VERSION(phosphor::logging::Entry, CLASS_VERSION) |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 16 | |
| 17 | namespace phosphor |
| 18 | { |
| 19 | namespace logging |
| 20 | { |
| 21 | |
Deepak Kodihalli | f1630ea | 2017-06-25 22:05:47 -0500 | [diff] [blame] | 22 | /** @brief Function required by Cereal to perform serialization. |
| 23 | * @tparam Archive - Cereal archive type (binary in our case). |
Vishwanatha Subbanna | 37af9ba | 2017-09-28 16:33:53 +0530 | [diff] [blame] | 24 | * @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 Kodihalli | f1630ea | 2017-06-25 22:05:47 -0500 | [diff] [blame] | 28 | */ |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 29 | template <class Archive> |
Patrick Williams | f40323d | 2021-04-16 15:35:17 -0500 | [diff] [blame] | 30 | void save(Archive& a, const Entry& e, const std::uint32_t /*version*/) |
Deepak Kodihalli | f1630ea | 2017-06-25 22:05:47 -0500 | [diff] [blame] | 31 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 32 | a(e.id(), e.severity(), e.timestamp(), e.message(), e.additionalData(), |
Vijay Lobo | d354a39 | 2021-06-01 16:21:02 -0500 | [diff] [blame] | 33 | e.associations(), e.resolved(), e.version(), e.updateTimestamp(), |
Vijay Lobo | 593a4c6 | 2021-06-16 14:25:26 -0500 | [diff] [blame] | 34 | e.eventId(), e.resolution()); |
Deepak Kodihalli | f1630ea | 2017-06-25 22:05:47 -0500 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | /** @brief Function required by Cereal to perform deserialization. |
| 38 | * @tparam Archive - Cereal archive type (binary in our case). |
Vishwanatha Subbanna | 37af9ba | 2017-09-28 16:33:53 +0530 | [diff] [blame] | 39 | * @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 Kodihalli | f1630ea | 2017-06-25 22:05:47 -0500 | [diff] [blame] | 43 | */ |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 44 | template <class Archive> |
Vishwanatha Subbanna | 37af9ba | 2017-09-28 16:33:53 +0530 | [diff] [blame] | 45 | void load(Archive& a, Entry& e, const std::uint32_t version) |
Deepak Kodihalli | f1630ea | 2017-06-25 22:05:47 -0500 | [diff] [blame] | 46 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 47 | using namespace sdbusplus::xyz::openbmc_project::Logging::server; |
Deepak Kodihalli | f1630ea | 2017-06-25 22:05:47 -0500 | [diff] [blame] | 48 | |
| 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 Spinler | 375ac9b | 2018-05-01 15:20:55 -0500 | [diff] [blame] | 56 | std::string fwVersion{}; |
Matt Spinler | 1e71a4d | 2020-03-04 13:40:22 -0600 | [diff] [blame] | 57 | uint64_t updateTimestamp{}; |
Vijay Lobo | d354a39 | 2021-06-01 16:21:02 -0500 | [diff] [blame] | 58 | std::string eventId{}; |
Vijay Lobo | 593a4c6 | 2021-06-16 14:25:26 -0500 | [diff] [blame] | 59 | std::string resolution{}; |
Deepak Kodihalli | f1630ea | 2017-06-25 22:05:47 -0500 | [diff] [blame] | 60 | |
Matt Spinler | 375ac9b | 2018-05-01 15:20:55 -0500 | [diff] [blame] | 61 | if (version < std::stoul(FIRST_CEREAL_CLASS_VERSION_WITH_FWLEVEL)) |
| 62 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 63 | a(id, severity, timestamp, message, additionalData, associations, |
| 64 | resolved); |
Matt Spinler | 1e71a4d | 2020-03-04 13:40:22 -0600 | [diff] [blame] | 65 | 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 Spinler | 375ac9b | 2018-05-01 15:20:55 -0500 | [diff] [blame] | 72 | } |
Vijay Lobo | d354a39 | 2021-06-01 16:21:02 -0500 | [diff] [blame] | 73 | else if (version < std::stoul(FIRST_CEREAL_CLASS_VERSION_WITH_EVENTID)) |
Matt Spinler | 375ac9b | 2018-05-01 15:20:55 -0500 | [diff] [blame] | 74 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 75 | a(id, severity, timestamp, message, additionalData, associations, |
Matt Spinler | 1e71a4d | 2020-03-04 13:40:22 -0600 | [diff] [blame] | 76 | resolved, fwVersion, updateTimestamp); |
Matt Spinler | 375ac9b | 2018-05-01 15:20:55 -0500 | [diff] [blame] | 77 | } |
Vijay Lobo | 593a4c6 | 2021-06-16 14:25:26 -0500 | [diff] [blame] | 78 | else if (version < std::stoul(FIRST_CEREAL_CLASS_VERSION_WITH_RESOLUTION)) |
Vijay Lobo | d354a39 | 2021-06-01 16:21:02 -0500 | [diff] [blame] | 79 | { |
| 80 | a(id, severity, timestamp, message, additionalData, associations, |
| 81 | resolved, fwVersion, updateTimestamp, eventId); |
| 82 | } |
Vijay Lobo | 593a4c6 | 2021-06-16 14:25:26 -0500 | [diff] [blame] | 83 | else |
| 84 | { |
| 85 | a(id, severity, timestamp, message, additionalData, associations, |
| 86 | resolved, fwVersion, updateTimestamp, eventId, resolution); |
| 87 | } |
Deepak Kodihalli | f1630ea | 2017-06-25 22:05:47 -0500 | [diff] [blame] | 88 | |
Matt Spinler | ef952af | 2021-08-19 10:23:05 -0500 | [diff] [blame] | 89 | e.id(id, true); |
| 90 | e.severity(severity, true); |
| 91 | e.timestamp(timestamp, true); |
| 92 | e.message(message, true); |
| 93 | e.additionalData(additionalData, true); |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 94 | e.sdbusplus::xyz::openbmc_project::Logging::server::Entry::resolved( |
Matt Spinler | ef952af | 2021-08-19 10:23:05 -0500 | [diff] [blame] | 95 | resolved, true); |
| 96 | e.associations(associations, true); |
| 97 | e.version(fwVersion, true); |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 98 | e.purpose(sdbusplus::xyz::openbmc_project::Software::server::Version:: |
Matt Spinler | ef952af | 2021-08-19 10:23:05 -0500 | [diff] [blame] | 99 | VersionPurpose::BMC, |
| 100 | true); |
| 101 | e.updateTimestamp(updateTimestamp, true); |
| 102 | e.eventId(eventId, true); |
| 103 | e.resolution(resolution, true); |
Deepak Kodihalli | f1630ea | 2017-06-25 22:05:47 -0500 | [diff] [blame] | 104 | } |
| 105 | |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 106 | fs::path serialize(const Entry& e, const fs::path& dir) |
| 107 | { |
| 108 | auto path = dir / std::to_string(e.id()); |
| 109 | std::ofstream os(path.c_str(), std::ios::binary); |
| 110 | cereal::BinaryOutputArchive oarchive(os); |
| 111 | oarchive(e); |
| 112 | return path; |
| 113 | } |
| 114 | |
| 115 | bool deserialize(const fs::path& path, Entry& e) |
| 116 | { |
Jayanth Othayoth | 9c7f03a | 2017-09-20 00:04:22 -0500 | [diff] [blame] | 117 | try |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 118 | { |
Jayanth Othayoth | 9c7f03a | 2017-09-20 00:04:22 -0500 | [diff] [blame] | 119 | if (fs::exists(path)) |
| 120 | { |
| 121 | std::ifstream is(path.c_str(), std::ios::in | std::ios::binary); |
| 122 | cereal::BinaryInputArchive iarchive(is); |
| 123 | iarchive(e); |
| 124 | return true; |
| 125 | } |
| 126 | return false; |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 127 | } |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 128 | catch (cereal::Exception& e) |
Jayanth Othayoth | 9c7f03a | 2017-09-20 00:04:22 -0500 | [diff] [blame] | 129 | { |
| 130 | log<level::ERR>(e.what()); |
| 131 | fs::remove(path); |
| 132 | return false; |
| 133 | } |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 134 | catch (const std::length_error& e) |
Vishwanatha Subbanna | 37af9ba | 2017-09-28 16:33:53 +0530 | [diff] [blame] | 135 | { |
| 136 | // Running into: USCiLab/cereal#192 |
| 137 | // This may be indicating some other issue in the |
| 138 | // way vector may have been used inside the logging. |
| 139 | // possibly associations ??. But handling it here for |
| 140 | // now since we are anyway tossing the log |
| 141 | // TODO: openbmc/phosphor-logging#8 |
| 142 | log<level::ERR>(e.what()); |
| 143 | fs::remove(path); |
| 144 | return false; |
| 145 | } |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | } // namespace logging |
| 149 | } // namespace phosphor |