| #pragma once |
| |
| #include "dump_manager.hpp" |
| |
| #include <fmt/core.h> |
| #include <systemd/sd-event.h> |
| #include <unistd.h> |
| |
| #include <com/ibm/Dump/Create/server.hpp> |
| #include <phosphor-logging/elog-errors.hpp> |
| #include <phosphor-logging/elog.hpp> |
| #include <sdbusplus/bus.hpp> |
| #include <xyz/openbmc_project/Common/error.hpp> |
| #include <xyz/openbmc_project/Dump/Create/server.hpp> |
| #include <xyz/openbmc_project/State/Boot/Progress/server.hpp> |
| |
| #include <memory> |
| |
| namespace phosphor |
| { |
| namespace dump |
| { |
| |
| using BootProgress = sdbusplus::xyz::openbmc_project::State::Boot::server:: |
| Progress::ProgressStages; |
| |
| using namespace phosphor::logging; |
| using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
| |
| /* Need a custom deleter for freeing up sd_event */ |
| struct EventDeleter |
| { |
| void operator()(sd_event* event) const |
| { |
| event = sd_event_unref(event); |
| } |
| }; |
| using EventPtr = std::unique_ptr<sd_event, EventDeleter>; |
| |
| /** @struct CustomFd |
| * |
| * RAII wrapper for file descriptor. |
| */ |
| struct CustomFd |
| { |
| private: |
| /** @brief File descriptor */ |
| int fd = -1; |
| |
| public: |
| CustomFd() = delete; |
| CustomFd(const CustomFd&) = delete; |
| CustomFd& operator=(const CustomFd&) = delete; |
| CustomFd(CustomFd&&) = delete; |
| CustomFd& operator=(CustomFd&&) = delete; |
| |
| /** @brief Saves File descriptor and uses it to do file operation |
| * |
| * @param[in] fd - File descriptor |
| */ |
| CustomFd(int fd) : fd(fd) |
| {} |
| |
| ~CustomFd() |
| { |
| if (fd >= 0) |
| { |
| close(fd); |
| } |
| } |
| |
| int operator()() const |
| { |
| return fd; |
| } |
| }; |
| |
| /** |
| * @brief Get the bus service |
| * |
| * @param[in] bus - Bus to attach to. |
| * @param[in] path - D-Bus path name. |
| * @param[in] interface - D-Bus interface name. |
| * @return the bus service as a string |
| **/ |
| std::string getService(sdbusplus::bus_t& bus, const std::string& path, |
| const std::string& interface); |
| |
| /** |
| * @brief Get the host boot progress stage |
| * |
| * @return BootProgress on success |
| * Throw exception on failure |
| * |
| */ |
| BootProgress getBootProgress(); |
| |
| /** |
| * @brief Check whether host is running |
| * |
| * @return true if the host running else false. |
| * Throw exception on failure. |
| */ |
| bool isHostRunning(); |
| |
| inline void extractOriginatorProperties(phosphor::dump::DumpCreateParams params, |
| std::string& originatorId, |
| originatorTypes& originatorType) |
| { |
| using InvalidArgument = |
| sdbusplus::xyz::openbmc_project::Common::Error::InvalidArgument; |
| using Argument = xyz::openbmc_project::Common::InvalidArgument; |
| using CreateParametersXYZ = |
| sdbusplus::xyz::openbmc_project::Dump::server::Create::CreateParameters; |
| |
| auto iter = params.find( |
| sdbusplus::xyz::openbmc_project::Dump::server::Create:: |
| convertCreateParametersToString(CreateParametersXYZ::OriginatorId)); |
| if (iter == params.end()) |
| { |
| log<level::INFO>("OriginatorId is not provided"); |
| } |
| else |
| { |
| try |
| { |
| originatorId = std::get<std::string>(iter->second); |
| } |
| catch (const std::bad_variant_access& e) |
| { |
| // Exception will be raised if the input is not string |
| log<level::ERR>( |
| fmt::format( |
| "An invalid originatorId passed. It should be a string, " |
| "errormsg({})", |
| e.what()) |
| .c_str()); |
| elog<InvalidArgument>(Argument::ARGUMENT_NAME("ORIGINATOR_ID"), |
| Argument::ARGUMENT_VALUE("INVALID INPUT")); |
| } |
| } |
| |
| iter = params.find(sdbusplus::xyz::openbmc_project::Dump::server::Create:: |
| convertCreateParametersToString( |
| CreateParametersXYZ::OriginatorType)); |
| if (iter == params.end()) |
| { |
| log<level::INFO>("OriginatorType is not provided. Replacing the string " |
| "with the default value"); |
| originatorType = originatorTypes::Internal; |
| } |
| else |
| { |
| try |
| { |
| std::string type = std::get<std::string>(iter->second); |
| originatorType = sdbusplus::xyz::openbmc_project::Common::server:: |
| OriginatedBy::convertOriginatorTypesFromString(type); |
| } |
| catch (const std::bad_variant_access& e) |
| { |
| // Exception will be raised if the input is not string |
| log<level::ERR>(fmt::format("An invalid originatorType passed, " |
| "errormsg({})", |
| e.what()) |
| .c_str()); |
| elog<InvalidArgument>(Argument::ARGUMENT_NAME("ORIGINATOR_TYPE"), |
| Argument::ARGUMENT_VALUE("INVALID INPUT")); |
| } |
| } |
| } |
| |
| } // namespace dump |
| } // namespace phosphor |