blob: 28f6bccba5dade2ab76c29cf9d65b65c3ecdb6a5 [file] [log] [blame]
Adriana Kobylak692b5552017-04-17 14:02:58 -05001#include "config.h"
Gunnar Millsf6ed5892018-09-07 17:08:02 -05002
3#include "activation.hpp"
4
Saqib Khan81bac882017-06-08 12:17:01 -05005#include "item_updater.hpp"
Gunnar Millsf6ed5892018-09-07 17:08:02 -05006
Jayashankar Padath4d3d9122019-07-24 16:46:22 +05307#include <phosphor-logging/elog-errors.hpp>
8#include <phosphor-logging/elog.hpp>
Saqib Khan7f80e0b2017-10-22 11:29:07 -05009#include <phosphor-logging/log.hpp>
Gunnar Mills74b657e2018-07-13 09:27:31 -050010#include <sdbusplus/exception.hpp>
Jayashankar Padath4d3d9122019-07-24 16:46:22 +053011#include <sdbusplus/server.hpp>
12#include <xyz/openbmc_project/Common/error.hpp>
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -050013
Brad Bishop9f44c992020-11-06 14:48:46 -050014#include <filesystem>
Brad Bishop8facccf2020-11-04 09:44:58 -050015
Jayanth Othayoth4016e522018-03-20 09:39:06 -050016#ifdef WANT_SIGNATURE_VERIFY
Jayanth Othayoth4016e522018-03-20 09:39:06 -050017#include "image_verify.hpp"
Jayanth Othayoth4016e522018-03-20 09:39:06 -050018#endif
19
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -050020namespace openpower
21{
22namespace software
23{
24namespace updater
25{
26
Adriana Kobylak99c8c0e2017-04-17 13:39:11 -050027namespace softwareServer = sdbusplus::xyz::openbmc_project::Software::server;
28
Saqib Khan7f80e0b2017-10-22 11:29:07 -050029using namespace phosphor::logging;
Jayanth Othayoth4016e522018-03-20 09:39:06 -050030using InternalFailure =
31 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Jayanth Othayoth11271fb2018-03-29 10:25:50 -050032
Jayashankar Padath4d3d9122019-07-24 16:46:22 +053033#ifdef WANT_SIGNATURE_VERIFY
Jayanth Othayoth11271fb2018-03-29 10:25:50 -050034// Field mode path and interface.
35constexpr auto FIELDMODE_PATH("/xyz/openbmc_project/software");
36constexpr auto FIELDMODE_INTERFACE("xyz.openbmc_project.Control.FieldMode");
Jayanth Othayoth4016e522018-03-20 09:39:06 -050037#endif
38
Adriana Kobylak70dcb632018-02-27 15:46:52 -060039constexpr auto SYSTEMD_SERVICE = "org.freedesktop.systemd1";
40constexpr auto SYSTEMD_OBJ_PATH = "/org/freedesktop/systemd1";
Michael Tritz9d25b602017-06-14 14:41:43 -050041
42void Activation::subscribeToSystemdSignals()
43{
Adriana Kobylak70dcb632018-02-27 15:46:52 -060044 auto method = this->bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH,
45 SYSTEMD_INTERFACE, "Subscribe");
Gunnar Mills74b657e2018-07-13 09:27:31 -050046 try
47 {
48 this->bus.call_noreply(method);
49 }
Patrick Williams0dea1992022-07-22 19:26:52 -050050 catch (const sdbusplus::exception_t& e)
Gunnar Mills74b657e2018-07-13 09:27:31 -050051 {
52 if (e.name() != nullptr &&
53 strcmp("org.freedesktop.systemd1.AlreadySubscribed", e.name()) == 0)
54 {
55 // If an Activation attempt fails, the Unsubscribe method is not
56 // called. This may lead to an AlreadySubscribed error if the
57 // Activation is re-attempted.
58 }
59 else
60 {
61 log<level::ERR>("Error subscribing to systemd",
62 entry("ERROR=%s", e.what()));
63 }
64 }
Michael Tritz9d25b602017-06-14 14:41:43 -050065 return;
66}
67
Michael Tritz1cb127f2017-07-26 15:40:38 -050068void Activation::unsubscribeFromSystemdSignals()
69{
Adriana Kobylak70dcb632018-02-27 15:46:52 -060070 auto method = this->bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH,
71 SYSTEMD_INTERFACE, "Unsubscribe");
Michael Tritz1cb127f2017-07-26 15:40:38 -050072 this->bus.call_noreply(method);
73
74 return;
75}
76
Adriana Kobylak70dcb632018-02-27 15:46:52 -060077auto Activation::requestedActivation(RequestedActivations value)
78 -> RequestedActivations
Adriana Kobylak2fdb9312017-05-14 19:08:26 -050079{
80 if ((value == softwareServer::Activation::RequestedActivations::Active) &&
81 (softwareServer::Activation::requestedActivation() !=
Adriana Kobylak70dcb632018-02-27 15:46:52 -060082 softwareServer::Activation::RequestedActivations::Active))
Adriana Kobylak2fdb9312017-05-14 19:08:26 -050083 {
84 if ((softwareServer::Activation::activation() ==
Adriana Kobylak70dcb632018-02-27 15:46:52 -060085 softwareServer::Activation::Activations::Ready) ||
Adriana Kobylak2fdb9312017-05-14 19:08:26 -050086 (softwareServer::Activation::activation() ==
Adriana Kobylak70dcb632018-02-27 15:46:52 -060087 softwareServer::Activation::Activations::Failed))
Adriana Kobylak2fdb9312017-05-14 19:08:26 -050088 {
Lei YUa2e67162019-02-22 17:35:24 +080089 activation(softwareServer::Activation::Activations::Activating);
Adriana Kobylak2fdb9312017-05-14 19:08:26 -050090 }
91 }
Adriana Kobylak99c8c0e2017-04-17 13:39:11 -050092 return softwareServer::Activation::requestedActivation(value);
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -050093}
94
Saqib Khan7f80e0b2017-10-22 11:29:07 -050095void Activation::deleteImageManagerObject()
96{
97 // Get the Delete object for <versionID> inside image_manager
Lei YUc9caf862019-01-24 15:40:25 +080098 constexpr auto versionServiceStr = "xyz.openbmc_project.Software.Version";
99 constexpr auto deleteInterface = "xyz.openbmc_project.Object.Delete";
100 std::string versionService;
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600101 auto method = this->bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
102 MAPPER_INTERFACE, "GetObject");
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500103
104 method.append(path);
Lei YUc9caf862019-01-24 15:40:25 +0800105 method.append(std::vector<std::string>({deleteInterface}));
Adriana Kobylakb8cb0cc2019-05-31 09:58:04 -0500106
107 std::map<std::string, std::vector<std::string>> mapperResponse;
108
109 try
110 {
111 auto mapperResponseMsg = bus.call(method);
112 mapperResponseMsg.read(mapperResponse);
113 if (mapperResponse.begin() == mapperResponse.end())
114 {
115 log<level::ERR>("ERROR in reading the mapper response",
116 entry("VERSIONPATH=%s", path.c_str()));
117 return;
118 }
119 }
Patrick Williams0dea1992022-07-22 19:26:52 -0500120 catch (const sdbusplus::exception_t& e)
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500121 {
122 log<level::ERR>("Error in Get Delete Object",
Joseph Reynoldsafd0a452018-05-30 11:16:03 -0500123 entry("VERSIONPATH=%s", path.c_str()));
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500124 return;
125 }
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500126
Lei YUc9caf862019-01-24 15:40:25 +0800127 // We need to find the phosphor-software-manager's version service
128 // to invoke the delete interface
129 for (auto resp : mapperResponse)
130 {
131 if (resp.first.find(versionServiceStr) != std::string::npos)
132 {
133 versionService = resp.first;
134 }
135 }
136
137 if (versionService.empty())
138 {
139 log<level::ERR>("Error finding version service");
140 return;
141 }
142
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500143 // Call the Delete object for <versionID> inside image_manager
Lei YUc9caf862019-01-24 15:40:25 +0800144 method = this->bus.new_method_call(versionService.c_str(), path.c_str(),
145 deleteInterface, "Delete");
Adriana Kobylakab435df2018-07-16 11:37:19 -0500146 try
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500147 {
Adriana Kobylakb8cb0cc2019-05-31 09:58:04 -0500148 bus.call(method);
Adriana Kobylakab435df2018-07-16 11:37:19 -0500149 }
Patrick Williams0dea1992022-07-22 19:26:52 -0500150 catch (const sdbusplus::exception_t& e)
Adriana Kobylakab435df2018-07-16 11:37:19 -0500151 {
152 if (e.name() != nullptr && strcmp("System.Error.ELOOP", e.name()) == 0)
153 {
154 // TODO: Error being tracked with openbmc/openbmc#3311
155 }
156 else
157 {
158 log<level::ERR>("Error performing call to Delete object path",
159 entry("ERROR=%s", e.what()),
160 entry("PATH=%s", path.c_str()));
161 }
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500162 return;
163 }
164}
165
Jayashankar Padath4d3d9122019-07-24 16:46:22 +0530166bool Activation::checkApplyTimeImmediate()
167{
168 auto service = utils::getService(bus, applyTimeObjPath, applyTimeIntf);
169 if (service.empty())
170 {
171 log<level::INFO>("Error getting the service name for Host image "
172 "ApplyTime. The Host needs to be manually rebooted to "
173 "complete the image activation if needed "
174 "immediately.");
175 }
176 else
177 {
Jayashankar Padath4d3d9122019-07-24 16:46:22 +0530178 auto method = bus.new_method_call(service.c_str(), applyTimeObjPath,
179 dbusPropIntf, "Get");
180 method.append(applyTimeIntf, applyTimeProp);
181
182 try
183 {
184 auto reply = bus.call(method);
185
Patrick Williams212102e2020-05-13 17:50:50 -0500186 std::variant<std::string> result;
Jayashankar Padath4d3d9122019-07-24 16:46:22 +0530187 reply.read(result);
Patrick Williams550f31b2020-05-13 11:15:24 -0500188 auto applyTime = std::get<std::string>(result);
Jayashankar Padath4d3d9122019-07-24 16:46:22 +0530189 if (applyTime == applyTimeImmediate)
190 {
191 return true;
192 }
193 }
Patrick Williams0dea1992022-07-22 19:26:52 -0500194 catch (const sdbusplus::exception_t& e)
Jayashankar Padath4d3d9122019-07-24 16:46:22 +0530195 {
196 log<level::ERR>("Error in getting ApplyTime",
197 entry("ERROR=%s", e.what()));
198 }
199 }
200 return false;
201}
202
203void Activation::rebootHost()
204{
205 auto service = utils::getService(bus, hostStateObjPath, hostStateIntf);
206 if (service.empty())
207 {
208 log<level::ALERT>("Error in getting the service name to reboot the "
209 "Host. The Host needs to be manually rebooted to "
210 "complete the image activation.");
211 }
212
213 auto method = bus.new_method_call(service.c_str(), hostStateObjPath,
214 dbusPropIntf, "Set");
Patrick Williams212102e2020-05-13 17:50:50 -0500215 std::variant<std::string> hostReboot = hostStateRebootVal;
Jayashankar Padath4d3d9122019-07-24 16:46:22 +0530216 method.append(hostStateIntf, hostStateRebootProp, hostReboot);
217
218 try
219 {
220 auto reply = bus.call(method);
221 }
Patrick Williams0dea1992022-07-22 19:26:52 -0500222 catch (const sdbusplus::exception_t& e)
Jayashankar Padath4d3d9122019-07-24 16:46:22 +0530223 {
224 log<level::ALERT>("Error in trying to reboot the Host. "
225 "The Host needs to be manually rebooted to complete "
226 "the image activation.",
227 entry("ERROR=%s", e.what()));
228 report<InternalFailure>();
229 }
230}
231
Saqib Khan2021b4c2017-06-07 14:37:36 -0500232uint8_t RedundancyPriority::priority(uint8_t value)
233{
Saqib Khanb8e7f312017-08-12 10:24:10 -0500234 parent.parent.freePriority(value, parent.versionId);
Saqib Khan2021b4c2017-06-07 14:37:36 -0500235 return softwareServer::RedundancyPriority::priority(value);
236}
237
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500238#ifdef WANT_SIGNATURE_VERIFY
Lei YU2b2d2292019-03-18 15:22:56 +0800239bool Activation::validateSignature(const std::string& pnorFileName)
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500240{
241 using Signature = openpower::software::image::Signature;
Brad Bishop9f44c992020-11-06 14:48:46 -0500242 std::filesystem::path imageDir(IMG_DIR);
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500243
Lei YU2b2d2292019-03-18 15:22:56 +0800244 Signature signature(imageDir / versionId, pnorFileName,
245 PNOR_SIGNED_IMAGE_CONF_PATH);
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500246
247 // Validate the signed image.
248 if (signature.verify())
249 {
250 return true;
251 }
252 // Log error and continue activation process, if field mode disabled.
253 log<level::ERR>("Error occurred during image validation");
254 report<InternalFailure>();
255
256 try
257 {
258 if (!fieldModeEnabled())
259 {
260 return true;
261 }
262 }
263 catch (const InternalFailure& e)
264 {
265 report<InternalFailure>();
266 }
267 return false;
268}
269
270bool Activation::fieldModeEnabled()
271{
Patrick Williams7fb6c342023-05-10 07:50:18 -0500272 auto fieldModeSvc = utils::getService(bus, FIELDMODE_PATH,
273 FIELDMODE_INTERFACE);
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500274
275 auto method = bus.new_method_call(fieldModeSvc.c_str(), FIELDMODE_PATH,
276 "org.freedesktop.DBus.Properties", "Get");
277
278 method.append(FIELDMODE_INTERFACE, "FieldModeEnabled");
Adriana Kobylakb8cb0cc2019-05-31 09:58:04 -0500279
Patrick Williams212102e2020-05-13 17:50:50 -0500280 std::variant<bool> fieldMode;
Adriana Kobylakb8cb0cc2019-05-31 09:58:04 -0500281
282 try
283 {
284 auto reply = bus.call(method);
285 reply.read(fieldMode);
Patrick Williams550f31b2020-05-13 11:15:24 -0500286 return std::get<bool>(fieldMode);
Adriana Kobylakb8cb0cc2019-05-31 09:58:04 -0500287 }
Patrick Williams0dea1992022-07-22 19:26:52 -0500288 catch (const sdbusplus::exception_t& e)
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500289 {
290 log<level::ERR>("Error in fieldModeEnabled getValue");
291 elog<InternalFailure>();
292 }
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500293}
294
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500295#endif
296
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -0500297} // namespace updater
298} // namespace software
299} // namespace openpower