Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
| 3 | #include "image_verify.hpp" |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 4 | |
Lei YU | 1be8d50 | 2018-06-20 11:48:36 +0800 | [diff] [blame] | 5 | #include "images.hpp" |
George Liu | 0a06e97 | 2020-12-17 09:17:04 +0800 | [diff] [blame] | 6 | #include "utils.hpp" |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 7 | #include "version.hpp" |
| 8 | |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 9 | #include <fcntl.h> |
| 10 | #include <openssl/err.h> |
| 11 | #include <sys/stat.h> |
| 12 | |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 13 | #include <phosphor-logging/elog-errors.hpp> |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 14 | #include <phosphor-logging/elog.hpp> |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 15 | #include <phosphor-logging/lg2.hpp> |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 16 | #include <xyz/openbmc_project/Common/error.hpp> |
Jayanth Othayoth | 9d7cd83 | 2018-02-21 05:12:39 -0600 | [diff] [blame] | 17 | |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 18 | #include <cassert> |
Adriana Kobylak | 58aa750 | 2020-06-08 11:12:11 -0500 | [diff] [blame] | 19 | #include <fstream> |
| 20 | #include <set> |
George Liu | 44b9fef | 2023-02-07 14:31:32 +0800 | [diff] [blame] | 21 | #include <system_error> |
Adriana Kobylak | 58aa750 | 2020-06-08 11:12:11 -0500 | [diff] [blame] | 22 | |
Jayanth Othayoth | 9d7cd83 | 2018-02-21 05:12:39 -0600 | [diff] [blame] | 23 | namespace phosphor |
| 24 | { |
| 25 | namespace software |
| 26 | { |
| 27 | namespace image |
| 28 | { |
| 29 | |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 30 | PHOSPHOR_LOG2_USING; |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 31 | using namespace phosphor::logging; |
| 32 | using namespace phosphor::software::manager; |
| 33 | using InternalFailure = |
Adriana Kobylak | ce82de5 | 2024-01-16 13:56:38 -0600 | [diff] [blame] | 34 | sdbusplus::error::xyz::openbmc_project::common::InternalFailure; |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 35 | |
| 36 | constexpr auto keyTypeTag = "KeyType"; |
| 37 | constexpr auto hashFunctionTag = "HashType"; |
| 38 | |
| 39 | Signature::Signature(const fs::path& imageDirPath, |
| 40 | const fs::path& signedConfPath) : |
| 41 | imageDirPath(imageDirPath), |
| 42 | signedConfPath(signedConfPath) |
| 43 | { |
| 44 | fs::path file(imageDirPath / MANIFEST_FILE_NAME); |
| 45 | |
| 46 | keyType = Version::getValue(file, keyTypeTag); |
| 47 | hashType = Version::getValue(file, hashFunctionTag); |
Lei YU | 6173a07 | 2022-05-23 19:18:57 +0800 | [diff] [blame] | 48 | |
| 49 | // Get purpose |
| 50 | auto purposeString = Version::getValue(file, "purpose"); |
| 51 | auto convertedPurpose = |
| 52 | sdbusplus::message::convert_from_string<VersionPurpose>(purposeString); |
| 53 | purpose = convertedPurpose.value_or(Version::VersionPurpose::Unknown); |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | AvailableKeyTypes Signature::getAvailableKeyTypesFromSystem() const |
| 57 | { |
| 58 | AvailableKeyTypes keyTypes{}; |
| 59 | |
| 60 | // Find the path of all the files |
George Liu | 44b9fef | 2023-02-07 14:31:32 +0800 | [diff] [blame] | 61 | std::error_code ec; |
| 62 | if (!fs::is_directory(signedConfPath, ec)) |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 63 | { |
George Liu | 44b9fef | 2023-02-07 14:31:32 +0800 | [diff] [blame] | 64 | error("Signed configuration path not found in the system: {ERROR_MSG}", |
| 65 | "ERROR_MSG", ec.message()); |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 66 | elog<InternalFailure>(); |
| 67 | } |
| 68 | |
| 69 | // Look for all the hash and public key file names get the key value |
| 70 | // For example: |
| 71 | // /etc/activationdata/OpenBMC/publickey |
| 72 | // /etc/activationdata/OpenBMC/hashfunc |
| 73 | // /etc/activationdata/GA/publickey |
| 74 | // /etc/activationdata/GA/hashfunc |
| 75 | // Set will have OpenBMC, GA |
| 76 | |
| 77 | for (const auto& p : fs::recursive_directory_iterator(signedConfPath)) |
| 78 | { |
| 79 | if ((p.path().filename() == HASH_FILE_NAME) || |
| 80 | (p.path().filename() == PUBLICKEY_FILE_NAME)) |
| 81 | { |
| 82 | // extract the key types |
| 83 | // /etc/activationdata/OpenBMC/ -> get OpenBMC from the path |
| 84 | auto key = p.path().parent_path(); |
| 85 | keyTypes.insert(key.filename()); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | return keyTypes; |
| 90 | } |
| 91 | |
| 92 | inline KeyHashPathPair Signature::getKeyHashFileNames(const Key_t& key) const |
| 93 | { |
| 94 | fs::path hashpath(signedConfPath / key / HASH_FILE_NAME); |
| 95 | fs::path keyPath(signedConfPath / key / PUBLICKEY_FILE_NAME); |
| 96 | |
| 97 | return std::make_pair(std::move(hashpath), std::move(keyPath)); |
| 98 | } |
| 99 | |
George Liu | 0a06e97 | 2020-12-17 09:17:04 +0800 | [diff] [blame] | 100 | bool Signature::verifyFullImage() |
| 101 | { |
| 102 | bool ret = true; |
Konstantin Aladyshev | 294991a | 2023-04-19 15:24:20 +0300 | [diff] [blame] | 103 | #ifdef WANT_SIGNATURE_VERIFY |
Lei YU | 6173a07 | 2022-05-23 19:18:57 +0800 | [diff] [blame] | 104 | // Only verify full image for BMC |
| 105 | if (purpose != VersionPurpose::BMC) |
| 106 | { |
| 107 | return ret; |
| 108 | } |
| 109 | |
George Liu | 0a06e97 | 2020-12-17 09:17:04 +0800 | [diff] [blame] | 110 | std::vector<std::string> fullImages = { |
| 111 | fs::path(imageDirPath) / "image-bmc.sig", |
| 112 | fs::path(imageDirPath) / "image-hostfw.sig", |
| 113 | fs::path(imageDirPath) / "image-kernel.sig", |
| 114 | fs::path(imageDirPath) / "image-rofs.sig", |
| 115 | fs::path(imageDirPath) / "image-rwfs.sig", |
| 116 | fs::path(imageDirPath) / "image-u-boot.sig", |
| 117 | fs::path(imageDirPath) / "MANIFEST.sig", |
| 118 | fs::path(imageDirPath) / "publickey.sig"}; |
| 119 | |
| 120 | // Merge files |
| 121 | std::string tmpFullFile = "/tmp/image-full"; |
| 122 | utils::mergeFiles(fullImages, tmpFullFile); |
| 123 | |
| 124 | // Validate the full image files |
| 125 | fs::path pkeyFullFile(tmpFullFile); |
| 126 | |
| 127 | std::string imageFullSig = "image-full.sig"; |
| 128 | fs::path pkeyFullFileSig(imageDirPath / imageFullSig); |
| 129 | pkeyFullFileSig.replace_extension(SIGNATURE_FILE_EXT); |
| 130 | |
| 131 | // image specific publickey file name. |
| 132 | fs::path publicKeyFile(imageDirPath / PUBLICKEY_FILE_NAME); |
| 133 | |
| 134 | ret = verifyFile(pkeyFullFile, pkeyFullFileSig, publicKeyFile, hashType); |
George Liu | 44b9fef | 2023-02-07 14:31:32 +0800 | [diff] [blame] | 135 | |
| 136 | std::error_code ec; |
| 137 | fs::remove(tmpFullFile, ec); |
George Liu | 0a06e97 | 2020-12-17 09:17:04 +0800 | [diff] [blame] | 138 | #endif |
| 139 | |
| 140 | return ret; |
| 141 | } |
| 142 | |
Jayanth Othayoth | 9d7cd83 | 2018-02-21 05:12:39 -0600 | [diff] [blame] | 143 | bool Signature::verify() |
| 144 | { |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 145 | try |
| 146 | { |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 147 | bool valid; |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 148 | // Verify the MANIFEST and publickey file using available |
| 149 | // public keys and hash on the system. |
| 150 | if (false == systemLevelVerify()) |
| 151 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 152 | error("System level Signature Validation failed"); |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 153 | return false; |
| 154 | } |
| 155 | |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 156 | bool bmcFilesFound = false; |
Gunnar Mills | e11a202 | 2018-03-23 12:04:48 -0500 | [diff] [blame] | 157 | // image specific publickey file name. |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 158 | fs::path publicKeyFile(imageDirPath / PUBLICKEY_FILE_NAME); |
| 159 | |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 160 | // Record the images which are being updated |
| 161 | // First check and Validate for the fullimage, then check and Validate |
| 162 | // for images with partitions |
| 163 | std::vector<std::string> imageUpdateList = {bmcFullImages}; |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 164 | valid = checkAndVerifyImage(imageDirPath, publicKeyFile, |
| 165 | imageUpdateList, bmcFilesFound); |
| 166 | if (bmcFilesFound && !valid) |
| 167 | { |
| 168 | return false; |
| 169 | } |
| 170 | |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 171 | if (!valid) |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 172 | { |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 173 | // Validate bmcImages |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 174 | imageUpdateList.clear(); |
| 175 | imageUpdateList.assign(bmcImages.begin(), bmcImages.end()); |
| 176 | valid = checkAndVerifyImage(imageDirPath, publicKeyFile, |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 177 | imageUpdateList, bmcFilesFound); |
| 178 | if (bmcFilesFound && !valid) |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 179 | { |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 180 | return false; |
| 181 | } |
| 182 | } |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 183 | |
Adriana Kobylak | 73609bb | 2020-06-18 15:05:40 -0500 | [diff] [blame] | 184 | // Validate the optional image files. |
| 185 | auto optionalImages = getOptionalImages(); |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 186 | bool optionalFilesFound = false; |
| 187 | bool optionalImagesValid = false; |
Adriana Kobylak | 73609bb | 2020-06-18 15:05:40 -0500 | [diff] [blame] | 188 | for (const auto& optionalImage : optionalImages) |
| 189 | { |
| 190 | // Build Image File name |
| 191 | fs::path file(imageDirPath); |
| 192 | file /= optionalImage; |
| 193 | |
George Liu | 44b9fef | 2023-02-07 14:31:32 +0800 | [diff] [blame] | 194 | std::error_code ec; |
| 195 | if (fs::exists(file, ec)) |
Adriana Kobylak | 73609bb | 2020-06-18 15:05:40 -0500 | [diff] [blame] | 196 | { |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 197 | optionalFilesFound = true; |
Adriana Kobylak | 73609bb | 2020-06-18 15:05:40 -0500 | [diff] [blame] | 198 | // Build Signature File name |
| 199 | fs::path sigFile(file); |
Lei YU | 92c7e9e | 2021-05-20 16:32:28 +0800 | [diff] [blame] | 200 | sigFile += SIGNATURE_FILE_EXT; |
Adriana Kobylak | 73609bb | 2020-06-18 15:05:40 -0500 | [diff] [blame] | 201 | |
| 202 | // Verify the signature. |
Patrick Williams | d5e8e73 | 2023-05-10 07:50:18 -0500 | [diff] [blame] | 203 | optionalImagesValid = verifyFile(file, sigFile, publicKeyFile, |
| 204 | hashType); |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 205 | if (!optionalImagesValid) |
Adriana Kobylak | 73609bb | 2020-06-18 15:05:40 -0500 | [diff] [blame] | 206 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 207 | error("Image file Signature Validation failed on {IMAGE}", |
| 208 | "IMAGE", optionalImage); |
Adriana Kobylak | 73609bb | 2020-06-18 15:05:40 -0500 | [diff] [blame] | 209 | return false; |
| 210 | } |
| 211 | } |
| 212 | } |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 213 | |
George Liu | 0a06e97 | 2020-12-17 09:17:04 +0800 | [diff] [blame] | 214 | if (verifyFullImage() == false) |
| 215 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 216 | error("Image full file Signature Validation failed"); |
George Liu | 0a06e97 | 2020-12-17 09:17:04 +0800 | [diff] [blame] | 217 | return false; |
| 218 | } |
| 219 | |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 220 | if (!bmcFilesFound && !optionalFilesFound) |
| 221 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 222 | error("Unable to find files to verify"); |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 223 | return false; |
| 224 | } |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 225 | |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 226 | // Either BMC images or optional images shall be valid |
| 227 | assert(valid || optionalImagesValid); |
| 228 | |
Manojkiran Eda | 19dd56b | 2024-06-17 14:29:52 +0530 | [diff] [blame] | 229 | debug("Successfully completed Signature validation."); |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 230 | return true; |
| 231 | } |
| 232 | catch (const InternalFailure& e) |
| 233 | { |
| 234 | return false; |
| 235 | } |
| 236 | catch (const std::exception& e) |
| 237 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 238 | error("Error during processing: {ERROR}", "ERROR", e); |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 239 | return false; |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | bool Signature::systemLevelVerify() |
| 244 | { |
| 245 | // Get available key types from the system. |
| 246 | auto keyTypes = getAvailableKeyTypesFromSystem(); |
| 247 | if (keyTypes.empty()) |
| 248 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 249 | error("Missing Signature configuration data in system"); |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 250 | elog<InternalFailure>(); |
| 251 | } |
| 252 | |
| 253 | // Build publickey and its signature file name. |
| 254 | fs::path pkeyFile(imageDirPath / PUBLICKEY_FILE_NAME); |
| 255 | fs::path pkeyFileSig(pkeyFile); |
| 256 | pkeyFileSig.replace_extension(SIGNATURE_FILE_EXT); |
| 257 | |
| 258 | // Build manifest and its signature file name. |
| 259 | fs::path manifestFile(imageDirPath / MANIFEST_FILE_NAME); |
| 260 | fs::path manifestFileSig(manifestFile); |
| 261 | manifestFileSig.replace_extension(SIGNATURE_FILE_EXT); |
| 262 | |
| 263 | auto valid = false; |
| 264 | |
| 265 | // Verify the file signature with available key types |
| 266 | // public keys and hash function. |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 267 | // For any internal failure during the key/hash pair specific |
| 268 | // validation, should continue the validation with next |
| 269 | // available Key/hash pair. |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 270 | for (const auto& keyType : keyTypes) |
| 271 | { |
| 272 | auto keyHashPair = getKeyHashFileNames(keyType); |
| 273 | |
| 274 | auto hashFunc = Version::getValue(keyHashPair.first, hashFunctionTag); |
| 275 | |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 276 | try |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 277 | { |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 278 | // Verify manifest file signature |
| 279 | valid = verifyFile(manifestFile, manifestFileSig, |
| 280 | keyHashPair.second, hashFunc); |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 281 | if (valid) |
| 282 | { |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 283 | // Verify publickey file signature. |
| 284 | valid = verifyFile(pkeyFile, pkeyFileSig, keyHashPair.second, |
| 285 | hashFunc); |
| 286 | if (valid) |
| 287 | { |
| 288 | break; |
| 289 | } |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 290 | } |
| 291 | } |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 292 | catch (const InternalFailure& e) |
| 293 | { |
| 294 | valid = false; |
| 295 | } |
Jayanth Othayoth | 2ab9b10 | 2018-02-21 05:27:47 -0600 | [diff] [blame] | 296 | } |
| 297 | return valid; |
| 298 | } |
| 299 | |
| 300 | bool Signature::verifyFile(const fs::path& file, const fs::path& sigFile, |
| 301 | const fs::path& publicKey, |
| 302 | const std::string& hashFunc) |
| 303 | { |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 304 | // Check existence of the files in the system. |
George Liu | 44b9fef | 2023-02-07 14:31:32 +0800 | [diff] [blame] | 305 | std::error_code ec; |
| 306 | if (!(fs::exists(file, ec) && fs::exists(sigFile, ec))) |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 307 | { |
George Liu | 2851e0d | 2023-12-05 14:44:11 +0800 | [diff] [blame] | 308 | error("Failed to find the Data or signature file {PATH}", "PATH", file); |
| 309 | if (ec) |
| 310 | { |
| 311 | error("Error message: {ERROR_MSG}", "ERROR_MSG", ec.message()); |
| 312 | } |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 313 | elog<InternalFailure>(); |
| 314 | } |
| 315 | |
| 316 | // Create RSA. |
| 317 | auto publicRSA = createPublicRSA(publicKey); |
Patrick Williams | d75c869 | 2021-12-07 16:25:10 -0600 | [diff] [blame] | 318 | if (!publicRSA) |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 319 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 320 | error("Failed to create RSA from {PATH}", "PATH", publicKey); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 321 | elog<InternalFailure>(); |
| 322 | } |
| 323 | |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 324 | // Initializes a digest context. |
Adriana Kobylak | 5ed9b2d | 2018-09-06 13:15:34 -0500 | [diff] [blame] | 325 | EVP_MD_CTX_Ptr rsaVerifyCtx(EVP_MD_CTX_new(), ::EVP_MD_CTX_free); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 326 | |
| 327 | // Adds all digest algorithms to the internal table |
| 328 | OpenSSL_add_all_digests(); |
| 329 | |
Gunnar Mills | 2bcba02 | 2018-04-08 15:02:04 -0500 | [diff] [blame] | 330 | // Create Hash structure. |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 331 | auto hashStruct = EVP_get_digestbyname(hashFunc.c_str()); |
| 332 | if (!hashStruct) |
| 333 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 334 | error("EVP_get_digestbynam: Unknown message digest: {HASH}", "HASH", |
| 335 | hashFunc); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 336 | elog<InternalFailure>(); |
| 337 | } |
| 338 | |
| 339 | auto result = EVP_DigestVerifyInit(rsaVerifyCtx.get(), nullptr, hashStruct, |
Patrick Williams | d75c869 | 2021-12-07 16:25:10 -0600 | [diff] [blame] | 340 | nullptr, publicRSA.get()); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 341 | |
| 342 | if (result <= 0) |
| 343 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 344 | error("Error ({RC}) occurred during EVP_DigestVerifyInit", "RC", |
| 345 | ERR_get_error()); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 346 | elog<InternalFailure>(); |
| 347 | } |
| 348 | |
| 349 | // Hash the data file and update the verification context |
George Liu | 44b9fef | 2023-02-07 14:31:32 +0800 | [diff] [blame] | 350 | auto size = fs::file_size(file, ec); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 351 | auto dataPtr = mapFile(file, size); |
| 352 | |
| 353 | result = EVP_DigestVerifyUpdate(rsaVerifyCtx.get(), dataPtr(), size); |
| 354 | if (result <= 0) |
| 355 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 356 | error("Error ({RC}) occurred during EVP_DigestVerifyUpdate", "RC", |
| 357 | ERR_get_error()); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 358 | elog<InternalFailure>(); |
| 359 | } |
| 360 | |
| 361 | // Verify the data with signature. |
George Liu | 44b9fef | 2023-02-07 14:31:32 +0800 | [diff] [blame] | 362 | size = fs::file_size(sigFile, ec); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 363 | auto signature = mapFile(sigFile, size); |
| 364 | |
| 365 | result = EVP_DigestVerifyFinal( |
| 366 | rsaVerifyCtx.get(), reinterpret_cast<unsigned char*>(signature()), |
| 367 | size); |
| 368 | |
| 369 | // Check the verification result. |
| 370 | if (result < 0) |
| 371 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 372 | error("Error ({RC}) occurred during EVP_DigestVerifyFinal", "RC", |
| 373 | ERR_get_error()); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 374 | elog<InternalFailure>(); |
| 375 | } |
| 376 | |
| 377 | if (result == 0) |
| 378 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 379 | error("EVP_DigestVerifyFinal:Signature validation failed on {PATH}", |
| 380 | "PATH", sigFile); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 381 | return false; |
| 382 | } |
Jayanth Othayoth | 9d7cd83 | 2018-02-21 05:12:39 -0600 | [diff] [blame] | 383 | return true; |
| 384 | } |
| 385 | |
Patrick Williams | d75c869 | 2021-12-07 16:25:10 -0600 | [diff] [blame] | 386 | inline EVP_PKEY_Ptr Signature::createPublicRSA(const fs::path& publicKey) |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 387 | { |
George Liu | 44b9fef | 2023-02-07 14:31:32 +0800 | [diff] [blame] | 388 | std::error_code ec; |
| 389 | auto size = fs::file_size(publicKey, ec); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 390 | |
| 391 | // Read public key file |
| 392 | auto data = mapFile(publicKey, size); |
| 393 | |
| 394 | BIO_MEM_Ptr keyBio(BIO_new_mem_buf(data(), -1), &::BIO_free); |
| 395 | if (keyBio.get() == nullptr) |
| 396 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 397 | error("Failed to create new BIO Memory buffer"); |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 398 | elog<InternalFailure>(); |
| 399 | } |
| 400 | |
Patrick Williams | d75c869 | 2021-12-07 16:25:10 -0600 | [diff] [blame] | 401 | return {PEM_read_bio_PUBKEY(keyBio.get(), nullptr, nullptr, nullptr), |
| 402 | &::EVP_PKEY_free}; |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | CustomMap Signature::mapFile(const fs::path& path, size_t size) |
| 406 | { |
Jayanth Othayoth | fb6e1fc | 2018-02-21 05:43:20 -0600 | [diff] [blame] | 407 | CustomFd fd(open(path.c_str(), O_RDONLY)); |
| 408 | |
| 409 | return CustomMap(mmap(nullptr, size, PROT_READ, MAP_PRIVATE, fd(), 0), |
| 410 | size); |
| 411 | } |
| 412 | |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 413 | bool Signature::checkAndVerifyImage(const std::string& filePath, |
| 414 | const std::string& publicKeyPath, |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 415 | const std::vector<std::string>& imageList, |
| 416 | bool& fileFound) |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 417 | { |
| 418 | bool valid = true; |
| 419 | |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 420 | fileFound = false; |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 421 | for (auto& bmcImage : imageList) |
| 422 | { |
| 423 | fs::path file(filePath); |
| 424 | file /= bmcImage; |
| 425 | |
George Liu | 44b9fef | 2023-02-07 14:31:32 +0800 | [diff] [blame] | 426 | std::error_code ec; |
| 427 | if (!fs::exists(file, ec)) |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 428 | { |
| 429 | valid = false; |
| 430 | break; |
| 431 | } |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 432 | fileFound = true; |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 433 | |
| 434 | fs::path sigFile(file); |
Lei YU | 92c7e9e | 2021-05-20 16:32:28 +0800 | [diff] [blame] | 435 | sigFile += SIGNATURE_FILE_EXT; |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 436 | |
| 437 | // Verify the signature. |
Lei YU | 0cd6d84 | 2021-12-27 11:56:02 +0800 | [diff] [blame] | 438 | valid = verifyFile(file, sigFile, publicKeyPath, hashType); |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 439 | if (valid == false) |
| 440 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 441 | error("Image file Signature Validation failed on {PATH}", "PATH", |
| 442 | bmcImage); |
Henry Tian | 574f94b | 2021-01-06 10:33:59 +0800 | [diff] [blame] | 443 | return false; |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | return valid; |
| 448 | } |
Jayanth Othayoth | 9d7cd83 | 2018-02-21 05:12:39 -0600 | [diff] [blame] | 449 | } // namespace image |
| 450 | } // namespace software |
| 451 | } // namespace phosphor |