Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 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" |
Patrick Venture | cd8dab4 | 2019-01-15 19:57:38 -0800 | [diff] [blame] | 20 | #include "manager.hpp" |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 21 | #include "process.hpp" |
Patrick Venture | 5100a38 | 2018-09-27 10:40:50 -0700 | [diff] [blame] | 22 | #include "utils.hpp" |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 23 | |
William A. Kennington III | acebece | 2019-02-07 15:15:44 -0800 | [diff] [blame] | 24 | #include <ipmid/api.h> |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 25 | |
| 26 | #include <cstdio> |
William A. Kennington III | acebece | 2019-02-07 15:15:44 -0800 | [diff] [blame] | 27 | #include <ipmid/iana.hpp> |
| 28 | #include <ipmid/oemopenbmc.hpp> |
| 29 | #include <ipmid/oemrouter.hpp> |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 30 | #include <memory> |
Benjamin Fair | 1c4d3d3 | 2018-10-19 17:22:53 -0700 | [diff] [blame] | 31 | #include <phosphor-logging/log.hpp> |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 32 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 33 | namespace blobs |
| 34 | { |
| 35 | |
Benjamin Fair | 1c4d3d3 | 2018-10-19 17:22:53 -0700 | [diff] [blame] | 36 | using namespace phosphor::logging; |
| 37 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 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 | { |
Patrick Venture | 4125880 | 2018-11-12 10:46:30 -0800 | [diff] [blame] | 46 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 47 | } |
| 48 | |
Patrick Venture | 4125880 | 2018-11-12 10:46:30 -0800 | [diff] [blame] | 49 | /* on failure rc is set to the corresponding IPMI error. */ |
| 50 | ipmi_ret_t rc = IPMI_CC_OK; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 51 | IpmiBlobHandler command = |
Patrick Venture | de8a16e | 2019-03-07 12:48:32 -0800 | [diff] [blame] | 52 | validateBlobCommand(reqBuf, replyCmdBuf, dataLen, &rc); |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 53 | if (command == nullptr) |
| 54 | { |
Patrick Venture | 50539d3 | 2018-12-03 09:01:55 -0800 | [diff] [blame] | 55 | (*dataLen) = 0; |
Patrick Venture | 4125880 | 2018-11-12 10:46:30 -0800 | [diff] [blame] | 56 | return rc; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Patrick Venture | de8a16e | 2019-03-07 12:48:32 -0800 | [diff] [blame] | 59 | return processBlobCommand(command, getBlobManager(), reqBuf, replyCmdBuf, |
| 60 | dataLen); |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 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", |
Patrick Venture | e08863e | 2018-11-15 14:39:44 -0800 | [diff] [blame] | 70 | oem::obmcOemNumber, oem::Cmd::blobTransferCmd); |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 71 | |
Patrick Venture | e08863e | 2018-11-15 14:39:44 -0800 | [diff] [blame] | 72 | oemRouter->registerHandler(oem::obmcOemNumber, oem::Cmd::blobTransferCmd, |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 73 | handleBlobCommand); |
| 74 | |
Patrick Venture | 5100a38 | 2018-09-27 10:40:50 -0700 | [diff] [blame] | 75 | /* Install handlers. */ |
Benjamin Fair | 1c4d3d3 | 2018-10-19 17:22:53 -0700 | [diff] [blame] | 76 | try |
| 77 | { |
Patrick Venture | 8aee057 | 2018-11-28 14:59:23 -0800 | [diff] [blame] | 78 | loadLibraries(getBlobManager(), BLOB_LIB_PATH); |
Benjamin Fair | 1c4d3d3 | 2018-10-19 17:22:53 -0700 | [diff] [blame] | 79 | } |
| 80 | catch (const std::exception& e) |
| 81 | { |
| 82 | log<level::ERR>("ERROR loading blob handlers", |
| 83 | entry("ERROR=%s", e.what())); |
| 84 | } |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 85 | } |
| 86 | } // namespace blobs |