blob: 9f778d505750294cb70a9b35e4ead8f032c99ff5 [file] [log] [blame]
Andrew Geisslere426b582020-05-28 12:40:55 -05001#include "systemd_target_signal.hpp"
2
Andrew Geissler234a3172019-08-09 14:30:02 -05003#include <phosphor-logging/elog-errors.hpp>
Andrew Geissler8ffdb262021-09-20 15:25:19 -05004#include <phosphor-logging/lg2.hpp>
Andrew Geisslere426b582020-05-28 12:40:55 -05005#include <sdbusplus/exception.hpp>
Andrew Geissler234a3172019-08-09 14:30:02 -05006#include <sdbusplus/server/manager.hpp>
7#include <sdeventplus/event.hpp>
Andrew Geissler234a3172019-08-09 14:30:02 -05008#include <xyz/openbmc_project/Common/error.hpp>
9
10namespace phosphor
11{
12namespace state
13{
14namespace manager
15{
16
17using phosphor::logging::elog;
Andrew Geissler8ffdb262021-09-20 15:25:19 -050018PHOSPHOR_LOG2_USING;
19
Andrew Geissler234a3172019-08-09 14:30:02 -050020using sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
21
Andrew Geissler8ffdb262021-09-20 15:25:19 -050022void SystemdTargetLogging::logError(const std::string& errorLog,
Andrew Geissler234a3172019-08-09 14:30:02 -050023 const std::string& result)
24{
25 auto method = this->bus.new_method_call(
26 "xyz.openbmc_project.Logging", "/xyz/openbmc_project/logging",
27 "xyz.openbmc_project.Logging.Create", "Create");
28 // Signature is ssa{ss}
Andrew Geissler8ffdb262021-09-20 15:25:19 -050029 method.append(errorLog);
Andrew Geissler234a3172019-08-09 14:30:02 -050030 method.append("xyz.openbmc_project.Logging.Entry.Level.Critical");
31 method.append(std::array<std::pair<std::string, std::string>, 1>(
32 {std::pair<std::string, std::string>({"SYSTEMD_RESULT", result})}));
33 try
34 {
35 this->bus.call_noreply(method);
36 }
Patrick Williams0a675212021-09-02 09:49:43 -050037 catch (const sdbusplus::exception::exception& e)
Andrew Geissler234a3172019-08-09 14:30:02 -050038 {
Andrew Geissler8ffdb262021-09-20 15:25:19 -050039 error("Failed to create systemd target error, error:{ERROR_MSG}, "
40 "result:{RESULT}, exception:{ERROR}",
41 "ERROR_MSG", errorLog, "RESULT", result, "ERROR", e);
Andrew Geissler234a3172019-08-09 14:30:02 -050042 }
43}
44
Andrew Geisslerf3870c62022-02-10 16:15:28 -060045const std::string SystemdTargetLogging::processError(const std::string& unit,
46 const std::string& result)
Andrew Geissler234a3172019-08-09 14:30:02 -050047{
48 auto targetEntry = this->targetData.find(unit);
49 if (targetEntry != this->targetData.end())
50 {
51 // Check if its result matches any of our monitored errors
52 if (std::find(targetEntry->second.errorsToMonitor.begin(),
53 targetEntry->second.errorsToMonitor.end(),
54 result) != targetEntry->second.errorsToMonitor.end())
55 {
Andrew Geisslerad65b2d2021-09-21 12:53:29 -050056 info(
57 "Monitored systemd unit has hit an error, unit:{UNIT}, result:{RESULT}",
58 "UNIT", unit, "RESULT", result);
Andrew Geisslerf3870c62022-02-10 16:15:28 -060059 return (targetEntry->second.errorToLog);
Andrew Geissler234a3172019-08-09 14:30:02 -050060 }
61 }
Andrew Geisslerf3870c62022-02-10 16:15:28 -060062
63 // Check if it's in our list of services to monitor
64 if (std::find(this->serviceData.begin(), this->serviceData.end(), unit) !=
65 this->serviceData.end())
66 {
67 if (result == "failed")
68 {
69 info(
70 "Monitored systemd service has hit an error, unit:{UNIT}, result:{RESULT}",
71 "UNIT", unit, "RESULT", result);
72 return (std::string{
73 "xyz.openbmc_project.State.Error.CriticalServiceFailure"});
74 }
75 }
76
77 return (std::string{});
Andrew Geissler234a3172019-08-09 14:30:02 -050078}
79
80void SystemdTargetLogging::systemdUnitChange(sdbusplus::message::message& msg)
81{
82 uint32_t id;
83 sdbusplus::message::object_path objPath;
84 std::string unit{};
85 std::string result{};
86
87 msg.read(id, objPath, unit, result);
88
89 // In most cases it will just be success, in which case just return
90 if (result != "done")
91 {
Andrew Geisslerf3870c62022-02-10 16:15:28 -060092 const std::string error = processError(unit, result);
Andrew Geissler234a3172019-08-09 14:30:02 -050093
94 // If this is a monitored error then log it
Andrew Geisslerf3870c62022-02-10 16:15:28 -060095 if (!error.empty())
Andrew Geissler234a3172019-08-09 14:30:02 -050096 {
Andrew Geisslerf3870c62022-02-10 16:15:28 -060097 logError(error, result);
Andrew Geissler234a3172019-08-09 14:30:02 -050098 }
99 }
100 return;
101}
102
Andrew Geissler38605ee2019-11-11 16:01:56 -0600103void SystemdTargetLogging::processNameChangeSignal(
104 sdbusplus::message::message& msg)
105{
106 std::string name; // well-known
107 std::string old_owner; // unique-name
108 std::string new_owner; // unique-name
109
110 msg.read(name, old_owner, new_owner);
111
112 // Looking for systemd to be on dbus so we can call it
113 if (name == "org.freedesktop.systemd1")
114 {
Andrew Geissler8ffdb262021-09-20 15:25:19 -0500115 info("org.freedesktop.systemd1 is now on dbus");
Andrew Geissler38605ee2019-11-11 16:01:56 -0600116 subscribeToSystemdSignals();
117 }
118 return;
119}
120
Andrew Geissler234a3172019-08-09 14:30:02 -0500121void SystemdTargetLogging::subscribeToSystemdSignals()
122{
123 auto method = this->bus.new_method_call(
124 "org.freedesktop.systemd1", "/org/freedesktop/systemd1",
125 "org.freedesktop.systemd1.Manager", "Subscribe");
126
127 try
128 {
129 this->bus.call(method);
130 }
Patrick Williams0a675212021-09-02 09:49:43 -0500131 catch (const sdbusplus::exception::exception& e)
Andrew Geissler234a3172019-08-09 14:30:02 -0500132 {
Andrew Geissler38605ee2019-11-11 16:01:56 -0600133 // If error indicates systemd is not on dbus yet then do nothing.
134 // The systemdNameChangeSignals callback will detect when it is on
135 // dbus and then call this function again
136 const std::string noDbus("org.freedesktop.DBus.Error.ServiceUnknown");
137 if (noDbus == e.name())
138 {
Andrew Geissler8ffdb262021-09-20 15:25:19 -0500139 info("org.freedesktop.systemd1 not on dbus yet");
Andrew Geissler38605ee2019-11-11 16:01:56 -0600140 }
141 else
142 {
Andrew Geissler8ffdb262021-09-20 15:25:19 -0500143 error("Failed to subscribe to systemd signals: {ERROR}", "ERROR",
144 e);
Andrew Geissler38605ee2019-11-11 16:01:56 -0600145 elog<InternalFailure>();
146 }
147 return;
Andrew Geissler234a3172019-08-09 14:30:02 -0500148 }
149
Andrew Geissler38605ee2019-11-11 16:01:56 -0600150 // Call destructor on match callback since application is now subscribed to
151 // systemd signals
152 this->systemdNameOwnedChangedSignal.~match();
153
Andrew Geissler234a3172019-08-09 14:30:02 -0500154 return;
155}
156
157} // namespace manager
158} // namespace state
159} // namespace phosphor