blob: 0992160435e7fa3fd48e4ff76c54b3d8dbb91ffc [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"
Patrick Williamsfa2d9622024-09-30 16:25:43 -04009#include "paths.hpp"
Matt Spinlerf61f2922020-06-23 11:32:49 -050010#include "util.hpp"
Patrick Venturef18bf832018-10-26 18:14:00 -070011
Adriana Kobylak1db1bd32016-10-10 11:39:20 -050012#include <systemd/sd-bus.h>
Adriana Kobylakd311bc82016-10-16 09:54:40 -050013#include <systemd/sd-journal.h>
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050014#include <unistd.h>
Patrick Venturef18bf832018-10-26 18:14:00 -070015
Patrick Williams2544b412022-10-04 08:41:06 -050016#include <phosphor-logging/lg2.hpp>
17#include <sdbusplus/vtable.hpp>
18#include <xyz/openbmc_project/State/Host/server.hpp>
19
Matt Spinler99c2b402019-05-23 14:29:16 -050020#include <cassert>
Patrick Venturef18bf832018-10-26 18:14:00 -070021#include <chrono>
22#include <cstdio>
Patrick Venture30047bf2018-11-01 18:52:15 -070023#include <cstring>
Patrick Venturef18bf832018-10-26 18:14:00 -070024#include <fstream>
Patrick Venture30047bf2018-11-01 18:52:15 -070025#include <functional>
Patrick Venturef18bf832018-10-26 18:14:00 -070026#include <future>
27#include <iostream>
Patrick Venture30047bf2018-11-01 18:52:15 -070028#include <map>
Patrick Venturef18bf832018-10-26 18:14:00 -070029#include <set>
30#include <string>
Patrick Williamsb01a5b42021-08-28 15:11:45 -050031#include <string_view>
Patrick Venturef18bf832018-10-26 18:14:00 -070032#include <vector>
Deepak Kodihallia87c1572017-02-28 07:40:34 -060033
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050034using namespace std::chrono;
Patrick Williams5f285c52021-07-27 21:25:38 -050035extern const std::map<
36 phosphor::logging::metadata::Metadata,
37 std::function<phosphor::logging::metadata::associations::Type>>
Patrick Venturef18bf832018-10-26 18:14:00 -070038 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
Lei YUb50c7052021-01-21 16:02:26 +080069uint32_t Manager::commit(uint64_t transactionId, std::string errMsg)
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050070{
71 auto level = getLevel(errMsg);
72 _commit(transactionId, std::move(errMsg), level);
Lei YUb50c7052021-01-21 16:02:26 +080073 return entryId;
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050074}
75
Lei YUb50c7052021-01-21 16:02:26 +080076uint32_t Manager::commitWithLvl(uint64_t transactionId, std::string errMsg,
77 uint32_t errLvl)
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050078{
79 _commit(transactionId, std::move(errMsg),
80 static_cast<Entry::Level>(errLvl));
Lei YUb50c7052021-01-21 16:02:26 +080081 return entryId;
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050082}
83
Patrick Williamsa5171972021-04-16 20:10:01 -050084void Manager::_commit(uint64_t transactionId [[maybe_unused]],
85 std::string&& errMsg, Entry::Level errLvl)
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050086{
Patrick Williamsa5171972021-04-16 20:10:01 -050087 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 IIIb6b25572021-05-19 17:09:41 -070092 if (!IS_UNIT_TEST)
Adriana Kobylakd311bc82016-10-16 09:54:40 -050093 {
Patrick Williamsb01a5b42021-08-28 15:11:45 -050094 static constexpr auto transactionIdVar =
95 std::string_view{"TRANSACTION_ID"};
William A. Kennington IIIb6b25572021-05-19 17:09:41 -070096 // Length of 'TRANSACTION_ID' string.
Patrick Williamsb01a5b42021-08-28 15:11:45 -050097 static constexpr auto transactionIdVarSize = transactionIdVar.size();
William A. Kennington IIIb6b25572021-05-19 17:09:41 -070098 // Length of 'TRANSACTION_ID=' string.
Patrick Williamsb01a5b42021-08-28 15:11:45 -050099 static constexpr auto transactionIdVarOffset = transactionIdVarSize + 1;
Adriana Kobylakd311bc82016-10-16 09:54:40 -0500100
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700101 // Flush all the pending log messages into the journal
Matt Spinler271d1432023-01-18 13:58:05 -0600102 util::journalSync();
Adriana Kobylak7298dc22017-01-24 12:21:50 -0600103
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700104 sd_journal* j = nullptr;
105 int rc = sd_journal_open(&j, SD_JOURNAL_LOCAL_ONLY);
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600106 if (rc < 0)
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600107 {
Patrick Williams5f285c52021-07-27 21:25:38 -0500108 lg2::error("Failed to open journal: {ERROR}", "ERROR",
109 strerror(-rc));
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700110 return;
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600111 }
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600112
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700113 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 Kobylakfbe88722017-02-22 16:49:59 -0600117 {
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700118 metalist.insert(metamap->second.begin(), metamap->second.end());
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600119 }
120
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700121 // 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 Kobylakfbe88722017-02-22 16:49:59 -0600128 {
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700129 const char* data = nullptr;
130 size_t length = 0;
131
132 // Look for the transaction id metadata variable
Patrick Williamsb01a5b42021-08-28 15:11:45 -0500133 rc = sd_journal_get_data(j, transactionIdVar.data(),
134 (const void**)&data, &length);
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600135 if (rc < 0)
136 {
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700137 // This journal entry does not have the TRANSACTION_ID
138 // metadata variable.
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600139 continue;
140 }
141
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700142 // 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 Kobylak9aa7d782017-02-18 09:20:49 -0600159
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700160 // 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 Kobylakd311bc82016-10-16 09:54:40 -0500172
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700173 // 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 Williams5f285c52021-07-27 21:25:38 -0500188 lg2::info("Failed to find metadata: {META_FIELD}", "META_FIELD",
189 metaVarStr);
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700190 }
191 }
192
193 sd_journal_close(j);
194 }
Matt Spinlerb60e7552019-07-24 15:28:08 -0500195 createEntry(errMsg, errLvl, additionalData);
196}
197
198void Manager::createEntry(std::string errMsg, Entry::Level errLvl,
Matt Spinlerc64b7122020-03-26 10:55:01 -0500199 std::vector<std::string> additionalData,
200 const FFDCEntries& ffdc)
Matt Spinlerb60e7552019-07-24 15:28:08 -0500201{
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 Kobylak4ea7f312017-01-10 12:52:34 -0600220 entryId++;
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -0500221 if (errLvl >= Entry::sevLowerLimit)
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500222 {
223 infoErrors.push_back(entryId);
224 }
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600225 else
226 {
227 realErrors.push_back(entryId);
228 }
Adriana Kobylakc5f0bbd2017-01-22 14:56:04 -0600229 auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(
Patrick Venturef18bf832018-10-26 18:14:00 -0700230 std::chrono::system_clock::now().time_since_epoch())
231 .count();
232 auto objPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId);
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600233
Patrick Venturef18bf832018-10-26 18:14:00 -0700234 AssociationList objects{};
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600235 processMetadata(errMsg, additionalData, objects);
236
Matt Spinlerfb978da2022-01-21 08:42:24 -0600237 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 Spinler99c2b402019-05-23 14:29:16 -0500244
Matt Spinler601b8112022-01-26 13:18:04 -0600245 if (isQuiesceOnErrorEnabled() && (errLvl < Entry::sevLowerLimit) &&
246 isCalloutPresent(*e))
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500247 {
Andrew Geissler32874542020-07-09 09:17:03 -0500248 quiesceOnError(entryId);
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500249 }
250
Adriana Kobylake7d271a2020-12-07 14:32:44 -0600251 // 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 Spinlerc64b7122020-03-26 10:55:01 -0500255
256 // Note: No need to close the file descriptors in the FFDC.
Adriana Kobylak1db1bd32016-10-10 11:39:20 -0500257}
258
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500259bool Manager::isQuiesceOnErrorEnabled()
260{
Patrick Williamsa5171972021-04-16 20:10:01 -0500261 // When running under tests, the Logging.Settings service will not be
262 // present. Assume false.
William A. Kennington IIIb6b25572021-05-19 17:09:41 -0700263 if (IS_UNIT_TEST)
264 {
265 return false;
266 }
Patrick Williamsa5171972021-04-16 20:10:01 -0500267
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500268 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 Williams45e83522022-07-22 19:26:52 -0500281 catch (const sdbusplus::exception_t& e)
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500282 {
Patrick Williams5f285c52021-07-27 21:25:38 -0500283 lg2::error("Error reading QuiesceOnHwError property: {ERROR}", "ERROR",
284 e);
Matt Spinler7ba17c32023-06-12 09:20:15 -0500285 return false;
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500286 }
287
288 return std::get<bool>(property);
289}
290
Andrew Geisslere4960ee2020-03-30 14:31:52 -0500291bool 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 Geissler7f6d4bc2020-04-16 14:47:34 -0500304void Manager::findAndRemoveResolvedBlocks()
305{
306 for (auto& entry : entries)
307 {
308 if (entry.second->resolved())
309 {
310 checkAndRemoveBlockingError(entry.first);
311 }
312 }
313}
314
Patrick Williams45e83522022-07-22 19:26:52 -0500315void Manager::onEntryResolve(sdbusplus::message_t& msg)
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500316{
317 using Interface = std::string;
318 using Property = std::string;
319 using Value = std::string;
Patrick Williams25acc6c2020-06-02 11:05:34 -0500320 using Properties = std::map<Property, std::variant<Value>>;
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500321
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 Geisslerf6126a72020-05-08 10:41:09 -0500337void Manager::checkAndQuiesceHost()
338{
Willy Tu6ddbf692023-09-05 10:54:16 -0700339 using Host = sdbusplus::server::xyz::openbmc_project::state::Host;
Patrick Williamsa144a272021-07-16 17:03:55 -0500340
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500341 // First check host state
Patrick Williamsa144a272021-07-16 17:03:55 -0500342 std::variant<Host::HostState> property;
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500343
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 Williams45e83522022-07-22 19:26:52 -0500355 catch (const sdbusplus::exception_t& e)
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500356 {
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 Williams5f285c52021-07-27 21:25:38 -0500362 lg2::info("Error reading QuiesceOnHwError property: {ERROR}", "ERROR",
363 e);
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500364 return;
365 }
366
Patrick Williamsa144a272021-07-16 17:03:55 -0500367 auto hostState = std::get<Host::HostState>(property);
368 if (hostState != Host::HostState::Running)
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500369 {
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
Andrew Geissler86a60e92022-04-15 14:36:02 -0500377 quiesce.append("obmc-host-graceful-quiesce@0.target");
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500378 quiesce.append("replace");
379
380 this->busLog.call_noreply(quiesce);
381}
382
Andrew Geissler32874542020-07-09 09:17:03 -0500383void Manager::quiesceOnError(const uint32_t entryId)
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500384{
Andrew Geissler72a1cca2020-09-10 16:49:09 -0500385 // Verify we don't already have this entry blocking
Matt Spinler4a375952022-07-01 11:15:33 -0500386 auto it = find_if(this->blockingErrors.begin(), this->blockingErrors.end(),
387 [&](const std::unique_ptr<Block>& obj) {
Patrick Williams075c7922024-08-16 15:19:49 -0400388 return obj->entryId == entryId;
389 });
Andrew Geissler72a1cca2020-09-10 16:49:09 -0500390 if (it != this->blockingErrors.end())
391 {
392 // Already recorded so just return
Patrick Williams5f285c52021-07-27 21:25:38 -0500393 lg2::debug(
Andrew Geissler72a1cca2020-09-10 16:49:09 -0500394 "QuiesceOnError set and callout present but entry already logged");
395 return;
396 }
Andrew Geisslere4960ee2020-03-30 14:31:52 -0500397
Patrick Williams5f285c52021-07-27 21:25:38 -0500398 lg2::info("QuiesceOnError set and callout present");
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -0500399
Patrick Williams075c7922024-08-16 15:19:49 -0400400 auto blockPath =
401 std::string(OBJ_LOGGING) + "/block" + std::to_string(entryId);
Andrew Geissler32874542020-07-09 09:17:03 -0500402 auto blockObj = std::make_unique<Block>(this->busLog, blockPath, entryId);
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -0500403 this->blockingErrors.push_back(std::move(blockObj));
404
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500405 // Register call back if log is resolved
406 using namespace sdbusplus::bus::match::rules;
Andrew Geissler32874542020-07-09 09:17:03 -0500407 auto entryPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId);
Patrick Williams45e83522022-07-22 19:26:52 -0500408 auto callback = std::make_unique<sdbusplus::bus::match_t>(
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500409 this->busLog,
410 propertiesChanged(entryPath, "xyz.openbmc_project.Logging.Entry"),
411 std::bind(std::mem_fn(&Manager::onEntryResolve), this,
412 std::placeholders::_1));
413
414 propChangedEntryCallback.insert(
Andrew Geissler32874542020-07-09 09:17:03 -0500415 std::make_pair(entryId, std::move(callback)));
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500416
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500417 checkAndQuiesceHost();
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500418}
419
Matt Spinlerc64b7122020-03-26 10:55:01 -0500420void Manager::doExtensionLogCreate(const Entry& entry, const FFDCEntries& ffdc)
Matt Spinler99c2b402019-05-23 14:29:16 -0500421{
422 // Make the association <endpointpath>/<endpointtype> paths
423 std::vector<std::string> assocs;
424 for (const auto& [forwardType, reverseType, endpoint] :
425 entry.associations())
426 {
427 std::string e{endpoint};
428 e += '/' + reverseType;
429 assocs.push_back(e);
430 }
431
432 for (auto& create : Extensions::getCreateFunctions())
433 {
434 try
435 {
436 create(entry.message(), entry.id(), entry.timestamp(),
Matt Spinlerc64b7122020-03-26 10:55:01 -0500437 entry.severity(), entry.additionalData(), assocs, ffdc);
Matt Spinler99c2b402019-05-23 14:29:16 -0500438 }
Patrick Williams66491c62021-10-06 12:23:37 -0500439 catch (const std::exception& e)
Matt Spinler99c2b402019-05-23 14:29:16 -0500440 {
Patrick Williams5f285c52021-07-27 21:25:38 -0500441 lg2::error(
442 "An extension's create function threw an exception: {ERROR}",
443 "ERROR", e);
Matt Spinler99c2b402019-05-23 14:29:16 -0500444 }
445 }
446}
447
Patrick Williamsf40323d2021-04-16 15:35:17 -0500448void Manager::processMetadata(const std::string& /*errorName*/,
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600449 const std::vector<std::string>& additionalData,
450 AssociationList& objects) const
451{
452 // additionalData is a list of "metadata=value"
453 constexpr auto separator = '=';
Patrick Venture34438962018-10-30 13:17:37 -0700454 for (const auto& entryItem : additionalData)
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600455 {
Patrick Venture34438962018-10-30 13:17:37 -0700456 auto found = entryItem.find(separator);
Patrick Venturef18bf832018-10-26 18:14:00 -0700457 if (std::string::npos != found)
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600458 {
Patrick Venture34438962018-10-30 13:17:37 -0700459 auto metadata = entryItem.substr(0, found);
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600460 auto iter = meta.find(metadata);
Patrick Venturef18bf832018-10-26 18:14:00 -0700461 if (meta.end() != iter)
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600462 {
463 (iter->second)(metadata, additionalData, objects);
464 }
465 }
466 }
467}
468
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500469void Manager::checkAndRemoveBlockingError(uint32_t entryId)
470{
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500471 // First look for blocking object and remove
Matt Spinler4a375952022-07-01 11:15:33 -0500472 auto it = find_if(blockingErrors.begin(), blockingErrors.end(),
473 [&](const std::unique_ptr<Block>& obj) {
Patrick Williams075c7922024-08-16 15:19:49 -0400474 return obj->entryId == entryId;
475 });
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500476 if (it != blockingErrors.end())
477 {
478 blockingErrors.erase(it);
479 }
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500480
481 // Now remove the callback looking for the error to be resolved
482 auto resolveFind = propChangedEntryCallback.find(entryId);
483 if (resolveFind != propChangedEntryCallback.end())
484 {
485 propChangedEntryCallback.erase(resolveFind);
486 }
487
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500488 return;
489}
490
harsh-agarwal1d763db32024-09-03 09:18:50 -0500491size_t Manager::eraseAll()
492{
493 std::vector<uint32_t> logIDWithHwIsolation;
494 for (auto& func : Extensions::getLogIDWithHwIsolationFunctions())
495 {
496 try
497 {
498 func(logIDWithHwIsolation);
499 }
500 catch (const std::exception& e)
501 {
502 lg2::error("An extension's LogIDWithHwIsolation function threw an "
503 "exception: {ERROR}",
504 "ERROR", e);
505 }
506 }
507 size_t entriesSize = entries.size();
508 auto iter = entries.begin();
509 if (logIDWithHwIsolation.empty())
510 {
511 while (iter != entries.end())
512 {
513 auto e = iter->first;
514 ++iter;
515 erase(e);
516 }
517 entryId = 0;
518 }
519 else
520 {
521 while (iter != entries.end())
522 {
523 auto e = iter->first;
524 ++iter;
525 try
526 {
527 if (!std::ranges::contains(logIDWithHwIsolation, e))
528 {
529 erase(e);
530 }
531 else
532 {
533 entriesSize--;
534 }
535 }
536 catch (const sdbusplus::xyz::openbmc_project::Common::Error::
537 Unavailable& e)
538 {
539 entriesSize--;
540 }
541 }
542 if (!entries.empty())
543 {
544 entryId = std::ranges::max_element(entries, [](const auto& a,
545 const auto& b) {
546 return a.first < b.first;
547 })->first;
548 }
549 else
550 {
551 entryId = 0;
552 }
553 }
554 return entriesSize;
555}
556
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500557void Manager::erase(uint32_t entryId)
558{
Patrick Venture34438962018-10-30 13:17:37 -0700559 auto entryFound = entries.find(entryId);
560 if (entries.end() != entryFound)
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500561 {
Matt Spinler99c2b402019-05-23 14:29:16 -0500562 for (auto& func : Extensions::getDeleteProhibitedFunctions())
563 {
564 try
565 {
566 bool prohibited = false;
567 func(entryId, prohibited);
568 if (prohibited)
569 {
harsh-agarwal1d763db32024-09-03 09:18:50 -0500570 throw sdbusplus::xyz::openbmc_project::Common::Error::
571 Unavailable();
Matt Spinler99c2b402019-05-23 14:29:16 -0500572 }
573 }
harsh-agarwal1d763db32024-09-03 09:18:50 -0500574 catch (const sdbusplus::xyz::openbmc_project::Common::Error::
575 Unavailable& e)
576 {
577 throw;
578 }
Patrick Williams66491c62021-10-06 12:23:37 -0500579 catch (const std::exception& e)
Matt Spinler99c2b402019-05-23 14:29:16 -0500580 {
Patrick Williams5f285c52021-07-27 21:25:38 -0500581 lg2::error("An extension's deleteProhibited function threw an "
582 "exception: {ERROR}",
583 "ERROR", e);
Matt Spinler99c2b402019-05-23 14:29:16 -0500584 }
585 }
586
Deepak Kodihalli33887992017-06-13 07:06:49 -0500587 // Delete the persistent representation of this error.
Patrick Williamsfa2d9622024-09-30 16:25:43 -0400588 fs::path errorPath(paths::error());
Marri Devender Rao8959efc2017-11-17 00:13:41 -0600589 errorPath /= std::to_string(entryId);
Deepak Kodihalli33887992017-06-13 07:06:49 -0500590 fs::remove(errorPath);
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600591
Patrick Venturef18bf832018-10-26 18:14:00 -0700592 auto removeId = [](std::list<uint32_t>& ids, uint32_t id) {
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600593 auto it = std::find(ids.begin(), ids.end(), id);
594 if (it != ids.end())
595 {
596 ids.erase(it);
597 }
598 };
Patrick Venture34438962018-10-30 13:17:37 -0700599 if (entryFound->second->severity() >= Entry::sevLowerLimit)
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500600 {
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600601 removeId(infoErrors, entryId);
602 }
603 else
604 {
605 removeId(realErrors, entryId);
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500606 }
Patrick Venture34438962018-10-30 13:17:37 -0700607 entries.erase(entryFound);
Matt Spinler99c2b402019-05-23 14:29:16 -0500608
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500609 checkAndRemoveBlockingError(entryId);
610
Matt Spinler99c2b402019-05-23 14:29:16 -0500611 for (auto& remove : Extensions::getDeleteFunctions())
612 {
613 try
614 {
615 remove(entryId);
616 }
Patrick Williams66491c62021-10-06 12:23:37 -0500617 catch (const std::exception& e)
Matt Spinler99c2b402019-05-23 14:29:16 -0500618 {
Patrick Williams5f285c52021-07-27 21:25:38 -0500619 lg2::error("An extension's delete function threw an exception: "
620 "{ERROR}",
621 "ERROR", e);
Matt Spinler99c2b402019-05-23 14:29:16 -0500622 }
623 }
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500624 }
Marri Devender Rao8959efc2017-11-17 00:13:41 -0600625 else
626 {
Patrick Williams5f285c52021-07-27 21:25:38 -0500627 lg2::error("Invalid entry ID ({ID}) to delete", "ID", entryId);
Marri Devender Rao8959efc2017-11-17 00:13:41 -0600628 }
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500629}
630
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500631void Manager::restore()
632{
Patrick Venturef18bf832018-10-26 18:14:00 -0700633 auto sanity = [](const auto& id, const auto& restoredId) {
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600634 return id == restoredId;
635 };
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500636
Patrick Williamsfa2d9622024-09-30 16:25:43 -0400637 fs::path dir(paths::error());
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500638 if (!fs::exists(dir) || fs::is_empty(dir))
639 {
640 return;
641 }
642
Patrick Venturef18bf832018-10-26 18:14:00 -0700643 for (auto& file : fs::directory_iterator(dir))
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500644 {
645 auto id = file.path().filename().c_str();
646 auto idNum = std::stol(id);
647 auto e = std::make_unique<Entry>(
Patrick Venturef18bf832018-10-26 18:14:00 -0700648 busLog, std::string(OBJ_ENTRY) + '/' + id, idNum, *this);
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500649 if (deserialize(file.path(), *e))
650 {
Patrick Venturef18bf832018-10-26 18:14:00 -0700651 // validate the restored error entry id
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600652 if (sanity(static_cast<uint32_t>(idNum), e->id()))
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500653 {
Matt Spinleref952af2021-08-19 10:23:05 -0500654 e->path(file.path(), true);
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600655 if (e->severity() >= Entry::sevLowerLimit)
656 {
657 infoErrors.push_back(idNum);
658 }
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600659 else
660 {
661 realErrors.push_back(idNum);
662 }
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600663
664 entries.insert(std::make_pair(idNum, std::move(e)));
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500665 }
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600666 else
667 {
Patrick Williams5f285c52021-07-27 21:25:38 -0500668 lg2::error(
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600669 "Failed in sanity check while restoring error entry. "
Patrick Williams5f285c52021-07-27 21:25:38 -0500670 "Ignoring error entry {ID_NUM}/{ENTRY_ID}.",
671 "ID_NUM", idNum, "ENTRY_ID", e->id());
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600672 }
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500673 }
674 }
675
Lei YU01bf5c42022-05-23 15:33:23 +0800676 if (!entries.empty())
Vishwanatha Subbanna37af9ba2017-09-28 16:33:53 +0530677 {
Lei YU01bf5c42022-05-23 15:33:23 +0800678 entryId = entries.rbegin()->first;
Vishwanatha Subbanna37af9ba2017-09-28 16:33:53 +0530679 }
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500680}
681
Matt Spinler1275bd12018-05-01 15:13:53 -0500682std::string Manager::readFWVersion()
683{
Matt Spinlerf61f2922020-06-23 11:32:49 -0500684 auto version = util::getOSReleaseValue("VERSION_ID");
Matt Spinler1275bd12018-05-01 15:13:53 -0500685
Matt Spinlerf61f2922020-06-23 11:32:49 -0500686 if (!version)
Matt Spinler1275bd12018-05-01 15:13:53 -0500687 {
Patrick Williams5f285c52021-07-27 21:25:38 -0500688 lg2::error("Unable to read BMC firmware version");
Matt Spinler1275bd12018-05-01 15:13:53 -0500689 }
690
Matt Spinlerf61f2922020-06-23 11:32:49 -0500691 return version.value_or("");
Matt Spinler1275bd12018-05-01 15:13:53 -0500692}
693
Matt Spinler3fb83b32019-07-26 11:22:44 -0500694void Manager::create(const std::string& message, Entry::Level severity,
Paul Fertser221b79b2024-03-04 15:40:23 +0000695 const std::map<std::string, std::string>& additionalData,
696 const FFDCEntries& ffdc)
Matt Spinlerc64b7122020-03-26 10:55:01 -0500697{
698 // Convert the map into a vector of "key=value" strings
699 std::vector<std::string> ad;
700 metadata::associations::combine(additionalData, ad);
701
702 createEntry(message, severity, ad, ffdc);
703}
704
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500705} // namespace internal
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600706} // namespace logging
Patrick Venturef18bf832018-10-26 18:14:00 -0700707} // namespace phosphor