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