blob: dd52fb6819e193204489463ef34bf1a6c89eecf1 [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
7#include <experimental/filesystem>
Saqib Khan7f80e0b2017-10-22 11:29:07 -05008#include <phosphor-logging/log.hpp>
Gunnar Mills74b657e2018-07-13 09:27:31 -05009#include <sdbusplus/exception.hpp>
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -050010
Jayanth Othayoth4016e522018-03-20 09:39:06 -050011#ifdef WANT_SIGNATURE_VERIFY
Jayanth Othayoth4016e522018-03-20 09:39:06 -050012#include "image_verify.hpp"
Gunnar Millsf6ed5892018-09-07 17:08:02 -050013
14#include <phosphor-logging/elog-errors.hpp>
15#include <phosphor-logging/elog.hpp>
16#include <sdbusplus/server.hpp>
17#include <xyz/openbmc_project/Common/error.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 Kobylak55f9e832017-05-14 16:13:00 -050027namespace fs = std::experimental::filesystem;
Adriana Kobylak99c8c0e2017-04-17 13:39:11 -050028namespace softwareServer = sdbusplus::xyz::openbmc_project::Software::server;
29
Saqib Khan7f80e0b2017-10-22 11:29:07 -050030using namespace phosphor::logging;
Gunnar Mills74b657e2018-07-13 09:27:31 -050031using sdbusplus::exception::SdBusError;
Saqib Khan7f80e0b2017-10-22 11:29:07 -050032
Jayanth Othayoth4016e522018-03-20 09:39:06 -050033#ifdef WANT_SIGNATURE_VERIFY
34using InternalFailure =
35 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Jayanth Othayoth11271fb2018-03-29 10:25:50 -050036
37// Field mode path and interface.
38constexpr auto FIELDMODE_PATH("/xyz/openbmc_project/software");
39constexpr auto FIELDMODE_INTERFACE("xyz.openbmc_project.Control.FieldMode");
Jayanth Othayoth4016e522018-03-20 09:39:06 -050040#endif
41
Adriana Kobylak70dcb632018-02-27 15:46:52 -060042constexpr auto SYSTEMD_SERVICE = "org.freedesktop.systemd1";
43constexpr auto SYSTEMD_OBJ_PATH = "/org/freedesktop/systemd1";
Michael Tritz9d25b602017-06-14 14:41:43 -050044
45void Activation::subscribeToSystemdSignals()
46{
Adriana Kobylak70dcb632018-02-27 15:46:52 -060047 auto method = this->bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH,
48 SYSTEMD_INTERFACE, "Subscribe");
Gunnar Mills74b657e2018-07-13 09:27:31 -050049 try
50 {
51 this->bus.call_noreply(method);
52 }
53 catch (const SdBusError& e)
54 {
55 if (e.name() != nullptr &&
56 strcmp("org.freedesktop.systemd1.AlreadySubscribed", e.name()) == 0)
57 {
58 // If an Activation attempt fails, the Unsubscribe method is not
59 // called. This may lead to an AlreadySubscribed error if the
60 // Activation is re-attempted.
61 }
62 else
63 {
64 log<level::ERR>("Error subscribing to systemd",
65 entry("ERROR=%s", e.what()));
66 }
67 }
Michael Tritz9d25b602017-06-14 14:41:43 -050068 return;
69}
70
Michael Tritz1cb127f2017-07-26 15:40:38 -050071void Activation::unsubscribeFromSystemdSignals()
72{
Adriana Kobylak70dcb632018-02-27 15:46:52 -060073 auto method = this->bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH,
74 SYSTEMD_INTERFACE, "Unsubscribe");
Michael Tritz1cb127f2017-07-26 15:40:38 -050075 this->bus.call_noreply(method);
76
77 return;
78}
79
Adriana Kobylak70dcb632018-02-27 15:46:52 -060080auto Activation::requestedActivation(RequestedActivations value)
81 -> RequestedActivations
Adriana Kobylak2fdb9312017-05-14 19:08:26 -050082{
83 if ((value == softwareServer::Activation::RequestedActivations::Active) &&
84 (softwareServer::Activation::requestedActivation() !=
Adriana Kobylak70dcb632018-02-27 15:46:52 -060085 softwareServer::Activation::RequestedActivations::Active))
Adriana Kobylak2fdb9312017-05-14 19:08:26 -050086 {
87 if ((softwareServer::Activation::activation() ==
Adriana Kobylak70dcb632018-02-27 15:46:52 -060088 softwareServer::Activation::Activations::Ready) ||
Adriana Kobylak2fdb9312017-05-14 19:08:26 -050089 (softwareServer::Activation::activation() ==
Adriana Kobylak70dcb632018-02-27 15:46:52 -060090 softwareServer::Activation::Activations::Failed))
Adriana Kobylak2fdb9312017-05-14 19:08:26 -050091 {
Lei YUa2e67162019-02-22 17:35:24 +080092 activation(softwareServer::Activation::Activations::Activating);
Adriana Kobylak2fdb9312017-05-14 19:08:26 -050093 }
94 }
Adriana Kobylak99c8c0e2017-04-17 13:39:11 -050095 return softwareServer::Activation::requestedActivation(value);
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -050096}
97
Saqib Khan7f80e0b2017-10-22 11:29:07 -050098void Activation::deleteImageManagerObject()
99{
100 // Get the Delete object for <versionID> inside image_manager
Lei YUc9caf862019-01-24 15:40:25 +0800101 constexpr auto versionServiceStr = "xyz.openbmc_project.Software.Version";
102 constexpr auto deleteInterface = "xyz.openbmc_project.Object.Delete";
103 std::string versionService;
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600104 auto method = this->bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
105 MAPPER_INTERFACE, "GetObject");
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500106
107 method.append(path);
Lei YUc9caf862019-01-24 15:40:25 +0800108 method.append(std::vector<std::string>({deleteInterface}));
Adriana Kobylakb8cb0cc2019-05-31 09:58:04 -0500109
110 std::map<std::string, std::vector<std::string>> mapperResponse;
111
112 try
113 {
114 auto mapperResponseMsg = bus.call(method);
115 mapperResponseMsg.read(mapperResponse);
116 if (mapperResponse.begin() == mapperResponse.end())
117 {
118 log<level::ERR>("ERROR in reading the mapper response",
119 entry("VERSIONPATH=%s", path.c_str()));
120 return;
121 }
122 }
123 catch (const SdBusError& e)
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500124 {
125 log<level::ERR>("Error in Get Delete Object",
Joseph Reynoldsafd0a452018-05-30 11:16:03 -0500126 entry("VERSIONPATH=%s", path.c_str()));
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500127 return;
128 }
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500129
Lei YUc9caf862019-01-24 15:40:25 +0800130 // We need to find the phosphor-software-manager's version service
131 // to invoke the delete interface
132 for (auto resp : mapperResponse)
133 {
134 if (resp.first.find(versionServiceStr) != std::string::npos)
135 {
136 versionService = resp.first;
137 }
138 }
139
140 if (versionService.empty())
141 {
142 log<level::ERR>("Error finding version service");
143 return;
144 }
145
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500146 // Call the Delete object for <versionID> inside image_manager
Lei YUc9caf862019-01-24 15:40:25 +0800147 method = this->bus.new_method_call(versionService.c_str(), path.c_str(),
148 deleteInterface, "Delete");
Adriana Kobylakab435df2018-07-16 11:37:19 -0500149 try
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500150 {
Adriana Kobylakb8cb0cc2019-05-31 09:58:04 -0500151 bus.call(method);
Adriana Kobylakab435df2018-07-16 11:37:19 -0500152 }
153 catch (const SdBusError& e)
154 {
155 if (e.name() != nullptr && strcmp("System.Error.ELOOP", e.name()) == 0)
156 {
157 // TODO: Error being tracked with openbmc/openbmc#3311
158 }
159 else
160 {
161 log<level::ERR>("Error performing call to Delete object path",
162 entry("ERROR=%s", e.what()),
163 entry("PATH=%s", path.c_str()));
164 }
Saqib Khan7f80e0b2017-10-22 11:29:07 -0500165 return;
166 }
167}
168
Saqib Khan2021b4c2017-06-07 14:37:36 -0500169uint8_t RedundancyPriority::priority(uint8_t value)
170{
Saqib Khanb8e7f312017-08-12 10:24:10 -0500171 parent.parent.freePriority(value, parent.versionId);
Saqib Khan2021b4c2017-06-07 14:37:36 -0500172 return softwareServer::RedundancyPriority::priority(value);
173}
174
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500175#ifdef WANT_SIGNATURE_VERIFY
Lei YU2b2d2292019-03-18 15:22:56 +0800176bool Activation::validateSignature(const std::string& pnorFileName)
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500177{
178 using Signature = openpower::software::image::Signature;
179 fs::path imageDir(IMG_DIR);
180
Lei YU2b2d2292019-03-18 15:22:56 +0800181 Signature signature(imageDir / versionId, pnorFileName,
182 PNOR_SIGNED_IMAGE_CONF_PATH);
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500183
184 // Validate the signed image.
185 if (signature.verify())
186 {
187 return true;
188 }
189 // Log error and continue activation process, if field mode disabled.
190 log<level::ERR>("Error occurred during image validation");
191 report<InternalFailure>();
192
193 try
194 {
195 if (!fieldModeEnabled())
196 {
197 return true;
198 }
199 }
200 catch (const InternalFailure& e)
201 {
202 report<InternalFailure>();
203 }
204 return false;
205}
206
207bool Activation::fieldModeEnabled()
208{
Lei YUe4994462019-03-14 14:41:53 +0800209 auto fieldModeSvc =
210 utils::getService(bus, FIELDMODE_PATH, FIELDMODE_INTERFACE);
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500211
212 auto method = bus.new_method_call(fieldModeSvc.c_str(), FIELDMODE_PATH,
213 "org.freedesktop.DBus.Properties", "Get");
214
215 method.append(FIELDMODE_INTERFACE, "FieldModeEnabled");
Adriana Kobylakb8cb0cc2019-05-31 09:58:04 -0500216
217 sdbusplus::message::variant<bool> fieldMode;
218
219 try
220 {
221 auto reply = bus.call(method);
222 reply.read(fieldMode);
223 return sdbusplus::message::variant_ns::get<bool>(fieldMode);
224 }
225 catch (const SdBusError& e)
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500226 {
227 log<level::ERR>("Error in fieldModeEnabled getValue");
228 elog<InternalFailure>();
229 }
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500230}
231
Jayanth Othayoth11271fb2018-03-29 10:25:50 -0500232#endif
233
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -0500234} // namespace updater
235} // namespace software
236} // namespace openpower