blob: 84d1f93bc5b22444bfe84c9178f561b08d00b354 [file] [log] [blame]
Patrick Venture863b9242018-03-08 08:29:23 -08001/**
2 * Copyright 2017 Google Inc.
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 */
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070016#include "dbuspassive.hpp"
17
Patrick Ventureaadb30d2020-08-10 09:17:11 -070018#include "dbushelper_interface.hpp"
James Feist98b704e2019-06-03 16:24:53 -070019#include "dbuspassiveredundancy.hpp"
Patrick Ventureaadb30d2020-08-10 09:17:11 -070020#include "dbusutil.hpp"
James Feist0c8223b2019-05-08 15:33:33 -070021#include "util.hpp"
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070022
Patrick Venturea83a3ec2020-08-04 09:52:05 -070023#include <sdbusplus/bus.hpp>
24
Patrick Venture863b9242018-03-08 08:29:23 -080025#include <chrono>
26#include <cmath>
Patrick Venture0ef1faf2018-06-13 12:50:53 -070027#include <memory>
Patrick Venture863b9242018-03-08 08:29:23 -080028#include <mutex>
Patrick Venture0ef1faf2018-06-13 12:50:53 -070029#include <string>
James Feist1f802f52019-02-08 13:51:43 -080030#include <variant>
Patrick Venture863b9242018-03-08 08:29:23 -080031
Patrick Venturea0764872020-08-08 07:48:43 -070032namespace pid_control
33{
34
Patrick Venture563a3562018-10-30 09:31:26 -070035std::unique_ptr<ReadInterface> DbusPassive::createDbusPassive(
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070036 sdbusplus::bus::bus& bus, const std::string& type, const std::string& id,
Patrick Venture8729eb92020-08-10 10:38:44 -070037 std::unique_ptr<DbusHelperInterface> helper, const conf::SensorConfig* info,
James Feist98b704e2019-06-03 16:24:53 -070038 const std::shared_ptr<DbusPassiveRedundancy>& redundancy)
Patrick Venture0ef1faf2018-06-13 12:50:53 -070039{
40 if (helper == nullptr)
41 {
42 return nullptr;
43 }
Patrick Venture7af157b2018-10-30 11:24:40 -070044 if (!validType(type))
Patrick Venture0ef1faf2018-06-13 12:50:53 -070045 {
46 return nullptr;
47 }
48
Patrick Venture863b9242018-03-08 08:29:23 -080049 /* Need to get the scale and initial value */
James Feist9fa90c12019-01-11 15:35:22 -080050 auto tempBus = sdbusplus::bus::new_system();
Patrick Venturef8cb4642018-10-30 12:02:53 -070051
Patrick Venture863b9242018-03-08 08:29:23 -080052 /* service == busname */
Patrick Venture7af157b2018-10-30 11:24:40 -070053 std::string path = getSensorPath(type, id);
Patrick Venture34ddc902018-10-30 11:05:17 -070054
Patrick Venture863b9242018-03-08 08:29:23 -080055 struct SensorProperties settings;
Patrick Venturef8cb4642018-10-30 12:02:53 -070056 bool failed;
Patrick Venture863b9242018-03-08 08:29:23 -080057
Patrick Venturef8cb4642018-10-30 12:02:53 -070058 try
59 {
60 std::string service = helper->getService(tempBus, sensorintf, path);
61
62 helper->getProperties(tempBus, service, path, &settings);
63 failed = helper->thresholdsAsserted(tempBus, service, path);
64 }
65 catch (const std::exception& e)
66 {
67 return nullptr;
68 }
69
Patrick Venture6b9f5992019-09-10 09:18:28 -070070 /* if these values are zero, they're ignored. */
71 if (info->ignoreDbusMinMax)
72 {
73 settings.min = 0;
74 settings.max = 0;
75 }
76
Patrick Venture8729eb92020-08-10 10:38:44 -070077 return std::make_unique<DbusPassive>(bus, type, id, std::move(helper),
78 settings, failed, path, redundancy);
Patrick Venturef8cb4642018-10-30 12:02:53 -070079}
80
James Feist98b704e2019-06-03 16:24:53 -070081DbusPassive::DbusPassive(
82 sdbusplus::bus::bus& bus, const std::string& type, const std::string& id,
Patrick Venture8729eb92020-08-10 10:38:44 -070083 std::unique_ptr<DbusHelperInterface> helper,
84 const struct SensorProperties& settings, bool failed,
85 const std::string& path,
James Feist98b704e2019-06-03 16:24:53 -070086 const std::shared_ptr<DbusPassiveRedundancy>& redundancy) :
Patrick Venturef8cb4642018-10-30 12:02:53 -070087 ReadInterface(),
88 _bus(bus), _signal(bus, getMatch(type, id).c_str(), dbusHandleSignal, this),
Patrick Venture8729eb92020-08-10 10:38:44 -070089 _id(id), _helper(std::move(helper)), _failed(failed), path(path),
James Feist98b704e2019-06-03 16:24:53 -070090 redundancy(redundancy)
91
Patrick Venturef8cb4642018-10-30 12:02:53 -070092{
Patrick Venture863b9242018-03-08 08:29:23 -080093 _scale = settings.scale;
94 _value = settings.value * pow(10, _scale);
James Feist75eb7692019-02-25 12:50:02 -080095 _min = settings.min * pow(10, _scale);
96 _max = settings.max * pow(10, _scale);
Patrick Venture863b9242018-03-08 08:29:23 -080097 _updated = std::chrono::high_resolution_clock::now();
98}
99
100ReadReturn DbusPassive::read(void)
101{
102 std::lock_guard<std::mutex> guard(_lock);
103
Patrick Ventureda4a5dd2018-08-31 09:42:48 -0700104 struct ReadReturn r = {_value, _updated};
Patrick Venture863b9242018-03-08 08:29:23 -0800105
106 return r;
107}
108
109void DbusPassive::setValue(double value)
110{
111 std::lock_guard<std::mutex> guard(_lock);
112
113 _value = value;
114 _updated = std::chrono::high_resolution_clock::now();
115}
116
James Feist36b7d8e2018-10-05 15:39:01 -0700117bool DbusPassive::getFailed(void) const
118{
James Feist98b704e2019-06-03 16:24:53 -0700119 if (redundancy)
120 {
121 const std::set<std::string>& failures = redundancy->getFailed();
122 if (failures.find(path) != failures.end())
123 {
124 return true;
125 }
126 }
James Feist4b36f262020-07-07 16:56:41 -0700127
128 return _failed || !_functional;
James Feist36b7d8e2018-10-05 15:39:01 -0700129}
130
131void DbusPassive::setFailed(bool value)
132{
133 _failed = value;
134}
135
James Feist4b36f262020-07-07 16:56:41 -0700136void DbusPassive::setFunctional(bool value)
137{
138 _functional = value;
139}
140
Patrick Venture863b9242018-03-08 08:29:23 -0800141int64_t DbusPassive::getScale(void)
142{
143 return _scale;
144}
145
Patrick Venture563a3562018-10-30 09:31:26 -0700146std::string DbusPassive::getID(void)
Patrick Venture863b9242018-03-08 08:29:23 -0800147{
148 return _id;
149}
150
James Feist75eb7692019-02-25 12:50:02 -0800151double DbusPassive::getMax(void)
152{
153 return _max;
154}
155
156double DbusPassive::getMin(void)
157{
158 return _min;
159}
160
Patrick Venture7af157b2018-10-30 11:24:40 -0700161int handleSensorValue(sdbusplus::message::message& msg, DbusPassive* owner)
Patrick Venture863b9242018-03-08 08:29:23 -0800162{
Patrick Venture863b9242018-03-08 08:29:23 -0800163 std::string msgSensor;
James Feist1f802f52019-02-08 13:51:43 -0800164 std::map<std::string, std::variant<int64_t, double, bool>> msgData;
Patrick Ventured0c75662018-06-12 19:03:21 -0700165
166 msg.read(msgSensor, msgData);
Patrick Venture863b9242018-03-08 08:29:23 -0800167
168 if (msgSensor == "xyz.openbmc_project.Sensor.Value")
169 {
170 auto valPropMap = msgData.find("Value");
171 if (valPropMap != msgData.end())
172 {
James Feist1f802f52019-02-08 13:51:43 -0800173 double value =
174 std::visit(VariantToDoubleVisitor(), valPropMap->second);
Patrick Venture863b9242018-03-08 08:29:23 -0800175
James Feistc065cf12018-07-05 10:23:11 -0700176 value *= std::pow(10, owner->getScale());
Patrick Venture863b9242018-03-08 08:29:23 -0800177
James Feist75eb7692019-02-25 12:50:02 -0800178 scaleSensorReading(owner->getMin(), owner->getMax(), value);
179
Patrick Ventured0c75662018-06-12 19:03:21 -0700180 owner->setValue(value);
Patrick Venture863b9242018-03-08 08:29:23 -0800181 }
182 }
James Feist36b7d8e2018-10-05 15:39:01 -0700183 else if (msgSensor == "xyz.openbmc_project.Sensor.Threshold.Critical")
184 {
185 auto criticalAlarmLow = msgData.find("CriticalAlarmLow");
186 auto criticalAlarmHigh = msgData.find("CriticalAlarmHigh");
187 if (criticalAlarmHigh == msgData.end() &&
188 criticalAlarmLow == msgData.end())
189 {
190 return 0;
191 }
192
193 bool asserted = false;
194 if (criticalAlarmLow != msgData.end())
195 {
James Feist1f802f52019-02-08 13:51:43 -0800196 asserted = std::get<bool>(criticalAlarmLow->second);
James Feist36b7d8e2018-10-05 15:39:01 -0700197 }
198
199 // checking both as in theory you could de-assert one threshold and
200 // assert the other at the same moment
201 if (!asserted && criticalAlarmHigh != msgData.end())
202 {
James Feist1f802f52019-02-08 13:51:43 -0800203 asserted = std::get<bool>(criticalAlarmHigh->second);
James Feist36b7d8e2018-10-05 15:39:01 -0700204 }
205 owner->setFailed(asserted);
206 }
James Feist4b36f262020-07-07 16:56:41 -0700207 else if (msgSensor ==
208 "xyz.openbmc_project.State.Decorator.OperationalStatus")
209 {
210 auto functional = msgData.find("Functional");
211 if (functional == msgData.end())
212 {
213 return 0;
214 }
215 bool asserted = std::get<bool>(functional->second);
216 owner->setFunctional(asserted);
217 }
Patrick Venture863b9242018-03-08 08:29:23 -0800218
219 return 0;
220}
Patrick Ventured0c75662018-06-12 19:03:21 -0700221
Patrick Venture7af157b2018-10-30 11:24:40 -0700222int dbusHandleSignal(sd_bus_message* msg, void* usrData, sd_bus_error* err)
Patrick Ventured0c75662018-06-12 19:03:21 -0700223{
224 auto sdbpMsg = sdbusplus::message::message(msg);
225 DbusPassive* obj = static_cast<DbusPassive*>(usrData);
226
Patrick Venture7af157b2018-10-30 11:24:40 -0700227 return handleSensorValue(sdbpMsg, obj);
Patrick Ventured0c75662018-06-12 19:03:21 -0700228}
Patrick Venturea0764872020-08-08 07:48:43 -0700229
230} // namespace pid_control