blob: a15196192bba6fd367c4e663f974afda358489e0 [file] [log] [blame]
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -06001#include "config.h"
2
3#include "dump_manager_resource.hpp"
4
5#include "dump_utils.hpp"
Dhruvaraj Subhashchandranad50d422022-01-18 05:54:02 -06006#include "op_dump_consts.hpp"
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -06007#include "resource_dump_entry.hpp"
8#include "xyz/openbmc_project/Common/error.hpp"
9
George Liu858fbb22021-07-01 12:25:44 +080010#include <fmt/core.h>
11
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060012#include <phosphor-logging/elog-errors.hpp>
13#include <phosphor-logging/elog.hpp>
14
Dhruvaraj Subhashchandran341d6832021-01-15 06:28:04 -060015namespace openpower
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060016{
17namespace dump
18{
19namespace resource
20{
21
22using namespace phosphor::logging;
23using InternalFailure =
24 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
25
26void Manager::notify(uint32_t dumpId, uint64_t size)
27{
28 // Get the timestamp
Claire Weinanc0ab9d42022-08-17 23:01:07 -070029 uint64_t timeStamp =
30 std::chrono::duration_cast<std::chrono::microseconds>(
31 std::chrono::system_clock::now().time_since_epoch())
32 .count();
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060033
Dhruvaraj Subhashchandran583ebc02022-02-01 03:02:35 -060034 // 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 Subhashchandran62337a92020-11-22 21:24:30 -060038 for (auto& entry : entries)
39 {
Dhruvaraj Subhashchandran341d6832021-01-15 06:28:04 -060040 openpower::dump::resource::Entry* resEntry =
41 dynamic_cast<openpower::dump::resource::Entry*>(entry.second.get());
Dhruvaraj Subhashchandran583ebc02022-02-01 03:02:35 -060042
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 Subhashchandran62337a92020-11-22 21:24:30 -060047 {
Dhruvaraj Subhashchandran583ebc02022-02-01 03:02:35 -060048 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 Subhashchandran62337a92020-11-22 21:24:30 -060053 return;
54 }
Dhruvaraj Subhashchandran583ebc02022-02-01 03:02:35 -060055
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 Subhashchandran62337a92020-11-22 21:24:30 -060066 }
Dhruvaraj Subhashchandran583ebc02022-02-01 03:02:35 -060067 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 Subhashchandran62337a92020-11-22 21:24:30 -060078 // Get the id
79 auto id = lastEntryId + 1;
80 auto idString = std::to_string(id);
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -050081 auto objPath = std::filesystem::path(baseEntryPath) / idString;
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060082
83 try
84 {
Dhruvaraj Subhashchandran583ebc02022-02-01 03:02:35 -060085 log<level::INFO>(fmt::format("Resouce Dump Notify: creating new dump "
86 "entry dumpId({}) Id({}) Size({})",
87 id, dumpId, size)
88 .c_str());
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060089 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 Liu858fbb22021-07-01 12:25:44 +080097 log<level::ERR>(fmt::format("Error in creating resource dump entry, "
98 "errormsg({}),OBJECTPATH({}),ID({}),"
99 "TIMESTAMP({}),SIZE({}),SOURCEID({})",
George Liu363af242021-07-16 17:52:36 +0800100 e.what(), objPath.c_str(), id, timeStamp,
101 size, dumpId)
George Liu858fbb22021-07-01 12:25:44 +0800102 .c_str());
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -0600103 report<InternalFailure>();
104 return;
105 }
106 lastEntryId++;
107}
108
109sdbusplus::message::object_path
Dhruvaraj Subhashchandranddc33662021-07-19 09:28:42 -0500110 Manager::createDump(phosphor::dump::DumpCreateParams params)
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -0600111{
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 Subhashchandranddc33662021-07-19 09:28:42 -0500124
125 using InvalidArgument =
126 sdbusplus::xyz::openbmc_project::Common::Error::InvalidArgument;
127 using Argument = xyz::openbmc_project::Common::InvalidArgument;
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -0600128 using CreateParameters =
129 sdbusplus::com::ibm::Dump::server::Create::CreateParameters;
130
131 auto id = lastEntryId + 1;
132 auto idString = std::to_string(id);
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500133 auto objPath = std::filesystem::path(baseEntryPath) / idString;
Claire Weinanc0ab9d42022-08-17 23:01:07 -0700134 uint64_t timeStamp =
135 std::chrono::duration_cast<std::chrono::microseconds>(
136 std::chrono::system_clock::now().time_since_epoch())
137 .count();
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -0600138
Dhruvaraj Subhashchandranddc33662021-07-19 09:28:42 -0500139 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 Subhashchandrana5097b92022-03-08 12:33:41 -0600175 log<level::INFO>("Password is not provided for resource dump");
Dhruvaraj Subhashchandranddc33662021-07-19 09:28:42 -0500176 }
Dhruvaraj Subhashchandrana5097b92022-03-08 12:33:41 -0600177 else
Dhruvaraj Subhashchandranddc33662021-07-19 09:28:42 -0500178 {
Dhruvaraj Subhashchandrana5097b92022-03-08 12:33:41 -0600179 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 Subhashchandranddc33662021-07-19 09:28:42 -0500193 }
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -0600194
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 Liu858fbb22021-07-01 12:25:44 +0800205 log<level::ERR>(
206 fmt::format(
207 "Error in creating resource dump "
208 "entry,errormsg({}),OBJECTPATH({}), VSPSTRING({}), ID({})",
George Liu363af242021-07-16 17:52:36 +0800209 e.what(), objPath.c_str(), vspString, id)
George Liu858fbb22021-07-01 12:25:44 +0800210 .c_str());
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -0600211 elog<InternalFailure>();
212 return std::string();
213 }
214 lastEntryId++;
215 return objPath.string();
216}
217
218} // namespace resource
219} // namespace dump
Dhruvaraj Subhashchandran341d6832021-01-15 06:28:04 -0600220} // namespace openpower