blob: f510f75fc05e8c143b7be126ac70689cea22aef5 [file] [log] [blame]
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +10001
Manojkiran Edaef773052021-07-29 09:29:28 +05302#include "common/flight_recorder.hpp"
Andrew Jeffery2abbce72023-10-18 10:17:35 +10303#include "common/instance_id.hpp"
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +10004#include "common/transport.hpp"
Deepak Kodihallid130e1a2020-06-17 05:55:32 -05005#include "common/utils.hpp"
Deepak Kodihalli4de4d002019-11-11 02:41:43 -06006#include "dbus_impl_requester.hpp"
Tom Josephfb3bc062021-08-17 07:48:11 -07007#include "fw-update/manager.hpp"
Deepak Kodihallibc669f12019-11-28 08:52:07 -06008#include "invoker.hpp"
Tom Joseph74f27c72021-05-16 07:58:53 -07009#include "requester/handler.hpp"
Tom Josephfb3bc062021-08-17 07:48:11 -070010#include "requester/mctp_endpoint_discovery.hpp"
Tom Joseph74f27c72021-05-16 07:58:53 -070011#include "requester/request.hpp"
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050012
13#include <err.h>
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +053014#include <getopt.h>
George Liuc453e162022-12-21 17:16:23 +080015#include <libpldm/base.h>
16#include <libpldm/bios.h>
17#include <libpldm/pdr.h>
18#include <libpldm/platform.h>
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +100019#include <libpldm/transport.h>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050020#include <poll.h>
21#include <stdlib.h>
22#include <sys/socket.h>
23#include <sys/types.h>
24#include <sys/un.h>
25#include <unistd.h>
26
Riya Dixit49cfb132023-03-02 04:26:53 -060027#include <phosphor-logging/lg2.hpp>
George Liu6492f522020-06-16 10:34:05 +080028#include <sdeventplus/event.hpp>
29#include <sdeventplus/source/io.hpp>
Manojkiran Edaef773052021-07-29 09:29:28 +053030#include <sdeventplus/source/signal.hpp>
31#include <stdplus/signal.hpp>
George Liu6492f522020-06-16 10:34:05 +080032
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050033#include <cstdio>
34#include <cstring>
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050035#include <fstream>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050036#include <iomanip>
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +053037#include <iostream>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050038#include <iterator>
Deepak Kodihallic682fe22020-03-04 00:42:54 -060039#include <memory>
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +100040#include <ranges>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050041#include <sstream>
Deepak Kodihallibc669f12019-11-28 08:52:07 -060042#include <stdexcept>
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +053043#include <string>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050044#include <vector>
45
Riya Dixit49cfb132023-03-02 04:26:53 -060046PHOSPHOR_LOG2_USING;
47
Tom Joseph02b4ee42021-05-02 22:44:36 -070048#ifdef LIBPLDMRESPONDER
49#include "dbus_impl_pdr.hpp"
50#include "host-bmc/dbus_to_event_handler.hpp"
51#include "host-bmc/dbus_to_host_effecters.hpp"
Tom Joseph20aa3e02021-08-17 04:44:19 -070052#include "host-bmc/host_condition.hpp"
Tom Joseph02b4ee42021-05-02 22:44:36 -070053#include "host-bmc/host_pdr_handler.hpp"
54#include "libpldmresponder/base.hpp"
55#include "libpldmresponder/bios.hpp"
56#include "libpldmresponder/fru.hpp"
57#include "libpldmresponder/oem_handler.hpp"
58#include "libpldmresponder/platform.hpp"
Kamalkumar Patel3c50c822024-01-30 07:14:40 -060059#include "libpldmresponder/platform_config.hpp"
Tom Joseph02b4ee42021-05-02 22:44:36 -070060#include "xyz/openbmc_project/PLDM/Event/server.hpp"
61#endif
62
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050063#ifdef OEM_IBM
64#include "libpldmresponder/file_io.hpp"
Sampa Misraaea5dde2020-08-31 08:33:47 -050065#include "libpldmresponder/oem_ibm_handler.hpp"
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050066#endif
67
68constexpr uint8_t MCTP_MSG_TYPE_PLDM = 1;
69
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050070using namespace pldm;
Deepak Kodihalli37998bf2019-11-11 04:06:53 -060071using namespace sdeventplus;
72using namespace sdeventplus::source;
Tom Joseph02b4ee42021-05-02 22:44:36 -070073using namespace pldm::responder;
74using namespace pldm::utils;
Manojkiran Edaef773052021-07-29 09:29:28 +053075using sdeventplus::source::Signal;
76using namespace pldm::flightrecorder;
77
78void interruptFlightRecorderCallBack(Signal& /*signal*/,
79 const struct signalfd_siginfo*)
80{
Riya Dixit49cfb132023-03-02 04:26:53 -060081 error("Received SIGUR1(10) Signal interrupt");
Manojkiran Edaef773052021-07-29 09:29:28 +053082 // obtain the flight recorder instance and dump the recorder
83 FlightRecorder::GetInstance().playRecorder();
84}
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050085
Tom Joseph74f27c72021-05-16 07:58:53 -070086static std::optional<Response>
87 processRxMsg(const std::vector<uint8_t>& requestMsg, Invoker& invoker,
Tom Josephfb3bc062021-08-17 07:48:11 -070088 requester::Handler<requester::Request>& handler,
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +100089 fw_update::Manager* fwManager, pldm_tid_t tid)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050090{
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +100091 uint8_t eid = tid;
92
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050093 pldm_header_info hdrFields{};
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +100094 auto hdr = reinterpret_cast<const pldm_msg_hdr*>(requestMsg.data());
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050095 if (PLDM_SUCCESS != unpack_pldm_header(hdr, &hdrFields))
96 {
Riya Dixit49cfb132023-03-02 04:26:53 -060097 error("Empty PLDM request header");
Tom Joseph74f27c72021-05-16 07:58:53 -070098 return std::nullopt;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050099 }
George Liub7095ff2021-06-14 16:01:57 +0800100
101 if (PLDM_RESPONSE != hdrFields.msg_type)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500102 {
Tom Joseph74f27c72021-05-16 07:58:53 -0700103 Response response;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500104 auto request = reinterpret_cast<const pldm_msg*>(hdr);
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000105 size_t requestLen = requestMsg.size() - sizeof(struct pldm_msg_hdr);
Deepak Kodihallibc669f12019-11-28 08:52:07 -0600106 try
107 {
Tom Josephfb3bc062021-08-17 07:48:11 -0700108 if (hdrFields.pldm_type != PLDM_FWUP)
109 {
Delphine CC Chiud2e48992023-12-05 16:29:51 +0800110 response = invoker.handle(tid, hdrFields.pldm_type,
Patrick Williams6da4f912023-05-10 07:50:53 -0500111 hdrFields.command, request,
112 requestLen);
Tom Josephfb3bc062021-08-17 07:48:11 -0700113 }
114 else
115 {
116 response = fwManager->handleRequest(eid, hdrFields.command,
117 request, requestLen);
118 }
Deepak Kodihallibc669f12019-11-28 08:52:07 -0600119 }
120 catch (const std::out_of_range& e)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500121 {
122 uint8_t completion_code = PLDM_ERROR_UNSUPPORTED_PLDM_CMD;
123 response.resize(sizeof(pldm_msg_hdr));
124 auto responseHdr = reinterpret_cast<pldm_msg_hdr*>(response.data());
125 pldm_header_info header{};
126 header.msg_type = PLDM_RESPONSE;
127 header.instance = hdrFields.instance;
128 header.pldm_type = hdrFields.pldm_type;
129 header.command = hdrFields.command;
George Liub7095ff2021-06-14 16:01:57 +0800130 if (PLDM_SUCCESS != pack_pldm_header(&header, responseHdr))
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500131 {
Kamalkumar Patel58cbcaf2023-10-06 03:48:25 -0500132 error("Failed adding response header: {ERROR}", "ERROR", e);
Tom Joseph74f27c72021-05-16 07:58:53 -0700133 return std::nullopt;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500134 }
135 response.insert(response.end(), completion_code);
136 }
Tom Joseph74f27c72021-05-16 07:58:53 -0700137 return response;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500138 }
Tom Joseph74f27c72021-05-16 07:58:53 -0700139 else if (PLDM_RESPONSE == hdrFields.msg_type)
Deepak Kodihalli4de4d002019-11-11 02:41:43 -0600140 {
Tom Joseph74f27c72021-05-16 07:58:53 -0700141 auto response = reinterpret_cast<const pldm_msg*>(hdr);
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000142 size_t responseLen = requestMsg.size() - sizeof(struct pldm_msg_hdr);
Tom Joseph74f27c72021-05-16 07:58:53 -0700143 handler.handleResponse(eid, hdrFields.instance, hdrFields.pldm_type,
144 hdrFields.command, response, responseLen);
Deepak Kodihalli4de4d002019-11-11 02:41:43 -0600145 }
Tom Joseph74f27c72021-05-16 07:58:53 -0700146 return std::nullopt;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500147}
148
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530149void optionUsage(void)
150{
Riya Dixit797f3382023-08-22 22:27:51 -0500151 info("Usage: pldmd [options]");
152 info("Options:");
153 info(" [--verbose] - would enable verbosity");
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530154}
155
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500156int main(int argc, char** argv)
157{
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530158 bool verbose = false;
Manojkiran Edaf25145f2022-09-10 01:43:39 -0500159 static struct option long_options[] = {{"verbose", no_argument, 0, 'v'},
160 {0, 0, 0, 0}};
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530161
Manojkiran Edaf25145f2022-09-10 01:43:39 -0500162 auto argflag = getopt_long(argc, argv, "v", long_options, nullptr);
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530163 switch (argflag)
164 {
165 case 'v':
Manojkiran Edaf25145f2022-09-10 01:43:39 -0500166 verbose = true;
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530167 break;
Brad Bishopc80f3ef2021-10-07 16:34:13 -0400168 case -1:
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530169 break;
Brad Bishopc80f3ef2021-10-07 16:34:13 -0400170 default:
Manojkiran Edaf25145f2022-09-10 01:43:39 -0500171 optionUsage();
Brad Bishopc80f3ef2021-10-07 16:34:13 -0400172 exit(EXIT_FAILURE);
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530173 }
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000174 // Setup PLDM requester transport
175 auto hostEID = pldm::utils::readHostEID();
176 /* To maintain current behaviour until we have the infrastructure to find
177 * and use the correct TIDs */
178 pldm_tid_t TID = hostEID;
179 PldmTransport pldmTransport{};
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500180 auto event = Event::get_default();
Tom Joseph02b4ee42021-05-02 22:44:36 -0700181 auto& bus = pldm::utils::DBusHandler::getBus();
Patrick Williams84b790c2022-07-22 19:26:56 -0500182 sdbusplus::server::manager_t objManager(bus,
183 "/xyz/openbmc_project/software");
Andrew Jeffery7c1dc7e2023-04-28 14:52:16 +0930184
185 InstanceIdDb instanceIdDb;
186 dbus_api::Requester dbusImplReq(bus, "/xyz/openbmc_project/pldm",
187 instanceIdDb);
Patrick Williams705fa982023-09-27 02:32:20 -0500188 sdbusplus::server::manager_t inventoryManager(
George Liu682ee182020-12-25 15:24:33 +0800189 bus, "/xyz/openbmc_project/inventory");
Pavithra Barithaya319ebb32021-05-06 06:09:11 -0500190
Tom Joseph02b4ee42021-05-02 22:44:36 -0700191 Invoker invoker{};
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000192 requester::Handler<requester::Request> reqHandler(&pldmTransport, event,
193 instanceIdDb, verbose);
Manojkiran Eda9fffea22021-10-27 16:03:27 +0530194
Tom Joseph02b4ee42021-05-02 22:44:36 -0700195#ifdef LIBPLDMRESPONDER
196 using namespace pldm::state_sensor;
Tom Joseph20aa3e02021-08-17 04:44:19 -0700197 dbus_api::Host dbusImplHost(bus, "/xyz/openbmc_project/pldm");
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500198 std::unique_ptr<pldm_pdr, decltype(&pldm_pdr_destroy)> pdrRepo(
199 pldm_pdr_init(), pldm_pdr_destroy);
Andrew Jefferyacb20292023-06-30 11:47:44 +0930200 if (!pdrRepo)
201 {
202 throw std::runtime_error("Failed to instantiate PDR repository");
203 }
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500204 std::unique_ptr<pldm_entity_association_tree,
205 decltype(&pldm_entity_association_tree_destroy)>
206 entityTree(pldm_entity_association_tree_init(),
207 pldm_entity_association_tree_destroy);
Andrew Jefferyabcd6ca2023-06-30 13:53:35 +0930208 if (!entityTree)
209 {
210 throw std::runtime_error(
211 "Failed to instantiate general PDR entity association tree");
212 }
Sampa Misrac073a202021-05-08 10:56:05 -0500213 std::unique_ptr<pldm_entity_association_tree,
214 decltype(&pldm_entity_association_tree_destroy)>
215 bmcEntityTree(pldm_entity_association_tree_init(),
216 pldm_entity_association_tree_destroy);
Andrew Jefferyabcd6ca2023-06-30 13:53:35 +0930217 if (!bmcEntityTree)
218 {
219 throw std::runtime_error(
220 "Failed to instantiate BMC PDR entity association tree");
221 }
Pavithra Barithaya319ebb32021-05-06 06:09:11 -0500222 std::shared_ptr<HostPDRHandler> hostPDRHandler;
Sampa Misrac0c60542020-07-01 02:34:25 -0500223 std::unique_ptr<pldm::host_effecters::HostEffecterParser>
224 hostEffecterParser;
George Liucae18662020-05-15 09:32:57 +0800225 std::unique_ptr<DbusToPLDMEvent> dbusToPLDMEventHandler;
Brad Bishopfc0d14d2021-10-12 19:34:20 -0400226 DBusHandler dbusHandler;
Sampa Misraaea5dde2020-08-31 08:33:47 -0500227 std::unique_ptr<oem_platform::Handler> oemPlatformHandler{};
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600228 std::unique_ptr<platform_config::Handler> platformConfigHandler{};
229 platformConfigHandler = std::make_unique<platform_config::Handler>();
Sampa Misraaea5dde2020-08-31 08:33:47 -0500230#ifdef OEM_IBM
231 std::unique_ptr<pldm::responder::CodeUpdate> codeUpdate =
Brad Bishopfc0d14d2021-10-12 19:34:20 -0400232 std::make_unique<pldm::responder::CodeUpdate>(&dbusHandler);
Varsha Kaverappa3ca29df2020-09-27 12:39:22 -0500233 codeUpdate->clearDirPath(LID_STAGING_DIR);
Sampa Misraaea5dde2020-08-31 08:33:47 -0500234 oemPlatformHandler = std::make_unique<oem_ibm_platform::Handler>(
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000235 &dbusHandler, codeUpdate.get(), pldmTransport.getEventSource(), hostEID,
236 instanceIdDb, event, &reqHandler);
Sampa Misraaea5dde2020-08-31 08:33:47 -0500237 codeUpdate->setOemPlatformHandler(oemPlatformHandler.get());
Sampa Misrac0c79482021-06-02 08:01:54 -0500238 invoker.registerHandler(PLDM_OEM, std::make_unique<oem_ibm::Handler>(
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000239 oemPlatformHandler.get(),
240 pldmTransport.getEventSource(),
Andrew Jefferya330b2f2023-05-04 14:55:37 +0930241 hostEID, &instanceIdDb, &reqHandler));
Sampa Misraaea5dde2020-08-31 08:33:47 -0500242#endif
Sagar Srinivas3687e2b2023-04-10 05:08:28 -0500243 if (hostEID)
244 {
245 hostPDRHandler = std::make_shared<HostPDRHandler>(
246 pldmTransport.getEventSource(), hostEID, event, pdrRepo.get(),
247 EVENTS_JSONS_DIR, entityTree.get(), bmcEntityTree.get(),
248 instanceIdDb, &reqHandler, oemPlatformHandler.get());
249 // HostFirmware interface needs access to hostPDR to know if host
250 // is running
251 dbusImplHost.setHostPdrObj(hostPDRHandler);
Sagar Srinivas11ce8d22022-07-28 11:32:34 -0500252
Sagar Srinivas3687e2b2023-04-10 05:08:28 -0500253 hostEffecterParser =
254 std::make_unique<pldm::host_effecters::HostEffecterParser>(
255 &instanceIdDb, pldmTransport.getEventSource(), pdrRepo.get(),
256 &dbusHandler, HOST_JSONS_DIR, &reqHandler);
257 dbusToPLDMEventHandler = std::make_unique<DbusToPLDMEvent>(
258 pldmTransport.getEventSource(), hostEID, instanceIdDb, &reqHandler);
259 }
Sagar Srinivas11ce8d22022-07-28 11:32:34 -0500260 auto biosHandler = std::make_unique<bios::Handler>(
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000261 pldmTransport.getEventSource(), hostEID, &instanceIdDb, &reqHandler,
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600262 platformConfigHandler.get());
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530263 auto fruHandler = std::make_unique<fru::Handler>(
Manojkiran Eda03b01ca2021-06-29 08:55:09 +0530264 FRU_JSONS_DIR, FRU_MASTER_JSON, pdrRepo.get(), entityTree.get(),
265 bmcEntityTree.get());
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530266 // FRU table is built lazily when a FRU command or Get PDR command is
267 // handled. To enable building FRU table, the FRU handler is passed to the
268 // Platform handler.
Sampa Misraaea5dde2020-08-31 08:33:47 -0500269 auto platformHandler = std::make_unique<platform::Handler>(
Sagar Srinivas90314a32023-10-17 10:38:03 -0500270 &dbusHandler, hostEID, &instanceIdDb, PDR_JSONS_DIR, pdrRepo.get(),
271 hostPDRHandler.get(), dbusToPLDMEventHandler.get(), fruHandler.get(),
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600272 oemPlatformHandler.get(), platformConfigHandler.get(), &reqHandler,
273 event, true);
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500274#ifdef OEM_IBM
Sampa Misraaea5dde2020-08-31 08:33:47 -0500275 pldm::responder::oem_ibm_platform::Handler* oemIbmPlatformHandler =
276 dynamic_cast<pldm::responder::oem_ibm_platform::Handler*>(
277 oemPlatformHandler.get());
278 oemIbmPlatformHandler->setPlatformHandler(platformHandler.get());
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500279#endif
280
Sagar Srinivas11ce8d22022-07-28 11:32:34 -0500281 invoker.registerHandler(PLDM_BIOS, std::move(biosHandler));
Sampa Misraaea5dde2020-08-31 08:33:47 -0500282 invoker.registerHandler(PLDM_PLATFORM, std::move(platformHandler));
Sagar Srinivas90314a32023-10-17 10:38:03 -0500283 invoker.registerHandler(PLDM_BASE, std::make_unique<base::Handler>(
284 event, oemPlatformHandler.get()));
Sampa Misraaea5dde2020-08-31 08:33:47 -0500285 invoker.registerHandler(PLDM_FRU, std::move(fruHandler));
Tom Joseph02b4ee42021-05-02 22:44:36 -0700286 dbus_api::Pdr dbusImplPdr(bus, "/xyz/openbmc_project/pldm", pdrRepo.get());
287 sdbusplus::xyz::openbmc_project::PLDM::server::Event dbusImplEvent(
288 bus, "/xyz/openbmc_project/pldm");
Tom Joseph20aa3e02021-08-17 04:44:19 -0700289
Tom Joseph02b4ee42021-05-02 22:44:36 -0700290#endif
Sampa Misraaea5dde2020-08-31 08:33:47 -0500291
Tom Josephfb3bc062021-08-17 07:48:11 -0700292 std::unique_ptr<fw_update::Manager> fwManager =
Andrew Jefferya330b2f2023-05-04 14:55:37 +0930293 std::make_unique<fw_update::Manager>(event, reqHandler, instanceIdDb);
Tom Josephfb3bc062021-08-17 07:48:11 -0700294 std::unique_ptr<MctpDiscovery> mctpDiscoveryHandler =
295 std::make_unique<MctpDiscovery>(bus, fwManager.get());
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000296 auto callback = [verbose, &invoker, &reqHandler, &fwManager, &pldmTransport,
297 TID](IO& io, int fd, uint32_t revents) mutable {
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600298 if (!(revents & EPOLLIN))
299 {
300 return;
301 }
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000302 if (fd < 0)
303 {
304 return;
305 }
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600306
307 int returnCode = 0;
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000308 void* requestMsg;
309 size_t recvDataLength;
310 returnCode = pldmTransport.recvMsg(TID, requestMsg, recvDataLength);
311
312 if (returnCode == PLDM_REQUESTER_SUCCESS)
313 {
314 std::vector<uint8_t> requestMsgVec(
315 static_cast<uint8_t*>(requestMsg),
316 static_cast<uint8_t*>(requestMsg) + recvDataLength);
317 FlightRecorder::GetInstance().saveRecord(requestMsgVec, false);
318 if (verbose)
319 {
320 printBuffer(Rx, requestMsgVec);
321 }
322 // process message and send response
323 auto response = processRxMsg(requestMsgVec, invoker, reqHandler,
324 fwManager.get(), TID);
325 if (response.has_value())
326 {
327 FlightRecorder::GetInstance().saveRecord(*response, true);
328 if (verbose)
329 {
330 printBuffer(Tx, *response);
331 }
332
333 returnCode = pldmTransport.sendMsg(TID, (*response).data(),
334 (*response).size());
335 if (returnCode != PLDM_REQUESTER_SUCCESS)
336 {
337 warning("Failed to send PLDM response: {RETURN_CODE}",
338 "RETURN_CODE", returnCode);
339 }
340 }
341 }
342 // TODO check that we get here if mctp-demux dies?
343 else if (returnCode == PLDM_REQUESTER_RECV_FAIL)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500344 {
Deepak Kodihalli23c52042020-09-01 03:04:32 -0500345 // MCTP daemon has closed the socket this daemon is connected to.
346 // This may or may not be an error scenario, in either case the
347 // recovery mechanism for this daemon is to restart, and hence exit
348 // the event loop, that will cause this daemon to exit with a
349 // failure code.
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000350 error("io exiting");
Deepak Kodihalli23c52042020-09-01 03:04:32 -0500351 io.get_event().exit(0);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500352 }
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500353 else
354 {
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000355 warning("Failed to receive PLDM request: {RETURN_CODE}",
356 "RETURN_CODE", returnCode);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500357 }
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600358 };
359
Deepak Kodihalli4de4d002019-11-11 02:41:43 -0600360 bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL);
361 bus.request_name("xyz.openbmc_project.PLDM");
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000362 IO io(event, pldmTransport.getEventSource(), EPOLLIN, std::move(callback));
Manojkiran Eda88bc7182021-09-08 18:37:30 +0530363#ifdef LIBPLDMRESPONDER
364 if (hostPDRHandler)
365 {
366 hostPDRHandler->setHostFirmwareCondition();
367 }
368#endif
Manojkiran Edaef773052021-07-29 09:29:28 +0530369 stdplus::signal::block(SIGUSR1);
370 sdeventplus::source::Signal sigUsr1(
371 event, SIGUSR1, std::bind_front(&interruptFlightRecorderCallBack));
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000372 int returnCode = event.loop();
Brad Bishop3a22b972021-10-07 17:01:58 -0400373 if (returnCode)
374 {
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500375 exit(EXIT_FAILURE);
376 }
Brad Bishop3a22b972021-10-07 17:01:58 -0400377
378 exit(EXIT_SUCCESS);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500379}