Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 1 | #include "activation.hpp" |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 2 | |
Lei YU | 1be8d50 | 2018-06-20 11:48:36 +0800 | [diff] [blame] | 3 | #include "images.hpp" |
Saqib Khan | 4c1aec0 | 2017-07-06 11:46:13 -0500 | [diff] [blame] | 4 | #include "item_updater.hpp" |
Miguel Gomez | 21dad04 | 2020-06-26 20:54:48 +0000 | [diff] [blame] | 5 | #include "msl_verify.hpp" |
Saqib Khan | 5d53267 | 2017-08-09 10:44:50 -0500 | [diff] [blame] | 6 | #include "serialize.hpp" |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 7 | |
Lei YU | 2586818 | 2021-05-14 14:50:51 +0800 | [diff] [blame] | 8 | #include <boost/asio/io_context.hpp> |
Lei YU | 7d2fa14 | 2021-08-06 10:58:19 +0800 | [diff] [blame] | 9 | #include <boost/asio/post.hpp> |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 10 | #include <phosphor-logging/elog-errors.hpp> |
| 11 | #include <phosphor-logging/elog.hpp> |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 12 | #include <phosphor-logging/lg2.hpp> |
Adriana Kobylak | aea48f2 | 2018-07-10 10:20:56 -0500 | [diff] [blame] | 13 | #include <sdbusplus/exception.hpp> |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 14 | #include <xyz/openbmc_project/Common/error.hpp> |
Miguel Gomez | 21dad04 | 2020-06-26 20:54:48 +0000 | [diff] [blame] | 15 | #include <xyz/openbmc_project/Software/Version/error.hpp> |
Saqib Khan | b9da663 | 2017-09-13 09:48:37 -0500 | [diff] [blame] | 16 | |
Jayanth Othayoth | 0e0c127 | 2018-02-21 05:46:36 -0600 | [diff] [blame] | 17 | #ifdef WANT_SIGNATURE_VERIFY |
Jayanth Othayoth | 0e0c127 | 2018-02-21 05:46:36 -0600 | [diff] [blame] | 18 | #include "image_verify.hpp" |
Jayanth Othayoth | 0e0c127 | 2018-02-21 05:46:36 -0600 | [diff] [blame] | 19 | #endif |
| 20 | |
Lei YU | 2586818 | 2021-05-14 14:50:51 +0800 | [diff] [blame] | 21 | extern boost::asio::io_context& getIOContext(); |
| 22 | |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 23 | namespace phosphor |
| 24 | { |
| 25 | namespace software |
| 26 | { |
| 27 | namespace updater |
| 28 | { |
| 29 | |
| 30 | namespace softwareServer = sdbusplus::xyz::openbmc_project::Software::server; |
| 31 | |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 32 | PHOSPHOR_LOG2_USING; |
Saqib Khan | b9da663 | 2017-09-13 09:48:37 -0500 | [diff] [blame] | 33 | using namespace phosphor::logging; |
Jayanth Othayoth | 0e0c127 | 2018-02-21 05:46:36 -0600 | [diff] [blame] | 34 | using InternalFailure = |
| 35 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 36 | |
| 37 | #ifdef WANT_SIGNATURE_VERIFY |
Jayanth Othayoth | 9a9d7c2 | 2018-03-28 10:05:26 -0500 | [diff] [blame] | 38 | namespace control = sdbusplus::xyz::openbmc_project::Control::server; |
Jayanth Othayoth | 0e0c127 | 2018-02-21 05:46:36 -0600 | [diff] [blame] | 39 | #endif |
| 40 | |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 41 | void Activation::subscribeToSystemdSignals() |
| 42 | { |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 43 | auto method = this->bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 44 | SYSTEMD_INTERFACE, "Subscribe"); |
Adriana Kobylak | aea48f2 | 2018-07-10 10:20:56 -0500 | [diff] [blame] | 45 | try |
| 46 | { |
| 47 | this->bus.call_noreply(method); |
| 48 | } |
Patrick Williams | 4ce901c | 2021-09-02 09:34:45 -0500 | [diff] [blame] | 49 | catch (const sdbusplus::exception::exception& e) |
Adriana Kobylak | aea48f2 | 2018-07-10 10:20:56 -0500 | [diff] [blame] | 50 | { |
| 51 | if (e.name() != nullptr && |
| 52 | strcmp("org.freedesktop.systemd1.AlreadySubscribed", e.name()) == 0) |
| 53 | { |
| 54 | // If an Activation attempt fails, the Unsubscribe method is not |
| 55 | // called. This may lead to an AlreadySubscribed error if the |
| 56 | // Activation is re-attempted. |
| 57 | } |
| 58 | else |
| 59 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 60 | error("Error subscribing to systemd: {ERROR}", "ERROR", e); |
Adriana Kobylak | aea48f2 | 2018-07-10 10:20:56 -0500 | [diff] [blame] | 61 | } |
| 62 | } |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 63 | |
| 64 | return; |
| 65 | } |
| 66 | |
Michael Tritz | f2b5e0d | 2017-07-25 14:39:34 -0500 | [diff] [blame] | 67 | void Activation::unsubscribeFromSystemdSignals() |
| 68 | { |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 69 | auto method = this->bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 70 | SYSTEMD_INTERFACE, "Unsubscribe"); |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 71 | try |
| 72 | { |
| 73 | this->bus.call_noreply(method); |
| 74 | } |
Patrick Williams | 4ce901c | 2021-09-02 09:34:45 -0500 | [diff] [blame] | 75 | catch (const sdbusplus::exception::exception& e) |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 76 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 77 | error("Error unsubscribing from systemd signals: {ERROR}", "ERROR", e); |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 78 | } |
Michael Tritz | f2b5e0d | 2017-07-25 14:39:34 -0500 | [diff] [blame] | 79 | |
| 80 | return; |
| 81 | } |
| 82 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 83 | auto Activation::activation(Activations value) -> Activations |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 84 | { |
Adriana Kobylak | 8bd84c8 | 2018-01-24 14:19:24 -0600 | [diff] [blame] | 85 | if ((value != softwareServer::Activation::Activations::Active) && |
| 86 | (value != softwareServer::Activation::Activations::Activating)) |
Saqib Khan | 4c1aec0 | 2017-07-06 11:46:13 -0500 | [diff] [blame] | 87 | { |
| 88 | redundancyPriority.reset(nullptr); |
| 89 | } |
| 90 | |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 91 | if (value == softwareServer::Activation::Activations::Activating) |
| 92 | { |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 93 | #ifdef WANT_SIGNATURE_VERIFY |
| 94 | fs::path uploadDir(IMG_UPLOAD_DIR); |
| 95 | if (!verifySignature(uploadDir / versionId, SIGNED_IMAGE_CONF_PATH)) |
| 96 | { |
zamiseck | 3afdaaf | 2022-03-28 11:26:09 -0500 | [diff] [blame] | 97 | using InvalidSignatureErr = sdbusplus::xyz::openbmc_project:: |
| 98 | Software::Version::Error::InvalidSignature; |
| 99 | report<InvalidSignatureErr>(); |
Lei YU | 7ab55e2 | 2021-05-19 13:26:53 +0800 | [diff] [blame] | 100 | // Stop the activation process, if fieldMode is enabled. |
| 101 | if (parent.control::FieldMode::fieldModeEnabled()) |
| 102 | { |
| 103 | return softwareServer::Activation::activation( |
| 104 | softwareServer::Activation::Activations::Failed); |
| 105 | } |
| 106 | } |
| 107 | #endif |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 108 | |
Miguel Gomez | 21dad04 | 2020-06-26 20:54:48 +0000 | [diff] [blame] | 109 | auto versionStr = parent.versions.find(versionId)->second->version(); |
| 110 | |
| 111 | if (!minimum_ship_level::verify(versionStr)) |
| 112 | { |
Miguel Gomez | 21dad04 | 2020-06-26 20:54:48 +0000 | [diff] [blame] | 113 | return softwareServer::Activation::activation( |
| 114 | softwareServer::Activation::Activations::Failed); |
| 115 | } |
| 116 | |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 117 | if (!activationProgress) |
| 118 | { |
| 119 | activationProgress = |
| 120 | std::make_unique<ActivationProgress>(bus, path); |
| 121 | } |
| 122 | |
| 123 | if (!activationBlocksTransition) |
| 124 | { |
| 125 | activationBlocksTransition = |
| 126 | std::make_unique<ActivationBlocksTransition>(bus, path); |
| 127 | } |
| 128 | |
Thang Tran | bee6243 | 2022-03-14 22:18:38 +0700 | [diff] [blame] | 129 | #ifdef HOST_BIOS_UPGRADE |
| 130 | auto purpose = parent.versions.find(versionId)->second->purpose(); |
| 131 | if (purpose == VersionPurpose::Host) |
| 132 | { |
| 133 | // Enable systemd signals |
| 134 | subscribeToSystemdSignals(); |
| 135 | |
| 136 | // Set initial progress |
| 137 | activationProgress->progress(20); |
| 138 | |
| 139 | // Initiate image writing to flash |
| 140 | flashWriteHost(); |
| 141 | |
| 142 | return softwareServer::Activation::activation(value); |
| 143 | } |
| 144 | #endif |
| 145 | |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 146 | activationProgress->progress(10); |
| 147 | |
Adriana Kobylak | a696359 | 2018-09-07 14:13:29 -0500 | [diff] [blame] | 148 | parent.freeSpace(*this); |
Lei YU | a7853ee | 2018-05-23 11:13:12 +0800 | [diff] [blame] | 149 | |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 150 | // Enable systemd signals |
| 151 | Activation::subscribeToSystemdSignals(); |
| 152 | |
Lei YU | a7853ee | 2018-05-23 11:13:12 +0800 | [diff] [blame] | 153 | flashWrite(); |
| 154 | |
Adriana Kobylak | 70f5bc0 | 2020-05-13 14:08:14 -0500 | [diff] [blame] | 155 | #if defined UBIFS_LAYOUT || defined MMC_LAYOUT |
Lei YU | a7853ee | 2018-05-23 11:13:12 +0800 | [diff] [blame] | 156 | |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 157 | return softwareServer::Activation::activation(value); |
Lei YU | a7853ee | 2018-05-23 11:13:12 +0800 | [diff] [blame] | 158 | |
Adriana Kobylak | 70f5bc0 | 2020-05-13 14:08:14 -0500 | [diff] [blame] | 159 | #else // STATIC_LAYOUT |
Lei YU | a7853ee | 2018-05-23 11:13:12 +0800 | [diff] [blame] | 160 | |
Lei YU | d8c9eea | 2021-12-16 16:08:30 +0800 | [diff] [blame] | 161 | if (parent.runningImageSlot == 0) |
| 162 | { |
| 163 | // On primary, update it as before |
| 164 | onFlashWriteSuccess(); |
| 165 | return softwareServer::Activation::activation( |
| 166 | softwareServer::Activation::Activations::Active); |
| 167 | } |
| 168 | // On secondary, wait for the service to complete |
Lei YU | a7853ee | 2018-05-23 11:13:12 +0800 | [diff] [blame] | 169 | #endif |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 170 | } |
| 171 | else |
| 172 | { |
| 173 | activationBlocksTransition.reset(nullptr); |
Michael Tritz | 0edd4ad | 2017-07-26 14:27:42 -0500 | [diff] [blame] | 174 | activationProgress.reset(nullptr); |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 175 | } |
| 176 | return softwareServer::Activation::activation(value); |
| 177 | } |
| 178 | |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 179 | void Activation::onFlashWriteSuccess() |
| 180 | { |
| 181 | activationProgress->progress(100); |
| 182 | |
| 183 | activationBlocksTransition.reset(nullptr); |
| 184 | activationProgress.reset(nullptr); |
| 185 | |
| 186 | rwVolumeCreated = false; |
| 187 | roVolumeCreated = false; |
| 188 | ubootEnvVarsUpdated = false; |
| 189 | Activation::unsubscribeFromSystemdSignals(); |
| 190 | |
Adriana Kobylak | 780220f | 2022-01-18 20:01:53 +0000 | [diff] [blame] | 191 | auto flashId = parent.versions.find(versionId)->second->path(); |
| 192 | storePurpose(flashId, parent.versions.find(versionId)->second->purpose()); |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 193 | |
| 194 | if (!redundancyPriority) |
| 195 | { |
| 196 | redundancyPriority = |
| 197 | std::make_unique<RedundancyPriority>(bus, path, *this, 0); |
| 198 | } |
| 199 | |
| 200 | // Remove version object from image manager |
| 201 | Activation::deleteImageManagerObject(); |
| 202 | |
| 203 | // Create active association |
| 204 | parent.createActiveAssociation(path); |
| 205 | |
| 206 | // Create updateable association as this |
| 207 | // can be re-programmed. |
| 208 | parent.createUpdateableAssociation(path); |
| 209 | |
| 210 | if (Activation::checkApplyTimeImmediate() == true) |
| 211 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 212 | info("Image Active and ApplyTime is immediate; rebooting BMC."); |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 213 | Activation::rebootBmc(); |
| 214 | } |
| 215 | else |
| 216 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 217 | info("BMC image ready; need reboot to get activated."); |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | activation(softwareServer::Activation::Activations::Active); |
| 221 | } |
| 222 | |
Saqib Khan | ee13e83 | 2017-10-23 12:53:11 -0500 | [diff] [blame] | 223 | void Activation::deleteImageManagerObject() |
| 224 | { |
zamiseck | 0b1fd51 | 2021-12-02 10:56:51 -0600 | [diff] [blame] | 225 | // Call the Delete object for <versionID> inside image_manager if the object |
| 226 | // has not already been deleted due to a successful update or Delete call |
| 227 | const std::string interface = std::string{VERSION_IFACE}; |
| 228 | auto method = this->bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH, |
| 229 | MAPPER_BUSNAME, "GetObject"); |
| 230 | method.append(path.c_str()); |
| 231 | method.append(std::vector<std::string>({interface})); |
| 232 | |
| 233 | std::map<std::string, std::vector<std::string>> response; |
| 234 | |
Adriana Kobylak | 3b6a4cd | 2018-12-10 13:45:09 -0600 | [diff] [blame] | 235 | try |
| 236 | { |
zamiseck | 0b1fd51 | 2021-12-02 10:56:51 -0600 | [diff] [blame] | 237 | auto reply = bus.call(method); |
| 238 | reply.read(response); |
| 239 | auto it = response.find(VERSION_IFACE); |
| 240 | if (it != response.end()) |
| 241 | { |
| 242 | auto deleteMethod = this->bus.new_method_call( |
| 243 | VERSION_BUSNAME, path.c_str(), |
| 244 | "xyz.openbmc_project.Object.Delete", "Delete"); |
| 245 | try |
| 246 | { |
| 247 | bus.call_noreply(deleteMethod); |
| 248 | } |
| 249 | catch (const sdbusplus::exception::exception& e) |
| 250 | { |
| 251 | error( |
| 252 | "Error deleting image ({PATH}) from image manager: {ERROR}", |
| 253 | "PATH", path, "ERROR", e); |
| 254 | return; |
| 255 | } |
| 256 | } |
Adriana Kobylak | 3b6a4cd | 2018-12-10 13:45:09 -0600 | [diff] [blame] | 257 | } |
Patrick Williams | 4ce901c | 2021-09-02 09:34:45 -0500 | [diff] [blame] | 258 | catch (const sdbusplus::exception::exception& e) |
Saqib Khan | ee13e83 | 2017-10-23 12:53:11 -0500 | [diff] [blame] | 259 | { |
zamiseck | 0b1fd51 | 2021-12-02 10:56:51 -0600 | [diff] [blame] | 260 | error("Error in mapper method call for ({PATH}, {INTERFACE}: {ERROR}", |
| 261 | "ERROR", e, "PATH", path, "INTERFACE", interface); |
Saqib Khan | ee13e83 | 2017-10-23 12:53:11 -0500 | [diff] [blame] | 262 | } |
zamiseck | 0b1fd51 | 2021-12-02 10:56:51 -0600 | [diff] [blame] | 263 | return; |
Saqib Khan | ee13e83 | 2017-10-23 12:53:11 -0500 | [diff] [blame] | 264 | } |
| 265 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 266 | auto Activation::requestedActivation(RequestedActivations value) |
| 267 | -> RequestedActivations |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 268 | { |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 269 | rwVolumeCreated = false; |
| 270 | roVolumeCreated = false; |
Adriana Kobylak | 166bdf3 | 2018-04-09 14:24:06 -0500 | [diff] [blame] | 271 | ubootEnvVarsUpdated = false; |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 272 | |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 273 | if ((value == softwareServer::Activation::RequestedActivations::Active) && |
| 274 | (softwareServer::Activation::requestedActivation() != |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 275 | softwareServer::Activation::RequestedActivations::Active)) |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 276 | { |
| 277 | if ((softwareServer::Activation::activation() == |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 278 | softwareServer::Activation::Activations::Ready) || |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 279 | (softwareServer::Activation::activation() == |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 280 | softwareServer::Activation::Activations::Failed)) |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 281 | { |
| 282 | Activation::activation( |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 283 | softwareServer::Activation::Activations::Activating); |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 284 | } |
| 285 | } |
| 286 | return softwareServer::Activation::requestedActivation(value); |
| 287 | } |
| 288 | |
Saqib Khan | 4c1aec0 | 2017-07-06 11:46:13 -0500 | [diff] [blame] | 289 | uint8_t RedundancyPriority::priority(uint8_t value) |
| 290 | { |
Adriana Kobylak | b77551c | 2017-10-27 12:46:23 -0500 | [diff] [blame] | 291 | // Set the priority value so that the freePriority() function can order |
| 292 | // the versions by priority. |
| 293 | auto newPriority = softwareServer::RedundancyPriority::priority(value); |
Adriana Kobylak | bbcb7be | 2018-07-17 15:47:34 -0500 | [diff] [blame] | 294 | parent.parent.savePriority(parent.versionId, value); |
Adriana Kobylak | b77551c | 2017-10-27 12:46:23 -0500 | [diff] [blame] | 295 | parent.parent.freePriority(value, parent.versionId); |
| 296 | return newPriority; |
Saqib Khan | 4c1aec0 | 2017-07-06 11:46:13 -0500 | [diff] [blame] | 297 | } |
| 298 | |
Adriana Kobylak | b77551c | 2017-10-27 12:46:23 -0500 | [diff] [blame] | 299 | uint8_t RedundancyPriority::sdbusPriority(uint8_t value) |
Saqib Khan | f0382c3 | 2017-10-24 13:36:22 -0500 | [diff] [blame] | 300 | { |
Adriana Kobylak | bbcb7be | 2018-07-17 15:47:34 -0500 | [diff] [blame] | 301 | parent.parent.savePriority(parent.versionId, value); |
Adriana Kobylak | b77551c | 2017-10-27 12:46:23 -0500 | [diff] [blame] | 302 | return softwareServer::RedundancyPriority::priority(value); |
Saqib Khan | f0382c3 | 2017-10-24 13:36:22 -0500 | [diff] [blame] | 303 | } |
| 304 | |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 305 | void Activation::unitStateChange(sdbusplus::message::message& msg) |
| 306 | { |
Michael Tritz | 0edd4ad | 2017-07-26 14:27:42 -0500 | [diff] [blame] | 307 | if (softwareServer::Activation::activation() != |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 308 | softwareServer::Activation::Activations::Activating) |
Michael Tritz | 0edd4ad | 2017-07-26 14:27:42 -0500 | [diff] [blame] | 309 | { |
| 310 | return; |
| 311 | } |
| 312 | |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 313 | #ifdef HOST_BIOS_UPGRADE |
| 314 | auto purpose = parent.versions.find(versionId)->second->purpose(); |
| 315 | if (purpose == VersionPurpose::Host) |
| 316 | { |
| 317 | onStateChangesBios(msg); |
| 318 | return; |
| 319 | } |
| 320 | #endif |
| 321 | |
Adriana Kobylak | 3ce563a | 2018-06-06 16:41:15 -0500 | [diff] [blame] | 322 | onStateChanges(msg); |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 323 | |
| 324 | return; |
| 325 | } |
| 326 | |
Lei YU | 9053225 | 2018-05-24 11:15:24 +0800 | [diff] [blame] | 327 | #ifdef WANT_SIGNATURE_VERIFY |
| 328 | bool Activation::verifySignature(const fs::path& imageDir, |
| 329 | const fs::path& confDir) |
| 330 | { |
| 331 | using Signature = phosphor::software::image::Signature; |
| 332 | |
| 333 | Signature signature(imageDir, confDir); |
| 334 | |
| 335 | return signature.verify(); |
| 336 | } |
Lei YU | 9053225 | 2018-05-24 11:15:24 +0800 | [diff] [blame] | 337 | #endif |
| 338 | |
Saqib Khan | f37cefc | 2017-09-12 08:44:41 -0500 | [diff] [blame] | 339 | void ActivationBlocksTransition::enableRebootGuard() |
| 340 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 341 | info("BMC image activating - BMC reboots are disabled."); |
Saqib Khan | f37cefc | 2017-09-12 08:44:41 -0500 | [diff] [blame] | 342 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 343 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 344 | SYSTEMD_INTERFACE, "StartUnit"); |
Saqib Khan | f37cefc | 2017-09-12 08:44:41 -0500 | [diff] [blame] | 345 | method.append("reboot-guard-enable.service", "replace"); |
| 346 | bus.call_noreply(method); |
| 347 | } |
| 348 | |
| 349 | void ActivationBlocksTransition::disableRebootGuard() |
| 350 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 351 | info("BMC activation has ended - BMC reboots are re-enabled."); |
Saqib Khan | f37cefc | 2017-09-12 08:44:41 -0500 | [diff] [blame] | 352 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 353 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 354 | SYSTEMD_INTERFACE, "StartUnit"); |
Saqib Khan | f37cefc | 2017-09-12 08:44:41 -0500 | [diff] [blame] | 355 | method.append("reboot-guard-disable.service", "replace"); |
| 356 | bus.call_noreply(method); |
| 357 | } |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 358 | |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 359 | bool Activation::checkApplyTimeImmediate() |
| 360 | { |
| 361 | auto service = utils::getService(bus, applyTimeObjPath, applyTimeIntf); |
| 362 | if (service.empty()) |
| 363 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 364 | info("Error getting the service name for BMC image ApplyTime. " |
| 365 | "The BMC needs to be manually rebooted to complete the image " |
| 366 | "activation if needed immediately."); |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 367 | } |
| 368 | else |
| 369 | { |
| 370 | |
| 371 | auto method = bus.new_method_call(service.c_str(), applyTimeObjPath, |
| 372 | dbusPropIntf, "Get"); |
| 373 | method.append(applyTimeIntf, applyTimeProp); |
| 374 | |
| 375 | try |
| 376 | { |
| 377 | auto reply = bus.call(method); |
| 378 | |
Patrick Williams | 24048b5 | 2020-05-13 17:51:30 -0500 | [diff] [blame] | 379 | std::variant<std::string> result; |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 380 | reply.read(result); |
Patrick Williams | e883fb8 | 2020-05-13 11:38:55 -0500 | [diff] [blame] | 381 | auto applyTime = std::get<std::string>(result); |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 382 | if (applyTime == applyTimeImmediate) |
| 383 | { |
| 384 | return true; |
| 385 | } |
| 386 | } |
Patrick Williams | 4ce901c | 2021-09-02 09:34:45 -0500 | [diff] [blame] | 387 | catch (const sdbusplus::exception::exception& e) |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 388 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 389 | error("Error in getting ApplyTime: {ERROR}", "ERROR", e); |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 390 | } |
| 391 | } |
| 392 | return false; |
| 393 | } |
| 394 | |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 395 | #ifdef HOST_BIOS_UPGRADE |
| 396 | void Activation::flashWriteHost() |
| 397 | { |
| 398 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 399 | SYSTEMD_INTERFACE, "StartUnit"); |
| 400 | auto biosServiceFile = "obmc-flash-host-bios@" + versionId + ".service"; |
| 401 | method.append(biosServiceFile, "replace"); |
| 402 | try |
| 403 | { |
| 404 | auto reply = bus.call(method); |
| 405 | } |
Patrick Williams | 4ce901c | 2021-09-02 09:34:45 -0500 | [diff] [blame] | 406 | catch (const sdbusplus::exception::exception& e) |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 407 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 408 | error("Error in trying to upgrade Host Bios: {ERROR}", "ERROR", e); |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 409 | report<InternalFailure>(); |
| 410 | } |
| 411 | } |
| 412 | |
| 413 | void Activation::onStateChangesBios(sdbusplus::message::message& msg) |
| 414 | { |
| 415 | uint32_t newStateID{}; |
| 416 | sdbusplus::message::object_path newStateObjPath; |
| 417 | std::string newStateUnit{}; |
| 418 | std::string newStateResult{}; |
| 419 | |
| 420 | // Read the msg and populate each variable |
| 421 | msg.read(newStateID, newStateObjPath, newStateUnit, newStateResult); |
| 422 | |
| 423 | auto biosServiceFile = "obmc-flash-host-bios@" + versionId + ".service"; |
| 424 | |
| 425 | if (newStateUnit == biosServiceFile) |
| 426 | { |
| 427 | // unsubscribe to systemd signals |
| 428 | unsubscribeFromSystemdSignals(); |
| 429 | |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 430 | if (newStateResult == "done") |
| 431 | { |
| 432 | // Set activation progress to 100 |
| 433 | activationProgress->progress(100); |
| 434 | |
| 435 | // Set Activation value to active |
| 436 | activation(softwareServer::Activation::Activations::Active); |
| 437 | |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 438 | info("Bios upgrade completed successfully."); |
Lei YU | 16aa28a | 2021-05-07 10:17:30 +0800 | [diff] [blame] | 439 | parent.biosVersion->version( |
| 440 | parent.versions.find(versionId)->second->version()); |
Lei YU | 2586818 | 2021-05-14 14:50:51 +0800 | [diff] [blame] | 441 | |
| 442 | // Delete the uploaded activation |
Lei YU | 7d2fa14 | 2021-08-06 10:58:19 +0800 | [diff] [blame] | 443 | boost::asio::post(getIOContext(), [this]() { |
| 444 | this->parent.erase(this->versionId); |
Lei YU | 2586818 | 2021-05-14 14:50:51 +0800 | [diff] [blame] | 445 | }); |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 446 | } |
| 447 | else if (newStateResult == "failed") |
| 448 | { |
| 449 | // Set Activation value to Failed |
| 450 | activation(softwareServer::Activation::Activations::Failed); |
| 451 | |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 452 | error("Bios upgrade failed."); |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 453 | } |
| 454 | } |
| 455 | |
| 456 | return; |
| 457 | } |
| 458 | |
| 459 | #endif |
| 460 | |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 461 | void Activation::rebootBmc() |
| 462 | { |
| 463 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 464 | SYSTEMD_INTERFACE, "StartUnit"); |
| 465 | method.append("force-reboot.service", "replace"); |
| 466 | try |
| 467 | { |
| 468 | auto reply = bus.call(method); |
| 469 | } |
Patrick Williams | 4ce901c | 2021-09-02 09:34:45 -0500 | [diff] [blame] | 470 | catch (const sdbusplus::exception::exception& e) |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 471 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 472 | alert("Error in trying to reboot the BMC. The BMC needs to be manually " |
| 473 | "rebooted to complete the image activation. {ERROR}", |
| 474 | "ERROR", e); |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 475 | report<InternalFailure>(); |
| 476 | } |
| 477 | } |
| 478 | |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 479 | } // namespace updater |
| 480 | } // namespace software |
| 481 | } // namespace phosphor |