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