blob: d43009fc2a7724f36cbb44f378dc88669e7e1646 [file] [log] [blame]
Tom Joseph4e57ada2016-08-10 06:51:12 -05001#include "message_parsers.hpp"
2
3#include <iostream>
4#include <memory>
5
6#include "endian.hpp"
7#include "main.hpp"
8#include "message.hpp"
9#include "sessions_manager.hpp"
10
11namespace message
12{
13
14namespace parser
15{
16
17std::tuple<std::unique_ptr<Message>, SessionHeader> unflatten(
18 std::vector<uint8_t>& inPacket)
19{
20 // Check if the packet has atleast the size of the RMCP Header
21 if (inPacket.size() < sizeof(BasicHeader_t))
22 {
23 throw std::runtime_error("RMCP Header missing");
24 }
25
26 auto rmcpHeaderPtr = reinterpret_cast<BasicHeader_t*>(inPacket.data());
27
28 // Verify if the fields in the RMCP header conforms to the specification
29 if ((rmcpHeaderPtr->version != RMCP_VERSION) ||
30 (rmcpHeaderPtr->rmcpSeqNum != RMCP_SEQ) ||
31 (rmcpHeaderPtr->classOfMsg != RMCP_MESSAGE_CLASS_IPMI))
32 {
33 throw std::runtime_error("RMCP Header is invalid");
34 }
35
36 // Read the Session Header and invoke the parser corresponding to the
37 // header type
38 switch (static_cast<SessionHeader>(rmcpHeaderPtr->format.formatType))
39 {
40 case SessionHeader::IPMI15:
41 {
42 return std::make_tuple(ipmi15parser::unflatten(inPacket),
43 SessionHeader::IPMI15);
44 }
45 case SessionHeader::IPMI20:
46 {
47 return std::make_tuple(ipmi20parser::unflatten(inPacket),
48 SessionHeader::IPMI20);
49 }
50 default:
51 {
52 throw std::runtime_error("Invalid Session Header");
53 }
54 }
55}
56
57std::vector<uint8_t> flatten(Message& outMessage,
58 SessionHeader authType,
59 session::Session& session)
60{
61 // Call the flatten routine based on the header type
62 switch (authType)
63 {
64 case SessionHeader::IPMI15:
65 {
66 return ipmi15parser::flatten(outMessage, session);
67 }
68 case SessionHeader::IPMI20:
69 {
70 return ipmi20parser::flatten(outMessage, session);
71 }
72 default:
73 {
74 return {};
75 }
76 }
77}
78
79} // namespace parser
80
81namespace ipmi15parser
82{
83
84std::unique_ptr<Message> unflatten(std::vector<uint8_t>& inPacket)
85{
86 // Check if the packet has atleast the Session Header
87 if (inPacket.size() < sizeof(SessionHeader_t))
88 {
89 throw std::runtime_error("IPMI1.5 Session Header Missing");
90 }
91
92 auto message = std::make_unique<Message>();
93
94 auto header = reinterpret_cast<SessionHeader_t*>(inPacket.data());
95
96 message->payloadType = PayloadType::IPMI;
Tom Joseph6a560762017-01-10 15:30:28 +053097 message->bmcSessionID = endian::from_ipmi(header->sessId);
98 message->sessionSeqNum = endian::from_ipmi(header->sessSeqNum);
Tom Joseph4e57ada2016-08-10 06:51:12 -050099 message->isPacketEncrypted = false;
100 message->isPacketAuthenticated = false;
101
102 auto payloadLen = header->payloadLength;
103
104 (message->payload).assign(inPacket.data() + sizeof(SessionHeader_t),
105 inPacket.data() + sizeof(SessionHeader_t) +
106 payloadLen);
107
108 return message;
109}
110
111std::vector<uint8_t> flatten(Message& outMessage, session::Session& session)
112{
113 std::vector<uint8_t> packet(sizeof(SessionHeader_t));
114
115 // Insert Session Header into the Packet
116 auto header = reinterpret_cast<SessionHeader_t*>(packet.data());
117 header->base.version = parser::RMCP_VERSION;
118 header->base.reserved = 0x00;
119 header->base.rmcpSeqNum = parser::RMCP_SEQ;
120 header->base.classOfMsg = parser::RMCP_MESSAGE_CLASS_IPMI;
121 header->base.format.formatType =
122 static_cast<uint8_t>(parser::SessionHeader::IPMI15);
123 header->sessSeqNum = 0;
Tom Joseph6a560762017-01-10 15:30:28 +0530124 header->sessId = endian::to_ipmi(outMessage.rcSessionID);
Tom Joseph4e57ada2016-08-10 06:51:12 -0500125
126 header->payloadLength = static_cast<uint8_t>(outMessage.payload.size());
127
128 // Insert the Payload into the Packet
129 packet.insert(packet.end(), outMessage.payload.begin(),
130 outMessage.payload.end());
131
132 // Insert the Session Trailer
133 packet.resize(packet.size() + sizeof(SessionTrailer_t));
134 auto trailer = reinterpret_cast<SessionTrailer_t*>(packet.data() +
135 packet.size());
136 trailer->legacyPad = 0x00;
137
138 return packet;
139}
140
141} // namespace ipmi15parser
142
143namespace ipmi20parser
144{
145
146std::unique_ptr<Message> unflatten(std::vector<uint8_t>& inPacket)
147{
148 // Check if the packet has atleast the Session Header
149 if (inPacket.size() < sizeof(SessionHeader_t))
150 {
151 throw std::runtime_error("IPMI2.0 Session Header Missing");
152 }
153
154 auto message = std::make_unique<Message>();
155
156 auto header = reinterpret_cast<SessionHeader_t*>(inPacket.data());
157
158 message->payloadType = static_cast<PayloadType>
159 (header->payloadType & 0x3F);
Tom Joseph6a560762017-01-10 15:30:28 +0530160 message->bmcSessionID = endian::from_ipmi(header->sessId);
161 message->sessionSeqNum = endian::from_ipmi(header->sessSeqNum);
Tom Joseph4e57ada2016-08-10 06:51:12 -0500162 message->isPacketEncrypted =
163 ((header->payloadType & PAYLOAD_ENCRYPT_MASK) ? true : false);
164 message->isPacketAuthenticated =
165 ((header->payloadType & PAYLOAD_AUTH_MASK) ? true : false);
166
Tom Joseph6a560762017-01-10 15:30:28 +0530167 auto payloadLen = endian::from_ipmi(header->payloadLength);
Tom Joseph4e57ada2016-08-10 06:51:12 -0500168 message->payload.assign(inPacket.begin() + sizeof(SessionHeader_t),
169 inPacket.begin() + sizeof(SessionHeader_t) +
170 payloadLen);
171
Tom Joseph5fa487c2017-01-20 12:42:39 +0530172 if (message->isPacketAuthenticated)
Tom Joseph64703f42017-01-10 17:03:48 +0530173 {
Tom Joseph027dfc22017-01-26 13:30:53 +0530174 if (!(internal::verifyPacketIntegrity(inPacket,
175 *(message.get()),
176 payloadLen)))
Tom Joseph64703f42017-01-10 17:03:48 +0530177 {
178 throw std::runtime_error("Packet Integrity check failed");
179 }
180 }
181
Tom Joseph4e57ada2016-08-10 06:51:12 -0500182 return message;
183}
184
185std::vector<uint8_t> flatten(Message& outMessage, session::Session& session)
186{
187 std::vector<uint8_t> packet(sizeof(SessionHeader_t));
188
189 SessionHeader_t* header = reinterpret_cast<SessionHeader_t*>(packet.data());
190 header->base.version = parser::RMCP_VERSION;
191 header->base.reserved = 0x00;
192 header->base.rmcpSeqNum = parser::RMCP_SEQ;
193 header->base.classOfMsg = parser::RMCP_MESSAGE_CLASS_IPMI;
194 header->base.format.formatType =
195 static_cast<uint8_t>(parser::SessionHeader::IPMI20);
196 header->payloadType = static_cast<uint8_t>(outMessage.payloadType);
Tom Joseph6a560762017-01-10 15:30:28 +0530197 header->sessId = endian::to_ipmi(outMessage.rcSessionID);
Tom Joseph4e57ada2016-08-10 06:51:12 -0500198
199 // Add session sequence number
200 internal::addSequenceNumber(packet, session);
201
Tom Joseph1404bca2017-01-26 14:17:02 +0530202 size_t payloadLen = 0;
203
204 header->payloadLength = endian::to_ipmi<uint16_t>(
205 outMessage.payload.size());
206 payloadLen = outMessage.payload.size();
Tom Joseph4e57ada2016-08-10 06:51:12 -0500207 // Insert the Payload into the Packet
208 packet.insert(packet.end(), outMessage.payload.begin(),
209 outMessage.payload.end());
210
Tom Joseph5fa487c2017-01-20 12:42:39 +0530211 if (outMessage.isPacketAuthenticated)
Tom Joseph64703f42017-01-10 17:03:48 +0530212 {
Tom Joseph1404bca2017-01-26 14:17:02 +0530213 internal::addIntegrityData(packet, outMessage, payloadLen);
Tom Joseph64703f42017-01-10 17:03:48 +0530214 }
215
Tom Joseph4e57ada2016-08-10 06:51:12 -0500216 return packet;
217}
218
219namespace internal
220{
221
222void addSequenceNumber(std::vector<uint8_t>& packet, session::Session& session)
223{
224 SessionHeader_t* header = reinterpret_cast<SessionHeader_t*>(packet.data());
225
226 if (header->sessId == session::SESSION_ZERO)
227 {
228 header->sessSeqNum = 0x00;
229 }
230 else
231 {
232 auto seqNum = session.sequenceNums.increment();
Tom Joseph6a560762017-01-10 15:30:28 +0530233 header->sessSeqNum = endian::to_ipmi(seqNum);
Tom Joseph4e57ada2016-08-10 06:51:12 -0500234 }
235}
236
Tom Joseph64703f42017-01-10 17:03:48 +0530237bool verifyPacketIntegrity(const std::vector<uint8_t>& packet,
Tom Joseph027dfc22017-01-26 13:30:53 +0530238 const Message& message,
239 size_t payloadLen)
Tom Joseph64703f42017-01-10 17:03:48 +0530240{
Tom Joseph64703f42017-01-10 17:03:48 +0530241 /*
242 * Padding bytes are added to cause the number of bytes in the data range
243 * covered by the AuthCode(Integrity Data) field to be a multiple of 4 bytes
244 * .If present each integrity Pad byte is set to FFh. The following logic
245 * calculates the number of padding bytes added in the IPMI packet.
246 */
Tom Joseph5a2d3ce2017-02-01 20:18:37 +0530247 auto paddingLen = 4 - ((payloadLen + 2) & 3);
Tom Joseph64703f42017-01-10 17:03:48 +0530248
249 auto sessTrailerPos = sizeof(SessionHeader_t) + payloadLen + paddingLen;
250
251 auto trailer = reinterpret_cast<const SessionTrailer_t*>
252 (packet.data() + sessTrailerPos);
253
254 // Check trailer->padLength against paddingLen, both should match up,
255 // return false if the lengths don't match
Tom Joseph5fa487c2017-01-20 12:42:39 +0530256 if (trailer->padLength != paddingLen)
Tom Joseph64703f42017-01-10 17:03:48 +0530257 {
258 return false;
259 }
260
261 auto session = (std::get<session::Manager&>(singletonPool).getSession(
262 message.bmcSessionID)).lock();
263
264 auto integrityAlgo = session->getIntegrityAlgo();
265
266 // Check if Integrity data length is as expected, check integrity data
267 // length is same as the length expected for the Integrity Algorithm that
268 // was negotiated during the session open process.
Tom Joseph5fa487c2017-01-20 12:42:39 +0530269 if ((packet.size() - sessTrailerPos - sizeof(SessionTrailer_t)) !=
270 integrityAlgo->authCodeLength)
Tom Joseph64703f42017-01-10 17:03:48 +0530271 {
272 return false;
273 }
274
275 auto integrityIter = packet.cbegin();
276 std::advance(integrityIter, sessTrailerPos + sizeof(SessionTrailer_t));
277
278 // The integrity data is calculated from the AuthType/Format field up to and
279 // including the field that immediately precedes the AuthCode field itself.
280 size_t length = packet.size() - integrityAlgo->authCodeLength -
281 message::parser::RMCP_SESSION_HEADER_SIZE;
282
283 return integrityAlgo->verifyIntegrityData(packet, length, integrityIter);
284}
285
286void addIntegrityData(std::vector<uint8_t>& packet,
Tom Joseph1404bca2017-01-26 14:17:02 +0530287 const Message& message,
288 size_t payloadLen)
Tom Joseph64703f42017-01-10 17:03:48 +0530289{
Tom Joseph64703f42017-01-10 17:03:48 +0530290 // The following logic calculates the number of padding bytes to be added to
291 // IPMI packet. If needed each integrity Pad byte is set to FFh.
Tom Joseph5a2d3ce2017-02-01 20:18:37 +0530292 auto paddingLen = 4 - ((payloadLen + 2) & 3);
Tom Joseph64703f42017-01-10 17:03:48 +0530293 packet.insert(packet.end(), paddingLen, 0xFF);
294
295 packet.resize(packet.size() + sizeof(SessionTrailer_t));
296
297 auto trailer = reinterpret_cast<SessionTrailer_t*>
298 (packet.data() + packet.size() -
299 sizeof(SessionTrailer_t));
300
301 trailer->padLength = paddingLen;
302 trailer->nextHeader = parser::RMCP_MESSAGE_CLASS_IPMI;
303
304 auto session = (std::get<session::Manager&>(singletonPool).getSession(
305 message.bmcSessionID)).lock();
306
307 auto integrityData = session->getIntegrityAlgo()->
308 generateIntegrityData(packet);
309
310 packet.insert(packet.end(), integrityData.begin(), integrityData.end());
311}
312
Tom Joseph4e57ada2016-08-10 06:51:12 -0500313} // namespace internal
314
315} // namespace ipmi20parser
316
317} // namespace message