| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 1 | #include "config.h" | 
|  | 2 |  | 
|  | 3 | #include "dump_manager_system.hpp" | 
|  | 4 |  | 
| Dhruvaraj Subhashchandran | 6a54d9a | 2020-12-17 22:24:37 -0600 | [diff] [blame] | 5 | #include "dump_utils.hpp" | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 6 | #include "system_dump_entry.hpp" | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 7 | #include "xyz/openbmc_project/Common/error.hpp" | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 8 |  | 
| George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 9 | #include <fmt/core.h> | 
|  | 10 |  | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 11 | #include <phosphor-logging/elog-errors.hpp> | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 12 | #include <phosphor-logging/elog.hpp> | 
|  | 13 |  | 
| Dhruvaraj Subhashchandran | 341d683 | 2021-01-15 06:28:04 -0600 | [diff] [blame] | 14 | namespace openpower | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 15 | { | 
|  | 16 | namespace dump | 
|  | 17 | { | 
|  | 18 | namespace system | 
|  | 19 | { | 
|  | 20 |  | 
|  | 21 | using namespace phosphor::logging; | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 22 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 23 |  | 
| Dhruvaraj Subhashchandran | f37c5c3 | 2020-12-17 22:08:19 -0600 | [diff] [blame] | 24 | void Manager::notify(uint32_t dumpId, uint64_t size) | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 25 | { | 
|  | 26 |  | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 27 | // Get the timestamp | 
| Dhruvaraj Subhashchandran | a6ab806 | 2020-10-29 15:29:10 -0500 | [diff] [blame] | 28 | std::time_t timeStamp = std::time(nullptr); | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 29 |  | 
|  | 30 | // System dump can get created due to a fault in server | 
|  | 31 | // or by request from user. A system dump by fault is | 
|  | 32 | // first reported here, but for a user requested dump an | 
|  | 33 | // entry will be created first with invalid source id. | 
|  | 34 | // Since there can be only one system dump creation at a time, | 
|  | 35 | // if there is an entry with invalid sourceId update that. | 
|  | 36 | for (auto& entry : entries) | 
|  | 37 | { | 
| Dhruvaraj Subhashchandran | 341d683 | 2021-01-15 06:28:04 -0600 | [diff] [blame] | 38 | openpower::dump::system::Entry* sysEntry = | 
|  | 39 | dynamic_cast<openpower::dump::system::Entry*>(entry.second.get()); | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 40 | if (sysEntry->sourceDumpId() == INVALID_SOURCE_ID) | 
|  | 41 | { | 
| Dhruvaraj Subhashchandran | a6ab806 | 2020-10-29 15:29:10 -0500 | [diff] [blame] | 42 | sysEntry->update(timeStamp, size, dumpId); | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 43 | return; | 
|  | 44 | } | 
|  | 45 | } | 
|  | 46 |  | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 47 | // Get the id | 
|  | 48 | auto id = lastEntryId + 1; | 
|  | 49 | auto idString = std::to_string(id); | 
| Jayanth Othayoth | 3fc6df4 | 2021-04-08 03:45:24 -0500 | [diff] [blame] | 50 | auto objPath = std::filesystem::path(baseEntryPath) / idString; | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 51 |  | 
|  | 52 | try | 
|  | 53 | { | 
|  | 54 | entries.insert(std::make_pair( | 
| Dhruvaraj Subhashchandran | a6ab806 | 2020-10-29 15:29:10 -0500 | [diff] [blame] | 55 | id, std::make_unique<system::Entry>( | 
|  | 56 | bus, objPath.c_str(), id, timeStamp, size, dumpId, | 
|  | 57 | phosphor::dump::OperationStatus::Completed, *this))); | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 58 | } | 
|  | 59 | catch (const std::invalid_argument& e) | 
|  | 60 | { | 
| George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 61 | log<level::ERR>( | 
|  | 62 | fmt::format( | 
|  | 63 | "Error in creating system dump entry, errormsg({}), " | 
|  | 64 | "OBJECTPATH({}), ID({}), TIMESTAMP({}),SIZE({}), SOURCEID({})", | 
| George Liu | 363af24 | 2021-07-16 17:52:36 +0800 | [diff] [blame] | 65 | e.what(), objPath.c_str(), id, timeStamp, size, dumpId) | 
| George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 66 | .c_str()); | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 67 | report<InternalFailure>(); | 
|  | 68 | return; | 
|  | 69 | } | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 70 | lastEntryId++; | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 71 | return; | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 72 | } | 
|  | 73 |  | 
| Dhruvaraj Subhashchandran | 969f9a5 | 2020-10-30 01:42:39 -0500 | [diff] [blame] | 74 | sdbusplus::message::object_path | 
| Dhruvaraj Subhashchandran | ddc3366 | 2021-07-19 09:28:42 -0500 | [diff] [blame] | 75 | Manager::createDump(phosphor::dump::DumpCreateParams params) | 
| Dhruvaraj Subhashchandran | 7040bce | 2020-09-16 00:50:19 -0500 | [diff] [blame] | 76 | { | 
|  | 77 | constexpr auto SYSTEMD_SERVICE = "org.freedesktop.systemd1"; | 
|  | 78 | constexpr auto SYSTEMD_OBJ_PATH = "/org/freedesktop/systemd1"; | 
|  | 79 | constexpr auto SYSTEMD_INTERFACE = "org.freedesktop.systemd1.Manager"; | 
| Andrew Geissler | 24e0c59 | 2021-01-19 16:47:27 -0600 | [diff] [blame] | 80 | constexpr auto DIAG_MOD_TARGET = "obmc-host-crash@0.target"; | 
| Dhruvaraj Subhashchandran | 969f9a5 | 2020-10-30 01:42:39 -0500 | [diff] [blame] | 81 |  | 
|  | 82 | if (!params.empty()) | 
|  | 83 | { | 
|  | 84 | log<level::WARNING>("System dump accepts no additional parameters"); | 
|  | 85 | } | 
|  | 86 |  | 
| Dhruvaraj Subhashchandran | 6a54d9a | 2020-12-17 22:24:37 -0600 | [diff] [blame] | 87 | using NotAllowed = | 
|  | 88 | sdbusplus::xyz::openbmc_project::Common::Error::NotAllowed; | 
|  | 89 | using Reason = xyz::openbmc_project::Common::NotAllowed::REASON; | 
|  | 90 |  | 
|  | 91 | // Allow creating system dump only when the host is up. | 
|  | 92 | if (!phosphor::dump::isHostRunning()) | 
|  | 93 | { | 
|  | 94 | elog<NotAllowed>( | 
|  | 95 | Reason("System dump can be initiated only when the host is up")); | 
|  | 96 | return std::string(); | 
|  | 97 | } | 
|  | 98 |  | 
| Dhruvaraj Subhashchandran | 7040bce | 2020-09-16 00:50:19 -0500 | [diff] [blame] | 99 | auto b = sdbusplus::bus::new_default(); | 
|  | 100 | auto method = bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH, | 
|  | 101 | SYSTEMD_INTERFACE, "StartUnit"); | 
|  | 102 | method.append(DIAG_MOD_TARGET); // unit to activate | 
|  | 103 | method.append("replace"); | 
|  | 104 | bus.call_noreply(method); | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 105 |  | 
|  | 106 | auto id = lastEntryId + 1; | 
|  | 107 | auto idString = std::to_string(id); | 
| Jayanth Othayoth | 3fc6df4 | 2021-04-08 03:45:24 -0500 | [diff] [blame] | 108 | auto objPath = std::filesystem::path(baseEntryPath) / idString; | 
| Dhruvaraj Subhashchandran | a6ab806 | 2020-10-29 15:29:10 -0500 | [diff] [blame] | 109 | std::time_t timeStamp = std::time(nullptr); | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 110 |  | 
|  | 111 | try | 
|  | 112 | { | 
|  | 113 | entries.insert(std::make_pair( | 
| Dhruvaraj Subhashchandran | a6ab806 | 2020-10-29 15:29:10 -0500 | [diff] [blame] | 114 | id, std::make_unique<system::Entry>( | 
|  | 115 | bus, objPath.c_str(), id, timeStamp, 0, INVALID_SOURCE_ID, | 
|  | 116 | phosphor::dump::OperationStatus::InProgress, *this))); | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 117 | } | 
|  | 118 | catch (const std::invalid_argument& e) | 
|  | 119 | { | 
| George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 120 | log<level::ERR>( | 
|  | 121 | fmt::format("Error in creating system dump entry, errormsg({}), " | 
|  | 122 | "OBJECTPATH({}), ID({})", | 
| George Liu | 363af24 | 2021-07-16 17:52:36 +0800 | [diff] [blame] | 123 | e.what(), objPath.c_str(), id) | 
| George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 124 | .c_str()); | 
| Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 125 | elog<InternalFailure>(); | 
|  | 126 | return std::string(); | 
|  | 127 | } | 
|  | 128 | lastEntryId++; | 
|  | 129 | return objPath.string(); | 
| Dhruvaraj Subhashchandran | 7040bce | 2020-09-16 00:50:19 -0500 | [diff] [blame] | 130 | } | 
|  | 131 |  | 
| Dhruvaraj Subhashchandran | fef66a9 | 2020-09-06 13:10:59 -0500 | [diff] [blame] | 132 | } // namespace system | 
|  | 133 | } // namespace dump | 
| Dhruvaraj Subhashchandran | 341d683 | 2021-01-15 06:28:04 -0600 | [diff] [blame] | 134 | } // namespace openpower |