blob: 324afcd29d099c279da9c8ae2b78cdbe47b746ed [file] [log] [blame]
Alexander Hansen4e1142d2025-07-25 17:07:27 +02001// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright 2018 Intel Corporation
James Feist3cb5fec2018-01-23 14:41:51 -08003
Christopher Meis3cbff972025-04-09 14:07:22 +02004#include "../utils.hpp"
Brad Bishope45d8c72022-05-25 15:12:53 -04005#include "fru_utils.hpp"
Patrick Venturea49dc332019-10-26 08:32:02 -07006
James Feist3cb5fec2018-01-23 14:41:51 -08007#include <fcntl.h>
James Feist3b860982018-10-02 14:34:07 -07008#include <sys/inotify.h>
9#include <sys/ioctl.h>
10
Ed Tanous34c3e012023-03-06 13:42:00 -080011#include <boost/asio/io_context.hpp>
Ed Tanousaa497ed2023-02-28 13:43:41 -080012#include <boost/asio/steady_timer.hpp>
James Feist3b860982018-10-02 14:34:07 -070013#include <boost/container/flat_map.hpp>
James Feist8c505da2020-05-28 10:06:33 -070014#include <nlohmann/json.hpp>
Alexander Hansenc3db2c32024-08-20 15:01:38 +020015#include <phosphor-logging/lg2.hpp>
James Feist8c505da2020-05-28 10:06:33 -070016#include <sdbusplus/asio/connection.hpp>
17#include <sdbusplus/asio/object_server.hpp>
18
19#include <array>
Ed Tanous07d467b2021-02-23 14:48:37 -080020#include <cerrno>
Ed Tanous3013fb42022-07-09 08:27:06 -070021#include <charconv>
James Feist3b860982018-10-02 14:34:07 -070022#include <chrono>
23#include <ctime>
Patrick Venturee3754002019-08-06 09:39:12 -070024#include <filesystem>
James Feist3cb5fec2018-01-23 14:41:51 -080025#include <fstream>
Patrick Venturebaba7672019-10-26 09:26:41 -070026#include <functional>
James Feist3cb5fec2018-01-23 14:41:51 -080027#include <future>
Patrick Venturec50e1ff2019-08-06 10:22:28 -070028#include <iomanip>
Patrick Venturee26395d2019-10-29 14:05:16 -070029#include <limits>
Andrew Jefferya9c58922021-06-01 09:28:59 +093030#include <map>
Bonnie Lobfda2c42022-10-26 16:50:54 +080031#include <optional>
James Feist3f8a2782018-02-12 09:24:42 -080032#include <regex>
Patrick Venturec50e1ff2019-08-06 10:22:28 -070033#include <set>
34#include <sstream>
Patrick Venture11f1ff42019-08-01 10:42:12 -070035#include <string>
James Feist3b860982018-10-02 14:34:07 -070036#include <thread>
Jeremy Kerr4e6a62f2020-06-09 11:26:40 +080037#include <utility>
James Feista465ccc2019-02-08 12:51:01 -080038#include <variant>
Patrick Venturec274f2f2019-10-26 09:27:23 -070039#include <vector>
James Feist3b860982018-10-02 14:34:07 -070040
James Feist8c505da2020-05-28 10:06:33 -070041extern "C"
42{
James Feist3b860982018-10-02 14:34:07 -070043#include <i2c/smbus.h>
44#include <linux/i2c-dev.h>
45}
James Feist3cb5fec2018-01-23 14:41:51 -080046
Ed Tanous072e25d2018-12-16 21:45:20 -080047namespace fs = std::filesystem;
Ed Tanous07d467b2021-02-23 14:48:37 -080048constexpr size_t maxFruSize = 512;
49constexpr size_t maxEepromPageIndex = 255;
ankita prasad7329a222023-07-07 09:18:10 +000050constexpr size_t busTimeoutSeconds = 10;
James Feist3cb5fec2018-01-23 14:41:51 -080051
Matt Simmering2447c242023-11-09 14:18:39 -080052constexpr const char* blocklistPath = PACKAGE_DIR "blacklist.json";
Patrick Venture11f1ff42019-08-01 10:42:12 -070053
Ed Tanous07d467b2021-02-23 14:48:37 -080054const static constexpr char* baseboardFruLocation =
James Feist3cb5fec2018-01-23 14:41:51 -080055 "/etc/fru/baseboard.fru.bin";
56
Ed Tanous07d467b2021-02-23 14:48:37 -080057const static constexpr char* i2CDevLocation = "/dev";
James Feist4131aea2018-03-09 09:47:30 -080058
Vu Phamdac2dfc2024-11-05 12:20:42 -060059constexpr const char* fruDevice16BitDetectMode = FRU_DEVICE_16BITDETECTMODE;
60
Ed Tanousfc171422024-04-04 17:18:16 -070061// TODO Refactor these to not be globals
62// NOLINTBEGIN(cppcoreguidelines-avoid-non-const-global-variables)
Bonnie Lobfda2c42022-10-26 16:50:54 +080063static boost::container::flat_map<size_t, std::optional<std::set<size_t>>>
Matt Simmering2447c242023-11-09 14:18:39 -080064 busBlocklist;
James Feist6ebf9de2018-05-15 15:01:17 -070065struct FindDevicesWithCallback;
66
James Feist8a983922019-10-24 17:11:56 -070067static boost::container::flat_map<
68 std::pair<size_t, size_t>, std::shared_ptr<sdbusplus::asio::dbus_interface>>
69 foundDevices;
70
James Feist7972bb92019-11-13 15:59:24 -080071static boost::container::flat_map<size_t, std::set<size_t>> failedAddresses;
AKSHAY RAVEENDRAN K4d4df5b2022-11-14 11:16:29 +000072static boost::container::flat_map<size_t, std::set<size_t>> fruAddresses;
James Feist7972bb92019-11-13 15:59:24 -080073
Ed Tanous34c3e012023-03-06 13:42:00 -080074boost::asio::io_context io;
Ed Tanousfc171422024-04-04 17:18:16 -070075// NOLINTEND(cppcoreguidelines-avoid-non-const-global-variables)
James Feist5cb06082019-10-24 17:11:13 -070076
Naresh Solankicf288962025-06-06 15:26:11 +053077bool updateFruProperty(
78 const std::string& propertyValue, uint32_t bus, uint32_t address,
Ed Tanous07d467b2021-02-23 14:48:37 -080079 const std::string& propertyName,
Joshi-Mansid73b7442020-03-27 19:10:21 +053080 boost::container::flat_map<
81 std::pair<size_t, size_t>,
Kumar Thangavel41a90512021-11-24 15:44:20 +053082 std::shared_ptr<sdbusplus::asio::dbus_interface>>& dbusInterfaceMap,
Jonathan Doman2418a612022-02-14 18:20:58 -080083 size_t& unknownBusObjectCount, const bool& powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +080084 sdbusplus::asio::object_server& objServer);
Patrick Venturebaba7672019-10-26 09:26:41 -070085
Patrick Venturec50e1ff2019-08-06 10:22:28 -070086// Given a bus/address, produce the path in sysfs for an eeprom.
87static std::string getEepromPath(size_t bus, size_t address)
88{
89 std::stringstream output;
90 output << "/sys/bus/i2c/devices/" << bus << "-" << std::right
91 << std::setfill('0') << std::setw(4) << std::hex << address
92 << "/eeprom";
93 return output.str();
94}
95
96static bool hasEepromFile(size_t bus, size_t address)
97{
98 auto path = getEepromPath(bus, address);
99 try
100 {
101 return fs::exists(path);
102 }
103 catch (...)
104 {
105 return false;
106 }
107}
108
Zev Weiss309c0b12022-02-25 01:44:12 +0000109static int64_t readFromEeprom(int fd, off_t offset, size_t len, uint8_t* buf)
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700110{
111 auto result = lseek(fd, offset, SEEK_SET);
112 if (result < 0)
113 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200114 lg2::error("failed to seek");
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700115 return -1;
116 }
117
Patrick Venture3ac8e4f2019-10-28 13:07:21 -0700118 return read(fd, buf, len);
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700119}
120
Ed Tanous3013fb42022-07-09 08:27:06 -0700121static int busStrToInt(const std::string_view busName)
James Feist5d7f4692020-06-17 18:22:33 -0700122{
Ed Tanous07d467b2021-02-23 14:48:37 -0800123 auto findBus = busName.rfind('-');
James Feist5d7f4692020-06-17 18:22:33 -0700124 if (findBus == std::string::npos)
125 {
126 return -1;
127 }
Ed Tanous3013fb42022-07-09 08:27:06 -0700128 std::string_view num = busName.substr(findBus + 1);
129 int val = 0;
Alexander Hansen5df916f2025-09-26 10:31:36 -0400130 bool fullMatch = false;
131 fromCharsWrapper(num, val, fullMatch);
Ed Tanous3013fb42022-07-09 08:27:06 -0700132 return val;
James Feist5d7f4692020-06-17 18:22:33 -0700133}
134
James Feist7972bb92019-11-13 15:59:24 -0800135static int getRootBus(size_t bus)
136{
137 auto ec = std::error_code();
138 auto path = std::filesystem::read_symlink(
Patrick Williamsb7077432024-08-16 15:22:21 -0400139 std::filesystem::path(
140 "/sys/bus/i2c/devices/i2c-" + std::to_string(bus) + "/mux_device"),
James Feist7972bb92019-11-13 15:59:24 -0800141 ec);
142 if (ec)
143 {
144 return -1;
145 }
146
147 std::string filename = path.filename();
Ed Tanous07d467b2021-02-23 14:48:37 -0800148 auto findBus = filename.find('-');
James Feist7972bb92019-11-13 15:59:24 -0800149 if (findBus == std::string::npos)
150 {
151 return -1;
152 }
153 return std::stoi(filename.substr(0, findBus));
154}
155
James Feistc95cb142018-02-26 10:41:42 -0800156static bool isMuxBus(size_t bus)
157{
Zhikui Ren8af5d3c2023-08-09 20:35:35 -0700158 auto ec = std::error_code();
159 auto isSymlink =
160 is_symlink(std::filesystem::path("/sys/bus/i2c/devices/i2c-" +
161 std::to_string(bus) + "/mux_device"),
162 ec);
163 return (!ec && isSymlink);
James Feistc95cb142018-02-26 10:41:42 -0800164}
165
Kumar Thangavel7f43ea82021-12-07 17:20:16 +0530166static void makeProbeInterface(size_t bus, size_t address,
167 sdbusplus::asio::object_server& objServer)
James Feist8a983922019-10-24 17:11:56 -0700168{
169 if (isMuxBus(bus))
170 {
171 return; // the mux buses are random, no need to publish
172 }
173 auto [it, success] = foundDevices.emplace(
174 std::make_pair(bus, address),
175 objServer.add_interface(
176 "/xyz/openbmc_project/FruDevice/" + std::to_string(bus) + "_" +
177 std::to_string(address),
178 "xyz.openbmc_project.Inventory.Item.I2CDevice"));
179 if (!success)
180 {
181 return; // already added
182 }
183 it->second->register_property("Bus", bus);
184 it->second->register_property("Address", address);
185 it->second->initialize();
186}
187
Matt Simmering2447c242023-11-09 14:18:39 -0800188// Issue an I2C transaction to first write to_target_buf_len bytes,then read
189// from_target_buf_len bytes.
Patrick Williamsb7077432024-08-16 15:22:21 -0400190static int i2cSmbusWriteThenRead(
191 int file, uint16_t address, uint8_t* toTargetBuf, uint8_t toTargetBufLen,
192 uint8_t* fromTargetBuf, uint8_t fromTargetBufLen)
Vijay Khemka2d681f62018-11-06 15:51:00 -0800193{
Matt Simmering2447c242023-11-09 14:18:39 -0800194 if (toTargetBuf == nullptr || toTargetBufLen == 0 ||
195 fromTargetBuf == nullptr || fromTargetBufLen == 0)
Xiang Liu2801a702020-01-20 14:29:34 -0800196 {
197 return -1;
198 }
Vijay Khemka2d681f62018-11-06 15:51:00 -0800199
Ed Tanous3013fb42022-07-09 08:27:06 -0700200 constexpr size_t smbusWriteThenReadMsgCount = 2;
201 std::array<struct i2c_msg, smbusWriteThenReadMsgCount> msgs{};
Patrick Williamsa41f0142024-12-18 11:22:53 -0500202 struct i2c_rdwr_ioctl_data rdwr{};
Xiang Liu2801a702020-01-20 14:29:34 -0800203
204 msgs[0].addr = address;
205 msgs[0].flags = 0;
Matt Simmering2447c242023-11-09 14:18:39 -0800206 msgs[0].len = toTargetBufLen;
207 msgs[0].buf = toTargetBuf;
Xiang Liu2801a702020-01-20 14:29:34 -0800208 msgs[1].addr = address;
209 msgs[1].flags = I2C_M_RD;
Matt Simmering2447c242023-11-09 14:18:39 -0800210 msgs[1].len = fromTargetBufLen;
211 msgs[1].buf = fromTargetBuf;
Xiang Liu2801a702020-01-20 14:29:34 -0800212
Ed Tanous3013fb42022-07-09 08:27:06 -0700213 rdwr.msgs = msgs.data();
214 rdwr.nmsgs = msgs.size();
Xiang Liu2801a702020-01-20 14:29:34 -0800215
216 int ret = ioctl(file, I2C_RDWR, &rdwr);
217
Jason M. Billsf6e4c1f2022-08-19 12:23:51 -0700218 return (ret == static_cast<int>(msgs.size())) ? msgs[1].len : -1;
Xiang Liu2801a702020-01-20 14:29:34 -0800219}
220
Marvin Drees2b3ed302023-04-14 16:35:14 +0200221static int64_t readData(bool is16bit, bool isBytewise, int file,
222 uint16_t address, off_t offset, size_t len,
223 uint8_t* buf)
Xiang Liu2801a702020-01-20 14:29:34 -0800224{
Zev Weiss309c0b12022-02-25 01:44:12 +0000225 if (!is16bit)
Vijay Khemka2d681f62018-11-06 15:51:00 -0800226 {
Marvin Drees2b3ed302023-04-14 16:35:14 +0200227 if (!isBytewise)
228 {
229 return i2c_smbus_read_i2c_block_data(
230 file, static_cast<uint8_t>(offset), len, buf);
231 }
232
233 std::span<uint8_t> bufspan{buf, len};
234 for (size_t i = 0; i < len; i++)
235 {
236 int byte = i2c_smbus_read_byte_data(
237 file, static_cast<uint8_t>(offset + i));
238 if (byte < 0)
239 {
240 return static_cast<int64_t>(byte);
241 }
242 bufspan[i] = static_cast<uint8_t>(byte);
243 }
244 return static_cast<int64_t>(len);
Vijay Khemka2d681f62018-11-06 15:51:00 -0800245 }
246
Xiang Liu2801a702020-01-20 14:29:34 -0800247 offset = htobe16(offset);
Ed Tanous3013fb42022-07-09 08:27:06 -0700248 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
249 uint8_t* u8Offset = reinterpret_cast<uint8_t*>(&offset);
250 return i2cSmbusWriteThenRead(file, address, u8Offset, 2, buf, len);
Vijay Khemka2d681f62018-11-06 15:51:00 -0800251}
252
Vu Phamdac2dfc2024-11-05 12:20:42 -0600253// Mode_1:
254// --------
255// Please refer to document docs/address_size_detection_modes.md for
256// more details and explanations.
257static std::optional<bool> isDevice16BitMode1(int file)
258{
259 // Set the higher data word address bits to 0. It's safe on 8-bit
260 // addressing EEPROMs because it doesn't write any actual data.
261 int ret = i2c_smbus_write_byte(file, 0);
262 if (ret < 0)
263 {
264 return std::nullopt;
265 }
266
267 /* Get first byte */
268 int byte1 = i2c_smbus_read_byte_data(file, 0);
269 if (byte1 < 0)
270 {
271 return std::nullopt;
272 }
273 /* Read 7 more bytes, it will read same first byte in case of
274 * 8 bit but it will read next byte in case of 16 bit
275 */
276 for (int i = 0; i < 7; i++)
277 {
278 int byte2 = i2c_smbus_read_byte_data(file, 0);
279 if (byte2 < 0)
280 {
281 return std::nullopt;
282 }
283 if (byte2 != byte1)
284 {
285 return true;
286 }
287 }
288 return false;
289}
290
291// Mode_2:
292// --------
293// Please refer to document docs/address_size_detection_modes.md for
294// more details and explanations.
295static std::optional<bool> isDevice16BitMode2(int file, uint16_t address)
296{
297 uint8_t first = 0;
298 uint8_t cur = 0;
299 uint16_t v = 0;
300 int ret = 0;
301 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
302 uint8_t* p = reinterpret_cast<uint8_t*>(&v);
303
304 /*
305 * Write 2 bytes byte0 = 0, byte1 = {0..7} and then subsequent read byte
306 * It will read same first byte in case of 8 bit but
307 * it will read next byte in case of 16 bit
308 */
309 for (int i = 0; i < 8; i++)
310 {
311 v = htobe16(i);
312
313 ret = i2cSmbusWriteThenRead(file, address, p, 2, &cur, 1);
314 if (ret < 0)
315 {
316 return std::nullopt;
317 }
318
319 if (i == 0)
320 {
321 first = cur;
322 }
323
324 if (first != cur)
325 {
326 return true;
327 }
328 }
329 return false;
330}
331
332static std::optional<bool> isDevice16Bit(int file, uint16_t address)
333{
334 std::string mode(fruDevice16BitDetectMode);
335
336 if (mode == "MODE_2")
337 {
338 return isDevice16BitMode2(file, address);
339 }
340
341 return isDevice16BitMode1(file);
342}
343
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700344// TODO: This code is very similar to the non-eeprom version and can be merged
345// with some tweaks.
Andrei Kartashev1c5b7062020-08-19 14:47:30 +0300346static std::vector<uint8_t> processEeprom(int bus, int address)
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700347{
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700348 auto path = getEepromPath(bus, address);
349
350 int file = open(path.c_str(), O_RDONLY);
351 if (file < 0)
352 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200353 lg2::error("Unable to open eeprom file: {PATH}", "PATH", path);
Patrick Venturebaba7672019-10-26 09:26:41 -0700354 return {};
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700355 }
356
Patrick Venturebaba7672019-10-26 09:26:41 -0700357 std::string errorMessage = "eeprom at " + std::to_string(bus) +
358 " address " + std::to_string(address);
Zev Weiss309c0b12022-02-25 01:44:12 +0000359 auto readFunc = [file](off_t offset, size_t length, uint8_t* outbuf) {
360 return readFromEeprom(file, offset, length, outbuf);
361 };
362 FRUReader reader(std::move(readFunc));
Patrick Williamsb7077432024-08-16 15:22:21 -0400363 std::pair<std::vector<uint8_t>, bool> pair =
364 readFRUContents(reader, errorMessage);
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700365
366 close(file);
Marvin Drees2b3ed302023-04-14 16:35:14 +0200367 return pair.first;
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700368}
369
Bonnie Lobfda2c42022-10-26 16:50:54 +0800370std::set<size_t> findI2CEeproms(int i2cBus,
371 const std::shared_ptr<DeviceMap>& devices)
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700372{
Bonnie Lobfda2c42022-10-26 16:50:54 +0800373 std::set<size_t> foundList;
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700374
375 std::string path = "/sys/bus/i2c/devices/i2c-" + std::to_string(i2cBus);
376
377 // For each file listed under the i2c device
378 // NOTE: This should be faster than just checking for each possible address
379 // path.
Zhikui Ren8af5d3c2023-08-09 20:35:35 -0700380 auto ec = std::error_code();
381 for (const auto& p : fs::directory_iterator(path, ec))
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700382 {
Zhikui Ren8af5d3c2023-08-09 20:35:35 -0700383 if (ec)
384 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200385 lg2::error("directory_iterator err {ERR}", "ERR", ec.message());
Zhikui Ren8af5d3c2023-08-09 20:35:35 -0700386 break;
387 }
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700388 const std::string node = p.path().string();
389 std::smatch m;
Patrick Williamsb7077432024-08-16 15:22:21 -0400390 bool found =
391 std::regex_match(node, m, std::regex(".+\\d+-([0-9abcdef]+$)"));
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700392
393 if (!found)
394 {
395 continue;
396 }
397 if (m.size() != 2)
398 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200399 lg2::error("regex didn't capture");
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700400 continue;
401 }
402
403 std::ssub_match subMatch = m[1];
404 std::string addressString = subMatch.str();
Bonnie Lobfda2c42022-10-26 16:50:54 +0800405 std::string_view addressStringView(addressString);
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700406
Bonnie Lobfda2c42022-10-26 16:50:54 +0800407 size_t address = 0;
408 std::from_chars(addressStringView.begin(), addressStringView.end(),
409 address, 16);
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700410
411 const std::string eeprom = node + "/eeprom";
412
413 try
414 {
415 if (!fs::exists(eeprom))
416 {
417 continue;
418 }
419 }
420 catch (...)
421 {
422 continue;
423 }
424
425 // There is an eeprom file at this address, it may have invalid
426 // contents, but we found it.
427 foundList.insert(address);
428
Andrei Kartashev1c5b7062020-08-19 14:47:30 +0300429 std::vector<uint8_t> device = processEeprom(i2cBus, address);
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700430 if (!device.empty())
431 {
432 devices->emplace(address, device);
433 }
434 }
435
436 return foundList;
437}
438
Andrei Kartashev2f0de172020-08-13 14:29:40 +0300439int getBusFRUs(int file, int first, int last, int bus,
Jonathan Doman2418a612022-02-14 18:20:58 -0800440 std::shared_ptr<DeviceMap> devices, const bool& powerIsOn,
Kumar Thangavel7f43ea82021-12-07 17:20:16 +0530441 sdbusplus::asio::object_server& objServer)
James Feist3cb5fec2018-01-23 14:41:51 -0800442{
James Feist26c27ad2018-07-25 15:09:40 -0700443 std::future<int> future = std::async(std::launch::async, [&]() {
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700444 // NOTE: When reading the devices raw on the bus, it can interfere with
445 // the driver's ability to operate, therefore read eeproms first before
446 // scanning for devices without drivers. Several experiments were run
447 // and it was determined that if there were any devices on the bus
448 // before the eeprom was hit and read, the eeprom driver wouldn't open
449 // while the bus device was open. An experiment was not performed to see
450 // if this issue was resolved if the i2c bus device was closed, but
451 // hexdumps of the eeprom later were successful.
452
453 // Scan for i2c eeproms loaded on this bus.
Bonnie Lobfda2c42022-10-26 16:50:54 +0800454 std::set<size_t> skipList = findI2CEeproms(bus, devices);
James Feist7972bb92019-11-13 15:59:24 -0800455 std::set<size_t>& failedItems = failedAddresses[bus];
AKSHAY RAVEENDRAN K4d4df5b2022-11-14 11:16:29 +0000456 std::set<size_t>& foundItems = fruAddresses[bus];
457 foundItems.clear();
James Feist7972bb92019-11-13 15:59:24 -0800458
Matt Simmering2447c242023-11-09 14:18:39 -0800459 auto busFind = busBlocklist.find(bus);
460 if (busFind != busBlocklist.end())
Bonnie Lobfda2c42022-10-26 16:50:54 +0800461 {
462 if (busFind->second != std::nullopt)
463 {
464 for (const auto& address : *(busFind->second))
465 {
466 skipList.insert(address);
467 }
468 }
469 }
470
James Feist7972bb92019-11-13 15:59:24 -0800471 std::set<size_t>* rootFailures = nullptr;
472 int rootBus = getRootBus(bus);
473
474 if (rootBus >= 0)
475 {
Matt Simmering2447c242023-11-09 14:18:39 -0800476 auto rootBusFind = busBlocklist.find(rootBus);
477 if (rootBusFind != busBlocklist.end())
Bonnie Lobfda2c42022-10-26 16:50:54 +0800478 {
479 if (rootBusFind->second != std::nullopt)
480 {
481 for (const auto& rootAddress : *(rootBusFind->second))
482 {
483 skipList.insert(rootAddress);
484 }
485 }
486 }
James Feist7972bb92019-11-13 15:59:24 -0800487 rootFailures = &(failedAddresses[rootBus]);
AKSHAY RAVEENDRAN K4d4df5b2022-11-14 11:16:29 +0000488 foundItems = fruAddresses[rootBus];
James Feist7972bb92019-11-13 15:59:24 -0800489 }
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700490
Matt Simmering2447c242023-11-09 14:18:39 -0800491 constexpr int startSkipTargetAddr = 0;
492 constexpr int endSkipTargetAddr = 12;
Rajashekar Gade Reddyfa8d3222020-05-13 08:27:03 +0530493
James Feist26c27ad2018-07-25 15:09:40 -0700494 for (int ii = first; ii <= last; ii++)
James Feist3cb5fec2018-01-23 14:41:51 -0800495 {
Patrick Williams64599932025-05-14 07:24:20 -0400496 if (foundItems.contains(ii))
AKSHAY RAVEENDRAN K4d4df5b2022-11-14 11:16:29 +0000497 {
498 continue;
499 }
Patrick Williams64599932025-05-14 07:24:20 -0400500 if (skipList.contains(ii))
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700501 {
502 continue;
503 }
Rajashekar Gade Reddyfa8d3222020-05-13 08:27:03 +0530504 // skipping since no device is present in this range
Matt Simmering2447c242023-11-09 14:18:39 -0800505 if (ii >= startSkipTargetAddr && ii <= endSkipTargetAddr)
Rajashekar Gade Reddyfa8d3222020-05-13 08:27:03 +0530506 {
507 continue;
508 }
Matt Simmering2447c242023-11-09 14:18:39 -0800509 // Set target address
Rajashekar Gade Reddyfa8d3222020-05-13 08:27:03 +0530510 if (ioctl(file, I2C_SLAVE, ii) < 0)
James Feist3cb5fec2018-01-23 14:41:51 -0800511 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200512 lg2::error("device at bus {BUS} address {ADDR} busy", "BUS",
513 bus, "ADDR", ii);
James Feist26c27ad2018-07-25 15:09:40 -0700514 continue;
515 }
516 // probe
Ed Tanous07d467b2021-02-23 14:48:37 -0800517 if (i2c_smbus_read_byte(file) < 0)
James Feist26c27ad2018-07-25 15:09:40 -0700518 {
519 continue;
520 }
James Feist3cb5fec2018-01-23 14:41:51 -0800521
Alexander Hansenc3db2c32024-08-20 15:01:38 +0200522 lg2::debug("something at bus {BUS}, addr {ADDR}", "BUS", bus,
523 "ADDR", ii);
Vijay Khemka2d681f62018-11-06 15:51:00 -0800524
Kumar Thangavel7f43ea82021-12-07 17:20:16 +0530525 makeProbeInterface(bus, ii, objServer);
James Feist8a983922019-10-24 17:11:56 -0700526
Patrick Williams64599932025-05-14 07:24:20 -0400527 if (failedItems.contains(ii))
James Feist7972bb92019-11-13 15:59:24 -0800528 {
529 // if we failed to read it once, unlikely we can read it later
530 continue;
531 }
532
533 if (rootFailures != nullptr)
534 {
Patrick Williams64599932025-05-14 07:24:20 -0400535 if (rootFailures->contains(ii))
James Feist7972bb92019-11-13 15:59:24 -0800536 {
537 continue;
538 }
539 }
540
Vijay Khemka2d681f62018-11-06 15:51:00 -0800541 /* Check for Device type if it is 8 bit or 16 bit */
Vu Phamdac2dfc2024-11-05 12:20:42 -0600542 std::optional<bool> is16Bit = isDevice16Bit(file, ii);
Zev Weiss309c0b12022-02-25 01:44:12 +0000543 if (!is16Bit.has_value())
Vijay Khemka2d681f62018-11-06 15:51:00 -0800544 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200545 lg2::error("failed to read bus {BUS} address {ADDR}", "BUS",
546 bus, "ADDR", ii);
James Feistcb5661d2020-06-12 15:05:01 -0700547 if (powerIsOn)
548 {
549 failedItems.insert(ii);
550 }
Vijay Khemka2d681f62018-11-06 15:51:00 -0800551 continue;
552 }
Zev Weiss309c0b12022-02-25 01:44:12 +0000553 bool is16BitBool{*is16Bit};
Vijay Khemka2d681f62018-11-06 15:51:00 -0800554
Patrick Williamsb7077432024-08-16 15:22:21 -0400555 auto readFunc = [is16BitBool, file,
556 ii](off_t offset, size_t length, uint8_t* outbuf) {
Marvin Drees2b3ed302023-04-14 16:35:14 +0200557 return readData(is16BitBool, false, file, ii, offset, length,
558 outbuf);
Zev Weiss309c0b12022-02-25 01:44:12 +0000559 };
560 FRUReader reader(std::move(readFunc));
Patrick Williamsb7077432024-08-16 15:22:21 -0400561 std::string errorMessage =
562 "bus " + std::to_string(bus) + " address " + std::to_string(ii);
Marvin Drees2b3ed302023-04-14 16:35:14 +0200563 std::pair<std::vector<uint8_t>, bool> pair =
564 readFRUContents(reader, errorMessage);
565 const bool foundHeader = pair.second;
566
567 if (!foundHeader && !is16BitBool)
568 {
569 // certain FRU eeproms require bytewise reading.
570 // otherwise garbage is read. e.g. SuperMicro PWS 920P-SQ
571
Patrick Williamsb7077432024-08-16 15:22:21 -0400572 auto readFunc =
573 [is16BitBool, file,
574 ii](off_t offset, size_t length, uint8_t* outbuf) {
575 return readData(is16BitBool, true, file, ii, offset,
576 length, outbuf);
577 };
Marvin Drees2b3ed302023-04-14 16:35:14 +0200578 FRUReader readerBytewise(std::move(readFunc));
579 pair = readFRUContents(readerBytewise, errorMessage);
580 }
581
582 if (pair.first.empty())
James Feist26c27ad2018-07-25 15:09:40 -0700583 {
James Feist26c27ad2018-07-25 15:09:40 -0700584 continue;
585 }
James Feist26c27ad2018-07-25 15:09:40 -0700586
Marvin Drees2b3ed302023-04-14 16:35:14 +0200587 devices->emplace(ii, pair.first);
AKSHAY RAVEENDRAN K4d4df5b2022-11-14 11:16:29 +0000588 fruAddresses[bus].insert(ii);
James Feist3cb5fec2018-01-23 14:41:51 -0800589 }
James Feist26c27ad2018-07-25 15:09:40 -0700590 return 1;
591 });
592 std::future_status status =
593 future.wait_for(std::chrono::seconds(busTimeoutSeconds));
594 if (status == std::future_status::timeout)
595 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200596 lg2::error("Error reading bus {BUS}", "BUS", bus);
James Feistcb5661d2020-06-12 15:05:01 -0700597 if (powerIsOn)
598 {
Matt Simmering2447c242023-11-09 14:18:39 -0800599 busBlocklist[bus] = std::nullopt;
James Feistcb5661d2020-06-12 15:05:01 -0700600 }
James Feist444830e2019-04-05 08:38:16 -0700601 close(file);
James Feist26c27ad2018-07-25 15:09:40 -0700602 return -1;
James Feist3cb5fec2018-01-23 14:41:51 -0800603 }
604
James Feist444830e2019-04-05 08:38:16 -0700605 close(file);
James Feist26c27ad2018-07-25 15:09:40 -0700606 return future.get();
James Feist3cb5fec2018-01-23 14:41:51 -0800607}
608
Matt Simmering2447c242023-11-09 14:18:39 -0800609void loadBlocklist(const char* path)
Patrick Venture11f1ff42019-08-01 10:42:12 -0700610{
Matt Simmering2447c242023-11-09 14:18:39 -0800611 std::ifstream blocklistStream(path);
612 if (!blocklistStream.good())
Patrick Venture11f1ff42019-08-01 10:42:12 -0700613 {
614 // File is optional.
Alexander Hansen8feb0452025-09-15 14:29:20 +0200615 lg2::error("Cannot open blocklist file.\n");
Patrick Venture11f1ff42019-08-01 10:42:12 -0700616 return;
617 }
618
Patrick Williamsb7077432024-08-16 15:22:21 -0400619 nlohmann::json data =
620 nlohmann::json::parse(blocklistStream, nullptr, false);
Patrick Venture11f1ff42019-08-01 10:42:12 -0700621 if (data.is_discarded())
622 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200623 lg2::error(
624 "Illegal blocklist file detected, cannot validate JSON, exiting");
Patrick Venture11f1ff42019-08-01 10:42:12 -0700625 std::exit(EXIT_FAILURE);
Patrick Venture11f1ff42019-08-01 10:42:12 -0700626 }
627
628 // It's expected to have at least one field, "buses" that is an array of the
629 // buses by integer. Allow for future options to exclude further aspects,
630 // such as specific addresses or ranges.
631 if (data.type() != nlohmann::json::value_t::object)
632 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200633 lg2::error("Illegal blocklist, expected to read dictionary");
Patrick Venture11f1ff42019-08-01 10:42:12 -0700634 std::exit(EXIT_FAILURE);
Patrick Venture11f1ff42019-08-01 10:42:12 -0700635 }
636
637 // If buses field is missing, that's fine.
638 if (data.count("buses") == 1)
639 {
640 // Parse the buses array after a little validation.
641 auto buses = data.at("buses");
642 if (buses.type() != nlohmann::json::value_t::array)
643 {
644 // Buses field present but invalid, therefore this is an error.
Alexander Hansen8feb0452025-09-15 14:29:20 +0200645 lg2::error("Invalid contents for blocklist buses field");
Patrick Venture11f1ff42019-08-01 10:42:12 -0700646 std::exit(EXIT_FAILURE);
Patrick Venture11f1ff42019-08-01 10:42:12 -0700647 }
648
649 // Catch exception here for type mis-match.
650 try
651 {
Bonnie Lobfda2c42022-10-26 16:50:54 +0800652 for (const auto& busIterator : buses)
Patrick Venture11f1ff42019-08-01 10:42:12 -0700653 {
Bonnie Lobfda2c42022-10-26 16:50:54 +0800654 // If bus and addresses field are missing, that's fine.
655 if (busIterator.contains("bus") &&
656 busIterator.contains("addresses"))
657 {
658 auto busData = busIterator.at("bus");
659 auto bus = busData.get<size_t>();
660
661 auto addressData = busIterator.at("addresses");
662 auto addresses =
663 addressData.get<std::set<std::string_view>>();
664
Ed Tanousfc171422024-04-04 17:18:16 -0700665 auto& block = busBlocklist[bus].emplace();
Bonnie Lobfda2c42022-10-26 16:50:54 +0800666 for (const auto& address : addresses)
667 {
668 size_t addressInt = 0;
Alexander Hansen5df916f2025-09-26 10:31:36 -0400669 bool fullMatch = false;
670 fromCharsWrapper(address.substr(2), addressInt,
671 fullMatch, 16);
Ed Tanousfc171422024-04-04 17:18:16 -0700672 block.insert(addressInt);
Bonnie Lobfda2c42022-10-26 16:50:54 +0800673 }
674 }
675 else
676 {
Matt Simmering2447c242023-11-09 14:18:39 -0800677 busBlocklist[busIterator.get<size_t>()] = std::nullopt;
Bonnie Lobfda2c42022-10-26 16:50:54 +0800678 }
Patrick Venture11f1ff42019-08-01 10:42:12 -0700679 }
680 }
681 catch (const nlohmann::detail::type_error& e)
682 {
683 // Type mis-match is a critical error.
Alexander Hansen8feb0452025-09-15 14:29:20 +0200684 lg2::error("Invalid bus type: {ERR}", "ERR", e.what());
Patrick Venture11f1ff42019-08-01 10:42:12 -0700685 std::exit(EXIT_FAILURE);
Patrick Venture11f1ff42019-08-01 10:42:12 -0700686 }
687 }
Patrick Venture11f1ff42019-08-01 10:42:12 -0700688}
689
Ed Tanous07d467b2021-02-23 14:48:37 -0800690static void findI2CDevices(const std::vector<fs::path>& i2cBuses,
Jonathan Doman2418a612022-02-14 18:20:58 -0800691 BusMap& busmap, const bool& powerIsOn,
Kumar Thangavel7f43ea82021-12-07 17:20:16 +0530692 sdbusplus::asio::object_server& objServer)
James Feist3cb5fec2018-01-23 14:41:51 -0800693{
Ed Tanous3013fb42022-07-09 08:27:06 -0700694 for (const auto& i2cBus : i2cBuses)
James Feist3cb5fec2018-01-23 14:41:51 -0800695 {
Ed Tanous3013fb42022-07-09 08:27:06 -0700696 int bus = busStrToInt(i2cBus.string());
James Feist0c3980a2019-12-19 11:09:27 -0800697
James Feist5d7f4692020-06-17 18:22:33 -0700698 if (bus < 0)
699 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200700 lg2::error("Cannot translate {BUS} to int", "BUS", i2cBus);
James Feist5d7f4692020-06-17 18:22:33 -0700701 continue;
702 }
Matt Simmering2447c242023-11-09 14:18:39 -0800703 auto busFind = busBlocklist.find(bus);
704 if (busFind != busBlocklist.end())
James Feist444830e2019-04-05 08:38:16 -0700705 {
Bonnie Lobfda2c42022-10-26 16:50:54 +0800706 if (busFind->second == std::nullopt)
707 {
708 continue; // Skip blocked busses.
709 }
James Feist444830e2019-04-05 08:38:16 -0700710 }
James Feist0c3980a2019-12-19 11:09:27 -0800711 int rootBus = getRootBus(bus);
Matt Simmering2447c242023-11-09 14:18:39 -0800712 auto rootBusFind = busBlocklist.find(rootBus);
713 if (rootBusFind != busBlocklist.end())
James Feist0c3980a2019-12-19 11:09:27 -0800714 {
Bonnie Lobfda2c42022-10-26 16:50:54 +0800715 if (rootBusFind->second == std::nullopt)
716 {
717 continue;
718 }
James Feist0c3980a2019-12-19 11:09:27 -0800719 }
720
James Feist3cb5fec2018-01-23 14:41:51 -0800721 auto file = open(i2cBus.c_str(), O_RDWR);
722 if (file < 0)
723 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200724 lg2::error("unable to open i2c device {PATH}", "PATH",
725 i2cBus.string());
James Feist3cb5fec2018-01-23 14:41:51 -0800726 continue;
727 }
728 unsigned long funcs = 0;
729
730 if (ioctl(file, I2C_FUNCS, &funcs) < 0)
731 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200732 lg2::error(
733 "Error: Could not get the adapter functionality matrix bus {BUS}",
734 "BUS", bus);
Zhikui Renc02d8cb2021-06-28 16:56:08 -0700735 close(file);
James Feist3cb5fec2018-01-23 14:41:51 -0800736 continue;
737 }
Ed Tanous3013fb42022-07-09 08:27:06 -0700738 if (((funcs & I2C_FUNC_SMBUS_READ_BYTE) == 0U) ||
739 ((I2C_FUNC_SMBUS_READ_I2C_BLOCK) == 0))
James Feist3cb5fec2018-01-23 14:41:51 -0800740 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200741 lg2::error("Error: Can't use SMBus Receive Byte command bus {BUS}",
742 "BUS", bus);
George Liu913d07d2024-12-09 19:16:30 +0800743 close(file);
James Feist3cb5fec2018-01-23 14:41:51 -0800744 continue;
745 }
James Feist98132792019-07-09 13:29:09 -0700746 auto& device = busmap[bus];
James Feist3cb5fec2018-01-23 14:41:51 -0800747 device = std::make_shared<DeviceMap>();
748
Nikhil Potaded8884f12019-03-27 13:27:13 -0700749 // i2cdetect by default uses the range 0x03 to 0x77, as
750 // this is what we have tested with, use this range. Could be
751 // changed in future.
Alexander Hansenc3db2c32024-08-20 15:01:38 +0200752 lg2::debug("Scanning bus {BUS}", "BUS", bus);
Nikhil Potaded8884f12019-03-27 13:27:13 -0700753
754 // fd is closed in this function in case the bus locks up
Kumar Thangavel7f43ea82021-12-07 17:20:16 +0530755 getBusFRUs(file, 0x03, 0x77, bus, device, powerIsOn, objServer);
Nikhil Potaded8884f12019-03-27 13:27:13 -0700756
Alexander Hansenc3db2c32024-08-20 15:01:38 +0200757 lg2::debug("Done scanning bus {BUS}", "BUS", bus);
James Feist3cb5fec2018-01-23 14:41:51 -0800758 }
James Feist3cb5fec2018-01-23 14:41:51 -0800759}
760
James Feist6ebf9de2018-05-15 15:01:17 -0700761// this class allows an async response after all i2c devices are discovered
James Feist8c505da2020-05-28 10:06:33 -0700762struct FindDevicesWithCallback :
763 std::enable_shared_from_this<FindDevicesWithCallback>
James Feist6ebf9de2018-05-15 15:01:17 -0700764{
James Feista465ccc2019-02-08 12:51:01 -0800765 FindDevicesWithCallback(const std::vector<fs::path>& i2cBuses,
Jonathan Doman2418a612022-02-14 18:20:58 -0800766 BusMap& busmap, const bool& powerIsOn,
Kumar Thangavel7f43ea82021-12-07 17:20:16 +0530767 sdbusplus::asio::object_server& objServer,
Delphine CC Chiua3ca14a2024-03-27 17:02:24 +0800768 std::function<void()>&& callback) :
Patrick Williamsb7077432024-08-16 15:22:21 -0400769 _i2cBuses(i2cBuses), _busMap(busmap), _powerIsOn(powerIsOn),
770 _objServer(objServer), _callback(std::move(callback))
James Feist8c505da2020-05-28 10:06:33 -0700771 {}
James Feist6ebf9de2018-05-15 15:01:17 -0700772 ~FindDevicesWithCallback()
773 {
774 _callback();
775 }
776 void run()
777 {
Kumar Thangavel7f43ea82021-12-07 17:20:16 +0530778 findI2CDevices(_i2cBuses, _busMap, _powerIsOn, _objServer);
James Feist6ebf9de2018-05-15 15:01:17 -0700779 }
780
James Feista465ccc2019-02-08 12:51:01 -0800781 const std::vector<fs::path>& _i2cBuses;
James Feista465ccc2019-02-08 12:51:01 -0800782 BusMap& _busMap;
Jonathan Doman2418a612022-02-14 18:20:58 -0800783 const bool& _powerIsOn;
Kumar Thangavel7f43ea82021-12-07 17:20:16 +0530784 sdbusplus::asio::object_server& _objServer;
Delphine CC Chiua3ca14a2024-03-27 17:02:24 +0800785 std::function<void()> _callback;
James Feist6ebf9de2018-05-15 15:01:17 -0700786};
787
Ed Tanous07d467b2021-02-23 14:48:37 -0800788void addFruObjectToDbus(
Andrei Kartashev1c5b7062020-08-19 14:47:30 +0300789 std::vector<uint8_t>& device,
James Feista465ccc2019-02-08 12:51:01 -0800790 boost::container::flat_map<
791 std::pair<size_t, size_t>,
792 std::shared_ptr<sdbusplus::asio::dbus_interface>>& dbusInterfaceMap,
Kumar Thangavel1e8e71f2021-12-01 19:39:11 +0530793 uint32_t bus, uint32_t address, size_t& unknownBusObjectCount,
Sora Su12e2d412025-08-22 14:23:16 +0800794 const bool& powerIsOn, sdbusplus::asio::object_server& objServer)
James Feist3cb5fec2018-01-23 14:41:51 -0800795{
Andrei Kartashev2f0de172020-08-13 14:29:40 +0300796 boost::container::flat_map<std::string, std::string> formattedFRU;
Kumar Thangavel9f2162a2022-08-10 18:05:20 +0530797
798 std::optional<std::string> optionalProductName = getProductName(
799 device, formattedFRU, bus, address, unknownBusObjectCount);
800 if (!optionalProductName)
James Feist3cb5fec2018-01-23 14:41:51 -0800801 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200802 lg2::error("getProductName failed. product name is empty.");
James Feist3cb5fec2018-01-23 14:41:51 -0800803 return;
804 }
Patrick Venture96cdaef2019-07-30 13:30:52 -0700805
Patrick Williamsb7077432024-08-16 15:22:21 -0400806 std::string productName =
807 "/xyz/openbmc_project/FruDevice/" + optionalProductName.value();
James Feist3cb5fec2018-01-23 14:41:51 -0800808
Kumar Thangaveld79d0252022-08-24 14:26:01 +0530809 std::optional<int> index = findIndexForFRU(dbusInterfaceMap, productName);
810 if (index.has_value())
James Feist918e18c2018-02-13 15:51:07 -0800811 {
Kumar Thangaveld79d0252022-08-24 14:26:01 +0530812 productName += "_";
813 productName += std::to_string(++(*index));
James Feist918e18c2018-02-13 15:51:07 -0800814 }
James Feist3cb5fec2018-01-23 14:41:51 -0800815
James Feist9eb0b582018-04-27 12:15:46 -0700816 std::shared_ptr<sdbusplus::asio::dbus_interface> iface =
817 objServer.add_interface(productName, "xyz.openbmc_project.FruDevice");
818 dbusInterfaceMap[std::pair<size_t, size_t>(bus, address)] = iface;
819
Naresh Solankicf288962025-06-06 15:26:11 +0530820 if (ENABLE_FRU_UPDATE_PROPERTY)
821 {
822 iface->register_method(
823 "UpdateFruField",
824 [bus, address, &dbusInterfaceMap, &unknownBusObjectCount,
825 &powerIsOn, &objServer](const std::string& fieldName,
826 const std::string& fieldValue) {
827 // Update the property
828 if (!updateFruProperty(fieldValue, bus, address, fieldName,
829 dbusInterfaceMap, unknownBusObjectCount,
830 powerIsOn, objServer))
831 {
832 lg2::debug(
833 "Failed to Add Field: Name = {NAME}, Value = {VALUE}",
834 "NAME", fieldName, "VALUE", fieldValue);
835 return false;
836 }
837
838 return true;
839 });
840 }
841
Andrei Kartashev2f0de172020-08-13 14:29:40 +0300842 for (auto& property : formattedFRU)
James Feist3cb5fec2018-01-23 14:41:51 -0800843 {
Jae Hyun Yoo3936e7a2018-03-23 17:26:16 -0700844 std::regex_replace(property.second.begin(), property.second.begin(),
Ed Tanous07d467b2021-02-23 14:48:37 -0800845 property.second.end(), nonAsciiRegex, "_");
Naresh Solanki89092a92025-06-02 15:48:04 +0530846 if (property.second.empty())
James Feist9eb0b582018-04-27 12:15:46 -0700847 {
848 continue;
849 }
Patrick Williamsb7077432024-08-16 15:22:21 -0400850 std::string key =
851 std::regex_replace(property.first, nonAsciiRegex, "_");
Joshi-Mansid73b7442020-03-27 19:10:21 +0530852
Naresh Solanki89092a92025-06-02 15:48:04 +0530853 // Allow FRU field update if ENABLE_FRU_UPDATE_PROPERTY is set.
854 if (isFieldEditable(property.first))
Joshi-Mansid73b7442020-03-27 19:10:21 +0530855 {
856 std::string propertyName = property.first;
857 iface->register_property(
858 key, property.second + '\0',
Kumar Thangavel41a90512021-11-24 15:44:20 +0530859 [bus, address, propertyName, &dbusInterfaceMap,
Sora Su12e2d412025-08-22 14:23:16 +0800860 &unknownBusObjectCount, &powerIsOn,
861 &objServer](const std::string& req, std::string& resp) {
Patrick Williamsb7077432024-08-16 15:22:21 -0400862 if (strcmp(req.c_str(), resp.c_str()) != 0)
Joshi-Mansid73b7442020-03-27 19:10:21 +0530863 {
Patrick Williamsb7077432024-08-16 15:22:21 -0400864 // call the method which will update
Naresh Solankicf288962025-06-06 15:26:11 +0530865 if (updateFruProperty(req, bus, address, propertyName,
Patrick Williamsb7077432024-08-16 15:22:21 -0400866 dbusInterfaceMap,
867 unknownBusObjectCount, powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +0800868 objServer))
Patrick Williamsb7077432024-08-16 15:22:21 -0400869 {
870 resp = req;
871 }
872 else
873 {
874 throw std::invalid_argument(
875 "FRU property update failed.");
876 }
Joshi-Mansid73b7442020-03-27 19:10:21 +0530877 }
Patrick Williamsb7077432024-08-16 15:22:21 -0400878 return 1;
879 });
Joshi-Mansid73b7442020-03-27 19:10:21 +0530880 }
881 else if (!iface->register_property(key, property.second + '\0'))
James Feist9eb0b582018-04-27 12:15:46 -0700882 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200883 lg2::error("illegal key: {KEY}", "KEY", key);
James Feist9eb0b582018-04-27 12:15:46 -0700884 }
Alexander Hansenc3db2c32024-08-20 15:01:38 +0200885 lg2::debug("parsed FRU property: {FIRST}: {SECOND}", "FIRST",
886 property.first, "SECOND", property.second);
James Feist3cb5fec2018-01-23 14:41:51 -0800887 }
James Feist2a9d6db2018-04-27 15:48:28 -0700888
889 // baseboard will be 0, 0
James Feist13b86d62018-05-29 11:24:35 -0700890 iface->register_property("BUS", bus);
891 iface->register_property("ADDRESS", address);
James Feist2a9d6db2018-04-27 15:48:28 -0700892
James Feist9eb0b582018-04-27 12:15:46 -0700893 iface->initialize();
James Feist3cb5fec2018-01-23 14:41:51 -0800894}
895
Andrei Kartashev2f0de172020-08-13 14:29:40 +0300896static bool readBaseboardFRU(std::vector<uint8_t>& baseboardFRU)
James Feist3cb5fec2018-01-23 14:41:51 -0800897{
898 // try to read baseboard fru from file
Ed Tanous07d467b2021-02-23 14:48:37 -0800899 std::ifstream baseboardFRUFile(baseboardFruLocation, std::ios::binary);
Andrei Kartashev2f0de172020-08-13 14:29:40 +0300900 if (baseboardFRUFile.good())
James Feist3cb5fec2018-01-23 14:41:51 -0800901 {
Andrei Kartashev2f0de172020-08-13 14:29:40 +0300902 baseboardFRUFile.seekg(0, std::ios_base::end);
903 size_t fileSize = static_cast<size_t>(baseboardFRUFile.tellg());
904 baseboardFRU.resize(fileSize);
905 baseboardFRUFile.seekg(0, std::ios_base::beg);
Ed Tanous3013fb42022-07-09 08:27:06 -0700906 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
907 char* charOffset = reinterpret_cast<char*>(baseboardFRU.data());
908 baseboardFRUFile.read(charOffset, fileSize);
James Feist3cb5fec2018-01-23 14:41:51 -0800909 }
910 else
911 {
912 return false;
913 }
914 return true;
915}
916
Andrei Kartashev2f0de172020-08-13 14:29:40 +0300917bool writeFRU(uint8_t bus, uint8_t address, const std::vector<uint8_t>& fru)
James Feistb49ffc32018-05-02 11:10:43 -0700918{
919 boost::container::flat_map<std::string, std::string> tmp;
Ed Tanous07d467b2021-02-23 14:48:37 -0800920 if (fru.size() > maxFruSize)
James Feistb49ffc32018-05-02 11:10:43 -0700921 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200922 lg2::error("Invalid fru.size() during writeFRU");
James Feistb49ffc32018-05-02 11:10:43 -0700923 return false;
924 }
925 // verify legal fru by running it through fru parsing logic
Michael Shen0961b112022-02-22 11:06:33 +0800926 if (formatIPMIFRU(fru, tmp) != resCodes::resOK)
James Feistb49ffc32018-05-02 11:10:43 -0700927 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200928 lg2::error("Invalid fru format during writeFRU");
James Feistb49ffc32018-05-02 11:10:43 -0700929 return false;
930 }
931 // baseboard fru
932 if (bus == 0 && address == 0)
933 {
Ed Tanous07d467b2021-02-23 14:48:37 -0800934 std::ofstream file(baseboardFruLocation, std::ios_base::binary);
James Feistb49ffc32018-05-02 11:10:43 -0700935 if (!file.good())
936 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200937 lg2::error("Error opening file {PATH}", "PATH",
938 baseboardFruLocation);
James Feistddb78302018-09-06 11:45:42 -0700939 throw DBusInternalError();
James Feistb49ffc32018-05-02 11:10:43 -0700940 return false;
941 }
Ed Tanous3013fb42022-07-09 08:27:06 -0700942 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
943 const char* charOffset = reinterpret_cast<const char*>(fru.data());
944 file.write(charOffset, fru.size());
James Feistb49ffc32018-05-02 11:10:43 -0700945 return file.good();
946 }
Ed Tanous07d467b2021-02-23 14:48:37 -0800947
948 if (hasEepromFile(bus, address))
James Feistb49ffc32018-05-02 11:10:43 -0700949 {
Ed Tanous07d467b2021-02-23 14:48:37 -0800950 auto path = getEepromPath(bus, address);
Naresh Solanki41ee1802024-11-09 01:44:46 +0530951 off_t offset = 0;
952
Ed Tanous07d467b2021-02-23 14:48:37 -0800953 int eeprom = open(path.c_str(), O_RDWR | O_CLOEXEC);
954 if (eeprom < 0)
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700955 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200956 lg2::error("unable to open i2c device {PATH}", "PATH", path);
Ed Tanous07d467b2021-02-23 14:48:37 -0800957 throw DBusInternalError();
958 return false;
959 }
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700960
Naresh Solanki41ee1802024-11-09 01:44:46 +0530961 std::array<uint8_t, I2C_SMBUS_BLOCK_MAX> blockData{};
962 std::string errorMessage = "eeprom at " + std::to_string(bus) +
963 " address " + std::to_string(address);
964 auto readFunc = [eeprom](off_t offset, size_t length, uint8_t* outbuf) {
965 return readFromEeprom(eeprom, offset, length, outbuf);
966 };
967 FRUReader reader(std::move(readFunc));
968
969 if (!findFRUHeader(reader, errorMessage, blockData, offset))
970 {
971 offset = 0;
972 }
973
974 if (lseek(eeprom, offset, SEEK_SET) < 0)
975 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200976 lg2::error("Unable to seek to offset {OFFSET} in device: {PATH}",
977 "OFFSET", offset, "PATH", path);
Naresh Solanki41ee1802024-11-09 01:44:46 +0530978 close(eeprom);
979 throw DBusInternalError();
980 }
981
Ed Tanous07d467b2021-02-23 14:48:37 -0800982 ssize_t writtenBytes = write(eeprom, fru.data(), fru.size());
983 if (writtenBytes < 0)
984 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200985 lg2::error("unable to write to i2c device {PATH}", "PATH", path);
Patrick Venturec50e1ff2019-08-06 10:22:28 -0700986 close(eeprom);
James Feistddb78302018-09-06 11:45:42 -0700987 throw DBusInternalError();
James Feistb49ffc32018-05-02 11:10:43 -0700988 return false;
989 }
990
Ed Tanous07d467b2021-02-23 14:48:37 -0800991 close(eeprom);
James Feistb49ffc32018-05-02 11:10:43 -0700992 return true;
993 }
Ed Tanous07d467b2021-02-23 14:48:37 -0800994
995 std::string i2cBus = "/dev/i2c-" + std::to_string(bus);
996
997 int file = open(i2cBus.c_str(), O_RDWR | O_CLOEXEC);
998 if (file < 0)
999 {
Alexander Hansen8feb0452025-09-15 14:29:20 +02001000 lg2::error("unable to open i2c device {PATH}", "PATH", i2cBus);
Ed Tanous07d467b2021-02-23 14:48:37 -08001001 throw DBusInternalError();
1002 return false;
1003 }
1004 if (ioctl(file, I2C_SLAVE_FORCE, address) < 0)
1005 {
Alexander Hansen8feb0452025-09-15 14:29:20 +02001006 lg2::error("unable to set device address");
Ed Tanous07d467b2021-02-23 14:48:37 -08001007 close(file);
1008 throw DBusInternalError();
1009 return false;
1010 }
1011
1012 constexpr const size_t retryMax = 2;
1013 uint16_t index = 0;
1014 size_t retries = retryMax;
1015 while (index < fru.size())
1016 {
Ed Tanous3013fb42022-07-09 08:27:06 -07001017 if (((index != 0U) && ((index % (maxEepromPageIndex + 1)) == 0)) &&
Ed Tanous07d467b2021-02-23 14:48:37 -08001018 (retries == retryMax))
1019 {
1020 // The 4K EEPROM only uses the A2 and A1 device address bits
1021 // with the third bit being a memory page address bit.
1022 if (ioctl(file, I2C_SLAVE_FORCE, ++address) < 0)
1023 {
Alexander Hansen8feb0452025-09-15 14:29:20 +02001024 lg2::error("unable to set device address");
Ed Tanous07d467b2021-02-23 14:48:37 -08001025 close(file);
1026 throw DBusInternalError();
1027 return false;
1028 }
1029 }
1030
1031 if (i2c_smbus_write_byte_data(file, static_cast<uint8_t>(index),
1032 fru[index]) < 0)
1033 {
Ed Tanous3013fb42022-07-09 08:27:06 -07001034 if ((retries--) == 0U)
Ed Tanous07d467b2021-02-23 14:48:37 -08001035 {
Alexander Hansen8feb0452025-09-15 14:29:20 +02001036 lg2::error("error writing fru: {ERR}", "ERR", strerror(errno));
Ed Tanous07d467b2021-02-23 14:48:37 -08001037 close(file);
1038 throw DBusInternalError();
1039 return false;
1040 }
1041 }
1042 else
1043 {
1044 retries = retryMax;
1045 index++;
1046 }
1047 // most eeproms require 5-10ms between writes
1048 std::this_thread::sleep_for(std::chrono::milliseconds(10));
1049 }
1050 close(file);
1051 return true;
James Feistb49ffc32018-05-02 11:10:43 -07001052}
1053
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001054void rescanOneBus(
krishnar4213ee212022-11-11 15:39:30 +05301055 BusMap& busmap, uint16_t busNum,
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001056 boost::container::flat_map<
1057 std::pair<size_t, size_t>,
James Feist5d7f4692020-06-17 18:22:33 -07001058 std::shared_ptr<sdbusplus::asio::dbus_interface>>& dbusInterfaceMap,
Jonathan Doman2418a612022-02-14 18:20:58 -08001059 bool dbusCall, size_t& unknownBusObjectCount, const bool& powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +08001060 sdbusplus::asio::object_server& objServer)
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001061{
Yong Li6fdfac02023-10-30 11:21:30 +08001062 for (auto device = foundDevices.begin(); device != foundDevices.end();)
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001063 {
Yong Li6fdfac02023-10-30 11:21:30 +08001064 if (device->first.first == static_cast<size_t>(busNum))
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001065 {
Yong Li6fdfac02023-10-30 11:21:30 +08001066 objServer.remove_interface(device->second);
1067 device = foundDevices.erase(device);
1068 }
1069 else
1070 {
1071 device++;
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001072 }
1073 }
1074
James Feist5d7f4692020-06-17 18:22:33 -07001075 fs::path busPath = fs::path("/dev/i2c-" + std::to_string(busNum));
1076 if (!fs::exists(busPath))
1077 {
1078 if (dbusCall)
1079 {
Alexander Hansen8feb0452025-09-15 14:29:20 +02001080 lg2::error("Unable to access i2c bus {BUS}", "BUS",
1081 static_cast<int>(busNum));
James Feist5d7f4692020-06-17 18:22:33 -07001082 throw std::invalid_argument("Invalid Bus.");
1083 }
1084 return;
1085 }
1086
1087 std::vector<fs::path> i2cBuses;
1088 i2cBuses.emplace_back(busPath);
1089
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001090 auto scan = std::make_shared<FindDevicesWithCallback>(
Kumar Thangavel7f43ea82021-12-07 17:20:16 +05301091 i2cBuses, busmap, powerIsOn, objServer,
1092 [busNum, &busmap, &dbusInterfaceMap, &unknownBusObjectCount, &powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +08001093 &objServer]() {
Patrick Williamsb7077432024-08-16 15:22:21 -04001094 for (auto busIface = dbusInterfaceMap.begin();
1095 busIface != dbusInterfaceMap.end();)
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001096 {
Patrick Williamsb7077432024-08-16 15:22:21 -04001097 if (busIface->first.first == static_cast<size_t>(busNum))
1098 {
1099 objServer.remove_interface(busIface->second);
1100 busIface = dbusInterfaceMap.erase(busIface);
1101 }
1102 else
1103 {
1104 busIface++;
1105 }
Yong Li6fdfac02023-10-30 11:21:30 +08001106 }
Patrick Williamsb7077432024-08-16 15:22:21 -04001107 auto found = busmap.find(busNum);
1108 if (found == busmap.end() || found->second == nullptr)
Yong Li6fdfac02023-10-30 11:21:30 +08001109 {
Patrick Williamsb7077432024-08-16 15:22:21 -04001110 return;
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001111 }
Patrick Williamsb7077432024-08-16 15:22:21 -04001112 for (auto& device : *(found->second))
1113 {
1114 addFruObjectToDbus(device.second, dbusInterfaceMap,
1115 static_cast<uint32_t>(busNum), device.first,
Sora Su12e2d412025-08-22 14:23:16 +08001116 unknownBusObjectCount, powerIsOn, objServer);
Patrick Williamsb7077432024-08-16 15:22:21 -04001117 }
1118 });
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001119 scan->run();
1120}
1121
James Feist9eb0b582018-04-27 12:15:46 -07001122void rescanBusses(
James Feist5cb06082019-10-24 17:11:13 -07001123 BusMap& busmap,
James Feista465ccc2019-02-08 12:51:01 -08001124 boost::container::flat_map<
1125 std::pair<size_t, size_t>,
Kumar Thangavel41a90512021-11-24 15:44:20 +05301126 std::shared_ptr<sdbusplus::asio::dbus_interface>>& dbusInterfaceMap,
Jonathan Doman2418a612022-02-14 18:20:58 -08001127 size_t& unknownBusObjectCount, const bool& powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +08001128 sdbusplus::asio::object_server& objServer)
James Feist918e18c2018-02-13 15:51:07 -08001129{
Ed Tanousaa497ed2023-02-28 13:43:41 -08001130 static boost::asio::steady_timer timer(io);
Ed Tanousae2d4352025-02-12 15:51:48 -08001131 timer.expires_after(std::chrono::seconds(1));
James Feist918e18c2018-02-13 15:51:07 -08001132
Gunnar Mills6f0ae942018-08-31 12:38:03 -05001133 // setup an async wait in case we get flooded with requests
Jian Zhang6e7cebf2022-11-29 18:30:21 +08001134 timer.async_wait([&](const boost::system::error_code& ec) {
1135 if (ec == boost::asio::error::operation_aborted)
1136 {
1137 return;
1138 }
1139
1140 if (ec)
1141 {
Alexander Hansen8feb0452025-09-15 14:29:20 +02001142 lg2::error("Error in timer: {ERR}", "ERR", ec.message());
Jian Zhang6e7cebf2022-11-29 18:30:21 +08001143 return;
1144 }
1145
James Feist4131aea2018-03-09 09:47:30 -08001146 auto devDir = fs::path("/dev/");
James Feist4131aea2018-03-09 09:47:30 -08001147 std::vector<fs::path> i2cBuses;
James Feist918e18c2018-02-13 15:51:07 -08001148
Nikhil Potaded8884f12019-03-27 13:27:13 -07001149 boost::container::flat_map<size_t, fs::path> busPaths;
1150 if (!getI2cDevicePaths(devDir, busPaths))
James Feist918e18c2018-02-13 15:51:07 -08001151 {
Alexander Hansen8feb0452025-09-15 14:29:20 +02001152 lg2::error("unable to find i2c devices");
James Feist4131aea2018-03-09 09:47:30 -08001153 return;
James Feist918e18c2018-02-13 15:51:07 -08001154 }
Nikhil Potaded8884f12019-03-27 13:27:13 -07001155
Ed Tanous07d467b2021-02-23 14:48:37 -08001156 for (const auto& busPath : busPaths)
Nikhil Potaded8884f12019-03-27 13:27:13 -07001157 {
1158 i2cBuses.emplace_back(busPath.second);
1159 }
James Feist4131aea2018-03-09 09:47:30 -08001160
James Feist98132792019-07-09 13:29:09 -07001161 busmap.clear();
James Feist8a983922019-10-24 17:11:56 -07001162 for (auto& [pair, interface] : foundDevices)
1163 {
1164 objServer.remove_interface(interface);
1165 }
1166 foundDevices.clear();
1167
Kumar Thangavel1e8e71f2021-12-01 19:39:11 +05301168 auto scan = std::make_shared<FindDevicesWithCallback>(
Kumar Thangavel7f43ea82021-12-07 17:20:16 +05301169 i2cBuses, busmap, powerIsOn, objServer, [&]() {
Patrick Williamsb7077432024-08-16 15:22:21 -04001170 for (auto& busIface : dbusInterfaceMap)
James Feist6ebf9de2018-05-15 15:01:17 -07001171 {
Patrick Williamsb7077432024-08-16 15:22:21 -04001172 objServer.remove_interface(busIface.second);
James Feist6ebf9de2018-05-15 15:01:17 -07001173 }
Patrick Williamsb7077432024-08-16 15:22:21 -04001174
1175 dbusInterfaceMap.clear();
1176 unknownBusObjectCount = 0;
1177
1178 // todo, get this from a more sensable place
1179 std::vector<uint8_t> baseboardFRU;
1180 if (readBaseboardFRU(baseboardFRU))
1181 {
1182 // If no device on i2c bus 0, the insertion will happen.
1183 auto bus0 =
1184 busmap.try_emplace(0, std::make_shared<DeviceMap>());
1185 bus0.first->second->emplace(0, baseboardFRU);
1186 }
1187 for (auto& devicemap : busmap)
1188 {
1189 for (auto& device : *devicemap.second)
1190 {
1191 addFruObjectToDbus(device.second, dbusInterfaceMap,
1192 devicemap.first, device.first,
1193 unknownBusObjectCount, powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +08001194 objServer);
Patrick Williamsb7077432024-08-16 15:22:21 -04001195 }
1196 }
1197 });
James Feist6ebf9de2018-05-15 15:01:17 -07001198 scan->run();
1199 });
James Feist918e18c2018-02-13 15:51:07 -08001200}
1201
Naresh Solankicf288962025-06-06 15:26:11 +05301202bool updateFruProperty(
1203 const std::string& propertyValue, uint32_t bus, uint32_t address,
Ed Tanous07d467b2021-02-23 14:48:37 -08001204 const std::string& propertyName,
Joshi-Mansid73b7442020-03-27 19:10:21 +05301205 boost::container::flat_map<
1206 std::pair<size_t, size_t>,
Kumar Thangavel41a90512021-11-24 15:44:20 +05301207 std::shared_ptr<sdbusplus::asio::dbus_interface>>& dbusInterfaceMap,
Jonathan Doman2418a612022-02-14 18:20:58 -08001208 size_t& unknownBusObjectCount, const bool& powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +08001209 sdbusplus::asio::object_server& objServer)
Joshi-Mansid73b7442020-03-27 19:10:21 +05301210{
Naresh Solankicf288962025-06-06 15:26:11 +05301211 lg2::debug(
1212 "updateFruProperty called: FieldName = {NAME}, FieldValue = {VALUE}",
1213 "NAME", propertyName, "VALUE", propertyValue);
1214
Joshi-Mansid73b7442020-03-27 19:10:21 +05301215 std::vector<uint8_t> fruData;
Kumar Thangavel9d6f5902022-08-26 16:52:14 +05301216 if (!getFruData(fruData, bus, address))
Joshi-Mansid73b7442020-03-27 19:10:21 +05301217 {
Marc Olberding25680e32025-10-03 12:38:10 -07001218 lg2::error("Failure getting FRU Data from bus {BUS}, address {ADDRESS}",
1219 "BUS", bus, "ADDRESS", address);
Joshi-Mansid73b7442020-03-27 19:10:21 +05301220 return false;
1221 }
1222
Marc Olberding9bde15b2025-09-09 15:24:00 -07001223 bool success = updateAddProperty(propertyValue, propertyName, fruData);
1224 if (!success)
Joshi-Mansid73b7442020-03-27 19:10:21 +05301225 {
Marc Olberding25680e32025-10-03 12:38:10 -07001226 lg2::error(
Marc Olberding9bde15b2025-09-09 15:24:00 -07001227 "Failed to update the property on bus {BUS}, address {ADDRESS}",
1228 "BUS", bus, "ADDRESS", address);
Joshi-Mansid73b7442020-03-27 19:10:21 +05301229 return false;
1230 }
1231
Andrei Kartashev2f0de172020-08-13 14:29:40 +03001232 if (!writeFRU(static_cast<uint8_t>(bus), static_cast<uint8_t>(address),
Joshi-Mansid73b7442020-03-27 19:10:21 +05301233 fruData))
1234 {
Marc Olberding25680e32025-10-03 12:38:10 -07001235 lg2::error("Failed to write the FRU");
Joshi-Mansid73b7442020-03-27 19:10:21 +05301236 return false;
1237 }
1238
Kumar Thangavel7f43ea82021-12-07 17:20:16 +05301239 rescanBusses(busMap, dbusInterfaceMap, unknownBusObjectCount, powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +08001240 objServer);
Joshi-Mansid73b7442020-03-27 19:10:21 +05301241 return true;
1242}
1243
James Feist98132792019-07-09 13:29:09 -07001244int main()
James Feist3cb5fec2018-01-23 14:41:51 -08001245{
Kumar Thangavel7f43ea82021-12-07 17:20:16 +05301246 auto systemBus = std::make_shared<sdbusplus::asio::connection>(io);
1247 sdbusplus::asio::object_server objServer(systemBus);
1248
Kumar Thangavel41a90512021-11-24 15:44:20 +05301249 static size_t unknownBusObjectCount = 0;
Kumar Thangavel1e8e71f2021-12-01 19:39:11 +05301250 static bool powerIsOn = false;
James Feist3cb5fec2018-01-23 14:41:51 -08001251 auto devDir = fs::path("/dev/");
James Feistc9dff1b2019-02-13 13:33:13 -08001252 auto matchString = std::string(R"(i2c-\d+$)");
James Feist3cb5fec2018-01-23 14:41:51 -08001253 std::vector<fs::path> i2cBuses;
1254
James Feista3c180a2018-08-09 16:06:04 -07001255 if (!findFiles(devDir, matchString, i2cBuses))
James Feist3cb5fec2018-01-23 14:41:51 -08001256 {
Alexander Hansen8feb0452025-09-15 14:29:20 +02001257 lg2::error("unable to find i2c devices");
James Feist3cb5fec2018-01-23 14:41:51 -08001258 return 1;
1259 }
James Feist3cb5fec2018-01-23 14:41:51 -08001260
Matt Simmering2447c242023-11-09 14:18:39 -08001261 // check for and load blocklist with initial buses.
1262 loadBlocklist(blocklistPath);
Patrick Venture11f1ff42019-08-01 10:42:12 -07001263
Vijay Khemka065f6d92018-12-18 10:37:47 -08001264 systemBus->request_name("xyz.openbmc_project.FruDevice");
James Feist3cb5fec2018-01-23 14:41:51 -08001265
James Feist6ebf9de2018-05-15 15:01:17 -07001266 // this is a map with keys of pair(bus number, address) and values of
1267 // the object on dbus
James Feist3cb5fec2018-01-23 14:41:51 -08001268 boost::container::flat_map<std::pair<size_t, size_t>,
James Feist9eb0b582018-04-27 12:15:46 -07001269 std::shared_ptr<sdbusplus::asio::dbus_interface>>
1270 dbusInterfaceMap;
James Feist3cb5fec2018-01-23 14:41:51 -08001271
James Feist9eb0b582018-04-27 12:15:46 -07001272 std::shared_ptr<sdbusplus::asio::dbus_interface> iface =
1273 objServer.add_interface("/xyz/openbmc_project/FruDevice",
1274 "xyz.openbmc_project.FruDeviceManager");
James Feist3cb5fec2018-01-23 14:41:51 -08001275
Kumar Thangavel41a90512021-11-24 15:44:20 +05301276 iface->register_method("ReScan", [&]() {
Kumar Thangavel7f43ea82021-12-07 17:20:16 +05301277 rescanBusses(busMap, dbusInterfaceMap, unknownBusObjectCount, powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +08001278 objServer);
Kumar Thangavel41a90512021-11-24 15:44:20 +05301279 });
James Feist2a9d6db2018-04-27 15:48:28 -07001280
krishnar4213ee212022-11-11 15:39:30 +05301281 iface->register_method("ReScanBus", [&](uint16_t bus) {
Kumar Thangavel1e8e71f2021-12-01 19:39:11 +05301282 rescanOneBus(busMap, bus, dbusInterfaceMap, true, unknownBusObjectCount,
Sora Su12e2d412025-08-22 14:23:16 +08001283 powerIsOn, objServer);
Cheng C Yangd5b87fb2020-01-23 10:10:45 +08001284 });
1285
Andrei Kartashev2f0de172020-08-13 14:29:40 +03001286 iface->register_method("GetRawFru", getFRUInfo);
James Feistb49ffc32018-05-02 11:10:43 -07001287
Patrick Williamsb7077432024-08-16 15:22:21 -04001288 iface->register_method(
1289 "WriteFru", [&](const uint16_t bus, const uint8_t address,
1290 const std::vector<uint8_t>& data) {
1291 if (!writeFRU(bus, address, data))
1292 {
1293 throw std::invalid_argument("Invalid Arguments.");
1294 return;
1295 }
1296 // schedule rescan on success
1297 rescanBusses(busMap, dbusInterfaceMap, unknownBusObjectCount,
Sora Su12e2d412025-08-22 14:23:16 +08001298 powerIsOn, objServer);
Patrick Williamsb7077432024-08-16 15:22:21 -04001299 });
James Feist9eb0b582018-04-27 12:15:46 -07001300 iface->initialize();
James Feist3cb5fec2018-01-23 14:41:51 -08001301
Patrick Williams2af39222022-07-22 19:26:56 -05001302 std::function<void(sdbusplus::message_t & message)> eventHandler =
1303 [&](sdbusplus::message_t& message) {
Patrick Williamsb7077432024-08-16 15:22:21 -04001304 std::string objectName;
1305 boost::container::flat_map<
1306 std::string,
1307 std::variant<std::string, bool, int64_t, uint64_t, double>>
1308 values;
1309 message.read(objectName, values);
1310 auto findState = values.find("CurrentHostState");
1311 if (findState != values.end())
James Feist918e18c2018-02-13 15:51:07 -08001312 {
Patrick Williamsb7077432024-08-16 15:22:21 -04001313 if (std::get<std::string>(findState->second) ==
1314 "xyz.openbmc_project.State.Host.HostState.Running")
1315 {
1316 powerIsOn = true;
1317 }
James Feist0eeb79c2019-10-09 13:35:29 -07001318 }
James Feist6ebf9de2018-05-15 15:01:17 -07001319
Patrick Williamsb7077432024-08-16 15:22:21 -04001320 if (powerIsOn)
1321 {
1322 rescanBusses(busMap, dbusInterfaceMap, unknownBusObjectCount,
Sora Su12e2d412025-08-22 14:23:16 +08001323 powerIsOn, objServer);
Patrick Williamsb7077432024-08-16 15:22:21 -04001324 }
1325 };
James Feist9eb0b582018-04-27 12:15:46 -07001326
Patrick Williams2af39222022-07-22 19:26:56 -05001327 sdbusplus::bus::match_t powerMatch = sdbusplus::bus::match_t(
1328 static_cast<sdbusplus::bus_t&>(*systemBus),
James Feist7bcd3f22019-03-18 16:04:04 -07001329 "type='signal',interface='org.freedesktop.DBus.Properties',path='/xyz/"
James Feist0eeb79c2019-10-09 13:35:29 -07001330 "openbmc_project/state/"
1331 "host0',arg0='xyz.openbmc_project.State.Host'",
James Feist9eb0b582018-04-27 12:15:46 -07001332 eventHandler);
1333
James Feist4131aea2018-03-09 09:47:30 -08001334 int fd = inotify_init();
Ed Tanous07d467b2021-02-23 14:48:37 -08001335 inotify_add_watch(fd, i2CDevLocation, IN_CREATE | IN_MOVED_TO | IN_DELETE);
Ed Tanous3013fb42022-07-09 08:27:06 -07001336 std::array<char, 4096> readBuffer{};
James Feist4131aea2018-03-09 09:47:30 -08001337 // monitor for new i2c devices
1338 boost::asio::posix::stream_descriptor dirWatch(io, fd);
1339 std::function<void(const boost::system::error_code, std::size_t)>
Patrick Williamsb9dd7f82023-10-20 11:20:11 -05001340 watchI2cBusses = [&](const boost::system::error_code& ec,
1341 std::size_t bytesTransferred) {
Patrick Williamsb7077432024-08-16 15:22:21 -04001342 if (ec)
James Feist4131aea2018-03-09 09:47:30 -08001343 {
Alexander Hansen8feb0452025-09-15 14:29:20 +02001344 lg2::info("Callback Error {ERR}", "ERR", ec.message());
Patrick Williamsb7077432024-08-16 15:22:21 -04001345 return;
1346 }
1347 size_t index = 0;
1348 while ((index + sizeof(inotify_event)) <= bytesTransferred)
1349 {
1350 const char* p = &readBuffer[index];
1351 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
1352 const auto* iEvent = reinterpret_cast<const inotify_event*>(p);
1353 switch (iEvent->mask)
Ed Tanousfc171422024-04-04 17:18:16 -07001354 {
Patrick Williamsb7077432024-08-16 15:22:21 -04001355 case IN_CREATE:
1356 case IN_MOVED_TO:
1357 case IN_DELETE:
Patrick Williamsdf190612023-05-10 07:51:34 -05001358 {
Patrick Williamsb7077432024-08-16 15:22:21 -04001359 std::string_view name(&iEvent->name[0], iEvent->len);
George Liu164af2f2025-08-21 17:16:31 +08001360 if (name.starts_with("i2c"))
James Feist9eb0b582018-04-27 12:15:46 -07001361 {
Patrick Williamsb7077432024-08-16 15:22:21 -04001362 int bus = busStrToInt(name);
1363 if (bus < 0)
1364 {
Alexander Hansen8feb0452025-09-15 14:29:20 +02001365 lg2::error("Could not parse bus {BUS}", "BUS",
1366 name);
Patrick Williamsb7077432024-08-16 15:22:21 -04001367 continue;
1368 }
1369 int rootBus = getRootBus(bus);
1370 if (rootBus >= 0)
1371 {
1372 rescanOneBus(busMap,
1373 static_cast<uint16_t>(rootBus),
1374 dbusInterfaceMap, false,
1375 unknownBusObjectCount, powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +08001376 objServer);
Patrick Williamsb7077432024-08-16 15:22:21 -04001377 }
1378 rescanOneBus(busMap, static_cast<uint16_t>(bus),
Kumar Thangavel41a90512021-11-24 15:44:20 +05301379 dbusInterfaceMap, false,
Kumar Thangavel7f43ea82021-12-07 17:20:16 +05301380 unknownBusObjectCount, powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +08001381 objServer);
James Feist9eb0b582018-04-27 12:15:46 -07001382 }
Patrick Williamsdf190612023-05-10 07:51:34 -05001383 }
Ed Tanousfc171422024-04-04 17:18:16 -07001384 break;
Patrick Williamsb7077432024-08-16 15:22:21 -04001385 default:
1386 break;
1387 }
1388 index += sizeof(inotify_event) + iEvent->len;
James Feist4131aea2018-03-09 09:47:30 -08001389 }
James Feist6ebf9de2018-05-15 15:01:17 -07001390
Patrick Williamsb7077432024-08-16 15:22:21 -04001391 dirWatch.async_read_some(boost::asio::buffer(readBuffer),
1392 watchI2cBusses);
1393 };
James Feist4131aea2018-03-09 09:47:30 -08001394
1395 dirWatch.async_read_some(boost::asio::buffer(readBuffer), watchI2cBusses);
Gunnar Millsb3e42fe2018-06-13 15:48:27 -05001396 // run the initial scan
Kumar Thangavel7f43ea82021-12-07 17:20:16 +05301397 rescanBusses(busMap, dbusInterfaceMap, unknownBusObjectCount, powerIsOn,
Sora Su12e2d412025-08-22 14:23:16 +08001398 objServer);
James Feist918e18c2018-02-13 15:51:07 -08001399
James Feist3cb5fec2018-01-23 14:41:51 -08001400 io.run();
1401 return 0;
1402}