blob: 48e3fa6b8b2bb56aa79bce82e5fd9f9986705220 [file] [log] [blame]
James Feist139cb572018-09-10 15:26:18 -07001/*
2// Copyright (c) 2017 Intel 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
17#include <unistd.h>
18
19#include <HwmonTempSensor.hpp>
20#include <boost/algorithm/string/predicate.hpp>
21#include <boost/algorithm/string/replace.hpp>
22#include <boost/date_time/posix_time/posix_time.hpp>
23#include <iostream>
24#include <limits>
25#include <sdbusplus/asio/connection.hpp>
26#include <sdbusplus/asio/object_server.hpp>
27#include <string>
28
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070029static constexpr unsigned int sensorPollMs = 500;
30static constexpr unsigned int sensorScaleFactor = 1000;
31static constexpr size_t warnAfterErrorCount = 10;
James Feist139cb572018-09-10 15:26:18 -070032
33HwmonTempSensor::HwmonTempSensor(
34 const std::string &path, const std::string &objectType,
35 sdbusplus::asio::object_server &objectServer,
36 std::shared_ptr<sdbusplus::asio::connection> &conn,
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070037 boost::asio::io_service &io, const std::string &sensorName,
James Feist139cb572018-09-10 15:26:18 -070038 std::vector<thresholds::Threshold> &&_thresholds,
39 const std::string &sensorConfiguration) :
James Feist39132a62018-10-31 12:53:20 -070040 Sensor(boost::replace_all_copy(sensorName, " ", "_"), path,
41 std::move(_thresholds)),
42 objectType(objectType), configuration(sensorConfiguration),
43 objServer(objectServer), inputDev(io, open(path.c_str(), O_RDONLY)),
44 waitTimer(io), errCount(0),
James Feist139cb572018-09-10 15:26:18 -070045 // todo, get these from config
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070046 maxValue(127), minValue(-128)
James Feist139cb572018-09-10 15:26:18 -070047{
James Feistaf79dd32018-09-12 12:54:15 -070048 sensorInterface = objectServer.add_interface(
49 "/xyz/openbmc_project/sensors/temperature/" + name,
50 "xyz.openbmc_project.Sensor.Value");
51
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070052 if (thresholds::hasWarningInterface(thresholds))
James Feist139cb572018-09-10 15:26:18 -070053 {
James Feistaf79dd32018-09-12 12:54:15 -070054 thresholdInterfaceWarning = objectServer.add_interface(
James Feist139cb572018-09-10 15:26:18 -070055 "/xyz/openbmc_project/sensors/temperature/" + name,
56 "xyz.openbmc_project.Sensor.Threshold.Warning");
57 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070058 if (thresholds::hasCriticalInterface(thresholds))
James Feist139cb572018-09-10 15:26:18 -070059 {
James Feistaf79dd32018-09-12 12:54:15 -070060 thresholdInterfaceCritical = objectServer.add_interface(
James Feist139cb572018-09-10 15:26:18 -070061 "/xyz/openbmc_project/sensors/temperature/" + name,
62 "xyz.openbmc_project.Sensor.Threshold.Critical");
63 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070064 setInitialProperties(conn);
65 setupRead();
James Feist139cb572018-09-10 15:26:18 -070066}
67
68HwmonTempSensor::~HwmonTempSensor()
69{
70 // close the input dev to cancel async operations
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070071 inputDev.close();
72 waitTimer.cancel();
James Feistaf79dd32018-09-12 12:54:15 -070073 objServer.remove_interface(thresholdInterfaceWarning);
74 objServer.remove_interface(thresholdInterfaceCritical);
75 objServer.remove_interface(sensorInterface);
James Feist139cb572018-09-10 15:26:18 -070076}
77
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070078void HwmonTempSensor::setupRead(void)
James Feist139cb572018-09-10 15:26:18 -070079{
80 boost::asio::async_read_until(
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070081 inputDev, readBuf, '\n',
James Feist139cb572018-09-10 15:26:18 -070082 [&](const boost::system::error_code &ec,
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070083 std::size_t /*bytes_transfered*/) { handleResponse(ec); });
James Feist139cb572018-09-10 15:26:18 -070084}
85
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070086void HwmonTempSensor::handleResponse(const boost::system::error_code &err)
James Feist139cb572018-09-10 15:26:18 -070087{
88 if (err == boost::system::errc::bad_file_descriptor)
89 {
90 return; // we're being destroyed
91 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070092 std::istream responseStream(&readBuf);
James Feist139cb572018-09-10 15:26:18 -070093 if (!err)
94 {
95 std::string response;
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070096 std::getline(responseStream, response);
James Feist139cb572018-09-10 15:26:18 -070097 try
98 {
99 float nvalue = std::stof(response);
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700100 nvalue /= sensorScaleFactor;
Richard Marian Thomaiyarb7bd2a82018-11-06 20:25:38 +0530101 if (!isnan(overriddenValue))
102 {
103 nvalue = overriddenValue;
104 }
James Feist139cb572018-09-10 15:26:18 -0700105 if (nvalue != value)
106 {
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700107 updateValue(nvalue);
James Feist139cb572018-09-10 15:26:18 -0700108 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700109 errCount = 0;
James Feist139cb572018-09-10 15:26:18 -0700110 }
111 catch (const std::invalid_argument &)
112 {
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700113 errCount++;
James Feist139cb572018-09-10 15:26:18 -0700114 }
115 }
116 else
117 {
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700118 errCount++;
James Feist139cb572018-09-10 15:26:18 -0700119 }
James Feist39132a62018-10-31 12:53:20 -0700120
121 // only print once
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700122 if (errCount == warnAfterErrorCount)
James Feist139cb572018-09-10 15:26:18 -0700123 {
James Feist39132a62018-10-31 12:53:20 -0700124 std::cerr << "Failure to read sensor " << name << " at " << path
125 << " ec:" << err << "\n";
126 }
127
128 if (errCount >= warnAfterErrorCount)
129 {
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700130 updateValue(0);
James Feist139cb572018-09-10 15:26:18 -0700131 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700132 responseStream.clear();
133 inputDev.close();
James Feist139cb572018-09-10 15:26:18 -0700134 int fd = open(path.c_str(), O_RDONLY);
135 if (fd <= 0)
136 {
137 return; // we're no longer valid
138 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700139 inputDev.assign(fd);
140 waitTimer.expires_from_now(boost::posix_time::milliseconds(sensorPollMs));
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700141 waitTimer.async_wait([&](const boost::system::error_code &ec) {
James Feist139cb572018-09-10 15:26:18 -0700142 if (ec == boost::asio::error::operation_aborted)
143 {
144 return; // we're being canceled
145 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700146 setupRead();
James Feist139cb572018-09-10 15:26:18 -0700147 });
148}
149
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700150void HwmonTempSensor::checkThresholds(void)
James Feist139cb572018-09-10 15:26:18 -0700151{
James Feistaf79dd32018-09-12 12:54:15 -0700152 thresholds::checkThresholds(this);
James Feist139cb572018-09-10 15:26:18 -0700153}
154
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700155void HwmonTempSensor::updateValue(const double &newValue)
James Feist139cb572018-09-10 15:26:18 -0700156{
Richard Marian Thomaiyarb7bd2a82018-11-06 20:25:38 +0530157 // Indicate that it is internal set call
158 internalSet = true;
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700159 sensorInterface->set_property("Value", newValue);
Richard Marian Thomaiyarb7bd2a82018-11-06 20:25:38 +0530160 internalSet = false;
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700161 value = newValue;
162 checkThresholds();
James Feist139cb572018-09-10 15:26:18 -0700163}
164
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700165void HwmonTempSensor::setInitialProperties(
James Feist139cb572018-09-10 15:26:18 -0700166 std::shared_ptr<sdbusplus::asio::connection> &conn)
167{
168 // todo, get max and min from configuration
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700169 sensorInterface->register_property("MaxValue", maxValue);
170 sensorInterface->register_property("MinValue", minValue);
Richard Marian Thomaiyarb7bd2a82018-11-06 20:25:38 +0530171 sensorInterface->register_property(
172 "Value", value, [&](const double &newValue, double &oldValue) {
173 return setSensorValue(newValue, oldValue);
174 });
James Feist139cb572018-09-10 15:26:18 -0700175
176 for (auto &threshold : thresholds)
177 {
178 std::shared_ptr<sdbusplus::asio::dbus_interface> iface;
179 std::string level;
180 std::string alarm;
181 if (threshold.level == thresholds::Level::CRITICAL)
182 {
James Feistaf79dd32018-09-12 12:54:15 -0700183 iface = thresholdInterfaceCritical;
James Feist139cb572018-09-10 15:26:18 -0700184 if (threshold.direction == thresholds::Direction::HIGH)
185 {
186 level = "CriticalHigh";
187 alarm = "CriticalAlarmHigh";
188 }
189 else
190 {
191 level = "CriticalLow";
192 alarm = "CriticalAlarmLow";
193 }
194 }
195 else if (threshold.level == thresholds::Level::WARNING)
196 {
James Feistaf79dd32018-09-12 12:54:15 -0700197 iface = thresholdInterfaceWarning;
James Feist139cb572018-09-10 15:26:18 -0700198 if (threshold.direction == thresholds::Direction::HIGH)
199 {
200 level = "WarningHigh";
201 alarm = "WarningAlarmHigh";
202 }
203 else
204 {
205 level = "WarningLow";
206 alarm = "WarningAlarmLow";
207 }
208 }
209 else
210 {
211 std::cerr << "Unknown threshold level" << threshold.level << "\n";
212 continue;
213 }
214 if (!iface)
215 {
216 std::cout << "trying to set uninitialized interface\n";
217 continue;
218 }
219 iface->register_property(
220 level, threshold.value,
221 [&](const double &request, double &oldValue) {
222 oldValue = request; // todo, just let the config do this?
223 threshold.value = request;
224 thresholds::persistThreshold(configuration, objectType,
225 threshold, conn);
226 return 1;
227 });
228 iface->register_property(alarm, false);
229 }
James Feistaf79dd32018-09-12 12:54:15 -0700230 if (!sensorInterface->initialize())
James Feist139cb572018-09-10 15:26:18 -0700231 {
232 std::cerr << "error initializing value interface\n";
233 }
James Feistaf79dd32018-09-12 12:54:15 -0700234 if (thresholdInterfaceWarning && !thresholdInterfaceWarning->initialize())
James Feist139cb572018-09-10 15:26:18 -0700235 {
236 std::cerr << "error initializing warning threshold interface\n";
237 }
238
James Feistaf79dd32018-09-12 12:54:15 -0700239 if (thresholdInterfaceCritical && !thresholdInterfaceCritical->initialize())
James Feist139cb572018-09-10 15:26:18 -0700240 {
241 std::cerr << "error initializing critical threshold interface\n";
242 }
243}