blob: 94f8f405ac73e93f72554f9869478ec811fbbe27 [file] [log] [blame]
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -05001#include "config.h"
2
3#include "dump_manager_bmc.hpp"
4
5#include "bmc_dump_entry.hpp"
6#include "dump_internal.hpp"
7#include "xyz/openbmc_project/Common/error.hpp"
8#include "xyz/openbmc_project/Dump/Create/error.hpp"
9
George Liu858fbb22021-07-01 12:25:44 +080010#include <fmt/core.h>
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050011#include <sys/inotify.h>
12#include <unistd.h>
13
14#include <phosphor-logging/elog-errors.hpp>
15#include <phosphor-logging/elog.hpp>
Jayanth Othayoth0af74a52021-04-08 03:55:21 -050016
Tim Leebb9366d2021-06-24 14:00:07 +080017#include <cmath>
Jayanth Othayoth0af74a52021-04-08 03:55:21 -050018#include <ctime>
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050019#include <regex>
20
21namespace phosphor
22{
23namespace dump
24{
25namespace bmc
26{
27
28using namespace sdbusplus::xyz::openbmc_project::Common::Error;
29using namespace phosphor::logging;
30
31namespace internal
32{
33
34void Manager::create(Type type, std::vector<std::string> fullPaths)
35{
36 dumpMgr.phosphor::dump::bmc::Manager::captureDump(type, fullPaths);
37}
38
39} // namespace internal
40
Dhruvaraj Subhashchandran969f9a52020-10-30 01:42:39 -050041sdbusplus::message::object_path
Dhruvaraj Subhashchandranddc33662021-07-19 09:28:42 -050042 Manager::createDump(phosphor::dump::DumpCreateParams params)
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050043{
Asmitha Karunanithi74a1f392021-10-27 03:23:59 -050044 if (params.size() > CREATE_DUMP_MAX_PARAMS)
Dhruvaraj Subhashchandran969f9a52020-10-30 01:42:39 -050045 {
Asmitha Karunanithi74a1f392021-10-27 03:23:59 -050046 log<level::WARNING>(
47 "BMC dump accepts not more than 2 additional parameters");
Dhruvaraj Subhashchandran969f9a52020-10-30 01:42:39 -050048 }
Asmitha Karunanithi74a1f392021-10-27 03:23:59 -050049
50 // Get the originator id and type from params
51 std::string originatorId;
52 originatorTypes originatorType;
53
54 phosphor::dump::extractOriginatorProperties(params, originatorId,
55 originatorType);
56
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050057 std::vector<std::string> paths;
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -050058 auto id = captureDump(Type::UserRequested, paths);
59
60 // Entry Object path.
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -050061 auto objPath = std::filesystem::path(baseEntryPath) / std::to_string(id);
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -050062
63 try
64 {
Claire Weinanc0ab9d42022-08-17 23:01:07 -070065 uint64_t timeStamp =
66 std::chrono::duration_cast<std::chrono::microseconds>(
67 std::chrono::system_clock::now().time_since_epoch())
68 .count();
69
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -050070 entries.insert(std::make_pair(
Dhruvaraj Subhashchandrana6ab8062020-10-29 15:29:10 -050071 id, std::make_unique<bmc::Entry>(
72 bus, objPath.c_str(), id, timeStamp, 0, std::string(),
Asmitha Karunanithi74a1f392021-10-27 03:23:59 -050073 phosphor::dump::OperationStatus::InProgress, originatorId,
74 originatorType, *this)));
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -050075 }
76 catch (const std::invalid_argument& e)
77 {
George Liu858fbb22021-07-01 12:25:44 +080078 log<level::ERR>(fmt::format("Error in creating dump entry, "
79 "errormsg({}), OBJECTPATH({}), ID({})",
80 e.what(), objPath.c_str(), id)
81 .c_str());
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -050082 elog<InternalFailure>();
83 }
84
85 return objPath.string();
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050086}
87
88uint32_t Manager::captureDump(Type type,
89 const std::vector<std::string>& fullPaths)
90{
91 // Get Dump size.
92 auto size = getAllowedSize();
93
94 pid_t pid = fork();
95
96 if (pid == 0)
97 {
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -050098 std::filesystem::path dumpPath(dumpDir);
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050099 auto id = std::to_string(lastEntryId + 1);
100 dumpPath /= id;
101
102 // get dreport type map entry
103 auto tempType = TypeMap.find(type);
104
105 execl("/usr/bin/dreport", "dreport", "-d", dumpPath.c_str(), "-i",
106 id.c_str(), "-s", std::to_string(size).c_str(), "-q", "-v", "-p",
107 fullPaths.empty() ? "" : fullPaths.front().c_str(), "-t",
108 tempType->second.c_str(), nullptr);
109
110 // dreport script execution is failed.
111 auto error = errno;
George Liu858fbb22021-07-01 12:25:44 +0800112 log<level::ERR>(
113 fmt::format(
114 "Error occurred during dreport function execution, errno({})",
115 error)
116 .c_str());
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500117 elog<InternalFailure>();
118 }
119 else if (pid > 0)
120 {
121 auto rc = sd_event_add_child(eventLoop.get(), nullptr, pid,
122 WEXITED | WSTOPPED, callback, nullptr);
123 if (0 > rc)
124 {
125 // Failed to add to event loop
George Liu858fbb22021-07-01 12:25:44 +0800126 log<level::ERR>(
127 fmt::format(
128 "Error occurred during the sd_event_add_child call, rc({})",
129 rc)
130 .c_str());
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500131 elog<InternalFailure>();
132 }
133 }
134 else
135 {
136 auto error = errno;
George Liu858fbb22021-07-01 12:25:44 +0800137 log<level::ERR>(
138 fmt::format("Error occurred during fork, errno({})", error)
139 .c_str());
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500140 elog<InternalFailure>();
141 }
142
143 return ++lastEntryId;
144}
145
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500146void Manager::createEntry(const std::filesystem::path& file)
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500147{
148 // Dump File Name format obmcdump_ID_EPOCHTIME.EXT
149 static constexpr auto ID_POS = 1;
150 static constexpr auto EPOCHTIME_POS = 2;
151 std::regex file_regex("obmcdump_([0-9]+)_([0-9]+).([a-zA-Z0-9]+)");
152
153 std::smatch match;
154 std::string name = file.filename();
155
156 if (!((std::regex_search(name, match, file_regex)) && (match.size() > 0)))
157 {
George Liu858fbb22021-07-01 12:25:44 +0800158 log<level::ERR>(fmt::format("Invalid Dump file name, FILENAME({})",
159 file.filename().c_str())
160 .c_str());
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500161 return;
162 }
163
164 auto idString = match[ID_POS];
Xie Ning56bd7972022-02-25 15:20:02 +0800165 uint64_t timestamp = stoull(match[EPOCHTIME_POS]) * 1000 * 1000;
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500166
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -0500167 auto id = stoul(idString);
168
169 // If there is an existing entry update it and return.
170 auto dumpEntry = entries.find(id);
171 if (dumpEntry != entries.end())
172 {
173 dynamic_cast<phosphor::dump::bmc::Entry*>(dumpEntry->second.get())
Xie Ning56bd7972022-02-25 15:20:02 +0800174 ->update(timestamp, std::filesystem::file_size(file), file);
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -0500175 return;
176 }
177
178 // Entry Object path.
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500179 auto objPath = std::filesystem::path(baseEntryPath) / std::to_string(id);
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -0500180
Asmitha Karunanithi74a1f392021-10-27 03:23:59 -0500181 // TODO: Get the persisted originator id & type
182 // For now, replacing it with null
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500183 try
184 {
Dhruvaraj Subhashchandrana6ab8062020-10-29 15:29:10 -0500185 entries.insert(std::make_pair(
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500186 id, std::make_unique<bmc::Entry>(
Xie Ning56bd7972022-02-25 15:20:02 +0800187 bus, objPath.c_str(), id, timestamp,
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500188 std::filesystem::file_size(file), file,
Asmitha Karunanithi74a1f392021-10-27 03:23:59 -0500189 phosphor::dump::OperationStatus::Completed, std::string(),
190 originatorTypes::Internal, *this)));
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500191 }
192 catch (const std::invalid_argument& e)
193 {
George Liu858fbb22021-07-01 12:25:44 +0800194 log<level::ERR>(
195 fmt::format(
196 "Error in creating dump entry, errormsg({}), OBJECTPATH({}), "
197 "ID({}), TIMESTAMP({}), SIZE({}), FILENAME({})",
Xie Ning56bd7972022-02-25 15:20:02 +0800198 e.what(), objPath.c_str(), id, timestamp,
George Liu858fbb22021-07-01 12:25:44 +0800199 std::filesystem::file_size(file), file.filename().c_str())
200 .c_str());
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500201 return;
202 }
203}
204
205void Manager::watchCallback(const UserMap& fileInfo)
206{
207 for (const auto& i : fileInfo)
208 {
209 // For any new dump file create dump entry object
210 // and associated inotify watch.
211 if (IN_CLOSE_WRITE == i.second)
212 {
Chirag Sharma4cb07992022-05-09 04:37:22 -0500213 if (!std::filesystem::is_directory(i.first))
214 {
215 // Don't require filename to be passed, as the path
216 // of dump directory is stored in the childWatchMap
217 removeWatch(i.first.parent_path());
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500218
Chirag Sharma4cb07992022-05-09 04:37:22 -0500219 // dump file is written now create D-Bus entry
220 createEntry(i.first);
221 }
222 else
223 {
224 removeWatch(i.first);
225 }
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500226 }
227 // Start inotify watch on newly created directory.
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500228 else if ((IN_CREATE == i.second) &&
229 std::filesystem::is_directory(i.first))
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500230 {
231 auto watchObj = std::make_unique<Watch>(
232 eventLoop, IN_NONBLOCK, IN_CLOSE_WRITE, EPOLLIN, i.first,
233 std::bind(
234 std::mem_fn(&phosphor::dump::bmc::Manager::watchCallback),
235 this, std::placeholders::_1));
236
237 childWatchMap.emplace(i.first, std::move(watchObj));
238 }
239 }
240}
241
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500242void Manager::removeWatch(const std::filesystem::path& path)
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500243{
244 // Delete Watch entry from map.
245 childWatchMap.erase(path);
246}
247
248void Manager::restore()
249{
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500250 std::filesystem::path dir(dumpDir);
251 if (!std::filesystem::exists(dir) || std::filesystem::is_empty(dir))
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500252 {
253 return;
254 }
255
256 // Dump file path: <DUMP_PATH>/<id>/<filename>
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500257 for (const auto& p : std::filesystem::directory_iterator(dir))
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500258 {
259 auto idStr = p.path().filename().string();
260
261 // Consider only directory's with dump id as name.
262 // Note: As per design one file per directory.
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500263 if ((std::filesystem::is_directory(p.path())) &&
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500264 std::all_of(idStr.begin(), idStr.end(), ::isdigit))
265 {
266 lastEntryId =
267 std::max(lastEntryId, static_cast<uint32_t>(std::stoul(idStr)));
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500268 auto fileIt = std::filesystem::directory_iterator(p.path());
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500269 // Create dump entry d-bus object.
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500270 if (fileIt != std::filesystem::end(fileIt))
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500271 {
272 createEntry(fileIt->path());
273 }
274 }
275 }
276}
277
Xie Ningfc69f352022-05-17 16:06:52 +0800278size_t getDirectorySize(const std::string dir)
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500279{
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500280 auto size = 0;
Xie Ningfc69f352022-05-17 16:06:52 +0800281 for (const auto& p : std::filesystem::recursive_directory_iterator(dir))
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500282 {
Jayanth Othayoth3fc6df42021-04-08 03:45:24 -0500283 if (!std::filesystem::is_directory(p))
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500284 {
Tim Leebb9366d2021-06-24 14:00:07 +0800285 size += std::ceil(std::filesystem::file_size(p) / 1024.0);
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500286 }
287 }
Xie Ningfc69f352022-05-17 16:06:52 +0800288 return size;
289}
290
291size_t Manager::getAllowedSize()
292{
293 // Get current size of the dump directory.
294 auto size = getDirectorySize(dumpDir);
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500295
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500296 // Set the Dump size to Maximum if the free space is greater than
297 // Dump max size otherwise return the available size.
298
299 size = (size > BMC_DUMP_TOTAL_SIZE ? 0 : BMC_DUMP_TOTAL_SIZE - size);
300
Xie Ningfc69f352022-05-17 16:06:52 +0800301#ifdef BMC_DUMP_ROTATE_CONFIG
302 // Delete the first existing file until the space is enough
303 while (size < BMC_DUMP_MIN_SPACE_REQD)
304 {
305 auto delEntry = min_element(
306 entries.begin(), entries.end(),
307 [](const auto& l, const auto& r) { return l.first < r.first; });
308 auto delPath =
309 std::filesystem::path(dumpDir) / std::to_string(delEntry->first);
310
311 size += getDirectorySize(delPath);
312
313 delEntry->second->delete_();
314 }
315#else
316 using namespace sdbusplus::xyz::openbmc_project::Dump::Create::Error;
317 using Reason = xyz::openbmc_project::Dump::Create::QuotaExceeded::REASON;
318
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500319 if (size < BMC_DUMP_MIN_SPACE_REQD)
320 {
321 // Reached to maximum limit
322 elog<QuotaExceeded>(Reason("Not enough space: Delete old dumps"));
323 }
Xie Ningfc69f352022-05-17 16:06:52 +0800324#endif
325
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -0500326 if (size > BMC_DUMP_MAX_SIZE)
327 {
328 size = BMC_DUMP_MAX_SIZE;
329 }
330
331 return size;
332}
333
334} // namespace bmc
335} // namespace dump
336} // namespace phosphor