1 #include "trigger_manager.hpp" 2 3 #include "trigger.hpp" 4 #include "types/trigger_types.hpp" 5 #include "utils/conversion_trigger.hpp" 6 #include "utils/dbus_path_utils.hpp" 7 #include "utils/make_id_name.hpp" 8 #include "utils/transform.hpp" 9 #include "utils/tstring.hpp" 10 11 #include <phosphor-logging/log.hpp> 12 13 #include <unordered_set> 14 15 TriggerManager::TriggerManager( 16 std::unique_ptr<interfaces::TriggerFactory> triggerFactoryIn, 17 std::unique_ptr<interfaces::JsonStorage> triggerStorageIn, 18 const std::shared_ptr<sdbusplus::asio::object_server>& objServer) : 19 triggerFactory(std::move(triggerFactoryIn)), 20 triggerStorage(std::move(triggerStorageIn)) 21 { 22 loadFromPersistent(); 23 24 managerIface = objServer->add_unique_interface( 25 triggerManagerPath, triggerManagerIfaceName, [this](auto& iface) { 26 iface.register_method( 27 "AddTrigger", 28 [this]( 29 boost::asio::yield_context& yield, const std::string& id, 30 const std::string& name, 31 const std::vector<std::string>& triggerActions, 32 const SensorsInfo& sensors, 33 const std::vector<sdbusplus::message::object_path>& reports, 34 const TriggerThresholdParamsExt& thresholds) { 35 LabeledTriggerThresholdParams 36 labeledTriggerThresholdParams = std::visit( 37 utils::ToLabeledThresholdParamConversion(), 38 thresholds); 39 40 std::vector<LabeledSensorInfo> labeledSensorsInfo = 41 triggerFactory->getLabeledSensorsInfo(yield, sensors); 42 43 auto reportIds = utils::transform<std::vector>( 44 reports, [](const auto& item) { 45 return utils::reportPathToId(item); 46 }); 47 48 return addTrigger(id, name, triggerActions, 49 labeledSensorsInfo, reportIds, 50 labeledTriggerThresholdParams) 51 .getPath(); 52 }); 53 }); 54 } 55 56 void TriggerManager::removeTrigger(const interfaces::Trigger* trigger) 57 { 58 triggers.erase( 59 std::remove_if(triggers.begin(), triggers.end(), 60 [trigger](const auto& x) { return trigger == x.get(); }), 61 triggers.end()); 62 } 63 64 void TriggerManager::verifyReportIds( 65 const std::vector<std::string>& newReportIds) 66 { 67 if (std::unordered_set(newReportIds.begin(), newReportIds.end()).size() != 68 newReportIds.size()) 69 { 70 throw sdbusplus::exception::SdBusError( 71 static_cast<int>(std::errc::invalid_argument), 72 "Duplicate element in ReportIds"); 73 } 74 } 75 76 void TriggerManager::verifyThresholdParams( 77 const LabeledTriggerThresholdParams& thresholdParams) 78 { 79 namespace ts = utils::tstring; 80 81 if (auto discreteParams = 82 std::get_if<std::vector<discrete::LabeledThresholdParam>>( 83 &thresholdParams); 84 discreteParams != nullptr) 85 { 86 for (auto discreteParam : *discreteParams) 87 { 88 if (discreteParam.at_label<ts::UserId>().length() > 89 utils::constants::maxIdNameLength) 90 { 91 throw errors::InvalidArgument("ThresholdParams.Id", 92 "UserId too long."); 93 } 94 } 95 } 96 } 97 98 void TriggerManager::verifyAddTrigger( 99 const std::vector<std::string>& reportIds, 100 const LabeledTriggerThresholdParams& thresholdParams) const 101 { 102 if (triggers.size() >= maxTriggers) 103 { 104 throw sdbusplus::exception::SdBusError( 105 static_cast<int>(std::errc::too_many_files_open), 106 "Reached maximal trigger count"); 107 } 108 109 verifyReportIds(reportIds); 110 verifyThresholdParams(thresholdParams); 111 } 112 113 interfaces::Trigger& TriggerManager::addTrigger( 114 const std::string& triggerIdIn, const std::string& triggerNameIn, 115 const std::vector<std::string>& triggerActions, 116 const std::vector<LabeledSensorInfo>& labeledSensorsInfo, 117 const std::vector<std::string>& reportIds, 118 const LabeledTriggerThresholdParams& labeledThresholdParams) 119 { 120 const auto existingTriggerIds = utils::transform( 121 triggers, [](const auto& trigger) { return trigger->getId(); }); 122 123 auto [id, name] = utils::makeIdName(triggerIdIn, triggerNameIn, 124 triggerNameDefault, existingTriggerIds); 125 126 verifyAddTrigger(reportIds, labeledThresholdParams); 127 128 triggers.emplace_back(triggerFactory->make( 129 id, name, triggerActions, reportIds, *this, *triggerStorage, 130 labeledThresholdParams, labeledSensorsInfo)); 131 132 return *triggers.back(); 133 } 134 135 void TriggerManager::loadFromPersistent() 136 { 137 std::vector<interfaces::JsonStorage::FilePath> paths = 138 triggerStorage->list(); 139 140 for (const auto& path : paths) 141 { 142 std::optional<nlohmann::json> data = triggerStorage->load(path); 143 try 144 { 145 if (!data.has_value()) 146 { 147 throw std::runtime_error("Empty storage"); 148 } 149 size_t version = data->at("Version").get<size_t>(); 150 if (version != Trigger::triggerVersion) 151 { 152 throw std::runtime_error("Invalid version"); 153 } 154 const std::string& id = data->at("Id").get_ref<std::string&>(); 155 const std::string& name = data->at("Name").get_ref<std::string&>(); 156 int thresholdParamsDiscriminator = 157 data->at("ThresholdParamsDiscriminator").get<int>(); 158 const std::vector<std::string> triggerActions = 159 data->at("TriggerActions").get<std::vector<std::string>>(); 160 161 LabeledTriggerThresholdParams labeledThresholdParams; 162 if (0 == thresholdParamsDiscriminator) 163 { 164 labeledThresholdParams = 165 data->at("ThresholdParams") 166 .get<std::vector<numeric::LabeledThresholdParam>>(); 167 } 168 else 169 { 170 labeledThresholdParams = 171 data->at("ThresholdParams") 172 .get<std::vector<discrete::LabeledThresholdParam>>(); 173 } 174 175 auto reportIds = 176 data->at("ReportIds").get<std::vector<std::string>>(); 177 178 auto labeledSensorsInfo = 179 data->at("Sensors").get<std::vector<LabeledSensorInfo>>(); 180 181 addTrigger(id, name, triggerActions, labeledSensorsInfo, reportIds, 182 labeledThresholdParams); 183 } 184 catch (const std::exception& e) 185 { 186 phosphor::logging::log<phosphor::logging::level::ERR>( 187 "Failed to load trigger from storage", 188 phosphor::logging::entry( 189 "FILENAME=%s", 190 static_cast<std::filesystem::path>(path).c_str()), 191 phosphor::logging::entry("EXCEPTION_MSG=%s", e.what())); 192 triggerStorage->remove(path); 193 } 194 } 195 } 196