blob: fa6d32bebfbfe7fcfcf6b600c07829ccee73a000 [file] [log] [blame]
Matthew Barthbaeeb8f2021-05-13 16:03:54 -05001/**
2 * Copyright © 2021 IBM Corporation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#include "signal.hpp"
17
18#include "../manager.hpp"
19#include "action.hpp"
20#include "group.hpp"
21#include "handlers.hpp"
Matthew Barth54b5a242021-05-21 11:02:52 -050022#include "trigger_aliases.hpp"
Matthew Barthbaeeb8f2021-05-13 16:03:54 -050023
24#include <fmt/format.h>
25
26#include <nlohmann/json.hpp>
27#include <phosphor-logging/log.hpp>
28#include <sdbusplus/bus/match.hpp>
29
30#include <algorithm>
31#include <functional>
32#include <iterator>
33#include <memory>
34#include <numeric>
35#include <utility>
36#include <vector>
37
38namespace phosphor::fan::control::json::trigger::signal
39{
40
41using json = nlohmann::json;
42using namespace phosphor::logging;
43using namespace sdbusplus::bus::match;
44
45void subscribe(const std::string& match, SignalPkg&& signalPkg,
46 std::function<bool(SignalPkg&)> isSameSig, Manager* mgr)
47{
Matthew Barthbaeeb8f2021-05-13 16:03:54 -050048 auto& signalData = mgr->getSignal(match);
49 if (signalData.empty())
50 {
51 // Signal subscription doesnt exist, add signal package and subscribe
52 std::vector<SignalPkg> pkgs = {signalPkg};
Matthew Barthfac8a2f2021-06-10 15:50:36 -050053 std::vector<SignalPkg> dataPkgs =
54 std::vector<SignalPkg>(std::move(pkgs));
Matthew Barthbaeeb8f2021-05-13 16:03:54 -050055 std::unique_ptr<sdbusplus::server::match::match> ptrMatch = nullptr;
Matthew Barth50219f52021-05-18 11:20:36 -050056 // TODO(ibm-openbmc/#3195) - Filter signal subscriptions to objects
57 // owned by fan control?
Matthew Barthbaeeb8f2021-05-13 16:03:54 -050058 if (!match.empty())
59 {
60 // Subscribe to signal
61 ptrMatch = std::make_unique<sdbusplus::server::match::match>(
62 mgr->getBus(), match.c_str(),
63 std::bind(std::mem_fn(&Manager::handleSignal), &(*mgr),
Matthew Barthfac8a2f2021-06-10 15:50:36 -050064 std::placeholders::_1, dataPkgs));
Matthew Barthbaeeb8f2021-05-13 16:03:54 -050065 }
66 signalData.emplace_back(std::move(dataPkgs), std::move(ptrMatch));
67 }
68 else
69 {
70 // Signal subscription already exists
71 // Only a single signal data entry tied to each match is supported
Matthew Barthfac8a2f2021-06-10 15:50:36 -050072 auto& pkgs = std::get<std::vector<SignalPkg>>(signalData.front());
73 for (auto& pkg : pkgs)
Matthew Barthbaeeb8f2021-05-13 16:03:54 -050074 {
75 if (isSameSig(pkg))
76 {
77 // Same signal expected, add action to be run when signal
78 // received
79 auto& pkgActions = std::get<SignalActions>(signalPkg);
80 auto& actions = std::get<SignalActions>(pkg);
81 // Only one action is given on the signal package passed in
82 actions.push_back(pkgActions.front());
83 }
84 else
85 {
86 // Expected signal differs, add signal package
Matthew Barthfac8a2f2021-06-10 15:50:36 -050087 pkgs.emplace_back(std::move(signalPkg));
Matthew Barthbaeeb8f2021-05-13 16:03:54 -050088 }
89 }
90 }
91}
92
Matthew Barth737f11c2021-09-27 14:23:08 -050093void propertiesChanged(Manager* mgr, std::unique_ptr<ActionBase>& action,
94 const json&)
Matthew Barthbaeeb8f2021-05-13 16:03:54 -050095{
96 // Groups are optional, but a signal triggered event with no groups
97 // will do nothing since signals require a group
98 for (const auto& group : action->getGroups())
99 {
100 for (const auto& member : group.getMembers())
101 {
102 // Setup property changed signal handler on the group member's
103 // property
104 const auto match =
105 rules::propertiesChanged(member, group.getInterface());
106 SignalPkg signalPkg = {Handlers::propertiesChanged,
107 SignalObject(std::cref(member),
108 std::cref(group.getInterface()),
109 std::cref(group.getProperty())),
110 SignalActions({action})};
111 auto isSameSig = [&prop = group.getProperty()](SignalPkg& pkg) {
112 auto& obj = std::get<SignalObject>(pkg);
113 return prop == std::get<Prop>(obj);
114 };
115
116 subscribe(match, std::move(signalPkg), isSameSig, mgr);
117 }
118 }
119}
120
Matthew Barth737f11c2021-09-27 14:23:08 -0500121void interfacesAdded(Manager* mgr, std::unique_ptr<ActionBase>& action,
122 const json&)
Matthew Barth599afce2021-05-13 16:15:22 -0500123{
124 // Groups are optional, but a signal triggered event with no groups
125 // will do nothing since signals require a group
126 for (const auto& group : action->getGroups())
127 {
128 for (const auto& member : group.getMembers())
129 {
130 // Setup interfaces added signal handler on the group member
131 const auto match = rules::interfacesAdded(member);
132 SignalPkg signalPkg = {Handlers::interfacesAdded,
133 SignalObject(std::cref(member),
134 std::cref(group.getInterface()),
135 std::cref(group.getProperty())),
136 SignalActions({action})};
137 auto isSameSig = [&intf = group.getInterface()](SignalPkg& pkg) {
138 auto& obj = std::get<SignalObject>(pkg);
139 return intf == std::get<Intf>(obj);
140 };
141
142 subscribe(match, std::move(signalPkg), isSameSig, mgr);
143 }
144 }
145}
146
Matthew Barth737f11c2021-09-27 14:23:08 -0500147void interfacesRemoved(Manager* mgr, std::unique_ptr<ActionBase>& action,
148 const json&)
Matthew Barthc2691402021-05-13 16:20:32 -0500149{
150 // Groups are optional, but a signal triggered event with no groups
151 // will do nothing since signals require a group
152 for (const auto& group : action->getGroups())
153 {
154 for (const auto& member : group.getMembers())
155 {
156 // Setup interfaces added signal handler on the group member
157 const auto match = rules::interfacesRemoved(member);
158 SignalPkg signalPkg = {Handlers::interfacesRemoved,
159 SignalObject(std::cref(member),
160 std::cref(group.getInterface()),
161 std::cref(group.getProperty())),
162 SignalActions({action})};
163 auto isSameSig = [&intf = group.getInterface()](SignalPkg& pkg) {
164 auto& obj = std::get<SignalObject>(pkg);
165 return intf == std::get<Intf>(obj);
166 };
167
168 subscribe(match, std::move(signalPkg), isSameSig, mgr);
169 }
170 }
171}
172
Matthew Barth737f11c2021-09-27 14:23:08 -0500173void nameOwnerChanged(Manager* mgr, std::unique_ptr<ActionBase>& action,
174 const json&)
Matthew Barthb03f6bb2021-05-13 16:23:10 -0500175{
176 // Groups are optional, but a signal triggered event with no groups
177 // will do nothing since signals require a group
178 for (const auto& group : action->getGroups())
179 {
180 for (const auto& member : group.getMembers())
181 {
182 auto serv = Manager::getService(member, group.getInterface());
183 if (!serv.empty())
184 {
185 // Setup name owner changed signal handler on the group
186 // member's service
187 const auto match = rules::nameOwnerChanged(serv);
188 SignalPkg signalPkg = {
189 Handlers::nameOwnerChanged,
190 SignalObject(std::cref(member),
191 std::cref(group.getInterface()),
192 std::cref(group.getProperty())),
193 SignalActions({action})};
194 // If signal match already exists, then the service will be the
195 // same so add action to be run
196 auto isSameSig = [](SignalPkg& pkg) { return true; };
197
198 subscribe(match, std::move(signalPkg), isSameSig, mgr);
199 }
200 else
201 {
202 // Unable to construct nameOwnerChanged match string
203 // Path and/or interface configured does not exist on dbus yet?
204 // TODO How to handle this? Create timer to keep checking for
205 // service to appear? When to stop checking?
206 log<level::ERR>(
207 fmt::format(
Matthew Barth737f11c2021-09-27 14:23:08 -0500208 "Events will not be triggered by name owner changed"
209 "signals from service of path {}, interface {}",
210 member, group.getInterface())
Matthew Barthb03f6bb2021-05-13 16:23:10 -0500211 .c_str());
212 }
213 }
214 }
215}
216
Matthew Barth54b5a242021-05-21 11:02:52 -0500217enableTrigger triggerSignal(const json& jsonObj, const std::string& eventName,
Matthew Barth54b5a242021-05-21 11:02:52 -0500218 std::vector<std::unique_ptr<ActionBase>>& actions)
Matthew Barthbaeeb8f2021-05-13 16:03:54 -0500219{
220 auto subscriber = signals.end();
221 if (jsonObj.contains("signal"))
222 {
223 auto signal = jsonObj["signal"].get<std::string>();
224 std::transform(signal.begin(), signal.end(), signal.begin(), tolower);
225 subscriber = signals.find(signal);
226 }
227 if (subscriber == signals.end())
228 {
229 // Construct list of available signals
230 auto availSignals =
231 std::accumulate(std::next(signals.begin()), signals.end(),
232 signals.begin()->first, [](auto list, auto signal) {
233 return std::move(list) + ", " + signal.first;
234 });
235 auto msg =
236 fmt::format("Event '{}' requires a supported signal given to be "
237 "triggered by signal, available signals: {}",
238 eventName, availSignals);
239 log<level::ERR>(msg.c_str());
240 throw std::runtime_error(msg.c_str());
241 }
242
Matthew Barth737f11c2021-09-27 14:23:08 -0500243 return [subscriber = std::move(subscriber),
244 jsonObj](const std::string& eventName, Manager* mgr,
245 std::vector<std::unique_ptr<ActionBase>>& actions) {
Matthew Barth54b5a242021-05-21 11:02:52 -0500246 for (auto& action : actions)
247 {
248 // Call signal subscriber for each group in the action
Matthew Barth737f11c2021-09-27 14:23:08 -0500249 subscriber->second(mgr, action, jsonObj);
Matthew Barth54b5a242021-05-21 11:02:52 -0500250 }
251 };
Matthew Barthbaeeb8f2021-05-13 16:03:54 -0500252}
253
254} // namespace phosphor::fan::control::json::trigger::signal