blob: c22bd8ddeb23df02f8b94d07fe26861c79b2c359 [file] [log] [blame]
Patrick Venture5794fcf2017-10-26 11:11:14 -07001#include "channel.hpp"
Patrick Venture5794fcf2017-10-26 11:11:14 -07002
Johnathan Mantey74a21022018-12-13 13:17:56 -08003#include "user_channel/channel_layer.hpp"
Patrick Venture0b02be92018-08-31 11:55:55 -07004
Patrick Venture5794fcf2017-10-26 11:11:14 -07005#include <arpa/inet.h>
6
Tom Joseph13227682018-08-10 01:05:21 +05307#include <boost/process/child.hpp>
Vernon Mauery33250242019-03-12 16:49:26 -07008#include <ipmid/types.hpp>
Vernon Mauery6a98fe72019-03-11 15:57:48 -07009#include <ipmid/utils.hpp>
Patrick Venture5794fcf2017-10-26 11:11:14 -070010#include <phosphor-logging/elog-errors.hpp>
Patrick Venture0b02be92018-08-31 11:55:55 -070011#include <phosphor-logging/log.hpp>
Patrick Williamsfbc6c9d2023-05-10 07:50:16 -050012#include <xyz/openbmc_project/Common/error.hpp>
13
14#include <fstream>
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053015#include <set>
Patrick Venture0b02be92018-08-31 11:55:55 -070016#include <string>
Patrick Venture5794fcf2017-10-26 11:11:14 -070017
18using namespace phosphor::logging;
Willy Tu523e2d12023-09-05 11:36:48 -070019using namespace sdbusplus::error::xyz::openbmc_project::common;
Patrick Venture5794fcf2017-10-26 11:11:14 -070020
Tom Joseph7cbe2282018-03-21 21:17:33 +053021namespace cipher
22{
23
24/** @brief Get the supported Cipher records
25 *
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053026 * The cipher records are read from the JSON file and converted into
27 * 1. cipher suite record format mentioned in the IPMI specification. The
28 * records can be either OEM or standard cipher. Each json entry is parsed and
29 * converted into the cipher record format and pushed into the vector.
30 * 2. Algorithms listed in vector format
Tom Joseph7cbe2282018-03-21 21:17:33 +053031 *
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053032 * @return pair of vector containing 1. all the cipher suite records. 2.
33 * Algorithms supported
Tom Joseph7cbe2282018-03-21 21:17:33 +053034 *
35 */
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053036std::pair<std::vector<uint8_t>, std::vector<uint8_t>> getCipherRecords()
Tom Joseph7cbe2282018-03-21 21:17:33 +053037{
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053038 std::vector<uint8_t> cipherRecords;
39 std::vector<uint8_t> supportedAlgorithmRecords;
40 // create set to get the unique supported algorithms
41 std::set<uint8_t> supportedAlgorithmSet;
Tom Joseph7cbe2282018-03-21 21:17:33 +053042
43 std::ifstream jsonFile(configFile);
44 if (!jsonFile.is_open())
45 {
46 log<level::ERR>("Channel Cipher suites file not found");
47 elog<InternalFailure>();
48 }
49
50 auto data = Json::parse(jsonFile, nullptr, false);
51 if (data.is_discarded())
52 {
53 log<level::ERR>("Parsing channel cipher suites JSON failed");
54 elog<InternalFailure>();
55 }
56
57 for (const auto& record : data)
58 {
59 if (record.find(oem) != record.end())
60 {
61 // OEM cipher suite - 0xC1
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053062 cipherRecords.push_back(oemCipherSuite);
Tom Joseph7cbe2282018-03-21 21:17:33 +053063 // Cipher Suite ID
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053064 cipherRecords.push_back(record.value(cipher, 0));
Tom Joseph7cbe2282018-03-21 21:17:33 +053065 // OEM IANA - 3 bytes
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053066 cipherRecords.push_back(record.value(oem, 0));
67 cipherRecords.push_back(record.value(oem, 0) >> 8);
68 cipherRecords.push_back(record.value(oem, 0) >> 16);
Tom Joseph7cbe2282018-03-21 21:17:33 +053069 }
70 else
71 {
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053072 // Standard cipher suite - 0xC0
73 cipherRecords.push_back(stdCipherSuite);
Tom Joseph7cbe2282018-03-21 21:17:33 +053074 // Cipher Suite ID
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053075 cipherRecords.push_back(record.value(cipher, 0));
Tom Joseph7cbe2282018-03-21 21:17:33 +053076 }
77
78 // Authentication algorithm number
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053079 cipherRecords.push_back(record.value(auth, 0));
80 supportedAlgorithmSet.insert(record.value(auth, 0));
81
Tom Joseph7cbe2282018-03-21 21:17:33 +053082 // Integrity algorithm number
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053083 cipherRecords.push_back(record.value(integrity, 0) | integrityTag);
84 supportedAlgorithmSet.insert(record.value(integrity, 0) | integrityTag);
85
Tom Joseph7cbe2282018-03-21 21:17:33 +053086 // Confidentiality algorithm number
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053087 cipherRecords.push_back(record.value(conf, 0) | confTag);
88 supportedAlgorithmSet.insert(record.value(conf, 0) | confTag);
Tom Joseph7cbe2282018-03-21 21:17:33 +053089 }
90
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +053091 // copy the set to supportedAlgorithmRecord which is vector based.
92 std::copy(supportedAlgorithmSet.begin(), supportedAlgorithmSet.end(),
93 std::back_inserter(supportedAlgorithmRecords));
94
95 return std::make_pair(cipherRecords, supportedAlgorithmRecords);
Tom Joseph7cbe2282018-03-21 21:17:33 +053096}
97
Patrick Venture0b02be92018-08-31 11:55:55 -070098} // namespace cipher
Tom Joseph7cbe2282018-03-21 21:17:33 +053099
Ayushi Smriti5c3b72c2019-08-30 13:47:31 +0000100/** @brief this command is used to look up what authentication, integrity,
101 * confidentiality algorithms are supported.
102 *
103 * @ param ctx - context pointer
104 * @ param channelNumber - channel number
105 * @ param payloadType - payload type
106 * @ param listIndex - list index
107 * @ param algoSelectBit - list algorithms
108 *
109 * @returns ipmi completion code plus response data
110 * - rspChannel - channel number for authentication algorithm.
111 * - rspRecords - cipher suite records.
112 **/
113ipmi::RspType<uint8_t, // Channel Number
114 std::vector<uint8_t> // Cipher Records
115 >
116 getChannelCipherSuites(ipmi::Context::ptr ctx, uint4_t channelNumber,
117 uint4_t reserved1, uint8_t payloadType,
118 uint6_t listIndex, uint1_t reserved2,
119 uint1_t algoSelectBit)
Tom Joseph7cbe2282018-03-21 21:17:33 +0530120{
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +0530121 static std::vector<uint8_t> cipherRecords;
122 static std::vector<uint8_t> supportedAlgorithms;
Tom Joseph7cbe2282018-03-21 21:17:33 +0530123 static auto recordInit = false;
124
Ayushi Smriti5c3b72c2019-08-30 13:47:31 +0000125 uint8_t rspChannel = ipmi::convertCurrentChannelNum(
126 static_cast<uint8_t>(channelNumber), ctx->channel);
Tom Joseph7cbe2282018-03-21 21:17:33 +0530127
Ayushi Smriti5c3b72c2019-08-30 13:47:31 +0000128 if (!ipmi::isValidChannel(rspChannel) || reserved1 != 0 || reserved2 != 0)
Tom Joseph7cbe2282018-03-21 21:17:33 +0530129 {
Ayushi Smriti5c3b72c2019-08-30 13:47:31 +0000130 return ipmi::responseInvalidFieldRequest();
Tom Joseph7cbe2282018-03-21 21:17:33 +0530131 }
jayaprakash Mutyala69daefa2019-10-03 19:36:49 +0000132 if (!ipmi::isValidPayloadType(static_cast<ipmi::PayloadType>(payloadType)))
133 {
134 log<level::DEBUG>("Get channel cipher suites - Invalid payload type");
135 constexpr uint8_t ccPayloadTypeNotSupported = 0x80;
136 return ipmi::response(ccPayloadTypeNotSupported);
137 }
Tom Joseph7cbe2282018-03-21 21:17:33 +0530138
Tom Joseph7cbe2282018-03-21 21:17:33 +0530139 if (!recordInit)
140 {
141 try
142 {
Patrick Williamsfbc6c9d2023-05-10 07:50:16 -0500143 std::tie(cipherRecords,
144 supportedAlgorithms) = cipher::getCipherRecords();
Tom Joseph7cbe2282018-03-21 21:17:33 +0530145 recordInit = true;
146 }
Patrick Venture0b02be92018-08-31 11:55:55 -0700147 catch (const std::exception& e)
Tom Joseph7cbe2282018-03-21 21:17:33 +0530148 {
Ayushi Smriti5c3b72c2019-08-30 13:47:31 +0000149 return ipmi::responseUnspecifiedError();
Tom Joseph7cbe2282018-03-21 21:17:33 +0530150 }
151 }
152
Patrick Williamsfbc6c9d2023-05-10 07:50:16 -0500153 const std::vector<uint8_t>& records = algoSelectBit ? cipherRecords
154 : supportedAlgorithms;
Ayushi Smriti5c3b72c2019-08-30 13:47:31 +0000155 static constexpr auto respSize = 16;
Richard Marian Thomaiyarf301f042019-01-16 15:56:16 +0530156
Ayushi Smritid7dadc22019-09-03 11:43:45 +0530157 // Session support is available in active LAN channels.
158 if ((ipmi::getChannelSessionSupport(rspChannel) ==
159 ipmi::EChannelSessSupported::none) ||
160 !(ipmi::doesDeviceExist(rspChannel)))
161 {
162 log<level::DEBUG>("Get channel cipher suites - Device does not exist");
163 return ipmi::responseInvalidFieldRequest();
164 }
165
Tom Joseph7cbe2282018-03-21 21:17:33 +0530166 // List index(00h-3Fh), 0h selects the first set of 16, 1h selects the next
167 // set of 16 and so on.
Tom Joseph7cbe2282018-03-21 21:17:33 +0530168
169 // Calculate the number of record data bytes to be returned.
Patrick Williamsfbc6c9d2023-05-10 07:50:16 -0500170 auto start = std::min(static_cast<size_t>(listIndex) * respSize,
171 records.size());
Ayushi Smriti5c3b72c2019-08-30 13:47:31 +0000172 auto end = std::min((static_cast<size_t>(listIndex) * respSize) + respSize,
173 records.size());
Tom Joseph7cbe2282018-03-21 21:17:33 +0530174 auto size = end - start;
175
Ayushi Smriti5c3b72c2019-08-30 13:47:31 +0000176 std::vector<uint8_t> rspRecords;
177 std::copy_n(records.data() + start, size, std::back_inserter(rspRecords));
Tom Joseph7cbe2282018-03-21 21:17:33 +0530178
Ayushi Smriti5c3b72c2019-08-30 13:47:31 +0000179 return ipmi::responseSuccess(rspChannel, rspRecords);
Tom Joseph7cbe2282018-03-21 21:17:33 +0530180}