Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 1 | #include "dbus_to_file_handler.hpp" |
| 2 | |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 3 | #include "common/utils.hpp" |
| 4 | |
Andrew Jeffery | 21f128d | 2024-01-15 15:34:26 +1030 | [diff] [blame] | 5 | #include <libpldm/oem/ibm/file_io.h> |
George Liu | c453e16 | 2022-12-21 17:16:23 +0800 | [diff] [blame] | 6 | |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 7 | #include <phosphor-logging/lg2.hpp> |
| 8 | |
| 9 | PHOSPHOR_LOG2_USING; |
| 10 | |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 11 | namespace pldm |
| 12 | { |
| 13 | namespace requester |
| 14 | { |
| 15 | namespace oem_ibm |
| 16 | { |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 17 | using namespace pldm::utils; |
| 18 | using namespace sdbusplus::bus::match::rules; |
| 19 | |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 20 | static constexpr auto resDumpProgressIntf = |
| 21 | "xyz.openbmc_project.Common.Progress"; |
| 22 | static constexpr auto resDumpStatus = |
| 23 | "xyz.openbmc_project.Common.Progress.OperationStatus.Failed"; |
| 24 | |
| 25 | DbusToFileHandler::DbusToFileHandler( |
Andrew Jeffery | fb8d194 | 2024-07-25 23:12:36 +0930 | [diff] [blame] | 26 | int /* mctp_fd */, uint8_t mctp_eid, pldm::InstanceIdDb* instanceIdDb, |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 27 | sdbusplus::message::object_path resDumpCurrentObjPath, |
| 28 | pldm::requester::Handler<pldm::requester::Request>* handler) : |
Patrick Williams | 16c2a0a | 2024-08-16 15:20:59 -0400 | [diff] [blame] | 29 | mctp_eid(mctp_eid), instanceIdDb(instanceIdDb), |
| 30 | resDumpCurrentObjPath(resDumpCurrentObjPath), handler(handler) |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 31 | {} |
| 32 | |
| 33 | void DbusToFileHandler::sendNewFileAvailableCmd(uint64_t fileSize) |
| 34 | { |
Jayanth Othayoth | 7c14fc4 | 2024-12-17 10:24:47 -0600 | [diff] [blame] | 35 | if (instanceIdDb == nullptr) |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 36 | { |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 37 | error( |
Andrew Jeffery | a330b2f | 2023-05-04 14:55:37 +0930 | [diff] [blame] | 38 | "Failed to send resource dump parameters as instance ID DB is not set"); |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 39 | pldm::utils::reportError( |
Manojkiran Eda | 92fb0b5 | 2024-04-17 10:48:17 +0530 | [diff] [blame] | 40 | "xyz.openbmc_project.bmc.pldm.InternalFailure"); |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 41 | return; |
| 42 | } |
Eric Yang | 70262ed | 2025-07-02 06:35:03 +0000 | [diff] [blame^] | 43 | auto instanceIdResult = |
| 44 | pldm::utils::getInstanceId(instanceIdDb->next(mctp_eid)); |
| 45 | if (!instanceIdResult) |
| 46 | { |
| 47 | return; |
| 48 | } |
| 49 | auto instanceId = instanceIdResult.value(); |
Patrick Williams | 16c2a0a | 2024-08-16 15:20:59 -0400 | [diff] [blame] | 50 | std::vector<uint8_t> requestMsg( |
| 51 | sizeof(pldm_msg_hdr) + PLDM_NEW_FILE_REQ_BYTES); |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 52 | auto request = reinterpret_cast<pldm_msg*>(requestMsg.data()); |
| 53 | // Need to revisit this logic at the time of multiple resource dump support |
| 54 | uint32_t fileHandle = 1; |
| 55 | |
Patrick Williams | 16c2a0a | 2024-08-16 15:20:59 -0400 | [diff] [blame] | 56 | auto rc = |
| 57 | encode_new_file_req(instanceId, PLDM_FILE_TYPE_RESOURCE_DUMP_PARMS, |
| 58 | fileHandle, fileSize, request); |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 59 | if (rc != PLDM_SUCCESS) |
| 60 | { |
Andrew Jeffery | a330b2f | 2023-05-04 14:55:37 +0930 | [diff] [blame] | 61 | instanceIdDb->free(mctp_eid, instanceId); |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 62 | error("Failed to encode new file request with response code '{RC}'", |
| 63 | "RC", rc); |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 64 | return; |
| 65 | } |
| 66 | |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 67 | auto newFileAvailableRespHandler = [this](mctp_eid_t /*eid*/, |
| 68 | const pldm_msg* response, |
| 69 | size_t respMsgLen) { |
| 70 | if (response == nullptr || !respMsgLen) |
| 71 | { |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 72 | error("Failed to receive response for NewFileAvailable command"); |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 73 | return; |
| 74 | } |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 75 | uint8_t completionCode{}; |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 76 | auto rc = decode_new_file_resp(response, respMsgLen, &completionCode); |
| 77 | if (rc || completionCode) |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 78 | { |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 79 | error( |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 80 | "Failed to decode new file available response or remote terminus returned error, response code '{RC}' and completion code '{CC}'", |
Riya Dixit | 1e5c81e | 2024-05-03 07:54:00 -0500 | [diff] [blame] | 81 | "RC", rc, "CC", completionCode); |
Riya Dixit | 4f7eec8 | 2024-08-01 15:07:53 -0500 | [diff] [blame] | 82 | reportResourceDumpFailure("DecodeNewFileResp"); |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 83 | } |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 84 | }; |
| 85 | rc = handler->registerRequest( |
| 86 | mctp_eid, instanceId, PLDM_OEM, PLDM_NEW_FILE_AVAILABLE, |
| 87 | std::move(requestMsg), std::move(newFileAvailableRespHandler)); |
| 88 | if (rc) |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 89 | { |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 90 | error( |
| 91 | "Failed to send NewFileAvailable Request to Host, response code '{RC}'", |
| 92 | "RC", rc); |
Riya Dixit | 4f7eec8 | 2024-08-01 15:07:53 -0500 | [diff] [blame] | 93 | reportResourceDumpFailure("NewFileAvailableRequest"); |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 94 | } |
| 95 | } |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 96 | |
Riya Dixit | 4f7eec8 | 2024-08-01 15:07:53 -0500 | [diff] [blame] | 97 | void DbusToFileHandler::reportResourceDumpFailure(const std::string_view& str) |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 98 | { |
Riya Dixit | 4f7eec8 | 2024-08-01 15:07:53 -0500 | [diff] [blame] | 99 | std::string s = "xyz.openbmc_project.PLDM.Error.ReportResourceDumpFail."; |
| 100 | s += str; |
| 101 | |
| 102 | pldm::utils::reportError(s.c_str()); |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 103 | |
| 104 | PropertyValue value{resDumpStatus}; |
| 105 | DBusMapping dbusMapping{resDumpCurrentObjPath, resDumpProgressIntf, |
| 106 | "Status", "string"}; |
| 107 | try |
| 108 | { |
| 109 | pldm::utils::DBusHandler().setDbusProperty(dbusMapping, value); |
| 110 | } |
| 111 | catch (const std::exception& e) |
| 112 | { |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 113 | error("Failed to set resource dump operation status, error - {ERROR}", |
| 114 | "ERROR", e); |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 115 | } |
| 116 | } |
| 117 | |
| 118 | void DbusToFileHandler::processNewResourceDump( |
| 119 | const std::string& vspString, const std::string& resDumpReqPass) |
| 120 | { |
Jayashankar Padath | 99fa186 | 2021-11-10 09:45:06 -0600 | [diff] [blame] | 121 | try |
| 122 | { |
| 123 | std::string objPath = resDumpCurrentObjPath; |
| 124 | auto propVal = pldm::utils::DBusHandler().getDbusPropertyVariant( |
| 125 | objPath.c_str(), "Status", resDumpProgressIntf); |
| 126 | const auto& curResDumpStatus = std::get<ResDumpStatus>(propVal); |
| 127 | |
| 128 | if (curResDumpStatus != |
| 129 | "xyz.openbmc_project.Common.Progress.OperationStatus.InProgress") |
| 130 | { |
| 131 | return; |
| 132 | } |
| 133 | } |
| 134 | catch (const sdbusplus::exception_t& e) |
| 135 | { |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 136 | error( |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 137 | "Error '{ERROR}' found in getting current resource dump status while initiating a new resource dump with object path '{PATH}' and interface {INTERFACE}", |
| 138 | "ERROR", e, "PATH", resDumpCurrentObjPath, "INTERFACE", |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 139 | resDumpProgressIntf); |
Jayashankar Padath | 99fa186 | 2021-11-10 09:45:06 -0600 | [diff] [blame] | 140 | } |
| 141 | |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 142 | namespace fs = std::filesystem; |
| 143 | const fs::path resDumpDirPath = "/var/lib/pldm/resourcedump"; |
| 144 | |
| 145 | if (!fs::exists(resDumpDirPath)) |
| 146 | { |
| 147 | fs::create_directories(resDumpDirPath); |
| 148 | } |
| 149 | |
| 150 | // Need to reconsider this logic to set the value as "1" when we have the |
| 151 | // support to handle multiple resource dumps |
| 152 | fs::path resDumpFilePath = resDumpDirPath / "1"; |
| 153 | |
| 154 | std::ofstream fileHandle; |
| 155 | fileHandle.open(resDumpFilePath, std::ios::out | std::ofstream::binary); |
| 156 | |
| 157 | if (!fileHandle) |
| 158 | { |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 159 | error("Failed to open resource dump file '{PATH}'", "PATH", |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 160 | resDumpFilePath); |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 161 | PropertyValue value{resDumpStatus}; |
| 162 | DBusMapping dbusMapping{resDumpCurrentObjPath, resDumpProgressIntf, |
| 163 | "Status", "string"}; |
| 164 | try |
| 165 | { |
| 166 | pldm::utils::DBusHandler().setDbusProperty(dbusMapping, value); |
| 167 | } |
| 168 | catch (const std::exception& e) |
| 169 | { |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 170 | error( |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 171 | "Failed to set resource dump operation status, error - {ERROR}", |
| 172 | "ERROR", e); |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 173 | } |
| 174 | return; |
| 175 | } |
| 176 | |
| 177 | // Fill up the file with resource dump parameters and respective sizes |
| 178 | auto fileFunc = [&fileHandle](auto& paramBuf) { |
| 179 | uint32_t paramSize = paramBuf.size(); |
| 180 | fileHandle.write((char*)¶mSize, sizeof(paramSize)); |
| 181 | fileHandle << paramBuf; |
| 182 | }; |
| 183 | fileFunc(vspString); |
| 184 | fileFunc(resDumpReqPass); |
| 185 | |
Pavithra Barithaya | c047f80 | 2021-11-30 01:55:03 -0600 | [diff] [blame] | 186 | std::string str; |
| 187 | if (!resDumpReqPass.empty()) |
| 188 | { |
| 189 | str = getAcfFileContent(); |
| 190 | } |
| 191 | |
| 192 | fileFunc(str); |
| 193 | |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 194 | fileHandle.close(); |
| 195 | size_t fileSize = fs::file_size(resDumpFilePath); |
| 196 | |
| 197 | sendNewFileAvailableCmd(fileSize); |
| 198 | } |
| 199 | |
Pavithra Barithaya | c047f80 | 2021-11-30 01:55:03 -0600 | [diff] [blame] | 200 | std::string DbusToFileHandler::getAcfFileContent() |
| 201 | { |
| 202 | std::string str; |
| 203 | static constexpr auto acfDirPath = "/etc/acf/service.acf"; |
| 204 | if (fs::exists(acfDirPath)) |
| 205 | { |
| 206 | std::ifstream file; |
| 207 | file.open(acfDirPath); |
| 208 | std::stringstream acfBuf; |
| 209 | acfBuf << file.rdbuf(); |
| 210 | str = acfBuf.str(); |
| 211 | file.close(); |
| 212 | } |
| 213 | return str; |
| 214 | } |
| 215 | |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 216 | void DbusToFileHandler::newCsrFileAvailable(const std::string& csr, |
| 217 | const std::string fileHandle) |
| 218 | { |
| 219 | namespace fs = std::filesystem; |
| 220 | std::string dirPath = "/var/lib/ibm/bmcweb"; |
| 221 | const fs::path certDirPath = dirPath; |
| 222 | |
| 223 | if (!fs::exists(certDirPath)) |
| 224 | { |
| 225 | fs::create_directories(certDirPath); |
| 226 | fs::permissions(certDirPath, |
| 227 | fs::perms::others_read | fs::perms::owner_write); |
| 228 | } |
| 229 | |
| 230 | fs::path certFilePath = certDirPath / ("CSR_" + fileHandle); |
| 231 | std::ofstream certFile; |
| 232 | |
| 233 | certFile.open(certFilePath, std::ios::out | std::ofstream::binary); |
| 234 | |
| 235 | if (!certFile) |
| 236 | { |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 237 | error("Failed to open certificate file '{PATH}'", "PATH", certFilePath); |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 238 | return; |
| 239 | } |
| 240 | |
| 241 | // Add csr to file |
| 242 | certFile << csr << std::endl; |
| 243 | |
| 244 | certFile.close(); |
| 245 | uint32_t fileSize = fs::file_size(certFilePath); |
| 246 | |
| 247 | newFileAvailableSendToHost(fileSize, (uint32_t)stoi(fileHandle), |
| 248 | PLDM_FILE_TYPE_CERT_SIGNING_REQUEST); |
| 249 | } |
| 250 | |
Patrick Williams | 16c2a0a | 2024-08-16 15:20:59 -0400 | [diff] [blame] | 251 | void DbusToFileHandler::newFileAvailableSendToHost( |
| 252 | const uint32_t fileSize, const uint32_t fileHandle, const uint16_t type) |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 253 | { |
Jayanth Othayoth | 7c14fc4 | 2024-12-17 10:24:47 -0600 | [diff] [blame] | 254 | if (instanceIdDb == nullptr) |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 255 | { |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 256 | error("Failed to send csr to remote terminus."); |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 257 | pldm::utils::reportError( |
Manojkiran Eda | 92fb0b5 | 2024-04-17 10:48:17 +0530 | [diff] [blame] | 258 | "xyz.openbmc_project.bmc.pldm.InternalFailure"); |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 259 | return; |
| 260 | } |
Eric Yang | 70262ed | 2025-07-02 06:35:03 +0000 | [diff] [blame^] | 261 | auto instanceIdResult = |
| 262 | pldm::utils::getInstanceId(instanceIdDb->next(mctp_eid)); |
| 263 | if (!instanceIdResult) |
| 264 | { |
| 265 | return; |
| 266 | } |
| 267 | auto instanceId = instanceIdResult.value(); |
Patrick Williams | 16c2a0a | 2024-08-16 15:20:59 -0400 | [diff] [blame] | 268 | std::vector<uint8_t> requestMsg( |
| 269 | sizeof(pldm_msg_hdr) + PLDM_NEW_FILE_REQ_BYTES); |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 270 | auto request = reinterpret_cast<pldm_msg*>(requestMsg.data()); |
| 271 | |
Patrick Williams | 16c2a0a | 2024-08-16 15:20:59 -0400 | [diff] [blame] | 272 | auto rc = |
| 273 | encode_new_file_req(instanceId, type, fileHandle, fileSize, request); |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 274 | if (rc != PLDM_SUCCESS) |
| 275 | { |
Andrew Jeffery | a330b2f | 2023-05-04 14:55:37 +0930 | [diff] [blame] | 276 | instanceIdDb->free(mctp_eid, instanceId); |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 277 | error("Failed to encode new file request with response code '{RC}'", |
| 278 | "RC", rc); |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 279 | return; |
| 280 | } |
Patrick Williams | 16c2a0a | 2024-08-16 15:20:59 -0400 | [diff] [blame] | 281 | auto newFileAvailableRespHandler = [](mctp_eid_t /*eid*/, |
| 282 | const pldm_msg* response, |
| 283 | size_t respMsgLen) { |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 284 | if (response == nullptr || !respMsgLen) |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 285 | { |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 286 | error( |
| 287 | "Failed to receive response for NewFileAvailable command for vmi"); |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 288 | return; |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 289 | } |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 290 | uint8_t completionCode{}; |
| 291 | auto rc = decode_new_file_resp(response, respMsgLen, &completionCode); |
| 292 | if (rc || completionCode) |
| 293 | { |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 294 | error( |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 295 | "Failed to decode new file available response for vmi or remote terminus returned error, response code '{RC}' and completion code '{CC}'", |
Riya Dixit | 1e5c81e | 2024-05-03 07:54:00 -0500 | [diff] [blame] | 296 | "RC", rc, "CC", completionCode); |
Archana Kakani | 73c8895 | 2025-06-02 11:01:42 -0500 | [diff] [blame] | 297 | if (rc) |
| 298 | { |
| 299 | pldm::utils::reportError( |
| 300 | "xyz.openbmc_project.PLDM.Error.DecodeNewFileResponseFail"); |
| 301 | } |
Sampa Misra | c0c7948 | 2021-06-02 08:01:54 -0500 | [diff] [blame] | 302 | } |
| 303 | }; |
| 304 | rc = handler->registerRequest( |
| 305 | mctp_eid, instanceId, PLDM_OEM, PLDM_NEW_FILE_AVAILABLE, |
| 306 | std::move(requestMsg), std::move(newFileAvailableRespHandler)); |
| 307 | if (rc) |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 308 | { |
Riya Dixit | fc84f63 | 2024-04-06 14:00:02 -0500 | [diff] [blame] | 309 | error( |
| 310 | "Failed to send NewFileAvailable Request to Host for vmi, response code '{RC}'", |
| 311 | "RC", rc); |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 312 | pldm::utils::reportError( |
Riya Dixit | 4f7eec8 | 2024-08-01 15:07:53 -0500 | [diff] [blame] | 313 | "xyz.openbmc_project.PLDM.Error.NewFileAvailableRequestFail"); |
Varsha Kaverappa | 219ace9 | 2021-04-01 02:50:11 -0500 | [diff] [blame] | 314 | } |
| 315 | } |
| 316 | |
Jayashankar Padath | db12436 | 2021-01-28 21:12:34 -0600 | [diff] [blame] | 317 | } // namespace oem_ibm |
| 318 | } // namespace requester |
| 319 | } // namespace pldm |