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