1 /** 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 */ 16 17 #include "config.h" 18 19 #include "build/buildjson.hpp" 20 #include "conf.hpp" 21 #include "dbus/dbusconfiguration.hpp" 22 #include "interfaces.hpp" 23 #include "pid/builder.hpp" 24 #include "pid/buildjson.hpp" 25 #include "pid/pidloop.hpp" 26 #include "pid/tuning.hpp" 27 #include "pid/zone.hpp" 28 #include "sensors/builder.hpp" 29 #include "sensors/buildjson.hpp" 30 #include "sensors/manager.hpp" 31 #include "util.hpp" 32 33 #include <CLI/CLI.hpp> 34 #include <boost/asio/io_context.hpp> 35 #include <boost/asio/steady_timer.hpp> 36 #include <sdbusplus/asio/connection.hpp> 37 #include <sdbusplus/bus.hpp> 38 39 #include <chrono> 40 #include <filesystem> 41 #include <iostream> 42 #include <list> 43 #include <map> 44 #include <memory> 45 #include <thread> 46 #include <unordered_map> 47 #include <utility> 48 #include <vector> 49 50 namespace pid_control 51 { 52 53 /* The configuration converted sensor list. */ 54 std::map<std::string, struct conf::SensorConfig> sensorConfig = {}; 55 /* The configuration converted PID list. */ 56 std::map<int64_t, conf::PIDConf> zoneConfig = {}; 57 /* The configuration converted Zone configuration. */ 58 std::map<int64_t, struct conf::ZoneConfig> zoneDetailsConfig = {}; 59 60 } // namespace pid_control 61 62 /** the swampd daemon will check for the existence of this file. */ 63 constexpr auto jsonConfigurationPath = "/usr/share/swampd/config.json"; 64 std::string configPath = ""; 65 66 /* async io context for operation */ 67 boost::asio::io_context io; 68 69 /* buses for system control */ 70 static sdbusplus::asio::connection modeControlBus(io); 71 static sdbusplus::asio::connection 72 hostBus(io, sdbusplus::bus::new_system().release()); 73 static sdbusplus::asio::connection 74 passiveBus(io, sdbusplus::bus::new_system().release()); 75 76 namespace pid_control 77 { 78 79 void restartControlLoops() 80 { 81 static SensorManager mgmr; 82 static std::unordered_map<int64_t, std::unique_ptr<ZoneInterface>> zones; 83 static std::list<boost::asio::steady_timer> timers; 84 85 timers.clear(); 86 87 const std::string& path = 88 (configPath.length() > 0) ? configPath : jsonConfigurationPath; 89 90 if (std::filesystem::exists(path)) 91 { 92 /* 93 * When building the sensors, if any of the dbus passive ones aren't on 94 * the bus, it'll fail immediately. 95 */ 96 try 97 { 98 auto jsonData = parseValidateJson(path); 99 sensorConfig = buildSensorsFromJson(jsonData); 100 std::tie(zoneConfig, zoneDetailsConfig) = 101 buildPIDsFromJson(jsonData); 102 } 103 catch (const std::exception& e) 104 { 105 std::cerr << "Failed during building: " << e.what() << "\n"; 106 exit(EXIT_FAILURE); /* fatal error. */ 107 } 108 } 109 else 110 { 111 static boost::asio::steady_timer reloadTimer(io); 112 if (!dbus_configuration::init(modeControlBus, reloadTimer)) 113 { 114 return; // configuration not ready 115 } 116 } 117 118 mgmr = buildSensors(sensorConfig, passiveBus, hostBus); 119 zones = buildZones(zoneConfig, zoneDetailsConfig, mgmr, modeControlBus); 120 121 if (0 == zones.size()) 122 { 123 std::cerr << "No zones defined, exiting.\n"; 124 std::exit(EXIT_FAILURE); 125 } 126 127 for (const auto& i : zones) 128 { 129 auto& timer = timers.emplace_back(io); 130 std::cerr << "pushing zone " << i.first << "\n"; 131 pidControlLoop(i.second.get(), timer); 132 } 133 } 134 135 void tryRestartControlLoops() 136 { 137 int count = 0; 138 for (count = 0; count <= 5; count++) 139 { 140 try 141 { 142 restartControlLoops(); 143 break; 144 } 145 catch (const std::exception& e) 146 { 147 std::cerr << count 148 << " Failed during restartControlLoops, try again: " 149 << e.what() << "\n"; 150 if (count >= 5) 151 { 152 throw std::runtime_error(e.what()); 153 } 154 } 155 std::this_thread::sleep_for(std::chrono::seconds(10)); 156 } 157 158 return; 159 } 160 161 } // namespace pid_control 162 163 int main(int argc, char* argv[]) 164 { 165 loggingPath = ""; 166 loggingEnabled = false; 167 tuningEnabled = false; 168 169 CLI::App app{"OpenBMC Fan Control Daemon"}; 170 171 app.add_option("-c,--conf", configPath, 172 "Optional parameter to specify configuration at run-time") 173 ->check(CLI::ExistingFile); 174 app.add_option("-l,--log", loggingPath, 175 "Optional parameter to specify logging folder") 176 ->check(CLI::ExistingDirectory); 177 app.add_flag("-t,--tuning", tuningEnabled, "Enable or disable tuning"); 178 179 CLI11_PARSE(app, argc, argv); 180 181 loggingEnabled = (!loggingPath.empty()); 182 183 static constexpr auto modeRoot = "/xyz/openbmc_project/settings/fanctrl"; 184 // Create a manager for the ModeBus because we own it. 185 sdbusplus::server::manager::manager( 186 static_cast<sdbusplus::bus::bus&>(modeControlBus), modeRoot); 187 hostBus.request_name("xyz.openbmc_project.Hwmon.external"); 188 modeControlBus.request_name("xyz.openbmc_project.State.FanCtrl"); 189 190 /* 191 * All sensors are managed by one manager, but each zone has a pointer to 192 * it. 193 */ 194 195 pid_control::tryRestartControlLoops(); 196 197 io.run(); 198 return 0; 199 } 200