Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 1 | #include "message_handler.hpp" |
| 2 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 3 | #include "command_table.hpp" |
| 4 | #include "main.hpp" |
| 5 | #include "message.hpp" |
| 6 | #include "message_parsers.hpp" |
| 7 | #include "sessions_manager.hpp" |
| 8 | |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 9 | #include <sys/socket.h> |
| 10 | |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 11 | #include <memory> |
Vernon Mauery | fc37e59 | 2018-12-19 14:55:15 -0800 | [diff] [blame] | 12 | #include <phosphor-logging/log.hpp> |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 13 | #include <string> |
| 14 | #include <vector> |
| 15 | |
Vernon Mauery | fc37e59 | 2018-12-19 14:55:15 -0800 | [diff] [blame] | 16 | using namespace phosphor::logging; |
| 17 | |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 18 | namespace message |
| 19 | { |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 20 | using namespace phosphor::logging; |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 21 | |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 22 | bool Handler::receive() |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 23 | { |
| 24 | std::vector<uint8_t> packet; |
| 25 | auto readStatus = 0; |
| 26 | |
| 27 | // Read the packet |
| 28 | std::tie(readStatus, packet) = channel->read(); |
| 29 | |
| 30 | // Read of the packet failed |
| 31 | if (readStatus < 0) |
| 32 | { |
Vernon Mauery | fc37e59 | 2018-12-19 14:55:15 -0800 | [diff] [blame] | 33 | log<level::ERR>("Error in Read", entry("STATUS=%x", readStatus)); |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 34 | return false; |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | // Unflatten the packet |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 38 | std::tie(inMessage, sessionHeader) = parser::unflatten(packet); |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 39 | |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 40 | auto session = std::get<session::Manager&>(singletonPool) |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 41 | .getSession(inMessage->bmcSessionID); |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 42 | |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 43 | sessionID = inMessage->bmcSessionID; |
| 44 | inMessage->rcSessionID = session->getRCSessionID(); |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 45 | session->updateLastTransactionTime(); |
Suryakanth Sekar | f8a34fc | 2019-06-12 20:59:18 +0530 | [diff] [blame] | 46 | session->channelPtr = channel; |
| 47 | session->remotePort(channel->getPort()); |
Rajashekar Gade Reddy | 9979e99 | 2020-02-07 19:18:34 +0530 | [diff] [blame] | 48 | uint32_t ipAddr = 0; |
| 49 | channel->getRemoteAddress(ipAddr); |
| 50 | session->remoteIPAddr(ipAddr); |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 51 | |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 52 | return true; |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 53 | } |
| 54 | |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 55 | Handler::~Handler() |
| 56 | { |
| 57 | if (outPayload) |
| 58 | { |
| 59 | std::shared_ptr<Message> outMessage = |
| 60 | inMessage->createResponse(*outPayload); |
| 61 | if (!outMessage) |
| 62 | { |
| 63 | return; |
| 64 | } |
| 65 | try |
| 66 | { |
| 67 | send(outMessage); |
| 68 | } |
| 69 | catch (const std::exception& e) |
| 70 | { |
| 71 | // send failed, most likely due to a session closure |
| 72 | log<level::INFO>("Async RMCP+ reply failed", |
| 73 | entry("EXCEPTION=%s", e.what())); |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | void Handler::processIncoming() |
| 79 | { |
| 80 | // Read the incoming IPMI packet |
| 81 | if (!receive()) |
| 82 | { |
| 83 | return; |
| 84 | } |
| 85 | |
| 86 | // Execute the Command, possibly asynchronously |
| 87 | executeCommand(); |
| 88 | |
| 89 | // send happens during the destructor if a payload was set |
| 90 | } |
| 91 | |
| 92 | void Handler::executeCommand() |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 93 | { |
| 94 | // Get the CommandID to map into the command table |
Vernon Mauery | 7f268e4 | 2018-10-26 10:26:01 -0700 | [diff] [blame] | 95 | auto command = inMessage->getCommand(); |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 96 | if (inMessage->payloadType == PayloadType::IPMI) |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 97 | { |
Richard Marian Thomaiyar | 8af90eb | 2019-03-03 15:13:33 +0530 | [diff] [blame] | 98 | auto session = |
| 99 | std::get<session::Manager&>(singletonPool).getSession(sessionID); |
| 100 | // Process PayloadType::IPMI only if ipmi is enabled or for sessionless |
| 101 | // or for session establisbment command |
Suryakanth Sekar | f8a34fc | 2019-06-12 20:59:18 +0530 | [diff] [blame] | 102 | if (this->sessionID == session::sessionZero || |
Richard Marian Thomaiyar | 8af90eb | 2019-03-03 15:13:33 +0530 | [diff] [blame] | 103 | session->sessionUserPrivAccess.ipmiEnabled) |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 104 | { |
Richard Marian Thomaiyar | 8af90eb | 2019-03-03 15:13:33 +0530 | [diff] [blame] | 105 | if (inMessage->payload.size() < |
| 106 | (sizeof(LAN::header::Request) + sizeof(LAN::trailer::Request))) |
| 107 | { |
| 108 | return; |
| 109 | } |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 110 | |
Richard Marian Thomaiyar | 8af90eb | 2019-03-03 15:13:33 +0530 | [diff] [blame] | 111 | auto start = |
| 112 | inMessage->payload.begin() + sizeof(LAN::header::Request); |
| 113 | auto end = inMessage->payload.end() - sizeof(LAN::trailer::Request); |
| 114 | std::vector<uint8_t> inPayload(start, end); |
| 115 | std::get<command::Table&>(singletonPool) |
| 116 | .executeCommand(command, inPayload, shared_from_this()); |
| 117 | } |
| 118 | else |
| 119 | { |
| 120 | std::vector<uint8_t> payload{IPMI_CC_INSUFFICIENT_PRIVILEGE}; |
| 121 | outPayload = std::move(payload); |
| 122 | } |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 123 | } |
| 124 | else |
| 125 | { |
Vernon Mauery | 8d6f200 | 2018-11-07 09:55:53 -0800 | [diff] [blame] | 126 | std::get<command::Table&>(singletonPool) |
| 127 | .executeCommand(command, inMessage->payload, shared_from_this()); |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 128 | } |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 129 | } |
| 130 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 131 | void Handler::send(std::shared_ptr<Message> outMessage) |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 132 | { |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 133 | auto session = |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 134 | std::get<session::Manager&>(singletonPool).getSession(sessionID); |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 135 | |
| 136 | // Flatten the packet |
Vernon Mauery | 224f36a | 2018-10-25 08:52:23 -0700 | [diff] [blame] | 137 | auto packet = parser::flatten(outMessage, sessionHeader, session); |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 138 | |
Tom Joseph | 04b3038 | 2017-04-03 01:06:51 +0530 | [diff] [blame] | 139 | // Write the packet |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 140 | auto writeStatus = channel->write(packet); |
| 141 | if (writeStatus < 0) |
| 142 | { |
Tom Joseph | 04b3038 | 2017-04-03 01:06:51 +0530 | [diff] [blame] | 143 | throw std::runtime_error("Error in writing to socket"); |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 144 | } |
Tom Joseph | e6361a2 | 2016-08-10 06:56:25 -0500 | [diff] [blame] | 145 | } |
| 146 | |
Tom Joseph | ff84849 | 2017-03-31 10:43:48 +0530 | [diff] [blame] | 147 | void Handler::setChannelInSession() const |
| 148 | { |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 149 | auto session = |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 150 | std::get<session::Manager&>(singletonPool).getSession(sessionID); |
Tom Joseph | ff84849 | 2017-03-31 10:43:48 +0530 | [diff] [blame] | 151 | |
| 152 | session->channelPtr = channel; |
| 153 | } |
| 154 | |
Vernon Mauery | 70fd29c | 2017-11-30 13:11:43 -0800 | [diff] [blame] | 155 | void Handler::sendSOLPayload(const std::vector<uint8_t>& input) |
Tom Joseph | 22596f2 | 2017-03-31 10:52:27 +0530 | [diff] [blame] | 156 | { |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 157 | auto session = |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 158 | std::get<session::Manager&>(singletonPool).getSession(sessionID); |
Tom Joseph | 22596f2 | 2017-03-31 10:52:27 +0530 | [diff] [blame] | 159 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 160 | auto outMessage = std::make_shared<Message>(); |
| 161 | outMessage->payloadType = PayloadType::SOL; |
| 162 | outMessage->payload = input; |
| 163 | outMessage->isPacketEncrypted = session->isCryptAlgoEnabled(); |
| 164 | outMessage->isPacketAuthenticated = session->isIntegrityAlgoEnabled(); |
| 165 | outMessage->rcSessionID = session->getRCSessionID(); |
| 166 | outMessage->bmcSessionID = sessionID; |
Tom Joseph | 22596f2 | 2017-03-31 10:52:27 +0530 | [diff] [blame] | 167 | |
| 168 | send(outMessage); |
| 169 | } |
| 170 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 171 | void Handler::sendUnsolicitedIPMIPayload(uint8_t netfn, uint8_t cmd, |
Tom Joseph | 63d3e49 | 2017-03-31 11:01:08 +0530 | [diff] [blame] | 172 | const std::vector<uint8_t>& output) |
| 173 | { |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 174 | auto session = |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 175 | std::get<session::Manager&>(singletonPool).getSession(sessionID); |
Tom Joseph | 63d3e49 | 2017-03-31 11:01:08 +0530 | [diff] [blame] | 176 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 177 | auto outMessage = std::make_shared<Message>(); |
| 178 | outMessage->payloadType = PayloadType::IPMI; |
| 179 | outMessage->isPacketEncrypted = session->isCryptAlgoEnabled(); |
| 180 | outMessage->isPacketAuthenticated = session->isIntegrityAlgoEnabled(); |
| 181 | outMessage->rcSessionID = session->getRCSessionID(); |
| 182 | outMessage->bmcSessionID = sessionID; |
Tom Joseph | 63d3e49 | 2017-03-31 11:01:08 +0530 | [diff] [blame] | 183 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 184 | outMessage->payload.resize(sizeof(LAN::header::Request) + output.size() + |
| 185 | sizeof(LAN::trailer::Request)); |
Tom Joseph | 63d3e49 | 2017-03-31 11:01:08 +0530 | [diff] [blame] | 186 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 187 | auto respHeader = |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 188 | reinterpret_cast<LAN::header::Request*>(outMessage->payload.data()); |
Tom Joseph | 63d3e49 | 2017-03-31 11:01:08 +0530 | [diff] [blame] | 189 | |
| 190 | // Add IPMI LAN Message Request Header |
| 191 | respHeader->rsaddr = LAN::requesterBMCAddress; |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 192 | respHeader->netfn = (netfn << 0x02); |
| 193 | respHeader->cs = crc8bit(&(respHeader->rsaddr), 2); |
Tom Joseph | 63d3e49 | 2017-03-31 11:01:08 +0530 | [diff] [blame] | 194 | respHeader->rqaddr = LAN::responderBMCAddress; |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 195 | respHeader->rqseq = 0; |
| 196 | respHeader->cmd = cmd; |
Tom Joseph | 63d3e49 | 2017-03-31 11:01:08 +0530 | [diff] [blame] | 197 | |
| 198 | auto assembledSize = sizeof(LAN::header::Request); |
| 199 | |
| 200 | // Copy the output by the execution of the command |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 201 | std::copy(output.begin(), output.end(), |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 202 | outMessage->payload.begin() + assembledSize); |
Tom Joseph | 63d3e49 | 2017-03-31 11:01:08 +0530 | [diff] [blame] | 203 | assembledSize += output.size(); |
| 204 | |
| 205 | // Add the IPMI LAN Message Trailer |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 206 | auto trailer = reinterpret_cast<LAN::trailer::Request*>( |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 207 | outMessage->payload.data() + assembledSize); |
Tom Joseph | 63d3e49 | 2017-03-31 11:01:08 +0530 | [diff] [blame] | 208 | |
| 209 | // Calculate the checksum for the field rqaddr in the header to the |
| 210 | // command data, 3 corresponds to size of the fields before rqaddr( rsaddr, |
| 211 | // netfn, cs). |
| 212 | trailer->checksum = crc8bit(&respHeader->rqaddr, assembledSize - 3); |
| 213 | |
| 214 | send(outMessage); |
| 215 | } |
| 216 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 217 | } // namespace message |