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 | |
Patrick Williams | 1e9a5f1 | 2023-08-23 16:53:06 -0500 | [diff] [blame] | 30 | namespace softwareServer = sdbusplus::server::xyz::openbmc_project::software; |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 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 = |
Adriana Kobylak | ce82de5 | 2024-01-16 13:56:38 -0600 | [diff] [blame] | 35 | sdbusplus::error::xyz::openbmc_project::common::InternalFailure; |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 36 | |
| 37 | #ifdef WANT_SIGNATURE_VERIFY |
Patrick Williams | 1e9a5f1 | 2023-08-23 16:53:06 -0500 | [diff] [blame] | 38 | namespace control = sdbusplus::server::xyz::openbmc_project::control; |
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 | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 49 | catch (const sdbusplus::exception_t& 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 | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 75 | catch (const sdbusplus::exception_t& 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 | { |
Adriana Kobylak | ce82de5 | 2024-01-16 13:56:38 -0600 | [diff] [blame] | 97 | using InvalidSignatureErr = sdbusplus::error::xyz::openbmc_project:: |
| 98 | software::version::InvalidSignature; |
zamiseck | 3afdaaf | 2022-03-28 11:26:09 -0500 | [diff] [blame] | 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 | { |
Patrick Williams | fc33ba8 | 2024-08-16 15:19:54 -0400 | [diff] [blame] | 119 | activationProgress = |
| 120 | std::make_unique<ActivationProgress>(bus, path); |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 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); |
| 174 | } |
| 175 | return softwareServer::Activation::activation(value); |
| 176 | } |
| 177 | |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 178 | void Activation::onFlashWriteSuccess() |
| 179 | { |
| 180 | activationProgress->progress(100); |
| 181 | |
| 182 | activationBlocksTransition.reset(nullptr); |
| 183 | activationProgress.reset(nullptr); |
| 184 | |
| 185 | rwVolumeCreated = false; |
| 186 | roVolumeCreated = false; |
| 187 | ubootEnvVarsUpdated = false; |
| 188 | Activation::unsubscribeFromSystemdSignals(); |
| 189 | |
Adriana Kobylak | 780220f | 2022-01-18 20:01:53 +0000 | [diff] [blame] | 190 | auto flashId = parent.versions.find(versionId)->second->path(); |
| 191 | storePurpose(flashId, parent.versions.find(versionId)->second->purpose()); |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 192 | |
| 193 | if (!redundancyPriority) |
| 194 | { |
Patrick Williams | fc33ba8 | 2024-08-16 15:19:54 -0400 | [diff] [blame] | 195 | redundancyPriority = |
| 196 | std::make_unique<RedundancyPriority>(bus, path, *this, 0); |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 197 | } |
| 198 | |
Jagpal Singh Gill | 6d131aa | 2024-04-07 23:56:48 -0700 | [diff] [blame] | 199 | if (!parent.useUpdateDBusInterface) |
| 200 | { |
| 201 | // Remove version object from image manager |
| 202 | Activation::deleteImageManagerObject(); |
| 203 | } |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 204 | |
| 205 | // Create active association |
| 206 | parent.createActiveAssociation(path); |
| 207 | |
| 208 | // Create updateable association as this |
| 209 | // can be re-programmed. |
| 210 | parent.createUpdateableAssociation(path); |
| 211 | |
Pavithra Barithaya | 2d5704e | 2024-06-26 02:35:08 -0500 | [diff] [blame] | 212 | if (Activation::checkApplyTimeImmediate()) |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 213 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 214 | info("Image Active and ApplyTime is immediate; rebooting BMC."); |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 215 | Activation::rebootBmc(); |
| 216 | } |
| 217 | else |
| 218 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 219 | info("BMC image ready; need reboot to get activated."); |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 220 | } |
| 221 | |
Jagpal Singh Gill | 6d131aa | 2024-04-07 23:56:48 -0700 | [diff] [blame] | 222 | // Create Update Object for this version. |
| 223 | parent.createUpdateObject(versionId, path); |
| 224 | |
Adriana Kobylak | b824b2f | 2020-05-14 14:57:53 -0500 | [diff] [blame] | 225 | activation(softwareServer::Activation::Activations::Active); |
| 226 | } |
| 227 | |
Saqib Khan | ee13e83 | 2017-10-23 12:53:11 -0500 | [diff] [blame] | 228 | void Activation::deleteImageManagerObject() |
| 229 | { |
zamiseck | 0b1fd51 | 2021-12-02 10:56:51 -0600 | [diff] [blame] | 230 | // Call the Delete object for <versionID> inside image_manager if the object |
| 231 | // has not already been deleted due to a successful update or Delete call |
| 232 | const std::string interface = std::string{VERSION_IFACE}; |
| 233 | auto method = this->bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH, |
| 234 | MAPPER_BUSNAME, "GetObject"); |
| 235 | method.append(path.c_str()); |
| 236 | method.append(std::vector<std::string>({interface})); |
| 237 | |
| 238 | std::map<std::string, std::vector<std::string>> response; |
| 239 | |
Adriana Kobylak | 3b6a4cd | 2018-12-10 13:45:09 -0600 | [diff] [blame] | 240 | try |
| 241 | { |
zamiseck | 0b1fd51 | 2021-12-02 10:56:51 -0600 | [diff] [blame] | 242 | auto reply = bus.call(method); |
| 243 | reply.read(response); |
| 244 | auto it = response.find(VERSION_IFACE); |
| 245 | if (it != response.end()) |
| 246 | { |
| 247 | auto deleteMethod = this->bus.new_method_call( |
| 248 | VERSION_BUSNAME, path.c_str(), |
| 249 | "xyz.openbmc_project.Object.Delete", "Delete"); |
| 250 | try |
| 251 | { |
| 252 | bus.call_noreply(deleteMethod); |
| 253 | } |
Patrick Williams | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 254 | catch (const sdbusplus::exception_t& e) |
zamiseck | 0b1fd51 | 2021-12-02 10:56:51 -0600 | [diff] [blame] | 255 | { |
| 256 | error( |
| 257 | "Error deleting image ({PATH}) from image manager: {ERROR}", |
| 258 | "PATH", path, "ERROR", e); |
| 259 | return; |
| 260 | } |
| 261 | } |
Adriana Kobylak | 3b6a4cd | 2018-12-10 13:45:09 -0600 | [diff] [blame] | 262 | } |
Patrick Williams | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 263 | catch (const sdbusplus::exception_t& e) |
Saqib Khan | ee13e83 | 2017-10-23 12:53:11 -0500 | [diff] [blame] | 264 | { |
zamiseck | 0b1fd51 | 2021-12-02 10:56:51 -0600 | [diff] [blame] | 265 | error("Error in mapper method call for ({PATH}, {INTERFACE}: {ERROR}", |
| 266 | "ERROR", e, "PATH", path, "INTERFACE", interface); |
Saqib Khan | ee13e83 | 2017-10-23 12:53:11 -0500 | [diff] [blame] | 267 | } |
zamiseck | 0b1fd51 | 2021-12-02 10:56:51 -0600 | [diff] [blame] | 268 | return; |
Saqib Khan | ee13e83 | 2017-10-23 12:53:11 -0500 | [diff] [blame] | 269 | } |
| 270 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 271 | auto Activation::requestedActivation(RequestedActivations value) |
| 272 | -> RequestedActivations |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 273 | { |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 274 | rwVolumeCreated = false; |
| 275 | roVolumeCreated = false; |
Adriana Kobylak | 166bdf3 | 2018-04-09 14:24:06 -0500 | [diff] [blame] | 276 | ubootEnvVarsUpdated = false; |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 277 | |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 278 | if ((value == softwareServer::Activation::RequestedActivations::Active) && |
| 279 | (softwareServer::Activation::requestedActivation() != |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 280 | softwareServer::Activation::RequestedActivations::Active)) |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 281 | { |
| 282 | if ((softwareServer::Activation::activation() == |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 283 | softwareServer::Activation::Activations::Ready) || |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 284 | (softwareServer::Activation::activation() == |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 285 | softwareServer::Activation::Activations::Failed)) |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 286 | { |
| 287 | Activation::activation( |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 288 | softwareServer::Activation::Activations::Activating); |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 289 | } |
| 290 | } |
| 291 | return softwareServer::Activation::requestedActivation(value); |
| 292 | } |
| 293 | |
Saqib Khan | 4c1aec0 | 2017-07-06 11:46:13 -0500 | [diff] [blame] | 294 | uint8_t RedundancyPriority::priority(uint8_t value) |
| 295 | { |
Adriana Kobylak | b77551c | 2017-10-27 12:46:23 -0500 | [diff] [blame] | 296 | // Set the priority value so that the freePriority() function can order |
| 297 | // the versions by priority. |
| 298 | auto newPriority = softwareServer::RedundancyPriority::priority(value); |
Adriana Kobylak | bbcb7be | 2018-07-17 15:47:34 -0500 | [diff] [blame] | 299 | parent.parent.savePriority(parent.versionId, value); |
Adriana Kobylak | b77551c | 2017-10-27 12:46:23 -0500 | [diff] [blame] | 300 | parent.parent.freePriority(value, parent.versionId); |
| 301 | return newPriority; |
Saqib Khan | 4c1aec0 | 2017-07-06 11:46:13 -0500 | [diff] [blame] | 302 | } |
| 303 | |
Adriana Kobylak | b77551c | 2017-10-27 12:46:23 -0500 | [diff] [blame] | 304 | uint8_t RedundancyPriority::sdbusPriority(uint8_t value) |
Saqib Khan | f0382c3 | 2017-10-24 13:36:22 -0500 | [diff] [blame] | 305 | { |
Adriana Kobylak | bbcb7be | 2018-07-17 15:47:34 -0500 | [diff] [blame] | 306 | parent.parent.savePriority(parent.versionId, value); |
Adriana Kobylak | b77551c | 2017-10-27 12:46:23 -0500 | [diff] [blame] | 307 | return softwareServer::RedundancyPriority::priority(value); |
Saqib Khan | f0382c3 | 2017-10-24 13:36:22 -0500 | [diff] [blame] | 308 | } |
| 309 | |
Patrick Williams | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 310 | void Activation::unitStateChange(sdbusplus::message_t& msg) |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 311 | { |
Michael Tritz | 0edd4ad | 2017-07-26 14:27:42 -0500 | [diff] [blame] | 312 | if (softwareServer::Activation::activation() != |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 313 | softwareServer::Activation::Activations::Activating) |
Michael Tritz | 0edd4ad | 2017-07-26 14:27:42 -0500 | [diff] [blame] | 314 | { |
| 315 | return; |
| 316 | } |
| 317 | |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 318 | #ifdef HOST_BIOS_UPGRADE |
| 319 | auto purpose = parent.versions.find(versionId)->second->purpose(); |
| 320 | if (purpose == VersionPurpose::Host) |
| 321 | { |
| 322 | onStateChangesBios(msg); |
| 323 | return; |
| 324 | } |
| 325 | #endif |
| 326 | |
Adriana Kobylak | 3ce563a | 2018-06-06 16:41:15 -0500 | [diff] [blame] | 327 | onStateChanges(msg); |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 328 | |
| 329 | return; |
| 330 | } |
| 331 | |
Lei YU | 9053225 | 2018-05-24 11:15:24 +0800 | [diff] [blame] | 332 | #ifdef WANT_SIGNATURE_VERIFY |
| 333 | bool Activation::verifySignature(const fs::path& imageDir, |
| 334 | const fs::path& confDir) |
| 335 | { |
| 336 | using Signature = phosphor::software::image::Signature; |
| 337 | |
| 338 | Signature signature(imageDir, confDir); |
| 339 | |
| 340 | return signature.verify(); |
| 341 | } |
Lei YU | 9053225 | 2018-05-24 11:15:24 +0800 | [diff] [blame] | 342 | #endif |
| 343 | |
Saqib Khan | f37cefc | 2017-09-12 08:44:41 -0500 | [diff] [blame] | 344 | void ActivationBlocksTransition::enableRebootGuard() |
| 345 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 346 | info("BMC image activating - BMC reboots are disabled."); |
Saqib Khan | f37cefc | 2017-09-12 08:44:41 -0500 | [diff] [blame] | 347 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 348 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 349 | SYSTEMD_INTERFACE, "StartUnit"); |
Saqib Khan | f37cefc | 2017-09-12 08:44:41 -0500 | [diff] [blame] | 350 | method.append("reboot-guard-enable.service", "replace"); |
| 351 | bus.call_noreply(method); |
| 352 | } |
| 353 | |
| 354 | void ActivationBlocksTransition::disableRebootGuard() |
| 355 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 356 | info("BMC activation has ended - BMC reboots are re-enabled."); |
Saqib Khan | f37cefc | 2017-09-12 08:44:41 -0500 | [diff] [blame] | 357 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 358 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 359 | SYSTEMD_INTERFACE, "StartUnit"); |
Saqib Khan | f37cefc | 2017-09-12 08:44:41 -0500 | [diff] [blame] | 360 | method.append("reboot-guard-disable.service", "replace"); |
| 361 | bus.call_noreply(method); |
| 362 | } |
Michael Tritz | bed88af | 2017-07-19 16:00:06 -0500 | [diff] [blame] | 363 | |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 364 | bool Activation::checkApplyTimeImmediate() |
| 365 | { |
Jagpal Singh Gill | bb024eb | 2024-04-07 23:34:00 -0700 | [diff] [blame] | 366 | if (parent.useUpdateDBusInterface) |
| 367 | { |
| 368 | return (applyTime == ApplyTimeIntf::RequestedApplyTimes::Immediate); |
| 369 | } |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 370 | auto service = utils::getService(bus, applyTimeObjPath, applyTimeIntf); |
| 371 | if (service.empty()) |
| 372 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 373 | info("Error getting the service name for BMC image ApplyTime. " |
| 374 | "The BMC needs to be manually rebooted to complete the image " |
| 375 | "activation if needed immediately."); |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 376 | } |
| 377 | else |
| 378 | { |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 379 | auto method = bus.new_method_call(service.c_str(), applyTimeObjPath, |
| 380 | dbusPropIntf, "Get"); |
| 381 | method.append(applyTimeIntf, applyTimeProp); |
| 382 | |
| 383 | try |
| 384 | { |
| 385 | auto reply = bus.call(method); |
| 386 | |
Patrick Williams | 24048b5 | 2020-05-13 17:51:30 -0500 | [diff] [blame] | 387 | std::variant<std::string> result; |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 388 | reply.read(result); |
Patrick Williams | e883fb8 | 2020-05-13 11:38:55 -0500 | [diff] [blame] | 389 | auto applyTime = std::get<std::string>(result); |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 390 | if (applyTime == applyTimeImmediate) |
| 391 | { |
| 392 | return true; |
| 393 | } |
| 394 | } |
Patrick Williams | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 395 | catch (const sdbusplus::exception_t& e) |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 396 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 397 | error("Error in getting ApplyTime: {ERROR}", "ERROR", e); |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 398 | } |
| 399 | } |
| 400 | return false; |
| 401 | } |
| 402 | |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 403 | #ifdef HOST_BIOS_UPGRADE |
| 404 | void Activation::flashWriteHost() |
| 405 | { |
| 406 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 407 | SYSTEMD_INTERFACE, "StartUnit"); |
| 408 | auto biosServiceFile = "obmc-flash-host-bios@" + versionId + ".service"; |
| 409 | method.append(biosServiceFile, "replace"); |
| 410 | try |
| 411 | { |
| 412 | auto reply = bus.call(method); |
| 413 | } |
Patrick Williams | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 414 | catch (const sdbusplus::exception_t& e) |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 415 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 416 | error("Error in trying to upgrade Host Bios: {ERROR}", "ERROR", e); |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 417 | report<InternalFailure>(); |
| 418 | } |
| 419 | } |
| 420 | |
Patrick Williams | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 421 | void Activation::onStateChangesBios(sdbusplus::message_t& msg) |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 422 | { |
| 423 | uint32_t newStateID{}; |
| 424 | sdbusplus::message::object_path newStateObjPath; |
| 425 | std::string newStateUnit{}; |
| 426 | std::string newStateResult{}; |
| 427 | |
| 428 | // Read the msg and populate each variable |
| 429 | msg.read(newStateID, newStateObjPath, newStateUnit, newStateResult); |
| 430 | |
| 431 | auto biosServiceFile = "obmc-flash-host-bios@" + versionId + ".service"; |
| 432 | |
| 433 | if (newStateUnit == biosServiceFile) |
| 434 | { |
| 435 | // unsubscribe to systemd signals |
| 436 | unsubscribeFromSystemdSignals(); |
| 437 | |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 438 | if (newStateResult == "done") |
| 439 | { |
| 440 | // Set activation progress to 100 |
| 441 | activationProgress->progress(100); |
| 442 | |
| 443 | // Set Activation value to active |
| 444 | activation(softwareServer::Activation::Activations::Active); |
| 445 | |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 446 | info("Bios upgrade completed successfully."); |
Lei YU | 16aa28a | 2021-05-07 10:17:30 +0800 | [diff] [blame] | 447 | parent.biosVersion->version( |
| 448 | parent.versions.find(versionId)->second->version()); |
Lei YU | 2586818 | 2021-05-14 14:50:51 +0800 | [diff] [blame] | 449 | |
| 450 | // Delete the uploaded activation |
Lei YU | 7d2fa14 | 2021-08-06 10:58:19 +0800 | [diff] [blame] | 451 | boost::asio::post(getIOContext(), [this]() { |
| 452 | this->parent.erase(this->versionId); |
Lei YU | 2586818 | 2021-05-14 14:50:51 +0800 | [diff] [blame] | 453 | }); |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 454 | } |
| 455 | else if (newStateResult == "failed") |
| 456 | { |
| 457 | // Set Activation value to Failed |
| 458 | activation(softwareServer::Activation::Activations::Failed); |
| 459 | |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 460 | error("Bios upgrade failed."); |
Vijay Khemka | e9f6c84 | 2020-01-14 14:32:39 -0800 | [diff] [blame] | 461 | } |
| 462 | } |
| 463 | |
| 464 | return; |
| 465 | } |
| 466 | |
| 467 | #endif |
| 468 | |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 469 | void Activation::rebootBmc() |
| 470 | { |
| 471 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 472 | SYSTEMD_INTERFACE, "StartUnit"); |
| 473 | method.append("force-reboot.service", "replace"); |
| 474 | try |
| 475 | { |
| 476 | auto reply = bus.call(method); |
| 477 | } |
Patrick Williams | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 478 | catch (const sdbusplus::exception_t& e) |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 479 | { |
Patrick Williams | c9bb642 | 2021-08-27 06:18:35 -0500 | [diff] [blame] | 480 | alert("Error in trying to reboot the BMC. The BMC needs to be manually " |
| 481 | "rebooted to complete the image activation. {ERROR}", |
| 482 | "ERROR", e); |
Jayashankar Padath | a013560 | 2019-04-22 16:22:58 +0530 | [diff] [blame] | 483 | report<InternalFailure>(); |
| 484 | } |
| 485 | } |
| 486 | |
Saqib Khan | b077470 | 2017-05-23 16:02:41 -0500 | [diff] [blame] | 487 | } // namespace updater |
| 488 | } // namespace software |
| 489 | } // namespace phosphor |