Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 1 | #include "config.h" |
Jayanth Othayoth | cb65ffc | 2018-10-16 08:29:32 -0500 | [diff] [blame] | 2 | |
Dhruvaraj Subhashchandran | 8b9b469 | 2020-09-24 11:59:42 -0500 | [diff] [blame] | 3 | #include "dump-extensions.hpp" |
Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 4 | #include "dump_internal.hpp" |
Jayanth Othayoth | cb65ffc | 2018-10-16 08:29:32 -0500 | [diff] [blame] | 5 | #include "dump_manager.hpp" |
Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 6 | #include "dump_manager_bmc.hpp" |
Jayanth Othayoth | d0f0064 | 2017-09-04 06:26:30 -0500 | [diff] [blame] | 7 | #include "elog_watch.hpp" |
Jayanth Othayoth | cb65ffc | 2018-10-16 08:29:32 -0500 | [diff] [blame] | 8 | #include "watch.hpp" |
| 9 | #include "xyz/openbmc_project/Common/error.hpp" |
| 10 | |
George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 11 | #include <fmt/core.h> |
| 12 | |
Jayanth Othayoth | cb65ffc | 2018-10-16 08:29:32 -0500 | [diff] [blame] | 13 | #include <phosphor-logging/elog-errors.hpp> |
| 14 | #include <sdbusplus/bus.hpp> |
Jayanth Othayoth | 0af74a5 | 2021-04-08 03:55:21 -0500 | [diff] [blame] | 15 | |
| 16 | #include <memory> |
Dhruvaraj Subhashchandran | 8b9b469 | 2020-09-24 11:59:42 -0500 | [diff] [blame] | 17 | #include <vector> |
Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 18 | |
Ramesh Iyyar | bb410df | 2020-08-03 03:13:04 -0500 | [diff] [blame] | 19 | int main() |
Jayanth Othayoth | 224882b | 2017-05-04 05:46:45 -0500 | [diff] [blame] | 20 | { |
Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 21 | using namespace phosphor::logging; |
| 22 | using InternalFailure = |
| 23 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
| 24 | |
Jayanth Othayoth | 671fc7f | 2017-06-14 08:01:41 -0500 | [diff] [blame] | 25 | auto bus = sdbusplus::bus::new_default(); |
Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 26 | sd_event* event = nullptr; |
| 27 | auto rc = sd_event_default(&event); |
| 28 | if (rc < 0) |
| 29 | { |
George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 30 | log<level::ERR>( |
| 31 | fmt::format("Error occurred during the sd_event_default, rc({})", |
| 32 | rc) |
| 33 | .c_str()); |
Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 34 | report<InternalFailure>(); |
| 35 | return rc; |
| 36 | } |
| 37 | phosphor::dump::EventPtr eventP{event}; |
| 38 | event = nullptr; |
Jayanth Othayoth | 224882b | 2017-05-04 05:46:45 -0500 | [diff] [blame] | 39 | |
Alexander Filippov | 19ad0e8 | 2020-06-26 13:22:01 +0300 | [diff] [blame] | 40 | // Blocking SIGCHLD is needed for calling sd_event_add_child |
| 41 | sigset_t mask; |
| 42 | if (sigemptyset(&mask) < 0) |
| 43 | { |
George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 44 | log<level::ERR>( |
| 45 | fmt::format("Unable to initialize signal set, errno({})", errno) |
| 46 | .c_str()); |
Alexander Filippov | 19ad0e8 | 2020-06-26 13:22:01 +0300 | [diff] [blame] | 47 | return EXIT_FAILURE; |
| 48 | } |
| 49 | |
| 50 | if (sigaddset(&mask, SIGCHLD) < 0) |
| 51 | { |
George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 52 | log<level::ERR>( |
| 53 | fmt::format("Unable to add signal to signal set, errno({})", errno) |
| 54 | .c_str()); |
Alexander Filippov | 19ad0e8 | 2020-06-26 13:22:01 +0300 | [diff] [blame] | 55 | return EXIT_FAILURE; |
| 56 | } |
| 57 | |
| 58 | // Block SIGCHLD first, so that the event loop can handle it |
| 59 | if (sigprocmask(SIG_BLOCK, &mask, nullptr) < 0) |
| 60 | { |
George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 61 | log<level::ERR>( |
| 62 | fmt::format("Unable to block signal, errno({})", errno).c_str()); |
Alexander Filippov | 19ad0e8 | 2020-06-26 13:22:01 +0300 | [diff] [blame] | 63 | return EXIT_FAILURE; |
| 64 | } |
| 65 | |
Jayanth Othayoth | 224882b | 2017-05-04 05:46:45 -0500 | [diff] [blame] | 66 | // Add sdbusplus ObjectManager for the 'root' path of the DUMP manager. |
| 67 | sdbusplus::server::manager::manager objManager(bus, DUMP_OBJPATH); |
Jayanth Othayoth | 224882b | 2017-05-04 05:46:45 -0500 | [diff] [blame] | 68 | bus.request_name(DUMP_BUSNAME); |
| 69 | |
Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 70 | try |
Jayanth Othayoth | 224882b | 2017-05-04 05:46:45 -0500 | [diff] [blame] | 71 | { |
Dhruvaraj Subhashchandran | 8b9b469 | 2020-09-24 11:59:42 -0500 | [diff] [blame] | 72 | phosphor::dump::DumpManagerList dumpMgrList{}; |
| 73 | std::unique_ptr<phosphor::dump::bmc::Manager> bmcDumpMgr = |
| 74 | std::make_unique<phosphor::dump::bmc::Manager>( |
| 75 | bus, eventP, BMC_DUMP_OBJPATH, BMC_DUMP_OBJ_ENTRY, |
| 76 | BMC_DUMP_PATH); |
| 77 | |
| 78 | phosphor::dump::bmc::internal::Manager mgr(bus, *bmcDumpMgr, |
Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 79 | OBJ_INTERNAL); |
Dhruvaraj Subhashchandran | 8b9b469 | 2020-09-24 11:59:42 -0500 | [diff] [blame] | 80 | dumpMgrList.push_back(std::move(bmcDumpMgr)); |
| 81 | |
| 82 | phosphor::dump::loadExtensions(bus, dumpMgrList); |
| 83 | |
| 84 | // Restore dbus objects of all dumps |
| 85 | for (auto& dmpMgr : dumpMgrList) |
| 86 | { |
| 87 | dmpMgr->restore(); |
| 88 | } |
| 89 | |
Jayanth Othayoth | d0f0064 | 2017-09-04 06:26:30 -0500 | [diff] [blame] | 90 | phosphor::dump::elog::Watch eWatch(bus, mgr); |
Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 91 | bus.attach_event(eventP.get(), SD_EVENT_PRIORITY_NORMAL); |
Jayanth Othayoth | bcb174b | 2017-07-02 06:29:24 -0500 | [diff] [blame] | 92 | |
Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 93 | auto rc = sd_event_loop(eventP.get()); |
| 94 | if (rc < 0) |
| 95 | { |
George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 96 | log<level::ERR>( |
| 97 | fmt::format("Error occurred during the sd_event_loop, rc({})", |
| 98 | rc) |
| 99 | .c_str()); |
Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 100 | elog<InternalFailure>(); |
| 101 | } |
| 102 | } |
Jayanth Othayoth | a320c7c | 2017-06-14 07:17:21 -0500 | [diff] [blame] | 103 | catch (InternalFailure& e) |
| 104 | { |
| 105 | commit<InternalFailure>(); |
| 106 | return -1; |
Jayanth Othayoth | 224882b | 2017-05-04 05:46:45 -0500 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | return 0; |
| 110 | } |