blob: 7ac8ada6e4b4b7500be9001e5b88694f08b97f5c [file] [log] [blame]
Patrick Williams70a47ba2021-09-02 09:53:31 -05001#include "platform_oem_ibm.hpp"
2
Patrick Williams70a47ba2021-09-02 09:53:31 -05003#include "common/utils.hpp"
4#include "libpldmresponder/pdr.hpp"
5
Andrew Jeffery21f128d2024-01-15 15:34:26 +10306#include <libpldm/oem/ibm/platform.h>
George Liuc453e162022-12-21 17:16:23 +08007
Riya Dixit49cfb132023-03-02 04:26:53 -06008#include <phosphor-logging/lg2.hpp>
ArchanaKakanidcf77d62022-08-29 07:04:09 -05009#include <xyz/openbmc_project/Common/error.hpp>
Pavithra Barithaya7b4d59a2024-02-05 09:09:30 -060010#include <xyz/openbmc_project/State/Boot/Progress/client.hpp>
ArchanaKakanidcf77d62022-08-29 07:04:09 -050011
Patrick Williams70a47ba2021-09-02 09:53:31 -050012#include <iostream>
13
Riya Dixit49cfb132023-03-02 04:26:53 -060014PHOSPHOR_LOG2_USING;
15
Patrick Williams70a47ba2021-09-02 09:53:31 -050016namespace pldm
17{
18namespace responder
19{
20namespace platform
21{
Patrick Williams70a47ba2021-09-02 09:53:31 -050022int sendBiosAttributeUpdateEvent(
Andrew Jefferya330b2f2023-05-04 14:55:37 +093023 uint8_t eid, pldm::InstanceIdDb* instanceIdDb,
Patrick Williams70a47ba2021-09-02 09:53:31 -050024 const std::vector<uint16_t>& handles,
25 pldm::requester::Handler<pldm::requester::Request>* handler)
26{
Pavithra Barithaya7b4d59a2024-02-05 09:09:30 -060027 using BootProgress =
28 sdbusplus::client::xyz::openbmc_project::state::boot::Progress<>;
29
Patrick Williams70a47ba2021-09-02 09:53:31 -050030 constexpr auto hostStatePath = "/xyz/openbmc_project/state/host0";
Patrick Williams70a47ba2021-09-02 09:53:31 -050031 constexpr auto hostStateProperty = "BootProgress";
32
33 try
34 {
35 auto propVal = pldm::utils::DBusHandler().getDbusPropertyVariant(
Pavithra Barithaya7b4d59a2024-02-05 09:09:30 -060036 hostStatePath, hostStateProperty, BootProgress::interface);
Patrick Williamse4e2e822024-02-07 11:00:52 -060037
38 using Stages = BootProgress::ProgressStages;
39 auto currHostState = sdbusplus::message::convert_from_string<Stages>(
40 std::get<std::string>(propVal))
41 .value();
42
43 if (currHostState != Stages::SystemInitComplete &&
44 currHostState != Stages::OSRunning &&
45 currHostState != Stages::SystemSetup)
Patrick Williams70a47ba2021-09-02 09:53:31 -050046 {
47 return PLDM_SUCCESS;
48 }
49 }
ArchanaKakanidcf77d62022-08-29 07:04:09 -050050 catch (
Kamalkumar Patel58cbcaf2023-10-06 03:48:25 -050051 const sdbusplus::xyz::openbmc_project::Common::Error::ResourceNotFound&)
ArchanaKakanidcf77d62022-08-29 07:04:09 -050052 {
53 /* Exception is expected to happen in the case when state manager is
54 * started after pldm, this is expected to happen in reboot case
55 * where host is considered to be up. As host is up pldm is expected
56 * to send attribute update event to host so this is not an error
57 * case */
58 }
Patrick Williams84b790c2022-07-22 19:26:56 -050059 catch (const sdbusplus::exception_t& e)
Patrick Williams70a47ba2021-09-02 09:53:31 -050060 {
Riya Dixit49cfb132023-03-02 04:26:53 -060061 error(
62 "Error in getting current host state, {EXCEP_NAME} Continue sending the bios attribute update event ...",
63 "EXCEP_NAME", e.name());
Patrick Williams70a47ba2021-09-02 09:53:31 -050064 }
65
Andrew Jefferya330b2f2023-05-04 14:55:37 +093066 auto instanceId = instanceIdDb->next(eid);
Patrick Williams70a47ba2021-09-02 09:53:31 -050067
68 std::vector<uint8_t> requestMsg(
69 sizeof(pldm_msg_hdr) + sizeof(pldm_bios_attribute_update_event_req) -
70 1 + (handles.size() * sizeof(uint16_t)),
71 0);
72
73 auto request = reinterpret_cast<pldm_msg*>(requestMsg.data());
74
75 auto rc = encode_bios_attribute_update_event_req(
Manojkiran Eda6a49bb02022-09-02 05:35:26 -050076 instanceId, PLDM_PLATFORM_EVENT_MESSAGE_FORMAT_VERSION, TERMINUS_ID,
77 handles.size(), reinterpret_cast<const uint8_t*>(handles.data()),
Patrick Williams70a47ba2021-09-02 09:53:31 -050078 requestMsg.size() - sizeof(pldm_msg_hdr), request);
79 if (rc != PLDM_SUCCESS)
80 {
Riya Dixit49cfb132023-03-02 04:26:53 -060081 error(
82 "BIOS Attribute update event message encode failure. PLDM error code = {RC}",
83 "RC", lg2::hex, rc);
Andrew Jefferya330b2f2023-05-04 14:55:37 +093084 instanceIdDb->free(eid, instanceId);
Patrick Williams70a47ba2021-09-02 09:53:31 -050085 return rc;
86 }
87
Patrick Williams6da4f912023-05-10 07:50:53 -050088 auto platformEventMessageResponseHandler =
89 [](mctp_eid_t /*eid*/, const pldm_msg* response, size_t respMsgLen) {
Patrick Williams70a47ba2021-09-02 09:53:31 -050090 if (response == nullptr || !respMsgLen)
91 {
Riya Dixit49cfb132023-03-02 04:26:53 -060092 error("Failed to receive response for platform event message");
Patrick Williams70a47ba2021-09-02 09:53:31 -050093 return;
94 }
95 uint8_t completionCode{};
96 uint8_t status{};
97 auto rc = decode_platform_event_message_resp(response, respMsgLen,
98 &completionCode, &status);
99 if (rc || completionCode)
100 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600101 error(
102 "Failed to decode BIOS Attribute update platform_event_message_resp: rc = {RC}, cc= {CC}",
103 "RC", rc, "CC", static_cast<unsigned>(completionCode));
Patrick Williams70a47ba2021-09-02 09:53:31 -0500104 }
105 };
106 rc = handler->registerRequest(
107 eid, instanceId, PLDM_PLATFORM, PLDM_PLATFORM_EVENT_MESSAGE,
108 std::move(requestMsg), std::move(platformEventMessageResponseHandler));
109 if (rc)
110 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600111 error(
112 "Failed to send BIOS Attribute update the platform event message");
Patrick Williams70a47ba2021-09-02 09:53:31 -0500113 }
114
115 return rc;
116}
117
118} // namespace platform
119
120} // namespace responder
121
122} // namespace pldm