Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 1 | #include "message_parsers.hpp" |
| 2 | |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 3 | #include "endian.hpp" |
| 4 | #include "main.hpp" |
| 5 | #include "message.hpp" |
| 6 | #include "sessions_manager.hpp" |
| 7 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 8 | #include <memory> |
| 9 | |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 10 | namespace message |
| 11 | { |
| 12 | |
| 13 | namespace parser |
| 14 | { |
| 15 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 16 | std::tuple<std::shared_ptr<Message>, SessionHeader> |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 17 | unflatten(std::vector<uint8_t>& inPacket) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 18 | { |
| 19 | // Check if the packet has atleast the size of the RMCP Header |
Kirill Pakhomov | de7dd5c | 2021-02-27 18:45:22 +0300 | [diff] [blame] | 20 | if (inPacket.size() < sizeof(RmcpHeader_t)) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 21 | { |
| 22 | throw std::runtime_error("RMCP Header missing"); |
| 23 | } |
| 24 | |
Kirill Pakhomov | de7dd5c | 2021-02-27 18:45:22 +0300 | [diff] [blame] | 25 | auto rmcpHeaderPtr = reinterpret_cast<RmcpHeader_t*>(inPacket.data()); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 26 | |
| 27 | // Verify if the fields in the RMCP header conforms to the specification |
| 28 | if ((rmcpHeaderPtr->version != RMCP_VERSION) || |
| 29 | (rmcpHeaderPtr->rmcpSeqNum != RMCP_SEQ) || |
Kirill Pakhomov | de7dd5c | 2021-02-27 18:45:22 +0300 | [diff] [blame] | 30 | (rmcpHeaderPtr->classOfMsg < static_cast<uint8_t>(ClassOfMsg::ASF) && |
| 31 | rmcpHeaderPtr->classOfMsg > static_cast<uint8_t>(ClassOfMsg::OEM))) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 32 | { |
| 33 | throw std::runtime_error("RMCP Header is invalid"); |
| 34 | } |
| 35 | |
Kirill Pakhomov | de7dd5c | 2021-02-27 18:45:22 +0300 | [diff] [blame] | 36 | if (rmcpHeaderPtr->classOfMsg == static_cast<uint8_t>(ClassOfMsg::ASF)) |
| 37 | { |
| 38 | #ifndef RMCP_PING |
| 39 | throw std::runtime_error("RMCP Ping is not supported"); |
| 40 | #else |
| 41 | return std::make_tuple(asfparser::unflatten(inPacket), |
| 42 | SessionHeader::IPMI15); |
| 43 | #endif // RMCP_PING |
| 44 | } |
| 45 | |
| 46 | auto sessionHeaderPtr = reinterpret_cast<BasicHeader_t*>(inPacket.data()); |
| 47 | |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 48 | // Read the Session Header and invoke the parser corresponding to the |
| 49 | // header type |
Kirill Pakhomov | de7dd5c | 2021-02-27 18:45:22 +0300 | [diff] [blame] | 50 | switch (static_cast<SessionHeader>(sessionHeaderPtr->format.formatType)) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 51 | { |
| 52 | case SessionHeader::IPMI15: |
| 53 | { |
| 54 | return std::make_tuple(ipmi15parser::unflatten(inPacket), |
| 55 | SessionHeader::IPMI15); |
| 56 | } |
| 57 | case SessionHeader::IPMI20: |
| 58 | { |
| 59 | return std::make_tuple(ipmi20parser::unflatten(inPacket), |
| 60 | SessionHeader::IPMI20); |
| 61 | } |
| 62 | default: |
| 63 | { |
| 64 | throw std::runtime_error("Invalid Session Header"); |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 69 | std::vector<uint8_t> flatten(std::shared_ptr<Message> outMessage, |
Vernon Mauery | 224f36a | 2018-10-25 08:52:23 -0700 | [diff] [blame] | 70 | SessionHeader authType, |
| 71 | std::shared_ptr<session::Session> session) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 72 | { |
| 73 | // Call the flatten routine based on the header type |
| 74 | switch (authType) |
| 75 | { |
| 76 | case SessionHeader::IPMI15: |
| 77 | { |
| 78 | return ipmi15parser::flatten(outMessage, session); |
| 79 | } |
| 80 | case SessionHeader::IPMI20: |
| 81 | { |
| 82 | return ipmi20parser::flatten(outMessage, session); |
| 83 | } |
| 84 | default: |
| 85 | { |
| 86 | return {}; |
| 87 | } |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | } // namespace parser |
| 92 | |
| 93 | namespace ipmi15parser |
| 94 | { |
| 95 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 96 | std::shared_ptr<Message> unflatten(std::vector<uint8_t>& inPacket) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 97 | { |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 98 | if (inPacket.size() < sizeof(SessionHeader_t)) |
| 99 | { |
| 100 | throw std::runtime_error("IPMI1.5 Session Header Missing"); |
| 101 | } |
| 102 | |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 103 | auto header = reinterpret_cast<SessionHeader_t*>(inPacket.data()); |
| 104 | |
Vernon Mauery | 779e7e1 | 2021-06-08 16:24:45 -0700 | [diff] [blame] | 105 | uint32_t sessionID = endian::from_ipmi(header->sessId); |
| 106 | if (sessionID != session::sessionZero) |
| 107 | { |
| 108 | throw std::runtime_error("IPMI1.5 session packets are unsupported"); |
| 109 | } |
| 110 | |
| 111 | auto message = std::make_shared<Message>(); |
| 112 | |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 113 | message->payloadType = PayloadType::IPMI; |
Vernon Mauery | 779e7e1 | 2021-06-08 16:24:45 -0700 | [diff] [blame] | 114 | message->bmcSessionID = session::sessionZero; |
Tom Joseph | 6a56076 | 2017-01-10 15:30:28 +0530 | [diff] [blame] | 115 | message->sessionSeqNum = endian::from_ipmi(header->sessSeqNum); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 116 | message->isPacketEncrypted = false; |
| 117 | message->isPacketAuthenticated = false; |
Kirill Pakhomov | de7dd5c | 2021-02-27 18:45:22 +0300 | [diff] [blame] | 118 | message->rmcpMsgClass = |
| 119 | static_cast<ClassOfMsg>(header->base.rmcp.classOfMsg); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 120 | |
Zhikui Ren | 2b1edef | 2020-07-24 14:32:13 -0700 | [diff] [blame] | 121 | // Confirm the number of data bytes received correlates to |
| 122 | // the packet length in the header |
Vernon Mauery | a71b1ba | 2021-06-08 15:53:46 -0700 | [diff] [blame] | 123 | size_t payloadLen = header->payloadLength; |
| 124 | if ((payloadLen == 0) || (inPacket.size() < (sizeof(*header) + payloadLen))) |
Zhikui Ren | 2b1edef | 2020-07-24 14:32:13 -0700 | [diff] [blame] | 125 | { |
| 126 | throw std::runtime_error("Invalid data length"); |
| 127 | } |
| 128 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 129 | (message->payload) |
| 130 | .assign(inPacket.data() + sizeof(SessionHeader_t), |
| 131 | inPacket.data() + sizeof(SessionHeader_t) + payloadLen); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 132 | |
| 133 | return message; |
| 134 | } |
| 135 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 136 | std::vector<uint8_t> flatten(std::shared_ptr<Message> outMessage, |
Vernon Mauery | 224f36a | 2018-10-25 08:52:23 -0700 | [diff] [blame] | 137 | std::shared_ptr<session::Session> session) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 138 | { |
| 139 | std::vector<uint8_t> packet(sizeof(SessionHeader_t)); |
| 140 | |
| 141 | // Insert Session Header into the Packet |
| 142 | auto header = reinterpret_cast<SessionHeader_t*>(packet.data()); |
Kirill Pakhomov | de7dd5c | 2021-02-27 18:45:22 +0300 | [diff] [blame] | 143 | header->base.rmcp.version = parser::RMCP_VERSION; |
| 144 | header->base.rmcp.reserved = 0x00; |
| 145 | header->base.rmcp.rmcpSeqNum = parser::RMCP_SEQ; |
| 146 | header->base.rmcp.classOfMsg = static_cast<uint8_t>(ClassOfMsg::IPMI); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 147 | header->base.format.formatType = |
| 148 | static_cast<uint8_t>(parser::SessionHeader::IPMI15); |
| 149 | header->sessSeqNum = 0; |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 150 | header->sessId = endian::to_ipmi(outMessage->rcSessionID); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 151 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 152 | header->payloadLength = static_cast<uint8_t>(outMessage->payload.size()); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 153 | |
| 154 | // Insert the Payload into the Packet |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 155 | packet.insert(packet.end(), outMessage->payload.begin(), |
| 156 | outMessage->payload.end()); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 157 | |
| 158 | // Insert the Session Trailer |
| 159 | packet.resize(packet.size() + sizeof(SessionTrailer_t)); |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 160 | auto trailer = |
| 161 | reinterpret_cast<SessionTrailer_t*>(packet.data() + packet.size()); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 162 | trailer->legacyPad = 0x00; |
| 163 | |
| 164 | return packet; |
| 165 | } |
| 166 | |
| 167 | } // namespace ipmi15parser |
| 168 | |
| 169 | namespace ipmi20parser |
| 170 | { |
| 171 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 172 | std::shared_ptr<Message> unflatten(std::vector<uint8_t>& inPacket) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 173 | { |
| 174 | // Check if the packet has atleast the Session Header |
| 175 | if (inPacket.size() < sizeof(SessionHeader_t)) |
| 176 | { |
| 177 | throw std::runtime_error("IPMI2.0 Session Header Missing"); |
| 178 | } |
| 179 | |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 180 | auto header = reinterpret_cast<SessionHeader_t*>(inPacket.data()); |
| 181 | |
Vernon Mauery | 1ab1c6b | 2021-06-08 15:54:41 -0700 | [diff] [blame] | 182 | uint32_t sessionID = endian::from_ipmi(header->sessId); |
| 183 | |
| 184 | auto session = |
| 185 | std::get<session::Manager&>(singletonPool).getSession(sessionID); |
| 186 | if (!session) |
| 187 | { |
| 188 | throw std::runtime_error("RMCP+ message from unknown session"); |
| 189 | } |
| 190 | |
| 191 | auto message = std::make_shared<Message>(); |
| 192 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 193 | message->payloadType = static_cast<PayloadType>(header->payloadType & 0x3F); |
Vernon Mauery | 1ab1c6b | 2021-06-08 15:54:41 -0700 | [diff] [blame] | 194 | message->bmcSessionID = sessionID; |
Tom Joseph | 6a56076 | 2017-01-10 15:30:28 +0530 | [diff] [blame] | 195 | message->sessionSeqNum = endian::from_ipmi(header->sessSeqNum); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 196 | message->isPacketEncrypted = |
| 197 | ((header->payloadType & PAYLOAD_ENCRYPT_MASK) ? true : false); |
| 198 | message->isPacketAuthenticated = |
| 199 | ((header->payloadType & PAYLOAD_AUTH_MASK) ? true : false); |
Kirill Pakhomov | de7dd5c | 2021-02-27 18:45:22 +0300 | [diff] [blame] | 200 | message->rmcpMsgClass = |
| 201 | static_cast<ClassOfMsg>(header->base.rmcp.classOfMsg); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 202 | |
Vernon Mauery | a71b1ba | 2021-06-08 15:53:46 -0700 | [diff] [blame] | 203 | // Confirm the number of data bytes received correlates to |
| 204 | // the packet length in the header |
| 205 | size_t payloadLen = endian::from_ipmi(header->payloadLength); |
| 206 | if ((payloadLen == 0) || (inPacket.size() < (sizeof(*header) + payloadLen))) |
| 207 | { |
| 208 | throw std::runtime_error("Invalid data length"); |
| 209 | } |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 210 | |
Vernon Mauery | 1ab1c6b | 2021-06-08 15:54:41 -0700 | [diff] [blame] | 211 | bool integrityMismatch = |
| 212 | session->isIntegrityAlgoEnabled() && !message->isPacketAuthenticated; |
| 213 | bool encryptMismatch = |
| 214 | session->isCryptAlgoEnabled() && !message->isPacketEncrypted; |
| 215 | |
| 216 | if (sessionID != session::sessionZero && |
| 217 | (integrityMismatch || encryptMismatch)) |
| 218 | { |
| 219 | throw std::runtime_error("unencrypted or unauthenticated message"); |
| 220 | } |
| 221 | |
Tom Joseph | 5fa487c | 2017-01-20 12:42:39 +0530 | [diff] [blame] | 222 | if (message->isPacketAuthenticated) |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 223 | { |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 224 | if (!(internal::verifyPacketIntegrity(inPacket, message, payloadLen))) |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 225 | { |
| 226 | throw std::runtime_error("Packet Integrity check failed"); |
| 227 | } |
| 228 | } |
| 229 | |
Tom Joseph | 78478a8 | 2017-01-26 14:24:29 +0530 | [diff] [blame] | 230 | // Decrypt the payload if the payload is encrypted |
| 231 | if (message->isPacketEncrypted) |
| 232 | { |
| 233 | // Assign the decrypted payload to the IPMI Message |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 234 | message->payload = |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 235 | internal::decryptPayload(inPacket, message, payloadLen); |
Tom Joseph | 78478a8 | 2017-01-26 14:24:29 +0530 | [diff] [blame] | 236 | } |
| 237 | else |
| 238 | { |
| 239 | message->payload.assign(inPacket.begin() + sizeof(SessionHeader_t), |
| 240 | inPacket.begin() + sizeof(SessionHeader_t) + |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 241 | payloadLen); |
Tom Joseph | 78478a8 | 2017-01-26 14:24:29 +0530 | [diff] [blame] | 242 | } |
| 243 | |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 244 | return message; |
| 245 | } |
| 246 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 247 | std::vector<uint8_t> flatten(std::shared_ptr<Message> outMessage, |
Vernon Mauery | 224f36a | 2018-10-25 08:52:23 -0700 | [diff] [blame] | 248 | std::shared_ptr<session::Session> session) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 249 | { |
| 250 | std::vector<uint8_t> packet(sizeof(SessionHeader_t)); |
| 251 | |
| 252 | SessionHeader_t* header = reinterpret_cast<SessionHeader_t*>(packet.data()); |
Kirill Pakhomov | de7dd5c | 2021-02-27 18:45:22 +0300 | [diff] [blame] | 253 | header->base.rmcp.version = parser::RMCP_VERSION; |
| 254 | header->base.rmcp.reserved = 0x00; |
| 255 | header->base.rmcp.rmcpSeqNum = parser::RMCP_SEQ; |
| 256 | header->base.rmcp.classOfMsg = static_cast<uint8_t>(ClassOfMsg::IPMI); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 257 | header->base.format.formatType = |
| 258 | static_cast<uint8_t>(parser::SessionHeader::IPMI20); |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 259 | header->payloadType = static_cast<uint8_t>(outMessage->payloadType); |
| 260 | header->sessId = endian::to_ipmi(outMessage->rcSessionID); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 261 | |
| 262 | // Add session sequence number |
| 263 | internal::addSequenceNumber(packet, session); |
| 264 | |
Tom Joseph | 1404bca | 2017-01-26 14:17:02 +0530 | [diff] [blame] | 265 | size_t payloadLen = 0; |
| 266 | |
Tom Joseph | 7536283 | 2017-01-26 15:17:04 +0530 | [diff] [blame] | 267 | // Encrypt the payload if needed |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 268 | if (outMessage->isPacketEncrypted) |
Tom Joseph | 7536283 | 2017-01-26 15:17:04 +0530 | [diff] [blame] | 269 | { |
| 270 | header->payloadType |= PAYLOAD_ENCRYPT_MASK; |
| 271 | auto cipherPayload = internal::encryptPayload(outMessage); |
| 272 | payloadLen = cipherPayload.size(); |
| 273 | header->payloadLength = endian::to_ipmi<uint16_t>(cipherPayload.size()); |
| 274 | |
| 275 | // Insert the encrypted payload into the outgoing IPMI packet |
| 276 | packet.insert(packet.end(), cipherPayload.begin(), cipherPayload.end()); |
| 277 | } |
| 278 | else |
| 279 | { |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 280 | header->payloadLength = |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 281 | endian::to_ipmi<uint16_t>(outMessage->payload.size()); |
| 282 | payloadLen = outMessage->payload.size(); |
Tom Joseph | 7536283 | 2017-01-26 15:17:04 +0530 | [diff] [blame] | 283 | |
| 284 | // Insert the Payload into the Packet |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 285 | packet.insert(packet.end(), outMessage->payload.begin(), |
| 286 | outMessage->payload.end()); |
Tom Joseph | 7536283 | 2017-01-26 15:17:04 +0530 | [diff] [blame] | 287 | } |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 288 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 289 | if (outMessage->isPacketAuthenticated) |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 290 | { |
Tom Joseph | b882dbb | 2019-02-09 23:13:48 +0530 | [diff] [blame] | 291 | header = reinterpret_cast<SessionHeader_t*>(packet.data()); |
| 292 | header->payloadType |= PAYLOAD_AUTH_MASK; |
Tom Joseph | 1404bca | 2017-01-26 14:17:02 +0530 | [diff] [blame] | 293 | internal::addIntegrityData(packet, outMessage, payloadLen); |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 294 | } |
| 295 | |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 296 | return packet; |
| 297 | } |
| 298 | |
| 299 | namespace internal |
| 300 | { |
| 301 | |
Vernon Mauery | 224f36a | 2018-10-25 08:52:23 -0700 | [diff] [blame] | 302 | void addSequenceNumber(std::vector<uint8_t>& packet, |
| 303 | std::shared_ptr<session::Session> session) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 304 | { |
| 305 | SessionHeader_t* header = reinterpret_cast<SessionHeader_t*>(packet.data()); |
| 306 | |
Suryakanth Sekar | f8a34fc | 2019-06-12 20:59:18 +0530 | [diff] [blame] | 307 | if (header->sessId == session::sessionZero) |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 308 | { |
| 309 | header->sessSeqNum = 0x00; |
| 310 | } |
| 311 | else |
| 312 | { |
Vernon Mauery | 224f36a | 2018-10-25 08:52:23 -0700 | [diff] [blame] | 313 | auto seqNum = session->sequenceNums.increment(); |
Tom Joseph | 6a56076 | 2017-01-10 15:30:28 +0530 | [diff] [blame] | 314 | header->sessSeqNum = endian::to_ipmi(seqNum); |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 315 | } |
| 316 | } |
| 317 | |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 318 | bool verifyPacketIntegrity(const std::vector<uint8_t>& packet, |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 319 | const std::shared_ptr<Message> message, |
| 320 | size_t payloadLen) |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 321 | { |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 322 | /* |
| 323 | * Padding bytes are added to cause the number of bytes in the data range |
| 324 | * covered by the AuthCode(Integrity Data) field to be a multiple of 4 bytes |
| 325 | * .If present each integrity Pad byte is set to FFh. The following logic |
| 326 | * calculates the number of padding bytes added in the IPMI packet. |
| 327 | */ |
Tom Joseph | 5a2d3ce | 2017-02-01 20:18:37 +0530 | [diff] [blame] | 328 | auto paddingLen = 4 - ((payloadLen + 2) & 3); |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 329 | |
| 330 | auto sessTrailerPos = sizeof(SessionHeader_t) + payloadLen + paddingLen; |
| 331 | |
Zhikui Ren | 2b1edef | 2020-07-24 14:32:13 -0700 | [diff] [blame] | 332 | // verify packet size includes trailer struct starts at sessTrailerPos |
| 333 | if (packet.size() < (sessTrailerPos + sizeof(SessionTrailer_t))) |
| 334 | { |
| 335 | return false; |
| 336 | } |
| 337 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 338 | auto trailer = reinterpret_cast<const SessionTrailer_t*>(packet.data() + |
| 339 | sessTrailerPos); |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 340 | |
| 341 | // Check trailer->padLength against paddingLen, both should match up, |
| 342 | // return false if the lengths don't match |
Tom Joseph | 5fa487c | 2017-01-20 12:42:39 +0530 | [diff] [blame] | 343 | if (trailer->padLength != paddingLen) |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 344 | { |
| 345 | return false; |
| 346 | } |
| 347 | |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 348 | auto session = std::get<session::Manager&>(singletonPool) |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 349 | .getSession(message->bmcSessionID); |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 350 | |
| 351 | auto integrityAlgo = session->getIntegrityAlgo(); |
| 352 | |
| 353 | // Check if Integrity data length is as expected, check integrity data |
| 354 | // length is same as the length expected for the Integrity Algorithm that |
| 355 | // was negotiated during the session open process. |
Tom Joseph | 5fa487c | 2017-01-20 12:42:39 +0530 | [diff] [blame] | 356 | if ((packet.size() - sessTrailerPos - sizeof(SessionTrailer_t)) != |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 357 | integrityAlgo->authCodeLength) |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 358 | { |
| 359 | return false; |
| 360 | } |
| 361 | |
| 362 | auto integrityIter = packet.cbegin(); |
| 363 | std::advance(integrityIter, sessTrailerPos + sizeof(SessionTrailer_t)); |
| 364 | |
| 365 | // The integrity data is calculated from the AuthType/Format field up to and |
| 366 | // including the field that immediately precedes the AuthCode field itself. |
| 367 | size_t length = packet.size() - integrityAlgo->authCodeLength - |
| 368 | message::parser::RMCP_SESSION_HEADER_SIZE; |
| 369 | |
| 370 | return integrityAlgo->verifyIntegrityData(packet, length, integrityIter); |
| 371 | } |
| 372 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 373 | void addIntegrityData(std::vector<uint8_t>& packet, |
| 374 | const std::shared_ptr<Message> message, size_t payloadLen) |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 375 | { |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 376 | // The following logic calculates the number of padding bytes to be added to |
| 377 | // IPMI packet. If needed each integrity Pad byte is set to FFh. |
Tom Joseph | 5a2d3ce | 2017-02-01 20:18:37 +0530 | [diff] [blame] | 378 | auto paddingLen = 4 - ((payloadLen + 2) & 3); |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 379 | packet.insert(packet.end(), paddingLen, 0xFF); |
| 380 | |
| 381 | packet.resize(packet.size() + sizeof(SessionTrailer_t)); |
| 382 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 383 | auto trailer = reinterpret_cast<SessionTrailer_t*>( |
| 384 | packet.data() + packet.size() - sizeof(SessionTrailer_t)); |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 385 | |
| 386 | trailer->padLength = paddingLen; |
| 387 | trailer->nextHeader = parser::RMCP_MESSAGE_CLASS_IPMI; |
| 388 | |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 389 | auto session = std::get<session::Manager&>(singletonPool) |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 390 | .getSession(message->bmcSessionID); |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 391 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 392 | auto integrityData = |
| 393 | session->getIntegrityAlgo()->generateIntegrityData(packet); |
Tom Joseph | 64703f4 | 2017-01-10 17:03:48 +0530 | [diff] [blame] | 394 | |
| 395 | packet.insert(packet.end(), integrityData.begin(), integrityData.end()); |
| 396 | } |
| 397 | |
Tom Joseph | 78478a8 | 2017-01-26 14:24:29 +0530 | [diff] [blame] | 398 | std::vector<uint8_t> decryptPayload(const std::vector<uint8_t>& packet, |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 399 | const std::shared_ptr<Message> message, |
| 400 | size_t payloadLen) |
Tom Joseph | 78478a8 | 2017-01-26 14:24:29 +0530 | [diff] [blame] | 401 | { |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 402 | auto session = std::get<session::Manager&>(singletonPool) |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 403 | .getSession(message->bmcSessionID); |
Tom Joseph | 78478a8 | 2017-01-26 14:24:29 +0530 | [diff] [blame] | 404 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 405 | return session->getCryptAlgo()->decryptPayload( |
| 406 | packet, sizeof(SessionHeader_t), payloadLen); |
Tom Joseph | 78478a8 | 2017-01-26 14:24:29 +0530 | [diff] [blame] | 407 | } |
| 408 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 409 | std::vector<uint8_t> encryptPayload(std::shared_ptr<Message> message) |
Tom Joseph | 7536283 | 2017-01-26 15:17:04 +0530 | [diff] [blame] | 410 | { |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 411 | auto session = std::get<session::Manager&>(singletonPool) |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 412 | .getSession(message->bmcSessionID); |
Tom Joseph | 7536283 | 2017-01-26 15:17:04 +0530 | [diff] [blame] | 413 | |
Vernon Mauery | d999ffc | 2018-10-25 09:16:05 -0700 | [diff] [blame] | 414 | return session->getCryptAlgo()->encryptPayload(message->payload); |
Tom Joseph | 7536283 | 2017-01-26 15:17:04 +0530 | [diff] [blame] | 415 | } |
| 416 | |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 417 | } // namespace internal |
| 418 | |
| 419 | } // namespace ipmi20parser |
| 420 | |
Kirill Pakhomov | de7dd5c | 2021-02-27 18:45:22 +0300 | [diff] [blame] | 421 | #ifdef RMCP_PING |
| 422 | namespace asfparser |
| 423 | { |
| 424 | std::shared_ptr<Message> unflatten(std::vector<uint8_t>& inPacket) |
| 425 | { |
| 426 | auto message = std::make_shared<Message>(); |
| 427 | |
| 428 | auto header = reinterpret_cast<AsfMessagePing_t*>(inPacket.data()); |
| 429 | |
| 430 | message->payloadType = PayloadType::IPMI; |
| 431 | message->rmcpMsgClass = ClassOfMsg::ASF; |
| 432 | message->asfMsgTag = header->msgTag; |
| 433 | |
| 434 | return message; |
| 435 | } |
| 436 | |
| 437 | std::vector<uint8_t> flatten(uint8_t asfMsgTag) |
| 438 | { |
| 439 | std::vector<uint8_t> packet(sizeof(AsfMessagePong_t)); |
| 440 | |
| 441 | // Insert RMCP header into the Packet |
| 442 | auto header = reinterpret_cast<AsfMessagePong_t*>(packet.data()); |
| 443 | header->ping.rmcp.version = parser::RMCP_VERSION; |
| 444 | header->ping.rmcp.reserved = 0x00; |
| 445 | header->ping.rmcp.rmcpSeqNum = parser::RMCP_SEQ; |
| 446 | header->ping.rmcp.classOfMsg = static_cast<uint8_t>(ClassOfMsg::ASF); |
| 447 | |
| 448 | // No OEM-specific capabilities exist, therefore the second |
| 449 | // IANA Enterprise Number contains the same IANA(4542) |
| 450 | header->ping.iana = header->iana = endian::to_ipmi(parser::ASF_IANA); |
| 451 | header->ping.msgType = static_cast<uint8_t>(RmcpMsgType::PONG); |
| 452 | header->ping.msgTag = asfMsgTag; |
| 453 | header->ping.reserved = 0x00; |
| 454 | header->ping.dataLen = |
| 455 | parser::RMCP_ASF_PONG_DATA_LEN; // as per spec 13.2.4, |
| 456 | |
| 457 | header->iana = parser::ASF_IANA; |
| 458 | header->oemDefined = 0x00; |
| 459 | header->suppEntities = parser::ASF_SUPP_ENT; |
| 460 | header->suppInteract = parser::ASF_SUPP_INT; |
| 461 | header->reserved1 = 0x00; |
| 462 | header->reserved2 = 0x00; |
| 463 | |
| 464 | return packet; |
| 465 | } |
| 466 | |
| 467 | } // namespace asfparser |
| 468 | #endif // RMCP_PING |
| 469 | |
Tom Joseph | 4e57ada | 2016-08-10 06:51:12 -0500 | [diff] [blame] | 470 | } // namespace message |