blob: af56f2820811c12b84008a1b2bb3d9e784f31ae8 [file] [log] [blame]
Lei YU12c9f4c2019-09-11 15:08:15 +08001#include "config.h"
2
Lei YU01539e72019-07-31 10:57:38 +08003#include "activation.hpp"
4
Lei YU12c9f4c2019-09-11 15:08:15 +08005#include "utils.hpp"
6
7#include <cassert>
8#include <filesystem>
Lei YUd0bbfa92019-09-11 16:10:54 +08009#include <phosphor-logging/elog-errors.hpp>
10#include <phosphor-logging/log.hpp>
Lei YU12c9f4c2019-09-11 15:08:15 +080011
Lei YU01539e72019-07-31 10:57:38 +080012namespace phosphor
13{
14namespace software
15{
16namespace updater
17{
18
Lei YU12c9f4c2019-09-11 15:08:15 +080019constexpr auto SYSTEMD_BUSNAME = "org.freedesktop.systemd1";
20constexpr auto SYSTEMD_PATH = "/org/freedesktop/systemd1";
21constexpr auto SYSTEMD_INTERFACE = "org.freedesktop.systemd1.Manager";
22
23namespace fs = std::filesystem;
Lei YU01539e72019-07-31 10:57:38 +080024namespace softwareServer = sdbusplus::xyz::openbmc_project::Software::server;
25
Lei YUd0bbfa92019-09-11 16:10:54 +080026using namespace phosphor::logging;
27using sdbusplus::exception::SdBusError;
Lei YU12c9f4c2019-09-11 15:08:15 +080028using SoftwareActivation = softwareServer::Activation;
29
Lei YU01539e72019-07-31 10:57:38 +080030auto Activation::activation(Activations value) -> Activations
31{
Lei YU12c9f4c2019-09-11 15:08:15 +080032 if (value == Status::Activating)
33 {
Lei YUff83c2a2019-09-12 13:55:18 +080034 value = startActivation();
Lei YU12c9f4c2019-09-11 15:08:15 +080035 }
36 else
37 {
Lei YU81c67722019-09-11 16:47:29 +080038 activationBlocksTransition.reset();
Lei YU90c8a8b2019-09-11 17:20:03 +080039 activationProgress.reset();
Lei YU12c9f4c2019-09-11 15:08:15 +080040 }
41
42 return SoftwareActivation::activation(value);
Lei YU01539e72019-07-31 10:57:38 +080043}
44
45auto Activation::requestedActivation(RequestedActivations value)
46 -> RequestedActivations
47{
Lei YU12c9f4c2019-09-11 15:08:15 +080048 if ((value == SoftwareActivation::RequestedActivations::Active) &&
49 (SoftwareActivation::requestedActivation() !=
50 SoftwareActivation::RequestedActivations::Active))
51 {
Lei YU63f9e712019-10-12 15:16:55 +080052 // PSU image could be activated even when it's in active,
53 // e.g. in case a PSU is replaced and has a older image, it will be
54 // updated with the running PSU image that is stored in BMC.
55 if ((activation() == Status::Ready) ||
56 (activation() == Status::Failed) || activation() == Status::Active)
Lei YU12c9f4c2019-09-11 15:08:15 +080057 {
58 activation(Status::Activating);
59 }
60 }
61 return SoftwareActivation::requestedActivation(value);
62}
63
64void Activation::unitStateChange(sdbusplus::message::message& msg)
65{
66 uint32_t newStateID{};
67 sdbusplus::message::object_path newStateObjPath;
68 std::string newStateUnit{};
69 std::string newStateResult{};
70
71 // Read the msg and populate each variable
72 msg.read(newStateID, newStateObjPath, newStateUnit, newStateResult);
73
74 if (newStateUnit == psuUpdateUnit)
75 {
76 if (newStateResult == "done")
77 {
Lei YUff83c2a2019-09-12 13:55:18 +080078 onUpdateDone();
Lei YU12c9f4c2019-09-11 15:08:15 +080079 }
80 if (newStateResult == "failed" || newStateResult == "dependency")
81 {
Lei YUff83c2a2019-09-12 13:55:18 +080082 onUpdateFailed();
Lei YU12c9f4c2019-09-11 15:08:15 +080083 }
84 }
85}
86
Lei YUff83c2a2019-09-12 13:55:18 +080087bool Activation::doUpdate(const std::string& psuInventoryPath)
88{
Lei YU7f2a2152019-09-16 16:50:18 +080089 currentUpdatingPsu = psuInventoryPath;
Lei YUe8945ea2019-09-29 17:25:31 +080090 psuUpdateUnit = getUpdateService(currentUpdatingPsu);
Lei YUff83c2a2019-09-12 13:55:18 +080091 try
92 {
93 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
94 SYSTEMD_INTERFACE, "StartUnit");
95 method.append(psuUpdateUnit, "replace");
96 bus.call_noreply(method);
97 return true;
98 }
99 catch (const SdBusError& e)
100 {
101 log<level::ERR>("Error staring service", entry("ERROR=%s", e.what()));
102 onUpdateFailed();
103 return false;
104 }
105}
106
107bool Activation::doUpdate()
108{
109 // When the queue is empty, all updates are done
110 if (psuQueue.empty())
111 {
112 finishActivation();
113 return true;
114 }
115
116 // Do the update on a PSU
117 const auto& psu = psuQueue.front();
118 return doUpdate(psu);
119}
120
121void Activation::onUpdateDone()
122{
123 auto progress = activationProgress->progress() + progressStep;
124 activationProgress->progress(progress);
125
Lei YU7f2a2152019-09-16 16:50:18 +0800126 // Update the activation association
127 auto assocs = associations();
128 assocs.emplace_back(ACTIVATION_FWD_ASSOCIATION, ACTIVATION_REV_ASSOCIATION,
129 currentUpdatingPsu);
Lei YU7f2a2152019-09-16 16:50:18 +0800130 associations(assocs);
131
Lei YUffb36532019-10-15 13:55:24 +0800132 activationListener->onUpdateDone(versionId, currentUpdatingPsu);
133 currentUpdatingPsu.clear();
134
Lei YUff83c2a2019-09-12 13:55:18 +0800135 psuQueue.pop();
136 doUpdate(); // Update the next psu
137}
138
139void Activation::onUpdateFailed()
140{
141 // TODO: report an event
142 log<level::ERR>("Failed to udpate PSU",
143 entry("PSU=%s", psuQueue.front().c_str()));
144 std::queue<std::string>().swap(psuQueue); // Clear the queue
145 activation(Status::Failed);
146}
147
148Activation::Status Activation::startActivation()
Lei YU12c9f4c2019-09-11 15:08:15 +0800149{
Lei YU63f9e712019-10-12 15:16:55 +0800150 // Check if the activation has file path
151 if (path().empty())
152 {
153 log<level::WARNING>("No image for the activation, skipped",
154 entry("VERSION_ID=%s", versionId.c_str()));
155 return activation(); // Return the previous activation status
156 }
Lei YU90c8a8b2019-09-11 17:20:03 +0800157 if (!activationProgress)
158 {
Lei YU99301372019-09-29 16:27:12 +0800159 activationProgress = std::make_unique<ActivationProgress>(bus, objPath);
Lei YU90c8a8b2019-09-11 17:20:03 +0800160 }
Lei YU81c67722019-09-11 16:47:29 +0800161 if (!activationBlocksTransition)
162 {
163 activationBlocksTransition =
Lei YU99301372019-09-29 16:27:12 +0800164 std::make_unique<ActivationBlocksTransition>(bus, objPath);
Lei YU81c67722019-09-11 16:47:29 +0800165 }
166
Lei YU12c9f4c2019-09-11 15:08:15 +0800167 auto psuPaths = utils::getPSUInventoryPath(bus);
168 if (psuPaths.empty())
169 {
Lei YUff83c2a2019-09-12 13:55:18 +0800170 log<level::WARNING>("No PSU inventory found");
171 return Status::Failed;
Lei YU12c9f4c2019-09-11 15:08:15 +0800172 }
173
Lei YUff83c2a2019-09-12 13:55:18 +0800174 for (const auto& p : psuPaths)
175 {
Lei YU9edb7332019-09-19 14:46:19 +0800176 if (isCompatible(p))
177 {
Lei YU63f9e712019-10-12 15:16:55 +0800178 if (utils::isAssociated(p, associations()))
179 {
180 log<level::NOTICE>("PSU already running the image, skipping",
181 entry("PSU=%s", p.c_str()));
182 continue;
183 }
Lei YU9edb7332019-09-19 14:46:19 +0800184 psuQueue.push(p);
185 }
186 else
187 {
188 log<level::NOTICE>("PSU not compatible",
189 entry("PSU=%s", p.c_str()));
190 }
191 }
192
193 if (psuQueue.empty())
194 {
Lei YU63f9e712019-10-12 15:16:55 +0800195 log<level::WARNING>("No PSU compatible with the software");
196 return activation(); // Return the previous activation status
Lei YUff83c2a2019-09-12 13:55:18 +0800197 }
Lei YU12c9f4c2019-09-11 15:08:15 +0800198
Lei YUff83c2a2019-09-12 13:55:18 +0800199 // The progress to be increased for each successful update of PSU
200 // E.g. in case we have 4 PSUs:
201 // 1. Initial progrss is 10
202 // 2. Add 20 after each update is done, so we will see progress to be 30,
203 // 50, 70, 90
204 // 3. When all PSUs are updated, it will be 100 and the interface is
205 // removed.
206 progressStep = 80 / psuQueue.size();
207 if (doUpdate())
208 {
209 activationProgress->progress(10);
210 return Status::Activating;
211 }
212 else
213 {
214 return Status::Failed;
215 }
Lei YU12c9f4c2019-09-11 15:08:15 +0800216}
217
218void Activation::finishActivation()
219{
Lei YU2e0e2de2019-09-26 16:42:23 +0800220 storeImage();
Lei YU90c8a8b2019-09-11 17:20:03 +0800221 activationProgress->progress(100);
Lei YU81c67722019-09-11 16:47:29 +0800222
Lei YUd0bbfa92019-09-11 16:10:54 +0800223 deleteImageManagerObject();
Lei YU7f2a2152019-09-16 16:50:18 +0800224
Lei YU99301372019-09-29 16:27:12 +0800225 associationInterface->createActiveAssociation(objPath);
226 associationInterface->addFunctionalAssociation(objPath);
Lei YU7f2a2152019-09-16 16:50:18 +0800227
Lei YU1517f5f2019-10-14 16:44:42 +0800228 // Reset RequestedActivations to none so that it could be activated in
229 // future
230 requestedActivation(SoftwareActivation::RequestedActivations::None);
Lei YU12c9f4c2019-09-11 15:08:15 +0800231 activation(Status::Active);
Lei YU01539e72019-07-31 10:57:38 +0800232}
233
Lei YUd0bbfa92019-09-11 16:10:54 +0800234void Activation::deleteImageManagerObject()
235{
236 // Get the Delete object for <versionID> inside image_manager
237 constexpr auto versionServiceStr = "xyz.openbmc_project.Software.Version";
238 constexpr auto deleteInterface = "xyz.openbmc_project.Object.Delete";
239 std::string versionService;
Lei YU99301372019-09-29 16:27:12 +0800240 auto services = utils::getServices(bus, objPath.c_str(), deleteInterface);
Lei YUd0bbfa92019-09-11 16:10:54 +0800241
242 // We need to find the phosphor-version-software-manager's version service
243 // to invoke the delete interface
244 for (const auto& service : services)
245 {
246 if (service.find(versionServiceStr) != std::string::npos)
247 {
248 versionService = service;
249 break;
250 }
251 }
252 if (versionService.empty())
253 {
Lei YUe8945ea2019-09-29 17:25:31 +0800254 // When updating a stored image, there is no version object created by
255 // "xyz.openbmc_project.Software.Version" service, so skip it.
Lei YUd0bbfa92019-09-11 16:10:54 +0800256 return;
257 }
258
259 // Call the Delete object for <versionID> inside image_manager
Lei YU99301372019-09-29 16:27:12 +0800260 auto method = bus.new_method_call(versionService.c_str(), objPath.c_str(),
Lei YUd0bbfa92019-09-11 16:10:54 +0800261 deleteInterface, "Delete");
262 try
263 {
264 bus.call(method);
265 }
266 catch (const SdBusError& e)
267 {
268 log<level::ERR>("Error performing call to Delete object path",
269 entry("ERROR=%s", e.what()),
Lei YU99301372019-09-29 16:27:12 +0800270 entry("PATH=%s", objPath.c_str()));
Lei YUd0bbfa92019-09-11 16:10:54 +0800271 }
272}
273
Lei YU9edb7332019-09-19 14:46:19 +0800274bool Activation::isCompatible(const std::string& psuInventoryPath)
275{
276 auto service =
277 utils::getService(bus, psuInventoryPath.c_str(), ASSET_IFACE);
278 auto psuManufacturer = utils::getProperty<std::string>(
279 bus, service.c_str(), psuInventoryPath.c_str(), ASSET_IFACE,
280 MANUFACTURER);
281 auto psuModel = utils::getProperty<std::string>(
282 bus, service.c_str(), psuInventoryPath.c_str(), ASSET_IFACE, MODEL);
283 if (psuModel != model)
284 {
285 // The model shall match
286 return false;
287 }
288 if (!psuManufacturer.empty())
289 {
290 // If PSU inventory has manufacturer property, it shall match
291 return psuManufacturer == manufacturer;
292 }
293 return true;
294}
295
Lei YU2e0e2de2019-09-26 16:42:23 +0800296void Activation::storeImage()
297{
298 // Store image in persistent dir separated by model
299 // and only store the latest one by removing old ones
Lei YUe8945ea2019-09-29 17:25:31 +0800300 auto src = path();
Lei YU2e0e2de2019-09-26 16:42:23 +0800301 auto dst = fs::path(IMG_DIR_PERSIST) / model;
Lei YUe8945ea2019-09-29 17:25:31 +0800302 if (src == dst)
303 {
304 // This happens when updating an stored image, no need to store it again
305 return;
306 }
Lei YU2e0e2de2019-09-26 16:42:23 +0800307 try
308 {
309 fs::remove_all(dst);
310 fs::create_directories(dst);
311 fs::copy(src, dst);
312 path(dst.string()); // Update the FilePath interface
313 }
314 catch (const fs::filesystem_error& e)
315 {
316 log<level::ERR>("Error storing PSU image", entry("ERROR=%s", e.what()),
317 entry("SRC=%s", src.c_str()),
318 entry("DST=%s", dst.c_str()));
319 }
320}
321
Lei YUe8945ea2019-09-29 17:25:31 +0800322std::string Activation::getUpdateService(const std::string& psuInventoryPath)
323{
324 fs::path imagePath(path());
325
326 // The systemd unit shall be escaped
327 std::string args = psuInventoryPath;
328 args += "\\x20";
329 args += imagePath;
330 std::replace(args.begin(), args.end(), '/', '-');
331
332 std::string service = PSU_UPDATE_SERVICE;
333 auto p = service.find('@');
334 assert(p != std::string::npos);
335 service.insert(p + 1, args);
336 return service;
337}
338
Lei YU01539e72019-07-31 10:57:38 +0800339} // namespace updater
340} // namespace software
341} // namespace phosphor