blob: c69f82594199f2244d2f20de56495b0a59a47dc8 [file] [log] [blame]
Tom Josephf8da32a2016-12-06 16:56:04 +05301#include "guid.hpp"
2
William A. Kennington III4f09eae2019-02-12 17:10:35 -08003#include <ipmid/api.h>
Vernon Mauery9e801a22018-10-12 13:20:49 -07004#include <mapper.h>
5
Vernon Maueryfc37e592018-12-19 14:55:15 -08006#include <phosphor-logging/log.hpp>
Tom Josephf8da32a2016-12-06 16:56:04 +05307#include <sstream>
8#include <string>
9
Vernon Maueryfc37e592018-12-19 14:55:15 -080010using namespace phosphor::logging;
11
Tom Joseph83029cb2017-09-01 16:37:31 +053012namespace cache
13{
14
15command::Guid guid;
16
17} // namespace cache
18
Tom Josephf8da32a2016-12-06 16:56:04 +053019namespace command
20{
21
Tom Joseph83029cb2017-09-01 16:37:31 +053022std::unique_ptr<sdbusplus::bus::match_t> matchPtr(nullptr);
23
24static constexpr auto guidObjPath = "/org/openbmc/control/chassis0";
25static constexpr auto propInterface = "org.freedesktop.DBus.Properties";
26
27Guid getSystemGUID()
Tom Josephf8da32a2016-12-06 16:56:04 +053028{
29 // Canned System GUID for QEMU where the Chassis DBUS object is not
30 // populated
Vernon Mauery9e801a22018-10-12 13:20:49 -070031 Guid guid = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
32 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10};
Tom Josephf8da32a2016-12-06 16:56:04 +053033
Tom Josephf8da32a2016-12-06 16:56:04 +053034 constexpr auto chassisIntf = "org.openbmc.control.Chassis";
35
36 sd_bus_message* reply = nullptr;
37 sd_bus_error error = SD_BUS_ERROR_NULL;
38 sd_bus* bus = ipmid_get_sd_bus_connection();
Tom Josephf8da32a2016-12-06 16:56:04 +053039 char* uuid = nullptr;
40 char* busname = nullptr;
41
42 do
43 {
Patrick Venturea65e30d2018-10-26 17:55:08 -070044 int rc = mapper_get_service(bus, guidObjPath, &busname);
Tom Josephf8da32a2016-12-06 16:56:04 +053045 if (rc < 0)
46 {
Vernon Maueryfc37e592018-12-19 14:55:15 -080047 log<level::ERR>("Failed to get bus name",
48 entry("PATH=%s", guidObjPath),
49 entry("ERROR=%s", strerror(-rc)));
Tom Josephf8da32a2016-12-06 16:56:04 +053050 break;
51 }
52
Tom Joseph83029cb2017-09-01 16:37:31 +053053 rc = sd_bus_call_method(bus, busname, guidObjPath, propInterface, "Get",
54 &error, &reply, "ss", chassisIntf, "uuid");
Tom Josephf8da32a2016-12-06 16:56:04 +053055 if (rc < 0)
56 {
Vernon Maueryfc37e592018-12-19 14:55:15 -080057 log<level::ERR>("Failed to call Get Method",
58 entry("ERROR=%s", strerror(-rc)));
Tom Josephf8da32a2016-12-06 16:56:04 +053059 break;
60 }
61
62 rc = sd_bus_message_read(reply, "v", "s", &uuid);
63 if (rc < 0 || uuid == NULL)
64 {
Vernon Maueryfc37e592018-12-19 14:55:15 -080065 log<level::ERR>("Failed to get a response",
66 entry("ERROR=%s", strerror(-rc)));
Tom Josephf8da32a2016-12-06 16:56:04 +053067 break;
68 }
69
70 std::string readUUID(uuid);
71 auto len = readUUID.length();
72
Vernon Mauery9e801a22018-10-12 13:20:49 -070073 for (size_t iter = 0, inc = 0; iter < len && inc < BMC_GUID_LEN;
74 iter += 2, inc++)
Tom Josephf8da32a2016-12-06 16:56:04 +053075 {
Vernon Mauery9e801a22018-10-12 13:20:49 -070076 uint8_t hexVal =
77 std::strtoul(readUUID.substr(iter, 2).c_str(), NULL, 16);
Tom Josephf8da32a2016-12-06 16:56:04 +053078 guid[inc] = hexVal;
79 }
Vernon Mauery9e801a22018-10-12 13:20:49 -070080 } while (0);
Tom Josephf8da32a2016-12-06 16:56:04 +053081
82 sd_bus_error_free(&error);
83 reply = sd_bus_message_unref(reply);
84 free(busname);
85
86 return guid;
87}
88
Tom Joseph83029cb2017-09-01 16:37:31 +053089void registerGUIDChangeCallback()
90{
Vernon Mauery9e801a22018-10-12 13:20:49 -070091 if (matchPtr == nullptr)
Tom Joseph83029cb2017-09-01 16:37:31 +053092 {
93 using namespace sdbusplus::bus::match::rules;
94 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
95
96 matchPtr = std::make_unique<sdbusplus::bus::match_t>(
97 bus,
Vernon Mauery9e801a22018-10-12 13:20:49 -070098 path_namespace(guidObjPath) + type::signal() +
99 member("PropertiesChanged") + interface(propInterface),
100 [](sdbusplus::message::message&) {
101 cache::guid = getSystemGUID();
102 });
Tom Joseph83029cb2017-09-01 16:37:31 +0530103 }
104}
105
Tom Josephf8da32a2016-12-06 16:56:04 +0530106} // namespace command