blob: 3dc531a37ba7934efb8805d6752a314454c413aa [file] [log] [blame]
Tom Joseph07181f52016-08-08 08:17:08 -05001#include "command_table.hpp"
2
Richard Marian Thomaiyar472a37b2018-09-06 07:11:07 +05303#include "main.hpp"
Tom Joseph07181f52016-08-08 08:17:08 -05004#include "message_handler.hpp"
Tom Joseph1efcb492017-01-31 16:56:47 +05305#include "message_parsers.hpp"
Tom Joseph07181f52016-08-08 08:17:08 -05006#include "sessions_manager.hpp"
Nagaraju Goruganti1d9d4162018-03-22 01:27:37 -05007
Vernon Mauery9e801a22018-10-12 13:20:49 -07008#include <iomanip>
Vernon Mauery66501642018-07-30 09:07:10 -07009#include <main.hpp>
Vernon Mauery9e801a22018-10-12 13:20:49 -070010#include <phosphor-logging/elog-errors.hpp>
11#include <phosphor-logging/log.hpp>
Vernon Mauery66501642018-07-30 09:07:10 -070012#include <user_channel/user_layer.hpp>
Vernon Maueryf41a5542018-10-15 16:04:17 -070013#include <xyz/openbmc_project/Common/error.hpp>
Vernon Mauery9e801a22018-10-12 13:20:49 -070014
Vernon Mauery66501642018-07-30 09:07:10 -070015using namespace sdbusplus::xyz::openbmc_project::Common::Error;
Nagaraju Goruganti1d9d4162018-03-22 01:27:37 -050016using namespace phosphor::logging;
Tom Joseph07181f52016-08-08 08:17:08 -050017
Vernon Mauery66501642018-07-30 09:07:10 -070018namespace ipmi
19{
Patrick Williams9edc2312020-05-13 17:58:04 -050020using Value = std::variant<bool, uint8_t, int16_t, uint16_t, int32_t, uint32_t,
21 int64_t, uint64_t, double, std::string>;
Vernon Mauery66501642018-07-30 09:07:10 -070022
23} // namespace ipmi
24
Tom Joseph07181f52016-08-08 08:17:08 -050025namespace command
26{
27
28void Table::registerCommand(CommandID inCommand, std::unique_ptr<Entry>&& entry)
29{
Feist, Jamesbd45aae2017-10-26 15:06:13 -070030 auto& command = commandTable[inCommand.command];
31
32 if (command)
33 {
Vernon Mauery9e801a22018-10-12 13:20:49 -070034 log<level::DEBUG>(
35 "Already Registered",
Vernon Mauery66501642018-07-30 09:07:10 -070036 phosphor::logging::entry("SKIPPED_ENTRY=0x%x", inCommand.command));
Feist, Jamesbd45aae2017-10-26 15:06:13 -070037 return;
38 }
39
Feist, Jamesbd45aae2017-10-26 15:06:13 -070040 command = std::move(entry);
Tom Joseph07181f52016-08-08 08:17:08 -050041}
42
Vernon Mauery8d6f2002018-11-07 09:55:53 -080043void Table::executeCommand(uint32_t inCommand,
44 std::vector<uint8_t>& commandData,
45 std::shared_ptr<message::Handler> handler)
Tom Joseph07181f52016-08-08 08:17:08 -050046{
47 using namespace std::chrono_literals;
48
Tom Joseph07181f52016-08-08 08:17:08 -050049 auto iterator = commandTable.find(inCommand);
50
51 if (iterator == commandTable.end())
52 {
Vernon Mauery66501642018-07-30 09:07:10 -070053 CommandID command(inCommand);
54
55 auto bus = getSdBus();
56 // forward the request onto the main ipmi queue
Vernon Mauery8d6f2002018-11-07 09:55:53 -080057 using IpmiDbusRspType = std::tuple<uint8_t, uint8_t, uint8_t, uint8_t,
58 std::vector<uint8_t>>;
Vernon Mauery66501642018-07-30 09:07:10 -070059 uint8_t lun = command.lun();
60 uint8_t netFn = command.netFn();
61 uint8_t cmd = command.cmd();
62 std::shared_ptr<session::Session> session =
63 std::get<session::Manager&>(singletonPool)
Vernon Mauery8d6f2002018-11-07 09:55:53 -080064 .getSession(handler->sessionID);
Vernon Mauery66501642018-07-30 09:07:10 -070065 std::map<std::string, ipmi::Value> options = {
Vernon Maueryd92bc322019-03-15 15:24:30 -070066 {"userId", ipmi::Value(static_cast<int>(
67 ipmi::ipmiUserGetUserId(session->userName)))},
Suryakanth Sekarf8a34fc2019-06-12 20:59:18 +053068 {"privilege",
69 ipmi::Value(static_cast<int>(session->currentPrivilege()))},
Rajashekar Gade Reddy49a94b22019-11-13 16:46:32 +053070 {"currentSessionId",
71 ipmi::Value(static_cast<uint32_t>(session->getBMCSessionID()))},
Vernon Mauery66501642018-07-30 09:07:10 -070072 };
Vernon Mauery8d6f2002018-11-07 09:55:53 -080073 bus->async_method_call(
74 [handler, this](const boost::system::error_code& ec,
75 const IpmiDbusRspType& response) {
76 if (!ec)
77 {
78 const uint8_t& cc = std::get<3>(response);
79 const std::vector<uint8_t>& responseData =
80 std::get<4>(response);
81 std::vector<uint8_t> payload;
82 payload.reserve(1 + responseData.size());
83 payload.push_back(cc);
84 payload.insert(payload.end(), responseData.begin(),
85 responseData.end());
86 handler->outPayload = std::move(payload);
87 }
88 else
89 {
90 std::vector<uint8_t> payload;
91 payload.push_back(IPMI_CC_UNSPECIFIED_ERROR);
92 handler->outPayload = std::move(payload);
93 }
94 },
95 "xyz.openbmc_project.Ipmi.Host", "/xyz/openbmc_project/Ipmi",
96 "xyz.openbmc_project.Ipmi.Server", "execute", netFn, lun, cmd,
97 commandData, options);
Tom Joseph07181f52016-08-08 08:17:08 -050098 }
99 else
100 {
101 auto start = std::chrono::steady_clock::now();
102
Vernon Mauery8d6f2002018-11-07 09:55:53 -0800103 handler->outPayload =
104 iterator->second->executeCommand(commandData, handler);
Tom Joseph07181f52016-08-08 08:17:08 -0500105
106 auto end = std::chrono::steady_clock::now();
107
Yong Li899cf5a2020-01-19 13:32:20 +0800108 std::chrono::duration<size_t> elapsedSeconds =
Vernon Mauery9e801a22018-10-12 13:20:49 -0700109 std::chrono::duration_cast<std::chrono::seconds>(end - start);
Tom Joseph07181f52016-08-08 08:17:08 -0500110
111 // If command time execution time exceeds 2 seconds, log a time
112 // exceeded message
113 if (elapsedSeconds > 2s)
114 {
Vernon Maueryfc37e592018-12-19 14:55:15 -0800115 log<level::ERR>("IPMI command timed out",
Yong Li899cf5a2020-01-19 13:32:20 +0800116 entry("DELAY=%zu", elapsedSeconds.count()));
Tom Joseph07181f52016-08-08 08:17:08 -0500117 }
118 }
Tom Joseph07181f52016-08-08 08:17:08 -0500119}
120
Vernon Mauery9e801a22018-10-12 13:20:49 -0700121std::vector<uint8_t>
122 NetIpmidEntry::executeCommand(std::vector<uint8_t>& commandData,
Vernon Mauery8d6f2002018-11-07 09:55:53 -0800123 std::shared_ptr<message::Handler> handler)
Tom Joseph07181f52016-08-08 08:17:08 -0500124{
125 std::vector<uint8_t> errResponse;
126
127 // Check if the command qualifies to be run prior to establishing a session
Suryakanth Sekarf8a34fc2019-06-12 20:59:18 +0530128 if (!sessionless && (handler->sessionID == session::sessionZero))
Tom Joseph07181f52016-08-08 08:17:08 -0500129 {
130 errResponse.resize(1);
131 errResponse[0] = IPMI_CC_INSUFFICIENT_PRIVILEGE;
Vernon Maueryfc37e592018-12-19 14:55:15 -0800132 log<level::INFO>("Table: Insufficient privilege for command",
Vernon Mauery66501642018-07-30 09:07:10 -0700133 entry("LUN=%x", command.lun()),
134 entry("NETFN=%x", command.netFn()),
135 entry("CMD=%x", command.cmd()));
Tom Joseph07181f52016-08-08 08:17:08 -0500136 return errResponse;
137 }
138
Vernon Mauery8d6f2002018-11-07 09:55:53 -0800139 return functor(commandData, *handler);
Tom Joseph07181f52016-08-08 08:17:08 -0500140}
141
Tom Joseph07181f52016-08-08 08:17:08 -0500142} // namespace command