Eddie James | 6d87371 | 2017-09-01 11:29:07 -0500 | [diff] [blame] | 1 | #include "config.h" |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 2 | |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 3 | #include "version.hpp" |
| 4 | |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 5 | #include "xyz/openbmc_project/Common/error.hpp" |
| 6 | |
Patrick Williams | 564bc90 | 2021-12-08 10:17:23 -0600 | [diff] [blame] | 7 | #include <openssl/evp.h> |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 8 | |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 9 | #include <phosphor-logging/elog-errors.hpp> |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 10 | #include <phosphor-logging/lg2.hpp> |
Adriana Kobylak | 58aa750 | 2020-06-08 11:12:11 -0500 | [diff] [blame] | 11 | |
| 12 | #include <fstream> |
| 13 | #include <iostream> |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 14 | #include <sstream> |
| 15 | #include <stdexcept> |
| 16 | #include <string> |
| 17 | |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 18 | namespace phosphor |
| 19 | { |
| 20 | namespace software |
| 21 | { |
| 22 | namespace manager |
| 23 | { |
| 24 | |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 25 | PHOSPHOR_LOG2_USING; |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 26 | using namespace phosphor::logging; |
Gunnar Mills | aae1b2b | 2017-10-06 13:42:39 -0500 | [diff] [blame] | 27 | using Argument = xyz::openbmc_project::Common::InvalidArgument; |
| 28 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 29 | |
Gunnar Mills | cebd102 | 2017-04-17 16:10:15 -0500 | [diff] [blame] | 30 | std::string Version::getValue(const std::string& manifestFilePath, |
| 31 | std::string key) |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 32 | { |
Gunnar Mills | cebd102 | 2017-04-17 16:10:15 -0500 | [diff] [blame] | 33 | key = key + "="; |
| 34 | auto keySize = key.length(); |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 35 | |
| 36 | if (manifestFilePath.empty()) |
| 37 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 38 | error("ManifestFilePath is empty."); |
Gunnar Mills | aae1b2b | 2017-10-06 13:42:39 -0500 | [diff] [blame] | 39 | elog<InvalidArgument>( |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 40 | Argument::ARGUMENT_NAME("manifestFilePath"), |
| 41 | Argument::ARGUMENT_VALUE(manifestFilePath.c_str())); |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 42 | } |
| 43 | |
Gunnar Mills | cebd102 | 2017-04-17 16:10:15 -0500 | [diff] [blame] | 44 | std::string value{}; |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 45 | std::ifstream efile; |
| 46 | std::string line; |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 47 | efile.exceptions(std::ifstream::failbit | std::ifstream::badbit | |
Gunnar Mills | aae1b2b | 2017-10-06 13:42:39 -0500 | [diff] [blame] | 48 | std::ifstream::eofbit); |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 49 | |
| 50 | // Too many GCC bugs (53984, 66145) to do this the right way... |
| 51 | try |
| 52 | { |
| 53 | efile.open(manifestFilePath); |
| 54 | while (getline(efile, line)) |
| 55 | { |
Lei YU | 5a7363b | 2019-10-18 16:50:59 +0800 | [diff] [blame] | 56 | if (!line.empty() && line.back() == '\r') |
| 57 | { |
| 58 | // If the manifest has CRLF line terminators, e.g. is created on |
| 59 | // Windows, the line will contain \r at the end, remove it. |
| 60 | line.pop_back(); |
| 61 | } |
Gunnar Mills | cebd102 | 2017-04-17 16:10:15 -0500 | [diff] [blame] | 62 | if (line.compare(0, keySize, key) == 0) |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 63 | { |
Gunnar Mills | cebd102 | 2017-04-17 16:10:15 -0500 | [diff] [blame] | 64 | value = line.substr(keySize); |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 65 | break; |
| 66 | } |
| 67 | } |
| 68 | efile.close(); |
| 69 | } |
| 70 | catch (const std::exception& e) |
| 71 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 72 | error("Error occurred when reading MANIFEST file: {ERROR}", "KEY", key, |
| 73 | "ERROR", e); |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 74 | } |
| 75 | |
Gunnar Mills | cebd102 | 2017-04-17 16:10:15 -0500 | [diff] [blame] | 76 | return value; |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 77 | } |
| 78 | |
Patrick Williams | 564bc90 | 2021-12-08 10:17:23 -0600 | [diff] [blame] | 79 | using EVP_MD_CTX_Ptr = |
| 80 | std::unique_ptr<EVP_MD_CTX, decltype(&::EVP_MD_CTX_free)>; |
| 81 | |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 82 | std::string Version::getId(const std::string& version) |
| 83 | { |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 84 | |
| 85 | if (version.empty()) |
| 86 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 87 | error("Version is empty."); |
Gunnar Mills | aae1b2b | 2017-10-06 13:42:39 -0500 | [diff] [blame] | 88 | elog<InvalidArgument>(Argument::ARGUMENT_NAME("Version"), |
| 89 | Argument::ARGUMENT_VALUE(version.c_str())); |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 90 | } |
| 91 | |
Patrick Williams | 564bc90 | 2021-12-08 10:17:23 -0600 | [diff] [blame] | 92 | std::array<unsigned char, EVP_MAX_MD_SIZE> digest{}; |
| 93 | EVP_MD_CTX_Ptr ctx(EVP_MD_CTX_new(), &::EVP_MD_CTX_free); |
Saqib Khan | 26a960d | 2017-09-19 14:23:28 -0500 | [diff] [blame] | 94 | |
Patrick Williams | 564bc90 | 2021-12-08 10:17:23 -0600 | [diff] [blame] | 95 | EVP_DigestInit(ctx.get(), EVP_sha512()); |
| 96 | EVP_DigestUpdate(ctx.get(), version.c_str(), strlen(version.c_str())); |
| 97 | EVP_DigestFinal(ctx.get(), digest.data(), nullptr); |
| 98 | |
| 99 | // We are only using the first 8 characters. |
| 100 | char mdString[9]; |
| 101 | snprintf(mdString, sizeof(mdString), "%02x%02x%02x%02x", |
| 102 | (unsigned int)digest[0], (unsigned int)digest[1], |
| 103 | (unsigned int)digest[2], (unsigned int)digest[3]); |
| 104 | |
| 105 | return mdString; |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 106 | } |
| 107 | |
Vijay Khemka | b7c062e | 2019-09-18 17:15:57 -0700 | [diff] [blame] | 108 | std::string Version::getBMCMachine(const std::string& releaseFilePath) |
| 109 | { |
| 110 | std::string machineKey = "OPENBMC_TARGET_MACHINE="; |
| 111 | std::string machine{}; |
| 112 | std::ifstream efile(releaseFilePath); |
| 113 | std::string line; |
| 114 | |
| 115 | while (getline(efile, line)) |
| 116 | { |
| 117 | if (line.substr(0, machineKey.size()).find(machineKey) != |
| 118 | std::string::npos) |
| 119 | { |
| 120 | std::size_t pos = line.find_first_of('"') + 1; |
| 121 | machine = line.substr(pos, line.find_last_of('"') - pos); |
| 122 | break; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | if (machine.empty()) |
| 127 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 128 | error("Unable to find OPENBMC_TARGET_MACHINE"); |
Vijay Khemka | b7c062e | 2019-09-18 17:15:57 -0700 | [diff] [blame] | 129 | elog<InternalFailure>(); |
| 130 | } |
| 131 | |
| 132 | return machine; |
| 133 | } |
| 134 | |
Chanh Nguyen | 1fd6ddd | 2021-01-06 11:09:09 +0700 | [diff] [blame] | 135 | std::string Version::getBMCExtendedVersion(const std::string& releaseFilePath) |
| 136 | { |
| 137 | std::string extendedVersionKey = "EXTENDED_VERSION="; |
| 138 | std::string extendedVersionValue{}; |
| 139 | std::string extendedVersion{}; |
| 140 | std::ifstream efile(releaseFilePath); |
| 141 | std::string line; |
| 142 | |
| 143 | while (getline(efile, line)) |
| 144 | { |
| 145 | if (line.substr(0, extendedVersionKey.size()) |
| 146 | .find(extendedVersionKey) != std::string::npos) |
| 147 | { |
| 148 | extendedVersionValue = line.substr(extendedVersionKey.size()); |
| 149 | std::size_t pos = extendedVersionValue.find_first_of('"') + 1; |
| 150 | extendedVersion = extendedVersionValue.substr( |
| 151 | pos, extendedVersionValue.find_last_of('"') - pos); |
| 152 | break; |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | return extendedVersion; |
| 157 | } |
| 158 | |
Saqib Khan | 1eef62d | 2017-08-10 15:29:34 -0500 | [diff] [blame] | 159 | std::string Version::getBMCVersion(const std::string& releaseFilePath) |
Saqib Khan | ba23988 | 2017-05-26 08:41:54 -0500 | [diff] [blame] | 160 | { |
| 161 | std::string versionKey = "VERSION_ID="; |
Adriana Kobylak | 2a3d9f5 | 2020-05-06 10:46:32 -0500 | [diff] [blame] | 162 | std::string versionValue{}; |
Saqib Khan | ba23988 | 2017-05-26 08:41:54 -0500 | [diff] [blame] | 163 | std::string version{}; |
| 164 | std::ifstream efile; |
| 165 | std::string line; |
Saqib Khan | 1eef62d | 2017-08-10 15:29:34 -0500 | [diff] [blame] | 166 | efile.open(releaseFilePath); |
Saqib Khan | ba23988 | 2017-05-26 08:41:54 -0500 | [diff] [blame] | 167 | |
| 168 | while (getline(efile, line)) |
| 169 | { |
| 170 | if (line.substr(0, versionKey.size()).find(versionKey) != |
| 171 | std::string::npos) |
| 172 | { |
Adriana Kobylak | 2a3d9f5 | 2020-05-06 10:46:32 -0500 | [diff] [blame] | 173 | // Support quoted and unquoted values |
| 174 | // 1. Remove the versionKey so that we process the value only. |
| 175 | versionValue = line.substr(versionKey.size()); |
| 176 | |
| 177 | // 2. Look for a starting quote, then increment the position by 1 to |
| 178 | // skip the quote character. If no quote is found, |
| 179 | // find_first_of() returns npos (-1), which by adding +1 sets pos |
| 180 | // to 0 (beginning of unquoted string). |
| 181 | std::size_t pos = versionValue.find_first_of('"') + 1; |
| 182 | |
| 183 | // 3. Look for ending quote, then decrease the position by pos to |
| 184 | // get the size of the string up to before the ending quote. If |
| 185 | // no quote is found, find_last_of() returns npos (-1), and pos |
| 186 | // is 0 for the unquoted case, so substr() is called with a len |
| 187 | // parameter of npos (-1) which according to the documentation |
| 188 | // indicates to use all characters until the end of the string. |
| 189 | version = |
| 190 | versionValue.substr(pos, versionValue.find_last_of('"') - pos); |
Saqib Khan | ba23988 | 2017-05-26 08:41:54 -0500 | [diff] [blame] | 191 | break; |
| 192 | } |
| 193 | } |
| 194 | efile.close(); |
| 195 | |
| 196 | if (version.empty()) |
| 197 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 198 | error("BMC current version is empty"); |
Gunnar Mills | aae1b2b | 2017-10-06 13:42:39 -0500 | [diff] [blame] | 199 | elog<InternalFailure>(); |
Saqib Khan | ba23988 | 2017-05-26 08:41:54 -0500 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | return version; |
| 203 | } |
| 204 | |
Saqib Khan | ee13e83 | 2017-10-23 12:53:11 -0500 | [diff] [blame] | 205 | void Delete::delete_() |
| 206 | { |
| 207 | if (parent.eraseCallback) |
| 208 | { |
Adriana Kobylak | 59b640b | 2022-01-21 19:45:22 +0000 | [diff] [blame^] | 209 | parent.eraseCallback(parent.id); |
Saqib Khan | ee13e83 | 2017-10-23 12:53:11 -0500 | [diff] [blame] | 210 | } |
| 211 | } |
| 212 | |
Gunnar Mills | 392f294 | 2017-04-12 11:04:37 -0500 | [diff] [blame] | 213 | } // namespace manager |
| 214 | } // namespace software |
Gunnar Mills | fa34e02 | 2018-09-04 10:05:45 -0500 | [diff] [blame] | 215 | } // namespace phosphor |