Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1 | /* |
Jason M. Bills | 1a2fbdd | 2019-05-10 09:05:37 -0700 | [diff] [blame] | 2 | // Copyright (c) 2017-2019 Intel Corporation |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 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 | |
Patrick Venture | ca99ef5 | 2019-10-20 14:00:50 -0700 | [diff] [blame] | 17 | #include "storagecommands.hpp" |
| 18 | |
| 19 | #include "commandutils.hpp" |
| 20 | #include "ipmi_to_redfish_hooks.hpp" |
| 21 | #include "sdrutils.hpp" |
Patrick Venture | c2a07d4 | 2020-05-30 16:35:03 -0700 | [diff] [blame] | 22 | #include "types.hpp" |
Patrick Venture | ca99ef5 | 2019-10-20 14:00:50 -0700 | [diff] [blame] | 23 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 24 | #include <boost/algorithm/string.hpp> |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 25 | #include <boost/container/flat_map.hpp> |
James Feist | 2a265d5 | 2019-04-08 11:16:27 -0700 | [diff] [blame] | 26 | #include <ipmid/api.hpp> |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 27 | #include <ipmid/message.hpp> |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 28 | #include <phosphor-ipmi-host/selutility.hpp> |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 29 | #include <phosphor-logging/log.hpp> |
| 30 | #include <sdbusplus/message/types.hpp> |
| 31 | #include <sdbusplus/timer.hpp> |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 32 | |
| 33 | #include <filesystem> |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 34 | #include <fstream> |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 35 | #include <iostream> |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 36 | #include <stdexcept> |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 37 | #include <unordered_set> |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 38 | |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 39 | static constexpr bool DEBUG = false; |
| 40 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 41 | namespace intel_oem::ipmi::sel |
| 42 | { |
| 43 | static const std::filesystem::path selLogDir = "/var/log"; |
| 44 | static const std::string selLogFilename = "ipmi_sel"; |
| 45 | |
| 46 | static int getFileTimestamp(const std::filesystem::path& file) |
| 47 | { |
| 48 | struct stat st; |
| 49 | |
| 50 | if (stat(file.c_str(), &st) >= 0) |
| 51 | { |
| 52 | return st.st_mtime; |
| 53 | } |
| 54 | return ::ipmi::sel::invalidTimeStamp; |
| 55 | } |
| 56 | |
| 57 | namespace erase_time |
Jason M. Bills | 7944c30 | 2019-03-20 15:24:05 -0700 | [diff] [blame] | 58 | { |
| 59 | static constexpr const char* selEraseTimestamp = "/var/lib/ipmi/sel_erase_time"; |
| 60 | |
| 61 | void save() |
| 62 | { |
| 63 | // open the file, creating it if necessary |
| 64 | int fd = open(selEraseTimestamp, O_WRONLY | O_CREAT | O_CLOEXEC, 0644); |
| 65 | if (fd < 0) |
| 66 | { |
| 67 | std::cerr << "Failed to open file\n"; |
| 68 | return; |
| 69 | } |
| 70 | |
| 71 | // update the file timestamp to the current time |
| 72 | if (futimens(fd, NULL) < 0) |
| 73 | { |
| 74 | std::cerr << "Failed to update timestamp: " |
| 75 | << std::string(strerror(errno)); |
| 76 | } |
| 77 | close(fd); |
| 78 | } |
| 79 | |
| 80 | int get() |
| 81 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 82 | return getFileTimestamp(selEraseTimestamp); |
Jason M. Bills | 7944c30 | 2019-03-20 15:24:05 -0700 | [diff] [blame] | 83 | } |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 84 | } // namespace erase_time |
| 85 | } // namespace intel_oem::ipmi::sel |
Jason M. Bills | 7944c30 | 2019-03-20 15:24:05 -0700 | [diff] [blame] | 86 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 87 | namespace ipmi |
| 88 | { |
| 89 | |
| 90 | namespace storage |
| 91 | { |
| 92 | |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 93 | constexpr static const size_t maxMessageSize = 64; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 94 | constexpr static const size_t maxFruSdrNameSize = 16; |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 95 | using ObjectType = boost::container::flat_map< |
| 96 | std::string, boost::container::flat_map<std::string, DbusVariant>>; |
| 97 | using ManagedObjectType = |
| 98 | boost::container::flat_map<sdbusplus::message::object_path, ObjectType>; |
| 99 | using ManagedEntry = std::pair<sdbusplus::message::object_path, ObjectType>; |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 100 | using GetObjectType = |
| 101 | std::vector<std::pair<std::string, std::vector<std::string>>>; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 102 | |
James Feist | 3bcba45 | 2018-12-20 12:31:03 -0800 | [diff] [blame] | 103 | constexpr static const char* fruDeviceServiceName = |
| 104 | "xyz.openbmc_project.FruDevice"; |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 105 | constexpr static const char* entityManagerServiceName = |
| 106 | "xyz.openbmc_project.EntityManager"; |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 107 | constexpr static const size_t writeTimeoutSeconds = 10; |
Anoop S | 358e7df | 2020-05-05 16:43:34 +0000 | [diff] [blame] | 108 | constexpr static const char* chassisTypeRackMount = "23"; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 109 | |
Jason M. Bills | 4ed6f2c | 2019-04-02 12:21:25 -0700 | [diff] [blame] | 110 | // event direction is bit[7] of eventType where 1b = Deassertion event |
| 111 | constexpr static const uint8_t deassertionEvent = 0x80; |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 112 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 113 | static std::vector<uint8_t> fruCache; |
| 114 | static uint8_t cacheBus = 0xFF; |
| 115 | static uint8_t cacheAddr = 0XFF; |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 116 | static uint8_t lastDevId = 0xFF; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 117 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 118 | static uint8_t writeBus = 0xFF; |
| 119 | static uint8_t writeAddr = 0XFF; |
| 120 | |
| 121 | std::unique_ptr<phosphor::Timer> writeTimer = nullptr; |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 122 | static std::vector<sdbusplus::bus::match::match> fruMatches; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 123 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 124 | ManagedObjectType frus; |
| 125 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 126 | // we unfortunately have to build a map of hashes in case there is a |
| 127 | // collision to verify our dev-id |
| 128 | boost::container::flat_map<uint8_t, std::pair<uint8_t, uint8_t>> deviceHashes; |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 129 | // Map devId to Object Path |
| 130 | boost::container::flat_map<uint8_t, std::string> devicePath; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 131 | |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 132 | void registerStorageFunctions() __attribute__((constructor)); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 133 | |
| 134 | bool writeFru() |
| 135 | { |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 136 | if (writeBus == 0xFF && writeAddr == 0xFF) |
| 137 | { |
| 138 | return true; |
| 139 | } |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 140 | std::shared_ptr<sdbusplus::asio::connection> dbus = getSdBus(); |
| 141 | sdbusplus::message::message writeFru = dbus->new_method_call( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 142 | fruDeviceServiceName, "/xyz/openbmc_project/FruDevice", |
| 143 | "xyz.openbmc_project.FruDeviceManager", "WriteFru"); |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 144 | writeFru.append(writeBus, writeAddr, fruCache); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 145 | try |
| 146 | { |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 147 | sdbusplus::message::message writeFruResp = dbus->call(writeFru); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 148 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 149 | catch (const sdbusplus::exception_t&) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 150 | { |
| 151 | // todo: log sel? |
| 152 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 153 | "error writing fru"); |
| 154 | return false; |
| 155 | } |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 156 | writeBus = 0xFF; |
| 157 | writeAddr = 0xFF; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 158 | return true; |
| 159 | } |
| 160 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 161 | void createTimers() |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 162 | { |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 163 | writeTimer = std::make_unique<phosphor::Timer>(writeFru); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 164 | } |
| 165 | |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 166 | void recalculateHashes() |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 167 | { |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 168 | |
| 169 | deviceHashes.clear(); |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 170 | devicePath.clear(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 171 | // hash the object paths to create unique device id's. increment on |
| 172 | // collision |
| 173 | std::hash<std::string> hasher; |
| 174 | for (const auto& fru : frus) |
| 175 | { |
| 176 | auto fruIface = fru.second.find("xyz.openbmc_project.FruDevice"); |
| 177 | if (fruIface == fru.second.end()) |
| 178 | { |
| 179 | continue; |
| 180 | } |
| 181 | |
| 182 | auto busFind = fruIface->second.find("BUS"); |
| 183 | auto addrFind = fruIface->second.find("ADDRESS"); |
| 184 | if (busFind == fruIface->second.end() || |
| 185 | addrFind == fruIface->second.end()) |
| 186 | { |
| 187 | phosphor::logging::log<phosphor::logging::level::INFO>( |
| 188 | "fru device missing Bus or Address", |
| 189 | phosphor::logging::entry("FRU=%s", fru.first.str.c_str())); |
| 190 | continue; |
| 191 | } |
| 192 | |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 193 | uint8_t fruBus = std::get<uint32_t>(busFind->second); |
| 194 | uint8_t fruAddr = std::get<uint32_t>(addrFind->second); |
Anoop S | 358e7df | 2020-05-05 16:43:34 +0000 | [diff] [blame] | 195 | auto chassisFind = fruIface->second.find("CHASSIS_TYPE"); |
| 196 | std::string chassisType; |
| 197 | if (chassisFind != fruIface->second.end()) |
| 198 | { |
| 199 | chassisType = std::get<std::string>(chassisFind->second); |
| 200 | } |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 201 | |
| 202 | uint8_t fruHash = 0; |
Anoop S | 358e7df | 2020-05-05 16:43:34 +0000 | [diff] [blame] | 203 | if (chassisType.compare(chassisTypeRackMount) != 0) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 204 | { |
| 205 | fruHash = hasher(fru.first.str); |
| 206 | // can't be 0xFF based on spec, and 0 is reserved for baseboard |
| 207 | if (fruHash == 0 || fruHash == 0xFF) |
| 208 | { |
| 209 | fruHash = 1; |
| 210 | } |
| 211 | } |
| 212 | std::pair<uint8_t, uint8_t> newDev(fruBus, fruAddr); |
| 213 | |
| 214 | bool emplacePassed = false; |
| 215 | while (!emplacePassed) |
| 216 | { |
| 217 | auto resp = deviceHashes.emplace(fruHash, newDev); |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 218 | |
| 219 | devicePath.emplace(fruHash, fru.first); |
| 220 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 221 | emplacePassed = resp.second; |
| 222 | if (!emplacePassed) |
| 223 | { |
| 224 | fruHash++; |
| 225 | // can't be 0xFF based on spec, and 0 is reserved for |
| 226 | // baseboard |
| 227 | if (fruHash == 0XFF) |
| 228 | { |
| 229 | fruHash = 0x1; |
| 230 | } |
| 231 | } |
| 232 | } |
| 233 | } |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | void replaceCacheFru(const std::shared_ptr<sdbusplus::asio::connection>& bus, |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 237 | boost::asio::yield_context& yield) |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 238 | { |
| 239 | boost::system::error_code ec; |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 240 | // ObjectPaths and Services which implements "xyz.openbmc_project.FruDevice" |
| 241 | // interface |
| 242 | GetSubTreeType fruServices = bus->yield_method_call<GetSubTreeType>( |
| 243 | yield, ec, "xyz.openbmc_project.ObjectMapper", |
| 244 | "/xyz/openbmc_project/object_mapper", |
| 245 | "xyz.openbmc_project.ObjectMapper", "GetSubTree", "/", 0, |
| 246 | std::array<const char*, 1>{"xyz.openbmc_project.FruDevice"}); |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 247 | |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 248 | if (ec) |
| 249 | { |
| 250 | phosphor::logging::log<phosphor::logging::level::ERR>( |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 251 | "GetSubTree failed for FruDevice Interface ", |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 252 | phosphor::logging::entry("ERROR=%s", ec.message().c_str())); |
| 253 | |
| 254 | return; |
| 255 | } |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 256 | // Get List of services which have implemented FruDevice interface |
| 257 | std::unordered_set<std::string> services; |
| 258 | for (const auto& [path, serviceMap] : fruServices) |
| 259 | { |
| 260 | for (const auto& [service, interfaces] : serviceMap) |
| 261 | { |
| 262 | services.insert(service); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | // GetAll the objects under services which implement FruDevice interface |
| 267 | for (const std::string& service : services) |
| 268 | { |
| 269 | ec = boost::system::errc::make_error_code(boost::system::errc::success); |
| 270 | ManagedObjectType obj = bus->yield_method_call<ManagedObjectType>( |
| 271 | yield, ec, service, "/", "org.freedesktop.DBus.ObjectManager", |
| 272 | "GetManagedObjects"); |
| 273 | if (ec) |
| 274 | { |
| 275 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 276 | "GetMangagedObjects failed", |
| 277 | phosphor::logging::entry("ERROR=%s", ec.message().c_str())); |
| 278 | continue; |
| 279 | } |
| 280 | // Save the object path which has FruDevice interface |
| 281 | for (const auto& [path, serviceMap] : fruServices) |
| 282 | { |
| 283 | for (const auto& serv : serviceMap) |
| 284 | { |
| 285 | if (serv.first == service) |
| 286 | { |
| 287 | auto fru = obj.find(path); |
| 288 | if (fru == obj.end()) |
| 289 | { |
| 290 | continue; |
| 291 | } |
| 292 | frus.emplace(fru->first, fru->second); |
| 293 | } |
| 294 | } |
| 295 | } |
| 296 | } |
| 297 | |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 298 | recalculateHashes(); |
| 299 | } |
| 300 | |
| 301 | ipmi::Cc getFru(ipmi::Context::ptr ctx, uint8_t devId) |
| 302 | { |
| 303 | if (lastDevId == devId && devId != 0xFF) |
| 304 | { |
| 305 | return ipmi::ccSuccess; |
| 306 | } |
| 307 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 308 | auto deviceFind = deviceHashes.find(devId); |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 309 | auto devPath = devicePath.find(devId); |
| 310 | if (deviceFind == deviceHashes.end() || devPath == devicePath.end()) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 311 | { |
| 312 | return IPMI_CC_SENSOR_INVALID; |
| 313 | } |
| 314 | |
| 315 | fruCache.clear(); |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 316 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 317 | cacheBus = deviceFind->second.first; |
| 318 | cacheAddr = deviceFind->second.second; |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 319 | |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 320 | boost::system::error_code ec; |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 321 | GetObjectType fruService = ctx->bus->yield_method_call<GetObjectType>( |
| 322 | ctx->yield, ec, "xyz.openbmc_project.ObjectMapper", |
| 323 | "/xyz/openbmc_project/object_mapper", |
| 324 | "xyz.openbmc_project.ObjectMapper", "GetObject", devPath->second, |
| 325 | std::array<const char*, 1>{"xyz.openbmc_project.FruDevice"}); |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 326 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 327 | if (ec) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 328 | { |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 329 | phosphor::logging::log<phosphor::logging::level::ERR>( |
Archana Kakani | f23fd54 | 2021-09-16 05:05:10 +0000 | [diff] [blame] | 330 | "Couldn't get raw fru because of service", |
| 331 | phosphor::logging::entry("ERROR=%s", ec.message().c_str())); |
| 332 | return ipmi::ccResponseError; |
| 333 | } |
| 334 | |
| 335 | bool foundFru = false; |
| 336 | for (auto& service : fruService) |
| 337 | { |
| 338 | fruCache = ctx->bus->yield_method_call<std::vector<uint8_t>>( |
| 339 | ctx->yield, ec, service.first, "/xyz/openbmc_project/FruDevice", |
| 340 | "xyz.openbmc_project.FruDeviceManager", "GetRawFru", cacheBus, |
| 341 | cacheAddr); |
| 342 | |
| 343 | if (!ec) |
| 344 | { |
| 345 | foundFru = true; |
| 346 | break; |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | if (!foundFru) |
| 351 | { |
| 352 | phosphor::logging::log<phosphor::logging::level::ERR>( |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 353 | "Couldn't get raw fru", |
| 354 | phosphor::logging::entry("ERROR=%s", ec.message().c_str())); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 355 | cacheBus = 0xFF; |
| 356 | cacheAddr = 0xFF; |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 357 | return ipmi::ccResponseError; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | lastDevId = devId; |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 361 | return ipmi::ccSuccess; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 362 | } |
| 363 | |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 364 | void writeFruIfRunning() |
| 365 | { |
| 366 | if (!writeTimer->isRunning()) |
| 367 | { |
| 368 | return; |
| 369 | } |
| 370 | writeTimer->stop(); |
| 371 | writeFru(); |
| 372 | } |
| 373 | |
| 374 | void startMatch(void) |
| 375 | { |
| 376 | if (fruMatches.size()) |
| 377 | { |
| 378 | return; |
| 379 | } |
| 380 | |
| 381 | fruMatches.reserve(2); |
| 382 | |
| 383 | auto bus = getSdBus(); |
| 384 | fruMatches.emplace_back(*bus, |
| 385 | "type='signal',arg0path='/xyz/openbmc_project/" |
| 386 | "FruDevice/',member='InterfacesAdded'", |
| 387 | [](sdbusplus::message::message& message) { |
| 388 | sdbusplus::message::object_path path; |
| 389 | ObjectType object; |
| 390 | try |
| 391 | { |
| 392 | message.read(path, object); |
| 393 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 394 | catch (const sdbusplus::exception_t&) |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 395 | { |
| 396 | return; |
| 397 | } |
| 398 | auto findType = object.find( |
| 399 | "xyz.openbmc_project.FruDevice"); |
| 400 | if (findType == object.end()) |
| 401 | { |
| 402 | return; |
| 403 | } |
| 404 | writeFruIfRunning(); |
| 405 | frus[path] = object; |
| 406 | recalculateHashes(); |
| 407 | lastDevId = 0xFF; |
| 408 | }); |
| 409 | |
| 410 | fruMatches.emplace_back(*bus, |
| 411 | "type='signal',arg0path='/xyz/openbmc_project/" |
| 412 | "FruDevice/',member='InterfacesRemoved'", |
| 413 | [](sdbusplus::message::message& message) { |
| 414 | sdbusplus::message::object_path path; |
| 415 | std::set<std::string> interfaces; |
| 416 | try |
| 417 | { |
| 418 | message.read(path, interfaces); |
| 419 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 420 | catch (const sdbusplus::exception_t&) |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 421 | { |
| 422 | return; |
| 423 | } |
| 424 | auto findType = interfaces.find( |
| 425 | "xyz.openbmc_project.FruDevice"); |
| 426 | if (findType == interfaces.end()) |
| 427 | { |
| 428 | return; |
| 429 | } |
| 430 | writeFruIfRunning(); |
| 431 | frus.erase(path); |
| 432 | recalculateHashes(); |
| 433 | lastDevId = 0xFF; |
| 434 | }); |
| 435 | |
| 436 | // call once to populate |
| 437 | boost::asio::spawn(*getIoContext(), [](boost::asio::yield_context yield) { |
| 438 | replaceCacheFru(getSdBus(), yield); |
| 439 | }); |
| 440 | } |
| 441 | |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 442 | /** @brief implements the read FRU data command |
| 443 | * @param fruDeviceId - FRU Device ID |
| 444 | * @param fruInventoryOffset - FRU Inventory Offset to write |
| 445 | * @param countToRead - Count to read |
| 446 | * |
| 447 | * @returns ipmi completion code plus response data |
| 448 | * - countWritten - Count written |
| 449 | */ |
| 450 | ipmi::RspType<uint8_t, // Count |
| 451 | std::vector<uint8_t> // Requested data |
| 452 | > |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 453 | ipmiStorageReadFruData(ipmi::Context::ptr ctx, uint8_t fruDeviceId, |
| 454 | uint16_t fruInventoryOffset, uint8_t countToRead) |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 455 | { |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 456 | if (fruDeviceId == 0xFF) |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 457 | { |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 458 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 459 | } |
| 460 | |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 461 | ipmi::Cc status = getFru(ctx, fruDeviceId); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 462 | |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 463 | if (status != ipmi::ccSuccess) |
| 464 | { |
| 465 | return ipmi::response(status); |
| 466 | } |
| 467 | |
| 468 | size_t fromFruByteLen = 0; |
| 469 | if (countToRead + fruInventoryOffset < fruCache.size()) |
| 470 | { |
| 471 | fromFruByteLen = countToRead; |
| 472 | } |
| 473 | else if (fruCache.size() > fruInventoryOffset) |
| 474 | { |
| 475 | fromFruByteLen = fruCache.size() - fruInventoryOffset; |
| 476 | } |
| 477 | else |
| 478 | { |
srikanta mondal | 9210838 | 2020-02-27 18:53:20 +0000 | [diff] [blame] | 479 | return ipmi::responseReqDataLenExceeded(); |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | std::vector<uint8_t> requestedData; |
| 483 | |
| 484 | requestedData.insert( |
| 485 | requestedData.begin(), fruCache.begin() + fruInventoryOffset, |
| 486 | fruCache.begin() + fruInventoryOffset + fromFruByteLen); |
| 487 | |
Patrick Venture | 70b17f9 | 2019-10-28 20:01:53 -0700 | [diff] [blame] | 488 | return ipmi::responseSuccess(static_cast<uint8_t>(requestedData.size()), |
| 489 | requestedData); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 490 | } |
| 491 | |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 492 | /** @brief implements the write FRU data command |
| 493 | * @param fruDeviceId - FRU Device ID |
| 494 | * @param fruInventoryOffset - FRU Inventory Offset to write |
| 495 | * @param dataToWrite - Data to write |
| 496 | * |
| 497 | * @returns ipmi completion code plus response data |
| 498 | * - countWritten - Count written |
| 499 | */ |
| 500 | ipmi::RspType<uint8_t> |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 501 | ipmiStorageWriteFruData(ipmi::Context::ptr ctx, uint8_t fruDeviceId, |
| 502 | uint16_t fruInventoryOffset, |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 503 | std::vector<uint8_t>& dataToWrite) |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 504 | { |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 505 | if (fruDeviceId == 0xFF) |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 506 | { |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 507 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 508 | } |
| 509 | |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 510 | size_t writeLen = dataToWrite.size(); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 511 | |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 512 | ipmi::Cc status = getFru(ctx, fruDeviceId); |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 513 | if (status != ipmi::ccSuccess) |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 514 | { |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 515 | return ipmi::response(status); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 516 | } |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 517 | int lastWriteAddr = fruInventoryOffset + writeLen; |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 518 | if (fruCache.size() < lastWriteAddr) |
| 519 | { |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 520 | fruCache.resize(fruInventoryOffset + writeLen); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 521 | } |
| 522 | |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 523 | std::copy(dataToWrite.begin(), dataToWrite.begin() + writeLen, |
| 524 | fruCache.begin() + fruInventoryOffset); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 525 | |
| 526 | bool atEnd = false; |
| 527 | |
| 528 | if (fruCache.size() >= sizeof(FRUHeader)) |
| 529 | { |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 530 | FRUHeader* header = reinterpret_cast<FRUHeader*>(fruCache.data()); |
| 531 | |
Peter Lundgren | c59391f | 2019-11-19 14:26:15 -0800 | [diff] [blame] | 532 | int areaLength = 0; |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 533 | int lastRecordStart = std::max( |
Peter Lundgren | c59391f | 2019-11-19 14:26:15 -0800 | [diff] [blame] | 534 | {header->internalOffset, header->chassisOffset, header->boardOffset, |
| 535 | header->productOffset, header->multiRecordOffset}); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 536 | lastRecordStart *= 8; // header starts in are multiples of 8 bytes |
| 537 | |
Peter Lundgren | c59391f | 2019-11-19 14:26:15 -0800 | [diff] [blame] | 538 | if (header->multiRecordOffset) |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 539 | { |
Peter Lundgren | c59391f | 2019-11-19 14:26:15 -0800 | [diff] [blame] | 540 | // This FRU has a MultiRecord Area |
| 541 | uint8_t endOfList = 0; |
| 542 | // Walk the MultiRecord headers until the last record |
| 543 | while (!endOfList) |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 544 | { |
Peter Lundgren | c59391f | 2019-11-19 14:26:15 -0800 | [diff] [blame] | 545 | // The MSB in the second byte of the MultiRecord header signals |
| 546 | // "End of list" |
| 547 | endOfList = fruCache[lastRecordStart + 1] & 0x80; |
| 548 | // Third byte in the MultiRecord header is the length |
| 549 | areaLength = fruCache[lastRecordStart + 2]; |
| 550 | // This length is in bytes (not 8 bytes like other headers) |
| 551 | areaLength += 5; // The length omits the 5 byte header |
| 552 | if (!endOfList) |
| 553 | { |
| 554 | // Next MultiRecord header |
| 555 | lastRecordStart += areaLength; |
| 556 | } |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 557 | } |
| 558 | } |
Peter Lundgren | c59391f | 2019-11-19 14:26:15 -0800 | [diff] [blame] | 559 | else |
| 560 | { |
| 561 | // This FRU does not have a MultiRecord Area |
| 562 | // Get the length of the area in multiples of 8 bytes |
| 563 | if (lastWriteAddr > (lastRecordStart + 1)) |
| 564 | { |
| 565 | // second byte in record area is the length |
| 566 | areaLength = fruCache[lastRecordStart + 1]; |
| 567 | areaLength *= 8; // it is in multiples of 8 bytes |
| 568 | } |
| 569 | } |
| 570 | if (lastWriteAddr >= (areaLength + lastRecordStart)) |
| 571 | { |
| 572 | atEnd = true; |
| 573 | } |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 574 | } |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 575 | uint8_t countWritten = 0; |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 576 | |
| 577 | writeBus = cacheBus; |
| 578 | writeAddr = cacheAddr; |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 579 | if (atEnd) |
| 580 | { |
| 581 | // cancel timer, we're at the end so might as well send it |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 582 | writeTimer->stop(); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 583 | if (!writeFru()) |
| 584 | { |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 585 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 586 | } |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 587 | countWritten = std::min(fruCache.size(), static_cast<size_t>(0xFF)); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 588 | } |
| 589 | else |
| 590 | { |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 591 | // start a timer, if no further data is sent to check to see if it is |
| 592 | // valid |
| 593 | writeTimer->start(std::chrono::duration_cast<std::chrono::microseconds>( |
| 594 | std::chrono::seconds(writeTimeoutSeconds))); |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 595 | countWritten = 0; |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 596 | } |
| 597 | |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 598 | return ipmi::responseSuccess(countWritten); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 599 | } |
| 600 | |
jayaprakash Mutyala | d33acd6 | 2019-05-17 19:37:25 +0000 | [diff] [blame] | 601 | /** @brief implements the get FRU inventory area info command |
| 602 | * @param fruDeviceId - FRU Device ID |
| 603 | * |
| 604 | * @returns IPMI completion code plus response data |
| 605 | * - inventorySize - Number of possible allocation units |
| 606 | * - accessType - Allocation unit size in bytes. |
| 607 | */ |
| 608 | ipmi::RspType<uint16_t, // inventorySize |
| 609 | uint8_t> // accessType |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 610 | ipmiStorageGetFruInvAreaInfo(ipmi::Context::ptr ctx, uint8_t fruDeviceId) |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 611 | { |
jayaprakash Mutyala | d33acd6 | 2019-05-17 19:37:25 +0000 | [diff] [blame] | 612 | if (fruDeviceId == 0xFF) |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 613 | { |
jayaprakash Mutyala | d33acd6 | 2019-05-17 19:37:25 +0000 | [diff] [blame] | 614 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 615 | } |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 616 | |
Jayaprakash Mutyala | 1e2ab06 | 2020-08-03 16:57:00 +0000 | [diff] [blame] | 617 | ipmi::Cc ret = getFru(ctx, fruDeviceId); |
| 618 | if (ret != ipmi::ccSuccess) |
| 619 | { |
| 620 | return ipmi::response(ret); |
| 621 | } |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 622 | |
jayaprakash Mutyala | d33acd6 | 2019-05-17 19:37:25 +0000 | [diff] [blame] | 623 | constexpr uint8_t accessType = |
| 624 | static_cast<uint8_t>(GetFRUAreaAccessType::byte); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 625 | |
jayaprakash Mutyala | d33acd6 | 2019-05-17 19:37:25 +0000 | [diff] [blame] | 626 | return ipmi::responseSuccess(fruCache.size(), accessType); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 627 | } |
| 628 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 629 | ipmi_ret_t getFruSdrCount(ipmi::Context::ptr ctx, size_t& count) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 630 | { |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 631 | count = deviceHashes.size(); |
| 632 | return IPMI_CC_OK; |
| 633 | } |
| 634 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 635 | ipmi_ret_t getFruSdrs(ipmi::Context::ptr ctx, size_t index, |
| 636 | get_sdr::SensorDataFruRecord& resp) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 637 | { |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 638 | if (deviceHashes.size() < index) |
| 639 | { |
| 640 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 641 | } |
| 642 | auto device = deviceHashes.begin() + index; |
| 643 | uint8_t& bus = device->second.first; |
| 644 | uint8_t& address = device->second.second; |
| 645 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 646 | boost::container::flat_map<std::string, DbusVariant>* fruData = nullptr; |
| 647 | auto fru = |
| 648 | std::find_if(frus.begin(), frus.end(), |
| 649 | [bus, address, &fruData](ManagedEntry& entry) { |
| 650 | auto findFruDevice = |
| 651 | entry.second.find("xyz.openbmc_project.FruDevice"); |
| 652 | if (findFruDevice == entry.second.end()) |
| 653 | { |
| 654 | return false; |
| 655 | } |
| 656 | fruData = &(findFruDevice->second); |
| 657 | auto findBus = findFruDevice->second.find("BUS"); |
| 658 | auto findAddress = |
| 659 | findFruDevice->second.find("ADDRESS"); |
| 660 | if (findBus == findFruDevice->second.end() || |
| 661 | findAddress == findFruDevice->second.end()) |
| 662 | { |
| 663 | return false; |
| 664 | } |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 665 | if (std::get<uint32_t>(findBus->second) != bus) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 666 | { |
| 667 | return false; |
| 668 | } |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 669 | if (std::get<uint32_t>(findAddress->second) != address) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 670 | { |
| 671 | return false; |
| 672 | } |
| 673 | return true; |
| 674 | }); |
| 675 | if (fru == frus.end()) |
| 676 | { |
| 677 | return IPMI_CC_RESPONSE_ERROR; |
| 678 | } |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 679 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 680 | #ifdef USING_ENTITY_MANAGER_DECORATORS |
| 681 | |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 682 | boost::container::flat_map<std::string, DbusVariant>* entityData = nullptr; |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 683 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 684 | // todo: this should really use caching, this is a very inefficient lookup |
| 685 | boost::system::error_code ec; |
| 686 | ManagedObjectType entities = ctx->bus->yield_method_call<ManagedObjectType>( |
| 687 | ctx->yield, ec, entityManagerServiceName, "/", |
| 688 | "org.freedesktop.DBus.ObjectManager", "GetManagedObjects"); |
| 689 | |
| 690 | if (ec) |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 691 | { |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 692 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 693 | "GetMangagedObjects for getSensorMap failed", |
| 694 | phosphor::logging::entry("ERROR=%s", ec.message().c_str())); |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 695 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 696 | return ipmi::ccResponseError; |
| 697 | } |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 698 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 699 | auto entity = std::find_if( |
| 700 | entities.begin(), entities.end(), |
| 701 | [bus, address, &entityData](ManagedEntry& entry) { |
| 702 | auto findFruDevice = entry.second.find( |
| 703 | "xyz.openbmc_project.Inventory.Decorator.FruDevice"); |
| 704 | if (findFruDevice == entry.second.end()) |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 705 | { |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 706 | return false; |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 707 | } |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 708 | |
| 709 | // Integer fields added via Entity-Manager json are uint64_ts by |
| 710 | // default. |
| 711 | auto findBus = findFruDevice->second.find("Bus"); |
| 712 | auto findAddress = findFruDevice->second.find("Address"); |
| 713 | |
| 714 | if (findBus == findFruDevice->second.end() || |
| 715 | findAddress == findFruDevice->second.end()) |
| 716 | { |
| 717 | return false; |
| 718 | } |
| 719 | if ((std::get<uint64_t>(findBus->second) != bus) || |
| 720 | (std::get<uint64_t>(findAddress->second) != address)) |
| 721 | { |
| 722 | return false; |
| 723 | } |
| 724 | |
| 725 | // At this point we found the device entry and should return |
| 726 | // true. |
| 727 | auto findIpmiDevice = entry.second.find( |
| 728 | "xyz.openbmc_project.Inventory.Decorator.Ipmi"); |
| 729 | if (findIpmiDevice != entry.second.end()) |
| 730 | { |
| 731 | entityData = &(findIpmiDevice->second); |
| 732 | } |
| 733 | |
| 734 | return true; |
| 735 | }); |
| 736 | |
| 737 | if (entity == entities.end()) |
| 738 | { |
| 739 | if constexpr (DEBUG) |
| 740 | { |
| 741 | std::fprintf(stderr, "Ipmi or FruDevice Decorator interface " |
| 742 | "not found for Fru\n"); |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 743 | } |
| 744 | } |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 745 | |
| 746 | #endif |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 747 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 748 | std::string name; |
| 749 | auto findProductName = fruData->find("BOARD_PRODUCT_NAME"); |
| 750 | auto findBoardName = fruData->find("PRODUCT_PRODUCT_NAME"); |
| 751 | if (findProductName != fruData->end()) |
| 752 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 753 | name = std::get<std::string>(findProductName->second); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 754 | } |
| 755 | else if (findBoardName != fruData->end()) |
| 756 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 757 | name = std::get<std::string>(findBoardName->second); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 758 | } |
| 759 | else |
| 760 | { |
| 761 | name = "UNKNOWN"; |
| 762 | } |
| 763 | if (name.size() > maxFruSdrNameSize) |
| 764 | { |
| 765 | name = name.substr(0, maxFruSdrNameSize); |
| 766 | } |
| 767 | size_t sizeDiff = maxFruSdrNameSize - name.size(); |
| 768 | |
| 769 | resp.header.record_id_lsb = 0x0; // calling code is to implement these |
| 770 | resp.header.record_id_msb = 0x0; |
| 771 | resp.header.sdr_version = ipmiSdrVersion; |
Patrick Venture | 73d0135 | 2019-10-11 18:32:59 -0700 | [diff] [blame] | 772 | resp.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 773 | resp.header.record_length = sizeof(resp.body) + sizeof(resp.key) - sizeDiff; |
| 774 | resp.key.deviceAddress = 0x20; |
| 775 | resp.key.fruID = device->first; |
| 776 | resp.key.accessLun = 0x80; // logical / physical fru device |
| 777 | resp.key.channelNumber = 0x0; |
| 778 | resp.body.reserved = 0x0; |
| 779 | resp.body.deviceType = 0x10; |
James Feist | 4f86d1f | 2019-04-03 10:30:26 -0700 | [diff] [blame] | 780 | resp.body.deviceTypeModifier = 0x0; |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 781 | |
| 782 | uint8_t entityID = 0; |
| 783 | uint8_t entityInstance = 0x1; |
| 784 | |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 785 | #ifdef USING_ENTITY_MANAGER_DECORATORS |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 786 | if (entityData) |
| 787 | { |
| 788 | auto entityIdProperty = entityData->find("EntityId"); |
| 789 | auto entityInstanceProperty = entityData->find("EntityInstance"); |
| 790 | |
| 791 | if (entityIdProperty != entityData->end()) |
| 792 | { |
| 793 | entityID = static_cast<uint8_t>( |
| 794 | std::get<uint64_t>(entityIdProperty->second)); |
| 795 | } |
| 796 | if (entityInstanceProperty != entityData->end()) |
| 797 | { |
| 798 | entityInstance = static_cast<uint8_t>( |
| 799 | std::get<uint64_t>(entityInstanceProperty->second)); |
| 800 | } |
| 801 | } |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 802 | #endif |
Patrick Venture | 9ce789f | 2019-10-17 09:09:39 -0700 | [diff] [blame] | 803 | |
| 804 | resp.body.entityID = entityID; |
| 805 | resp.body.entityInstance = entityInstance; |
| 806 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 807 | resp.body.oem = 0x0; |
| 808 | resp.body.deviceIDLen = name.size(); |
| 809 | name.copy(resp.body.deviceID, name.size()); |
| 810 | |
| 811 | return IPMI_CC_OK; |
| 812 | } |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 813 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 814 | static bool getSELLogFiles(std::vector<std::filesystem::path>& selLogFiles) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 815 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 816 | // Loop through the directory looking for ipmi_sel log files |
| 817 | for (const std::filesystem::directory_entry& dirEnt : |
| 818 | std::filesystem::directory_iterator(intel_oem::ipmi::sel::selLogDir)) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 819 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 820 | std::string filename = dirEnt.path().filename(); |
| 821 | if (boost::starts_with(filename, intel_oem::ipmi::sel::selLogFilename)) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 822 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 823 | // If we find an ipmi_sel log file, save the path |
| 824 | selLogFiles.emplace_back(intel_oem::ipmi::sel::selLogDir / |
| 825 | filename); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 826 | } |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 827 | } |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 828 | // As the log files rotate, they are appended with a ".#" that is higher for |
| 829 | // the older logs. Since we don't expect more than 10 log files, we |
| 830 | // can just sort the list to get them in order from newest to oldest |
| 831 | std::sort(selLogFiles.begin(), selLogFiles.end()); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 832 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 833 | return !selLogFiles.empty(); |
| 834 | } |
| 835 | |
| 836 | static int countSELEntries() |
| 837 | { |
| 838 | // Get the list of ipmi_sel log files |
| 839 | std::vector<std::filesystem::path> selLogFiles; |
| 840 | if (!getSELLogFiles(selLogFiles)) |
| 841 | { |
| 842 | return 0; |
| 843 | } |
| 844 | int numSELEntries = 0; |
| 845 | // Loop through each log file and count the number of logs |
| 846 | for (const std::filesystem::path& file : selLogFiles) |
| 847 | { |
| 848 | std::ifstream logStream(file); |
| 849 | if (!logStream.is_open()) |
| 850 | { |
| 851 | continue; |
| 852 | } |
| 853 | |
| 854 | std::string line; |
| 855 | while (std::getline(logStream, line)) |
| 856 | { |
| 857 | numSELEntries++; |
| 858 | } |
| 859 | } |
| 860 | return numSELEntries; |
| 861 | } |
| 862 | |
| 863 | static bool findSELEntry(const int recordID, |
Patrick Venture | ff7e15b | 2019-09-25 16:48:26 -0700 | [diff] [blame] | 864 | const std::vector<std::filesystem::path>& selLogFiles, |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 865 | std::string& entry) |
| 866 | { |
| 867 | // Record ID is the first entry field following the timestamp. It is |
| 868 | // preceded by a space and followed by a comma |
| 869 | std::string search = " " + std::to_string(recordID) + ","; |
| 870 | |
| 871 | // Loop through the ipmi_sel log entries |
| 872 | for (const std::filesystem::path& file : selLogFiles) |
| 873 | { |
| 874 | std::ifstream logStream(file); |
| 875 | if (!logStream.is_open()) |
| 876 | { |
| 877 | continue; |
| 878 | } |
| 879 | |
| 880 | while (std::getline(logStream, entry)) |
| 881 | { |
| 882 | // Check if the record ID matches |
| 883 | if (entry.find(search) != std::string::npos) |
| 884 | { |
| 885 | return true; |
| 886 | } |
| 887 | } |
| 888 | } |
| 889 | return false; |
| 890 | } |
| 891 | |
| 892 | static uint16_t |
| 893 | getNextRecordID(const uint16_t recordID, |
Patrick Venture | ff7e15b | 2019-09-25 16:48:26 -0700 | [diff] [blame] | 894 | const std::vector<std::filesystem::path>& selLogFiles) |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 895 | { |
| 896 | uint16_t nextRecordID = recordID + 1; |
| 897 | std::string entry; |
| 898 | if (findSELEntry(nextRecordID, selLogFiles, entry)) |
| 899 | { |
| 900 | return nextRecordID; |
| 901 | } |
| 902 | else |
| 903 | { |
| 904 | return ipmi::sel::lastEntry; |
| 905 | } |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 906 | } |
| 907 | |
Patrick Venture | ff7e15b | 2019-09-25 16:48:26 -0700 | [diff] [blame] | 908 | static int fromHexStr(const std::string& hexStr, std::vector<uint8_t>& data) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 909 | { |
| 910 | for (unsigned int i = 0; i < hexStr.size(); i += 2) |
| 911 | { |
| 912 | try |
| 913 | { |
| 914 | data.push_back(static_cast<uint8_t>( |
| 915 | std::stoul(hexStr.substr(i, 2), nullptr, 16))); |
| 916 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 917 | catch (const std::invalid_argument& e) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 918 | { |
| 919 | phosphor::logging::log<phosphor::logging::level::ERR>(e.what()); |
| 920 | return -1; |
| 921 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 922 | catch (const std::out_of_range& e) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 923 | { |
| 924 | phosphor::logging::log<phosphor::logging::level::ERR>(e.what()); |
| 925 | return -1; |
| 926 | } |
| 927 | } |
| 928 | return 0; |
| 929 | } |
| 930 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 931 | ipmi::RspType<uint8_t, // SEL version |
| 932 | uint16_t, // SEL entry count |
| 933 | uint16_t, // free space |
| 934 | uint32_t, // last add timestamp |
| 935 | uint32_t, // last erase timestamp |
| 936 | uint8_t> // operation support |
| 937 | ipmiStorageGetSELInfo() |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 938 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 939 | constexpr uint8_t selVersion = ipmi::sel::selVersion; |
| 940 | uint16_t entries = countSELEntries(); |
| 941 | uint32_t addTimeStamp = intel_oem::ipmi::sel::getFileTimestamp( |
| 942 | intel_oem::ipmi::sel::selLogDir / intel_oem::ipmi::sel::selLogFilename); |
| 943 | uint32_t eraseTimeStamp = intel_oem::ipmi::sel::erase_time::get(); |
| 944 | constexpr uint8_t operationSupport = |
| 945 | intel_oem::ipmi::sel::selOperationSupport; |
| 946 | constexpr uint16_t freeSpace = |
| 947 | 0xffff; // Spec indicates that more than 64kB is free |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 948 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 949 | return ipmi::responseSuccess(selVersion, entries, freeSpace, addTimeStamp, |
| 950 | eraseTimeStamp, operationSupport); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 951 | } |
| 952 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 953 | using systemEventType = std::tuple< |
| 954 | uint32_t, // Timestamp |
| 955 | uint16_t, // Generator ID |
| 956 | uint8_t, // EvM Rev |
| 957 | uint8_t, // Sensor Type |
| 958 | uint8_t, // Sensor Number |
| 959 | uint7_t, // Event Type |
| 960 | bool, // Event Direction |
| 961 | std::array<uint8_t, intel_oem::ipmi::sel::systemEventSize>>; // Event Data |
| 962 | using oemTsEventType = std::tuple< |
| 963 | uint32_t, // Timestamp |
| 964 | std::array<uint8_t, intel_oem::ipmi::sel::oemTsEventSize>>; // Event Data |
| 965 | using oemEventType = |
| 966 | std::array<uint8_t, intel_oem::ipmi::sel::oemEventSize>; // Event Data |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 967 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 968 | ipmi::RspType<uint16_t, // Next Record ID |
| 969 | uint16_t, // Record ID |
| 970 | uint8_t, // Record Type |
| 971 | std::variant<systemEventType, oemTsEventType, |
| 972 | oemEventType>> // Record Content |
| 973 | ipmiStorageGetSELEntry(uint16_t reservationID, uint16_t targetID, |
| 974 | uint8_t offset, uint8_t size) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 975 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 976 | // Only support getting the entire SEL record. If a partial size or non-zero |
| 977 | // offset is requested, return an error |
| 978 | if (offset != 0 || size != ipmi::sel::entireRecord) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 979 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 980 | return ipmi::responseRetBytesUnavailable(); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 981 | } |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 982 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 983 | // Check the reservation ID if one is provided or required (only if the |
| 984 | // offset is non-zero) |
| 985 | if (reservationID != 0 || offset != 0) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 986 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 987 | if (!checkSELReservation(reservationID)) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 988 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 989 | return ipmi::responseInvalidReservationId(); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 990 | } |
| 991 | } |
| 992 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 993 | // Get the ipmi_sel log files |
| 994 | std::vector<std::filesystem::path> selLogFiles; |
| 995 | if (!getSELLogFiles(selLogFiles)) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 996 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 997 | return ipmi::responseSensorInvalid(); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 998 | } |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 999 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1000 | std::string targetEntry; |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1001 | |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1002 | if (targetID == ipmi::sel::firstEntry) |
| 1003 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1004 | // The first entry will be at the top of the oldest log file |
| 1005 | std::ifstream logStream(selLogFiles.back()); |
| 1006 | if (!logStream.is_open()) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1007 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1008 | return ipmi::responseUnspecifiedError(); |
| 1009 | } |
| 1010 | |
| 1011 | if (!std::getline(logStream, targetEntry)) |
| 1012 | { |
| 1013 | return ipmi::responseUnspecifiedError(); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1014 | } |
| 1015 | } |
| 1016 | else if (targetID == ipmi::sel::lastEntry) |
| 1017 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1018 | // The last entry will be at the bottom of the newest log file |
| 1019 | std::ifstream logStream(selLogFiles.front()); |
| 1020 | if (!logStream.is_open()) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1021 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1022 | return ipmi::responseUnspecifiedError(); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1023 | } |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1024 | |
| 1025 | std::string line; |
| 1026 | while (std::getline(logStream, line)) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1027 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1028 | targetEntry = line; |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1029 | } |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1030 | } |
| 1031 | else |
| 1032 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1033 | if (!findSELEntry(targetID, selLogFiles, targetEntry)) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1034 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1035 | return ipmi::responseSensorInvalid(); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1036 | } |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1037 | } |
| 1038 | |
Jason M. Bills | 52aaa7d | 2019-05-08 15:21:39 -0700 | [diff] [blame] | 1039 | // The format of the ipmi_sel message is "<Timestamp> |
| 1040 | // <ID>,<Type>,<EventData>,[<Generator ID>,<Path>,<Direction>]". |
| 1041 | // First get the Timestamp |
| 1042 | size_t space = targetEntry.find_first_of(" "); |
| 1043 | if (space == std::string::npos) |
| 1044 | { |
| 1045 | return ipmi::responseUnspecifiedError(); |
| 1046 | } |
| 1047 | std::string entryTimestamp = targetEntry.substr(0, space); |
| 1048 | // Then get the log contents |
| 1049 | size_t entryStart = targetEntry.find_first_not_of(" ", space); |
| 1050 | if (entryStart == std::string::npos) |
| 1051 | { |
| 1052 | return ipmi::responseUnspecifiedError(); |
| 1053 | } |
| 1054 | std::string_view entry(targetEntry); |
| 1055 | entry.remove_prefix(entryStart); |
| 1056 | // Use split to separate the entry into its fields |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1057 | std::vector<std::string> targetEntryFields; |
Jason M. Bills | 52aaa7d | 2019-05-08 15:21:39 -0700 | [diff] [blame] | 1058 | boost::split(targetEntryFields, entry, boost::is_any_of(","), |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1059 | boost::token_compress_on); |
Jason M. Bills | 52aaa7d | 2019-05-08 15:21:39 -0700 | [diff] [blame] | 1060 | if (targetEntryFields.size() < 3) |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1061 | { |
| 1062 | return ipmi::responseUnspecifiedError(); |
| 1063 | } |
Jason M. Bills | 1a2fbdd | 2019-05-10 09:05:37 -0700 | [diff] [blame] | 1064 | std::string& recordIDStr = targetEntryFields[0]; |
| 1065 | std::string& recordTypeStr = targetEntryFields[1]; |
| 1066 | std::string& eventDataStr = targetEntryFields[2]; |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1067 | |
Jason M. Bills | 1a2fbdd | 2019-05-10 09:05:37 -0700 | [diff] [blame] | 1068 | uint16_t recordID; |
| 1069 | uint8_t recordType; |
| 1070 | try |
| 1071 | { |
| 1072 | recordID = std::stoul(recordIDStr); |
| 1073 | recordType = std::stoul(recordTypeStr, nullptr, 16); |
| 1074 | } |
| 1075 | catch (const std::invalid_argument&) |
| 1076 | { |
| 1077 | return ipmi::responseUnspecifiedError(); |
| 1078 | } |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1079 | uint16_t nextRecordID = getNextRecordID(recordID, selLogFiles); |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1080 | std::vector<uint8_t> eventDataBytes; |
Jason M. Bills | 1a2fbdd | 2019-05-10 09:05:37 -0700 | [diff] [blame] | 1081 | if (fromHexStr(eventDataStr, eventDataBytes) < 0) |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1082 | { |
| 1083 | return ipmi::responseUnspecifiedError(); |
| 1084 | } |
| 1085 | |
| 1086 | if (recordType == intel_oem::ipmi::sel::systemEvent) |
| 1087 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1088 | // Get the timestamp |
| 1089 | std::tm timeStruct = {}; |
Jason M. Bills | 52aaa7d | 2019-05-08 15:21:39 -0700 | [diff] [blame] | 1090 | std::istringstream entryStream(entryTimestamp); |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1091 | |
| 1092 | uint32_t timestamp = ipmi::sel::invalidTimeStamp; |
| 1093 | if (entryStream >> std::get_time(&timeStruct, "%Y-%m-%dT%H:%M:%S")) |
| 1094 | { |
| 1095 | timestamp = std::mktime(&timeStruct); |
| 1096 | } |
| 1097 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1098 | // Set the event message revision |
| 1099 | uint8_t evmRev = intel_oem::ipmi::sel::eventMsgRev; |
| 1100 | |
Jason M. Bills | 1a2fbdd | 2019-05-10 09:05:37 -0700 | [diff] [blame] | 1101 | uint16_t generatorID = 0; |
| 1102 | uint8_t sensorType = 0; |
Johnathan Mantey | 308c3a8 | 2020-07-22 11:50:54 -0700 | [diff] [blame] | 1103 | uint16_t sensorAndLun = 0; |
Jason M. Bills | 1a2fbdd | 2019-05-10 09:05:37 -0700 | [diff] [blame] | 1104 | uint8_t sensorNum = 0xFF; |
| 1105 | uint7_t eventType = 0; |
| 1106 | bool eventDir = 0; |
| 1107 | // System type events should have six fields |
| 1108 | if (targetEntryFields.size() >= 6) |
| 1109 | { |
| 1110 | std::string& generatorIDStr = targetEntryFields[3]; |
| 1111 | std::string& sensorPath = targetEntryFields[4]; |
| 1112 | std::string& eventDirStr = targetEntryFields[5]; |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1113 | |
Jason M. Bills | 1a2fbdd | 2019-05-10 09:05:37 -0700 | [diff] [blame] | 1114 | // Get the generator ID |
| 1115 | try |
| 1116 | { |
| 1117 | generatorID = std::stoul(generatorIDStr, nullptr, 16); |
| 1118 | } |
| 1119 | catch (const std::invalid_argument&) |
| 1120 | { |
| 1121 | std::cerr << "Invalid Generator ID\n"; |
| 1122 | } |
| 1123 | |
| 1124 | // Get the sensor type, sensor number, and event type for the sensor |
| 1125 | sensorType = getSensorTypeFromPath(sensorPath); |
Johnathan Mantey | 308c3a8 | 2020-07-22 11:50:54 -0700 | [diff] [blame] | 1126 | sensorAndLun = getSensorNumberFromPath(sensorPath); |
| 1127 | sensorNum = static_cast<uint8_t>(sensorAndLun); |
| 1128 | generatorID |= sensorAndLun >> 8; |
Jason M. Bills | 1a2fbdd | 2019-05-10 09:05:37 -0700 | [diff] [blame] | 1129 | eventType = getSensorEventTypeFromPath(sensorPath); |
| 1130 | |
| 1131 | // Get the event direction |
| 1132 | try |
| 1133 | { |
| 1134 | eventDir = std::stoul(eventDirStr) ? 0 : 1; |
| 1135 | } |
| 1136 | catch (const std::invalid_argument&) |
| 1137 | { |
| 1138 | std::cerr << "Invalid Event Direction\n"; |
| 1139 | } |
| 1140 | } |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1141 | |
| 1142 | // Only keep the eventData bytes that fit in the record |
| 1143 | std::array<uint8_t, intel_oem::ipmi::sel::systemEventSize> eventData{}; |
| 1144 | std::copy_n(eventDataBytes.begin(), |
| 1145 | std::min(eventDataBytes.size(), eventData.size()), |
| 1146 | eventData.begin()); |
| 1147 | |
| 1148 | return ipmi::responseSuccess( |
| 1149 | nextRecordID, recordID, recordType, |
| 1150 | systemEventType{timestamp, generatorID, evmRev, sensorType, |
| 1151 | sensorNum, eventType, eventDir, eventData}); |
| 1152 | } |
| 1153 | else if (recordType >= intel_oem::ipmi::sel::oemTsEventFirst && |
| 1154 | recordType <= intel_oem::ipmi::sel::oemTsEventLast) |
| 1155 | { |
| 1156 | // Get the timestamp |
| 1157 | std::tm timeStruct = {}; |
Jason M. Bills | 52aaa7d | 2019-05-08 15:21:39 -0700 | [diff] [blame] | 1158 | std::istringstream entryStream(entryTimestamp); |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1159 | |
| 1160 | uint32_t timestamp = ipmi::sel::invalidTimeStamp; |
| 1161 | if (entryStream >> std::get_time(&timeStruct, "%Y-%m-%dT%H:%M:%S")) |
| 1162 | { |
| 1163 | timestamp = std::mktime(&timeStruct); |
| 1164 | } |
| 1165 | |
| 1166 | // Only keep the bytes that fit in the record |
| 1167 | std::array<uint8_t, intel_oem::ipmi::sel::oemTsEventSize> eventData{}; |
| 1168 | std::copy_n(eventDataBytes.begin(), |
| 1169 | std::min(eventDataBytes.size(), eventData.size()), |
| 1170 | eventData.begin()); |
| 1171 | |
| 1172 | return ipmi::responseSuccess(nextRecordID, recordID, recordType, |
| 1173 | oemTsEventType{timestamp, eventData}); |
| 1174 | } |
Patrick Venture | c5136aa | 2019-10-04 20:39:31 -0700 | [diff] [blame] | 1175 | else if (recordType >= intel_oem::ipmi::sel::oemEventFirst) |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1176 | { |
| 1177 | // Only keep the bytes that fit in the record |
| 1178 | std::array<uint8_t, intel_oem::ipmi::sel::oemEventSize> eventData{}; |
| 1179 | std::copy_n(eventDataBytes.begin(), |
| 1180 | std::min(eventDataBytes.size(), eventData.size()), |
| 1181 | eventData.begin()); |
| 1182 | |
| 1183 | return ipmi::responseSuccess(nextRecordID, recordID, recordType, |
| 1184 | eventData); |
| 1185 | } |
| 1186 | |
| 1187 | return ipmi::responseUnspecifiedError(); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1188 | } |
| 1189 | |
Jason M. Bills | 6dd8f04 | 2019-04-11 10:39:02 -0700 | [diff] [blame] | 1190 | ipmi::RspType<uint16_t> ipmiStorageAddSELEntry( |
| 1191 | uint16_t recordID, uint8_t recordType, uint32_t timestamp, |
| 1192 | uint16_t generatorID, uint8_t evmRev, uint8_t sensorType, uint8_t sensorNum, |
| 1193 | uint8_t eventType, uint8_t eventData1, uint8_t eventData2, |
| 1194 | uint8_t eventData3) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1195 | { |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1196 | // Per the IPMI spec, need to cancel any reservation when a SEL entry is |
| 1197 | // added |
| 1198 | cancelSELReservation(); |
| 1199 | |
Jason M. Bills | 6dd8f04 | 2019-04-11 10:39:02 -0700 | [diff] [blame] | 1200 | // Send this request to the Redfish hooks to log it as a Redfish message |
| 1201 | // instead. There is no need to add it to the SEL, so just return success. |
| 1202 | intel_oem::ipmi::sel::checkRedfishHooks( |
| 1203 | recordID, recordType, timestamp, generatorID, evmRev, sensorType, |
| 1204 | sensorNum, eventType, eventData1, eventData2, eventData3); |
Jason M. Bills | 99b78ec | 2019-01-18 10:42:18 -0800 | [diff] [blame] | 1205 | |
Jason M. Bills | 6dd8f04 | 2019-04-11 10:39:02 -0700 | [diff] [blame] | 1206 | uint16_t responseID = 0xFFFF; |
| 1207 | return ipmi::responseSuccess(responseID); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1208 | } |
| 1209 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1210 | ipmi::RspType<uint8_t> ipmiStorageClearSEL(ipmi::Context::ptr ctx, |
| 1211 | uint16_t reservationID, |
| 1212 | const std::array<uint8_t, 3>& clr, |
| 1213 | uint8_t eraseOperation) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1214 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1215 | if (!checkSELReservation(reservationID)) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1216 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1217 | return ipmi::responseInvalidReservationId(); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1218 | } |
| 1219 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1220 | static constexpr std::array<uint8_t, 3> clrExpected = {'C', 'L', 'R'}; |
| 1221 | if (clr != clrExpected) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1222 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1223 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1224 | } |
| 1225 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1226 | // Erasure status cannot be fetched, so always return erasure status as |
| 1227 | // `erase completed`. |
| 1228 | if (eraseOperation == ipmi::sel::getEraseStatus) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1229 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1230 | return ipmi::responseSuccess(ipmi::sel::eraseComplete); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1231 | } |
| 1232 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1233 | // Check that initiate erase is correct |
| 1234 | if (eraseOperation != ipmi::sel::initiateErase) |
| 1235 | { |
| 1236 | return ipmi::responseInvalidFieldRequest(); |
| 1237 | } |
| 1238 | |
| 1239 | // Per the IPMI spec, need to cancel any reservation when the SEL is |
| 1240 | // cleared |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1241 | cancelSELReservation(); |
| 1242 | |
Jason M. Bills | 7944c30 | 2019-03-20 15:24:05 -0700 | [diff] [blame] | 1243 | // Save the erase time |
| 1244 | intel_oem::ipmi::sel::erase_time::save(); |
| 1245 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1246 | // Clear the SEL by deleting the log files |
| 1247 | std::vector<std::filesystem::path> selLogFiles; |
| 1248 | if (getSELLogFiles(selLogFiles)) |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1249 | { |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1250 | for (const std::filesystem::path& file : selLogFiles) |
| 1251 | { |
| 1252 | std::error_code ec; |
| 1253 | std::filesystem::remove(file, ec); |
| 1254 | } |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1255 | } |
| 1256 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1257 | // Reload rsyslog so it knows to start new log files |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 1258 | std::shared_ptr<sdbusplus::asio::connection> dbus = getSdBus(); |
| 1259 | sdbusplus::message::message rsyslogReload = dbus->new_method_call( |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1260 | "org.freedesktop.systemd1", "/org/freedesktop/systemd1", |
| 1261 | "org.freedesktop.systemd1.Manager", "ReloadUnit"); |
| 1262 | rsyslogReload.append("rsyslog.service", "replace"); |
| 1263 | try |
| 1264 | { |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 1265 | sdbusplus::message::message reloadResponse = dbus->call(rsyslogReload); |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1266 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 1267 | catch (const sdbusplus::exception_t& e) |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1268 | { |
| 1269 | phosphor::logging::log<phosphor::logging::level::ERR>(e.what()); |
| 1270 | } |
| 1271 | |
| 1272 | return ipmi::responseSuccess(ipmi::sel::eraseComplete); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1273 | } |
| 1274 | |
Jason M. Bills | 1a47462 | 2019-06-14 14:51:33 -0700 | [diff] [blame] | 1275 | ipmi::RspType<uint32_t> ipmiStorageGetSELTime() |
| 1276 | { |
| 1277 | struct timespec selTime = {}; |
| 1278 | |
| 1279 | if (clock_gettime(CLOCK_REALTIME, &selTime) < 0) |
| 1280 | { |
| 1281 | return ipmi::responseUnspecifiedError(); |
| 1282 | } |
| 1283 | |
| 1284 | return ipmi::responseSuccess(selTime.tv_sec); |
| 1285 | } |
| 1286 | |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1287 | ipmi::RspType<> ipmiStorageSetSELTime(uint32_t selTime) |
Jason M. Bills | cac97a5 | 2019-01-30 14:43:46 -0800 | [diff] [blame] | 1288 | { |
| 1289 | // Set SEL Time is not supported |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1290 | return ipmi::responseInvalidCommand(); |
Jason M. Bills | cac97a5 | 2019-01-30 14:43:46 -0800 | [diff] [blame] | 1291 | } |
| 1292 | |
James Feist | 74c50c6 | 2019-08-14 14:18:41 -0700 | [diff] [blame] | 1293 | std::vector<uint8_t> getType12SDRs(uint16_t index, uint16_t recordId) |
| 1294 | { |
| 1295 | std::vector<uint8_t> resp; |
| 1296 | if (index == 0) |
| 1297 | { |
James Feist | 74c50c6 | 2019-08-14 14:18:41 -0700 | [diff] [blame] | 1298 | std::string bmcName = "Basbrd Mgmt Ctlr"; |
Johnathan Mantey | f4d5e05 | 2021-09-22 12:58:08 -0700 | [diff] [blame] | 1299 | Type12Record bmc(recordId, 0x20, 0, 0, 0xbf, 0x2e, 1, 0, bmcName); |
James Feist | 74c50c6 | 2019-08-14 14:18:41 -0700 | [diff] [blame] | 1300 | uint8_t* bmcPtr = reinterpret_cast<uint8_t*>(&bmc); |
| 1301 | resp.insert(resp.end(), bmcPtr, bmcPtr + sizeof(Type12Record)); |
| 1302 | } |
| 1303 | else if (index == 1) |
| 1304 | { |
James Feist | 74c50c6 | 2019-08-14 14:18:41 -0700 | [diff] [blame] | 1305 | std::string meName = "Mgmt Engine"; |
Johnathan Mantey | f4d5e05 | 2021-09-22 12:58:08 -0700 | [diff] [blame] | 1306 | Type12Record me(recordId, 0x2c, 6, 0x24, 0x21, 0x2e, 2, 0, meName); |
James Feist | 74c50c6 | 2019-08-14 14:18:41 -0700 | [diff] [blame] | 1307 | uint8_t* mePtr = reinterpret_cast<uint8_t*>(&me); |
| 1308 | resp.insert(resp.end(), mePtr, mePtr + sizeof(Type12Record)); |
| 1309 | } |
| 1310 | else |
| 1311 | { |
| 1312 | throw std::runtime_error("getType12SDRs:: Illegal index " + |
| 1313 | std::to_string(index)); |
| 1314 | } |
| 1315 | |
| 1316 | return resp; |
| 1317 | } |
| 1318 | |
Yong Li | fee5e4c | 2020-01-17 19:36:29 +0800 | [diff] [blame] | 1319 | std::vector<uint8_t> getNMDiscoverySDR(uint16_t index, uint16_t recordId) |
| 1320 | { |
| 1321 | std::vector<uint8_t> resp; |
| 1322 | if (index == 0) |
| 1323 | { |
| 1324 | NMDiscoveryRecord nm = {}; |
| 1325 | nm.header.record_id_lsb = recordId; |
| 1326 | nm.header.record_id_msb = recordId >> 8; |
| 1327 | nm.header.sdr_version = ipmiSdrVersion; |
| 1328 | nm.header.record_type = 0xC0; |
| 1329 | nm.header.record_length = 0xB; |
| 1330 | nm.oemID0 = 0x57; |
| 1331 | nm.oemID1 = 0x1; |
| 1332 | nm.oemID2 = 0x0; |
| 1333 | nm.subType = 0x0D; |
| 1334 | nm.version = 0x1; |
| 1335 | nm.slaveAddress = 0x2C; |
| 1336 | nm.channelNumber = 0x60; |
| 1337 | nm.healthEventSensor = 0x19; |
| 1338 | nm.exceptionEventSensor = 0x18; |
| 1339 | nm.operationalCapSensor = 0x1A; |
| 1340 | nm.thresholdExceededSensor = 0x1B; |
| 1341 | |
| 1342 | uint8_t* nmPtr = reinterpret_cast<uint8_t*>(&nm); |
| 1343 | resp.insert(resp.end(), nmPtr, nmPtr + sizeof(NMDiscoveryRecord)); |
| 1344 | } |
| 1345 | else |
| 1346 | { |
| 1347 | throw std::runtime_error("getNMDiscoverySDR:: Illegal index " + |
| 1348 | std::to_string(index)); |
| 1349 | } |
| 1350 | |
| 1351 | return resp; |
| 1352 | } |
| 1353 | |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 1354 | void registerStorageFunctions() |
| 1355 | { |
James Feist | 2569025 | 2019-12-23 12:25:49 -0800 | [diff] [blame] | 1356 | createTimers(); |
James Feist | e4f710d | 2020-05-20 15:50:30 -0700 | [diff] [blame] | 1357 | startMatch(); |
| 1358 | |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 1359 | // <Get FRU Inventory Area Info> |
jayaprakash Mutyala | d33acd6 | 2019-05-17 19:37:25 +0000 | [diff] [blame] | 1360 | ipmi::registerHandler(ipmi::prioOemBase, ipmi::netFnStorage, |
| 1361 | ipmi::storage::cmdGetFruInventoryAreaInfo, |
| 1362 | ipmi::Privilege::User, ipmiStorageGetFruInvAreaInfo); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1363 | // <READ FRU Data> |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 1364 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage, |
| 1365 | ipmi::storage::cmdReadFruData, ipmi::Privilege::User, |
| 1366 | ipmiStorageReadFruData); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 1367 | |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1368 | // <WRITE FRU Data> |
jayaprakash Mutyala | 5f4194e | 2019-05-20 16:17:01 +0000 | [diff] [blame] | 1369 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage, |
| 1370 | ipmi::storage::cmdWriteFruData, |
| 1371 | ipmi::Privilege::Operator, ipmiStorageWriteFruData); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1372 | |
| 1373 | // <Get SEL Info> |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1374 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage, |
Jason M. Bills | 542498e | 2019-06-24 16:57:42 -0700 | [diff] [blame] | 1375 | ipmi::storage::cmdGetSelInfo, ipmi::Privilege::User, |
| 1376 | ipmiStorageGetSELInfo); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1377 | |
| 1378 | // <Get SEL Entry> |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1379 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage, |
Jason M. Bills | 542498e | 2019-06-24 16:57:42 -0700 | [diff] [blame] | 1380 | ipmi::storage::cmdGetSelEntry, ipmi::Privilege::User, |
| 1381 | ipmiStorageGetSELEntry); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1382 | |
| 1383 | // <Add SEL Entry> |
Jason M. Bills | 6dd8f04 | 2019-04-11 10:39:02 -0700 | [diff] [blame] | 1384 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage, |
Vernon Mauery | 98bbf69 | 2019-09-16 11:14:59 -0700 | [diff] [blame] | 1385 | ipmi::storage::cmdAddSelEntry, |
Jason M. Bills | 6dd8f04 | 2019-04-11 10:39:02 -0700 | [diff] [blame] | 1386 | ipmi::Privilege::Operator, ipmiStorageAddSELEntry); |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1387 | |
| 1388 | // <Clear SEL> |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1389 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage, |
| 1390 | ipmi::storage::cmdClearSel, ipmi::Privilege::Operator, |
| 1391 | ipmiStorageClearSEL); |
Jason M. Bills | cac97a5 | 2019-01-30 14:43:46 -0800 | [diff] [blame] | 1392 | |
Jason M. Bills | 1a47462 | 2019-06-14 14:51:33 -0700 | [diff] [blame] | 1393 | // <Get SEL Time> |
| 1394 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage, |
Jason M. Bills | 542498e | 2019-06-24 16:57:42 -0700 | [diff] [blame] | 1395 | ipmi::storage::cmdGetSelTime, ipmi::Privilege::User, |
| 1396 | ipmiStorageGetSELTime); |
Jason M. Bills | 1a47462 | 2019-06-14 14:51:33 -0700 | [diff] [blame] | 1397 | |
Jason M. Bills | cac97a5 | 2019-01-30 14:43:46 -0800 | [diff] [blame] | 1398 | // <Set SEL Time> |
Jason M. Bills | 1d4d54d | 2019-04-23 11:26:11 -0700 | [diff] [blame] | 1399 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage, |
| 1400 | ipmi::storage::cmdSetSelTime, |
| 1401 | ipmi::Privilege::Operator, ipmiStorageSetSELTime); |
Jason M. Bills | e2d1aee | 2018-10-03 15:57:18 -0700 | [diff] [blame] | 1402 | } |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1403 | } // namespace storage |
Jason M. Bills | c04e2e7 | 2018-11-28 15:15:56 -0800 | [diff] [blame] | 1404 | } // namespace ipmi |