Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
| 3 | #include "log_manager.hpp" |
| 4 | |
| 5 | #include "elog_entry.hpp" |
| 6 | #include "elog_meta.hpp" |
| 7 | #include "elog_serialize.hpp" |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 8 | #include "extensions.hpp" |
Matt Spinler | f61f292 | 2020-06-23 11:32:49 -0500 | [diff] [blame] | 9 | #include "util.hpp" |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 10 | |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 11 | #include <poll.h> |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 12 | #include <sys/inotify.h> |
Adriana Kobylak | 1db1bd3 | 2016-10-10 11:39:20 -0500 | [diff] [blame] | 13 | #include <systemd/sd-bus.h> |
Adriana Kobylak | d311bc8 | 2016-10-16 09:54:40 -0500 | [diff] [blame] | 14 | #include <systemd/sd-journal.h> |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 15 | #include <unistd.h> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 16 | |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 17 | #include <cassert> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 18 | #include <chrono> |
| 19 | #include <cstdio> |
Patrick Venture | 30047bf | 2018-11-01 18:52:15 -0700 | [diff] [blame] | 20 | #include <cstring> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 21 | #include <fstream> |
Patrick Venture | 30047bf | 2018-11-01 18:52:15 -0700 | [diff] [blame] | 22 | #include <functional> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 23 | #include <future> |
| 24 | #include <iostream> |
Patrick Venture | 30047bf | 2018-11-01 18:52:15 -0700 | [diff] [blame] | 25 | #include <map> |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 26 | #include <phosphor-logging/lg2.hpp> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 27 | #include <sdbusplus/vtable.hpp> |
| 28 | #include <set> |
| 29 | #include <string> |
Patrick Williams | b01a5b4 | 2021-08-28 15:11:45 -0500 | [diff] [blame] | 30 | #include <string_view> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 31 | #include <vector> |
Andrew Geissler | f6126a7 | 2020-05-08 10:41:09 -0500 | [diff] [blame] | 32 | #include <xyz/openbmc_project/State/Host/server.hpp> |
Deepak Kodihalli | a87c157 | 2017-02-28 07:40:34 -0600 | [diff] [blame] | 33 | |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 34 | using namespace std::chrono; |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 35 | extern const std::map< |
| 36 | phosphor::logging::metadata::Metadata, |
| 37 | std::function<phosphor::logging::metadata::associations::Type>> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 38 | meta; |
Adriana Kobylak | 1db1bd3 | 2016-10-10 11:39:20 -0500 | [diff] [blame] | 39 | |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 40 | namespace phosphor |
| 41 | { |
| 42 | namespace logging |
| 43 | { |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 44 | namespace internal |
| 45 | { |
Deepak Kodihalli | 6fd9dc4 | 2018-04-03 02:08:42 -0500 | [diff] [blame] | 46 | inline auto getLevel(const std::string& errMsg) |
| 47 | { |
| 48 | auto reqLevel = Entry::Level::Error; // Default to Error |
| 49 | |
| 50 | auto levelmap = g_errLevelMap.find(errMsg); |
Nagaraju Goruganti | f8a5a79 | 2017-10-13 08:09:52 -0500 | [diff] [blame] | 51 | if (levelmap != g_errLevelMap.end()) |
Marri Devender Rao | 7656fba | 2017-08-06 05:42:52 -0500 | [diff] [blame] | 52 | { |
Deepak Kodihalli | 6fd9dc4 | 2018-04-03 02:08:42 -0500 | [diff] [blame] | 53 | reqLevel = static_cast<Entry::Level>(levelmap->second); |
Marri Devender Rao | 7656fba | 2017-08-06 05:42:52 -0500 | [diff] [blame] | 54 | } |
| 55 | |
Deepak Kodihalli | 6fd9dc4 | 2018-04-03 02:08:42 -0500 | [diff] [blame] | 56 | return reqLevel; |
| 57 | } |
| 58 | |
Nagaraju Goruganti | 477b731 | 2018-06-25 23:28:58 -0500 | [diff] [blame] | 59 | int Manager::getRealErrSize() |
| 60 | { |
| 61 | return realErrors.size(); |
| 62 | } |
| 63 | |
| 64 | int Manager::getInfoErrSize() |
| 65 | { |
| 66 | return infoErrors.size(); |
| 67 | } |
| 68 | |
Lei YU | b50c705 | 2021-01-21 16:02:26 +0800 | [diff] [blame] | 69 | uint32_t Manager::commit(uint64_t transactionId, std::string errMsg) |
Deepak Kodihalli | 6fd9dc4 | 2018-04-03 02:08:42 -0500 | [diff] [blame] | 70 | { |
| 71 | auto level = getLevel(errMsg); |
| 72 | _commit(transactionId, std::move(errMsg), level); |
Lei YU | b50c705 | 2021-01-21 16:02:26 +0800 | [diff] [blame] | 73 | return entryId; |
Deepak Kodihalli | 6fd9dc4 | 2018-04-03 02:08:42 -0500 | [diff] [blame] | 74 | } |
| 75 | |
Lei YU | b50c705 | 2021-01-21 16:02:26 +0800 | [diff] [blame] | 76 | uint32_t Manager::commitWithLvl(uint64_t transactionId, std::string errMsg, |
| 77 | uint32_t errLvl) |
Deepak Kodihalli | 6fd9dc4 | 2018-04-03 02:08:42 -0500 | [diff] [blame] | 78 | { |
| 79 | _commit(transactionId, std::move(errMsg), |
| 80 | static_cast<Entry::Level>(errLvl)); |
Lei YU | b50c705 | 2021-01-21 16:02:26 +0800 | [diff] [blame] | 81 | return entryId; |
Deepak Kodihalli | 6fd9dc4 | 2018-04-03 02:08:42 -0500 | [diff] [blame] | 82 | } |
| 83 | |
Patrick Williams | a517197 | 2021-04-16 20:10:01 -0500 | [diff] [blame] | 84 | void Manager::_commit(uint64_t transactionId [[maybe_unused]], |
| 85 | std::string&& errMsg, Entry::Level errLvl) |
Deepak Kodihalli | 6fd9dc4 | 2018-04-03 02:08:42 -0500 | [diff] [blame] | 86 | { |
Patrick Williams | a517197 | 2021-04-16 20:10:01 -0500 | [diff] [blame] | 87 | std::vector<std::string> additionalData{}; |
| 88 | |
| 89 | // When running as a test-case, the system may have a LOT of journal |
| 90 | // data and we may not have permissions to do some of the journal sync |
| 91 | // operations. Just skip over them. |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 92 | if (!IS_UNIT_TEST) |
Adriana Kobylak | d311bc8 | 2016-10-16 09:54:40 -0500 | [diff] [blame] | 93 | { |
Patrick Williams | b01a5b4 | 2021-08-28 15:11:45 -0500 | [diff] [blame] | 94 | static constexpr auto transactionIdVar = |
| 95 | std::string_view{"TRANSACTION_ID"}; |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 96 | // Length of 'TRANSACTION_ID' string. |
Patrick Williams | b01a5b4 | 2021-08-28 15:11:45 -0500 | [diff] [blame] | 97 | static constexpr auto transactionIdVarSize = transactionIdVar.size(); |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 98 | // Length of 'TRANSACTION_ID=' string. |
Patrick Williams | b01a5b4 | 2021-08-28 15:11:45 -0500 | [diff] [blame] | 99 | static constexpr auto transactionIdVarOffset = transactionIdVarSize + 1; |
Adriana Kobylak | d311bc8 | 2016-10-16 09:54:40 -0500 | [diff] [blame] | 100 | |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 101 | // Flush all the pending log messages into the journal |
| 102 | journalSync(); |
Adriana Kobylak | 7298dc2 | 2017-01-24 12:21:50 -0600 | [diff] [blame] | 103 | |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 104 | sd_journal* j = nullptr; |
| 105 | int rc = sd_journal_open(&j, SD_JOURNAL_LOCAL_ONLY); |
Adriana Kobylak | fbe8872 | 2017-02-22 16:49:59 -0600 | [diff] [blame] | 106 | if (rc < 0) |
Adriana Kobylak | 9aa7d78 | 2017-02-18 09:20:49 -0600 | [diff] [blame] | 107 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 108 | lg2::error("Failed to open journal: {ERROR}", "ERROR", |
| 109 | strerror(-rc)); |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 110 | return; |
Adriana Kobylak | fbe8872 | 2017-02-22 16:49:59 -0600 | [diff] [blame] | 111 | } |
Adriana Kobylak | 9aa7d78 | 2017-02-18 09:20:49 -0600 | [diff] [blame] | 112 | |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 113 | std::string transactionIdStr = std::to_string(transactionId); |
| 114 | std::set<std::string> metalist; |
| 115 | auto metamap = g_errMetaMap.find(errMsg); |
| 116 | if (metamap != g_errMetaMap.end()) |
Adriana Kobylak | fbe8872 | 2017-02-22 16:49:59 -0600 | [diff] [blame] | 117 | { |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 118 | metalist.insert(metamap->second.begin(), metamap->second.end()); |
Adriana Kobylak | fbe8872 | 2017-02-22 16:49:59 -0600 | [diff] [blame] | 119 | } |
| 120 | |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 121 | // Add _PID field information in AdditionalData. |
| 122 | metalist.insert("_PID"); |
| 123 | |
| 124 | // Read the journal from the end to get the most recent entry first. |
| 125 | // The result from the sd_journal_get_data() is of the form |
| 126 | // VARIABLE=value. |
| 127 | SD_JOURNAL_FOREACH_BACKWARDS(j) |
Adriana Kobylak | fbe8872 | 2017-02-22 16:49:59 -0600 | [diff] [blame] | 128 | { |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 129 | const char* data = nullptr; |
| 130 | size_t length = 0; |
| 131 | |
| 132 | // Look for the transaction id metadata variable |
Patrick Williams | b01a5b4 | 2021-08-28 15:11:45 -0500 | [diff] [blame] | 133 | rc = sd_journal_get_data(j, transactionIdVar.data(), |
| 134 | (const void**)&data, &length); |
Adriana Kobylak | 9aa7d78 | 2017-02-18 09:20:49 -0600 | [diff] [blame] | 135 | if (rc < 0) |
| 136 | { |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 137 | // This journal entry does not have the TRANSACTION_ID |
| 138 | // metadata variable. |
Adriana Kobylak | 9aa7d78 | 2017-02-18 09:20:49 -0600 | [diff] [blame] | 139 | continue; |
| 140 | } |
| 141 | |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 142 | // journald does not guarantee that sd_journal_get_data() returns |
| 143 | // NULL terminated strings, so need to specify the size to use to |
| 144 | // compare, use the returned length instead of anything that relies |
| 145 | // on NULL terminators like strlen(). The data variable is in the |
| 146 | // form of 'TRANSACTION_ID=1234'. Remove the TRANSACTION_ID |
| 147 | // characters plus the (=) sign to do the comparison. 'data + |
| 148 | // transactionIdVarOffset' will be in the form of '1234'. 'length - |
| 149 | // transactionIdVarOffset' will be the length of '1234'. |
| 150 | if ((length <= (transactionIdVarOffset)) || |
| 151 | (transactionIdStr.compare( |
| 152 | 0, transactionIdStr.size(), data + transactionIdVarOffset, |
| 153 | length - transactionIdVarOffset) != 0)) |
| 154 | { |
| 155 | // The value of the TRANSACTION_ID metadata is not the requested |
| 156 | // transaction id number. |
| 157 | continue; |
| 158 | } |
Adriana Kobylak | 9aa7d78 | 2017-02-18 09:20:49 -0600 | [diff] [blame] | 159 | |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 160 | // Search for all metadata variables in the current journal entry. |
| 161 | for (auto i = metalist.cbegin(); i != metalist.cend();) |
| 162 | { |
| 163 | rc = sd_journal_get_data(j, (*i).c_str(), (const void**)&data, |
| 164 | &length); |
| 165 | if (rc < 0) |
| 166 | { |
| 167 | // Metadata variable not found, check next metadata |
| 168 | // variable. |
| 169 | i++; |
| 170 | continue; |
| 171 | } |
Adriana Kobylak | d311bc8 | 2016-10-16 09:54:40 -0500 | [diff] [blame] | 172 | |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 173 | // Metadata variable found, save it and remove it from the set. |
| 174 | additionalData.emplace_back(data, length); |
| 175 | i = metalist.erase(i); |
| 176 | } |
| 177 | if (metalist.empty()) |
| 178 | { |
| 179 | // All metadata variables found, break out of journal loop. |
| 180 | break; |
| 181 | } |
| 182 | } |
| 183 | if (!metalist.empty()) |
| 184 | { |
| 185 | // Not all the metadata variables were found in the journal. |
| 186 | for (auto& metaVarStr : metalist) |
| 187 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 188 | lg2::info("Failed to find metadata: {META_FIELD}", "META_FIELD", |
| 189 | metaVarStr); |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
| 193 | sd_journal_close(j); |
| 194 | } |
Matt Spinler | b60e755 | 2019-07-24 15:28:08 -0500 | [diff] [blame] | 195 | createEntry(errMsg, errLvl, additionalData); |
| 196 | } |
| 197 | |
| 198 | void Manager::createEntry(std::string errMsg, Entry::Level errLvl, |
Matt Spinler | c64b712 | 2020-03-26 10:55:01 -0500 | [diff] [blame] | 199 | std::vector<std::string> additionalData, |
| 200 | const FFDCEntries& ffdc) |
Matt Spinler | b60e755 | 2019-07-24 15:28:08 -0500 | [diff] [blame] | 201 | { |
| 202 | if (!Extensions::disableDefaultLogCaps()) |
| 203 | { |
| 204 | if (errLvl < Entry::sevLowerLimit) |
| 205 | { |
| 206 | if (realErrors.size() >= ERROR_CAP) |
| 207 | { |
| 208 | erase(realErrors.front()); |
| 209 | } |
| 210 | } |
| 211 | else |
| 212 | { |
| 213 | if (infoErrors.size() >= ERROR_INFO_CAP) |
| 214 | { |
| 215 | erase(infoErrors.front()); |
| 216 | } |
| 217 | } |
| 218 | } |
| 219 | |
Adriana Kobylak | 4ea7f31 | 2017-01-10 12:52:34 -0600 | [diff] [blame] | 220 | entryId++; |
Deepak Kodihalli | 6fd9dc4 | 2018-04-03 02:08:42 -0500 | [diff] [blame] | 221 | if (errLvl >= Entry::sevLowerLimit) |
Nagaraju Goruganti | f8a5a79 | 2017-10-13 08:09:52 -0500 | [diff] [blame] | 222 | { |
| 223 | infoErrors.push_back(entryId); |
| 224 | } |
Nagaraju Goruganti | e4b0b77 | 2017-11-30 02:12:45 -0600 | [diff] [blame] | 225 | else |
| 226 | { |
| 227 | realErrors.push_back(entryId); |
| 228 | } |
Adriana Kobylak | c5f0bbd | 2017-01-22 14:56:04 -0600 | [diff] [blame] | 229 | auto ms = std::chrono::duration_cast<std::chrono::milliseconds>( |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 230 | std::chrono::system_clock::now().time_since_epoch()) |
| 231 | .count(); |
| 232 | auto objPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId); |
Deepak Kodihalli | a87c157 | 2017-02-28 07:40:34 -0600 | [diff] [blame] | 233 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 234 | AssociationList objects{}; |
Deepak Kodihalli | a87c157 | 2017-02-28 07:40:34 -0600 | [diff] [blame] | 235 | processMetadata(errMsg, additionalData, objects); |
| 236 | |
Matt Spinler | fb978da | 2022-01-21 08:42:24 -0600 | [diff] [blame] | 237 | auto e = std::make_unique<Entry>( |
| 238 | busLog, objPath, entryId, |
| 239 | ms, // Milliseconds since 1970 |
| 240 | errLvl, std::move(errMsg), std::move(additionalData), |
| 241 | std::move(objects), fwVersion, getEntrySerializePath(entryId), *this); |
| 242 | |
| 243 | serialize(*e); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 244 | |
Matt Spinler | 601b811 | 2022-01-26 13:18:04 -0600 | [diff] [blame] | 245 | if (isQuiesceOnErrorEnabled() && (errLvl < Entry::sevLowerLimit) && |
| 246 | isCalloutPresent(*e)) |
Andrew Geissler | c0c500e | 2020-03-26 11:08:56 -0500 | [diff] [blame] | 247 | { |
Andrew Geissler | 3287454 | 2020-07-09 09:17:03 -0500 | [diff] [blame] | 248 | quiesceOnError(entryId); |
Andrew Geissler | c0c500e | 2020-03-26 11:08:56 -0500 | [diff] [blame] | 249 | } |
| 250 | |
Adriana Kobylak | e7d271a | 2020-12-07 14:32:44 -0600 | [diff] [blame] | 251 | // Add entry before calling the extensions so that they have access to it |
| 252 | entries.insert(std::make_pair(entryId, std::move(e))); |
| 253 | |
| 254 | doExtensionLogCreate(*entries.find(entryId)->second, ffdc); |
Matt Spinler | c64b712 | 2020-03-26 10:55:01 -0500 | [diff] [blame] | 255 | |
| 256 | // Note: No need to close the file descriptors in the FFDC. |
Adriana Kobylak | 1db1bd3 | 2016-10-10 11:39:20 -0500 | [diff] [blame] | 257 | } |
| 258 | |
Andrew Geissler | c0c500e | 2020-03-26 11:08:56 -0500 | [diff] [blame] | 259 | bool Manager::isQuiesceOnErrorEnabled() |
| 260 | { |
Patrick Williams | a517197 | 2021-04-16 20:10:01 -0500 | [diff] [blame] | 261 | // When running under tests, the Logging.Settings service will not be |
| 262 | // present. Assume false. |
William A. Kennington III | b6b2557 | 2021-05-19 17:09:41 -0700 | [diff] [blame] | 263 | if (IS_UNIT_TEST) |
| 264 | { |
| 265 | return false; |
| 266 | } |
Patrick Williams | a517197 | 2021-04-16 20:10:01 -0500 | [diff] [blame] | 267 | |
Andrew Geissler | c0c500e | 2020-03-26 11:08:56 -0500 | [diff] [blame] | 268 | std::variant<bool> property; |
| 269 | |
| 270 | auto method = this->busLog.new_method_call( |
| 271 | "xyz.openbmc_project.Settings", "/xyz/openbmc_project/logging/settings", |
| 272 | "org.freedesktop.DBus.Properties", "Get"); |
| 273 | |
| 274 | method.append("xyz.openbmc_project.Logging.Settings", "QuiesceOnHwError"); |
| 275 | |
| 276 | try |
| 277 | { |
| 278 | auto reply = this->busLog.call(method); |
| 279 | reply.read(property); |
| 280 | } |
Patrick Williams | e99a4fd | 2021-09-02 09:44:53 -0500 | [diff] [blame] | 281 | catch (const sdbusplus::exception::exception& e) |
Andrew Geissler | c0c500e | 2020-03-26 11:08:56 -0500 | [diff] [blame] | 282 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 283 | lg2::error("Error reading QuiesceOnHwError property: {ERROR}", "ERROR", |
| 284 | e); |
Andrew Geissler | c0c500e | 2020-03-26 11:08:56 -0500 | [diff] [blame] | 285 | throw; |
| 286 | } |
| 287 | |
| 288 | return std::get<bool>(property); |
| 289 | } |
| 290 | |
Andrew Geissler | e4960ee | 2020-03-30 14:31:52 -0500 | [diff] [blame] | 291 | bool Manager::isCalloutPresent(const Entry& entry) |
| 292 | { |
| 293 | for (const auto& c : entry.additionalData()) |
| 294 | { |
| 295 | if (c.find("CALLOUT_") != std::string::npos) |
| 296 | { |
| 297 | return true; |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | return false; |
| 302 | } |
| 303 | |
Andrew Geissler | 7f6d4bc | 2020-04-16 14:47:34 -0500 | [diff] [blame] | 304 | void Manager::findAndRemoveResolvedBlocks() |
| 305 | { |
| 306 | for (auto& entry : entries) |
| 307 | { |
| 308 | if (entry.second->resolved()) |
| 309 | { |
| 310 | checkAndRemoveBlockingError(entry.first); |
| 311 | } |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | void Manager::onEntryResolve(sdbusplus::message::message& msg) |
| 316 | { |
| 317 | using Interface = std::string; |
| 318 | using Property = std::string; |
| 319 | using Value = std::string; |
Patrick Williams | 25acc6c | 2020-06-02 11:05:34 -0500 | [diff] [blame] | 320 | using Properties = std::map<Property, std::variant<Value>>; |
Andrew Geissler | 7f6d4bc | 2020-04-16 14:47:34 -0500 | [diff] [blame] | 321 | |
| 322 | Interface interface; |
| 323 | Properties properties; |
| 324 | |
| 325 | msg.read(interface, properties); |
| 326 | |
| 327 | for (const auto& p : properties) |
| 328 | { |
| 329 | if (p.first == "Resolved") |
| 330 | { |
| 331 | findAndRemoveResolvedBlocks(); |
| 332 | return; |
| 333 | } |
| 334 | } |
| 335 | } |
| 336 | |
Andrew Geissler | f6126a7 | 2020-05-08 10:41:09 -0500 | [diff] [blame] | 337 | void Manager::checkAndQuiesceHost() |
| 338 | { |
Patrick Williams | a144a27 | 2021-07-16 17:03:55 -0500 | [diff] [blame] | 339 | using Host = sdbusplus::xyz::openbmc_project::State::server::Host; |
| 340 | |
Andrew Geissler | f6126a7 | 2020-05-08 10:41:09 -0500 | [diff] [blame] | 341 | // First check host state |
Patrick Williams | a144a27 | 2021-07-16 17:03:55 -0500 | [diff] [blame] | 342 | std::variant<Host::HostState> property; |
Andrew Geissler | f6126a7 | 2020-05-08 10:41:09 -0500 | [diff] [blame] | 343 | |
| 344 | auto method = this->busLog.new_method_call( |
| 345 | "xyz.openbmc_project.State.Host", "/xyz/openbmc_project/state/host0", |
| 346 | "org.freedesktop.DBus.Properties", "Get"); |
| 347 | |
| 348 | method.append("xyz.openbmc_project.State.Host", "CurrentHostState"); |
| 349 | |
| 350 | try |
| 351 | { |
| 352 | auto reply = this->busLog.call(method); |
| 353 | reply.read(property); |
| 354 | } |
Patrick Williams | e99a4fd | 2021-09-02 09:44:53 -0500 | [diff] [blame] | 355 | catch (const sdbusplus::exception::exception& e) |
Andrew Geissler | f6126a7 | 2020-05-08 10:41:09 -0500 | [diff] [blame] | 356 | { |
| 357 | // Quiescing the host is a "best effort" type function. If unable to |
| 358 | // read the host state or it comes back empty, just return. |
| 359 | // The boot block object will still be created and the associations to |
| 360 | // find the log will be present. Don't want a dependency with |
| 361 | // phosphor-state-manager service |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 362 | lg2::info("Error reading QuiesceOnHwError property: {ERROR}", "ERROR", |
| 363 | e); |
Andrew Geissler | f6126a7 | 2020-05-08 10:41:09 -0500 | [diff] [blame] | 364 | return; |
| 365 | } |
| 366 | |
Patrick Williams | a144a27 | 2021-07-16 17:03:55 -0500 | [diff] [blame] | 367 | auto hostState = std::get<Host::HostState>(property); |
| 368 | if (hostState != Host::HostState::Running) |
Andrew Geissler | f6126a7 | 2020-05-08 10:41:09 -0500 | [diff] [blame] | 369 | { |
| 370 | return; |
| 371 | } |
| 372 | |
| 373 | auto quiesce = this->busLog.new_method_call( |
| 374 | "org.freedesktop.systemd1", "/org/freedesktop/systemd1", |
| 375 | "org.freedesktop.systemd1.Manager", "StartUnit"); |
| 376 | |
| 377 | quiesce.append("obmc-host-quiesce@0.target"); |
| 378 | quiesce.append("replace"); |
| 379 | |
| 380 | this->busLog.call_noreply(quiesce); |
| 381 | } |
| 382 | |
Andrew Geissler | 3287454 | 2020-07-09 09:17:03 -0500 | [diff] [blame] | 383 | void Manager::quiesceOnError(const uint32_t entryId) |
Andrew Geissler | c0c500e | 2020-03-26 11:08:56 -0500 | [diff] [blame] | 384 | { |
Andrew Geissler | 72a1cca | 2020-09-10 16:49:09 -0500 | [diff] [blame] | 385 | // Verify we don't already have this entry blocking |
| 386 | auto it = find_if( |
| 387 | this->blockingErrors.begin(), this->blockingErrors.end(), |
| 388 | [&](std::unique_ptr<Block>& obj) { return obj->entryId == entryId; }); |
| 389 | if (it != this->blockingErrors.end()) |
| 390 | { |
| 391 | // Already recorded so just return |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 392 | lg2::debug( |
Andrew Geissler | 72a1cca | 2020-09-10 16:49:09 -0500 | [diff] [blame] | 393 | "QuiesceOnError set and callout present but entry already logged"); |
| 394 | return; |
| 395 | } |
Andrew Geissler | e4960ee | 2020-03-30 14:31:52 -0500 | [diff] [blame] | 396 | |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 397 | lg2::info("QuiesceOnError set and callout present"); |
Andrew Geissler | 6a0ef6f | 2020-04-06 15:06:31 -0500 | [diff] [blame] | 398 | |
Andrew Geissler | 7f6d4bc | 2020-04-16 14:47:34 -0500 | [diff] [blame] | 399 | auto blockPath = |
Andrew Geissler | 3287454 | 2020-07-09 09:17:03 -0500 | [diff] [blame] | 400 | std::string(OBJ_LOGGING) + "/block" + std::to_string(entryId); |
| 401 | auto blockObj = std::make_unique<Block>(this->busLog, blockPath, entryId); |
Andrew Geissler | 6a0ef6f | 2020-04-06 15:06:31 -0500 | [diff] [blame] | 402 | this->blockingErrors.push_back(std::move(blockObj)); |
| 403 | |
Andrew Geissler | 7f6d4bc | 2020-04-16 14:47:34 -0500 | [diff] [blame] | 404 | // Register call back if log is resolved |
| 405 | using namespace sdbusplus::bus::match::rules; |
Andrew Geissler | 3287454 | 2020-07-09 09:17:03 -0500 | [diff] [blame] | 406 | auto entryPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId); |
Andrew Geissler | 7f6d4bc | 2020-04-16 14:47:34 -0500 | [diff] [blame] | 407 | auto callback = std::make_unique<sdbusplus::bus::match::match>( |
| 408 | this->busLog, |
| 409 | propertiesChanged(entryPath, "xyz.openbmc_project.Logging.Entry"), |
| 410 | std::bind(std::mem_fn(&Manager::onEntryResolve), this, |
| 411 | std::placeholders::_1)); |
| 412 | |
| 413 | propChangedEntryCallback.insert( |
Andrew Geissler | 3287454 | 2020-07-09 09:17:03 -0500 | [diff] [blame] | 414 | std::make_pair(entryId, std::move(callback))); |
Andrew Geissler | 7f6d4bc | 2020-04-16 14:47:34 -0500 | [diff] [blame] | 415 | |
Andrew Geissler | f6126a7 | 2020-05-08 10:41:09 -0500 | [diff] [blame] | 416 | checkAndQuiesceHost(); |
Andrew Geissler | c0c500e | 2020-03-26 11:08:56 -0500 | [diff] [blame] | 417 | } |
| 418 | |
Matt Spinler | c64b712 | 2020-03-26 10:55:01 -0500 | [diff] [blame] | 419 | void Manager::doExtensionLogCreate(const Entry& entry, const FFDCEntries& ffdc) |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 420 | { |
| 421 | // Make the association <endpointpath>/<endpointtype> paths |
| 422 | std::vector<std::string> assocs; |
| 423 | for (const auto& [forwardType, reverseType, endpoint] : |
| 424 | entry.associations()) |
| 425 | { |
| 426 | std::string e{endpoint}; |
| 427 | e += '/' + reverseType; |
| 428 | assocs.push_back(e); |
| 429 | } |
| 430 | |
| 431 | for (auto& create : Extensions::getCreateFunctions()) |
| 432 | { |
| 433 | try |
| 434 | { |
| 435 | create(entry.message(), entry.id(), entry.timestamp(), |
Matt Spinler | c64b712 | 2020-03-26 10:55:01 -0500 | [diff] [blame] | 436 | entry.severity(), entry.additionalData(), assocs, ffdc); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 437 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 438 | catch (const std::exception& e) |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 439 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 440 | lg2::error( |
| 441 | "An extension's create function threw an exception: {ERROR}", |
| 442 | "ERROR", e); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 443 | } |
| 444 | } |
| 445 | } |
| 446 | |
Patrick Williams | f40323d | 2021-04-16 15:35:17 -0500 | [diff] [blame] | 447 | void Manager::processMetadata(const std::string& /*errorName*/, |
Deepak Kodihalli | a87c157 | 2017-02-28 07:40:34 -0600 | [diff] [blame] | 448 | const std::vector<std::string>& additionalData, |
| 449 | AssociationList& objects) const |
| 450 | { |
| 451 | // additionalData is a list of "metadata=value" |
| 452 | constexpr auto separator = '='; |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 453 | for (const auto& entryItem : additionalData) |
Deepak Kodihalli | a87c157 | 2017-02-28 07:40:34 -0600 | [diff] [blame] | 454 | { |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 455 | auto found = entryItem.find(separator); |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 456 | if (std::string::npos != found) |
Deepak Kodihalli | a87c157 | 2017-02-28 07:40:34 -0600 | [diff] [blame] | 457 | { |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 458 | auto metadata = entryItem.substr(0, found); |
Deepak Kodihalli | a87c157 | 2017-02-28 07:40:34 -0600 | [diff] [blame] | 459 | auto iter = meta.find(metadata); |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 460 | if (meta.end() != iter) |
Deepak Kodihalli | a87c157 | 2017-02-28 07:40:34 -0600 | [diff] [blame] | 461 | { |
| 462 | (iter->second)(metadata, additionalData, objects); |
| 463 | } |
| 464 | } |
| 465 | } |
| 466 | } |
| 467 | |
Andrew Geissler | ced6e2a | 2020-04-07 16:15:29 -0500 | [diff] [blame] | 468 | void Manager::checkAndRemoveBlockingError(uint32_t entryId) |
| 469 | { |
Andrew Geissler | 7f6d4bc | 2020-04-16 14:47:34 -0500 | [diff] [blame] | 470 | // First look for blocking object and remove |
Andrew Geissler | ced6e2a | 2020-04-07 16:15:29 -0500 | [diff] [blame] | 471 | auto it = find_if( |
| 472 | blockingErrors.begin(), blockingErrors.end(), |
| 473 | [&](std::unique_ptr<Block>& obj) { return obj->entryId == entryId; }); |
| 474 | if (it != blockingErrors.end()) |
| 475 | { |
| 476 | blockingErrors.erase(it); |
| 477 | } |
Andrew Geissler | 7f6d4bc | 2020-04-16 14:47:34 -0500 | [diff] [blame] | 478 | |
| 479 | // Now remove the callback looking for the error to be resolved |
| 480 | auto resolveFind = propChangedEntryCallback.find(entryId); |
| 481 | if (resolveFind != propChangedEntryCallback.end()) |
| 482 | { |
| 483 | propChangedEntryCallback.erase(resolveFind); |
| 484 | } |
| 485 | |
Andrew Geissler | ced6e2a | 2020-04-07 16:15:29 -0500 | [diff] [blame] | 486 | return; |
| 487 | } |
| 488 | |
Deepak Kodihalli | 99a8549 | 2017-03-31 06:01:57 -0500 | [diff] [blame] | 489 | void Manager::erase(uint32_t entryId) |
| 490 | { |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 491 | auto entryFound = entries.find(entryId); |
| 492 | if (entries.end() != entryFound) |
Deepak Kodihalli | 99a8549 | 2017-03-31 06:01:57 -0500 | [diff] [blame] | 493 | { |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 494 | for (auto& func : Extensions::getDeleteProhibitedFunctions()) |
| 495 | { |
| 496 | try |
| 497 | { |
| 498 | bool prohibited = false; |
| 499 | func(entryId, prohibited); |
| 500 | if (prohibited) |
| 501 | { |
| 502 | // Future work remains to throw an error here. |
| 503 | return; |
| 504 | } |
| 505 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 506 | catch (const std::exception& e) |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 507 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 508 | lg2::error("An extension's deleteProhibited function threw an " |
| 509 | "exception: {ERROR}", |
| 510 | "ERROR", e); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 511 | } |
| 512 | } |
| 513 | |
Deepak Kodihalli | 3388799 | 2017-06-13 07:06:49 -0500 | [diff] [blame] | 514 | // Delete the persistent representation of this error. |
| 515 | fs::path errorPath(ERRLOG_PERSIST_PATH); |
Marri Devender Rao | 8959efc | 2017-11-17 00:13:41 -0600 | [diff] [blame] | 516 | errorPath /= std::to_string(entryId); |
Deepak Kodihalli | 3388799 | 2017-06-13 07:06:49 -0500 | [diff] [blame] | 517 | fs::remove(errorPath); |
Nagaraju Goruganti | e4b0b77 | 2017-11-30 02:12:45 -0600 | [diff] [blame] | 518 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 519 | auto removeId = [](std::list<uint32_t>& ids, uint32_t id) { |
Nagaraju Goruganti | e4b0b77 | 2017-11-30 02:12:45 -0600 | [diff] [blame] | 520 | auto it = std::find(ids.begin(), ids.end(), id); |
| 521 | if (it != ids.end()) |
| 522 | { |
| 523 | ids.erase(it); |
| 524 | } |
| 525 | }; |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 526 | if (entryFound->second->severity() >= Entry::sevLowerLimit) |
Nagaraju Goruganti | f8a5a79 | 2017-10-13 08:09:52 -0500 | [diff] [blame] | 527 | { |
Nagaraju Goruganti | e4b0b77 | 2017-11-30 02:12:45 -0600 | [diff] [blame] | 528 | removeId(infoErrors, entryId); |
| 529 | } |
| 530 | else |
| 531 | { |
| 532 | removeId(realErrors, entryId); |
Nagaraju Goruganti | f8a5a79 | 2017-10-13 08:09:52 -0500 | [diff] [blame] | 533 | } |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 534 | entries.erase(entryFound); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 535 | |
Andrew Geissler | ced6e2a | 2020-04-07 16:15:29 -0500 | [diff] [blame] | 536 | checkAndRemoveBlockingError(entryId); |
| 537 | |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 538 | for (auto& remove : Extensions::getDeleteFunctions()) |
| 539 | { |
| 540 | try |
| 541 | { |
| 542 | remove(entryId); |
| 543 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 544 | catch (const std::exception& e) |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 545 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 546 | lg2::error("An extension's delete function threw an exception: " |
| 547 | "{ERROR}", |
| 548 | "ERROR", e); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 549 | } |
| 550 | } |
Deepak Kodihalli | 99a8549 | 2017-03-31 06:01:57 -0500 | [diff] [blame] | 551 | } |
Marri Devender Rao | 8959efc | 2017-11-17 00:13:41 -0600 | [diff] [blame] | 552 | else |
| 553 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 554 | lg2::error("Invalid entry ID ({ID}) to delete", "ID", entryId); |
Marri Devender Rao | 8959efc | 2017-11-17 00:13:41 -0600 | [diff] [blame] | 555 | } |
Deepak Kodihalli | 99a8549 | 2017-03-31 06:01:57 -0500 | [diff] [blame] | 556 | } |
| 557 | |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 558 | void Manager::restore() |
| 559 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 560 | auto sanity = [](const auto& id, const auto& restoredId) { |
Marri Devender Rao | 979ed1c | 2017-11-17 05:06:25 -0600 | [diff] [blame] | 561 | return id == restoredId; |
| 562 | }; |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 563 | std::vector<uint32_t> errorIds; |
| 564 | |
| 565 | fs::path dir(ERRLOG_PERSIST_PATH); |
| 566 | if (!fs::exists(dir) || fs::is_empty(dir)) |
| 567 | { |
| 568 | return; |
| 569 | } |
| 570 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 571 | for (auto& file : fs::directory_iterator(dir)) |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 572 | { |
| 573 | auto id = file.path().filename().c_str(); |
| 574 | auto idNum = std::stol(id); |
| 575 | auto e = std::make_unique<Entry>( |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 576 | busLog, std::string(OBJ_ENTRY) + '/' + id, idNum, *this); |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 577 | if (deserialize(file.path(), *e)) |
| 578 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 579 | // validate the restored error entry id |
Marri Devender Rao | 979ed1c | 2017-11-17 05:06:25 -0600 | [diff] [blame] | 580 | if (sanity(static_cast<uint32_t>(idNum), e->id())) |
Nagaraju Goruganti | f8a5a79 | 2017-10-13 08:09:52 -0500 | [diff] [blame] | 581 | { |
Matt Spinler | ef952af | 2021-08-19 10:23:05 -0500 | [diff] [blame] | 582 | e->path(file.path(), true); |
Marri Devender Rao | 979ed1c | 2017-11-17 05:06:25 -0600 | [diff] [blame] | 583 | if (e->severity() >= Entry::sevLowerLimit) |
| 584 | { |
| 585 | infoErrors.push_back(idNum); |
| 586 | } |
Nagaraju Goruganti | e4b0b77 | 2017-11-30 02:12:45 -0600 | [diff] [blame] | 587 | else |
| 588 | { |
| 589 | realErrors.push_back(idNum); |
| 590 | } |
Marri Devender Rao | 979ed1c | 2017-11-17 05:06:25 -0600 | [diff] [blame] | 591 | |
| 592 | entries.insert(std::make_pair(idNum, std::move(e))); |
| 593 | errorIds.push_back(idNum); |
Nagaraju Goruganti | f8a5a79 | 2017-10-13 08:09:52 -0500 | [diff] [blame] | 594 | } |
Marri Devender Rao | 979ed1c | 2017-11-17 05:06:25 -0600 | [diff] [blame] | 595 | else |
| 596 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 597 | lg2::error( |
Marri Devender Rao | 979ed1c | 2017-11-17 05:06:25 -0600 | [diff] [blame] | 598 | "Failed in sanity check while restoring error entry. " |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 599 | "Ignoring error entry {ID_NUM}/{ENTRY_ID}.", |
| 600 | "ID_NUM", idNum, "ENTRY_ID", e->id()); |
Marri Devender Rao | 979ed1c | 2017-11-17 05:06:25 -0600 | [diff] [blame] | 601 | } |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 602 | } |
| 603 | } |
| 604 | |
Vishwanatha Subbanna | 37af9ba | 2017-09-28 16:33:53 +0530 | [diff] [blame] | 605 | if (!errorIds.empty()) |
| 606 | { |
| 607 | entryId = *(std::max_element(errorIds.begin(), errorIds.end())); |
| 608 | } |
Deepak Kodihalli | 72654f1 | 2017-06-12 04:33:29 -0500 | [diff] [blame] | 609 | } |
| 610 | |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 611 | void Manager::journalSync() |
| 612 | { |
| 613 | bool syncRequested = false; |
| 614 | auto fd = -1; |
| 615 | auto rc = -1; |
| 616 | auto wd = -1; |
| 617 | auto bus = sdbusplus::bus::new_default(); |
| 618 | |
| 619 | auto start = |
| 620 | duration_cast<microseconds>(steady_clock::now().time_since_epoch()) |
| 621 | .count(); |
| 622 | |
Matthew Barth | 5991389 | 2019-08-27 15:43:48 -0500 | [diff] [blame] | 623 | // Each time an error log is committed, a request to sync the journal |
| 624 | // must occur and block that error log commit until it completes. A 5sec |
| 625 | // block is done to allow sufficient time for the journal to be synced. |
| 626 | // |
| 627 | // Number of loop iterations = 3 for the following reasons: |
| 628 | // Iteration #1: Requests a journal sync by killing the journald service. |
| 629 | // Iteration #2: Setup an inotify watch to monitor the synced file that |
| 630 | // journald updates with the timestamp the last time the |
| 631 | // journal was flushed. |
| 632 | // Iteration #3: Poll to wait until inotify reports an event which blocks |
| 633 | // the error log from being commited until the sync completes. |
| 634 | constexpr auto maxRetry = 3; |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 635 | for (int i = 0; i < maxRetry; i++) |
| 636 | { |
| 637 | // Read timestamp from synced file |
| 638 | constexpr auto syncedPath = "/run/systemd/journal/synced"; |
| 639 | std::ifstream syncedFile(syncedPath); |
| 640 | if (syncedFile.fail()) |
| 641 | { |
Adriana Kobylak | 7d111a8 | 2018-09-04 10:14:24 -0500 | [diff] [blame] | 642 | // If the synced file doesn't exist, a sync request will create it. |
| 643 | if (errno != ENOENT) |
| 644 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 645 | lg2::error( |
| 646 | "Failed to open journal synced file {FILENAME}: {ERROR}", |
| 647 | "FILENAME", syncedPath, "ERROR", strerror(errno)); |
Adriana Kobylak | 7d111a8 | 2018-09-04 10:14:24 -0500 | [diff] [blame] | 648 | return; |
| 649 | } |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 650 | } |
Adriana Kobylak | 7d111a8 | 2018-09-04 10:14:24 -0500 | [diff] [blame] | 651 | else |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 652 | { |
Adriana Kobylak | 7d111a8 | 2018-09-04 10:14:24 -0500 | [diff] [blame] | 653 | // Only read the synced file if it exists. |
| 654 | // See if a sync happened by now |
| 655 | std::string timestampStr; |
| 656 | std::getline(syncedFile, timestampStr); |
Patrick Venture | 30047bf | 2018-11-01 18:52:15 -0700 | [diff] [blame] | 657 | auto timestamp = std::stoll(timestampStr); |
Adriana Kobylak | 7d111a8 | 2018-09-04 10:14:24 -0500 | [diff] [blame] | 658 | if (timestamp >= start) |
| 659 | { |
Troy Lee | b7f392a | 2019-11-19 14:34:56 +0800 | [diff] [blame] | 660 | break; |
Adriana Kobylak | 7d111a8 | 2018-09-04 10:14:24 -0500 | [diff] [blame] | 661 | } |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 662 | } |
| 663 | |
| 664 | // Let's ask for a sync, but only once |
| 665 | if (!syncRequested) |
| 666 | { |
| 667 | syncRequested = true; |
| 668 | |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 669 | constexpr auto JOURNAL_UNIT = "systemd-journald.service"; |
| 670 | auto signal = SIGRTMIN + 1; |
| 671 | |
| 672 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 673 | SYSTEMD_INTERFACE, "KillUnit"); |
| 674 | method.append(JOURNAL_UNIT, "main", signal); |
| 675 | bus.call(method); |
| 676 | if (method.is_method_error()) |
| 677 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 678 | lg2::error("Failed to kill journal service"); |
Troy Lee | b7f392a | 2019-11-19 14:34:56 +0800 | [diff] [blame] | 679 | break; |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 680 | } |
Patrick Williams | a517197 | 2021-04-16 20:10:01 -0500 | [diff] [blame] | 681 | |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 682 | continue; |
| 683 | } |
| 684 | |
| 685 | // Let's install the inotify watch, if we didn't do that yet. This watch |
| 686 | // monitors the syncedFile for when journald updates it with a newer |
| 687 | // timestamp. This means the journal has been flushed. |
| 688 | if (fd < 0) |
| 689 | { |
| 690 | fd = inotify_init1(IN_NONBLOCK | IN_CLOEXEC); |
| 691 | if (fd < 0) |
| 692 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 693 | lg2::error("Failed to create inotify watch: {ERROR}", "ERROR", |
| 694 | strerror(errno)); |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 695 | return; |
| 696 | } |
| 697 | |
| 698 | constexpr auto JOURNAL_RUN_PATH = "/run/systemd/journal"; |
| 699 | wd = inotify_add_watch(fd, JOURNAL_RUN_PATH, |
| 700 | IN_MOVED_TO | IN_DONT_FOLLOW | IN_ONLYDIR); |
| 701 | if (wd < 0) |
| 702 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 703 | lg2::error("Failed to watch journal directory: {PATH}: {ERROR}", |
| 704 | "PATH", JOURNAL_RUN_PATH, "ERROR", strerror(errno)); |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 705 | close(fd); |
| 706 | return; |
| 707 | } |
| 708 | continue; |
| 709 | } |
| 710 | |
| 711 | // Let's wait until inotify reports an event |
| 712 | struct pollfd fds = { |
Andrew Jeffery | eb0aec4 | 2021-06-15 11:36:04 +0930 | [diff] [blame] | 713 | fd, |
| 714 | POLLIN, |
| 715 | 0, |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 716 | }; |
| 717 | constexpr auto pollTimeout = 5; // 5 seconds |
| 718 | rc = poll(&fds, 1, pollTimeout * 1000); |
| 719 | if (rc < 0) |
| 720 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 721 | lg2::error("Failed to add event: {ERROR}", "ERROR", |
| 722 | strerror(errno)); |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 723 | inotify_rm_watch(fd, wd); |
| 724 | close(fd); |
| 725 | return; |
| 726 | } |
| 727 | else if (rc == 0) |
| 728 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 729 | lg2::info("Poll timeout ({TIMEOUT}), no new journal synced data", |
| 730 | "TIMEOUT", pollTimeout); |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 731 | break; |
| 732 | } |
| 733 | |
| 734 | // Read from the specified file descriptor until there is no new data, |
| 735 | // throwing away everything read since the timestamp will be read at the |
| 736 | // beginning of the loop. |
| 737 | constexpr auto maxBytes = 64; |
| 738 | uint8_t buffer[maxBytes]; |
| 739 | while (read(fd, buffer, maxBytes) > 0) |
| 740 | ; |
| 741 | } |
| 742 | |
Adriana Kobylak | 4a029f2 | 2018-05-23 12:58:19 -0500 | [diff] [blame] | 743 | if (fd != -1) |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 744 | { |
Adriana Kobylak | 4a029f2 | 2018-05-23 12:58:19 -0500 | [diff] [blame] | 745 | if (wd != -1) |
| 746 | { |
| 747 | inotify_rm_watch(fd, wd); |
| 748 | } |
Adriana Kobylak | 5f4247f | 2018-03-15 10:27:05 -0500 | [diff] [blame] | 749 | close(fd); |
| 750 | } |
| 751 | |
| 752 | return; |
| 753 | } |
| 754 | |
Matt Spinler | 1275bd1 | 2018-05-01 15:13:53 -0500 | [diff] [blame] | 755 | std::string Manager::readFWVersion() |
| 756 | { |
Matt Spinler | f61f292 | 2020-06-23 11:32:49 -0500 | [diff] [blame] | 757 | auto version = util::getOSReleaseValue("VERSION_ID"); |
Matt Spinler | 1275bd1 | 2018-05-01 15:13:53 -0500 | [diff] [blame] | 758 | |
Matt Spinler | f61f292 | 2020-06-23 11:32:49 -0500 | [diff] [blame] | 759 | if (!version) |
Matt Spinler | 1275bd1 | 2018-05-01 15:13:53 -0500 | [diff] [blame] | 760 | { |
Patrick Williams | 5f285c5 | 2021-07-27 21:25:38 -0500 | [diff] [blame] | 761 | lg2::error("Unable to read BMC firmware version"); |
Matt Spinler | 1275bd1 | 2018-05-01 15:13:53 -0500 | [diff] [blame] | 762 | } |
| 763 | |
Matt Spinler | f61f292 | 2020-06-23 11:32:49 -0500 | [diff] [blame] | 764 | return version.value_or(""); |
Matt Spinler | 1275bd1 | 2018-05-01 15:13:53 -0500 | [diff] [blame] | 765 | } |
| 766 | |
Matt Spinler | 3fb83b3 | 2019-07-26 11:22:44 -0500 | [diff] [blame] | 767 | void Manager::create(const std::string& message, Entry::Level severity, |
| 768 | const std::map<std::string, std::string>& additionalData) |
| 769 | { |
| 770 | // Convert the map into a vector of "key=value" strings |
| 771 | std::vector<std::string> ad; |
| 772 | metadata::associations::combine(additionalData, ad); |
| 773 | |
| 774 | createEntry(message, severity, ad); |
| 775 | } |
| 776 | |
Matt Spinler | c64b712 | 2020-03-26 10:55:01 -0500 | [diff] [blame] | 777 | void Manager::createWithFFDC( |
| 778 | const std::string& message, Entry::Level severity, |
| 779 | const std::map<std::string, std::string>& additionalData, |
| 780 | const FFDCEntries& ffdc) |
| 781 | { |
| 782 | // Convert the map into a vector of "key=value" strings |
| 783 | std::vector<std::string> ad; |
| 784 | metadata::associations::combine(additionalData, ad); |
| 785 | |
| 786 | createEntry(message, severity, ad, ffdc); |
| 787 | } |
| 788 | |
Nagaraju Goruganti | 05aae8b | 2017-08-30 07:56:12 -0500 | [diff] [blame] | 789 | } // namespace internal |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 790 | } // namespace logging |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 791 | } // namespace phosphor |