blob: eda9a3baff2ee6d3aad2c4c75a38a6fc0138ace0 [file] [log] [blame]
James Feist139cb572018-09-10 15:26:18 -07001/*
2// Copyright (c) 2018 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 <CPUSensor.hpp>
20#include <Utils.hpp>
21#include <boost/algorithm/string/predicate.hpp>
22#include <boost/algorithm/string/replace.hpp>
23#include <boost/date_time/posix_time/posix_time.hpp>
24#include <iostream>
25#include <limits>
26#include <sdbusplus/asio/connection.hpp>
27#include <sdbusplus/asio/object_server.hpp>
28#include <string>
29
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070030static constexpr size_t warnAfterErrorCount = 10;
James Feist139cb572018-09-10 15:26:18 -070031
32CPUSensor::CPUSensor(const std::string &path, const std::string &objectType,
33 sdbusplus::asio::object_server &objectServer,
34 std::shared_ptr<sdbusplus::asio::connection> &conn,
35 boost::asio::io_service &io, const std::string &sensorName,
36 std::vector<thresholds::Threshold> &&_thresholds,
37 const std::string &sensorConfiguration) :
James Feist39132a62018-10-31 12:53:20 -070038 Sensor(boost::replace_all_copy(sensorName, " ", "_"), path,
39 std::move(_thresholds)),
40 objectType(objectType), objServer(objectServer), dbusConnection(conn),
James Feistaf79dd32018-09-12 12:54:15 -070041 configuration(sensorConfiguration),
42
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070043 inputDev(io, open(path.c_str(), O_RDONLY)), waitTimer(io), errCount(0),
James Feist139cb572018-09-10 15:26:18 -070044 // todo, get these from config
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070045 maxValue(127), minValue(-128)
James Feist139cb572018-09-10 15:26:18 -070046{
James Feistaf79dd32018-09-12 12:54:15 -070047 sensorInterface = objectServer.add_interface(
48 "/xyz/openbmc_project/sensors/temperature/" + name,
49 "xyz.openbmc_project.Sensor.Value");
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070050 if (thresholds::hasWarningInterface(thresholds))
James Feist139cb572018-09-10 15:26:18 -070051 {
James Feistaf79dd32018-09-12 12:54:15 -070052 thresholdInterfaceWarning = objectServer.add_interface(
James Feist139cb572018-09-10 15:26:18 -070053 "/xyz/openbmc_project/sensors/temperature/" + name,
54 "xyz.openbmc_project.Sensor.Threshold.Warning");
55 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070056 if (thresholds::hasCriticalInterface(thresholds))
James Feist139cb572018-09-10 15:26:18 -070057 {
James Feistaf79dd32018-09-12 12:54:15 -070058 thresholdInterfaceCritical = objectServer.add_interface(
James Feist139cb572018-09-10 15:26:18 -070059 "/xyz/openbmc_project/sensors/temperature/" + name,
60 "xyz.openbmc_project.Sensor.Threshold.Critical");
61 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070062 setInitialProperties(conn);
James Feist139cb572018-09-10 15:26:18 -070063 isPowerOn(dbusConnection); // first call initializes
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070064 setupRead();
James Feist139cb572018-09-10 15:26:18 -070065}
66
67CPUSensor::~CPUSensor()
68{
69 // close the input dev to cancel async operations
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070070 inputDev.close();
71 waitTimer.cancel();
James Feistaf79dd32018-09-12 12:54:15 -070072 objServer.remove_interface(thresholdInterfaceWarning);
73 objServer.remove_interface(thresholdInterfaceCritical);
74 objServer.remove_interface(sensorInterface);
James Feist139cb572018-09-10 15:26:18 -070075}
76
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070077void CPUSensor::setupRead(void)
James Feist139cb572018-09-10 15:26:18 -070078{
79 boost::asio::async_read_until(
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070080 inputDev, readBuf, '\n',
James Feist139cb572018-09-10 15:26:18 -070081 [&](const boost::system::error_code &ec,
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070082 std::size_t /*bytes_transfered*/) { handleResponse(ec); });
James Feist139cb572018-09-10 15:26:18 -070083}
84
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070085void CPUSensor::handleResponse(const boost::system::error_code &err)
James Feist139cb572018-09-10 15:26:18 -070086{
87 if (err == boost::system::errc::bad_file_descriptor)
88 {
89 return; // we're being destroyed
90 }
James Feist3452f0e2018-10-31 10:08:47 -070091 size_t pollTime = CPUSensor::sensorPollMs;
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;
96 try
97 {
Jae Hyun Yoof78ec412018-10-25 10:42:39 -070098 std::getline(responseStream, response);
James Feist139cb572018-09-10 15:26:18 -070099 float nvalue = std::stof(response);
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700100 responseStream.clear();
101 nvalue /= CPUSensor::sensorScaleFactor;
James Feist139cb572018-09-10 15:26:18 -0700102 if (nvalue != value)
103 {
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700104 updateValue(nvalue);
James Feist139cb572018-09-10 15:26:18 -0700105 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700106 errCount = 0;
James Feist139cb572018-09-10 15:26:18 -0700107 }
108 catch (const std::invalid_argument &)
109 {
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700110 errCount++;
James Feist139cb572018-09-10 15:26:18 -0700111 }
112 }
113 else
114 {
James Feist3452f0e2018-10-31 10:08:47 -0700115 pollTime = sensorFailedPollTimeMs;
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700116 errCount++;
James Feist139cb572018-09-10 15:26:18 -0700117 }
118
James Feist39132a62018-10-31 12:53:20 -0700119 if (errCount >= warnAfterErrorCount)
James Feist139cb572018-09-10 15:26:18 -0700120 {
121 // only an error if power is on
122 if (isPowerOn(dbusConnection))
123 {
James Feist39132a62018-10-31 12:53:20 -0700124 // only print once
125 if (errCount == warnAfterErrorCount)
126 {
127 std::cerr << "Failure to read sensor " << name << " at " << path
128 << "\n";
129 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700130 updateValue(0);
131 errCount++;
James Feist139cb572018-09-10 15:26:18 -0700132 }
133 else
134 {
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700135 errCount = 0; // check power again in 10 cycles
James Feist3452f0e2018-10-31 10:08:47 -0700136 updateValue(std::numeric_limits<double>::quiet_NaN());
James Feist139cb572018-09-10 15:26:18 -0700137 }
138 }
139
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700140 responseStream.clear();
141 inputDev.close();
James Feist139cb572018-09-10 15:26:18 -0700142 int fd = open(path.c_str(), O_RDONLY);
143 if (fd <= 0)
144 {
145 return; // we're no longer valid
146 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700147 inputDev.assign(fd);
James Feist3452f0e2018-10-31 10:08:47 -0700148 waitTimer.expires_from_now(boost::posix_time::milliseconds(pollTime));
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700149 waitTimer.async_wait([&](const boost::system::error_code &ec) {
James Feist139cb572018-09-10 15:26:18 -0700150 if (ec == boost::asio::error::operation_aborted)
151 {
152 return; // we're being canceled
153 }
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700154 setupRead();
James Feist139cb572018-09-10 15:26:18 -0700155 });
156}
157
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700158void CPUSensor::checkThresholds(void)
James Feist139cb572018-09-10 15:26:18 -0700159{
James Feistaf79dd32018-09-12 12:54:15 -0700160 thresholds::checkThresholds(this);
James Feist139cb572018-09-10 15:26:18 -0700161}
162
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700163void CPUSensor::updateValue(const double &newValue)
James Feist139cb572018-09-10 15:26:18 -0700164{
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700165 sensorInterface->set_property("Value", newValue);
166 value = newValue;
167 checkThresholds();
James Feist139cb572018-09-10 15:26:18 -0700168}
169
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700170void CPUSensor::setInitialProperties(
James Feist139cb572018-09-10 15:26:18 -0700171 std::shared_ptr<sdbusplus::asio::connection> &conn)
172{
173 // todo, get max and min from configuration
Jae Hyun Yoof78ec412018-10-25 10:42:39 -0700174 sensorInterface->register_property("MaxValue", maxValue);
175 sensorInterface->register_property("MinValue", minValue);
James Feistaf79dd32018-09-12 12:54:15 -0700176 sensorInterface->register_property("Value", value);
James Feist139cb572018-09-10 15:26:18 -0700177
178 for (auto &threshold : thresholds)
179 {
180 std::shared_ptr<sdbusplus::asio::dbus_interface> iface;
181 std::string level;
182 std::string alarm;
183 if (threshold.level == thresholds::Level::CRITICAL)
184 {
James Feistaf79dd32018-09-12 12:54:15 -0700185 iface = thresholdInterfaceCritical;
James Feist139cb572018-09-10 15:26:18 -0700186 if (threshold.direction == thresholds::Direction::HIGH)
187 {
188 level = "CriticalHigh";
189 alarm = "CriticalAlarmHigh";
190 }
191 else
192 {
193 level = "CriticalLow";
194 alarm = "CriticalAlarmLow";
195 }
196 }
197 else if (threshold.level == thresholds::Level::WARNING)
198 {
James Feistaf79dd32018-09-12 12:54:15 -0700199 iface = thresholdInterfaceWarning;
James Feist139cb572018-09-10 15:26:18 -0700200 if (threshold.direction == thresholds::Direction::HIGH)
201 {
202 level = "WarningHigh";
203 alarm = "WarningAlarmHigh";
204 }
205 else
206 {
207 level = "WarningLow";
208 alarm = "WarningAlarmLow";
209 }
210 }
211 else
212 {
213 std::cerr << "Unknown threshold level" << threshold.level << "\n";
214 continue;
215 }
216 if (!iface)
217 {
218 std::cout << "trying to set uninitialized interface\n";
219 continue;
220 }
221 if (threshold.writeable)
222 {
223 iface->register_property(
224 level, threshold.value,
225 [&](const double &request, double &oldValue) {
226 oldValue = request; // todo, just let the config do this?
227 threshold.value = request;
228 thresholds::persistThreshold(configuration, objectType,
229 threshold, conn);
230 return 1;
231 });
232 }
233 else
234 {
235 iface->register_property(level, threshold.value);
236 }
237 iface->register_property(alarm, false);
238 }
James Feistaf79dd32018-09-12 12:54:15 -0700239 if (!sensorInterface->initialize())
James Feist139cb572018-09-10 15:26:18 -0700240 {
241 std::cerr << "error initializing value interface\n";
242 }
James Feistaf79dd32018-09-12 12:54:15 -0700243 if (thresholdInterfaceWarning && !thresholdInterfaceWarning->initialize())
James Feist139cb572018-09-10 15:26:18 -0700244 {
245 std::cerr << "error initializing warning threshold interface\n";
246 }
247
James Feistaf79dd32018-09-12 12:54:15 -0700248 if (thresholdInterfaceCritical && !thresholdInterfaceCritical->initialize())
James Feist139cb572018-09-10 15:26:18 -0700249 {
250 std::cerr << "error initializing critical threshold interface\n";
251 }
252}