Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 3 | #include <ipmid/api.h> |
Patrick Venture | dd0459e | 2018-09-08 09:27:16 -0700 | [diff] [blame] | 4 | |
Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 5 | #include <array> |
| 6 | #include <cstdint> |
| 7 | #include <functional> |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 8 | #include <ipmid/iana.hpp> |
Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 9 | #include <vector> |
| 10 | |
Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 11 | namespace oem |
| 12 | { |
| 13 | constexpr size_t groupMagicSize = 3; |
| 14 | |
| 15 | using Group = std::array<uint8_t, groupMagicSize>; |
Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 16 | |
| 17 | // Handler signature includes ipmi cmd to support wildcard cmd match. |
| 18 | // Buffers and lengths exclude the OemGroup bytes in the IPMI message. |
| 19 | // dataLen supplies length of reqBuf upon call, and should be set to the |
| 20 | // length of replyBuf upon return - conventional in this code base. |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 21 | using Handler = std::function<ipmi_ret_t(ipmi_cmd_t, // cmd byte |
| 22 | const uint8_t*, // reqBuf |
| 23 | uint8_t*, // replyBuf |
| 24 | size_t*)>; // dataLen |
Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 25 | |
| 26 | /// Router Interface class. |
| 27 | /// @brief Abstract Router Interface |
| 28 | class Router |
| 29 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 30 | public: |
| 31 | virtual ~Router() |
| 32 | { |
| 33 | } |
Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 34 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 35 | /// Enable message routing to begin. |
| 36 | virtual void activate() = 0; |
Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 37 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 38 | /// Register a handler for given OEMNumber & cmd. |
| 39 | /// Use IPMI_CMD_WILDCARD to catch any unregistered cmd |
| 40 | /// for the given OEMNumber. |
| 41 | /// |
| 42 | /// @param[in] oen - the OEM Number. |
| 43 | /// @param[in] cmd - the Command. |
| 44 | /// @param[in] handler - the handler to call given that OEN and |
| 45 | /// command. |
| 46 | virtual void registerHandler(Number oen, ipmi_cmd_t cmd, |
| 47 | Handler handler) = 0; |
Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 48 | }; |
| 49 | |
| 50 | /// Expose mutable Router for configuration & activation. |
| 51 | /// |
| 52 | /// @returns pointer to OEM Router to use. |
| 53 | Router* mutableRouter(); |
| 54 | |
| 55 | /// Convert a group to an OEN. |
| 56 | /// |
| 57 | /// @param[in] oeg - request buffer for IPMI command. |
| 58 | /// @return the OEN. |
| 59 | constexpr Number toOemNumber(const uint8_t oeg[groupMagicSize]) |
| 60 | { |
| 61 | return (oeg[2] << 16) | (oeg[1] << 8) | oeg[0]; |
| 62 | } |
| 63 | |
| 64 | /// Given a Group convert to an OEN. |
| 65 | /// |
| 66 | /// @param[in] oeg - OEM Group reference. |
| 67 | /// @return the OEN. |
| 68 | constexpr Number toOemNumber(const Group& oeg) |
| 69 | { |
| 70 | return (oeg[2] << 16) | (oeg[1] << 8) | oeg[0]; |
| 71 | } |
| 72 | |
| 73 | /// Given an OEN, conver to the OEM Group. |
| 74 | /// |
| 75 | /// @param[in] oen - the OEM Number. |
| 76 | /// @return the OEM Group. |
| 77 | constexpr Group toOemGroup(Number oen) |
| 78 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 79 | return Group{static_cast<uint8_t>(oen), static_cast<uint8_t>(oen >> 8), |
| 80 | static_cast<uint8_t>(oen >> 16)}; |
Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 83 | } // namespace oem |