blob: 2b435a25f4ddb0154d6c35fb45cff2e7ea301960 [file] [log] [blame]
Andrew Geisslere426b582020-05-28 12:40:55 -05001#include "config.h"
2
3#include "host_state_manager.hpp"
4
Andrew Geissler0d1c3f12021-07-27 16:21:01 -04005#include "host_check.hpp"
6
Matt Spinlerbbbc0162020-11-11 14:43:50 -06007#include <fmt/format.h>
Andrew Geissler131d04a2021-03-12 11:02:41 -06008#include <stdio.h>
Andrew Geisslere426b582020-05-28 12:40:55 -05009#include <systemd/sd-bus.h>
10
11#include <cereal/archives/json.hpp>
12#include <cereal/cereal.hpp>
13#include <cereal/types/string.hpp>
14#include <cereal/types/tuple.hpp>
15#include <cereal/types/vector.hpp>
16#include <phosphor-logging/elog-errors.hpp>
17#include <phosphor-logging/log.hpp>
18#include <sdbusplus/exception.hpp>
19#include <sdbusplus/server.hpp>
20#include <xyz/openbmc_project/Common/error.hpp>
21#include <xyz/openbmc_project/Control/Power/RestorePolicy/server.hpp>
22
Andrew Geissler131d04a2021-03-12 11:02:41 -060023#include <filesystem>
Andrew Geisslere426b582020-05-28 12:40:55 -050024#include <fstream>
Andrew Geissler36529022016-11-29 15:23:54 -060025#include <iostream>
Andrew Geissler0cd2eaf2016-12-07 10:50:13 -060026#include <map>
27#include <string>
Dhruvaraj Subhashchandran3f475242017-07-12 00:44:27 -050028
Vishwanatha Subbanna0a838732017-10-05 12:43:19 +053029// Register class version with Cereal
Andrew Geissler769a62f2019-12-06 13:36:08 -060030CEREAL_CLASS_VERSION(phosphor::state::manager::Host, CLASS_VERSION)
Andrew Geissler36529022016-11-29 15:23:54 -060031
32namespace phosphor
33{
34namespace state
35{
36namespace manager
37{
38
Andrew Geissler7b90a622017-08-08 11:41:08 -050039// When you see server:: or reboot:: you know we're referencing our base class
Andrew Geissler3e3b84b2016-12-02 15:46:17 -060040namespace server = sdbusplus::xyz::openbmc_project::State::server;
Andrew Geissler7b90a622017-08-08 11:41:08 -050041namespace reboot = sdbusplus::xyz::openbmc_project::Control::Boot::server;
Dhruvaraj Subhashchandrana3b8d7e2017-08-10 05:40:04 -050042namespace bootprogress = sdbusplus::xyz::openbmc_project::State::Boot::server;
43namespace osstatus =
44 sdbusplus::xyz::openbmc_project::State::OperatingSystem::server;
Andrew Geissler1e3bf942016-12-13 15:32:22 -060045using namespace phosphor::logging;
Dhruvaraj Subhashchandran3f475242017-07-12 00:44:27 -050046namespace fs = std::experimental::filesystem;
Anthony Wilson32c532e2018-10-25 21:56:07 -050047using sdbusplus::exception::SdBusError;
Andrew Geissler2f60aae2019-09-12 13:25:21 -050048using sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Andrew Geissler1e3bf942016-12-13 15:32:22 -060049
Andrew Geissler4f309e82017-05-24 15:18:01 -050050// host-shutdown notifies host of shutdown and that leads to host-stop being
51// called so initiate a host shutdown with the -shutdown target and consider the
52// host shut down when the -stop target is complete
53constexpr auto HOST_STATE_SOFT_POWEROFF_TGT = "obmc-host-shutdown@0.target";
Josh D. Kingca357922017-04-11 13:44:09 -050054constexpr auto HOST_STATE_POWEROFF_TGT = "obmc-host-stop@0.target";
55constexpr auto HOST_STATE_POWERON_TGT = "obmc-host-start@0.target";
Andrew Geissler969b2612018-03-29 10:16:51 -070056constexpr auto HOST_STATE_POWERON_MIN_TGT = "obmc-host-startmin@0.target";
Andrew Geisslera27a6e82017-07-27 16:44:43 -050057constexpr auto HOST_STATE_REBOOT_TGT = "obmc-host-reboot@0.target";
Andrew Geissler40dd6e72020-02-07 14:31:12 -060058constexpr auto HOST_STATE_WARM_REBOOT = "obmc-host-warm-reboot@0.target";
59constexpr auto HOST_STATE_FORCE_WARM_REBOOT =
60 "obmc-host-force-warm-reboot@0.target";
Andrew Geissler47b96122020-02-11 16:13:13 -060061constexpr auto HOST_STATE_DIAGNOSTIC_MODE =
62 "obmc-host-diagnostic-mode@0.target";
Andrew Geissler40dd6e72020-02-07 14:31:12 -060063
Josh D. Kingcc3fb5d2017-04-19 15:45:10 -050064constexpr auto HOST_STATE_QUIESCE_TGT = "obmc-host-quiesce@0.target";
Andrew Geissler4da7e002017-01-24 15:21:40 -060065
Josh D. King929ef702017-03-02 10:58:11 -060066constexpr auto ACTIVE_STATE = "active";
67constexpr auto ACTIVATING_STATE = "activating";
68
Andrew Geissler0cd2eaf2016-12-07 10:50:13 -060069/* Map a transition to it's systemd target */
Andrew Geissler58a18012018-01-19 19:36:05 -080070const std::map<server::Host::Transition, std::string> SYSTEMD_TARGET_TABLE = {
71 {server::Host::Transition::Off, HOST_STATE_SOFT_POWEROFF_TGT},
72 {server::Host::Transition::On, HOST_STATE_POWERON_TGT},
Andrew Geissler40dd6e72020-02-07 14:31:12 -060073 {server::Host::Transition::Reboot, HOST_STATE_REBOOT_TGT},
Andrew Geissler7fdad602020-06-22 13:46:16 -050074// Some systems do not support a warm reboot so just map the reboot
75// requests to our normal cold reboot in that case
76#if ENABLE_WARM_REBOOT
Andrew Geissler40dd6e72020-02-07 14:31:12 -060077 {server::Host::Transition::GracefulWarmReboot, HOST_STATE_WARM_REBOOT},
78 {server::Host::Transition::ForceWarmReboot, HOST_STATE_FORCE_WARM_REBOOT}};
Andrew Geissler7fdad602020-06-22 13:46:16 -050079#else
80 {server::Host::Transition::GracefulWarmReboot, HOST_STATE_REBOOT_TGT},
81 {server::Host::Transition::ForceWarmReboot, HOST_STATE_REBOOT_TGT}};
82#endif
Andrew Geissler0cd2eaf2016-12-07 10:50:13 -060083
Andrew Geissler58a18012018-01-19 19:36:05 -080084constexpr auto SYSTEMD_SERVICE = "org.freedesktop.systemd1";
85constexpr auto SYSTEMD_OBJ_PATH = "/org/freedesktop/systemd1";
Andrew Geissler0cd2eaf2016-12-07 10:50:13 -060086constexpr auto SYSTEMD_INTERFACE = "org.freedesktop.systemd1.Manager";
87
Josh D. King929ef702017-03-02 10:58:11 -060088constexpr auto SYSTEMD_PROPERTY_IFACE = "org.freedesktop.DBus.Properties";
89constexpr auto SYSTEMD_INTERFACE_UNIT = "org.freedesktop.systemd1.Unit";
90
Andrew Geissler4da7e002017-01-24 15:21:40 -060091void Host::subscribeToSystemdSignals()
92{
Andrew Geissler58a18012018-01-19 19:36:05 -080093 auto method = this->bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH,
94 SYSTEMD_INTERFACE, "Subscribe");
Andrew Geissler2f60aae2019-09-12 13:25:21 -050095 try
96 {
97 this->bus.call_noreply(method);
98 }
99 catch (const SdBusError& e)
100 {
101 log<level::ERR>("Failed to subscribe to systemd signals",
102 entry("ERR=%s", e.what()));
103 elog<InternalFailure>();
104 }
Andrew Geissler4da7e002017-01-24 15:21:40 -0600105 return;
106}
107
Andrew Geissleref3c1842016-12-01 12:33:09 -0600108void Host::determineInitialState()
109{
Andrew Geissleref3c1842016-12-01 12:33:09 -0600110
Andrew Geissler0d1c3f12021-07-27 16:21:01 -0400111 if (stateActive(HOST_STATE_POWERON_MIN_TGT) || isHostRunning())
Andrew Geissleref3c1842016-12-01 12:33:09 -0600112 {
Andrew Geissler1e3bf942016-12-13 15:32:22 -0600113 log<level::INFO>("Initial Host State will be Running",
114 entry("CURRENT_HOST_STATE=%s",
115 convertForMessage(HostState::Running).c_str()));
Andrew Geissler97924142017-01-24 16:10:18 -0600116 server::Host::currentHostState(HostState::Running);
117 server::Host::requestedHostTransition(Transition::On);
Andrew Geissleref3c1842016-12-01 12:33:09 -0600118 }
119 else
120 {
Andrew Geissler1e3bf942016-12-13 15:32:22 -0600121 log<level::INFO>("Initial Host State will be Off",
122 entry("CURRENT_HOST_STATE=%s",
123 convertForMessage(HostState::Off).c_str()));
Andrew Geissler97924142017-01-24 16:10:18 -0600124 server::Host::currentHostState(HostState::Off);
125 server::Host::requestedHostTransition(Transition::Off);
Andrew Geissleref3c1842016-12-01 12:33:09 -0600126 }
127
Andrew Geissler033fc3b2017-08-30 15:11:44 -0500128 if (!deserialize(HOST_STATE_PERSIST_PATH))
Dhruvaraj Subhashchandran3f475242017-07-12 00:44:27 -0500129 {
Andrew Geissler58a18012018-01-19 19:36:05 -0800130 // set to default value.
Dhruvaraj Subhashchandran3f475242017-07-12 00:44:27 -0500131 server::Host::requestedHostTransition(Transition::Off);
132 }
Andrew Geissleref3c1842016-12-01 12:33:09 -0600133
134 return;
135}
136
Andrew Geissler0cd2eaf2016-12-07 10:50:13 -0600137void Host::executeTransition(Transition tranReq)
138{
139 auto sysdUnit = SYSTEMD_TARGET_TABLE.find(tranReq)->second;
140
Andrew Geissler58a18012018-01-19 19:36:05 -0800141 auto method = this->bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH,
142 SYSTEMD_INTERFACE, "StartUnit");
Andrew Geissler0cd2eaf2016-12-07 10:50:13 -0600143
144 method.append(sysdUnit);
145 method.append("replace");
146
Andrew Geissler4da7e002017-01-24 15:21:40 -0600147 this->bus.call_noreply(method);
Andrew Geissler0cd2eaf2016-12-07 10:50:13 -0600148
149 return;
150}
151
Josh D. King929ef702017-03-02 10:58:11 -0600152bool Host::stateActive(const std::string& target)
153{
Patrick Williams2975e262020-05-13 18:01:09 -0500154 std::variant<std::string> currentState;
Josh D. King929ef702017-03-02 10:58:11 -0600155 sdbusplus::message::object_path unitTargetPath;
156
Andrew Geissler58a18012018-01-19 19:36:05 -0800157 auto method = this->bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH,
158 SYSTEMD_INTERFACE, "GetUnit");
Josh D. King929ef702017-03-02 10:58:11 -0600159
160 method.append(target);
Josh D. King929ef702017-03-02 10:58:11 -0600161
Anthony Wilson32c532e2018-10-25 21:56:07 -0500162 try
Josh D. King929ef702017-03-02 10:58:11 -0600163 {
Anthony Wilson32c532e2018-10-25 21:56:07 -0500164 auto result = this->bus.call(method);
165 result.read(unitTargetPath);
166 }
167 catch (const SdBusError& e)
168 {
169 log<level::ERR>("Error in GetUnit call", entry("ERROR=%s", e.what()));
Josh D. King929ef702017-03-02 10:58:11 -0600170 return false;
171 }
172
Andrew Geissler58a18012018-01-19 19:36:05 -0800173 method = this->bus.new_method_call(
174 SYSTEMD_SERVICE,
175 static_cast<const std::string&>(unitTargetPath).c_str(),
176 SYSTEMD_PROPERTY_IFACE, "Get");
Josh D. King929ef702017-03-02 10:58:11 -0600177
178 method.append(SYSTEMD_INTERFACE_UNIT, "ActiveState");
Josh D. King929ef702017-03-02 10:58:11 -0600179
Anthony Wilson32c532e2018-10-25 21:56:07 -0500180 try
Josh D. King929ef702017-03-02 10:58:11 -0600181 {
Anthony Wilson32c532e2018-10-25 21:56:07 -0500182 auto result = this->bus.call(method);
183 result.read(currentState);
184 }
185 catch (const SdBusError& e)
186 {
187 log<level::ERR>("Error in ActiveState Get",
188 entry("ERROR=%s", e.what()));
Josh D. King929ef702017-03-02 10:58:11 -0600189 return false;
190 }
191
Patrick Williams37413dc2020-05-13 11:29:54 -0500192 const auto& currentStateStr = std::get<std::string>(currentState);
William A. Kennington III7a0689a2018-11-12 17:19:33 -0800193 return currentStateStr == ACTIVE_STATE ||
194 currentStateStr == ACTIVATING_STATE;
Josh D. King929ef702017-03-02 10:58:11 -0600195}
196
Michael Tritz206a8332017-02-06 16:01:23 -0600197bool Host::isAutoReboot()
198{
Deepak Kodihalli3dd08a52017-07-25 07:34:44 -0500199 using namespace settings;
Michael Tritz206a8332017-02-06 16:01:23 -0600200
Andrew Geissler7f620832020-10-23 08:25:52 -0500201 /* The logic here is to first check the one-time AutoReboot setting.
202 * If this property is true (the default) then look at the persistent
203 * user setting in the non one-time object, otherwise honor the one-time
204 * setting and do not auto reboot.
205 */
206 auto methodOneTime = bus.new_method_call(
Andrew Geissler58a18012018-01-19 19:36:05 -0800207 settings.service(settings.autoReboot, autoRebootIntf).c_str(),
Andrew Geissler7f620832020-10-23 08:25:52 -0500208 settings.autoRebootOneTime.c_str(), SYSTEMD_PROPERTY_IFACE, "Get");
209 methodOneTime.append(autoRebootIntf, "AutoReboot");
210
211 auto methodUserSetting = bus.new_method_call(
212 settings.service(settings.autoReboot, autoRebootIntf).c_str(),
213 settings.autoReboot.c_str(), SYSTEMD_PROPERTY_IFACE, "Get");
214 methodUserSetting.append(autoRebootIntf, "AutoReboot");
Michael Tritz206a8332017-02-06 16:01:23 -0600215
Anthony Wilson32c532e2018-10-25 21:56:07 -0500216 try
Michael Tritz206a8332017-02-06 16:01:23 -0600217 {
Andrew Geissler7f620832020-10-23 08:25:52 -0500218 auto reply = bus.call(methodOneTime);
Patrick Williams2975e262020-05-13 18:01:09 -0500219 std::variant<bool> result;
Anthony Wilson32c532e2018-10-25 21:56:07 -0500220 reply.read(result);
Patrick Williams37413dc2020-05-13 11:29:54 -0500221 auto autoReboot = std::get<bool>(result);
Andrew Geissler7f620832020-10-23 08:25:52 -0500222
223 if (!autoReboot)
224 {
225 log<level::INFO>("Auto reboot (one-time) disabled");
226 return false;
227 }
228 else
229 {
230 // one-time is true so read the user setting
231 reply = bus.call(methodUserSetting);
232 reply.read(result);
233 autoReboot = std::get<bool>(result);
234 }
235
Anthony Wilson32c532e2018-10-25 21:56:07 -0500236 auto rebootCounterParam = reboot::RebootAttempts::attemptsLeft();
237
238 if (autoReboot)
Saqib Khancbe08d12017-03-10 01:29:20 -0600239 {
Anthony Wilson32c532e2018-10-25 21:56:07 -0500240 if (rebootCounterParam > 0)
241 {
242 // Reduce BOOTCOUNT by 1
243 log<level::INFO>("Auto reboot enabled, rebooting");
244 return true;
245 }
246 else if (rebootCounterParam == 0)
247 {
248 // Reset reboot counter and go to quiesce state
249 log<level::INFO>("Auto reboot enabled. "
250 "HOST BOOTCOUNT already set to 0.");
251 attemptsLeft(BOOT_COUNT_MAX_ALLOWED);
252 return false;
253 }
254 else
255 {
256 log<level::INFO>("Auto reboot enabled. "
257 "HOST BOOTCOUNT has an invalid value.");
258 return false;
259 }
Saqib Khand5ac6352017-04-04 09:53:59 -0500260 }
261 else
262 {
Anthony Wilson32c532e2018-10-25 21:56:07 -0500263 log<level::INFO>("Auto reboot disabled.");
Saqib Khancbe08d12017-03-10 01:29:20 -0600264 return false;
265 }
Michael Tritz206a8332017-02-06 16:01:23 -0600266 }
Anthony Wilson32c532e2018-10-25 21:56:07 -0500267 catch (const SdBusError& e)
Saqib Khand5ac6352017-04-04 09:53:59 -0500268 {
Anthony Wilson32c532e2018-10-25 21:56:07 -0500269 log<level::ERR>("Error in AutoReboot Get", entry("ERROR=%s", e.what()));
Saqib Khand5ac6352017-04-04 09:53:59 -0500270 return false;
271 }
Michael Tritz206a8332017-02-06 16:01:23 -0600272}
273
Andrew Geisslere4039a82020-02-11 15:51:59 -0600274void Host::sysStateChangeJobRemoved(sdbusplus::message::message& msg)
Andrew Geissler4da7e002017-01-24 15:21:40 -0600275{
Andrew Geissler58a18012018-01-19 19:36:05 -0800276 uint32_t newStateID{};
Andrew Geissler4da7e002017-01-24 15:21:40 -0600277 sdbusplus::message::object_path newStateObjPath;
278 std::string newStateUnit{};
279 std::string newStateResult{};
280
Andrew Geissler58a18012018-01-19 19:36:05 -0800281 // Read the msg and populate each variable
Patrick Williamsd22706f2017-05-04 05:42:49 -0500282 msg.read(newStateID, newStateObjPath, newStateUnit, newStateResult);
Andrew Geissler4da7e002017-01-24 15:21:40 -0600283
Andrew Geissler58a18012018-01-19 19:36:05 -0800284 if ((newStateUnit == HOST_STATE_POWEROFF_TGT) &&
Andrew Geissler969b2612018-03-29 10:16:51 -0700285 (newStateResult == "done") &&
286 (!stateActive(HOST_STATE_POWERON_MIN_TGT)))
Andrew Geissleref621162016-12-08 12:56:21 -0600287 {
Andrew Jeffery55b983e2017-04-19 11:11:26 +0930288 log<level::INFO>("Received signal that host is off");
Andrew Geissler4da7e002017-01-24 15:21:40 -0600289 this->currentHostState(server::Host::HostState::Off);
Dhruvaraj Subhashchandrana3b8d7e2017-08-10 05:40:04 -0500290 this->bootProgress(bootprogress::Progress::ProgressStages::Unspecified);
291 this->operatingSystemState(osstatus::Status::OSStatus::Inactive);
Andrew Geissleref621162016-12-08 12:56:21 -0600292 }
Andrew Geissler969b2612018-03-29 10:16:51 -0700293 else if ((newStateUnit == HOST_STATE_POWERON_MIN_TGT) &&
Andrew Geissler58a18012018-01-19 19:36:05 -0800294 (newStateResult == "done") &&
Andrew Geissler969b2612018-03-29 10:16:51 -0700295 (stateActive(HOST_STATE_POWERON_MIN_TGT)))
Andrew Geissler58a18012018-01-19 19:36:05 -0800296 {
297 log<level::INFO>("Received signal that host is running");
298 this->currentHostState(server::Host::HostState::Running);
Andrew Geissler131d04a2021-03-12 11:02:41 -0600299
300 // Remove temporary file which is utilized for scenarios where the
301 // BMC is rebooted while the host is still up.
302 // This file is used to indicate to host related systemd services
303 // that the host is already running and they should skip running.
304 // Once the host state is back to running we can clear this file.
305 auto size = std::snprintf(nullptr, 0, HOST_RUNNING_FILE, 0);
306 size++; // null
307 std::unique_ptr<char[]> hostFile(new char[size]);
308 std::snprintf(hostFile.get(), size, HOST_RUNNING_FILE, 0);
309 if (std::filesystem::exists(hostFile.get()))
310 {
311 std::filesystem::remove(hostFile.get());
312 }
Andrew Geissler58a18012018-01-19 19:36:05 -0800313 }
314 else if ((newStateUnit == HOST_STATE_QUIESCE_TGT) &&
Josh D. King29d025d2017-04-27 12:40:22 -0500315 (newStateResult == "done") &&
316 (stateActive(HOST_STATE_QUIESCE_TGT)))
Andrew Geissler58a18012018-01-19 19:36:05 -0800317 {
318 if (Host::isAutoReboot())
319 {
320 log<level::INFO>("Beginning reboot...");
321 Host::requestedHostTransition(server::Host::Transition::Reboot);
322 }
323 else
324 {
325 log<level::INFO>("Maintaining quiesce");
326 this->currentHostState(server::Host::HostState::Quiesced);
327 }
328 }
Andrew Geissleref621162016-12-08 12:56:21 -0600329}
330
Andrew Geissler47b96122020-02-11 16:13:13 -0600331void Host::sysStateChangeJobNew(sdbusplus::message::message& msg)
332{
333 uint32_t newStateID{};
334 sdbusplus::message::object_path newStateObjPath;
335 std::string newStateUnit{};
336
337 // Read the msg and populate each variable
338 msg.read(newStateID, newStateObjPath, newStateUnit);
339
340 if (newStateUnit == HOST_STATE_DIAGNOSTIC_MODE)
341 {
342 log<level::INFO>("Received signal that host is in diagnostice mode");
343 this->currentHostState(server::Host::HostState::DiagnosticMode);
344 }
345}
346
Andrew Geissler7b90a622017-08-08 11:41:08 -0500347uint32_t Host::decrementRebootCount()
348{
349 auto rebootCount = reboot::RebootAttempts::attemptsLeft();
Andrew Geissler58a18012018-01-19 19:36:05 -0800350 if (rebootCount > 0)
Andrew Geissler7b90a622017-08-08 11:41:08 -0500351 {
Andrew Geissler58a18012018-01-19 19:36:05 -0800352 return (reboot::RebootAttempts::attemptsLeft(rebootCount - 1));
Andrew Geissler7b90a622017-08-08 11:41:08 -0500353 }
354 return rebootCount;
355}
356
Andrew Geissler033fc3b2017-08-30 15:11:44 -0500357fs::path Host::serialize(const fs::path& dir)
358{
359 std::ofstream os(dir.c_str(), std::ios::binary);
360 cereal::JSONOutputArchive oarchive(os);
361 oarchive(*this);
362 return dir;
363}
364
365bool Host::deserialize(const fs::path& path)
366{
Jayanth Othayothe39f3792017-09-19 23:53:31 -0500367 try
Andrew Geissler033fc3b2017-08-30 15:11:44 -0500368 {
Jayanth Othayothe39f3792017-09-19 23:53:31 -0500369 if (fs::exists(path))
370 {
371 std::ifstream is(path.c_str(), std::ios::in | std::ios::binary);
372 cereal::JSONInputArchive iarchive(is);
373 iarchive(*this);
374 return true;
375 }
376 return false;
Andrew Geissler033fc3b2017-08-30 15:11:44 -0500377 }
Andrew Geissler58a18012018-01-19 19:36:05 -0800378 catch (cereal::Exception& e)
Jayanth Othayothe39f3792017-09-19 23:53:31 -0500379 {
380 log<level::ERR>(e.what());
381 fs::remove(path);
382 return false;
383 }
Andrew Geissler033fc3b2017-08-30 15:11:44 -0500384}
385
Andrew Geissleref3c1842016-12-01 12:33:09 -0600386Host::Transition Host::requestedHostTransition(Transition value)
387{
Matt Spinlerbbbc0162020-11-11 14:43:50 -0600388 log<level::INFO>(fmt::format("Host state transition request of {}",
389 convertForMessage(value))
390 .c_str());
Andrew Geissler7b90a622017-08-08 11:41:08 -0500391 // If this is not a power off request then we need to
392 // decrement the reboot counter. This code should
393 // never prevent a power on, it should just decrement
394 // the count to 0. The quiesce handling is where the
395 // check of this count will occur
Andrew Geissler58a18012018-01-19 19:36:05 -0800396 if (value != server::Host::Transition::Off)
Andrew Geissler7b90a622017-08-08 11:41:08 -0500397 {
398 decrementRebootCount();
399 }
400
Andrew Geisslera27a6e82017-07-27 16:44:43 -0500401 executeTransition(value);
Andrew Geissler7b90a622017-08-08 11:41:08 -0500402
Andrew Geissler58a18012018-01-19 19:36:05 -0800403 auto retVal = server::Host::requestedHostTransition(value);
Andrew Geissler033fc3b2017-08-30 15:11:44 -0500404 serialize();
Dhruvaraj Subhashchandran3f475242017-07-12 00:44:27 -0500405 return retVal;
Andrew Geissleref3c1842016-12-01 12:33:09 -0600406}
407
Dhruvaraj Subhashchandran4e6534f2017-09-19 06:13:20 -0500408Host::ProgressStages Host::bootProgress(ProgressStages value)
409{
410 auto retVal = bootprogress::Progress::bootProgress(value);
411 serialize();
412 return retVal;
413}
414
415Host::OSStatus Host::operatingSystemState(OSStatus value)
416{
417 auto retVal = osstatus::Status::operatingSystemState(value);
418 serialize();
419 return retVal;
420}
421
Andrew Geissleref3c1842016-12-01 12:33:09 -0600422Host::HostState Host::currentHostState(HostState value)
423{
Andrew Geissler58a18012018-01-19 19:36:05 -0800424 log<level::INFO>(
Matt Spinlerbbbc0162020-11-11 14:43:50 -0600425 fmt::format("Change to Host State: {}", convertForMessage(value))
426 .c_str());
Andrew Geissleref621162016-12-08 12:56:21 -0600427 return server::Host::currentHostState(value);
Andrew Geissleref3c1842016-12-01 12:33:09 -0600428}
429
Andrew Geissler36529022016-11-29 15:23:54 -0600430} // namespace manager
431} // namespace state
Andrew Geisslera965cf02018-08-31 08:37:05 -0700432} // namespace phosphor