blob: d64751d004863ae5df25a9ebc39dd27220bd5994 [file] [log] [blame]
George Liu6492f522020-06-16 10:34:05 +08001#include "libpldm/base.h"
2#include "libpldm/bios.h"
3#include "libpldm/pdr.h"
4#include "libpldm/platform.h"
5
Manojkiran Edaef773052021-07-29 09:29:28 +05306#include "common/flight_recorder.hpp"
Deepak Kodihallid130e1a2020-06-17 05:55:32 -05007#include "common/utils.hpp"
Deepak Kodihalli4de4d002019-11-11 02:41:43 -06008#include "dbus_impl_requester.hpp"
Tom Josephfb3bc062021-08-17 07:48:11 -07009#include "fw-update/manager.hpp"
Deepak Kodihallibc669f12019-11-28 08:52:07 -060010#include "invoker.hpp"
Tom Joseph74f27c72021-05-16 07:58:53 -070011#include "requester/handler.hpp"
Tom Josephfb3bc062021-08-17 07:48:11 -070012#include "requester/mctp_endpoint_discovery.hpp"
Tom Joseph74f27c72021-05-16 07:58:53 -070013#include "requester/request.hpp"
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050014
15#include <err.h>
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +053016#include <getopt.h>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050017#include <poll.h>
18#include <stdlib.h>
19#include <sys/socket.h>
20#include <sys/types.h>
21#include <sys/un.h>
22#include <unistd.h>
23
George Liu6492f522020-06-16 10:34:05 +080024#include <sdeventplus/event.hpp>
25#include <sdeventplus/source/io.hpp>
Manojkiran Edaef773052021-07-29 09:29:28 +053026#include <sdeventplus/source/signal.hpp>
27#include <stdplus/signal.hpp>
George Liu6492f522020-06-16 10:34:05 +080028
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050029#include <cstdio>
30#include <cstring>
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050031#include <fstream>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050032#include <iomanip>
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +053033#include <iostream>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050034#include <iterator>
Deepak Kodihallic682fe22020-03-04 00:42:54 -060035#include <memory>
Tom Joseph74f27c72021-05-16 07:58:53 -070036#include <optional>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050037#include <sstream>
Deepak Kodihallibc669f12019-11-28 08:52:07 -060038#include <stdexcept>
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +053039#include <string>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050040#include <vector>
41
Tom Joseph02b4ee42021-05-02 22:44:36 -070042#ifdef LIBPLDMRESPONDER
43#include "dbus_impl_pdr.hpp"
44#include "host-bmc/dbus_to_event_handler.hpp"
45#include "host-bmc/dbus_to_host_effecters.hpp"
Tom Joseph20aa3e02021-08-17 04:44:19 -070046#include "host-bmc/host_condition.hpp"
Tom Joseph02b4ee42021-05-02 22:44:36 -070047#include "host-bmc/host_pdr_handler.hpp"
48#include "libpldmresponder/base.hpp"
49#include "libpldmresponder/bios.hpp"
50#include "libpldmresponder/fru.hpp"
51#include "libpldmresponder/oem_handler.hpp"
52#include "libpldmresponder/platform.hpp"
53#include "xyz/openbmc_project/PLDM/Event/server.hpp"
54#endif
55
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050056#ifdef OEM_IBM
57#include "libpldmresponder/file_io.hpp"
Sampa Misraaea5dde2020-08-31 08:33:47 -050058#include "libpldmresponder/oem_ibm_handler.hpp"
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050059#endif
60
61constexpr uint8_t MCTP_MSG_TYPE_PLDM = 1;
62
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050063using namespace pldm;
Deepak Kodihalli37998bf2019-11-11 04:06:53 -060064using namespace sdeventplus;
65using namespace sdeventplus::source;
Tom Joseph02b4ee42021-05-02 22:44:36 -070066using namespace pldm::responder;
67using namespace pldm::utils;
Manojkiran Edaef773052021-07-29 09:29:28 +053068using sdeventplus::source::Signal;
69using namespace pldm::flightrecorder;
70
71void interruptFlightRecorderCallBack(Signal& /*signal*/,
72 const struct signalfd_siginfo*)
73{
74 std::cerr << "\nReceived SIGUR1(10) Signal interrupt\n";
75
76 // obtain the flight recorder instance and dump the recorder
77 FlightRecorder::GetInstance().playRecorder();
78}
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050079
Tom Joseph74f27c72021-05-16 07:58:53 -070080static std::optional<Response>
81 processRxMsg(const std::vector<uint8_t>& requestMsg, Invoker& invoker,
Tom Josephfb3bc062021-08-17 07:48:11 -070082 requester::Handler<requester::Request>& handler,
83 fw_update::Manager* fwManager)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050084{
Manojkiran Eda31a78442021-09-12 15:18:25 +053085 using type = uint8_t;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050086 uint8_t eid = requestMsg[0];
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050087 pldm_header_info hdrFields{};
88 auto hdr = reinterpret_cast<const pldm_msg_hdr*>(
89 requestMsg.data() + sizeof(eid) + sizeof(type));
90 if (PLDM_SUCCESS != unpack_pldm_header(hdr, &hdrFields))
91 {
Sampa Misraaa8ae722019-12-12 03:20:40 -060092 std::cerr << "Empty PLDM request header \n";
Tom Joseph74f27c72021-05-16 07:58:53 -070093 return std::nullopt;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050094 }
George Liub7095ff2021-06-14 16:01:57 +080095
96 if (PLDM_RESPONSE != hdrFields.msg_type)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050097 {
Tom Joseph74f27c72021-05-16 07:58:53 -070098 Response response;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050099 auto request = reinterpret_cast<const pldm_msg*>(hdr);
100 size_t requestLen = requestMsg.size() - sizeof(struct pldm_msg_hdr) -
101 sizeof(eid) - sizeof(type);
Deepak Kodihallibc669f12019-11-28 08:52:07 -0600102 try
103 {
Tom Josephfb3bc062021-08-17 07:48:11 -0700104 if (hdrFields.pldm_type != PLDM_FWUP)
105 {
106 response =
107 invoker.handle(hdrFields.pldm_type, hdrFields.command,
108 request, requestLen);
109 }
110 else
111 {
112 response = fwManager->handleRequest(eid, hdrFields.command,
113 request, requestLen);
114 }
Deepak Kodihallibc669f12019-11-28 08:52:07 -0600115 }
116 catch (const std::out_of_range& e)
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500117 {
118 uint8_t completion_code = PLDM_ERROR_UNSUPPORTED_PLDM_CMD;
119 response.resize(sizeof(pldm_msg_hdr));
120 auto responseHdr = reinterpret_cast<pldm_msg_hdr*>(response.data());
121 pldm_header_info header{};
122 header.msg_type = PLDM_RESPONSE;
123 header.instance = hdrFields.instance;
124 header.pldm_type = hdrFields.pldm_type;
125 header.command = hdrFields.command;
George Liub7095ff2021-06-14 16:01:57 +0800126 if (PLDM_SUCCESS != pack_pldm_header(&header, responseHdr))
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500127 {
Sampa Misraaa8ae722019-12-12 03:20:40 -0600128 std::cerr << "Failed adding response header \n";
Tom Joseph74f27c72021-05-16 07:58:53 -0700129 return std::nullopt;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500130 }
131 response.insert(response.end(), completion_code);
132 }
Tom Joseph74f27c72021-05-16 07:58:53 -0700133 return response;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500134 }
Tom Joseph74f27c72021-05-16 07:58:53 -0700135 else if (PLDM_RESPONSE == hdrFields.msg_type)
Deepak Kodihalli4de4d002019-11-11 02:41:43 -0600136 {
Tom Joseph74f27c72021-05-16 07:58:53 -0700137 auto response = reinterpret_cast<const pldm_msg*>(hdr);
138 size_t responseLen = requestMsg.size() - sizeof(struct pldm_msg_hdr) -
139 sizeof(eid) - sizeof(type);
140 handler.handleResponse(eid, hdrFields.instance, hdrFields.pldm_type,
141 hdrFields.command, response, responseLen);
Deepak Kodihalli4de4d002019-11-11 02:41:43 -0600142 }
Tom Joseph74f27c72021-05-16 07:58:53 -0700143 return std::nullopt;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500144}
145
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530146void optionUsage(void)
147{
148 std::cerr << "Usage: pldmd [options]\n";
149 std::cerr << "Options:\n";
150 std::cerr
151 << " --verbose=<0/1> 0 - Disable verbosity, 1 - Enable verbosity\n";
152 std::cerr << "Defaulted settings: --verbose=0 \n";
153}
154
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500155int main(int argc, char** argv)
156{
157
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530158 bool verbose = false;
159 static struct option long_options[] = {
160 {"verbose", required_argument, 0, 'v'}, {0, 0, 0, 0}};
161
162 auto argflag = getopt_long(argc, argv, "v:", long_options, nullptr);
163 switch (argflag)
164 {
165 case 'v':
166 switch (std::stoi(optarg))
167 {
168 case 0:
169 verbose = false;
170 break;
171 case 1:
172 verbose = true;
173 break;
174 default:
175 optionUsage();
Brad Bishopc80f3ef2021-10-07 16:34:13 -0400176 exit(EXIT_FAILURE);
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530177 }
178 break;
Brad Bishopc80f3ef2021-10-07 16:34:13 -0400179 case -1:
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530180 break;
Brad Bishopc80f3ef2021-10-07 16:34:13 -0400181 default:
182 exit(EXIT_FAILURE);
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530183 }
184
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500185 /* Create local socket. */
186 int returnCode = 0;
187 int sockfd = socket(AF_UNIX, SOCK_SEQPACKET, 0);
188 if (-1 == sockfd)
189 {
190 returnCode = -errno;
Sampa Misraaa8ae722019-12-12 03:20:40 -0600191 std::cerr << "Failed to create the socket, RC= " << returnCode << "\n";
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500192 exit(EXIT_FAILURE);
193 }
Manojkiran Eda9fffea22021-10-27 16:03:27 +0530194 socklen_t optlen;
195 int currentSendbuffSize;
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500196
Manojkiran Eda9fffea22021-10-27 16:03:27 +0530197 // Get Current send buffer size
198 optlen = sizeof(currentSendbuffSize);
199
200 int res = getsockopt(sockfd, SOL_SOCKET, SO_SNDBUF, &currentSendbuffSize,
201 &optlen);
202 if (res == -1)
203 {
204 std::cerr << "Error in obtaining the default send buffer size, Error : "
205 << strerror(errno) << std::endl;
206 }
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500207 auto event = Event::get_default();
Tom Joseph02b4ee42021-05-02 22:44:36 -0700208 auto& bus = pldm::utils::DBusHandler::getBus();
Tom Josephfb3bc062021-08-17 07:48:11 -0700209 sdbusplus::server::manager::manager objManager(
210 bus, "/xyz/openbmc_project/software");
Tom Joseph02b4ee42021-05-02 22:44:36 -0700211 dbus_api::Requester dbusImplReq(bus, "/xyz/openbmc_project/pldm");
Pavithra Barithaya319ebb32021-05-06 06:09:11 -0500212
Tom Joseph02b4ee42021-05-02 22:44:36 -0700213 Invoker invoker{};
Manojkiran Eda9fffea22021-10-27 16:03:27 +0530214 requester::Handler<requester::Request> reqHandler(
215 sockfd, event, dbusImplReq, currentSendbuffSize, verbose);
216
Tom Joseph02b4ee42021-05-02 22:44:36 -0700217#ifdef LIBPLDMRESPONDER
218 using namespace pldm::state_sensor;
Tom Joseph20aa3e02021-08-17 04:44:19 -0700219 dbus_api::Host dbusImplHost(bus, "/xyz/openbmc_project/pldm");
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500220 std::unique_ptr<pldm_pdr, decltype(&pldm_pdr_destroy)> pdrRepo(
221 pldm_pdr_init(), pldm_pdr_destroy);
222 std::unique_ptr<pldm_entity_association_tree,
223 decltype(&pldm_entity_association_tree_destroy)>
224 entityTree(pldm_entity_association_tree_init(),
225 pldm_entity_association_tree_destroy);
Sampa Misrac073a202021-05-08 10:56:05 -0500226 std::unique_ptr<pldm_entity_association_tree,
227 decltype(&pldm_entity_association_tree_destroy)>
228 bmcEntityTree(pldm_entity_association_tree_init(),
229 pldm_entity_association_tree_destroy);
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;
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500235 auto hostEID = pldm::utils::readHostEID();
236 if (hostEID)
237 {
Pavithra Barithaya319ebb32021-05-06 06:09:11 -0500238 hostPDRHandler = std::make_shared<HostPDRHandler>(
Pavithra Barithaya3aec9972020-12-14 01:55:44 -0600239 sockfd, hostEID, event, pdrRepo.get(), EVENTS_JSONS_DIR,
Tom Josephe5268cd2021-09-07 13:04:03 +0530240 entityTree.get(), bmcEntityTree.get(), dbusImplReq, &reqHandler);
Pavithra Barithaya319ebb32021-05-06 06:09:11 -0500241 // HostFirmware interface needs access to hostPDR to know if host
242 // is running
243 dbusImplHost.setHostPdrObj(hostPDRHandler);
244
Sampa Misrac0c60542020-07-01 02:34:25 -0500245 hostEffecterParser =
246 std::make_unique<pldm::host_effecters::HostEffecterParser>(
Brad Bishopfc0d14d2021-10-12 19:34:20 -0400247 &dbusImplReq, sockfd, pdrRepo.get(), &dbusHandler,
Tom Josephe5268cd2021-09-07 13:04:03 +0530248 HOST_JSONS_DIR, &reqHandler);
Sampa Misrac0c79482021-06-02 08:01:54 -0500249 dbusToPLDMEventHandler = std::make_unique<DbusToPLDMEvent>(
250 sockfd, hostEID, dbusImplReq, &reqHandler);
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500251 }
Sampa Misraaea5dde2020-08-31 08:33:47 -0500252 std::unique_ptr<oem_platform::Handler> oemPlatformHandler{};
253
254#ifdef OEM_IBM
255 std::unique_ptr<pldm::responder::CodeUpdate> codeUpdate =
Brad Bishopfc0d14d2021-10-12 19:34:20 -0400256 std::make_unique<pldm::responder::CodeUpdate>(&dbusHandler);
Varsha Kaverappa3ca29df2020-09-27 12:39:22 -0500257 codeUpdate->clearDirPath(LID_STAGING_DIR);
Sampa Misraaea5dde2020-08-31 08:33:47 -0500258 oemPlatformHandler = std::make_unique<oem_ibm_platform::Handler>(
Brad Bishopfc0d14d2021-10-12 19:34:20 -0400259 &dbusHandler, codeUpdate.get(), sockfd, hostEID, dbusImplReq, event,
260 &reqHandler);
Sampa Misraaea5dde2020-08-31 08:33:47 -0500261 codeUpdate->setOemPlatformHandler(oemPlatformHandler.get());
Sampa Misrac0c79482021-06-02 08:01:54 -0500262 invoker.registerHandler(PLDM_OEM, std::make_unique<oem_ibm::Handler>(
263 oemPlatformHandler.get(), sockfd,
264 hostEID, &dbusImplReq, &reqHandler));
Sampa Misraaea5dde2020-08-31 08:33:47 -0500265#endif
Sagar Srinivasa6a8ccd2021-04-01 07:58:33 -0500266 invoker.registerHandler(
Sampa Misrac0c79482021-06-02 08:01:54 -0500267 PLDM_BIOS, std::make_unique<bios::Handler>(sockfd, hostEID,
268 &dbusImplReq, &reqHandler));
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530269 auto fruHandler = std::make_unique<fru::Handler>(
Manojkiran Eda03b01ca2021-06-29 08:55:09 +0530270 FRU_JSONS_DIR, FRU_MASTER_JSON, pdrRepo.get(), entityTree.get(),
271 bmcEntityTree.get());
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530272 // FRU table is built lazily when a FRU command or Get PDR command is
273 // handled. To enable building FRU table, the FRU handler is passed to the
274 // Platform handler.
Sampa Misraaea5dde2020-08-31 08:33:47 -0500275 auto platformHandler = std::make_unique<platform::Handler>(
Brad Bishopfc0d14d2021-10-12 19:34:20 -0400276 &dbusHandler, PDR_JSONS_DIR, pdrRepo.get(), hostPDRHandler.get(),
Sampa Misraaea5dde2020-08-31 08:33:47 -0500277 dbusToPLDMEventHandler.get(), fruHandler.get(),
Sampa Misra5fb37d52021-03-06 07:26:00 -0600278 oemPlatformHandler.get(), event, true);
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500279#ifdef OEM_IBM
Sampa Misraaea5dde2020-08-31 08:33:47 -0500280 pldm::responder::oem_ibm_platform::Handler* oemIbmPlatformHandler =
281 dynamic_cast<pldm::responder::oem_ibm_platform::Handler*>(
282 oemPlatformHandler.get());
283 oemIbmPlatformHandler->setPlatformHandler(platformHandler.get());
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500284#endif
285
Sampa Misraaea5dde2020-08-31 08:33:47 -0500286 invoker.registerHandler(PLDM_PLATFORM, std::move(platformHandler));
Sagar Srinivas79669c92021-04-28 15:43:30 -0500287 invoker.registerHandler(
288 PLDM_BASE,
289 std::make_unique<base::Handler>(hostEID, dbusImplReq, event,
290 oemPlatformHandler.get(), &reqHandler));
Sampa Misraaea5dde2020-08-31 08:33:47 -0500291 invoker.registerHandler(PLDM_FRU, std::move(fruHandler));
Tom Joseph02b4ee42021-05-02 22:44:36 -0700292 dbus_api::Pdr dbusImplPdr(bus, "/xyz/openbmc_project/pldm", pdrRepo.get());
293 sdbusplus::xyz::openbmc_project::PLDM::server::Event dbusImplEvent(
294 bus, "/xyz/openbmc_project/pldm");
Tom Joseph20aa3e02021-08-17 04:44:19 -0700295
Tom Joseph02b4ee42021-05-02 22:44:36 -0700296#endif
Sampa Misraaea5dde2020-08-31 08:33:47 -0500297
George Liu83409572019-12-24 18:42:54 +0800298 pldm::utils::CustomFD socketFd(sockfd);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500299
300 struct sockaddr_un addr
George Liu6492f522020-06-16 10:34:05 +0800301 {};
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500302 addr.sun_family = AF_UNIX;
303 const char path[] = "\0mctp-mux";
304 memcpy(addr.sun_path, path, sizeof(path) - 1);
305 int result = connect(socketFd(), reinterpret_cast<struct sockaddr*>(&addr),
306 sizeof(path) + sizeof(addr.sun_family) - 1);
307 if (-1 == result)
308 {
309 returnCode = -errno;
Sampa Misraaa8ae722019-12-12 03:20:40 -0600310 std::cerr << "Failed to connect to the socket, RC= " << returnCode
311 << "\n";
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500312 exit(EXIT_FAILURE);
313 }
314
315 result = write(socketFd(), &MCTP_MSG_TYPE_PLDM, sizeof(MCTP_MSG_TYPE_PLDM));
316 if (-1 == result)
317 {
318 returnCode = -errno;
Sampa Misraaa8ae722019-12-12 03:20:40 -0600319 std::cerr << "Failed to send message type as pldm to mctp, RC= "
320 << returnCode << "\n";
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500321 exit(EXIT_FAILURE);
322 }
323
Tom Josephfb3bc062021-08-17 07:48:11 -0700324 std::unique_ptr<fw_update::Manager> fwManager =
325 std::make_unique<fw_update::Manager>(event, reqHandler, dbusImplReq);
326 std::unique_ptr<MctpDiscovery> mctpDiscoveryHandler =
327 std::make_unique<MctpDiscovery>(bus, fwManager.get());
328
Manojkiran Eda9fffea22021-10-27 16:03:27 +0530329 auto callback = [verbose, &invoker, &reqHandler, currentSendbuffSize,
330 &fwManager](IO& io, int fd, uint32_t revents) mutable {
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600331 if (!(revents & EPOLLIN))
332 {
333 return;
334 }
335
336 // Outgoing message.
337 struct iovec iov[2]{};
338
339 // This structure contains the parameter information for the response
340 // message.
341 struct msghdr msg
George Liu6492f522020-06-16 10:34:05 +0800342 {};
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600343
344 int returnCode = 0;
345 ssize_t peekedLength = recv(fd, nullptr, 0, MSG_PEEK | MSG_TRUNC);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500346 if (0 == peekedLength)
347 {
Deepak Kodihalli23c52042020-09-01 03:04:32 -0500348 // MCTP daemon has closed the socket this daemon is connected to.
349 // This may or may not be an error scenario, in either case the
350 // recovery mechanism for this daemon is to restart, and hence exit
351 // the event loop, that will cause this daemon to exit with a
352 // failure code.
353 io.get_event().exit(0);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500354 }
355 else if (peekedLength <= -1)
356 {
357 returnCode = -errno;
Sampa Misraaa8ae722019-12-12 03:20:40 -0600358 std::cerr << "recv system call failed, RC= " << returnCode << "\n";
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500359 }
360 else
361 {
362 std::vector<uint8_t> requestMsg(peekedLength);
363 auto recvDataLength = recv(
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600364 fd, static_cast<void*>(requestMsg.data()), peekedLength, 0);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500365 if (recvDataLength == peekedLength)
366 {
Manojkiran Edaef773052021-07-29 09:29:28 +0530367 FlightRecorder::GetInstance().saveRecord(requestMsg, false);
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530368 if (verbose)
369 {
Tom Josephe5268cd2021-09-07 13:04:03 +0530370 printBuffer(Rx, requestMsg);
Jinu Joy Thomas75dd4422019-07-22 12:47:12 +0530371 }
Tom Josephe5268cd2021-09-07 13:04:03 +0530372
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500373 if (MCTP_MSG_TYPE_PLDM != requestMsg[1])
374 {
375 // Skip this message and continue.
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500376 }
377 else
378 {
379 // process message and send response
Tom Josephfb3bc062021-08-17 07:48:11 -0700380 auto response = processRxMsg(requestMsg, invoker,
381 reqHandler, fwManager.get());
Tom Joseph74f27c72021-05-16 07:58:53 -0700382 if (response.has_value())
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500383 {
Manojkiran Edaef773052021-07-29 09:29:28 +0530384 FlightRecorder::GetInstance().saveRecord(*response,
385 true);
Deepak Kodihalli8ffbbe02019-08-14 06:51:38 -0500386 if (verbose)
387 {
Tom Josephe5268cd2021-09-07 13:04:03 +0530388 printBuffer(Tx, *response);
Deepak Kodihalli8ffbbe02019-08-14 06:51:38 -0500389 }
390
Zahed Hossain09a96e02019-08-06 07:42:37 -0500391 iov[0].iov_base = &requestMsg[0];
392 iov[0].iov_len =
393 sizeof(requestMsg[0]) + sizeof(requestMsg[1]);
Tom Joseph74f27c72021-05-16 07:58:53 -0700394 iov[1].iov_base = (*response).data();
395 iov[1].iov_len = (*response).size();
Zahed Hossain09a96e02019-08-06 07:42:37 -0500396
397 msg.msg_iov = iov;
398 msg.msg_iovlen = sizeof(iov) / sizeof(iov[0]);
Manojkiran Eda9fffea22021-10-27 16:03:27 +0530399 if (currentSendbuffSize >= 0 &&
400 (size_t)currentSendbuffSize < (*response).size())
401 {
402 int oldBuffSize = currentSendbuffSize;
403 currentSendbuffSize = (*response).size();
404 int res = setsockopt(fd, SOL_SOCKET, SO_SNDBUF,
405 &currentSendbuffSize,
406 sizeof(currentSendbuffSize));
407 if (res == -1)
408 {
409 std::cerr
410 << "Responder : Failed to set the new send buffer size [bytes] : "
411 << currentSendbuffSize
412 << " from current size [bytes] : "
413 << oldBuffSize
414 << ", Error : " << strerror(errno)
415 << std::endl;
416 return;
417 }
418 }
Zahed Hossain09a96e02019-08-06 07:42:37 -0500419
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600420 int result = sendmsg(fd, &msg, 0);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500421 if (-1 == result)
422 {
423 returnCode = -errno;
Sampa Misraaa8ae722019-12-12 03:20:40 -0600424 std::cerr << "sendto system call failed, RC= "
425 << returnCode << "\n";
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500426 }
427 }
428 }
429 }
430 else
431 {
Sampa Misraaa8ae722019-12-12 03:20:40 -0600432 std::cerr
433 << "Failure to read peeked length packet. peekedLength= "
434 << peekedLength << " recvDataLength=" << recvDataLength
435 << "\n";
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500436 }
437 }
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600438 };
439
Deepak Kodihalli4de4d002019-11-11 02:41:43 -0600440 bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL);
441 bus.request_name("xyz.openbmc_project.PLDM");
Deepak Kodihalli37998bf2019-11-11 04:06:53 -0600442 IO io(event, socketFd(), EPOLLIN, std::move(callback));
Manojkiran Eda88bc7182021-09-08 18:37:30 +0530443#ifdef LIBPLDMRESPONDER
444 if (hostPDRHandler)
445 {
446 hostPDRHandler->setHostFirmwareCondition();
447 }
448#endif
Manojkiran Edaef773052021-07-29 09:29:28 +0530449 stdplus::signal::block(SIGUSR1);
450 sdeventplus::source::Signal sigUsr1(
451 event, SIGUSR1, std::bind_front(&interruptFlightRecorderCallBack));
Brad Bishop3a22b972021-10-07 17:01:58 -0400452 returnCode = event.loop();
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500453
Brad Bishop3a22b972021-10-07 17:01:58 -0400454 if (shutdown(sockfd, SHUT_RDWR))
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500455 {
Brad Bishop3a22b972021-10-07 17:01:58 -0400456 std::perror("Failed to shutdown the socket");
457 }
458 if (returnCode)
459 {
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500460 exit(EXIT_FAILURE);
461 }
Brad Bishop3a22b972021-10-07 17:01:58 -0400462
463 exit(EXIT_SUCCESS);
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500464}