Patrick Venture | 5794fcf | 2017-10-26 11:11:14 -0700 | [diff] [blame] | 1 | #include "channel.hpp" |
Patrick Venture | 5794fcf | 2017-10-26 11:11:14 -0700 | [diff] [blame] | 2 | |
Johnathan Mantey | 74a2102 | 2018-12-13 13:17:56 -0800 | [diff] [blame] | 3 | #include "user_channel/channel_layer.hpp" |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 4 | |
Patrick Venture | 5794fcf | 2017-10-26 11:11:14 -0700 | [diff] [blame] | 5 | #include <arpa/inet.h> |
| 6 | |
Tom Joseph | 1322768 | 2018-08-10 01:05:21 +0530 | [diff] [blame] | 7 | #include <boost/process/child.hpp> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 8 | #include <fstream> |
Vernon Mauery | 3325024 | 2019-03-12 16:49:26 -0700 | [diff] [blame] | 9 | #include <ipmid/types.hpp> |
Vernon Mauery | 6a98fe7 | 2019-03-11 15:57:48 -0700 | [diff] [blame] | 10 | #include <ipmid/utils.hpp> |
Patrick Venture | 5794fcf | 2017-10-26 11:11:14 -0700 | [diff] [blame] | 11 | #include <phosphor-logging/elog-errors.hpp> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 12 | #include <phosphor-logging/log.hpp> |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 13 | #include <set> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 14 | #include <string> |
| 15 | #include <xyz/openbmc_project/Common/error.hpp> |
Patrick Venture | 5794fcf | 2017-10-26 11:11:14 -0700 | [diff] [blame] | 16 | |
| 17 | using namespace phosphor::logging; |
| 18 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
| 19 | |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 20 | namespace cipher |
| 21 | { |
| 22 | |
| 23 | /** @brief Get the supported Cipher records |
| 24 | * |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 25 | * The cipher records are read from the JSON file and converted into |
| 26 | * 1. cipher suite record format mentioned in the IPMI specification. The |
| 27 | * records can be either OEM or standard cipher. Each json entry is parsed and |
| 28 | * converted into the cipher record format and pushed into the vector. |
| 29 | * 2. Algorithms listed in vector format |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 30 | * |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 31 | * @return pair of vector containing 1. all the cipher suite records. 2. |
| 32 | * Algorithms supported |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 33 | * |
| 34 | */ |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 35 | std::pair<std::vector<uint8_t>, std::vector<uint8_t>> getCipherRecords() |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 36 | { |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 37 | std::vector<uint8_t> cipherRecords; |
| 38 | std::vector<uint8_t> supportedAlgorithmRecords; |
| 39 | // create set to get the unique supported algorithms |
| 40 | std::set<uint8_t> supportedAlgorithmSet; |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 41 | |
| 42 | std::ifstream jsonFile(configFile); |
| 43 | if (!jsonFile.is_open()) |
| 44 | { |
| 45 | log<level::ERR>("Channel Cipher suites file not found"); |
| 46 | elog<InternalFailure>(); |
| 47 | } |
| 48 | |
| 49 | auto data = Json::parse(jsonFile, nullptr, false); |
| 50 | if (data.is_discarded()) |
| 51 | { |
| 52 | log<level::ERR>("Parsing channel cipher suites JSON failed"); |
| 53 | elog<InternalFailure>(); |
| 54 | } |
| 55 | |
| 56 | for (const auto& record : data) |
| 57 | { |
| 58 | if (record.find(oem) != record.end()) |
| 59 | { |
| 60 | // OEM cipher suite - 0xC1 |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 61 | cipherRecords.push_back(oemCipherSuite); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 62 | // Cipher Suite ID |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 63 | cipherRecords.push_back(record.value(cipher, 0)); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 64 | // OEM IANA - 3 bytes |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 65 | cipherRecords.push_back(record.value(oem, 0)); |
| 66 | cipherRecords.push_back(record.value(oem, 0) >> 8); |
| 67 | cipherRecords.push_back(record.value(oem, 0) >> 16); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 68 | } |
| 69 | else |
| 70 | { |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 71 | // Standard cipher suite - 0xC0 |
| 72 | cipherRecords.push_back(stdCipherSuite); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 73 | // Cipher Suite ID |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 74 | cipherRecords.push_back(record.value(cipher, 0)); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | // Authentication algorithm number |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 78 | cipherRecords.push_back(record.value(auth, 0)); |
| 79 | supportedAlgorithmSet.insert(record.value(auth, 0)); |
| 80 | |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 81 | // Integrity algorithm number |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 82 | cipherRecords.push_back(record.value(integrity, 0) | integrityTag); |
| 83 | supportedAlgorithmSet.insert(record.value(integrity, 0) | integrityTag); |
| 84 | |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 85 | // Confidentiality algorithm number |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 86 | cipherRecords.push_back(record.value(conf, 0) | confTag); |
| 87 | supportedAlgorithmSet.insert(record.value(conf, 0) | confTag); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 88 | } |
| 89 | |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 90 | // copy the set to supportedAlgorithmRecord which is vector based. |
| 91 | std::copy(supportedAlgorithmSet.begin(), supportedAlgorithmSet.end(), |
| 92 | std::back_inserter(supportedAlgorithmRecords)); |
| 93 | |
| 94 | return std::make_pair(cipherRecords, supportedAlgorithmRecords); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 95 | } |
| 96 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 97 | } // namespace cipher |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 98 | |
Ayushi Smriti | 5c3b72c | 2019-08-30 13:47:31 +0000 | [diff] [blame] | 99 | /** @brief this command is used to look up what authentication, integrity, |
| 100 | * confidentiality algorithms are supported. |
| 101 | * |
| 102 | * @ param ctx - context pointer |
| 103 | * @ param channelNumber - channel number |
| 104 | * @ param payloadType - payload type |
| 105 | * @ param listIndex - list index |
| 106 | * @ param algoSelectBit - list algorithms |
| 107 | * |
| 108 | * @returns ipmi completion code plus response data |
| 109 | * - rspChannel - channel number for authentication algorithm. |
| 110 | * - rspRecords - cipher suite records. |
| 111 | **/ |
| 112 | ipmi::RspType<uint8_t, // Channel Number |
| 113 | std::vector<uint8_t> // Cipher Records |
| 114 | > |
| 115 | getChannelCipherSuites(ipmi::Context::ptr ctx, uint4_t channelNumber, |
| 116 | uint4_t reserved1, uint8_t payloadType, |
| 117 | uint6_t listIndex, uint1_t reserved2, |
| 118 | uint1_t algoSelectBit) |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 119 | { |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 120 | static std::vector<uint8_t> cipherRecords; |
| 121 | static std::vector<uint8_t> supportedAlgorithms; |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 122 | static auto recordInit = false; |
| 123 | |
Ayushi Smriti | 5c3b72c | 2019-08-30 13:47:31 +0000 | [diff] [blame] | 124 | uint8_t rspChannel = ipmi::convertCurrentChannelNum( |
| 125 | static_cast<uint8_t>(channelNumber), ctx->channel); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 126 | |
Ayushi Smriti | 5c3b72c | 2019-08-30 13:47:31 +0000 | [diff] [blame] | 127 | if (!ipmi::isValidChannel(rspChannel) || reserved1 != 0 || reserved2 != 0) |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 128 | { |
Ayushi Smriti | 5c3b72c | 2019-08-30 13:47:31 +0000 | [diff] [blame] | 129 | return ipmi::responseInvalidFieldRequest(); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 130 | } |
jayaprakash Mutyala | 69daefa | 2019-10-03 19:36:49 +0000 | [diff] [blame] | 131 | if (!ipmi::isValidPayloadType(static_cast<ipmi::PayloadType>(payloadType))) |
| 132 | { |
| 133 | log<level::DEBUG>("Get channel cipher suites - Invalid payload type"); |
| 134 | constexpr uint8_t ccPayloadTypeNotSupported = 0x80; |
| 135 | return ipmi::response(ccPayloadTypeNotSupported); |
| 136 | } |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 137 | |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 138 | if (!recordInit) |
| 139 | { |
| 140 | try |
| 141 | { |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 142 | std::tie(cipherRecords, supportedAlgorithms) = |
| 143 | cipher::getCipherRecords(); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 144 | recordInit = true; |
| 145 | } |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 146 | catch (const std::exception& e) |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 147 | { |
Ayushi Smriti | 5c3b72c | 2019-08-30 13:47:31 +0000 | [diff] [blame] | 148 | return ipmi::responseUnspecifiedError(); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | |
Ayushi Smriti | 5c3b72c | 2019-08-30 13:47:31 +0000 | [diff] [blame] | 152 | const std::vector<uint8_t>& records = |
| 153 | algoSelectBit ? cipherRecords : supportedAlgorithms; |
| 154 | static constexpr auto respSize = 16; |
Richard Marian Thomaiyar | f301f04 | 2019-01-16 15:56:16 +0530 | [diff] [blame] | 155 | |
Ayushi Smriti | d7dadc2 | 2019-09-03 11:43:45 +0530 | [diff] [blame] | 156 | // Session support is available in active LAN channels. |
| 157 | if ((ipmi::getChannelSessionSupport(rspChannel) == |
| 158 | ipmi::EChannelSessSupported::none) || |
| 159 | !(ipmi::doesDeviceExist(rspChannel))) |
| 160 | { |
| 161 | log<level::DEBUG>("Get channel cipher suites - Device does not exist"); |
| 162 | return ipmi::responseInvalidFieldRequest(); |
| 163 | } |
| 164 | |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 165 | // List index(00h-3Fh), 0h selects the first set of 16, 1h selects the next |
| 166 | // set of 16 and so on. |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 167 | |
| 168 | // Calculate the number of record data bytes to be returned. |
Ayushi Smriti | 5c3b72c | 2019-08-30 13:47:31 +0000 | [diff] [blame] | 169 | auto start = |
| 170 | std::min(static_cast<size_t>(listIndex) * respSize, records.size()); |
| 171 | auto end = std::min((static_cast<size_t>(listIndex) * respSize) + respSize, |
| 172 | records.size()); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 173 | auto size = end - start; |
| 174 | |
Ayushi Smriti | 5c3b72c | 2019-08-30 13:47:31 +0000 | [diff] [blame] | 175 | std::vector<uint8_t> rspRecords; |
| 176 | std::copy_n(records.data() + start, size, std::back_inserter(rspRecords)); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 177 | |
Ayushi Smriti | 5c3b72c | 2019-08-30 13:47:31 +0000 | [diff] [blame] | 178 | return ipmi::responseSuccess(rspChannel, rspRecords); |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 179 | } |