| 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> | 
| Willy Tu | 067ece1 | 2022-06-16 02:07:06 -0700 | [diff] [blame^] | 27 | #include <ipmid/api-types.hpp> | 
 | 28 | #include <ipmid/handler.hpp> | 
| William A. Kennington III | acebece | 2019-02-07 15:15:44 -0800 | [diff] [blame] | 29 | #include <ipmid/iana.hpp> | 
 | 30 | #include <ipmid/oemopenbmc.hpp> | 
 | 31 | #include <ipmid/oemrouter.hpp> | 
| Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 32 | #include <memory> | 
| Benjamin Fair | 1c4d3d3 | 2018-10-19 17:22:53 -0700 | [diff] [blame] | 33 | #include <phosphor-logging/log.hpp> | 
| Willy Tu | 067ece1 | 2022-06-16 02:07:06 -0700 | [diff] [blame^] | 34 | #include <span> | 
| Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 35 |  | 
| Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 36 | namespace blobs | 
 | 37 | { | 
 | 38 |  | 
| Benjamin Fair | 1c4d3d3 | 2018-10-19 17:22:53 -0700 | [diff] [blame] | 39 | using namespace phosphor::logging; | 
 | 40 |  | 
| Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 41 | void setupBlobGlobalHandler() __attribute__((constructor)); | 
 | 42 |  | 
 | 43 | void setupBlobGlobalHandler() | 
 | 44 | { | 
| Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 45 |     std::fprintf(stderr, | 
 | 46 |                  "Registering OEM:[%#08X], Cmd:[%#04X] for Blob Commands\n", | 
| Patrick Venture | e08863e | 2018-11-15 14:39:44 -0800 | [diff] [blame] | 47 |                  oem::obmcOemNumber, oem::Cmd::blobTransferCmd); | 
| Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 48 |  | 
| Willy Tu | 067ece1 | 2022-06-16 02:07:06 -0700 | [diff] [blame^] | 49 |     ipmi::registerOemHandler( | 
 | 50 |         ipmi::prioOemBase, oem::obmcOemNumber, oem::Cmd::blobTransferCmd, | 
 | 51 |         ::ipmi::Privilege::User, | 
 | 52 |         [](ipmi::Context::ptr, uint8_t cmd, const std::vector<uint8_t>& data) { | 
 | 53 |             return handleBlobCommand(cmd, data); | 
 | 54 |         }); | 
| Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 55 |  | 
| Patrick Venture | 5100a38 | 2018-09-27 10:40:50 -0700 | [diff] [blame] | 56 |     /* Install handlers. */ | 
| Benjamin Fair | 1c4d3d3 | 2018-10-19 17:22:53 -0700 | [diff] [blame] | 57 |     try | 
 | 58 |     { | 
| Patrick Venture | 8aee057 | 2018-11-28 14:59:23 -0800 | [diff] [blame] | 59 |         loadLibraries(getBlobManager(), BLOB_LIB_PATH); | 
| Benjamin Fair | 1c4d3d3 | 2018-10-19 17:22:53 -0700 | [diff] [blame] | 60 |     } | 
 | 61 |     catch (const std::exception& e) | 
 | 62 |     { | 
 | 63 |         log<level::ERR>("ERROR loading blob handlers", | 
 | 64 |                         entry("ERROR=%s", e.what())); | 
 | 65 |     } | 
| Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 66 | } | 
 | 67 | } // namespace blobs |