blob: 1030c8e784838c662d24731dc97b4aa3333bad77 [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>
37#include <iterator>
Deepak Kodihallic682fe22020-03-04 00:42:54 -060038#include <memory>
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +100039#include <ranges>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050040#include <sstream>
Deepak Kodihallibc669f12019-11-28 08:52:07 -060041#include <stdexcept>
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +053042#include <string>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050043#include <vector>
44
Riya Dixit49cfb132023-03-02 04:26:53 -060045PHOSPHOR_LOG2_USING;
46
Tom Joseph02b4ee42021-05-02 22:44:36 -070047#ifdef LIBPLDMRESPONDER
48#include "dbus_impl_pdr.hpp"
49#include "host-bmc/dbus_to_event_handler.hpp"
50#include "host-bmc/dbus_to_host_effecters.hpp"
Tom Joseph20aa3e02021-08-17 04:44:19 -070051#include "host-bmc/host_condition.hpp"
Tom Joseph02b4ee42021-05-02 22:44:36 -070052#include "host-bmc/host_pdr_handler.hpp"
53#include "libpldmresponder/base.hpp"
54#include "libpldmresponder/bios.hpp"
55#include "libpldmresponder/fru.hpp"
56#include "libpldmresponder/oem_handler.hpp"
57#include "libpldmresponder/platform.hpp"
Kamalkumar Patel3c50c822024-01-30 07:14:40 -060058#include "libpldmresponder/platform_config.hpp"
Tom Joseph02b4ee42021-05-02 22:44:36 -070059#include "xyz/openbmc_project/PLDM/Event/server.hpp"
60#endif
61
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050062#ifdef OEM_IBM
63#include "libpldmresponder/file_io.hpp"
Pavithra Barithayaa410c652021-07-22 01:32:47 -050064#include "libpldmresponder/fru_oem_ibm.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
Archana Kakani62dd8ff2024-02-12 10:00:40 -060086void requestPLDMServiceName()
87{
88 auto& bus = pldm::utils::DBusHandler::getBus();
89 bus.request_name("xyz.openbmc_project.PLDM");
90}
91
Tom Joseph74f27c72021-05-16 07:58:53 -070092static std::optional<Response>
93 processRxMsg(const std::vector<uint8_t>& requestMsg, Invoker& invoker,
Tom Josephfb3bc062021-08-17 07:48:11 -070094 requester::Handler<requester::Request>& handler,
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +100095 fw_update::Manager* fwManager, pldm_tid_t tid)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050096{
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +100097 uint8_t eid = tid;
98
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050099 pldm_header_info hdrFields{};
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000100 auto hdr = reinterpret_cast<const pldm_msg_hdr*>(requestMsg.data());
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500101 if (PLDM_SUCCESS != unpack_pldm_header(hdr, &hdrFields))
102 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600103 error("Empty PLDM request header");
Tom Joseph74f27c72021-05-16 07:58:53 -0700104 return std::nullopt;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500105 }
George Liub7095ff2021-06-14 16:01:57 +0800106
107 if (PLDM_RESPONSE != hdrFields.msg_type)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500108 {
Tom Joseph74f27c72021-05-16 07:58:53 -0700109 Response response;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500110 auto request = reinterpret_cast<const pldm_msg*>(hdr);
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000111 size_t requestLen = requestMsg.size() - sizeof(struct pldm_msg_hdr);
Deepak Kodihallibc669f12019-11-28 08:52:07 -0600112 try
113 {
Tom Josephfb3bc062021-08-17 07:48:11 -0700114 if (hdrFields.pldm_type != PLDM_FWUP)
115 {
Delphine CC Chiud2e48992023-12-05 16:29:51 +0800116 response = invoker.handle(tid, hdrFields.pldm_type,
Patrick Williams6da4f912023-05-10 07:50:53 -0500117 hdrFields.command, request,
118 requestLen);
Tom Josephfb3bc062021-08-17 07:48:11 -0700119 }
120 else
121 {
122 response = fwManager->handleRequest(eid, hdrFields.command,
123 request, requestLen);
124 }
Deepak Kodihallibc669f12019-11-28 08:52:07 -0600125 }
126 catch (const std::out_of_range& e)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500127 {
128 uint8_t completion_code = PLDM_ERROR_UNSUPPORTED_PLDM_CMD;
129 response.resize(sizeof(pldm_msg_hdr));
130 auto responseHdr = reinterpret_cast<pldm_msg_hdr*>(response.data());
131 pldm_header_info header{};
132 header.msg_type = PLDM_RESPONSE;
133 header.instance = hdrFields.instance;
134 header.pldm_type = hdrFields.pldm_type;
135 header.command = hdrFields.command;
George Liub7095ff2021-06-14 16:01:57 +0800136 if (PLDM_SUCCESS != pack_pldm_header(&header, responseHdr))
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500137 {
Riya Dixit087a7512024-04-06 14:28:08 -0500138 error(
139 "Failed to add response header for processing Rx, error - {ERROR}",
140 "ERROR", e);
Tom Joseph74f27c72021-05-16 07:58:53 -0700141 return std::nullopt;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500142 }
143 response.insert(response.end(), completion_code);
144 }
Tom Joseph74f27c72021-05-16 07:58:53 -0700145 return response;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500146 }
Tom Joseph74f27c72021-05-16 07:58:53 -0700147 else if (PLDM_RESPONSE == hdrFields.msg_type)
Deepak Kodihalli4de4d002019-11-11 02:41:43 -0600148 {
Tom Joseph74f27c72021-05-16 07:58:53 -0700149 auto response = reinterpret_cast<const pldm_msg*>(hdr);
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000150 size_t responseLen = requestMsg.size() - sizeof(struct pldm_msg_hdr);
Tom Joseph74f27c72021-05-16 07:58:53 -0700151 handler.handleResponse(eid, hdrFields.instance, hdrFields.pldm_type,
152 hdrFields.command, response, responseLen);
Deepak Kodihalli4de4d002019-11-11 02:41:43 -0600153 }
Tom Joseph74f27c72021-05-16 07:58:53 -0700154 return std::nullopt;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500155}
156
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530157void optionUsage(void)
158{
Riya Dixit797f3382023-08-22 22:27:51 -0500159 info("Usage: pldmd [options]");
160 info("Options:");
161 info(" [--verbose] - would enable verbosity");
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530162}
163
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500164int main(int argc, char** argv)
165{
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530166 bool verbose = false;
Manojkiran Edaf25145f2022-09-10 01:43:39 -0500167 static struct option long_options[] = {{"verbose", no_argument, 0, 'v'},
168 {0, 0, 0, 0}};
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530169
Manojkiran Edaf25145f2022-09-10 01:43:39 -0500170 auto argflag = getopt_long(argc, argv, "v", long_options, nullptr);
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530171 switch (argflag)
172 {
173 case 'v':
Manojkiran Edaf25145f2022-09-10 01:43:39 -0500174 verbose = true;
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530175 break;
Brad Bishopc80f3ef2021-10-07 16:34:13 -0400176 case -1:
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530177 break;
Brad Bishopc80f3ef2021-10-07 16:34:13 -0400178 default:
Manojkiran Edaf25145f2022-09-10 01:43:39 -0500179 optionUsage();
Brad Bishopc80f3ef2021-10-07 16:34:13 -0400180 exit(EXIT_FAILURE);
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530181 }
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000182 // Setup PLDM requester transport
183 auto hostEID = pldm::utils::readHostEID();
184 /* To maintain current behaviour until we have the infrastructure to find
185 * and use the correct TIDs */
186 pldm_tid_t TID = hostEID;
187 PldmTransport pldmTransport{};
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500188 auto event = Event::get_default();
Tom Joseph02b4ee42021-05-02 22:44:36 -0700189 auto& bus = pldm::utils::DBusHandler::getBus();
Patrick Williams84b790c2022-07-22 19:26:56 -0500190 sdbusplus::server::manager_t objManager(bus,
191 "/xyz/openbmc_project/software");
Andrew Jeffery7c1dc7e2023-04-28 14:52:16 +0930192
193 InstanceIdDb instanceIdDb;
194 dbus_api::Requester dbusImplReq(bus, "/xyz/openbmc_project/pldm",
195 instanceIdDb);
Patrick Williams705fa982023-09-27 02:32:20 -0500196 sdbusplus::server::manager_t inventoryManager(
George Liu682ee182020-12-25 15:24:33 +0800197 bus, "/xyz/openbmc_project/inventory");
Pavithra Barithaya319ebb32021-05-06 06:09:11 -0500198
Tom Joseph02b4ee42021-05-02 22:44:36 -0700199 Invoker invoker{};
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000200 requester::Handler<requester::Request> reqHandler(&pldmTransport, event,
201 instanceIdDb, verbose);
Manojkiran Eda9fffea22021-10-27 16:03:27 +0530202
Tom Joseph02b4ee42021-05-02 22:44:36 -0700203#ifdef LIBPLDMRESPONDER
204 using namespace pldm::state_sensor;
Tom Joseph20aa3e02021-08-17 04:44:19 -0700205 dbus_api::Host dbusImplHost(bus, "/xyz/openbmc_project/pldm");
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500206 std::unique_ptr<pldm_pdr, decltype(&pldm_pdr_destroy)> pdrRepo(
207 pldm_pdr_init(), pldm_pdr_destroy);
Andrew Jefferyacb20292023-06-30 11:47:44 +0930208 if (!pdrRepo)
209 {
210 throw std::runtime_error("Failed to instantiate PDR repository");
211 }
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500212 std::unique_ptr<pldm_entity_association_tree,
213 decltype(&pldm_entity_association_tree_destroy)>
214 entityTree(pldm_entity_association_tree_init(),
215 pldm_entity_association_tree_destroy);
Andrew Jefferyabcd6ca2023-06-30 13:53:35 +0930216 if (!entityTree)
217 {
218 throw std::runtime_error(
219 "Failed to instantiate general PDR entity association tree");
220 }
Sampa Misrac073a202021-05-08 10:56:05 -0500221 std::unique_ptr<pldm_entity_association_tree,
222 decltype(&pldm_entity_association_tree_destroy)>
223 bmcEntityTree(pldm_entity_association_tree_init(),
224 pldm_entity_association_tree_destroy);
Andrew Jefferyabcd6ca2023-06-30 13:53:35 +0930225 if (!bmcEntityTree)
226 {
227 throw std::runtime_error(
228 "Failed to instantiate BMC PDR entity association tree");
229 }
Pavithra Barithaya319ebb32021-05-06 06:09:11 -0500230 std::shared_ptr<HostPDRHandler> hostPDRHandler;
Sampa Misrac0c60542020-07-01 02:34:25 -0500231 std::unique_ptr<pldm::host_effecters::HostEffecterParser>
232 hostEffecterParser;
George Liucae18662020-05-15 09:32:57 +0800233 std::unique_ptr<DbusToPLDMEvent> dbusToPLDMEventHandler;
Brad Bishopfc0d14d2021-10-12 19:34:20 -0400234 DBusHandler dbusHandler;
Sampa Misraaea5dde2020-08-31 08:33:47 -0500235 std::unique_ptr<oem_platform::Handler> oemPlatformHandler{};
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600236 std::unique_ptr<platform_config::Handler> platformConfigHandler{};
237 platformConfigHandler = std::make_unique<platform_config::Handler>();
Pavithra Barithayaa410c652021-07-22 01:32:47 -0500238 std::unique_ptr<oem_fru::Handler> oemFruHandler{};
239
Sampa Misraaea5dde2020-08-31 08:33:47 -0500240#ifdef OEM_IBM
241 std::unique_ptr<pldm::responder::CodeUpdate> codeUpdate =
Brad Bishopfc0d14d2021-10-12 19:34:20 -0400242 std::make_unique<pldm::responder::CodeUpdate>(&dbusHandler);
Varsha Kaverappa3ca29df2020-09-27 12:39:22 -0500243 codeUpdate->clearDirPath(LID_STAGING_DIR);
Sampa Misraaea5dde2020-08-31 08:33:47 -0500244 oemPlatformHandler = std::make_unique<oem_ibm_platform::Handler>(
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000245 &dbusHandler, codeUpdate.get(), pldmTransport.getEventSource(), hostEID,
246 instanceIdDb, event, &reqHandler);
Sampa Misraaea5dde2020-08-31 08:33:47 -0500247 codeUpdate->setOemPlatformHandler(oemPlatformHandler.get());
Pavithra Barithayaa410c652021-07-22 01:32:47 -0500248 oemFruHandler = std::make_unique<oem_ibm_fru::Handler>(pdrRepo.get());
Sampa Misrac0c79482021-06-02 08:01:54 -0500249 invoker.registerHandler(PLDM_OEM, std::make_unique<oem_ibm::Handler>(
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000250 oemPlatformHandler.get(),
251 pldmTransport.getEventSource(),
Andrew Jefferya330b2f2023-05-04 14:55:37 +0930252 hostEID, &instanceIdDb, &reqHandler));
Sampa Misraaea5dde2020-08-31 08:33:47 -0500253#endif
Sagar Srinivas3687e2b2023-04-10 05:08:28 -0500254 if (hostEID)
255 {
256 hostPDRHandler = std::make_shared<HostPDRHandler>(
257 pldmTransport.getEventSource(), hostEID, event, pdrRepo.get(),
258 EVENTS_JSONS_DIR, entityTree.get(), bmcEntityTree.get(),
259 instanceIdDb, &reqHandler, oemPlatformHandler.get());
260 // HostFirmware interface needs access to hostPDR to know if host
261 // is running
262 dbusImplHost.setHostPdrObj(hostPDRHandler);
Sagar Srinivas11ce8d22022-07-28 11:32:34 -0500263
Sagar Srinivas3687e2b2023-04-10 05:08:28 -0500264 hostEffecterParser =
265 std::make_unique<pldm::host_effecters::HostEffecterParser>(
266 &instanceIdDb, pldmTransport.getEventSource(), pdrRepo.get(),
267 &dbusHandler, HOST_JSONS_DIR, &reqHandler);
268 dbusToPLDMEventHandler = std::make_unique<DbusToPLDMEvent>(
269 pldmTransport.getEventSource(), hostEID, instanceIdDb, &reqHandler);
270 }
Sagar Srinivas11ce8d22022-07-28 11:32:34 -0500271 auto biosHandler = std::make_unique<bios::Handler>(
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000272 pldmTransport.getEventSource(), hostEID, &instanceIdDb, &reqHandler,
Archana Kakani62dd8ff2024-02-12 10:00:40 -0600273 platformConfigHandler.get(), requestPLDMServiceName);
Pavithra Barithayaa410c652021-07-22 01:32:47 -0500274
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530275 auto fruHandler = std::make_unique<fru::Handler>(
Manojkiran Eda03b01ca2021-06-29 08:55:09 +0530276 FRU_JSONS_DIR, FRU_MASTER_JSON, pdrRepo.get(), entityTree.get(),
Pavithra Barithayaa410c652021-07-22 01:32:47 -0500277 bmcEntityTree.get(), oemFruHandler.get());
278
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530279 // FRU table is built lazily when a FRU command or Get PDR command is
280 // handled. To enable building FRU table, the FRU handler is passed to the
281 // Platform handler.
Sampa Misraaea5dde2020-08-31 08:33:47 -0500282 auto platformHandler = std::make_unique<platform::Handler>(
Sagar Srinivas90314a32023-10-17 10:38:03 -0500283 &dbusHandler, hostEID, &instanceIdDb, PDR_JSONS_DIR, pdrRepo.get(),
284 hostPDRHandler.get(), dbusToPLDMEventHandler.get(), fruHandler.get(),
Kamalkumar Patel3c50c822024-01-30 07:14:40 -0600285 oemPlatformHandler.get(), platformConfigHandler.get(), &reqHandler,
286 event, true);
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500287#ifdef OEM_IBM
Sampa Misraaea5dde2020-08-31 08:33:47 -0500288 pldm::responder::oem_ibm_platform::Handler* oemIbmPlatformHandler =
289 dynamic_cast<pldm::responder::oem_ibm_platform::Handler*>(
290 oemPlatformHandler.get());
291 oemIbmPlatformHandler->setPlatformHandler(platformHandler.get());
Pavithra Barithayaa410c652021-07-22 01:32:47 -0500292
293 pldm::responder::oem_ibm_fru::Handler* oemIbmFruHandler =
294 dynamic_cast<pldm::responder::oem_ibm_fru::Handler*>(
295 oemFruHandler.get());
296 oemIbmFruHandler->setIBMFruHandler(fruHandler.get());
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500297#endif
298
Sagar Srinivas11ce8d22022-07-28 11:32:34 -0500299 invoker.registerHandler(PLDM_BIOS, std::move(biosHandler));
Sampa Misraaea5dde2020-08-31 08:33:47 -0500300 invoker.registerHandler(PLDM_PLATFORM, std::move(platformHandler));
Sagar Srinivas90314a32023-10-17 10:38:03 -0500301 invoker.registerHandler(PLDM_BASE, std::make_unique<base::Handler>(
302 event, oemPlatformHandler.get()));
Sampa Misraaea5dde2020-08-31 08:33:47 -0500303 invoker.registerHandler(PLDM_FRU, std::move(fruHandler));
Tom Joseph02b4ee42021-05-02 22:44:36 -0700304 dbus_api::Pdr dbusImplPdr(bus, "/xyz/openbmc_project/pldm", pdrRepo.get());
305 sdbusplus::xyz::openbmc_project::PLDM::server::Event dbusImplEvent(
306 bus, "/xyz/openbmc_project/pldm");
Tom Joseph20aa3e02021-08-17 04:44:19 -0700307
Tom Joseph02b4ee42021-05-02 22:44:36 -0700308#endif
Sampa Misraaea5dde2020-08-31 08:33:47 -0500309
Tom Josephfb3bc062021-08-17 07:48:11 -0700310 std::unique_ptr<fw_update::Manager> fwManager =
Andrew Jefferya330b2f2023-05-04 14:55:37 +0930311 std::make_unique<fw_update::Manager>(event, reqHandler, instanceIdDb);
Tom Josephfb3bc062021-08-17 07:48:11 -0700312 std::unique_ptr<MctpDiscovery> mctpDiscoveryHandler =
Gilbert Chen44524a52022-02-14 12:12:25 +0000313 std::make_unique<MctpDiscovery>(
314 bus,
315 std::initializer_list<MctpDiscoveryHandlerIntf*>{fwManager.get()});
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000316 auto callback = [verbose, &invoker, &reqHandler, &fwManager, &pldmTransport,
317 TID](IO& io, int fd, uint32_t revents) mutable {
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600318 if (!(revents & EPOLLIN))
319 {
320 return;
321 }
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000322 if (fd < 0)
323 {
324 return;
325 }
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600326
327 int returnCode = 0;
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000328 void* requestMsg;
329 size_t recvDataLength;
330 returnCode = pldmTransport.recvMsg(TID, requestMsg, recvDataLength);
331
332 if (returnCode == PLDM_REQUESTER_SUCCESS)
333 {
334 std::vector<uint8_t> requestMsgVec(
335 static_cast<uint8_t*>(requestMsg),
336 static_cast<uint8_t*>(requestMsg) + recvDataLength);
337 FlightRecorder::GetInstance().saveRecord(requestMsgVec, false);
338 if (verbose)
339 {
340 printBuffer(Rx, requestMsgVec);
341 }
342 // process message and send response
343 auto response = processRxMsg(requestMsgVec, invoker, reqHandler,
344 fwManager.get(), TID);
345 if (response.has_value())
346 {
347 FlightRecorder::GetInstance().saveRecord(*response, true);
348 if (verbose)
349 {
350 printBuffer(Tx, *response);
351 }
352
353 returnCode = pldmTransport.sendMsg(TID, (*response).data(),
354 (*response).size());
355 if (returnCode != PLDM_REQUESTER_SUCCESS)
356 {
Riya Dixit087a7512024-04-06 14:28:08 -0500357 warning(
358 "Failed to send pldmTransport message for TID '{TID}', response code '{RETURN_CODE}'",
359 "TID", TID, "RETURN_CODE", returnCode);
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000360 }
361 }
362 }
363 // TODO check that we get here if mctp-demux dies?
364 else if (returnCode == PLDM_REQUESTER_RECV_FAIL)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500365 {
Deepak Kodihalli23c52042020-09-01 03:04:32 -0500366 // MCTP daemon has closed the socket this daemon is connected to.
367 // This may or may not be an error scenario, in either case the
368 // recovery mechanism for this daemon is to restart, and hence exit
369 // the event loop, that will cause this daemon to exit with a
370 // failure code.
Riya Dixit087a7512024-04-06 14:28:08 -0500371 error(
372 "MCTP daemon closed the socket, IO exiting with response code '{RC}'",
373 "RC", returnCode);
Deepak Kodihalli23c52042020-09-01 03:04:32 -0500374 io.get_event().exit(0);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500375 }
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500376 else
377 {
Riya Dixit087a7512024-04-06 14:28:08 -0500378 warning(
379 "Failed to receive PLDM request for pldmTransport, response code '{RETURN_CODE}'",
380 "RETURN_CODE", returnCode);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500381 }
Thu Nguyenefacb6f2024-04-12 01:37:46 +0000382 /* Free requestMsg after using */
383 free(requestMsg);
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600384 };
385
Deepak Kodihalli4de4d002019-11-11 02:41:43 -0600386 bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL);
Archana Kakani46f352e2024-03-17 08:21:08 -0500387#ifndef SYSTEM_SPECIFIC_BIOS_JSON
388 bus.request_name("xyz.openbmc_project.PLDM");
389#endif
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000390 IO io(event, pldmTransport.getEventSource(), EPOLLIN, std::move(callback));
Manojkiran Eda88bc7182021-09-08 18:37:30 +0530391#ifdef LIBPLDMRESPONDER
392 if (hostPDRHandler)
393 {
394 hostPDRHandler->setHostFirmwareCondition();
395 }
396#endif
Manojkiran Edaef773052021-07-29 09:29:28 +0530397 stdplus::signal::block(SIGUSR1);
398 sdeventplus::source::Signal sigUsr1(
399 event, SIGUSR1, std::bind_front(&interruptFlightRecorderCallBack));
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000400 int returnCode = event.loop();
Brad Bishop3a22b972021-10-07 17:01:58 -0400401 if (returnCode)
402 {
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500403 exit(EXIT_FAILURE);
404 }
Brad Bishop3a22b972021-10-07 17:01:58 -0400405
406 exit(EXIT_SUCCESS);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500407}