blob: 721e2cbef7a9b5dbc7dc9d41729db43ef24275b9 [file] [log] [blame]
Saqib Khanb0774702017-05-23 16:02:41 -05001#include "activation.hpp"
Gunnar Millsb0ce9962018-09-07 13:39:10 -05002
Lei YU1be8d502018-06-20 11:48:36 +08003#include "images.hpp"
Saqib Khan4c1aec02017-07-06 11:46:13 -05004#include "item_updater.hpp"
Miguel Gomez21dad042020-06-26 20:54:48 +00005#include "msl_verify.hpp"
Saqib Khan5d532672017-08-09 10:44:50 -05006#include "serialize.hpp"
Gunnar Millsb0ce9962018-09-07 13:39:10 -05007
Lei YU25868182021-05-14 14:50:51 +08008#include <boost/asio/io_context.hpp>
Lei YU7d2fa142021-08-06 10:58:19 +08009#include <boost/asio/post.hpp>
Jayashankar Padatha0135602019-04-22 16:22:58 +053010#include <phosphor-logging/elog-errors.hpp>
11#include <phosphor-logging/elog.hpp>
Patrick Williamsc9bb6422021-08-27 06:18:35 -050012#include <phosphor-logging/lg2.hpp>
Adriana Kobylakaea48f22018-07-10 10:20:56 -050013#include <sdbusplus/exception.hpp>
Jayashankar Padatha0135602019-04-22 16:22:58 +053014#include <xyz/openbmc_project/Common/error.hpp>
Miguel Gomez21dad042020-06-26 20:54:48 +000015#include <xyz/openbmc_project/Software/Version/error.hpp>
Saqib Khanb9da6632017-09-13 09:48:37 -050016
Jayanth Othayoth0e0c1272018-02-21 05:46:36 -060017#ifdef WANT_SIGNATURE_VERIFY
Jayanth Othayoth0e0c1272018-02-21 05:46:36 -060018#include "image_verify.hpp"
Jayanth Othayoth0e0c1272018-02-21 05:46:36 -060019#endif
20
Lei YU25868182021-05-14 14:50:51 +080021extern boost::asio::io_context& getIOContext();
22
Saqib Khanb0774702017-05-23 16:02:41 -050023namespace phosphor
24{
25namespace software
26{
27namespace updater
28{
29
30namespace softwareServer = sdbusplus::xyz::openbmc_project::Software::server;
31
Patrick Williamsc9bb6422021-08-27 06:18:35 -050032PHOSPHOR_LOG2_USING;
Saqib Khanb9da6632017-09-13 09:48:37 -050033using namespace phosphor::logging;
Jayanth Othayoth0e0c1272018-02-21 05:46:36 -060034using InternalFailure =
35 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Jayashankar Padatha0135602019-04-22 16:22:58 +053036
37#ifdef WANT_SIGNATURE_VERIFY
Jayanth Othayoth9a9d7c22018-03-28 10:05:26 -050038namespace control = sdbusplus::xyz::openbmc_project::Control::server;
Jayanth Othayoth0e0c1272018-02-21 05:46:36 -060039#endif
40
Michael Tritzbed88af2017-07-19 16:00:06 -050041void Activation::subscribeToSystemdSignals()
42{
Adriana Kobylak2285fe02018-02-27 15:36:59 -060043 auto method = this->bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
44 SYSTEMD_INTERFACE, "Subscribe");
Adriana Kobylakaea48f22018-07-10 10:20:56 -050045 try
46 {
47 this->bus.call_noreply(method);
48 }
Patrick Williams4ce901c2021-09-02 09:34:45 -050049 catch (const sdbusplus::exception::exception& e)
Adriana Kobylakaea48f22018-07-10 10:20:56 -050050 {
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 Williamsc9bb6422021-08-27 06:18:35 -050060 error("Error subscribing to systemd: {ERROR}", "ERROR", e);
Adriana Kobylakaea48f22018-07-10 10:20:56 -050061 }
62 }
Michael Tritzbed88af2017-07-19 16:00:06 -050063
64 return;
65}
66
Michael Tritzf2b5e0d2017-07-25 14:39:34 -050067void Activation::unsubscribeFromSystemdSignals()
68{
Adriana Kobylak2285fe02018-02-27 15:36:59 -060069 auto method = this->bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
70 SYSTEMD_INTERFACE, "Unsubscribe");
Jayashankar Padatha0135602019-04-22 16:22:58 +053071 try
72 {
73 this->bus.call_noreply(method);
74 }
Patrick Williams4ce901c2021-09-02 09:34:45 -050075 catch (const sdbusplus::exception::exception& e)
Jayashankar Padatha0135602019-04-22 16:22:58 +053076 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -050077 error("Error unsubscribing from systemd signals: {ERROR}", "ERROR", e);
Jayashankar Padatha0135602019-04-22 16:22:58 +053078 }
Michael Tritzf2b5e0d2017-07-25 14:39:34 -050079
80 return;
81}
82
Adriana Kobylak2285fe02018-02-27 15:36:59 -060083auto Activation::activation(Activations value) -> Activations
Saqib Khanb0774702017-05-23 16:02:41 -050084{
Adriana Kobylak8bd84c82018-01-24 14:19:24 -060085 if ((value != softwareServer::Activation::Activations::Active) &&
86 (value != softwareServer::Activation::Activations::Activating))
Saqib Khan4c1aec02017-07-06 11:46:13 -050087 {
88 redundancyPriority.reset(nullptr);
89 }
90
Saqib Khanb0774702017-05-23 16:02:41 -050091 if (value == softwareServer::Activation::Activations::Activating)
92 {
Lei YU7ab55e22021-05-19 13:26:53 +080093#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 Khemkae9f6c842020-01-14 14:32:39 -0800106
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 Gomez21dad042020-06-26 20:54:48 +0000130 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 Kobylakb824b2f2020-05-14 14:57:53 -0500148 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 Kobylaka6963592018-09-07 14:13:29 -0500162 parent.freeSpace(*this);
Lei YUa7853ee2018-05-23 11:13:12 +0800163
Adriana Kobylakb824b2f2020-05-14 14:57:53 -0500164 // Enable systemd signals
165 Activation::subscribeToSystemdSignals();
166
Lei YUa7853ee2018-05-23 11:13:12 +0800167 flashWrite();
168
Adriana Kobylak70f5bc02020-05-13 14:08:14 -0500169#if defined UBIFS_LAYOUT || defined MMC_LAYOUT
Lei YUa7853ee2018-05-23 11:13:12 +0800170
Adriana Kobylakb824b2f2020-05-14 14:57:53 -0500171 return softwareServer::Activation::activation(value);
Lei YUa7853ee2018-05-23 11:13:12 +0800172
Adriana Kobylak70f5bc02020-05-13 14:08:14 -0500173#else // STATIC_LAYOUT
Lei YUa7853ee2018-05-23 11:13:12 +0800174
Lei YUd8c9eea2021-12-16 16:08:30 +0800175 if (parent.runningImageSlot == 0)
176 {
177 // On primary, update it as before
178 onFlashWriteSuccess();
179 return softwareServer::Activation::activation(
180 softwareServer::Activation::Activations::Active);
181 }
182 // On secondary, wait for the service to complete
Lei YUa7853ee2018-05-23 11:13:12 +0800183#endif
Saqib Khanb0774702017-05-23 16:02:41 -0500184 }
185 else
186 {
187 activationBlocksTransition.reset(nullptr);
Michael Tritz0edd4ad2017-07-26 14:27:42 -0500188 activationProgress.reset(nullptr);
Saqib Khanb0774702017-05-23 16:02:41 -0500189 }
190 return softwareServer::Activation::activation(value);
191}
192
Adriana Kobylakb824b2f2020-05-14 14:57:53 -0500193void Activation::onFlashWriteSuccess()
194{
195 activationProgress->progress(100);
196
197 activationBlocksTransition.reset(nullptr);
198 activationProgress.reset(nullptr);
199
200 rwVolumeCreated = false;
201 roVolumeCreated = false;
202 ubootEnvVarsUpdated = false;
203 Activation::unsubscribeFromSystemdSignals();
204
Adriana Kobylak780220f2022-01-18 20:01:53 +0000205 auto flashId = parent.versions.find(versionId)->second->path();
206 storePurpose(flashId, parent.versions.find(versionId)->second->purpose());
Adriana Kobylakb824b2f2020-05-14 14:57:53 -0500207
208 if (!redundancyPriority)
209 {
210 redundancyPriority =
211 std::make_unique<RedundancyPriority>(bus, path, *this, 0);
212 }
213
214 // Remove version object from image manager
215 Activation::deleteImageManagerObject();
216
217 // Create active association
218 parent.createActiveAssociation(path);
219
220 // Create updateable association as this
221 // can be re-programmed.
222 parent.createUpdateableAssociation(path);
223
224 if (Activation::checkApplyTimeImmediate() == true)
225 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500226 info("Image Active and ApplyTime is immediate; rebooting BMC.");
Adriana Kobylakb824b2f2020-05-14 14:57:53 -0500227 Activation::rebootBmc();
228 }
229 else
230 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500231 info("BMC image ready; need reboot to get activated.");
Adriana Kobylakb824b2f2020-05-14 14:57:53 -0500232 }
233
234 activation(softwareServer::Activation::Activations::Active);
235}
236
Saqib Khanee13e832017-10-23 12:53:11 -0500237void Activation::deleteImageManagerObject()
238{
zamiseck0b1fd512021-12-02 10:56:51 -0600239 // Call the Delete object for <versionID> inside image_manager if the object
240 // has not already been deleted due to a successful update or Delete call
241 const std::string interface = std::string{VERSION_IFACE};
242 auto method = this->bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
243 MAPPER_BUSNAME, "GetObject");
244 method.append(path.c_str());
245 method.append(std::vector<std::string>({interface}));
246
247 std::map<std::string, std::vector<std::string>> response;
248
Adriana Kobylak3b6a4cd2018-12-10 13:45:09 -0600249 try
250 {
zamiseck0b1fd512021-12-02 10:56:51 -0600251 auto reply = bus.call(method);
252 reply.read(response);
253 auto it = response.find(VERSION_IFACE);
254 if (it != response.end())
255 {
256 auto deleteMethod = this->bus.new_method_call(
257 VERSION_BUSNAME, path.c_str(),
258 "xyz.openbmc_project.Object.Delete", "Delete");
259 try
260 {
261 bus.call_noreply(deleteMethod);
262 }
263 catch (const sdbusplus::exception::exception& e)
264 {
265 error(
266 "Error deleting image ({PATH}) from image manager: {ERROR}",
267 "PATH", path, "ERROR", e);
268 return;
269 }
270 }
Adriana Kobylak3b6a4cd2018-12-10 13:45:09 -0600271 }
Patrick Williams4ce901c2021-09-02 09:34:45 -0500272 catch (const sdbusplus::exception::exception& e)
Saqib Khanee13e832017-10-23 12:53:11 -0500273 {
zamiseck0b1fd512021-12-02 10:56:51 -0600274 error("Error in mapper method call for ({PATH}, {INTERFACE}: {ERROR}",
275 "ERROR", e, "PATH", path, "INTERFACE", interface);
Saqib Khanee13e832017-10-23 12:53:11 -0500276 }
zamiseck0b1fd512021-12-02 10:56:51 -0600277 return;
Saqib Khanee13e832017-10-23 12:53:11 -0500278}
279
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600280auto Activation::requestedActivation(RequestedActivations value)
281 -> RequestedActivations
Saqib Khanb0774702017-05-23 16:02:41 -0500282{
Michael Tritzbed88af2017-07-19 16:00:06 -0500283 rwVolumeCreated = false;
284 roVolumeCreated = false;
Adriana Kobylak166bdf32018-04-09 14:24:06 -0500285 ubootEnvVarsUpdated = false;
Michael Tritzbed88af2017-07-19 16:00:06 -0500286
Saqib Khanb0774702017-05-23 16:02:41 -0500287 if ((value == softwareServer::Activation::RequestedActivations::Active) &&
288 (softwareServer::Activation::requestedActivation() !=
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600289 softwareServer::Activation::RequestedActivations::Active))
Saqib Khanb0774702017-05-23 16:02:41 -0500290 {
291 if ((softwareServer::Activation::activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600292 softwareServer::Activation::Activations::Ready) ||
Saqib Khanb0774702017-05-23 16:02:41 -0500293 (softwareServer::Activation::activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600294 softwareServer::Activation::Activations::Failed))
Saqib Khanb0774702017-05-23 16:02:41 -0500295 {
296 Activation::activation(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600297 softwareServer::Activation::Activations::Activating);
Saqib Khanb0774702017-05-23 16:02:41 -0500298 }
299 }
300 return softwareServer::Activation::requestedActivation(value);
301}
302
Saqib Khan4c1aec02017-07-06 11:46:13 -0500303uint8_t RedundancyPriority::priority(uint8_t value)
304{
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500305 // Set the priority value so that the freePriority() function can order
306 // the versions by priority.
307 auto newPriority = softwareServer::RedundancyPriority::priority(value);
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500308 parent.parent.savePriority(parent.versionId, value);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500309 parent.parent.freePriority(value, parent.versionId);
310 return newPriority;
Saqib Khan4c1aec02017-07-06 11:46:13 -0500311}
312
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500313uint8_t RedundancyPriority::sdbusPriority(uint8_t value)
Saqib Khanf0382c32017-10-24 13:36:22 -0500314{
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500315 parent.parent.savePriority(parent.versionId, value);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500316 return softwareServer::RedundancyPriority::priority(value);
Saqib Khanf0382c32017-10-24 13:36:22 -0500317}
318
Michael Tritzbed88af2017-07-19 16:00:06 -0500319void Activation::unitStateChange(sdbusplus::message::message& msg)
320{
Michael Tritz0edd4ad2017-07-26 14:27:42 -0500321 if (softwareServer::Activation::activation() !=
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600322 softwareServer::Activation::Activations::Activating)
Michael Tritz0edd4ad2017-07-26 14:27:42 -0500323 {
324 return;
325 }
326
Vijay Khemkae9f6c842020-01-14 14:32:39 -0800327#ifdef HOST_BIOS_UPGRADE
328 auto purpose = parent.versions.find(versionId)->second->purpose();
329 if (purpose == VersionPurpose::Host)
330 {
331 onStateChangesBios(msg);
332 return;
333 }
334#endif
335
Adriana Kobylak3ce563a2018-06-06 16:41:15 -0500336 onStateChanges(msg);
Michael Tritzbed88af2017-07-19 16:00:06 -0500337
338 return;
339}
340
Lei YU90532252018-05-24 11:15:24 +0800341#ifdef WANT_SIGNATURE_VERIFY
342bool Activation::verifySignature(const fs::path& imageDir,
343 const fs::path& confDir)
344{
345 using Signature = phosphor::software::image::Signature;
346
347 Signature signature(imageDir, confDir);
348
349 return signature.verify();
350}
351
352void Activation::onVerifyFailed()
353{
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500354 error("Error occurred during image validation");
Lei YU90532252018-05-24 11:15:24 +0800355 report<InternalFailure>();
356}
357#endif
358
Saqib Khanf37cefc2017-09-12 08:44:41 -0500359void ActivationBlocksTransition::enableRebootGuard()
360{
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500361 info("BMC image activating - BMC reboots are disabled.");
Saqib Khanf37cefc2017-09-12 08:44:41 -0500362
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600363 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
364 SYSTEMD_INTERFACE, "StartUnit");
Saqib Khanf37cefc2017-09-12 08:44:41 -0500365 method.append("reboot-guard-enable.service", "replace");
366 bus.call_noreply(method);
367}
368
369void ActivationBlocksTransition::disableRebootGuard()
370{
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500371 info("BMC activation has ended - BMC reboots are re-enabled.");
Saqib Khanf37cefc2017-09-12 08:44:41 -0500372
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600373 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
374 SYSTEMD_INTERFACE, "StartUnit");
Saqib Khanf37cefc2017-09-12 08:44:41 -0500375 method.append("reboot-guard-disable.service", "replace");
376 bus.call_noreply(method);
377}
Michael Tritzbed88af2017-07-19 16:00:06 -0500378
Jayashankar Padatha0135602019-04-22 16:22:58 +0530379bool Activation::checkApplyTimeImmediate()
380{
381 auto service = utils::getService(bus, applyTimeObjPath, applyTimeIntf);
382 if (service.empty())
383 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500384 info("Error getting the service name for BMC image ApplyTime. "
385 "The BMC needs to be manually rebooted to complete the image "
386 "activation if needed immediately.");
Jayashankar Padatha0135602019-04-22 16:22:58 +0530387 }
388 else
389 {
390
391 auto method = bus.new_method_call(service.c_str(), applyTimeObjPath,
392 dbusPropIntf, "Get");
393 method.append(applyTimeIntf, applyTimeProp);
394
395 try
396 {
397 auto reply = bus.call(method);
398
Patrick Williams24048b52020-05-13 17:51:30 -0500399 std::variant<std::string> result;
Jayashankar Padatha0135602019-04-22 16:22:58 +0530400 reply.read(result);
Patrick Williamse883fb82020-05-13 11:38:55 -0500401 auto applyTime = std::get<std::string>(result);
Jayashankar Padatha0135602019-04-22 16:22:58 +0530402 if (applyTime == applyTimeImmediate)
403 {
404 return true;
405 }
406 }
Patrick Williams4ce901c2021-09-02 09:34:45 -0500407 catch (const sdbusplus::exception::exception& e)
Jayashankar Padatha0135602019-04-22 16:22:58 +0530408 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500409 error("Error in getting ApplyTime: {ERROR}", "ERROR", e);
Jayashankar Padatha0135602019-04-22 16:22:58 +0530410 }
411 }
412 return false;
413}
414
Vijay Khemkae9f6c842020-01-14 14:32:39 -0800415#ifdef HOST_BIOS_UPGRADE
416void Activation::flashWriteHost()
417{
418 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
419 SYSTEMD_INTERFACE, "StartUnit");
420 auto biosServiceFile = "obmc-flash-host-bios@" + versionId + ".service";
421 method.append(biosServiceFile, "replace");
422 try
423 {
424 auto reply = bus.call(method);
425 }
Patrick Williams4ce901c2021-09-02 09:34:45 -0500426 catch (const sdbusplus::exception::exception& e)
Vijay Khemkae9f6c842020-01-14 14:32:39 -0800427 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500428 error("Error in trying to upgrade Host Bios: {ERROR}", "ERROR", e);
Vijay Khemkae9f6c842020-01-14 14:32:39 -0800429 report<InternalFailure>();
430 }
431}
432
433void Activation::onStateChangesBios(sdbusplus::message::message& msg)
434{
435 uint32_t newStateID{};
436 sdbusplus::message::object_path newStateObjPath;
437 std::string newStateUnit{};
438 std::string newStateResult{};
439
440 // Read the msg and populate each variable
441 msg.read(newStateID, newStateObjPath, newStateUnit, newStateResult);
442
443 auto biosServiceFile = "obmc-flash-host-bios@" + versionId + ".service";
444
445 if (newStateUnit == biosServiceFile)
446 {
447 // unsubscribe to systemd signals
448 unsubscribeFromSystemdSignals();
449
Vijay Khemkae9f6c842020-01-14 14:32:39 -0800450 if (newStateResult == "done")
451 {
452 // Set activation progress to 100
453 activationProgress->progress(100);
454
455 // Set Activation value to active
456 activation(softwareServer::Activation::Activations::Active);
457
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500458 info("Bios upgrade completed successfully.");
Lei YU16aa28a2021-05-07 10:17:30 +0800459 parent.biosVersion->version(
460 parent.versions.find(versionId)->second->version());
Lei YU25868182021-05-14 14:50:51 +0800461
462 // Delete the uploaded activation
Lei YU7d2fa142021-08-06 10:58:19 +0800463 boost::asio::post(getIOContext(), [this]() {
464 this->parent.erase(this->versionId);
Lei YU25868182021-05-14 14:50:51 +0800465 });
Vijay Khemkae9f6c842020-01-14 14:32:39 -0800466 }
467 else if (newStateResult == "failed")
468 {
469 // Set Activation value to Failed
470 activation(softwareServer::Activation::Activations::Failed);
471
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500472 error("Bios upgrade failed.");
Vijay Khemkae9f6c842020-01-14 14:32:39 -0800473 }
474 }
475
476 return;
477}
478
479#endif
480
Jayashankar Padatha0135602019-04-22 16:22:58 +0530481void Activation::rebootBmc()
482{
483 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
484 SYSTEMD_INTERFACE, "StartUnit");
485 method.append("force-reboot.service", "replace");
486 try
487 {
488 auto reply = bus.call(method);
489 }
Patrick Williams4ce901c2021-09-02 09:34:45 -0500490 catch (const sdbusplus::exception::exception& e)
Jayashankar Padatha0135602019-04-22 16:22:58 +0530491 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500492 alert("Error in trying to reboot the BMC. The BMC needs to be manually "
493 "rebooted to complete the image activation. {ERROR}",
494 "ERROR", e);
Jayashankar Padatha0135602019-04-22 16:22:58 +0530495 report<InternalFailure>();
496 }
497}
498
Saqib Khanb0774702017-05-23 16:02:41 -0500499} // namespace updater
500} // namespace software
501} // namespace phosphor