Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 1 | #include "command_table.hpp" |
| 2 | |
Richard Marian Thomaiyar | 472a37b | 2018-09-06 07:11:07 +0530 | [diff] [blame] | 3 | #include "main.hpp" |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 4 | #include "message_handler.hpp" |
Tom Joseph | 1efcb49 | 2017-01-31 16:56:47 +0530 | [diff] [blame] | 5 | #include "message_parsers.hpp" |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 6 | #include "sessions_manager.hpp" |
Nagaraju Goruganti | 1d9d416 | 2018-03-22 01:27:37 -0500 | [diff] [blame] | 7 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 8 | #include <iomanip> |
Patrick Williams | 75a8d8b | 2021-09-02 11:30:44 -0500 | [diff] [blame] | 9 | #include <ipmid/types.hpp> |
Vernon Mauery | 6650164 | 2018-07-30 09:07:10 -0700 | [diff] [blame] | 10 | #include <main.hpp> |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 11 | #include <phosphor-logging/elog-errors.hpp> |
| 12 | #include <phosphor-logging/log.hpp> |
Vernon Mauery | 6650164 | 2018-07-30 09:07:10 -0700 | [diff] [blame] | 13 | #include <user_channel/user_layer.hpp> |
Vernon Mauery | f41a554 | 2018-10-15 16:04:17 -0700 | [diff] [blame] | 14 | #include <xyz/openbmc_project/Common/error.hpp> |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 15 | |
Vernon Mauery | 6650164 | 2018-07-30 09:07:10 -0700 | [diff] [blame] | 16 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
Nagaraju Goruganti | 1d9d416 | 2018-03-22 01:27:37 -0500 | [diff] [blame] | 17 | using namespace phosphor::logging; |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 18 | |
| 19 | namespace command |
| 20 | { |
| 21 | |
| 22 | void Table::registerCommand(CommandID inCommand, std::unique_ptr<Entry>&& entry) |
| 23 | { |
Feist, James | bd45aae | 2017-10-26 15:06:13 -0700 | [diff] [blame] | 24 | auto& command = commandTable[inCommand.command]; |
| 25 | |
| 26 | if (command) |
| 27 | { |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 28 | log<level::DEBUG>( |
| 29 | "Already Registered", |
Vernon Mauery | 6650164 | 2018-07-30 09:07:10 -0700 | [diff] [blame] | 30 | phosphor::logging::entry("SKIPPED_ENTRY=0x%x", inCommand.command)); |
Feist, James | bd45aae | 2017-10-26 15:06:13 -0700 | [diff] [blame] | 31 | return; |
| 32 | } |
| 33 | |
Feist, James | bd45aae | 2017-10-26 15:06:13 -0700 | [diff] [blame] | 34 | command = std::move(entry); |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 35 | } |
| 36 | |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 37 | void Table::executeCommand(uint32_t inCommand, |
| 38 | std::vector<uint8_t>& commandData, |
| 39 | std::shared_ptr<message::Handler> handler) |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 40 | { |
| 41 | using namespace std::chrono_literals; |
| 42 | |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 43 | auto iterator = commandTable.find(inCommand); |
| 44 | |
| 45 | if (iterator == commandTable.end()) |
| 46 | { |
Vernon Mauery | 6650164 | 2018-07-30 09:07:10 -0700 | [diff] [blame] | 47 | CommandID command(inCommand); |
| 48 | |
Vernon Mauery | 779e7e1 | 2021-06-08 16:24:45 -0700 | [diff] [blame] | 49 | // Do not forward any session zero commands to ipmid |
| 50 | if (handler->sessionID == session::sessionZero) |
| 51 | { |
| 52 | log<level::INFO>("Table: refuse to forward session-zero command", |
| 53 | entry("LUN=%x", command.lun()), |
| 54 | entry("NETFN=%x", command.netFn()), |
| 55 | entry("CMD=%x", command.cmd())); |
| 56 | return; |
| 57 | } |
Vernon Mauery | cfb34ca | 2021-06-10 15:37:07 -0700 | [diff] [blame] | 58 | std::shared_ptr<session::Session> session = |
Vernon Mauery | 2085ae0 | 2021-06-10 11:51:00 -0700 | [diff] [blame] | 59 | session::Manager::get().getSession(handler->sessionID); |
Vernon Mauery | cfb34ca | 2021-06-10 15:37:07 -0700 | [diff] [blame] | 60 | |
| 61 | // Ignore messages that are not part of an active session |
| 62 | auto state = static_cast<session::State>(session->state()); |
| 63 | if (state != session::State::active) |
| 64 | { |
| 65 | return; |
| 66 | } |
Vernon Mauery | 779e7e1 | 2021-06-08 16:24:45 -0700 | [diff] [blame] | 67 | |
Vernon Mauery | 6650164 | 2018-07-30 09:07:10 -0700 | [diff] [blame] | 68 | auto bus = getSdBus(); |
| 69 | // forward the request onto the main ipmi queue |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 70 | using IpmiDbusRspType = std::tuple<uint8_t, uint8_t, uint8_t, uint8_t, |
| 71 | std::vector<uint8_t>>; |
Vernon Mauery | 6650164 | 2018-07-30 09:07:10 -0700 | [diff] [blame] | 72 | uint8_t lun = command.lun(); |
| 73 | uint8_t netFn = command.netFn(); |
| 74 | uint8_t cmd = command.cmd(); |
Vernon Mauery | cfb34ca | 2021-06-10 15:37:07 -0700 | [diff] [blame] | 75 | |
Vernon Mauery | 6650164 | 2018-07-30 09:07:10 -0700 | [diff] [blame] | 76 | std::map<std::string, ipmi::Value> options = { |
Vernon Mauery | d92bc32 | 2019-03-15 15:24:30 -0700 | [diff] [blame] | 77 | {"userId", ipmi::Value(static_cast<int>( |
| 78 | ipmi::ipmiUserGetUserId(session->userName)))}, |
Suryakanth Sekar | f8a34fc | 2019-06-12 20:59:18 +0530 | [diff] [blame] | 79 | {"privilege", |
| 80 | ipmi::Value(static_cast<int>(session->currentPrivilege()))}, |
Rajashekar Gade Reddy | 49a94b2 | 2019-11-13 16:46:32 +0530 | [diff] [blame] | 81 | {"currentSessionId", |
| 82 | ipmi::Value(static_cast<uint32_t>(session->getBMCSessionID()))}, |
Vernon Mauery | 6650164 | 2018-07-30 09:07:10 -0700 | [diff] [blame] | 83 | }; |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 84 | bus->async_method_call( |
| 85 | [handler, this](const boost::system::error_code& ec, |
| 86 | const IpmiDbusRspType& response) { |
| 87 | if (!ec) |
| 88 | { |
| 89 | const uint8_t& cc = std::get<3>(response); |
| 90 | const std::vector<uint8_t>& responseData = |
| 91 | std::get<4>(response); |
| 92 | std::vector<uint8_t> payload; |
| 93 | payload.reserve(1 + responseData.size()); |
| 94 | payload.push_back(cc); |
| 95 | payload.insert(payload.end(), responseData.begin(), |
| 96 | responseData.end()); |
| 97 | handler->outPayload = std::move(payload); |
| 98 | } |
| 99 | else |
| 100 | { |
| 101 | std::vector<uint8_t> payload; |
| 102 | payload.push_back(IPMI_CC_UNSPECIFIED_ERROR); |
| 103 | handler->outPayload = std::move(payload); |
| 104 | } |
| 105 | }, |
| 106 | "xyz.openbmc_project.Ipmi.Host", "/xyz/openbmc_project/Ipmi", |
| 107 | "xyz.openbmc_project.Ipmi.Server", "execute", netFn, lun, cmd, |
| 108 | commandData, options); |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 109 | } |
| 110 | else |
| 111 | { |
| 112 | auto start = std::chrono::steady_clock::now(); |
| 113 | |
Vernon Mauery | cfb34ca | 2021-06-10 15:37:07 -0700 | [diff] [blame] | 114 | // Ignore messages that are not part of an active/pre-active session |
| 115 | if (handler->sessionID != session::sessionZero) |
| 116 | { |
| 117 | std::shared_ptr<session::Session> session = |
Vernon Mauery | 2085ae0 | 2021-06-10 11:51:00 -0700 | [diff] [blame] | 118 | session::Manager::get().getSession(handler->sessionID); |
Vernon Mauery | cfb34ca | 2021-06-10 15:37:07 -0700 | [diff] [blame] | 119 | auto state = static_cast<session::State>(session->state()); |
| 120 | if ((state != session::State::setupInProgress) && |
| 121 | (state != session::State::active)) |
| 122 | { |
| 123 | return; |
| 124 | } |
| 125 | } |
| 126 | |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 127 | handler->outPayload = |
| 128 | iterator->second->executeCommand(commandData, handler); |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 129 | |
| 130 | auto end = std::chrono::steady_clock::now(); |
| 131 | |
Yong Li | 899cf5a | 2020-01-19 13:32:20 +0800 | [diff] [blame] | 132 | std::chrono::duration<size_t> elapsedSeconds = |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 133 | std::chrono::duration_cast<std::chrono::seconds>(end - start); |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 134 | |
| 135 | // If command time execution time exceeds 2 seconds, log a time |
| 136 | // exceeded message |
| 137 | if (elapsedSeconds > 2s) |
| 138 | { |
Vernon Mauery | fc37e59 | 2018-12-19 14:55:15 -0800 | [diff] [blame] | 139 | log<level::ERR>("IPMI command timed out", |
Yong Li | 899cf5a | 2020-01-19 13:32:20 +0800 | [diff] [blame] | 140 | entry("DELAY=%zu", elapsedSeconds.count())); |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 141 | } |
| 142 | } |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 143 | } |
| 144 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 145 | std::vector<uint8_t> |
| 146 | NetIpmidEntry::executeCommand(std::vector<uint8_t>& commandData, |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 147 | std::shared_ptr<message::Handler> handler) |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 148 | { |
| 149 | std::vector<uint8_t> errResponse; |
| 150 | |
| 151 | // Check if the command qualifies to be run prior to establishing a session |
Suryakanth Sekar | f8a34fc | 2019-06-12 20:59:18 +0530 | [diff] [blame] | 152 | if (!sessionless && (handler->sessionID == session::sessionZero)) |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 153 | { |
| 154 | errResponse.resize(1); |
| 155 | errResponse[0] = IPMI_CC_INSUFFICIENT_PRIVILEGE; |
Vernon Mauery | fc37e59 | 2018-12-19 14:55:15 -0800 | [diff] [blame] | 156 | log<level::INFO>("Table: Insufficient privilege for command", |
Vernon Mauery | 6650164 | 2018-07-30 09:07:10 -0700 | [diff] [blame] | 157 | entry("LUN=%x", command.lun()), |
| 158 | entry("NETFN=%x", command.netFn()), |
| 159 | entry("CMD=%x", command.cmd())); |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 160 | return errResponse; |
| 161 | } |
| 162 | |
Vernon Mauery | 41ff9b5 | 2021-06-11 11:37:40 -0700 | [diff] [blame] | 163 | return functor(commandData, handler); |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 164 | } |
| 165 | |
Tom Joseph | 07181f5 | 2016-08-08 08:17:08 -0500 | [diff] [blame] | 166 | } // namespace command |