blob: ce327735814b0e11c214aa94c5918f3598ce38ee [file] [log] [blame]
Willy Tude54f482021-01-26 15:59:09 -08001/*
2// Copyright (c) 2017-2019 Intel Corporation
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
17#include "dbus-sdr/storagecommands.hpp"
18
19#include "dbus-sdr/sdrutils.hpp"
20#include "selutility.hpp"
21
22#include <boost/algorithm/string.hpp>
23#include <boost/container/flat_map.hpp>
24#include <boost/process.hpp>
25#include <filesystem>
Ed Tanous5d380672022-05-04 15:58:14 -070026#include <fstream>
Willy Tude54f482021-01-26 15:59:09 -080027#include <functional>
28#include <iostream>
29#include <ipmid/api.hpp>
30#include <ipmid/message.hpp>
31#include <ipmid/types.hpp>
32#include <phosphor-logging/log.hpp>
33#include <sdbusplus/message/types.hpp>
34#include <sdbusplus/timer.hpp>
35#include <stdexcept>
36#include <string_view>
37
38static constexpr bool DEBUG = false;
39
40namespace dynamic_sensors::ipmi::sel
41{
42static const std::filesystem::path selLogDir = "/var/log";
43static const std::string selLogFilename = "ipmi_sel";
44
45static int getFileTimestamp(const std::filesystem::path& file)
46{
47 struct stat st;
48
49 if (stat(file.c_str(), &st) >= 0)
50 {
51 return st.st_mtime;
52 }
53 return ::ipmi::sel::invalidTimeStamp;
54}
55
56namespace erase_time
57{
58static constexpr const char* selEraseTimestamp = "/var/lib/ipmi/sel_erase_time";
59
60void save()
61{
62 // open the file, creating it if necessary
63 int fd = open(selEraseTimestamp, O_WRONLY | O_CREAT | O_CLOEXEC, 0644);
64 if (fd < 0)
65 {
66 std::cerr << "Failed to open file\n";
67 return;
68 }
69
70 // update the file timestamp to the current time
71 if (futimens(fd, NULL) < 0)
72 {
73 std::cerr << "Failed to update timestamp: "
74 << std::string(strerror(errno));
75 }
76 close(fd);
77}
78
79int get()
80{
81 return getFileTimestamp(selEraseTimestamp);
82}
83} // namespace erase_time
84} // namespace dynamic_sensors::ipmi::sel
85
86namespace ipmi
87{
88
89namespace storage
90{
91
92constexpr static const size_t maxMessageSize = 64;
93constexpr static const size_t maxFruSdrNameSize = 16;
94using ObjectType =
95 boost::container::flat_map<std::string,
96 boost::container::flat_map<std::string, Value>>;
97using ManagedObjectType =
98 boost::container::flat_map<sdbusplus::message::object_path, ObjectType>;
99using ManagedEntry = std::pair<sdbusplus::message::object_path, ObjectType>;
100
Charles Boyer818bea12021-09-20 16:56:36 -0500101constexpr static const char* selLoggerServiceName =
102 "xyz.openbmc_project.Logging.IPMI";
Willy Tude54f482021-01-26 15:59:09 -0800103constexpr static const char* fruDeviceServiceName =
104 "xyz.openbmc_project.FruDevice";
105constexpr static const char* entityManagerServiceName =
106 "xyz.openbmc_project.EntityManager";
107constexpr static const size_t writeTimeoutSeconds = 10;
108constexpr static const char* chassisTypeRackMount = "23";
Zev Weissf38f9d12021-05-21 13:30:16 -0500109constexpr static const char* chassisTypeMainServer = "17";
Willy Tude54f482021-01-26 15:59:09 -0800110
111// event direction is bit[7] of eventType where 1b = Deassertion event
112constexpr static const uint8_t deassertionEvent = 0x80;
113
114static std::vector<uint8_t> fruCache;
115static uint8_t cacheBus = 0xFF;
116static uint8_t cacheAddr = 0XFF;
117static uint8_t lastDevId = 0xFF;
118
119static uint8_t writeBus = 0xFF;
120static uint8_t writeAddr = 0XFF;
121
122std::unique_ptr<phosphor::Timer> writeTimer = nullptr;
Patrick Williams5d82f472022-07-22 19:26:53 -0500123static std::vector<sdbusplus::bus::match_t> fruMatches;
Willy Tude54f482021-01-26 15:59:09 -0800124
125ManagedObjectType frus;
126
127// we unfortunately have to build a map of hashes in case there is a
128// collision to verify our dev-id
129boost::container::flat_map<uint8_t, std::pair<uint8_t, uint8_t>> deviceHashes;
Willy Tude54f482021-01-26 15:59:09 -0800130void registerStorageFunctions() __attribute__((constructor));
131
Willy Tu48fe64e2022-08-01 23:23:46 +0000132bool writeFru(const std::vector<uint8_t>& fru)
Willy Tude54f482021-01-26 15:59:09 -0800133{
134 if (writeBus == 0xFF && writeAddr == 0xFF)
135 {
136 return true;
137 }
Thang Trand934be92021-12-08 10:13:50 +0700138 lastDevId = 0xFF;
Willy Tude54f482021-01-26 15:59:09 -0800139 std::shared_ptr<sdbusplus::asio::connection> dbus = getSdBus();
Patrick Williams5d82f472022-07-22 19:26:53 -0500140 sdbusplus::message_t writeFru = dbus->new_method_call(
Willy Tude54f482021-01-26 15:59:09 -0800141 fruDeviceServiceName, "/xyz/openbmc_project/FruDevice",
142 "xyz.openbmc_project.FruDeviceManager", "WriteFru");
Willy Tu48fe64e2022-08-01 23:23:46 +0000143 writeFru.append(writeBus, writeAddr, fru);
Willy Tude54f482021-01-26 15:59:09 -0800144 try
145 {
Patrick Williams5d82f472022-07-22 19:26:53 -0500146 sdbusplus::message_t writeFruResp = dbus->call(writeFru);
Willy Tude54f482021-01-26 15:59:09 -0800147 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -0500148 catch (const sdbusplus::exception_t&)
Willy Tude54f482021-01-26 15:59:09 -0800149 {
150 // todo: log sel?
151 phosphor::logging::log<phosphor::logging::level::ERR>(
152 "error writing fru");
153 return false;
154 }
155 writeBus = 0xFF;
156 writeAddr = 0xFF;
157 return true;
158}
159
Willy Tu48fe64e2022-08-01 23:23:46 +0000160bool writeFruCache()
161{
162 return writeFru(fruCache);
163}
164
Willy Tude54f482021-01-26 15:59:09 -0800165void createTimers()
166{
Willy Tu48fe64e2022-08-01 23:23:46 +0000167 writeTimer = std::make_unique<phosphor::Timer>(writeFruCache);
Willy Tude54f482021-01-26 15:59:09 -0800168}
169
170void recalculateHashes()
171{
172
173 deviceHashes.clear();
174 // hash the object paths to create unique device id's. increment on
175 // collision
176 std::hash<std::string> hasher;
177 for (const auto& fru : frus)
178 {
179 auto fruIface = fru.second.find("xyz.openbmc_project.FruDevice");
180 if (fruIface == fru.second.end())
181 {
182 continue;
183 }
184
185 auto busFind = fruIface->second.find("BUS");
186 auto addrFind = fruIface->second.find("ADDRESS");
187 if (busFind == fruIface->second.end() ||
188 addrFind == fruIface->second.end())
189 {
190 phosphor::logging::log<phosphor::logging::level::INFO>(
191 "fru device missing Bus or Address",
192 phosphor::logging::entry("FRU=%s", fru.first.str.c_str()));
193 continue;
194 }
195
196 uint8_t fruBus = std::get<uint32_t>(busFind->second);
197 uint8_t fruAddr = std::get<uint32_t>(addrFind->second);
198 auto chassisFind = fruIface->second.find("CHASSIS_TYPE");
199 std::string chassisType;
200 if (chassisFind != fruIface->second.end())
201 {
202 chassisType = std::get<std::string>(chassisFind->second);
203 }
204
205 uint8_t fruHash = 0;
Zev Weissf38f9d12021-05-21 13:30:16 -0500206 if (chassisType.compare(chassisTypeRackMount) != 0 &&
207 chassisType.compare(chassisTypeMainServer) != 0)
Willy Tude54f482021-01-26 15:59:09 -0800208 {
209 fruHash = hasher(fru.first.str);
210 // can't be 0xFF based on spec, and 0 is reserved for baseboard
211 if (fruHash == 0 || fruHash == 0xFF)
212 {
213 fruHash = 1;
214 }
215 }
216 std::pair<uint8_t, uint8_t> newDev(fruBus, fruAddr);
217
218 bool emplacePassed = false;
219 while (!emplacePassed)
220 {
221 auto resp = deviceHashes.emplace(fruHash, newDev);
222 emplacePassed = resp.second;
223 if (!emplacePassed)
224 {
225 fruHash++;
226 // can't be 0xFF based on spec, and 0 is reserved for
227 // baseboard
228 if (fruHash == 0XFF)
229 {
230 fruHash = 0x1;
231 }
232 }
233 }
234 }
235}
236
Willy Tu11d68892022-01-20 10:37:34 -0800237void replaceCacheFru(
238 const std::shared_ptr<sdbusplus::asio::connection>& bus,
239 boost::asio::yield_context& yield,
240 [[maybe_unused]] const std::optional<std::string>& path = std::nullopt)
Willy Tude54f482021-01-26 15:59:09 -0800241{
242 boost::system::error_code ec;
243
244 frus = bus->yield_method_call<ManagedObjectType>(
245 yield, ec, fruDeviceServiceName, "/",
246 "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
247 if (ec)
248 {
249 phosphor::logging::log<phosphor::logging::level::ERR>(
250 "GetMangagedObjects for replaceCacheFru failed",
251 phosphor::logging::entry("ERROR=%s", ec.message().c_str()));
252
253 return;
254 }
255 recalculateHashes();
256}
257
Willy Tu48fe64e2022-08-01 23:23:46 +0000258std::pair<ipmi::Cc, std::vector<uint8_t>> getFru(ipmi::Context::ptr ctx,
259 uint8_t devId)
Willy Tude54f482021-01-26 15:59:09 -0800260{
261 if (lastDevId == devId && devId != 0xFF)
262 {
Willy Tu48fe64e2022-08-01 23:23:46 +0000263 return {ipmi::ccSuccess, fruCache};
Willy Tude54f482021-01-26 15:59:09 -0800264 }
265
Willy Tude54f482021-01-26 15:59:09 -0800266 auto deviceFind = deviceHashes.find(devId);
267 if (deviceFind == deviceHashes.end())
268 {
Willy Tu48fe64e2022-08-01 23:23:46 +0000269 return {IPMI_CC_SENSOR_INVALID, {}};
Willy Tude54f482021-01-26 15:59:09 -0800270 }
271
Willy Tude54f482021-01-26 15:59:09 -0800272 cacheBus = deviceFind->second.first;
273 cacheAddr = deviceFind->second.second;
274
275 boost::system::error_code ec;
276
Willy Tu48fe64e2022-08-01 23:23:46 +0000277 std::vector<uint8_t> fru =
278 ctx->bus->yield_method_call<std::vector<uint8_t>>(
279 ctx->yield, ec, fruDeviceServiceName,
280 "/xyz/openbmc_project/FruDevice",
281 "xyz.openbmc_project.FruDeviceManager", "GetRawFru", cacheBus,
282 cacheAddr);
Willy Tude54f482021-01-26 15:59:09 -0800283 if (ec)
284 {
285 phosphor::logging::log<phosphor::logging::level::ERR>(
286 "Couldn't get raw fru",
287 phosphor::logging::entry("ERROR=%s", ec.message().c_str()));
288
289 cacheBus = 0xFF;
290 cacheAddr = 0xFF;
Willy Tu48fe64e2022-08-01 23:23:46 +0000291 return {ipmi::ccResponseError, {}};
Willy Tude54f482021-01-26 15:59:09 -0800292 }
293
Willy Tu48fe64e2022-08-01 23:23:46 +0000294 fruCache.clear();
Willy Tude54f482021-01-26 15:59:09 -0800295 lastDevId = devId;
Willy Tu48fe64e2022-08-01 23:23:46 +0000296 fruCache = fru;
297
298 return {ipmi::ccSuccess, fru};
Willy Tude54f482021-01-26 15:59:09 -0800299}
300
301void writeFruIfRunning()
302{
303 if (!writeTimer->isRunning())
304 {
305 return;
306 }
307 writeTimer->stop();
Willy Tu48fe64e2022-08-01 23:23:46 +0000308 writeFruCache();
Willy Tude54f482021-01-26 15:59:09 -0800309}
310
311void startMatch(void)
312{
313 if (fruMatches.size())
314 {
315 return;
316 }
317
318 fruMatches.reserve(2);
319
320 auto bus = getSdBus();
321 fruMatches.emplace_back(*bus,
322 "type='signal',arg0path='/xyz/openbmc_project/"
323 "FruDevice/',member='InterfacesAdded'",
Patrick Williams5d82f472022-07-22 19:26:53 -0500324 [](sdbusplus::message_t& message) {
Willy Tude54f482021-01-26 15:59:09 -0800325 sdbusplus::message::object_path path;
326 ObjectType object;
327 try
328 {
329 message.read(path, object);
330 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -0500331 catch (const sdbusplus::exception_t&)
Willy Tude54f482021-01-26 15:59:09 -0800332 {
333 return;
334 }
335 auto findType = object.find(
336 "xyz.openbmc_project.FruDevice");
337 if (findType == object.end())
338 {
339 return;
340 }
341 writeFruIfRunning();
342 frus[path] = object;
343 recalculateHashes();
344 lastDevId = 0xFF;
345 });
346
347 fruMatches.emplace_back(*bus,
348 "type='signal',arg0path='/xyz/openbmc_project/"
349 "FruDevice/',member='InterfacesRemoved'",
Patrick Williams5d82f472022-07-22 19:26:53 -0500350 [](sdbusplus::message_t& message) {
Willy Tude54f482021-01-26 15:59:09 -0800351 sdbusplus::message::object_path path;
352 std::set<std::string> interfaces;
353 try
354 {
355 message.read(path, interfaces);
356 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -0500357 catch (const sdbusplus::exception_t&)
Willy Tude54f482021-01-26 15:59:09 -0800358 {
359 return;
360 }
361 auto findType = interfaces.find(
362 "xyz.openbmc_project.FruDevice");
363 if (findType == interfaces.end())
364 {
365 return;
366 }
367 writeFruIfRunning();
368 frus.erase(path);
369 recalculateHashes();
370 lastDevId = 0xFF;
371 });
372
373 // call once to populate
374 boost::asio::spawn(*getIoContext(), [](boost::asio::yield_context yield) {
375 replaceCacheFru(getSdBus(), yield);
376 });
377}
378
379/** @brief implements the read FRU data command
380 * @param fruDeviceId - FRU Device ID
381 * @param fruInventoryOffset - FRU Inventory Offset to write
382 * @param countToRead - Count to read
383 *
384 * @returns ipmi completion code plus response data
385 * - countWritten - Count written
386 */
387ipmi::RspType<uint8_t, // Count
388 std::vector<uint8_t> // Requested data
389 >
390 ipmiStorageReadFruData(ipmi::Context::ptr ctx, uint8_t fruDeviceId,
391 uint16_t fruInventoryOffset, uint8_t countToRead)
392{
393 if (fruDeviceId == 0xFF)
394 {
395 return ipmi::responseInvalidFieldRequest();
396 }
397
Willy Tu48fe64e2022-08-01 23:23:46 +0000398 auto [status, fru] = getFru(ctx, fruDeviceId);
Willy Tude54f482021-01-26 15:59:09 -0800399 if (status != ipmi::ccSuccess)
400 {
401 return ipmi::response(status);
402 }
403
404 size_t fromFruByteLen = 0;
Willy Tu48fe64e2022-08-01 23:23:46 +0000405 if (countToRead + fruInventoryOffset < fru.size())
Willy Tude54f482021-01-26 15:59:09 -0800406 {
407 fromFruByteLen = countToRead;
408 }
Willy Tu48fe64e2022-08-01 23:23:46 +0000409 else if (fru.size() > fruInventoryOffset)
Willy Tude54f482021-01-26 15:59:09 -0800410 {
Willy Tu48fe64e2022-08-01 23:23:46 +0000411 fromFruByteLen = fru.size() - fruInventoryOffset;
Willy Tude54f482021-01-26 15:59:09 -0800412 }
413 else
414 {
415 return ipmi::responseReqDataLenExceeded();
416 }
417
418 std::vector<uint8_t> requestedData;
419
Willy Tu48fe64e2022-08-01 23:23:46 +0000420 requestedData.insert(requestedData.begin(),
421 fru.begin() + fruInventoryOffset,
422 fru.begin() + fruInventoryOffset + fromFruByteLen);
Willy Tude54f482021-01-26 15:59:09 -0800423
424 return ipmi::responseSuccess(static_cast<uint8_t>(requestedData.size()),
425 requestedData);
426}
427
428/** @brief implements the write FRU data command
429 * @param fruDeviceId - FRU Device ID
430 * @param fruInventoryOffset - FRU Inventory Offset to write
431 * @param dataToWrite - Data to write
432 *
433 * @returns ipmi completion code plus response data
434 * - countWritten - Count written
435 */
436ipmi::RspType<uint8_t>
437 ipmiStorageWriteFruData(ipmi::Context::ptr ctx, uint8_t fruDeviceId,
438 uint16_t fruInventoryOffset,
439 std::vector<uint8_t>& dataToWrite)
440{
441 if (fruDeviceId == 0xFF)
442 {
443 return ipmi::responseInvalidFieldRequest();
444 }
445
446 size_t writeLen = dataToWrite.size();
447
Willy Tu48fe64e2022-08-01 23:23:46 +0000448 auto [status, fru] = getFru(ctx, fruDeviceId);
Willy Tude54f482021-01-26 15:59:09 -0800449 if (status != ipmi::ccSuccess)
450 {
451 return ipmi::response(status);
452 }
453 size_t lastWriteAddr = fruInventoryOffset + writeLen;
Willy Tu48fe64e2022-08-01 23:23:46 +0000454 if (fru.size() < lastWriteAddr)
Willy Tude54f482021-01-26 15:59:09 -0800455 {
Willy Tu48fe64e2022-08-01 23:23:46 +0000456 fru.resize(fruInventoryOffset + writeLen);
Willy Tude54f482021-01-26 15:59:09 -0800457 }
458
459 std::copy(dataToWrite.begin(), dataToWrite.begin() + writeLen,
Willy Tu48fe64e2022-08-01 23:23:46 +0000460 fru.begin() + fruInventoryOffset);
Willy Tude54f482021-01-26 15:59:09 -0800461
462 bool atEnd = false;
463
Willy Tu48fe64e2022-08-01 23:23:46 +0000464 if (fru.size() >= sizeof(FRUHeader))
Willy Tude54f482021-01-26 15:59:09 -0800465 {
Willy Tu48fe64e2022-08-01 23:23:46 +0000466 FRUHeader* header = reinterpret_cast<FRUHeader*>(fru.data());
Willy Tude54f482021-01-26 15:59:09 -0800467
468 size_t areaLength = 0;
469 size_t lastRecordStart = std::max(
470 {header->internalOffset, header->chassisOffset, header->boardOffset,
471 header->productOffset, header->multiRecordOffset});
472 lastRecordStart *= 8; // header starts in are multiples of 8 bytes
473
474 if (header->multiRecordOffset)
475 {
476 // This FRU has a MultiRecord Area
477 uint8_t endOfList = 0;
478 // Walk the MultiRecord headers until the last record
479 while (!endOfList)
480 {
481 // The MSB in the second byte of the MultiRecord header signals
482 // "End of list"
Willy Tu48fe64e2022-08-01 23:23:46 +0000483 endOfList = fru[lastRecordStart + 1] & 0x80;
Willy Tude54f482021-01-26 15:59:09 -0800484 // Third byte in the MultiRecord header is the length
Willy Tu48fe64e2022-08-01 23:23:46 +0000485 areaLength = fru[lastRecordStart + 2];
Willy Tude54f482021-01-26 15:59:09 -0800486 // This length is in bytes (not 8 bytes like other headers)
487 areaLength += 5; // The length omits the 5 byte header
488 if (!endOfList)
489 {
490 // Next MultiRecord header
491 lastRecordStart += areaLength;
492 }
493 }
494 }
495 else
496 {
497 // This FRU does not have a MultiRecord Area
498 // Get the length of the area in multiples of 8 bytes
499 if (lastWriteAddr > (lastRecordStart + 1))
500 {
501 // second byte in record area is the length
Willy Tu48fe64e2022-08-01 23:23:46 +0000502 areaLength = fru[lastRecordStart + 1];
Willy Tude54f482021-01-26 15:59:09 -0800503 areaLength *= 8; // it is in multiples of 8 bytes
504 }
505 }
506 if (lastWriteAddr >= (areaLength + lastRecordStart))
507 {
508 atEnd = true;
509 }
510 }
511 uint8_t countWritten = 0;
512
513 writeBus = cacheBus;
514 writeAddr = cacheAddr;
515 if (atEnd)
516 {
517 // cancel timer, we're at the end so might as well send it
518 writeTimer->stop();
Willy Tu48fe64e2022-08-01 23:23:46 +0000519 if (!writeFru(fru))
Willy Tude54f482021-01-26 15:59:09 -0800520 {
521 return ipmi::responseInvalidFieldRequest();
522 }
Willy Tu48fe64e2022-08-01 23:23:46 +0000523 countWritten = std::min(fru.size(), static_cast<size_t>(0xFF));
Willy Tude54f482021-01-26 15:59:09 -0800524 }
525 else
526 {
527 // start a timer, if no further data is sent to check to see if it is
528 // valid
529 writeTimer->start(std::chrono::duration_cast<std::chrono::microseconds>(
530 std::chrono::seconds(writeTimeoutSeconds)));
531 countWritten = 0;
532 }
533
534 return ipmi::responseSuccess(countWritten);
535}
536
537/** @brief implements the get FRU inventory area info command
538 * @param fruDeviceId - FRU Device ID
539 *
540 * @returns IPMI completion code plus response data
541 * - inventorySize - Number of possible allocation units
542 * - accessType - Allocation unit size in bytes.
543 */
544ipmi::RspType<uint16_t, // inventorySize
545 uint8_t> // accessType
546 ipmiStorageGetFruInvAreaInfo(ipmi::Context::ptr ctx, uint8_t fruDeviceId)
547{
548 if (fruDeviceId == 0xFF)
549 {
550 return ipmi::responseInvalidFieldRequest();
551 }
552
Willy Tu48fe64e2022-08-01 23:23:46 +0000553 auto [ret, fru] = getFru(ctx, fruDeviceId);
Willy Tude54f482021-01-26 15:59:09 -0800554 if (ret != ipmi::ccSuccess)
555 {
556 return ipmi::response(ret);
557 }
558
559 constexpr uint8_t accessType =
560 static_cast<uint8_t>(GetFRUAreaAccessType::byte);
561
Willy Tu48fe64e2022-08-01 23:23:46 +0000562 return ipmi::responseSuccess(fru.size(), accessType);
Willy Tude54f482021-01-26 15:59:09 -0800563}
564
Willy Tu11d68892022-01-20 10:37:34 -0800565ipmi_ret_t getFruSdrCount(ipmi::Context::ptr, size_t& count)
Willy Tude54f482021-01-26 15:59:09 -0800566{
567 count = deviceHashes.size();
568 return IPMI_CC_OK;
569}
570
571ipmi_ret_t getFruSdrs(ipmi::Context::ptr ctx, size_t index,
572 get_sdr::SensorDataFruRecord& resp)
573{
574 if (deviceHashes.size() < index)
575 {
576 return IPMI_CC_INVALID_FIELD_REQUEST;
577 }
578 auto device = deviceHashes.begin() + index;
579 uint8_t& bus = device->second.first;
580 uint8_t& address = device->second.second;
581
582 boost::container::flat_map<std::string, Value>* fruData = nullptr;
583 auto fru =
584 std::find_if(frus.begin(), frus.end(),
585 [bus, address, &fruData](ManagedEntry& entry) {
586 auto findFruDevice =
587 entry.second.find("xyz.openbmc_project.FruDevice");
588 if (findFruDevice == entry.second.end())
589 {
590 return false;
591 }
592 fruData = &(findFruDevice->second);
593 auto findBus = findFruDevice->second.find("BUS");
594 auto findAddress =
595 findFruDevice->second.find("ADDRESS");
596 if (findBus == findFruDevice->second.end() ||
597 findAddress == findFruDevice->second.end())
598 {
599 return false;
600 }
601 if (std::get<uint32_t>(findBus->second) != bus)
602 {
603 return false;
604 }
605 if (std::get<uint32_t>(findAddress->second) != address)
606 {
607 return false;
608 }
609 return true;
610 });
611 if (fru == frus.end())
612 {
613 return IPMI_CC_RESPONSE_ERROR;
614 }
Shakeeb Pashaeacad3c2021-06-28 20:25:17 +0530615 std::string name;
Willy Tude54f482021-01-26 15:59:09 -0800616
617#ifdef USING_ENTITY_MANAGER_DECORATORS
618
619 boost::container::flat_map<std::string, Value>* entityData = nullptr;
620
621 // todo: this should really use caching, this is a very inefficient lookup
622 boost::system::error_code ec;
623 ManagedObjectType entities = ctx->bus->yield_method_call<ManagedObjectType>(
624 ctx->yield, ec, entityManagerServiceName, "/",
625 "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
626
627 if (ec)
628 {
629 phosphor::logging::log<phosphor::logging::level::ERR>(
630 "GetMangagedObjects for ipmiStorageGetFruInvAreaInfo failed",
631 phosphor::logging::entry("ERROR=%s", ec.message().c_str()));
632
633 return ipmi::ccResponseError;
634 }
635
636 auto entity = std::find_if(
637 entities.begin(), entities.end(),
Shakeeb Pashaeacad3c2021-06-28 20:25:17 +0530638 [bus, address, &entityData, &name](ManagedEntry& entry) {
Willy Tude54f482021-01-26 15:59:09 -0800639 auto findFruDevice = entry.second.find(
Willy Tud2ee9862021-10-18 20:23:50 -0700640 "xyz.openbmc_project.Inventory.Decorator.I2CDevice");
Willy Tude54f482021-01-26 15:59:09 -0800641 if (findFruDevice == entry.second.end())
642 {
643 return false;
644 }
645
646 // Integer fields added via Entity-Manager json are uint64_ts by
647 // default.
648 auto findBus = findFruDevice->second.find("Bus");
649 auto findAddress = findFruDevice->second.find("Address");
650
651 if (findBus == findFruDevice->second.end() ||
652 findAddress == findFruDevice->second.end())
653 {
654 return false;
655 }
656 if ((std::get<uint64_t>(findBus->second) != bus) ||
657 (std::get<uint64_t>(findAddress->second) != address))
658 {
659 return false;
660 }
661
Shakeeb Pashaeacad3c2021-06-28 20:25:17 +0530662 auto fruName = findFruDevice->second.find("Name");
663 if (fruName != findFruDevice->second.end())
664 {
665 name = std::get<std::string>(fruName->second);
666 }
667
Willy Tude54f482021-01-26 15:59:09 -0800668 // At this point we found the device entry and should return
669 // true.
670 auto findIpmiDevice = entry.second.find(
671 "xyz.openbmc_project.Inventory.Decorator.Ipmi");
672 if (findIpmiDevice != entry.second.end())
673 {
674 entityData = &(findIpmiDevice->second);
675 }
676
677 return true;
678 });
679
680 if (entity == entities.end())
681 {
682 if constexpr (DEBUG)
683 {
684 std::fprintf(stderr, "Ipmi or FruDevice Decorator interface "
685 "not found for Fru\n");
686 }
687 }
688
689#endif
690
Shakeeb Pashaeacad3c2021-06-28 20:25:17 +0530691 if (name.empty())
Willy Tude54f482021-01-26 15:59:09 -0800692 {
693 name = "UNKNOWN";
694 }
695 if (name.size() > maxFruSdrNameSize)
696 {
697 name = name.substr(0, maxFruSdrNameSize);
698 }
699 size_t sizeDiff = maxFruSdrNameSize - name.size();
700
701 resp.header.record_id_lsb = 0x0; // calling code is to implement these
702 resp.header.record_id_msb = 0x0;
703 resp.header.sdr_version = ipmiSdrVersion;
704 resp.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD;
705 resp.header.record_length = sizeof(resp.body) + sizeof(resp.key) - sizeDiff;
706 resp.key.deviceAddress = 0x20;
707 resp.key.fruID = device->first;
708 resp.key.accessLun = 0x80; // logical / physical fru device
709 resp.key.channelNumber = 0x0;
710 resp.body.reserved = 0x0;
711 resp.body.deviceType = 0x10;
712 resp.body.deviceTypeModifier = 0x0;
713
714 uint8_t entityID = 0;
715 uint8_t entityInstance = 0x1;
716
717#ifdef USING_ENTITY_MANAGER_DECORATORS
718 if (entityData)
719 {
720 auto entityIdProperty = entityData->find("EntityId");
721 auto entityInstanceProperty = entityData->find("EntityInstance");
722
723 if (entityIdProperty != entityData->end())
724 {
725 entityID = static_cast<uint8_t>(
726 std::get<uint64_t>(entityIdProperty->second));
727 }
728 if (entityInstanceProperty != entityData->end())
729 {
730 entityInstance = static_cast<uint8_t>(
731 std::get<uint64_t>(entityInstanceProperty->second));
732 }
733 }
734#endif
735
736 resp.body.entityID = entityID;
737 resp.body.entityInstance = entityInstance;
738
739 resp.body.oem = 0x0;
740 resp.body.deviceIDLen = name.size();
741 name.copy(resp.body.deviceID, name.size());
742
743 return IPMI_CC_OK;
744}
745
746static bool getSELLogFiles(std::vector<std::filesystem::path>& selLogFiles)
747{
748 // Loop through the directory looking for ipmi_sel log files
749 for (const std::filesystem::directory_entry& dirEnt :
750 std::filesystem::directory_iterator(
751 dynamic_sensors::ipmi::sel::selLogDir))
752 {
753 std::string filename = dirEnt.path().filename();
754 if (boost::starts_with(filename,
755 dynamic_sensors::ipmi::sel::selLogFilename))
756 {
757 // If we find an ipmi_sel log file, save the path
758 selLogFiles.emplace_back(dynamic_sensors::ipmi::sel::selLogDir /
759 filename);
760 }
761 }
762 // As the log files rotate, they are appended with a ".#" that is higher for
763 // the older logs. Since we don't expect more than 10 log files, we
764 // can just sort the list to get them in order from newest to oldest
765 std::sort(selLogFiles.begin(), selLogFiles.end());
766
767 return !selLogFiles.empty();
768}
769
770static int countSELEntries()
771{
772 // Get the list of ipmi_sel log files
773 std::vector<std::filesystem::path> selLogFiles;
774 if (!getSELLogFiles(selLogFiles))
775 {
776 return 0;
777 }
778 int numSELEntries = 0;
779 // Loop through each log file and count the number of logs
780 for (const std::filesystem::path& file : selLogFiles)
781 {
782 std::ifstream logStream(file);
783 if (!logStream.is_open())
784 {
785 continue;
786 }
787
788 std::string line;
789 while (std::getline(logStream, line))
790 {
791 numSELEntries++;
792 }
793 }
794 return numSELEntries;
795}
796
797static bool findSELEntry(const int recordID,
798 const std::vector<std::filesystem::path>& selLogFiles,
799 std::string& entry)
800{
801 // Record ID is the first entry field following the timestamp. It is
802 // preceded by a space and followed by a comma
803 std::string search = " " + std::to_string(recordID) + ",";
804
805 // Loop through the ipmi_sel log entries
806 for (const std::filesystem::path& file : selLogFiles)
807 {
808 std::ifstream logStream(file);
809 if (!logStream.is_open())
810 {
811 continue;
812 }
813
814 while (std::getline(logStream, entry))
815 {
816 // Check if the record ID matches
817 if (entry.find(search) != std::string::npos)
818 {
819 return true;
820 }
821 }
822 }
823 return false;
824}
825
826static uint16_t
827 getNextRecordID(const uint16_t recordID,
828 const std::vector<std::filesystem::path>& selLogFiles)
829{
830 uint16_t nextRecordID = recordID + 1;
831 std::string entry;
832 if (findSELEntry(nextRecordID, selLogFiles, entry))
833 {
834 return nextRecordID;
835 }
836 else
837 {
838 return ipmi::sel::lastEntry;
839 }
840}
841
842static int fromHexStr(const std::string& hexStr, std::vector<uint8_t>& data)
843{
844 for (unsigned int i = 0; i < hexStr.size(); i += 2)
845 {
846 try
847 {
848 data.push_back(static_cast<uint8_t>(
849 std::stoul(hexStr.substr(i, 2), nullptr, 16)));
850 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -0500851 catch (const std::invalid_argument& e)
Willy Tude54f482021-01-26 15:59:09 -0800852 {
853 phosphor::logging::log<phosphor::logging::level::ERR>(e.what());
854 return -1;
855 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -0500856 catch (const std::out_of_range& e)
Willy Tude54f482021-01-26 15:59:09 -0800857 {
858 phosphor::logging::log<phosphor::logging::level::ERR>(e.what());
859 return -1;
860 }
861 }
862 return 0;
863}
864
865ipmi::RspType<uint8_t, // SEL version
866 uint16_t, // SEL entry count
867 uint16_t, // free space
868 uint32_t, // last add timestamp
869 uint32_t, // last erase timestamp
870 uint8_t> // operation support
871 ipmiStorageGetSELInfo()
872{
873 constexpr uint8_t selVersion = ipmi::sel::selVersion;
874 uint16_t entries = countSELEntries();
875 uint32_t addTimeStamp = dynamic_sensors::ipmi::sel::getFileTimestamp(
876 dynamic_sensors::ipmi::sel::selLogDir /
877 dynamic_sensors::ipmi::sel::selLogFilename);
878 uint32_t eraseTimeStamp = dynamic_sensors::ipmi::sel::erase_time::get();
879 constexpr uint8_t operationSupport =
880 dynamic_sensors::ipmi::sel::selOperationSupport;
881 constexpr uint16_t freeSpace =
882 0xffff; // Spec indicates that more than 64kB is free
883
884 return ipmi::responseSuccess(selVersion, entries, freeSpace, addTimeStamp,
885 eraseTimeStamp, operationSupport);
886}
887
888using systemEventType = std::tuple<
889 uint32_t, // Timestamp
890 uint16_t, // Generator ID
891 uint8_t, // EvM Rev
892 uint8_t, // Sensor Type
893 uint8_t, // Sensor Number
894 uint7_t, // Event Type
895 bool, // Event Direction
896 std::array<uint8_t, dynamic_sensors::ipmi::sel::systemEventSize>>; // Event
897 // Data
898using oemTsEventType = std::tuple<
899 uint32_t, // Timestamp
900 std::array<uint8_t, dynamic_sensors::ipmi::sel::oemTsEventSize>>; // Event
901 // Data
902using oemEventType =
903 std::array<uint8_t, dynamic_sensors::ipmi::sel::oemEventSize>; // Event Data
904
905ipmi::RspType<uint16_t, // Next Record ID
906 uint16_t, // Record ID
907 uint8_t, // Record Type
908 std::variant<systemEventType, oemTsEventType,
909 oemEventType>> // Record Content
910 ipmiStorageGetSELEntry(uint16_t reservationID, uint16_t targetID,
911 uint8_t offset, uint8_t size)
912{
913 // Only support getting the entire SEL record. If a partial size or non-zero
914 // offset is requested, return an error
915 if (offset != 0 || size != ipmi::sel::entireRecord)
916 {
917 return ipmi::responseRetBytesUnavailable();
918 }
919
920 // Check the reservation ID if one is provided or required (only if the
921 // offset is non-zero)
922 if (reservationID != 0 || offset != 0)
923 {
924 if (!checkSELReservation(reservationID))
925 {
926 return ipmi::responseInvalidReservationId();
927 }
928 }
929
930 // Get the ipmi_sel log files
931 std::vector<std::filesystem::path> selLogFiles;
932 if (!getSELLogFiles(selLogFiles))
933 {
934 return ipmi::responseSensorInvalid();
935 }
936
937 std::string targetEntry;
938
939 if (targetID == ipmi::sel::firstEntry)
940 {
941 // The first entry will be at the top of the oldest log file
942 std::ifstream logStream(selLogFiles.back());
943 if (!logStream.is_open())
944 {
945 return ipmi::responseUnspecifiedError();
946 }
947
948 if (!std::getline(logStream, targetEntry))
949 {
950 return ipmi::responseUnspecifiedError();
951 }
952 }
953 else if (targetID == ipmi::sel::lastEntry)
954 {
955 // The last entry will be at the bottom of the newest log file
956 std::ifstream logStream(selLogFiles.front());
957 if (!logStream.is_open())
958 {
959 return ipmi::responseUnspecifiedError();
960 }
961
962 std::string line;
963 while (std::getline(logStream, line))
964 {
965 targetEntry = line;
966 }
967 }
968 else
969 {
970 if (!findSELEntry(targetID, selLogFiles, targetEntry))
971 {
972 return ipmi::responseSensorInvalid();
973 }
974 }
975
976 // The format of the ipmi_sel message is "<Timestamp>
977 // <ID>,<Type>,<EventData>,[<Generator ID>,<Path>,<Direction>]".
978 // First get the Timestamp
979 size_t space = targetEntry.find_first_of(" ");
980 if (space == std::string::npos)
981 {
982 return ipmi::responseUnspecifiedError();
983 }
984 std::string entryTimestamp = targetEntry.substr(0, space);
985 // Then get the log contents
986 size_t entryStart = targetEntry.find_first_not_of(" ", space);
987 if (entryStart == std::string::npos)
988 {
989 return ipmi::responseUnspecifiedError();
990 }
991 std::string_view entry(targetEntry);
992 entry.remove_prefix(entryStart);
993 // Use split to separate the entry into its fields
994 std::vector<std::string> targetEntryFields;
995 boost::split(targetEntryFields, entry, boost::is_any_of(","),
996 boost::token_compress_on);
997 if (targetEntryFields.size() < 3)
998 {
999 return ipmi::responseUnspecifiedError();
1000 }
1001 std::string& recordIDStr = targetEntryFields[0];
1002 std::string& recordTypeStr = targetEntryFields[1];
1003 std::string& eventDataStr = targetEntryFields[2];
1004
1005 uint16_t recordID;
1006 uint8_t recordType;
1007 try
1008 {
1009 recordID = std::stoul(recordIDStr);
1010 recordType = std::stoul(recordTypeStr, nullptr, 16);
1011 }
1012 catch (const std::invalid_argument&)
1013 {
1014 return ipmi::responseUnspecifiedError();
1015 }
1016 uint16_t nextRecordID = getNextRecordID(recordID, selLogFiles);
1017 std::vector<uint8_t> eventDataBytes;
1018 if (fromHexStr(eventDataStr, eventDataBytes) < 0)
1019 {
1020 return ipmi::responseUnspecifiedError();
1021 }
1022
1023 if (recordType == dynamic_sensors::ipmi::sel::systemEvent)
1024 {
1025 // Get the timestamp
1026 std::tm timeStruct = {};
1027 std::istringstream entryStream(entryTimestamp);
1028
1029 uint32_t timestamp = ipmi::sel::invalidTimeStamp;
1030 if (entryStream >> std::get_time(&timeStruct, "%Y-%m-%dT%H:%M:%S"))
1031 {
1032 timestamp = std::mktime(&timeStruct);
1033 }
1034
1035 // Set the event message revision
1036 uint8_t evmRev = dynamic_sensors::ipmi::sel::eventMsgRev;
1037
1038 uint16_t generatorID = 0;
1039 uint8_t sensorType = 0;
1040 uint16_t sensorAndLun = 0;
1041 uint8_t sensorNum = 0xFF;
1042 uint7_t eventType = 0;
1043 bool eventDir = 0;
1044 // System type events should have six fields
1045 if (targetEntryFields.size() >= 6)
1046 {
1047 std::string& generatorIDStr = targetEntryFields[3];
1048 std::string& sensorPath = targetEntryFields[4];
1049 std::string& eventDirStr = targetEntryFields[5];
1050
1051 // Get the generator ID
1052 try
1053 {
1054 generatorID = std::stoul(generatorIDStr, nullptr, 16);
1055 }
1056 catch (const std::invalid_argument&)
1057 {
1058 std::cerr << "Invalid Generator ID\n";
1059 }
1060
1061 // Get the sensor type, sensor number, and event type for the sensor
1062 sensorType = getSensorTypeFromPath(sensorPath);
1063 sensorAndLun = getSensorNumberFromPath(sensorPath);
1064 sensorNum = static_cast<uint8_t>(sensorAndLun);
Harvey.Wu4376cdf2021-11-16 19:40:55 +08001065 if ((generatorID & 0x0001) == 0)
1066 {
1067 // IPMB Address
1068 generatorID |= sensorAndLun & 0x0300;
1069 }
1070 else
1071 {
1072 // system software
1073 generatorID |= sensorAndLun >> 8;
1074 }
Willy Tude54f482021-01-26 15:59:09 -08001075 eventType = getSensorEventTypeFromPath(sensorPath);
1076
1077 // Get the event direction
1078 try
1079 {
1080 eventDir = std::stoul(eventDirStr) ? 0 : 1;
1081 }
1082 catch (const std::invalid_argument&)
1083 {
1084 std::cerr << "Invalid Event Direction\n";
1085 }
1086 }
1087
1088 // Only keep the eventData bytes that fit in the record
1089 std::array<uint8_t, dynamic_sensors::ipmi::sel::systemEventSize>
1090 eventData{};
1091 std::copy_n(eventDataBytes.begin(),
1092 std::min(eventDataBytes.size(), eventData.size()),
1093 eventData.begin());
1094
1095 return ipmi::responseSuccess(
1096 nextRecordID, recordID, recordType,
1097 systemEventType{timestamp, generatorID, evmRev, sensorType,
1098 sensorNum, eventType, eventDir, eventData});
1099 }
1100
1101 return ipmi::responseUnspecifiedError();
1102}
1103
Willy Tu11d68892022-01-20 10:37:34 -08001104/*
1105Unused arguments
1106 uint16_t recordID, uint8_t recordType, uint32_t timestamp,
1107 uint16_t generatorID, uint8_t evmRev, uint8_t sensorType, uint8_t sensorNum,
1108 uint8_t eventType, uint8_t eventData1, uint8_t eventData2,
1109 uint8_t eventData3
1110*/
1111ipmi::RspType<uint16_t> ipmiStorageAddSELEntry(uint16_t, uint8_t, uint32_t,
1112 uint16_t, uint8_t, uint8_t,
1113 uint8_t, uint8_t, uint8_t,
1114 uint8_t, uint8_t)
Willy Tude54f482021-01-26 15:59:09 -08001115{
1116 // Per the IPMI spec, need to cancel any reservation when a SEL entry is
1117 // added
1118 cancelSELReservation();
1119
1120 uint16_t responseID = 0xFFFF;
1121 return ipmi::responseSuccess(responseID);
1122}
1123
Tim Lee11317d72022-07-27 10:13:46 +08001124ipmi::RspType<uint8_t> ipmiStorageClearSEL(ipmi::Context::ptr ctx,
Willy Tude54f482021-01-26 15:59:09 -08001125 uint16_t reservationID,
1126 const std::array<uint8_t, 3>& clr,
1127 uint8_t eraseOperation)
1128{
1129 if (!checkSELReservation(reservationID))
1130 {
1131 return ipmi::responseInvalidReservationId();
1132 }
1133
1134 static constexpr std::array<uint8_t, 3> clrExpected = {'C', 'L', 'R'};
1135 if (clr != clrExpected)
1136 {
1137 return ipmi::responseInvalidFieldRequest();
1138 }
1139
1140 // Erasure status cannot be fetched, so always return erasure status as
1141 // `erase completed`.
1142 if (eraseOperation == ipmi::sel::getEraseStatus)
1143 {
1144 return ipmi::responseSuccess(ipmi::sel::eraseComplete);
1145 }
1146
1147 // Check that initiate erase is correct
1148 if (eraseOperation != ipmi::sel::initiateErase)
1149 {
1150 return ipmi::responseInvalidFieldRequest();
1151 }
1152
1153 // Per the IPMI spec, need to cancel any reservation when the SEL is
1154 // cleared
1155 cancelSELReservation();
1156
Charles Boyer818bea12021-09-20 16:56:36 -05001157#ifndef FEATURE_SEL_LOGGER_CLEARS_SEL
Willy Tude54f482021-01-26 15:59:09 -08001158 // Save the erase time
1159 dynamic_sensors::ipmi::sel::erase_time::save();
1160
1161 // Clear the SEL by deleting the log files
1162 std::vector<std::filesystem::path> selLogFiles;
1163 if (getSELLogFiles(selLogFiles))
1164 {
1165 for (const std::filesystem::path& file : selLogFiles)
1166 {
1167 std::error_code ec;
1168 std::filesystem::remove(file, ec);
1169 }
1170 }
1171
1172 // Reload rsyslog so it knows to start new log files
Tim Lee11317d72022-07-27 10:13:46 +08001173 boost::system::error_code ec;
Tim Lee2b3507a2022-08-19 17:25:48 +08001174 ctx->bus->yield_method_call<>(ctx->yield, ec, "org.freedesktop.systemd1",
1175 "/org/freedesktop/systemd1",
1176 "org.freedesktop.systemd1.Manager",
1177 "ReloadUnit", "rsyslog.service", "replace");
Tim Lee11317d72022-07-27 10:13:46 +08001178 if (ec)
Willy Tude54f482021-01-26 15:59:09 -08001179 {
Tim Lee11317d72022-07-27 10:13:46 +08001180 std::cerr << "error in reload rsyslog: " << ec << std::endl;
1181 return ipmi::responseUnspecifiedError();
Willy Tude54f482021-01-26 15:59:09 -08001182 }
Charles Boyer818bea12021-09-20 16:56:36 -05001183#else
1184 boost::system::error_code ec;
1185 ctx->bus->yield_method_call<>(ctx->yield, ec, selLoggerServiceName,
1186 "/xyz/openbmc_project/Logging/IPMI",
1187 "xyz.openbmc_project.Logging.IPMI", "Clear");
1188 if (ec)
1189 {
1190 std::cerr << "error in clear SEL: " << ec << std::endl;
1191 return ipmi::responseUnspecifiedError();
1192 }
Willy Tude54f482021-01-26 15:59:09 -08001193
Charles Boyer818bea12021-09-20 16:56:36 -05001194 // Save the erase time
1195 dynamic_sensors::ipmi::sel::erase_time::save();
1196#endif
Willy Tude54f482021-01-26 15:59:09 -08001197 return ipmi::responseSuccess(ipmi::sel::eraseComplete);
1198}
1199
1200ipmi::RspType<uint32_t> ipmiStorageGetSELTime()
1201{
1202 struct timespec selTime = {};
1203
1204 if (clock_gettime(CLOCK_REALTIME, &selTime) < 0)
1205 {
1206 return ipmi::responseUnspecifiedError();
1207 }
1208
1209 return ipmi::responseSuccess(selTime.tv_sec);
1210}
1211
Willy Tu11d68892022-01-20 10:37:34 -08001212ipmi::RspType<> ipmiStorageSetSELTime(uint32_t)
Willy Tude54f482021-01-26 15:59:09 -08001213{
1214 // Set SEL Time is not supported
1215 return ipmi::responseInvalidCommand();
1216}
1217
Harvey Wu05d17c02021-09-15 08:46:59 +08001218std::vector<uint8_t>
1219 getType8SDRs(ipmi::sensor::EntityInfoMap::const_iterator& entity,
1220 uint16_t recordId)
1221{
1222 std::vector<uint8_t> resp;
1223 get_sdr::SensorDataEntityRecord data{};
1224
1225 /* Header */
1226 get_sdr::header::set_record_id(recordId, &(data.header));
1227 // Based on IPMI Spec v2.0 rev 1.1
1228 data.header.sdr_version = SDR_VERSION;
1229 data.header.record_type = 0x08;
1230 data.header.record_length = sizeof(data.key) + sizeof(data.body);
1231
1232 /* Key */
1233 data.key.containerEntityId = entity->second.containerEntityId;
1234 data.key.containerEntityInstance = entity->second.containerEntityInstance;
1235 get_sdr::key::set_flags(entity->second.isList, entity->second.isLinked,
1236 &(data.key));
1237 data.key.entityId1 = entity->second.containedEntities[0].first;
1238 data.key.entityInstance1 = entity->second.containedEntities[0].second;
1239
1240 /* Body */
1241 data.body.entityId2 = entity->second.containedEntities[1].first;
1242 data.body.entityInstance2 = entity->second.containedEntities[1].second;
1243 data.body.entityId3 = entity->second.containedEntities[2].first;
1244 data.body.entityInstance3 = entity->second.containedEntities[2].second;
1245 data.body.entityId4 = entity->second.containedEntities[3].first;
1246 data.body.entityInstance4 = entity->second.containedEntities[3].second;
1247
1248 resp.insert(resp.end(), (uint8_t*)&data, ((uint8_t*)&data) + sizeof(data));
1249
1250 return resp;
1251}
1252
Willy Tude54f482021-01-26 15:59:09 -08001253std::vector<uint8_t> getType12SDRs(uint16_t index, uint16_t recordId)
1254{
1255 std::vector<uint8_t> resp;
1256 if (index == 0)
1257 {
Willy Tude54f482021-01-26 15:59:09 -08001258 std::string bmcName = "Basbrd Mgmt Ctlr";
Johnathan Manteycd1c4962021-09-22 12:58:08 -07001259 Type12Record bmc(recordId, 0x20, 0, 0, 0xbf, 0x2e, 1, 0, bmcName);
Willy Tude54f482021-01-26 15:59:09 -08001260 uint8_t* bmcPtr = reinterpret_cast<uint8_t*>(&bmc);
1261 resp.insert(resp.end(), bmcPtr, bmcPtr + sizeof(Type12Record));
1262 }
1263 else if (index == 1)
1264 {
Willy Tude54f482021-01-26 15:59:09 -08001265 std::string meName = "Mgmt Engine";
Johnathan Manteycd1c4962021-09-22 12:58:08 -07001266 Type12Record me(recordId, 0x2c, 6, 0x24, 0x21, 0x2e, 2, 0, meName);
Willy Tude54f482021-01-26 15:59:09 -08001267 uint8_t* mePtr = reinterpret_cast<uint8_t*>(&me);
1268 resp.insert(resp.end(), mePtr, mePtr + sizeof(Type12Record));
1269 }
1270 else
1271 {
1272 throw std::runtime_error("getType12SDRs:: Illegal index " +
1273 std::to_string(index));
1274 }
1275
1276 return resp;
1277}
1278
1279void registerStorageFunctions()
1280{
1281 createTimers();
1282 startMatch();
1283
1284 // <Get FRU Inventory Area Info>
Willy Tud351a722021-08-12 14:33:40 -07001285 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage,
Willy Tude54f482021-01-26 15:59:09 -08001286 ipmi::storage::cmdGetFruInventoryAreaInfo,
1287 ipmi::Privilege::User, ipmiStorageGetFruInvAreaInfo);
1288 // <READ FRU Data>
1289 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage,
1290 ipmi::storage::cmdReadFruData, ipmi::Privilege::User,
1291 ipmiStorageReadFruData);
1292
1293 // <WRITE FRU Data>
1294 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage,
1295 ipmi::storage::cmdWriteFruData,
1296 ipmi::Privilege::Operator, ipmiStorageWriteFruData);
1297
1298 // <Get SEL Info>
1299 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage,
1300 ipmi::storage::cmdGetSelInfo, ipmi::Privilege::User,
1301 ipmiStorageGetSELInfo);
1302
1303 // <Get SEL Entry>
1304 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage,
1305 ipmi::storage::cmdGetSelEntry, ipmi::Privilege::User,
1306 ipmiStorageGetSELEntry);
1307
1308 // <Add SEL Entry>
1309 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage,
1310 ipmi::storage::cmdAddSelEntry,
1311 ipmi::Privilege::Operator, ipmiStorageAddSELEntry);
1312
1313 // <Clear SEL>
1314 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage,
1315 ipmi::storage::cmdClearSel, ipmi::Privilege::Operator,
1316 ipmiStorageClearSEL);
1317
1318 // <Get SEL Time>
1319 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage,
1320 ipmi::storage::cmdGetSelTime, ipmi::Privilege::User,
1321 ipmiStorageGetSELTime);
1322
1323 // <Set SEL Time>
1324 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnStorage,
1325 ipmi::storage::cmdSetSelTime,
1326 ipmi::Privilege::Operator, ipmiStorageSetSELTime);
1327}
1328} // namespace storage
1329} // namespace ipmi