xref: /openbmc/phosphor-ipmi-blobs/main.cpp (revision de8a16e2)
1 /*
2  * Copyright 2018 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "config.h"
18 
19 #include "ipmi.hpp"
20 #include "manager.hpp"
21 #include "process.hpp"
22 #include "utils.hpp"
23 
24 #include <ipmid/api.h>
25 
26 #include <cstdio>
27 #include <ipmid/iana.hpp>
28 #include <ipmid/oemopenbmc.hpp>
29 #include <ipmid/oemrouter.hpp>
30 #include <memory>
31 #include <phosphor-logging/log.hpp>
32 
33 namespace blobs
34 {
35 
36 using namespace phosphor::logging;
37 
38 static ipmi_ret_t handleBlobCommand(ipmi_cmd_t cmd, const uint8_t* reqBuf,
39                                     uint8_t* replyCmdBuf, size_t* dataLen)
40 {
41     /* It's holding at least a sub-command.  The OEN is trimmed from the bytes
42      * before this is called.
43      */
44     if ((*dataLen) < 1)
45     {
46         return IPMI_CC_REQ_DATA_LEN_INVALID;
47     }
48 
49     /* on failure rc is set to the corresponding IPMI error. */
50     ipmi_ret_t rc = IPMI_CC_OK;
51     IpmiBlobHandler command =
52         validateBlobCommand(reqBuf, replyCmdBuf, dataLen, &rc);
53     if (command == nullptr)
54     {
55         (*dataLen) = 0;
56         return rc;
57     }
58 
59     return processBlobCommand(command, getBlobManager(), reqBuf, replyCmdBuf,
60                               dataLen);
61 }
62 
63 void setupBlobGlobalHandler() __attribute__((constructor));
64 
65 void setupBlobGlobalHandler()
66 {
67     oem::Router* oemRouter = oem::mutableRouter();
68     std::fprintf(stderr,
69                  "Registering OEM:[%#08X], Cmd:[%#04X] for Blob Commands\n",
70                  oem::obmcOemNumber, oem::Cmd::blobTransferCmd);
71 
72     oemRouter->registerHandler(oem::obmcOemNumber, oem::Cmd::blobTransferCmd,
73                                handleBlobCommand);
74 
75     /* Install handlers. */
76     try
77     {
78         loadLibraries(getBlobManager(), BLOB_LIB_PATH);
79     }
80     catch (const std::exception& e)
81     {
82         log<level::ERR>("ERROR loading blob handlers",
83                         entry("ERROR=%s", e.what()));
84     }
85 }
86 } // namespace blobs
87