blob: b68ad586e7edf33f3e234763e41a3b94b8e07ccc [file] [log] [blame]
Ramesh Iyyar3af5c322020-12-04 00:38:42 -06001// SPDX-License-Identifier: Apache-2.0
2
3#include "pldm_utils.hpp"
4
5#include "dump_utils.hpp"
6#include "xyz/openbmc_project/Common/error.hpp"
7
George Liu858fbb22021-07-01 12:25:44 +08008#include <fmt/core.h>
9
Ramesh Iyyar3af5c322020-12-04 00:38:42 -060010#include <phosphor-logging/elog-errors.hpp>
11#include <phosphor-logging/log.hpp>
12
13namespace phosphor
14{
15namespace dump
16{
17namespace pldm
18{
19
20using namespace phosphor::logging;
21using NotAllowed = sdbusplus::xyz::openbmc_project::Common::Error::NotAllowed;
22using Reason = xyz::openbmc_project::Common::NotAllowed::REASON;
23
24int openPLDM()
25{
26 auto fd = pldm_open();
27 if (fd < 0)
28 {
29 auto e = errno;
George Liu858fbb22021-07-01 12:25:44 +080030 log<level::ERR>(
31 fmt::format("pldm_open failed, errno({}), FD({})", e, fd).c_str());
Ramesh Iyyar3af5c322020-12-04 00:38:42 -060032 elog<NotAllowed>(Reason("Required host dump action via pldm is not "
33 "allowed due to pldm_open failed"));
34 }
35 return fd;
36}
37
38uint8_t getPLDMInstanceID(uint8_t eid)
39{
40
41 constexpr auto pldmRequester = "xyz.openbmc_project.PLDM.Requester";
42 constexpr auto pldm = "/xyz/openbmc_project/pldm";
43
44 auto bus = sdbusplus::bus::new_default();
45 auto service = phosphor::dump::getService(bus, pldm, pldmRequester);
46
47 auto method = bus.new_method_call(service.c_str(), pldm, pldmRequester,
48 "GetInstanceId");
49 method.append(eid);
50 auto reply = bus.call(method);
51
52 uint8_t instanceID = 0;
53 reply.read(instanceID);
54
55 return instanceID;
56}
57
58} // namespace pldm
59} // namespace dump
60} // namespace phosphor