1 /**
2 * Copyright © 2017 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 "config.h"
17
18 #include "zone.hpp"
19
20 #include "sdbusplus.hpp"
21 #include "utility.hpp"
22
23 #include <cereal/archives/json.hpp>
24 #include <cereal/cereal.hpp>
25 #include <phosphor-logging/elog-errors.hpp>
26 #include <phosphor-logging/elog.hpp>
27 #include <phosphor-logging/lg2.hpp>
28 #include <xyz/openbmc_project/Common/error.hpp>
29
30 #include <chrono>
31 #include <filesystem>
32 #include <fstream>
33 #include <functional>
34 #include <stdexcept>
35
36 namespace phosphor
37 {
38 namespace fan
39 {
40 namespace control
41 {
42
43 using namespace std::chrono;
44 using namespace phosphor::fan;
45 namespace fs = std::filesystem;
46 using InternalFailure =
47 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
48
Zone(Mode mode,sdbusplus::bus_t & bus,const std::string & path,const sdeventplus::Event & event,const ZoneDefinition & def)49 Zone::Zone(Mode mode, sdbusplus::bus_t& bus, const std::string& path,
50 const sdeventplus::Event& event, const ZoneDefinition& def) :
51 ThermalObject(bus, path.c_str(), ThermalObject::action::defer_emit),
52 _bus(bus), _path(path),
53 _ifaces({"xyz.openbmc_project.Control.ThermalMode"}),
54 _fullSpeed(std::get<fullSpeedPos>(def)),
55 _zoneNum(std::get<zoneNumPos>(def)),
56 _defFloorSpeed(std::get<floorSpeedPos>(def)),
57 _defCeilingSpeed(std::get<fullSpeedPos>(def)),
58 _incDelay(std::get<incDelayPos>(def)),
59 _decInterval(std::get<decIntervalPos>(def)),
60 _incTimer(event, std::bind(&Zone::incTimerExpired, this)),
61 _decTimer(event, std::bind(&Zone::decTimerExpired, this)), _eventLoop(event)
62 {
63 auto& fanDefs = std::get<fanListPos>(def);
64
65 for (auto& fanDef : fanDefs)
66 {
67 _fans.emplace_back(std::make_unique<Fan>(bus, fanDef));
68 }
69
70 // Do not enable set speed events when in init mode
71 if (mode == Mode::control)
72 {
73 // Process any zone handlers defined
74 for (auto& hand : std::get<handlerPos>(def))
75 {
76 hand(*this);
77 }
78
79 // Restore thermal control current mode state
80 restoreCurrentMode();
81
82 // Emit objects added in control mode only
83 this->emit_object_added();
84
85 // Update target speed to current zone target speed
86 if (!_fans.empty())
87 {
88 _targetSpeed = _fans.front()->getTargetSpeed();
89 }
90 // Setup signal trigger for set speed events
91 for (auto& ssEvent : std::get<setSpeedEventsPos>(def))
92 {
93 initEvent(ssEvent);
94 }
95 // Start timer for fan speed decreases
96 _decTimer.restart(_decInterval);
97 }
98 }
99
setSpeed(uint64_t speed)100 void Zone::setSpeed(uint64_t speed)
101 {
102 if (_isActive)
103 {
104 _targetSpeed = speed;
105 for (auto& fan : _fans)
106 {
107 fan->setSpeed(_targetSpeed);
108 }
109 }
110 }
111
setFullSpeed()112 void Zone::setFullSpeed()
113 {
114 if (_fullSpeed != 0)
115 {
116 _targetSpeed = _fullSpeed;
117 for (auto& fan : _fans)
118 {
119 fan->setSpeed(_targetSpeed);
120 }
121 }
122 }
123
setActiveAllow(const Group * group,bool isActiveAllow)124 void Zone::setActiveAllow(const Group* group, bool isActiveAllow)
125 {
126 _active[*(group)] = isActiveAllow;
127 if (!isActiveAllow)
128 {
129 _isActive = false;
130 }
131 else
132 {
133 // Check all entries are set to allow control active
134 auto actPred = [](const auto& entry) { return entry.second; };
135 _isActive = std::all_of(_active.begin(), _active.end(), actPred);
136 }
137 }
138
removeService(const Group * group,const std::string & name)139 void Zone::removeService(const Group* group, const std::string& name)
140 {
141 try
142 {
143 auto& sNames = _services.at(*group);
144 auto it = std::find_if(sNames.begin(), sNames.end(),
145 [&name](const auto& entry) {
146 return name == std::get<namePos>(entry);
147 });
148 if (it != std::end(sNames))
149 {
150 // Remove service name from group
151 sNames.erase(it);
152 }
153 }
154 catch (const std::out_of_range& oore)
155 {
156 // No services for group found
157 }
158 }
159
setServiceOwner(const Group * group,const std::string & name,const bool hasOwner)160 void Zone::setServiceOwner(const Group* group, const std::string& name,
161 const bool hasOwner)
162 {
163 try
164 {
165 auto& sNames = _services.at(*group);
166 auto it = std::find_if(sNames.begin(), sNames.end(),
167 [&name](const auto& entry) {
168 return name == std::get<namePos>(entry);
169 });
170 if (it != std::end(sNames))
171 {
172 std::get<hasOwnerPos>(*it) = hasOwner;
173 }
174 else
175 {
176 _services[*group].emplace_back(name, hasOwner);
177 }
178 }
179 catch (const std::out_of_range& oore)
180 {
181 _services[*group].emplace_back(name, hasOwner);
182 }
183 }
184
setServices(const Group * group)185 void Zone::setServices(const Group* group)
186 {
187 // Remove the empty service name if exists
188 removeService(group, "");
189 for (auto it = group->begin(); it != group->end(); ++it)
190 {
191 std::string name;
192 bool hasOwner = false;
193 try
194 {
195 name = getService(std::get<pathPos>(*it), std::get<intfPos>(*it));
196 hasOwner = util::SDBusPlus::callMethodAndRead<bool>(
197 _bus, "org.freedesktop.DBus", "/org/freedesktop/DBus",
198 "org.freedesktop.DBus", "NameHasOwner", name);
199 }
200 catch (const util::DBusMethodError& e)
201 {
202 // Failed to get service name owner state
203 hasOwner = false;
204 }
205 setServiceOwner(group, name, hasOwner);
206 }
207 }
208
setFloor(uint64_t speed)209 void Zone::setFloor(uint64_t speed)
210 {
211 // Check all entries are set to allow floor to be set
212 auto pred = [](const auto& entry) { return entry.second; };
213 auto setFloor = std::all_of(_floorChange.begin(), _floorChange.end(), pred);
214 if (setFloor)
215 {
216 _floorSpeed = speed;
217 // Floor speed above target, update target to floor speed
218 if (_targetSpeed < _floorSpeed)
219 {
220 requestSpeedIncrease(_floorSpeed - _targetSpeed);
221 }
222 }
223 }
224
requestSpeedIncrease(uint64_t targetDelta)225 void Zone::requestSpeedIncrease(uint64_t targetDelta)
226 {
227 // Only increase speed when delta is higher than
228 // the current increase delta for the zone and currently under ceiling
229 if (targetDelta > _incSpeedDelta && _targetSpeed < _ceilingSpeed)
230 {
231 auto requestTarget = getRequestSpeedBase();
232 requestTarget = (targetDelta - _incSpeedDelta) + requestTarget;
233 _incSpeedDelta = targetDelta;
234 // Target speed can not go above a defined ceiling speed
235 if (requestTarget > _ceilingSpeed)
236 {
237 requestTarget = _ceilingSpeed;
238 }
239 setSpeed(requestTarget);
240 // Retart timer countdown for fan speed increase
241 _incTimer.restartOnce(_incDelay);
242 }
243 }
244
incTimerExpired()245 void Zone::incTimerExpired()
246 {
247 // Clear increase delta when timer expires allowing additional speed
248 // increase requests or speed decreases to occur
249 _incSpeedDelta = 0;
250 }
251
requestSpeedDecrease(uint64_t targetDelta)252 void Zone::requestSpeedDecrease(uint64_t targetDelta)
253 {
254 // Only decrease the lowest target delta requested
255 if (_decSpeedDelta == 0 || targetDelta < _decSpeedDelta)
256 {
257 _decSpeedDelta = targetDelta;
258 }
259 }
260
decTimerExpired()261 void Zone::decTimerExpired()
262 {
263 // Check all entries are set to allow a decrease
264 auto pred = [](const auto& entry) { return entry.second; };
265 auto decAllowed = std::all_of(_decAllowed.begin(), _decAllowed.end(), pred);
266
267 // Only decrease speeds when allowed,
268 // a requested decrease speed delta exists,
269 // where no requested increases exist and
270 // the increase timer is not running
271 // (i.e. not in the middle of increasing)
272 if (decAllowed && _decSpeedDelta != 0 && _incSpeedDelta == 0 &&
273 !_incTimer.isEnabled())
274 {
275 auto requestTarget = getRequestSpeedBase();
276 // Request target speed should not start above ceiling
277 if (requestTarget > _ceilingSpeed)
278 {
279 requestTarget = _ceilingSpeed;
280 }
281 // Target speed can not go below the defined floor speed
282 if ((requestTarget < _decSpeedDelta) ||
283 (requestTarget - _decSpeedDelta < _floorSpeed))
284 {
285 requestTarget = _floorSpeed;
286 }
287 else
288 {
289 requestTarget = requestTarget - _decSpeedDelta;
290 }
291 setSpeed(requestTarget);
292 }
293 // Clear decrease delta when timer expires
294 _decSpeedDelta = 0;
295 // Decrease timer is restarted since its repeating
296 }
297
initEvent(const SetSpeedEvent & event)298 void Zone::initEvent(const SetSpeedEvent& event)
299 {
300 // Enable event triggers
301 std::for_each(
302 std::get<triggerPos>(event).begin(), std::get<triggerPos>(event).end(),
303 [this, &event](const auto& trigger) {
304 if (!std::get<actionsPos>(event).empty())
305 {
306 std::for_each(
307 std::get<actionsPos>(event).begin(),
308 std::get<actionsPos>(event).end(),
309 [this, &trigger, &event](const auto& action) {
310 // Default to use group defined with action if exists
311 if (!std::get<adGroupPos>(action).empty())
312 {
313 trigger(*this, std::get<sseNamePos>(event),
314 std::get<adGroupPos>(action),
315 std::get<adActionsPos>(action));
316 }
317 else
318 {
319 trigger(*this, std::get<sseNamePos>(event),
320 std::get<groupPos>(event),
321 std::get<adActionsPos>(action));
322 }
323 });
324 }
325 else
326 {
327 trigger(*this, std::get<sseNamePos>(event),
328 std::get<groupPos>(event), {});
329 }
330 });
331 }
332
removeEvent(const SetSpeedEvent & event)333 void Zone::removeEvent(const SetSpeedEvent& event)
334 {
335 // Remove event signals
336 auto sigIter = _signalEvents.find(std::get<sseNamePos>(event));
337 if (sigIter != _signalEvents.end())
338 {
339 auto& signals = sigIter->second;
340 for (auto it = signals.begin(); it != signals.end(); ++it)
341 {
342 removeSignal(it);
343 }
344 _signalEvents.erase(sigIter);
345 }
346
347 // Remove event timers
348 auto timIter = _timerEvents.find(std::get<sseNamePos>(event));
349 if (timIter != _timerEvents.end())
350 {
351 _timerEvents.erase(timIter);
352 }
353 }
354
findTimer(const Group & eventGroup,const std::vector<Action> & eventActions,std::vector<TimerEvent> & eventTimers)355 std::vector<TimerEvent>::iterator Zone::findTimer(
356 const Group& eventGroup, const std::vector<Action>& eventActions,
357 std::vector<TimerEvent>& eventTimers)
358 {
359 for (auto it = eventTimers.begin(); it != eventTimers.end(); ++it)
360 {
361 const auto& teEventData = *std::get<timerEventDataPos>(*it);
362 if (std::get<eventGroupPos>(teEventData) == eventGroup &&
363 std::get<eventActionsPos>(teEventData).size() ==
364 eventActions.size())
365 {
366 // TODO openbmc/openbmc#2328 - Use the action function target
367 // for comparison
368 auto actsEqual = [](const auto& a1, const auto& a2) {
369 return a1.target_type().name() == a2.target_type().name();
370 };
371 if (std::equal(eventActions.begin(), eventActions.end(),
372 std::get<eventActionsPos>(teEventData).begin(),
373 actsEqual))
374 {
375 return it;
376 }
377 }
378 }
379
380 return eventTimers.end();
381 }
382
addTimer(const std::string & name,const Group & group,const std::vector<Action> & actions,const TimerConf & tConf)383 void Zone::addTimer(const std::string& name, const Group& group,
384 const std::vector<Action>& actions, const TimerConf& tConf)
385 {
386 auto eventData = std::make_unique<EventData>(group, "", nullptr, actions);
387 Timer timer(
388 _eventLoop,
389 std::bind(&Zone::timerExpired, this,
390 std::cref(std::get<Group>(*eventData)),
391 std::cref(std::get<std::vector<Action>>(*eventData))));
392 if (std::get<TimerType>(tConf) == TimerType::repeating)
393 {
394 timer.restart(std::get<intervalPos>(tConf));
395 }
396 else if (std::get<TimerType>(tConf) == TimerType::oneshot)
397 {
398 timer.restartOnce(std::get<intervalPos>(tConf));
399 }
400 else
401 {
402 throw std::invalid_argument("Invalid Timer Type");
403 }
404 _timerEvents[name].emplace_back(std::move(eventData), std::move(timer));
405 }
406
timerExpired(const Group & eventGroup,const std::vector<Action> & eventActions)407 void Zone::timerExpired(const Group& eventGroup,
408 const std::vector<Action>& eventActions)
409 {
410 // Perform the actions
411 std::for_each(eventActions.begin(), eventActions.end(),
412 [this, &eventGroup](const auto& action) {
413 action(*this, eventGroup);
414 });
415 }
416
handleEvent(sdbusplus::message_t & msg,const EventData * eventData)417 void Zone::handleEvent(sdbusplus::message_t& msg, const EventData* eventData)
418 {
419 // Handle the callback
420 std::get<eventHandlerPos> (*eventData)(_bus, msg, *this);
421 // Perform the actions
422 std::for_each(std::get<eventActionsPos>(*eventData).begin(),
423 std::get<eventActionsPos>(*eventData).end(),
424 [this, &eventData](const auto& action) {
425 action(*this, std::get<eventGroupPos>(*eventData));
426 });
427 }
428
getService(const std::string & path,const std::string & intf)429 const std::string& Zone::getService(const std::string& path,
430 const std::string& intf)
431 {
432 // Retrieve service from cache
433 auto srvIter = _servTree.find(path);
434 if (srvIter != _servTree.end())
435 {
436 for (auto& serv : srvIter->second)
437 {
438 auto it = std::find_if(
439 serv.second.begin(), serv.second.end(),
440 [&intf](const auto& interface) { return intf == interface; });
441 if (it != std::end(serv.second))
442 {
443 // Service found
444 return serv.first;
445 }
446 }
447 // Interface not found in cache, add and return
448 return addServices(path, intf, 0);
449 }
450 else
451 {
452 // Path not found in cache, add and return
453 return addServices(path, intf, 0);
454 }
455 }
456
addServices(const std::string & path,const std::string & intf,int32_t depth)457 const std::string& Zone::addServices(const std::string& path,
458 const std::string& intf, int32_t depth)
459 {
460 static const std::string empty = "";
461 auto it = _servTree.end();
462
463 // Get all subtree objects for the given interface
464 auto objects = util::SDBusPlus::getSubTree(_bus, "/", intf, depth);
465 // Add what's returned to the cache of path->services
466 for (auto& pIter : objects)
467 {
468 auto pathIter = _servTree.find(pIter.first);
469 if (pathIter != _servTree.end())
470 {
471 // Path found in cache
472 for (auto& sIter : pIter.second)
473 {
474 auto servIter = pathIter->second.find(sIter.first);
475 if (servIter != pathIter->second.end())
476 {
477 // Service found in cache
478 for (auto& iIter : sIter.second)
479 {
480 if (std::find(servIter->second.begin(),
481 servIter->second.end(), iIter) ==
482 servIter->second.end())
483 {
484 // Add interface to cache
485 servIter->second.emplace_back(iIter);
486 }
487 }
488 }
489 else
490 {
491 // Service not found in cache
492 pathIter->second.insert(sIter);
493 }
494 }
495 }
496 else
497 {
498 _servTree.insert(pIter);
499 }
500 // When the paths match, since a single interface constraint is given,
501 // that is the service to return
502 if (path == pIter.first)
503 {
504 it = _servTree.find(pIter.first);
505 }
506 }
507
508 if (it != _servTree.end())
509 {
510 return it->second.begin()->first;
511 }
512
513 return empty;
514 }
515
getPersisted(const std::string & intf,const std::string & prop)516 auto Zone::getPersisted(const std::string& intf, const std::string& prop)
517 {
518 auto persisted = false;
519
520 auto it = _persisted.find(intf);
521 if (it != _persisted.end())
522 {
523 return std::any_of(it->second.begin(), it->second.end(),
524 [&prop](const auto& p) { return prop == p; });
525 }
526
527 return persisted;
528 }
529
current(std::string value)530 std::string Zone::current(std::string value)
531 {
532 auto current = ThermalObject::current();
533 std::transform(value.begin(), value.end(), value.begin(), toupper);
534
535 auto supported = ThermalObject::supported();
536 auto isSupported =
537 std::any_of(supported.begin(), supported.end(), [&value](auto& s) {
538 std::transform(s.begin(), s.end(), s.begin(), toupper);
539 return value == s;
540 });
541
542 if (value != current && isSupported)
543 {
544 current = ThermalObject::current(value);
545 if (getPersisted("xyz.openbmc_project.Control.ThermalMode", "Current"))
546 {
547 saveCurrentMode();
548 }
549 // Trigger event(s) for current mode property change
550 auto eData = _objects[_path]["xyz.openbmc_project.Control.ThermalMode"]
551 ["Current"];
552 if (eData != nullptr)
553 {
554 sdbusplus::message_t nullMsg{nullptr};
555 handleEvent(nullMsg, eData);
556 }
557 }
558
559 return current;
560 }
561
saveCurrentMode()562 void Zone::saveCurrentMode()
563 {
564 fs::path path{CONTROL_PERSIST_ROOT_PATH};
565 // Append zone and property description
566 path /= std::to_string(_zoneNum);
567 path /= "CurrentMode";
568 std::ofstream ofs(path.c_str(), std::ios::binary);
569 cereal::JSONOutputArchive oArch(ofs);
570 oArch(ThermalObject::current());
571 }
572
restoreCurrentMode()573 void Zone::restoreCurrentMode()
574 {
575 auto current = ThermalObject::current();
576 fs::path path{CONTROL_PERSIST_ROOT_PATH};
577 path /= std::to_string(_zoneNum);
578 path /= "CurrentMode";
579 fs::create_directories(path.parent_path());
580
581 try
582 {
583 if (fs::exists(path))
584 {
585 std::ifstream ifs(path.c_str(), std::ios::in | std::ios::binary);
586 cereal::JSONInputArchive iArch(ifs);
587 iArch(current);
588 }
589 }
590 catch (const std::exception& e)
591 {
592 lg2::error("Exception restoring current zone mode: {ERROR}", "ERROR",
593 e);
594 fs::remove(path);
595 current = ThermalObject::current();
596 }
597
598 this->current(current);
599 }
600
601 } // namespace control
602 } // namespace fan
603 } // namespace phosphor
604