| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 1 | #include "config.h" | 
|  | 2 |  | 
|  | 3 | #include "dump_manager_resource.hpp" | 
|  | 4 |  | 
|  | 5 | #include "dump_utils.hpp" | 
| Dhruvaraj Subhashchandran | ad50d42 | 2022-01-18 05:54:02 -0600 | [diff] [blame] | 6 | #include "op_dump_consts.hpp" | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 7 | #include "resource_dump_entry.hpp" | 
|  | 8 | #include "xyz/openbmc_project/Common/error.hpp" | 
|  | 9 |  | 
| George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 10 | #include <fmt/core.h> | 
|  | 11 |  | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 12 | #include <phosphor-logging/elog-errors.hpp> | 
|  | 13 | #include <phosphor-logging/elog.hpp> | 
|  | 14 |  | 
| Dhruvaraj Subhashchandran | 341d683 | 2021-01-15 06:28:04 -0600 | [diff] [blame] | 15 | namespace openpower | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 16 | { | 
|  | 17 | namespace dump | 
|  | 18 | { | 
|  | 19 | namespace resource | 
|  | 20 | { | 
|  | 21 |  | 
|  | 22 | using namespace phosphor::logging; | 
|  | 23 | using InternalFailure = | 
|  | 24 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; | 
|  | 25 |  | 
|  | 26 | void Manager::notify(uint32_t dumpId, uint64_t size) | 
|  | 27 | { | 
|  | 28 | // Get the timestamp | 
| Claire Weinan | c0ab9d4 | 2022-08-17 23:01:07 -0700 | [diff] [blame^] | 29 | uint64_t timeStamp = | 
|  | 30 | std::chrono::duration_cast<std::chrono::microseconds>( | 
|  | 31 | std::chrono::system_clock::now().time_since_epoch()) | 
|  | 32 | .count(); | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 33 |  | 
| Dhruvaraj Subhashchandran | 583ebc0 | 2022-02-01 03:02:35 -0600 | [diff] [blame] | 34 | // If there is an entry with invalid id update that. | 
|  | 35 | // If there a completed one with same source id ignore it | 
|  | 36 | // if there is no invalid id, create new entry | 
|  | 37 | openpower::dump::resource::Entry* upEntry = NULL; | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 38 | for (auto& entry : entries) | 
|  | 39 | { | 
| Dhruvaraj Subhashchandran | 341d683 | 2021-01-15 06:28:04 -0600 | [diff] [blame] | 40 | openpower::dump::resource::Entry* resEntry = | 
|  | 41 | dynamic_cast<openpower::dump::resource::Entry*>(entry.second.get()); | 
| Dhruvaraj Subhashchandran | 583ebc0 | 2022-02-01 03:02:35 -0600 | [diff] [blame] | 42 |  | 
|  | 43 | // If there is already a completed entry with input source id then | 
|  | 44 | // ignore this notification. | 
|  | 45 | if ((resEntry->sourceDumpId() == dumpId) && | 
|  | 46 | (resEntry->status() == phosphor::dump::OperationStatus::Completed)) | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 47 | { | 
| Dhruvaraj Subhashchandran | 583ebc0 | 2022-02-01 03:02:35 -0600 | [diff] [blame] | 48 | log<level::INFO>( | 
|  | 49 | fmt::format("Resource dump entry with source dump id({}) is " | 
|  | 50 | "already present with entry id({})", | 
|  | 51 | dumpId, resEntry->getDumpId()) | 
|  | 52 | .c_str()); | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 53 | return; | 
|  | 54 | } | 
| Dhruvaraj Subhashchandran | 583ebc0 | 2022-02-01 03:02:35 -0600 | [diff] [blame] | 55 |  | 
|  | 56 | // Save the first entry with INVALID_SOURCE_ID | 
|  | 57 | // but continue in the loop to make sure the | 
|  | 58 | // new entry is not duplicate | 
|  | 59 | if ((resEntry->status() == | 
|  | 60 | phosphor::dump::OperationStatus::InProgress) && | 
|  | 61 | (resEntry->sourceDumpId() == INVALID_SOURCE_ID) && | 
|  | 62 | (upEntry == NULL)) | 
|  | 63 | { | 
|  | 64 | upEntry = resEntry; | 
|  | 65 | } | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 66 | } | 
| Dhruvaraj Subhashchandran | 583ebc0 | 2022-02-01 03:02:35 -0600 | [diff] [blame] | 67 | if (upEntry != NULL) | 
|  | 68 | { | 
|  | 69 | log<level::INFO>( | 
|  | 70 | fmt::format("Resource Dump Notify: Updating dumpId({}) " | 
|  | 71 | "with source Id({}) Size({})", | 
|  | 72 | upEntry->getDumpId(), dumpId, size) | 
|  | 73 | .c_str()); | 
|  | 74 | upEntry->update(timeStamp, size, dumpId); | 
|  | 75 | return; | 
|  | 76 | } | 
|  | 77 |  | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 78 | // Get the id | 
|  | 79 | auto id = lastEntryId + 1; | 
|  | 80 | auto idString = std::to_string(id); | 
| Jayanth Othayoth | 3fc6df4 | 2021-04-08 03:45:24 -0500 | [diff] [blame] | 81 | auto objPath = std::filesystem::path(baseEntryPath) / idString; | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 82 |  | 
|  | 83 | try | 
|  | 84 | { | 
| Dhruvaraj Subhashchandran | 583ebc0 | 2022-02-01 03:02:35 -0600 | [diff] [blame] | 85 | log<level::INFO>(fmt::format("Resouce Dump Notify: creating new dump " | 
|  | 86 | "entry dumpId({}) Id({}) Size({})", | 
|  | 87 | id, dumpId, size) | 
|  | 88 | .c_str()); | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 89 | entries.insert(std::make_pair( | 
|  | 90 | id, std::make_unique<resource::Entry>( | 
|  | 91 | bus, objPath.c_str(), id, timeStamp, size, dumpId, | 
|  | 92 | std::string(), std::string(), | 
|  | 93 | phosphor::dump::OperationStatus::Completed, *this))); | 
|  | 94 | } | 
|  | 95 | catch (const std::invalid_argument& e) | 
|  | 96 | { | 
| George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 97 | log<level::ERR>(fmt::format("Error in creating resource dump entry, " | 
|  | 98 | "errormsg({}),OBJECTPATH({}),ID({})," | 
|  | 99 | "TIMESTAMP({}),SIZE({}),SOURCEID({})", | 
| George Liu | 363af24 | 2021-07-16 17:52:36 +0800 | [diff] [blame] | 100 | e.what(), objPath.c_str(), id, timeStamp, | 
|  | 101 | size, dumpId) | 
| George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 102 | .c_str()); | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 103 | report<InternalFailure>(); | 
|  | 104 | return; | 
|  | 105 | } | 
|  | 106 | lastEntryId++; | 
|  | 107 | } | 
|  | 108 |  | 
|  | 109 | sdbusplus::message::object_path | 
| Dhruvaraj Subhashchandran | ddc3366 | 2021-07-19 09:28:42 -0500 | [diff] [blame] | 110 | Manager::createDump(phosphor::dump::DumpCreateParams params) | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 111 | { | 
|  | 112 |  | 
|  | 113 | using NotAllowed = | 
|  | 114 | sdbusplus::xyz::openbmc_project::Common::Error::NotAllowed; | 
|  | 115 | using Reason = xyz::openbmc_project::Common::NotAllowed::REASON; | 
|  | 116 |  | 
|  | 117 | // Allow creating resource dump only when the host is up. | 
|  | 118 | if (!phosphor::dump::isHostRunning()) | 
|  | 119 | { | 
|  | 120 | elog<NotAllowed>( | 
|  | 121 | Reason("Resource dump can be initiated only when the host is up")); | 
|  | 122 | return std::string(); | 
|  | 123 | } | 
| Dhruvaraj Subhashchandran | ddc3366 | 2021-07-19 09:28:42 -0500 | [diff] [blame] | 124 |  | 
|  | 125 | using InvalidArgument = | 
|  | 126 | sdbusplus::xyz::openbmc_project::Common::Error::InvalidArgument; | 
|  | 127 | using Argument = xyz::openbmc_project::Common::InvalidArgument; | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 128 | using CreateParameters = | 
|  | 129 | sdbusplus::com::ibm::Dump::server::Create::CreateParameters; | 
|  | 130 |  | 
|  | 131 | auto id = lastEntryId + 1; | 
|  | 132 | auto idString = std::to_string(id); | 
| Jayanth Othayoth | 3fc6df4 | 2021-04-08 03:45:24 -0500 | [diff] [blame] | 133 | auto objPath = std::filesystem::path(baseEntryPath) / idString; | 
| Claire Weinan | c0ab9d4 | 2022-08-17 23:01:07 -0700 | [diff] [blame^] | 134 | uint64_t timeStamp = | 
|  | 135 | std::chrono::duration_cast<std::chrono::microseconds>( | 
|  | 136 | std::chrono::system_clock::now().time_since_epoch()) | 
|  | 137 | .count(); | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 138 |  | 
| Dhruvaraj Subhashchandran | ddc3366 | 2021-07-19 09:28:42 -0500 | [diff] [blame] | 139 | std::string vspString; | 
|  | 140 | auto iter = params.find( | 
|  | 141 | sdbusplus::com::ibm::Dump::server::Create:: | 
|  | 142 | convertCreateParametersToString(CreateParameters::VSPString)); | 
|  | 143 | if (iter == params.end()) | 
|  | 144 | { | 
|  | 145 | // Host will generate a default dump if no resource selector string | 
|  | 146 | // is provided. The default dump will be a non-disruptive system dump. | 
|  | 147 | log<level::INFO>( | 
|  | 148 | "VSP string is not provided, a non-disruptive system dump will be " | 
|  | 149 | "generated by the host"); | 
|  | 150 | } | 
|  | 151 | else | 
|  | 152 | { | 
|  | 153 | try | 
|  | 154 | { | 
|  | 155 | vspString = std::get<std::string>(iter->second); | 
|  | 156 | } | 
|  | 157 | catch (const std::bad_variant_access& e) | 
|  | 158 | { | 
|  | 159 | // Exception will be raised if the input is not string | 
|  | 160 | log<level::ERR>( | 
|  | 161 | fmt::format("An invalid  vsp string is passed errormsg({})", | 
|  | 162 | e.what()) | 
|  | 163 | .c_str()); | 
|  | 164 | elog<InvalidArgument>(Argument::ARGUMENT_NAME("VSP_STRING"), | 
|  | 165 | Argument::ARGUMENT_VALUE("INVALID INPUT")); | 
|  | 166 | } | 
|  | 167 | } | 
|  | 168 |  | 
|  | 169 | std::string pwd; | 
|  | 170 | iter = params.find( | 
|  | 171 | sdbusplus::com::ibm::Dump::server::Create:: | 
|  | 172 | convertCreateParametersToString(CreateParameters::Password)); | 
|  | 173 | if (iter == params.end()) | 
|  | 174 | { | 
| Dhruvaraj Subhashchandran | a5097b9 | 2022-03-08 12:33:41 -0600 | [diff] [blame] | 175 | log<level::INFO>("Password is not provided for resource dump"); | 
| Dhruvaraj Subhashchandran | ddc3366 | 2021-07-19 09:28:42 -0500 | [diff] [blame] | 176 | } | 
| Dhruvaraj Subhashchandran | a5097b9 | 2022-03-08 12:33:41 -0600 | [diff] [blame] | 177 | else | 
| Dhruvaraj Subhashchandran | ddc3366 | 2021-07-19 09:28:42 -0500 | [diff] [blame] | 178 | { | 
| Dhruvaraj Subhashchandran | a5097b9 | 2022-03-08 12:33:41 -0600 | [diff] [blame] | 179 | try | 
|  | 180 | { | 
|  | 181 | pwd = std::get<std::string>(iter->second); | 
|  | 182 | } | 
|  | 183 | catch (const std::bad_variant_access& e) | 
|  | 184 | { | 
|  | 185 | // Exception will be raised if the input is not string | 
|  | 186 | log<level::ERR>( | 
|  | 187 | fmt::format("An invalid password string is passed errormsg({})", | 
|  | 188 | e.what()) | 
|  | 189 | .c_str()); | 
|  | 190 | elog<InvalidArgument>(Argument::ARGUMENT_NAME("PASSWORD"), | 
|  | 191 | Argument::ARGUMENT_VALUE("INVALID INPUT")); | 
|  | 192 | } | 
| Dhruvaraj Subhashchandran | ddc3366 | 2021-07-19 09:28:42 -0500 | [diff] [blame] | 193 | } | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 194 |  | 
|  | 195 | try | 
|  | 196 | { | 
|  | 197 | entries.insert(std::make_pair( | 
|  | 198 | id, std::make_unique<resource::Entry>( | 
|  | 199 | bus, objPath.c_str(), id, timeStamp, 0, INVALID_SOURCE_ID, | 
|  | 200 | vspString, pwd, phosphor::dump::OperationStatus::InProgress, | 
|  | 201 | *this))); | 
|  | 202 | } | 
|  | 203 | catch (const std::invalid_argument& e) | 
|  | 204 | { | 
| George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 205 | log<level::ERR>( | 
|  | 206 | fmt::format( | 
|  | 207 | "Error in creating resource dump " | 
|  | 208 | "entry,errormsg({}),OBJECTPATH({}), VSPSTRING({}), ID({})", | 
| George Liu | 363af24 | 2021-07-16 17:52:36 +0800 | [diff] [blame] | 209 | e.what(), objPath.c_str(), vspString, id) | 
| George Liu | 858fbb2 | 2021-07-01 12:25:44 +0800 | [diff] [blame] | 210 | .c_str()); | 
| Dhruvaraj Subhashchandran | 62337a9 | 2020-11-22 21:24:30 -0600 | [diff] [blame] | 211 | elog<InternalFailure>(); | 
|  | 212 | return std::string(); | 
|  | 213 | } | 
|  | 214 | lastEntryId++; | 
|  | 215 | return objPath.string(); | 
|  | 216 | } | 
|  | 217 |  | 
|  | 218 | } // namespace resource | 
|  | 219 | } // namespace dump | 
| Dhruvaraj Subhashchandran | 341d683 | 2021-01-15 06:28:04 -0600 | [diff] [blame] | 220 | } // namespace openpower |