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"
8 #include "extensions.hpp"
9 #include "paths.hpp"
10 #include "util.hpp"
11 
12 #include <systemd/sd-bus.h>
13 #include <systemd/sd-journal.h>
14 #include <unistd.h>
15 
16 #include <phosphor-logging/lg2.hpp>
17 #include <sdbusplus/vtable.hpp>
18 #include <xyz/openbmc_project/State/Host/server.hpp>
19 
20 #include <cassert>
21 #include <chrono>
22 #include <cstdio>
23 #include <cstring>
24 #include <fstream>
25 #include <functional>
26 #include <future>
27 #include <iostream>
28 #include <map>
29 #include <set>
30 #include <string>
31 #include <string_view>
32 #include <vector>
33 
34 using namespace std::chrono;
35 extern const std::map<
36     phosphor::logging::metadata::Metadata,
37     std::function<phosphor::logging::metadata::associations::Type>>
38     meta;
39 
40 namespace phosphor
41 {
42 namespace logging
43 {
44 namespace internal
45 {
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);
51     if (levelmap != g_errLevelMap.end())
52     {
53         reqLevel = static_cast<Entry::Level>(levelmap->second);
54     }
55 
56     return reqLevel;
57 }
58 
59 int Manager::getRealErrSize()
60 {
61     return realErrors.size();
62 }
63 
64 int Manager::getInfoErrSize()
65 {
66     return infoErrors.size();
67 }
68 
69 uint32_t Manager::commit(uint64_t transactionId, std::string errMsg)
70 {
71     auto level = getLevel(errMsg);
72     _commit(transactionId, std::move(errMsg), level);
73     return entryId;
74 }
75 
76 uint32_t Manager::commitWithLvl(uint64_t transactionId, std::string errMsg,
77                                 uint32_t errLvl)
78 {
79     _commit(transactionId, std::move(errMsg),
80             static_cast<Entry::Level>(errLvl));
81     return entryId;
82 }
83 
84 void Manager::_commit(uint64_t transactionId [[maybe_unused]],
85                       std::string&& errMsg, Entry::Level errLvl)
86 {
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.
92     if (!IS_UNIT_TEST)
93     {
94         static constexpr auto transactionIdVar =
95             std::string_view{"TRANSACTION_ID"};
96         // Length of 'TRANSACTION_ID' string.
97         static constexpr auto transactionIdVarSize = transactionIdVar.size();
98         // Length of 'TRANSACTION_ID=' string.
99         static constexpr auto transactionIdVarOffset = transactionIdVarSize + 1;
100 
101         // Flush all the pending log messages into the journal
102         util::journalSync();
103 
104         sd_journal* j = nullptr;
105         int rc = sd_journal_open(&j, SD_JOURNAL_LOCAL_ONLY);
106         if (rc < 0)
107         {
108             lg2::error("Failed to open journal: {ERROR}", "ERROR",
109                        strerror(-rc));
110             return;
111         }
112 
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())
117         {
118             metalist.insert(metamap->second.begin(), metamap->second.end());
119         }
120 
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)
128         {
129             const char* data = nullptr;
130             size_t length = 0;
131 
132             // Look for the transaction id metadata variable
133             rc = sd_journal_get_data(j, transactionIdVar.data(),
134                                      (const void**)&data, &length);
135             if (rc < 0)
136             {
137                 // This journal entry does not have the TRANSACTION_ID
138                 // metadata variable.
139                 continue;
140             }
141 
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             }
159 
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                 }
172 
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             {
188                 lg2::info("Failed to find metadata: {META_FIELD}", "META_FIELD",
189                           metaVarStr);
190             }
191         }
192 
193         sd_journal_close(j);
194     }
195     createEntry(errMsg, errLvl, additionalData);
196 }
197 
198 void Manager::createEntry(std::string errMsg, Entry::Level errLvl,
199                           std::vector<std::string> additionalData,
200                           const FFDCEntries& ffdc)
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 
220     entryId++;
221     if (errLvl >= Entry::sevLowerLimit)
222     {
223         infoErrors.push_back(entryId);
224     }
225     else
226     {
227         realErrors.push_back(entryId);
228     }
229     auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(
230                   std::chrono::system_clock::now().time_since_epoch())
231                   .count();
232     auto objPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId);
233 
234     AssociationList objects{};
235     processMetadata(errMsg, additionalData, objects);
236 
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);
244 
245     if (isQuiesceOnErrorEnabled() && (errLvl < Entry::sevLowerLimit) &&
246         isCalloutPresent(*e))
247     {
248         quiesceOnError(entryId);
249     }
250 
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);
255 
256     // Note: No need to close the file descriptors in the FFDC.
257 }
258 
259 bool Manager::isQuiesceOnErrorEnabled()
260 {
261     // When running under tests, the Logging.Settings service will not be
262     // present.  Assume false.
263     if (IS_UNIT_TEST)
264     {
265         return false;
266     }
267 
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     }
281     catch (const sdbusplus::exception_t& e)
282     {
283         lg2::error("Error reading QuiesceOnHwError property: {ERROR}", "ERROR",
284                    e);
285         return false;
286     }
287 
288     return std::get<bool>(property);
289 }
290 
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 
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_t& msg)
316 {
317     using Interface = std::string;
318     using Property = std::string;
319     using Value = std::string;
320     using Properties = std::map<Property, std::variant<Value>>;
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 
337 void Manager::checkAndQuiesceHost()
338 {
339     using Host = sdbusplus::server::xyz::openbmc_project::state::Host;
340 
341     // First check host state
342     std::variant<Host::HostState> property;
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     }
355     catch (const sdbusplus::exception_t& e)
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
362         lg2::info("Error reading QuiesceOnHwError property: {ERROR}", "ERROR",
363                   e);
364         return;
365     }
366 
367     auto hostState = std::get<Host::HostState>(property);
368     if (hostState != Host::HostState::Running)
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-graceful-quiesce@0.target");
378     quiesce.append("replace");
379 
380     this->busLog.call_noreply(quiesce);
381 }
382 
383 void Manager::quiesceOnError(const uint32_t entryId)
384 {
385     // Verify we don't already have this entry blocking
386     auto it = find_if(this->blockingErrors.begin(), this->blockingErrors.end(),
387                       [&](const std::unique_ptr<Block>& obj) {
388                           return obj->entryId == entryId;
389                       });
390     if (it != this->blockingErrors.end())
391     {
392         // Already recorded so just return
393         lg2::debug(
394             "QuiesceOnError set and callout present but entry already logged");
395         return;
396     }
397 
398     lg2::info("QuiesceOnError set and callout present");
399 
400     auto blockPath =
401         std::string(OBJ_LOGGING) + "/block" + std::to_string(entryId);
402     auto blockObj = std::make_unique<Block>(this->busLog, blockPath, entryId);
403     this->blockingErrors.push_back(std::move(blockObj));
404 
405     // Register call back if log is resolved
406     using namespace sdbusplus::bus::match::rules;
407     auto entryPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId);
408     auto callback = std::make_unique<sdbusplus::bus::match_t>(
409         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(
415         std::make_pair(entryId, std::move(callback)));
416 
417     checkAndQuiesceHost();
418 }
419 
420 void Manager::doExtensionLogCreate(const Entry& entry, const FFDCEntries& ffdc)
421 {
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(),
437                    entry.severity(), entry.additionalData(), assocs, ffdc);
438         }
439         catch (const std::exception& e)
440         {
441             lg2::error(
442                 "An extension's create function threw an exception: {ERROR}",
443                 "ERROR", e);
444         }
445     }
446 }
447 
448 void Manager::processMetadata(const std::string& /*errorName*/,
449                               const std::vector<std::string>& additionalData,
450                               AssociationList& objects) const
451 {
452     // additionalData is a list of "metadata=value"
453     constexpr auto separator = '=';
454     for (const auto& entryItem : additionalData)
455     {
456         auto found = entryItem.find(separator);
457         if (std::string::npos != found)
458         {
459             auto metadata = entryItem.substr(0, found);
460             auto iter = meta.find(metadata);
461             if (meta.end() != iter)
462             {
463                 (iter->second)(metadata, additionalData, objects);
464             }
465         }
466     }
467 }
468 
469 void Manager::checkAndRemoveBlockingError(uint32_t entryId)
470 {
471     // First look for blocking object and remove
472     auto it = find_if(blockingErrors.begin(), blockingErrors.end(),
473                       [&](const std::unique_ptr<Block>& obj) {
474                           return obj->entryId == entryId;
475                       });
476     if (it != blockingErrors.end())
477     {
478         blockingErrors.erase(it);
479     }
480 
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 
488     return;
489 }
490 
491 size_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 
557 void Manager::erase(uint32_t entryId)
558 {
559     auto entryFound = entries.find(entryId);
560     if (entries.end() != entryFound)
561     {
562         for (auto& func : Extensions::getDeleteProhibitedFunctions())
563         {
564             try
565             {
566                 bool prohibited = false;
567                 func(entryId, prohibited);
568                 if (prohibited)
569                 {
570                     throw sdbusplus::xyz::openbmc_project::Common::Error::
571                         Unavailable();
572                 }
573             }
574             catch (const sdbusplus::xyz::openbmc_project::Common::Error::
575                        Unavailable& e)
576             {
577                 throw;
578             }
579             catch (const std::exception& e)
580             {
581                 lg2::error("An extension's deleteProhibited function threw an "
582                            "exception: {ERROR}",
583                            "ERROR", e);
584             }
585         }
586 
587         // Delete the persistent representation of this error.
588         fs::path errorPath(paths::error());
589         errorPath /= std::to_string(entryId);
590         fs::remove(errorPath);
591 
592         auto removeId = [](std::list<uint32_t>& ids, uint32_t id) {
593             auto it = std::find(ids.begin(), ids.end(), id);
594             if (it != ids.end())
595             {
596                 ids.erase(it);
597             }
598         };
599         if (entryFound->second->severity() >= Entry::sevLowerLimit)
600         {
601             removeId(infoErrors, entryId);
602         }
603         else
604         {
605             removeId(realErrors, entryId);
606         }
607         entries.erase(entryFound);
608 
609         checkAndRemoveBlockingError(entryId);
610 
611         for (auto& remove : Extensions::getDeleteFunctions())
612         {
613             try
614             {
615                 remove(entryId);
616             }
617             catch (const std::exception& e)
618             {
619                 lg2::error("An extension's delete function threw an exception: "
620                            "{ERROR}",
621                            "ERROR", e);
622             }
623         }
624     }
625     else
626     {
627         lg2::error("Invalid entry ID ({ID}) to delete", "ID", entryId);
628     }
629 }
630 
631 void Manager::restore()
632 {
633     auto sanity = [](const auto& id, const auto& restoredId) {
634         return id == restoredId;
635     };
636 
637     fs::path dir(paths::error());
638     if (!fs::exists(dir) || fs::is_empty(dir))
639     {
640         return;
641     }
642 
643     for (auto& file : fs::directory_iterator(dir))
644     {
645         auto id = file.path().filename().c_str();
646         auto idNum = std::stol(id);
647         auto e = std::make_unique<Entry>(
648             busLog, std::string(OBJ_ENTRY) + '/' + id, idNum, *this);
649         if (deserialize(file.path(), *e))
650         {
651             // validate the restored error entry id
652             if (sanity(static_cast<uint32_t>(idNum), e->id()))
653             {
654                 e->path(file.path(), true);
655                 if (e->severity() >= Entry::sevLowerLimit)
656                 {
657                     infoErrors.push_back(idNum);
658                 }
659                 else
660                 {
661                     realErrors.push_back(idNum);
662                 }
663 
664                 entries.insert(std::make_pair(idNum, std::move(e)));
665             }
666             else
667             {
668                 lg2::error(
669                     "Failed in sanity check while restoring error entry. "
670                     "Ignoring error entry {ID_NUM}/{ENTRY_ID}.",
671                     "ID_NUM", idNum, "ENTRY_ID", e->id());
672             }
673         }
674     }
675 
676     if (!entries.empty())
677     {
678         entryId = entries.rbegin()->first;
679     }
680 }
681 
682 std::string Manager::readFWVersion()
683 {
684     auto version = util::getOSReleaseValue("VERSION_ID");
685 
686     if (!version)
687     {
688         lg2::error("Unable to read BMC firmware version");
689     }
690 
691     return version.value_or("");
692 }
693 
694 void Manager::create(const std::string& message, Entry::Level severity,
695                      const std::map<std::string, std::string>& additionalData,
696                      const FFDCEntries& ffdc)
697 {
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 
705 } // namespace internal
706 } // namespace logging
707 } // namespace phosphor
708