xref: /openbmc/pldm/pldmd/pldmd.cpp (revision 579a34a3)
1 #include "libpldm/base.h"
2 #include "libpldm/bios.h"
3 #include "libpldm/pdr.h"
4 #include "libpldm/platform.h"
5 
6 #include "common/utils.hpp"
7 #include "dbus_impl_pdr.hpp"
8 #include "dbus_impl_requester.hpp"
9 #include "host-bmc/dbus_to_host_effecters.hpp"
10 #include "host-bmc/host_pdr_handler.hpp"
11 #include "invoker.hpp"
12 #include "libpldmresponder/base.hpp"
13 #include "libpldmresponder/bios.hpp"
14 #include "libpldmresponder/fru.hpp"
15 #include "libpldmresponder/platform.hpp"
16 
17 #include <err.h>
18 #include <getopt.h>
19 #include <poll.h>
20 #include <stdlib.h>
21 #include <sys/socket.h>
22 #include <sys/types.h>
23 #include <sys/un.h>
24 #include <unistd.h>
25 
26 #include <sdeventplus/event.hpp>
27 #include <sdeventplus/source/io.hpp>
28 
29 #include <cstdio>
30 #include <cstring>
31 #include <fstream>
32 #include <iomanip>
33 #include <iostream>
34 #include <iterator>
35 #include <memory>
36 #include <sstream>
37 #include <stdexcept>
38 #include <string>
39 #include <vector>
40 
41 #ifdef OEM_IBM
42 #include "libpldmresponder/file_io.hpp"
43 #endif
44 
45 constexpr uint8_t MCTP_MSG_TYPE_PLDM = 1;
46 
47 using namespace pldm::responder;
48 using namespace pldm;
49 using namespace sdeventplus;
50 using namespace sdeventplus::source;
51 
52 static Response processRxMsg(const std::vector<uint8_t>& requestMsg,
53                              Invoker& invoker, dbus_api::Requester& requester)
54 {
55 
56     Response response;
57     uint8_t eid = requestMsg[0];
58     uint8_t type = requestMsg[1];
59     pldm_header_info hdrFields{};
60     auto hdr = reinterpret_cast<const pldm_msg_hdr*>(
61         requestMsg.data() + sizeof(eid) + sizeof(type));
62     if (PLDM_SUCCESS != unpack_pldm_header(hdr, &hdrFields))
63     {
64         std::cerr << "Empty PLDM request header \n";
65     }
66     else if (PLDM_RESPONSE != hdrFields.msg_type)
67     {
68         auto request = reinterpret_cast<const pldm_msg*>(hdr);
69         size_t requestLen = requestMsg.size() - sizeof(struct pldm_msg_hdr) -
70                             sizeof(eid) - sizeof(type);
71         try
72         {
73             response = invoker.handle(hdrFields.pldm_type, hdrFields.command,
74                                       request, requestLen);
75         }
76         catch (const std::out_of_range& e)
77         {
78             uint8_t completion_code = PLDM_ERROR_UNSUPPORTED_PLDM_CMD;
79             response.resize(sizeof(pldm_msg_hdr));
80             auto responseHdr = reinterpret_cast<pldm_msg_hdr*>(response.data());
81             pldm_header_info header{};
82             header.msg_type = PLDM_RESPONSE;
83             header.instance = hdrFields.instance;
84             header.pldm_type = hdrFields.pldm_type;
85             header.command = hdrFields.command;
86             auto result = pack_pldm_header(&header, responseHdr);
87             if (PLDM_SUCCESS != result)
88             {
89                 std::cerr << "Failed adding response header \n";
90             }
91             response.insert(response.end(), completion_code);
92         }
93     }
94     else
95     {
96         requester.markFree(eid, hdr->instance_id);
97     }
98     return response;
99 }
100 
101 void printBuffer(const std::vector<uint8_t>& buffer)
102 {
103     std::ostringstream tempStream;
104     tempStream << "Buffer Data: ";
105     if (!buffer.empty())
106     {
107         for (int byte : buffer)
108         {
109             tempStream << std::setfill('0') << std::setw(2) << std::hex << byte
110                        << " ";
111         }
112     }
113     std::cout << tempStream.str().c_str() << std::endl;
114 }
115 
116 void optionUsage(void)
117 {
118     std::cerr << "Usage: pldmd [options]\n";
119     std::cerr << "Options:\n";
120     std::cerr
121         << "  --verbose=<0/1>  0 - Disable verbosity, 1 - Enable verbosity\n";
122     std::cerr << "Defaulted settings:  --verbose=0 \n";
123 }
124 
125 int main(int argc, char** argv)
126 {
127 
128     bool verbose = false;
129     static struct option long_options[] = {
130         {"verbose", required_argument, 0, 'v'}, {0, 0, 0, 0}};
131 
132     auto argflag = getopt_long(argc, argv, "v:", long_options, nullptr);
133     switch (argflag)
134     {
135         case 'v':
136             switch (std::stoi(optarg))
137             {
138                 case 0:
139                     verbose = false;
140                     break;
141                 case 1:
142                     verbose = true;
143                     break;
144                 default:
145                     optionUsage();
146                     break;
147             }
148             break;
149         default:
150             optionUsage();
151             break;
152     }
153 
154     /* Create local socket. */
155     int returnCode = 0;
156     int sockfd = socket(AF_UNIX, SOCK_SEQPACKET, 0);
157     if (-1 == sockfd)
158     {
159         returnCode = -errno;
160         std::cerr << "Failed to create the socket, RC= " << returnCode << "\n";
161         exit(EXIT_FAILURE);
162     }
163 
164     auto event = Event::get_default();
165     std::unique_ptr<pldm_pdr, decltype(&pldm_pdr_destroy)> pdrRepo(
166         pldm_pdr_init(), pldm_pdr_destroy);
167     std::unique_ptr<pldm_entity_association_tree,
168                     decltype(&pldm_entity_association_tree_destroy)>
169         entityTree(pldm_entity_association_tree_init(),
170                    pldm_entity_association_tree_destroy);
171     auto& bus = pldm::utils::DBusHandler::getBus();
172     dbus_api::Requester dbusImplReq(bus, "/xyz/openbmc_project/pldm");
173     std::unique_ptr<HostPDRHandler> hostPDRHandler;
174     auto hostEID = pldm::utils::readHostEID();
175     if (hostEID)
176     {
177         hostPDRHandler = std::make_unique<HostPDRHandler>(
178             sockfd, hostEID, event, pdrRepo.get(), entityTree.get(),
179             dbusImplReq);
180         DBusHandler dbusHandler;
181         pldm::host_effecters::HostEffecterParser hostEffecterParser(
182             &dbusImplReq, sockfd, pdrRepo.get(), &dbusHandler, HOST_JSONS_DIR,
183             verbose);
184     }
185 
186     Invoker invoker{};
187     invoker.registerHandler(PLDM_BASE, std::make_unique<base::Handler>());
188     invoker.registerHandler(PLDM_BIOS, std::make_unique<bios::Handler>());
189     auto fruHandler = std::make_unique<fru::Handler>(
190         FRU_JSONS_DIR, pdrRepo.get(), entityTree.get());
191     // FRU table is built lazily when a FRU command or Get PDR command is
192     // handled. To enable building FRU table, the FRU handler is passed to the
193     // Platform handler.
194     invoker.registerHandler(PLDM_PLATFORM,
195                             std::make_unique<platform::Handler>(
196                                 PDR_JSONS_DIR, EVENTS_JSONS_DIR, pdrRepo.get(),
197                                 hostPDRHandler.get(), fruHandler.get()));
198     invoker.registerHandler(PLDM_FRU, std::move(fruHandler));
199 
200 #ifdef OEM_IBM
201     invoker.registerHandler(PLDM_OEM, std::make_unique<oem_ibm::Handler>());
202 #endif
203 
204     pldm::utils::CustomFD socketFd(sockfd);
205 
206     struct sockaddr_un addr
207     {};
208     addr.sun_family = AF_UNIX;
209     const char path[] = "\0mctp-mux";
210     memcpy(addr.sun_path, path, sizeof(path) - 1);
211     int result = connect(socketFd(), reinterpret_cast<struct sockaddr*>(&addr),
212                          sizeof(path) + sizeof(addr.sun_family) - 1);
213     if (-1 == result)
214     {
215         returnCode = -errno;
216         std::cerr << "Failed to connect to the socket, RC= " << returnCode
217                   << "\n";
218         exit(EXIT_FAILURE);
219     }
220 
221     result = write(socketFd(), &MCTP_MSG_TYPE_PLDM, sizeof(MCTP_MSG_TYPE_PLDM));
222     if (-1 == result)
223     {
224         returnCode = -errno;
225         std::cerr << "Failed to send message type as pldm to mctp, RC= "
226                   << returnCode << "\n";
227         exit(EXIT_FAILURE);
228     }
229 
230     dbus_api::Pdr dbusImplPdr(bus, "/xyz/openbmc_project/pldm", pdrRepo.get());
231     auto callback = [verbose, &invoker, &dbusImplReq](IO& /*io*/, int fd,
232                                                       uint32_t revents) {
233         if (!(revents & EPOLLIN))
234         {
235             return;
236         }
237 
238         // Outgoing message.
239         struct iovec iov[2]{};
240 
241         // This structure contains the parameter information for the response
242         // message.
243         struct msghdr msg
244         {};
245 
246         int returnCode = 0;
247         ssize_t peekedLength = recv(fd, nullptr, 0, MSG_PEEK | MSG_TRUNC);
248         if (0 == peekedLength)
249         {
250             std::cerr << "Socket has been closed \n";
251         }
252         else if (peekedLength <= -1)
253         {
254             returnCode = -errno;
255             std::cerr << "recv system call failed, RC= " << returnCode << "\n";
256         }
257         else
258         {
259             std::vector<uint8_t> requestMsg(peekedLength);
260             auto recvDataLength = recv(
261                 fd, static_cast<void*>(requestMsg.data()), peekedLength, 0);
262             if (recvDataLength == peekedLength)
263             {
264                 if (verbose)
265                 {
266                     std::cout << "Received Msg" << std::endl;
267                     printBuffer(requestMsg);
268                 }
269                 if (MCTP_MSG_TYPE_PLDM != requestMsg[1])
270                 {
271                     // Skip this message and continue.
272                     std::cerr << "Encountered Non-PLDM type message"
273                               << "\n";
274                 }
275                 else
276                 {
277                     // process message and send response
278                     auto response =
279                         processRxMsg(requestMsg, invoker, dbusImplReq);
280                     if (!response.empty())
281                     {
282                         if (verbose)
283                         {
284                             std::cout << "Sending Msg" << std::endl;
285                             printBuffer(response);
286                         }
287 
288                         iov[0].iov_base = &requestMsg[0];
289                         iov[0].iov_len =
290                             sizeof(requestMsg[0]) + sizeof(requestMsg[1]);
291                         iov[1].iov_base = response.data();
292                         iov[1].iov_len = response.size();
293 
294                         msg.msg_iov = iov;
295                         msg.msg_iovlen = sizeof(iov) / sizeof(iov[0]);
296 
297                         int result = sendmsg(fd, &msg, 0);
298                         if (-1 == result)
299                         {
300                             returnCode = -errno;
301                             std::cerr << "sendto system call failed, RC= "
302                                       << returnCode << "\n";
303                         }
304                     }
305                 }
306             }
307             else
308             {
309                 std::cerr
310                     << "Failure to read peeked length packet. peekedLength= "
311                     << peekedLength << " recvDataLength=" << recvDataLength
312                     << "\n";
313             }
314         }
315     };
316 
317     bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL);
318     bus.request_name("xyz.openbmc_project.PLDM");
319     IO io(event, socketFd(), EPOLLIN, std::move(callback));
320     event.loop();
321 
322     result = shutdown(sockfd, SHUT_RDWR);
323     if (-1 == result)
324     {
325         returnCode = -errno;
326         std::cerr << "Failed to shutdown the socket, RC=" << returnCode << "\n";
327         exit(EXIT_FAILURE);
328     }
329     exit(EXIT_FAILURE);
330 }
331