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