blob: 756ee4f4a9a647a15349ada43eb53fc2dcbd525f [file] [log] [blame]
Patrick Venturef18bf832018-10-26 18:14:00 -07001#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 Spinler99c2b402019-05-23 14:29:16 -05008#include "extensions.hpp"
Matt Spinlerf61f2922020-06-23 11:32:49 -05009#include "util.hpp"
Patrick Venturef18bf832018-10-26 18:14:00 -070010
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050011#include <poll.h>
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050012#include <sys/inotify.h>
Adriana Kobylak1db1bd32016-10-10 11:39:20 -050013#include <systemd/sd-bus.h>
Adriana Kobylakd311bc82016-10-16 09:54:40 -050014#include <systemd/sd-journal.h>
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050015#include <unistd.h>
Patrick Venturef18bf832018-10-26 18:14:00 -070016
Matt Spinler99c2b402019-05-23 14:29:16 -050017#include <cassert>
Patrick Venturef18bf832018-10-26 18:14:00 -070018#include <chrono>
19#include <cstdio>
Patrick Venture30047bf2018-11-01 18:52:15 -070020#include <cstring>
Patrick Venturef18bf832018-10-26 18:14:00 -070021#include <fstream>
Patrick Venture30047bf2018-11-01 18:52:15 -070022#include <functional>
Patrick Venturef18bf832018-10-26 18:14:00 -070023#include <future>
24#include <iostream>
Patrick Venture30047bf2018-11-01 18:52:15 -070025#include <map>
Saqib Khan2bb15192017-02-13 13:19:55 -060026#include <phosphor-logging/log.hpp>
Patrick Venturef18bf832018-10-26 18:14:00 -070027#include <sdbusplus/vtable.hpp>
28#include <set>
29#include <string>
30#include <vector>
Andrew Geisslerf6126a72020-05-08 10:41:09 -050031#include <xyz/openbmc_project/State/Host/server.hpp>
Deepak Kodihallia87c1572017-02-28 07:40:34 -060032
33using namespace phosphor::logging;
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050034using namespace std::chrono;
Andrew Geisslerc0c500e2020-03-26 11:08:56 -050035using sdbusplus::exception::SdBusError;
Deepak Kodihallia87c1572017-02-28 07:40:34 -060036extern const std::map<metadata::Metadata,
Patrick Venturef18bf832018-10-26 18:14:00 -070037 std::function<metadata::associations::Type>>
38 meta;
Adriana Kobylak1db1bd32016-10-10 11:39:20 -050039
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060040namespace phosphor
41{
42namespace logging
43{
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -050044namespace internal
45{
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050046inline 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 Gorugantif8a5a792017-10-13 08:09:52 -050051 if (levelmap != g_errLevelMap.end())
Marri Devender Rao7656fba2017-08-06 05:42:52 -050052 {
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050053 reqLevel = static_cast<Entry::Level>(levelmap->second);
Marri Devender Rao7656fba2017-08-06 05:42:52 -050054 }
55
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050056 return reqLevel;
57}
58
Nagaraju Goruganti477b7312018-06-25 23:28:58 -050059int Manager::getRealErrSize()
60{
61 return realErrors.size();
62}
63
64int Manager::getInfoErrSize()
65{
66 return infoErrors.size();
67}
68
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050069void Manager::commit(uint64_t transactionId, std::string errMsg)
70{
71 auto level = getLevel(errMsg);
72 _commit(transactionId, std::move(errMsg), level);
73}
74
75void Manager::commitWithLvl(uint64_t transactionId, std::string errMsg,
76 uint32_t errLvl)
77{
78 _commit(transactionId, std::move(errMsg),
79 static_cast<Entry::Level>(errLvl));
80}
81
82void Manager::_commit(uint64_t transactionId, std::string&& errMsg,
83 Entry::Level errLvl)
84{
Adriana Kobylak7298dc22017-01-24 12:21:50 -060085 constexpr const auto transactionIdVar = "TRANSACTION_ID";
Adriana Kobylak27c87d92017-03-06 12:45:09 -060086 // Length of 'TRANSACTION_ID' string.
Patrick Venture30047bf2018-11-01 18:52:15 -070087 constexpr const auto transactionIdVarSize = std::strlen(transactionIdVar);
Adriana Kobylak27c87d92017-03-06 12:45:09 -060088 // Length of 'TRANSACTION_ID=' string.
89 constexpr const auto transactionIdVarOffset = transactionIdVarSize + 1;
Adriana Kobylak1db1bd32016-10-10 11:39:20 -050090
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050091 // Flush all the pending log messages into the journal
92 journalSync();
Adriana Kobylakcfd9a7d2017-06-07 11:57:31 -050093
Patrick Venturef18bf832018-10-26 18:14:00 -070094 sd_journal* j = nullptr;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060095 int rc = sd_journal_open(&j, SD_JOURNAL_LOCAL_ONLY);
Adriana Kobylakd311bc82016-10-16 09:54:40 -050096 if (rc < 0)
97 {
Patrick Venturef18bf832018-10-26 18:14:00 -070098 logging::log<logging::level::ERR>(
99 "Failed to open journal",
100 logging::entry("DESCRIPTION=%s", strerror(-rc)));
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600101 return;
Adriana Kobylakd311bc82016-10-16 09:54:40 -0500102 }
103
Adriana Kobylak7298dc22017-01-24 12:21:50 -0600104 std::string transactionIdStr = std::to_string(transactionId);
Adriana Kobylakd722b3a2017-02-28 12:10:44 -0600105 std::set<std::string> metalist;
106 auto metamap = g_errMetaMap.find(errMsg);
107 if (metamap != g_errMetaMap.end())
108 {
109 metalist.insert(metamap->second.begin(), metamap->second.end());
110 }
Adriana Kobylak7298dc22017-01-24 12:21:50 -0600111
Patrick Venturef18bf832018-10-26 18:14:00 -0700112 // Add _PID field information in AdditionalData.
Jayanth Othayothdb18ebe2017-09-04 00:48:02 -0500113 metalist.insert("_PID");
114
Tom Joseph7a33ee42017-07-25 00:04:20 +0530115 std::vector<std::string> additionalData;
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600116
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600117 // Read the journal from the end to get the most recent entry first.
118 // The result from the sd_journal_get_data() is of the form VARIABLE=value.
119 SD_JOURNAL_FOREACH_BACKWARDS(j)
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600120 {
Patrick Venturef18bf832018-10-26 18:14:00 -0700121 const char* data = nullptr;
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600122 size_t length = 0;
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600123
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600124 // Look for the transaction id metadata variable
Patrick Venturef18bf832018-10-26 18:14:00 -0700125 rc = sd_journal_get_data(j, transactionIdVar, (const void**)&data,
126 &length);
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600127 if (rc < 0)
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600128 {
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600129 // This journal entry does not have the TRANSACTION_ID
130 // metadata variable.
131 continue;
132 }
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600133
Adriana Kobylak27c87d92017-03-06 12:45:09 -0600134 // journald does not guarantee that sd_journal_get_data() returns NULL
135 // terminated strings, so need to specify the size to use to compare,
136 // use the returned length instead of anything that relies on NULL
137 // terminators like strlen().
138 // The data variable is in the form of 'TRANSACTION_ID=1234'. Remove
139 // the TRANSACTION_ID characters plus the (=) sign to do the comparison.
140 // 'data + transactionIdVarOffset' will be in the form of '1234'.
141 // 'length - transactionIdVarOffset' will be the length of '1234'.
142 if ((length <= (transactionIdVarOffset)) ||
Patrick Venturef18bf832018-10-26 18:14:00 -0700143 (transactionIdStr.compare(0, transactionIdStr.size(),
Adriana Kobylak27c87d92017-03-06 12:45:09 -0600144 data + transactionIdVarOffset,
145 length - transactionIdVarOffset) != 0))
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600146 {
147 // The value of the TRANSACTION_ID metadata is not the requested
148 // transaction id number.
149 continue;
150 }
151
152 // Search for all metadata variables in the current journal entry.
153 for (auto i = metalist.cbegin(); i != metalist.cend();)
154 {
Patrick Venturef18bf832018-10-26 18:14:00 -0700155 rc = sd_journal_get_data(j, (*i).c_str(), (const void**)&data,
156 &length);
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600157 if (rc < 0)
158 {
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600159 // Metadata variable not found, check next metadata variable.
160 i++;
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600161 continue;
162 }
163
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600164 // Metadata variable found, save it and remove it from the set.
165 additionalData.emplace_back(data, length);
166 i = metalist.erase(i);
167 }
168 if (metalist.empty())
169 {
170 // All metadata variables found, break out of journal loop.
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600171 break;
172 }
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600173 }
174 if (!metalist.empty())
175 {
176 // Not all the metadata variables were found in the journal.
177 for (auto& metaVarStr : metalist)
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600178 {
Patrick Venturef18bf832018-10-26 18:14:00 -0700179 logging::log<logging::level::INFO>(
180 "Failed to find metadata",
181 logging::entry("META_FIELD=%s", metaVarStr.c_str()));
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600182 }
183 }
184
Adriana Kobylakd311bc82016-10-16 09:54:40 -0500185 sd_journal_close(j);
186
Matt Spinlerb60e7552019-07-24 15:28:08 -0500187 createEntry(errMsg, errLvl, additionalData);
188}
189
190void Manager::createEntry(std::string errMsg, Entry::Level errLvl,
Matt Spinlerc64b7122020-03-26 10:55:01 -0500191 std::vector<std::string> additionalData,
192 const FFDCEntries& ffdc)
Matt Spinlerb60e7552019-07-24 15:28:08 -0500193{
194 if (!Extensions::disableDefaultLogCaps())
195 {
196 if (errLvl < Entry::sevLowerLimit)
197 {
198 if (realErrors.size() >= ERROR_CAP)
199 {
200 erase(realErrors.front());
201 }
202 }
203 else
204 {
205 if (infoErrors.size() >= ERROR_INFO_CAP)
206 {
207 erase(infoErrors.front());
208 }
209 }
210 }
211
Adriana Kobylak4ea7f312017-01-10 12:52:34 -0600212 entryId++;
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -0500213 if (errLvl >= Entry::sevLowerLimit)
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500214 {
215 infoErrors.push_back(entryId);
216 }
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600217 else
218 {
219 realErrors.push_back(entryId);
220 }
Adriana Kobylakc5f0bbd2017-01-22 14:56:04 -0600221 auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(
Patrick Venturef18bf832018-10-26 18:14:00 -0700222 std::chrono::system_clock::now().time_since_epoch())
223 .count();
224 auto objPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId);
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600225
Patrick Venturef18bf832018-10-26 18:14:00 -0700226 AssociationList objects{};
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600227 processMetadata(errMsg, additionalData, objects);
228
Patrick Venturef18bf832018-10-26 18:14:00 -0700229 auto e = std::make_unique<Entry>(busLog, objPath, entryId,
230 ms, // Milliseconds since 1970
231 errLvl, std::move(errMsg),
232 std::move(additionalData),
233 std::move(objects), fwVersion, *this);
Adriana Kobylak1ff95ef2020-12-03 13:52:19 -0600234 auto path = serialize(*e);
235 e->path(path);
Matt Spinler99c2b402019-05-23 14:29:16 -0500236
Andrew Geissler32874542020-07-09 09:17:03 -0500237 if (isQuiesceOnErrorEnabled() && isCalloutPresent(*e))
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500238 {
Andrew Geissler32874542020-07-09 09:17:03 -0500239 quiesceOnError(entryId);
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500240 }
241
Adriana Kobylake7d271a2020-12-07 14:32:44 -0600242 // Add entry before calling the extensions so that they have access to it
243 entries.insert(std::make_pair(entryId, std::move(e)));
244
245 doExtensionLogCreate(*entries.find(entryId)->second, ffdc);
Matt Spinlerc64b7122020-03-26 10:55:01 -0500246
247 // Note: No need to close the file descriptors in the FFDC.
Adriana Kobylak1db1bd32016-10-10 11:39:20 -0500248}
249
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500250bool Manager::isQuiesceOnErrorEnabled()
251{
252 std::variant<bool> property;
253
254 auto method = this->busLog.new_method_call(
255 "xyz.openbmc_project.Settings", "/xyz/openbmc_project/logging/settings",
256 "org.freedesktop.DBus.Properties", "Get");
257
258 method.append("xyz.openbmc_project.Logging.Settings", "QuiesceOnHwError");
259
260 try
261 {
262 auto reply = this->busLog.call(method);
263 reply.read(property);
264 }
265 catch (const SdBusError& e)
266 {
267 log<level::ERR>("Error reading QuiesceOnHwError property",
268 entry("ERROR=%s", e.what()));
269 throw;
270 }
271
272 return std::get<bool>(property);
273}
274
Andrew Geisslere4960ee2020-03-30 14:31:52 -0500275bool Manager::isCalloutPresent(const Entry& entry)
276{
277 for (const auto& c : entry.additionalData())
278 {
279 if (c.find("CALLOUT_") != std::string::npos)
280 {
281 return true;
282 }
283 }
284
285 return false;
286}
287
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500288void Manager::findAndRemoveResolvedBlocks()
289{
290 for (auto& entry : entries)
291 {
292 if (entry.second->resolved())
293 {
294 checkAndRemoveBlockingError(entry.first);
295 }
296 }
297}
298
299void Manager::onEntryResolve(sdbusplus::message::message& msg)
300{
301 using Interface = std::string;
302 using Property = std::string;
303 using Value = std::string;
Patrick Williams25acc6c2020-06-02 11:05:34 -0500304 using Properties = std::map<Property, std::variant<Value>>;
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500305
306 Interface interface;
307 Properties properties;
308
309 msg.read(interface, properties);
310
311 for (const auto& p : properties)
312 {
313 if (p.first == "Resolved")
314 {
315 findAndRemoveResolvedBlocks();
316 return;
317 }
318 }
319}
320
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500321void Manager::checkAndQuiesceHost()
322{
323 // First check host state
324 std::variant<std::string> property;
325
326 auto method = this->busLog.new_method_call(
327 "xyz.openbmc_project.State.Host", "/xyz/openbmc_project/state/host0",
328 "org.freedesktop.DBus.Properties", "Get");
329
330 method.append("xyz.openbmc_project.State.Host", "CurrentHostState");
331
332 try
333 {
334 auto reply = this->busLog.call(method);
335 reply.read(property);
336 }
337 catch (const SdBusError& e)
338 {
339 // Quiescing the host is a "best effort" type function. If unable to
340 // read the host state or it comes back empty, just return.
341 // The boot block object will still be created and the associations to
342 // find the log will be present. Don't want a dependency with
343 // phosphor-state-manager service
344 log<level::INFO>("Error reading QuiesceOnHwError property",
345 entry("ERROR=%s", e.what()));
346 return;
347 }
348
349 std::string hostState = std::get<std::string>(property);
350
351 // If host state is empty, do nothing
352 if (hostState.empty())
353 {
354 return;
355 }
356
357 using Host = sdbusplus::xyz::openbmc_project::State::server::Host;
358 auto state = Host::convertHostStateFromString(hostState);
359 if (state != Host::HostState::Running)
360 {
361 return;
362 }
363
364 auto quiesce = this->busLog.new_method_call(
365 "org.freedesktop.systemd1", "/org/freedesktop/systemd1",
366 "org.freedesktop.systemd1.Manager", "StartUnit");
367
368 quiesce.append("obmc-host-quiesce@0.target");
369 quiesce.append("replace");
370
371 this->busLog.call_noreply(quiesce);
372}
373
Andrew Geissler32874542020-07-09 09:17:03 -0500374void Manager::quiesceOnError(const uint32_t entryId)
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500375{
Andrew Geissler72a1cca2020-09-10 16:49:09 -0500376 // Verify we don't already have this entry blocking
377 auto it = find_if(
378 this->blockingErrors.begin(), this->blockingErrors.end(),
379 [&](std::unique_ptr<Block>& obj) { return obj->entryId == entryId; });
380 if (it != this->blockingErrors.end())
381 {
382 // Already recorded so just return
383 logging::log<logging::level::DEBUG>(
384 "QuiesceOnError set and callout present but entry already logged");
385 return;
386 }
Andrew Geisslere4960ee2020-03-30 14:31:52 -0500387
Andrew Geisslere4960ee2020-03-30 14:31:52 -0500388 logging::log<logging::level::INFO>(
389 "QuiesceOnError set and callout present");
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -0500390
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500391 auto blockPath =
Andrew Geissler32874542020-07-09 09:17:03 -0500392 std::string(OBJ_LOGGING) + "/block" + std::to_string(entryId);
393 auto blockObj = std::make_unique<Block>(this->busLog, blockPath, entryId);
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -0500394 this->blockingErrors.push_back(std::move(blockObj));
395
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500396 // Register call back if log is resolved
397 using namespace sdbusplus::bus::match::rules;
Andrew Geissler32874542020-07-09 09:17:03 -0500398 auto entryPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId);
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500399 auto callback = std::make_unique<sdbusplus::bus::match::match>(
400 this->busLog,
401 propertiesChanged(entryPath, "xyz.openbmc_project.Logging.Entry"),
402 std::bind(std::mem_fn(&Manager::onEntryResolve), this,
403 std::placeholders::_1));
404
405 propChangedEntryCallback.insert(
Andrew Geissler32874542020-07-09 09:17:03 -0500406 std::make_pair(entryId, std::move(callback)));
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500407
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500408 checkAndQuiesceHost();
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500409}
410
Matt Spinlerc64b7122020-03-26 10:55:01 -0500411void Manager::doExtensionLogCreate(const Entry& entry, const FFDCEntries& ffdc)
Matt Spinler99c2b402019-05-23 14:29:16 -0500412{
413 // Make the association <endpointpath>/<endpointtype> paths
414 std::vector<std::string> assocs;
415 for (const auto& [forwardType, reverseType, endpoint] :
416 entry.associations())
417 {
418 std::string e{endpoint};
419 e += '/' + reverseType;
420 assocs.push_back(e);
421 }
422
423 for (auto& create : Extensions::getCreateFunctions())
424 {
425 try
426 {
427 create(entry.message(), entry.id(), entry.timestamp(),
Matt Spinlerc64b7122020-03-26 10:55:01 -0500428 entry.severity(), entry.additionalData(), assocs, ffdc);
Matt Spinler99c2b402019-05-23 14:29:16 -0500429 }
430 catch (std::exception& e)
431 {
432 log<level::ERR>("An extension's create function threw an exception",
433 phosphor::logging::entry("ERROR=%s", e.what()));
434 }
435 }
436}
437
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600438void Manager::processMetadata(const std::string& errorName,
439 const std::vector<std::string>& additionalData,
440 AssociationList& objects) const
441{
442 // additionalData is a list of "metadata=value"
443 constexpr auto separator = '=';
Patrick Venture34438962018-10-30 13:17:37 -0700444 for (const auto& entryItem : additionalData)
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600445 {
Patrick Venture34438962018-10-30 13:17:37 -0700446 auto found = entryItem.find(separator);
Patrick Venturef18bf832018-10-26 18:14:00 -0700447 if (std::string::npos != found)
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600448 {
Patrick Venture34438962018-10-30 13:17:37 -0700449 auto metadata = entryItem.substr(0, found);
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600450 auto iter = meta.find(metadata);
Patrick Venturef18bf832018-10-26 18:14:00 -0700451 if (meta.end() != iter)
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600452 {
453 (iter->second)(metadata, additionalData, objects);
454 }
455 }
456 }
457}
458
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500459void Manager::checkAndRemoveBlockingError(uint32_t entryId)
460{
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500461 // First look for blocking object and remove
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500462 auto it = find_if(
463 blockingErrors.begin(), blockingErrors.end(),
464 [&](std::unique_ptr<Block>& obj) { return obj->entryId == entryId; });
465 if (it != blockingErrors.end())
466 {
467 blockingErrors.erase(it);
468 }
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500469
470 // Now remove the callback looking for the error to be resolved
471 auto resolveFind = propChangedEntryCallback.find(entryId);
472 if (resolveFind != propChangedEntryCallback.end())
473 {
474 propChangedEntryCallback.erase(resolveFind);
475 }
476
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500477 return;
478}
479
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500480void Manager::erase(uint32_t entryId)
481{
Patrick Venture34438962018-10-30 13:17:37 -0700482 auto entryFound = entries.find(entryId);
483 if (entries.end() != entryFound)
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500484 {
Matt Spinler99c2b402019-05-23 14:29:16 -0500485 for (auto& func : Extensions::getDeleteProhibitedFunctions())
486 {
487 try
488 {
489 bool prohibited = false;
490 func(entryId, prohibited);
491 if (prohibited)
492 {
493 // Future work remains to throw an error here.
494 return;
495 }
496 }
497 catch (std::exception& e)
498 {
499 log<level::ERR>(
500 "An extension's deleteProhibited function threw "
501 "an exception",
502 entry("ERROR=%s", e.what()));
503 }
504 }
505
Deepak Kodihalli33887992017-06-13 07:06:49 -0500506 // Delete the persistent representation of this error.
507 fs::path errorPath(ERRLOG_PERSIST_PATH);
Marri Devender Rao8959efc2017-11-17 00:13:41 -0600508 errorPath /= std::to_string(entryId);
Deepak Kodihalli33887992017-06-13 07:06:49 -0500509 fs::remove(errorPath);
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600510
Patrick Venturef18bf832018-10-26 18:14:00 -0700511 auto removeId = [](std::list<uint32_t>& ids, uint32_t id) {
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600512 auto it = std::find(ids.begin(), ids.end(), id);
513 if (it != ids.end())
514 {
515 ids.erase(it);
516 }
517 };
Patrick Venture34438962018-10-30 13:17:37 -0700518 if (entryFound->second->severity() >= Entry::sevLowerLimit)
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500519 {
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600520 removeId(infoErrors, entryId);
521 }
522 else
523 {
524 removeId(realErrors, entryId);
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500525 }
Patrick Venture34438962018-10-30 13:17:37 -0700526 entries.erase(entryFound);
Matt Spinler99c2b402019-05-23 14:29:16 -0500527
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500528 checkAndRemoveBlockingError(entryId);
529
Matt Spinler99c2b402019-05-23 14:29:16 -0500530 for (auto& remove : Extensions::getDeleteFunctions())
531 {
532 try
533 {
534 remove(entryId);
535 }
536 catch (std::exception& e)
537 {
538 log<level::ERR>("An extension's delete function threw an "
539 "exception",
540 entry("ERROR=%s", e.what()));
541 }
542 }
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500543 }
Marri Devender Rao8959efc2017-11-17 00:13:41 -0600544 else
545 {
546 logging::log<level::ERR>("Invalid entry ID to delete",
Patrick Venturef18bf832018-10-26 18:14:00 -0700547 logging::entry("ID=%d", entryId));
Marri Devender Rao8959efc2017-11-17 00:13:41 -0600548 }
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500549}
550
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500551void Manager::restore()
552{
Patrick Venturef18bf832018-10-26 18:14:00 -0700553 auto sanity = [](const auto& id, const auto& restoredId) {
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600554 return id == restoredId;
555 };
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500556 std::vector<uint32_t> errorIds;
557
558 fs::path dir(ERRLOG_PERSIST_PATH);
559 if (!fs::exists(dir) || fs::is_empty(dir))
560 {
561 return;
562 }
563
Patrick Venturef18bf832018-10-26 18:14:00 -0700564 for (auto& file : fs::directory_iterator(dir))
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500565 {
566 auto id = file.path().filename().c_str();
567 auto idNum = std::stol(id);
568 auto e = std::make_unique<Entry>(
Patrick Venturef18bf832018-10-26 18:14:00 -0700569 busLog, std::string(OBJ_ENTRY) + '/' + id, idNum, *this);
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500570 if (deserialize(file.path(), *e))
571 {
Patrick Venturef18bf832018-10-26 18:14:00 -0700572 // validate the restored error entry id
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600573 if (sanity(static_cast<uint32_t>(idNum), e->id()))
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500574 {
Adriana Kobylak1ff95ef2020-12-03 13:52:19 -0600575 e->path(file.path());
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600576 e->emit_object_added();
577 if (e->severity() >= Entry::sevLowerLimit)
578 {
579 infoErrors.push_back(idNum);
580 }
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600581 else
582 {
583 realErrors.push_back(idNum);
584 }
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600585
586 entries.insert(std::make_pair(idNum, std::move(e)));
587 errorIds.push_back(idNum);
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500588 }
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600589 else
590 {
591 logging::log<logging::level::ERR>(
592 "Failed in sanity check while restoring error entry. "
593 "Ignoring error entry",
594 logging::entry("ID_NUM=%d", idNum),
595 logging::entry("ENTRY_ID=%d", e->id()));
596 }
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500597 }
598 }
599
Vishwanatha Subbanna37af9ba2017-09-28 16:33:53 +0530600 if (!errorIds.empty())
601 {
602 entryId = *(std::max_element(errorIds.begin(), errorIds.end()));
603 }
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500604}
605
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500606void Manager::journalSync()
607{
608 bool syncRequested = false;
609 auto fd = -1;
610 auto rc = -1;
611 auto wd = -1;
612 auto bus = sdbusplus::bus::new_default();
613
614 auto start =
615 duration_cast<microseconds>(steady_clock::now().time_since_epoch())
616 .count();
617
Matthew Barth59913892019-08-27 15:43:48 -0500618 // Each time an error log is committed, a request to sync the journal
619 // must occur and block that error log commit until it completes. A 5sec
620 // block is done to allow sufficient time for the journal to be synced.
621 //
622 // Number of loop iterations = 3 for the following reasons:
623 // Iteration #1: Requests a journal sync by killing the journald service.
624 // Iteration #2: Setup an inotify watch to monitor the synced file that
625 // journald updates with the timestamp the last time the
626 // journal was flushed.
627 // Iteration #3: Poll to wait until inotify reports an event which blocks
628 // the error log from being commited until the sync completes.
629 constexpr auto maxRetry = 3;
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500630 for (int i = 0; i < maxRetry; i++)
631 {
632 // Read timestamp from synced file
633 constexpr auto syncedPath = "/run/systemd/journal/synced";
634 std::ifstream syncedFile(syncedPath);
635 if (syncedFile.fail())
636 {
Adriana Kobylak7d111a82018-09-04 10:14:24 -0500637 // If the synced file doesn't exist, a sync request will create it.
638 if (errno != ENOENT)
639 {
640 log<level::ERR>("Failed to open journal synced file",
641 entry("FILENAME=%s", syncedPath),
642 entry("ERRNO=%d", errno));
643 return;
644 }
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500645 }
Adriana Kobylak7d111a82018-09-04 10:14:24 -0500646 else
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500647 {
Adriana Kobylak7d111a82018-09-04 10:14:24 -0500648 // Only read the synced file if it exists.
649 // See if a sync happened by now
650 std::string timestampStr;
651 std::getline(syncedFile, timestampStr);
Patrick Venture30047bf2018-11-01 18:52:15 -0700652 auto timestamp = std::stoll(timestampStr);
Adriana Kobylak7d111a82018-09-04 10:14:24 -0500653 if (timestamp >= start)
654 {
Troy Leeb7f392a2019-11-19 14:34:56 +0800655 break;
Adriana Kobylak7d111a82018-09-04 10:14:24 -0500656 }
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500657 }
658
659 // Let's ask for a sync, but only once
660 if (!syncRequested)
661 {
662 syncRequested = true;
663
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500664 constexpr auto JOURNAL_UNIT = "systemd-journald.service";
665 auto signal = SIGRTMIN + 1;
666
667 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
668 SYSTEMD_INTERFACE, "KillUnit");
669 method.append(JOURNAL_UNIT, "main", signal);
670 bus.call(method);
671 if (method.is_method_error())
672 {
673 log<level::ERR>("Failed to kill journal service");
Troy Leeb7f392a2019-11-19 14:34:56 +0800674 break;
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500675 }
676 continue;
677 }
678
679 // Let's install the inotify watch, if we didn't do that yet. This watch
680 // monitors the syncedFile for when journald updates it with a newer
681 // timestamp. This means the journal has been flushed.
682 if (fd < 0)
683 {
684 fd = inotify_init1(IN_NONBLOCK | IN_CLOEXEC);
685 if (fd < 0)
686 {
687 log<level::ERR>("Failed to create inotify watch",
688 entry("ERRNO=%d", errno));
689 return;
690 }
691
692 constexpr auto JOURNAL_RUN_PATH = "/run/systemd/journal";
693 wd = inotify_add_watch(fd, JOURNAL_RUN_PATH,
694 IN_MOVED_TO | IN_DONT_FOLLOW | IN_ONLYDIR);
695 if (wd < 0)
696 {
697 log<level::ERR>("Failed to watch journal directory",
698 entry("PATH=%s", JOURNAL_RUN_PATH),
699 entry("ERRNO=%d", errno));
700 close(fd);
701 return;
702 }
703 continue;
704 }
705
706 // Let's wait until inotify reports an event
707 struct pollfd fds = {
708 .fd = fd,
709 .events = POLLIN,
710 };
711 constexpr auto pollTimeout = 5; // 5 seconds
712 rc = poll(&fds, 1, pollTimeout * 1000);
713 if (rc < 0)
714 {
715 log<level::ERR>("Failed to add event", entry("ERRNO=%d", errno),
716 entry("ERR=%s", strerror(-rc)));
717 inotify_rm_watch(fd, wd);
718 close(fd);
719 return;
720 }
721 else if (rc == 0)
722 {
723 log<level::INFO>("Poll timeout, no new journal synced data",
724 entry("TIMEOUT=%d", pollTimeout));
725 break;
726 }
727
728 // Read from the specified file descriptor until there is no new data,
729 // throwing away everything read since the timestamp will be read at the
730 // beginning of the loop.
731 constexpr auto maxBytes = 64;
732 uint8_t buffer[maxBytes];
733 while (read(fd, buffer, maxBytes) > 0)
734 ;
735 }
736
Adriana Kobylak4a029f22018-05-23 12:58:19 -0500737 if (fd != -1)
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500738 {
Adriana Kobylak4a029f22018-05-23 12:58:19 -0500739 if (wd != -1)
740 {
741 inotify_rm_watch(fd, wd);
742 }
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500743 close(fd);
744 }
745
746 return;
747}
748
Matt Spinler1275bd12018-05-01 15:13:53 -0500749std::string Manager::readFWVersion()
750{
Matt Spinlerf61f2922020-06-23 11:32:49 -0500751 auto version = util::getOSReleaseValue("VERSION_ID");
Matt Spinler1275bd12018-05-01 15:13:53 -0500752
Matt Spinlerf61f2922020-06-23 11:32:49 -0500753 if (!version)
Matt Spinler1275bd12018-05-01 15:13:53 -0500754 {
755 log<level::ERR>("Unable to read BMC firmware version");
756 }
757
Matt Spinlerf61f2922020-06-23 11:32:49 -0500758 return version.value_or("");
Matt Spinler1275bd12018-05-01 15:13:53 -0500759}
760
Matt Spinler3fb83b32019-07-26 11:22:44 -0500761void Manager::create(const std::string& message, Entry::Level severity,
762 const std::map<std::string, std::string>& additionalData)
763{
764 // Convert the map into a vector of "key=value" strings
765 std::vector<std::string> ad;
766 metadata::associations::combine(additionalData, ad);
767
768 createEntry(message, severity, ad);
769}
770
Matt Spinlerc64b7122020-03-26 10:55:01 -0500771void Manager::createWithFFDC(
772 const std::string& message, Entry::Level severity,
773 const std::map<std::string, std::string>& additionalData,
774 const FFDCEntries& ffdc)
775{
776 // Convert the map into a vector of "key=value" strings
777 std::vector<std::string> ad;
778 metadata::associations::combine(additionalData, ad);
779
780 createEntry(message, severity, ad, ffdc);
781}
782
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500783} // namespace internal
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600784} // namespace logging
Patrick Venturef18bf832018-10-26 18:14:00 -0700785} // namespace phosphor