blob: 4aa30499eba6112055d9d3cdc67885c9b874839f [file] [log] [blame]
#include "config.h"
#include "dump_manager_system.hpp"
#include "dump_utils.hpp"
#include "op_dump_consts.hpp"
#include "system_dump_entry.hpp"
#include "xyz/openbmc_project/Common/error.hpp"
#include <fmt/core.h>
#include <phosphor-logging/elog-errors.hpp>
#include <phosphor-logging/elog.hpp>
namespace openpower
{
namespace dump
{
namespace system
{
using namespace phosphor::logging;
using namespace sdbusplus::xyz::openbmc_project::Common::Error;
void Manager::notify(uint32_t dumpId, uint64_t size)
{
// Get the timestamp
uint64_t timeStamp =
std::chrono::duration_cast<std::chrono::microseconds>(
std::chrono::system_clock::now().time_since_epoch())
.count();
// System dump can get created due to a fault in server
// or by request from user. A system dump by fault is
// first reported here, but for a user requested dump an
// entry will be created first with invalid source id.
// Since there can be only one system dump creation at a time,
// if there is an entry with invalid sourceId update that.
for (auto& entry : entries)
{
openpower::dump::system::Entry* sysEntry =
dynamic_cast<openpower::dump::system::Entry*>(entry.second.get());
if (sysEntry->sourceDumpId() == INVALID_SOURCE_ID)
{
sysEntry->update(timeStamp, size, dumpId);
return;
}
}
// Get the id
auto id = lastEntryId + 1;
auto idString = std::to_string(id);
auto objPath = std::filesystem::path(baseEntryPath) / idString;
// TODO: Get the originator Id, Type from the persisted file.
// For now replacing it with null
try
{
entries.insert(std::make_pair(
id, std::make_unique<system::Entry>(
bus, objPath.c_str(), id, timeStamp, size, dumpId,
phosphor::dump::OperationStatus::Completed, std::string(),
originatorTypes::Internal, *this)));
}
catch (const std::invalid_argument& e)
{
log<level::ERR>(
fmt::format(
"Error in creating system dump entry, errormsg({}), "
"OBJECTPATH({}), ID({}), TIMESTAMP({}),SIZE({}), SOURCEID({})",
e.what(), objPath.c_str(), id, timeStamp, size, dumpId)
.c_str());
report<InternalFailure>();
return;
}
lastEntryId++;
return;
}
sdbusplus::message::object_path
Manager::createDump(phosphor::dump::DumpCreateParams params)
{
constexpr auto SYSTEMD_SERVICE = "org.freedesktop.systemd1";
constexpr auto SYSTEMD_OBJ_PATH = "/org/freedesktop/systemd1";
constexpr auto SYSTEMD_INTERFACE = "org.freedesktop.systemd1.Manager";
constexpr auto DIAG_MOD_TARGET = "obmc-host-crash@0.target";
if (params.size() > CREATE_DUMP_MAX_PARAMS)
{
log<level::WARNING>(
"System dump accepts not more than 2 additional parameters");
}
using NotAllowed =
sdbusplus::xyz::openbmc_project::Common::Error::NotAllowed;
using Reason = xyz::openbmc_project::Common::NotAllowed::REASON;
// Allow creating system dump only when the host is up.
if (!phosphor::dump::isHostRunning())
{
elog<NotAllowed>(
Reason("System dump can be initiated only when the host is up"));
return std::string();
}
// Get the originator id and type from params
std::string originatorId;
originatorTypes originatorType;
phosphor::dump::extractOriginatorProperties(params, originatorId,
originatorType);
auto b = sdbusplus::bus::new_default();
auto method = bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH,
SYSTEMD_INTERFACE, "StartUnit");
method.append(DIAG_MOD_TARGET); // unit to activate
method.append("replace");
bus.call_noreply(method);
auto id = lastEntryId + 1;
auto idString = std::to_string(id);
auto objPath = std::filesystem::path(baseEntryPath) / idString;
uint64_t timeStamp =
std::chrono::duration_cast<std::chrono::microseconds>(
std::chrono::system_clock::now().time_since_epoch())
.count();
try
{
entries.insert(std::make_pair(
id, std::make_unique<system::Entry>(
bus, objPath.c_str(), id, timeStamp, 0, INVALID_SOURCE_ID,
phosphor::dump::OperationStatus::InProgress, originatorId,
originatorType, *this)));
}
catch (const std::invalid_argument& e)
{
log<level::ERR>(
fmt::format("Error in creating system dump entry, errormsg({}), "
"OBJECTPATH({}), ID({})",
e.what(), objPath.c_str(), id)
.c_str());
elog<InternalFailure>();
return std::string();
}
lastEntryId++;
return objPath.string();
}
} // namespace system
} // namespace dump
} // namespace openpower