Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016-2020 CESNET, https://photonics.cesnet.cz/ |
| 3 | * |
| 4 | * Written by Tomáš Pecka <tomas.pecka@fit.cvut.cz> |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #pragma once |
| 9 | |
| 10 | #include <functional> |
| 11 | #include <map> |
Jan Kundrát | 1c3b881 | 2021-05-17 13:06:03 +0200 | [diff] [blame] | 12 | #include <optional> |
Tomáš Pecka | c0991ce | 2023-12-20 15:46:03 +0100 | [diff] [blame] | 13 | #include <set> |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 14 | #include <utility> |
| 15 | #include "ietf-hardware/sysfs/EMMC.h" |
| 16 | #include "ietf-hardware/sysfs/HWMon.h" |
Tomáš Pecka | 4886db2 | 2023-05-10 10:46:15 +0200 | [diff] [blame] | 17 | #include "ietf-hardware/thresholds.h" |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 18 | #include "utils/log-fwd.h" |
| 19 | |
| 20 | using namespace std::literals; |
| 21 | |
| 22 | namespace velia::ietf_hardware { |
| 23 | |
| 24 | using DataTree = std::map<std::string, std::string>; |
Tomáš Pecka | 4886db2 | 2023-05-10 10:46:15 +0200 | [diff] [blame] | 25 | using ThresholdsBySensorPath = std::map<std::string, Thresholds<int64_t>>; |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 26 | |
Tomáš Pecka | 26b3821 | 2024-01-16 17:23:31 +0100 | [diff] [blame] | 27 | struct SideLoadedAlarm { |
| 28 | std::string alarmTypeId; |
| 29 | std::string resource; |
| 30 | std::string severity; |
| 31 | std::string text; |
| 32 | |
| 33 | auto operator<=>(const SideLoadedAlarm&) const = default; |
| 34 | }; |
| 35 | |
Tomáš Pecka | 0d8d8ee | 2023-05-10 12:22:58 +0200 | [diff] [blame] | 36 | struct HardwareInfo { |
| 37 | DataTree dataTree; |
Tomáš Pecka | 6121285 | 2024-09-30 14:36:50 +0200 | [diff] [blame] | 38 | std::map<std::string, ThresholdUpdate<int64_t>> updatedTresholdCrossing; |
Tomáš Pecka | c0991ce | 2023-12-20 15:46:03 +0100 | [diff] [blame] | 39 | std::set<std::string> activeSensors; |
Tomáš Pecka | 26b3821 | 2024-01-16 17:23:31 +0100 | [diff] [blame] | 40 | std::set<SideLoadedAlarm> sideLoadedAlarms; |
Tomáš Pecka | c0991ce | 2023-12-20 15:46:03 +0100 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | struct SensorPollData { |
| 44 | DataTree data; |
| 45 | ThresholdsBySensorPath thresholds; |
Tomáš Pecka | 26b3821 | 2024-01-16 17:23:31 +0100 | [diff] [blame] | 46 | std::set<SideLoadedAlarm> sideLoadedAlarms; |
Tomáš Pecka | c0991ce | 2023-12-20 15:46:03 +0100 | [diff] [blame] | 47 | void merge(SensorPollData&& other); |
Tomáš Pecka | 0d8d8ee | 2023-05-10 12:22:58 +0200 | [diff] [blame] | 48 | }; |
| 49 | |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 50 | /** |
| 51 | * @brief Readout of hardware-state related data according to RFC 8348 (App. A) |
| 52 | * |
| 53 | * IETFHardware implements readout of various hardware component data and provides them as a mapping |
| 54 | * nodePath -> value, where nodePath is an XPath conforming to ietf-hardware-state module (RFC 8348, App. A). |
| 55 | * |
| 56 | * The class is designed to be modular. IETFHardware does not do much, its only capabilities are: |
| 57 | * - Register data readers responsible for readout of data for individual hardware, and |
| 58 | * - ask registered data readers to provide the data. |
| 59 | * |
| 60 | * The data readers (IETFHardware::DataReader) are simple functors with signature DataTree() (i.e., std::map<std::string, std::string>()) |
| 61 | * returning parts of the tree in the form described above (i.e., mapping nodePath -> value). |
| 62 | * |
| 63 | * The IETFHardware is *not aware* of Sysrepo. |
| 64 | * However, the data readers are aware of the tree structure of the YANG module ietf-hardware-state. |
| 65 | * That is because they also create the specified parts of the resulting tree. |
| 66 | * |
| 67 | * @see IETFHardware::DataReader The data reader. |
| 68 | * @see velia::ietf_hardware::data_reader Namespace containing several predefined components. |
| 69 | */ |
| 70 | class IETFHardware { |
| 71 | |
| 72 | public: |
| 73 | /** @brief The component */ |
Tomáš Pecka | c0991ce | 2023-12-20 15:46:03 +0100 | [diff] [blame] | 74 | using DataReader = std::function<SensorPollData()>; |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 75 | |
| 76 | IETFHardware(); |
| 77 | ~IETFHardware(); |
Tomáš Pecka | 4886db2 | 2023-05-10 10:46:15 +0200 | [diff] [blame] | 78 | |
Tomáš Pecka | c0991ce | 2023-12-20 15:46:03 +0100 | [diff] [blame] | 79 | void registerDataReader(const DataReader& callable); |
Tomáš Pecka | 0d8d8ee | 2023-05-10 12:22:58 +0200 | [diff] [blame] | 80 | HardwareInfo process(); |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 81 | |
| 82 | private: |
Tomáš Pecka | 0d8d8ee | 2023-05-10 12:22:58 +0200 | [diff] [blame] | 83 | velia::Log m_log; |
| 84 | |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 85 | /** @brief registered components for individual modules */ |
| 86 | std::vector<DataReader> m_callbacks; |
Tomáš Pecka | 0d8d8ee | 2023-05-10 12:22:58 +0200 | [diff] [blame] | 87 | |
| 88 | /** @brief watchers for any sensor value xPath reported by data readers */ |
| 89 | std::map<std::string, Watcher<int64_t>> m_thresholdsWatchers; |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | /** |
Jan Kundrát | c98da38 | 2024-10-08 16:47:04 +0200 | [diff] [blame] | 93 | * @brief Read a range of bytes from an EEPROM in hex |
| 94 | */ |
| 95 | std::optional<std::string> hexEEPROM(const std::string& sysfsPrefix, const uint8_t bus, const uint8_t address, const uint32_t totalSize, const uint32_t offset, const uint32_t length); |
| 96 | |
| 97 | /** |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 98 | * This namespace contains several predefined data readers for IETFHardware. |
| 99 | * They are implemented as functors and fulfill the required interface -- std::function<DataTree()> |
| 100 | * |
| 101 | * The philosophy here is to initialize Component::m_staticData DataTree when constructing the object so the tree does not have to be completely reconstructed every time. |
| 102 | * When IETFHardwareState fetches the data from the data reader, an operator() is invoked. |
| 103 | * The dynamic data are fetched by IETFHardware class by the use of the operator(). |
| 104 | * The result of call to operator() will be merged into the static data and returned to caller (IETFHardwareState). |
| 105 | * |
| 106 | * Note that a data reader can return any number of nodes and even multiple compoments. |
| 107 | * For example, Fans data reader will create multiple components in the tree, one for each fan. |
| 108 | */ |
| 109 | namespace data_reader { |
| 110 | |
| 111 | struct DataReader { |
| 112 | /** @brief name of the module component in the tree, e.g. ne:fans:fan1 */ |
| 113 | std::string m_componentName; |
| 114 | |
| 115 | /** @brief name of the parent module */ |
| 116 | std::optional<std::string> m_parent; |
| 117 | |
| 118 | /** @brief static hw-state related data */ |
| 119 | DataTree m_staticData; |
| 120 | |
Tomáš Pecka | cd7f9cc | 2023-12-11 15:52:48 +0100 | [diff] [blame] | 121 | velia::Log m_log; |
| 122 | |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 123 | DataReader(std::string propertyPrefix, std::optional<std::string> parent); |
| 124 | }; |
| 125 | |
| 126 | /** @brief Manages any component composing of static data only. The static data are provided as a DataTree in construction time. */ |
| 127 | struct StaticData : private DataReader { |
| 128 | StaticData(std::string propertyPrefix, std::optional<std::string> parent, DataTree tree); |
Tomáš Pecka | c0991ce | 2023-12-20 15:46:03 +0100 | [diff] [blame] | 129 | SensorPollData operator()() const; |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 130 | }; |
| 131 | |
| 132 | /** @brief Manages fans component. Data is provided by a sysfs::HWMon object. */ |
Jan Kundrát | c792b35 | 2024-10-10 12:31:12 +0200 | [diff] [blame^] | 133 | struct Fans : protected DataReader { |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 134 | private: |
| 135 | std::shared_ptr<sysfs::HWMon> m_hwmon; |
| 136 | unsigned m_fanChannelsCount; |
Tomáš Pecka | 4886db2 | 2023-05-10 10:46:15 +0200 | [diff] [blame] | 137 | Thresholds<int64_t> m_thresholds; |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 138 | |
| 139 | public: |
Tomáš Pecka | 4886db2 | 2023-05-10 10:46:15 +0200 | [diff] [blame] | 140 | Fans(std::string propertyPrefix, std::optional<std::string> parent, std::shared_ptr<sysfs::HWMon> hwmon, unsigned fanChannelsCount, Thresholds<int64_t> thresholds = {}); |
Tomáš Pecka | c0991ce | 2023-12-20 15:46:03 +0100 | [diff] [blame] | 141 | SensorPollData operator()() const; |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 142 | }; |
| 143 | |
Jan Kundrát | c792b35 | 2024-10-10 12:31:12 +0200 | [diff] [blame^] | 144 | /** @brief Wrapper around a hwmon chip which adds extra metadata such as a dynamic S/N from an EEPROM */ |
| 145 | struct CzechLightFans : public Fans { |
| 146 | using SerialNumberCallback = std::function<std::optional<std::string>()>; |
| 147 | private: |
| 148 | SerialNumberCallback m_serialNumber; |
| 149 | public: |
| 150 | CzechLightFans(std::string propertyPrefix, |
| 151 | std::optional<std::string> parent, |
| 152 | std::shared_ptr<sysfs::HWMon> hwmon, |
| 153 | unsigned fanChannelsCount, |
| 154 | Thresholds<int64_t> thresholds, |
| 155 | const SerialNumberCallback& cbSerialNumber); |
| 156 | SensorPollData operator()() const; |
| 157 | }; |
| 158 | |
Václav Kubernát | 6c17d0a | 2021-03-29 04:55:31 +0200 | [diff] [blame] | 159 | enum class SensorType { |
Tomáš Pecka | 77e09c2 | 2023-05-04 20:39:57 +0200 | [diff] [blame] | 160 | Temperature, |
| 161 | Current, |
| 162 | VoltageDC, |
| 163 | VoltageAC, |
| 164 | Power |
Václav Kubernát | 97e5ea1 | 2021-03-24 00:36:57 +0100 | [diff] [blame] | 165 | |
Václav Kubernát | 6c17d0a | 2021-03-29 04:55:31 +0200 | [diff] [blame] | 166 | }; |
| 167 | |
| 168 | /** @brief Manages a single value from sysfs, data is provided by a sysfs::HWMon object. */ |
Tomáš Pecka | 77e09c2 | 2023-05-04 20:39:57 +0200 | [diff] [blame] | 169 | template <SensorType TYPE> |
Václav Kubernát | 6c17d0a | 2021-03-29 04:55:31 +0200 | [diff] [blame] | 170 | struct SysfsValue : private DataReader { |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 171 | private: |
| 172 | std::shared_ptr<sysfs::HWMon> m_hwmon; |
Václav Kubernát | 6c17d0a | 2021-03-29 04:55:31 +0200 | [diff] [blame] | 173 | std::string m_sysfsFile; |
Tomáš Pecka | 4886db2 | 2023-05-10 10:46:15 +0200 | [diff] [blame] | 174 | Thresholds<int64_t> m_thresholds; |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 175 | |
| 176 | public: |
Tomáš Pecka | 4886db2 | 2023-05-10 10:46:15 +0200 | [diff] [blame] | 177 | SysfsValue(std::string propertyPrefix, std::optional<std::string> parent, std::shared_ptr<sysfs::HWMon> hwmon, int sysfsChannelNr, Thresholds<int64_t> thresholds = {}); |
Tomáš Pecka | c0991ce | 2023-12-20 15:46:03 +0100 | [diff] [blame] | 178 | SensorPollData operator()() const; |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 179 | }; |
| 180 | |
| 181 | /** @brief Manages a single eMMC block device hardware component. Data is provided by a sysfs::EMMC object. */ |
| 182 | struct EMMC : private DataReader { |
| 183 | private: |
| 184 | std::shared_ptr<sysfs::EMMC> m_emmc; |
Tomáš Pecka | 4886db2 | 2023-05-10 10:46:15 +0200 | [diff] [blame] | 185 | Thresholds<int64_t> m_thresholds; |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 186 | |
| 187 | public: |
Tomáš Pecka | 4886db2 | 2023-05-10 10:46:15 +0200 | [diff] [blame] | 188 | EMMC(std::string propertyPrefix, std::optional<std::string> parent, std::shared_ptr<sysfs::EMMC> emmc, Thresholds<int64_t> thresholds = {}); |
Tomáš Pecka | c0991ce | 2023-12-20 15:46:03 +0100 | [diff] [blame] | 189 | SensorPollData operator()() const; |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 190 | }; |
Tomáš Pecka | 2a4c9f6 | 2023-03-26 10:54:57 +0200 | [diff] [blame] | 191 | |
Jan Kundrát | c98da38 | 2024-10-08 16:47:04 +0200 | [diff] [blame] | 192 | /** brief Static data and a serial number read from the trailing part of the EEPROM */ |
| 193 | struct EepromWithUid : private DataReader { |
| 194 | EepromWithUid(std::string componentName, std::optional<std::string> parent, const std::string& sysfsPrefix, const uint8_t bus, const uint8_t address, const uint32_t totalSize, const uint32_t offset, const uint32_t length); |
| 195 | SensorPollData operator()() const; |
| 196 | }; |
| 197 | |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 198 | } |
| 199 | } |