Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 1 | #include "system_configuration.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 2 | |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 3 | #include <phosphor-logging/elog-errors.hpp> |
Jagpal Singh Gill | a2947b4 | 2023-04-17 21:10:14 -0700 | [diff] [blame] | 4 | #include <phosphor-logging/lg2.hpp> |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 5 | #include <stdplus/pinned.hpp> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 6 | #include <xyz/openbmc_project/Common/error.hpp> |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 7 | |
| 8 | namespace phosphor |
| 9 | { |
| 10 | namespace network |
| 11 | { |
| 12 | |
William A. Kennington III | 40c29b5 | 2022-11-16 17:48:10 -0800 | [diff] [blame] | 13 | static constexpr char HOSTNAMED_SVC[] = "org.freedesktop.hostname1"; |
| 14 | static constexpr char HOSTNAMED_OBJ[] = "/org/freedesktop/hostname1"; |
| 15 | static constexpr char HOSTNAMED_INTF[] = "org.freedesktop.hostname1"; |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 16 | |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 17 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
| 18 | |
William A. Kennington III | 40c29b5 | 2022-11-16 17:48:10 -0800 | [diff] [blame] | 19 | static constexpr char propMatch[] = |
| 20 | "type='signal',sender='org.freedesktop.hostname1'," |
| 21 | "path='/org/freedesktop/hostname1'," |
| 22 | "interface='org.freedesktop.DBus.Properties',member='PropertiesChanged'," |
| 23 | "arg0='org.freedesktop.hostname1'"; |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 24 | |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 25 | SystemConfiguration::SystemConfiguration( |
| 26 | stdplus::PinnedRef<sdbusplus::bus_t> bus, stdplus::const_zstring objPath) : |
Patrick Williams | 166b959 | 2022-03-30 16:09:16 -0500 | [diff] [blame] | 27 | Iface(bus, objPath.c_str(), Iface::action::defer_emit), |
Patrick Williams | 89d734b | 2023-05-10 07:50:25 -0500 | [diff] [blame] | 28 | bus(bus), hostnamePropMatch( |
| 29 | bus, propMatch, |
| 30 | [sc = stdplus::PinnedRef(*this)](sdbusplus::message_t& m) { |
| 31 | std::string intf; |
| 32 | std::unordered_map<std::string, std::variant<std::string>> values; |
| 33 | try |
| 34 | { |
| 35 | m.read(intf, values); |
| 36 | auto it = values.find("Hostname"); |
| 37 | if (it == values.end()) |
| 38 | { |
| 39 | return; |
| 40 | } |
| 41 | sc.get().Iface::hostName(std::get<std::string>(it->second)); |
| 42 | } |
| 43 | catch (const std::exception& e) |
| 44 | { |
| 45 | lg2::error("Hostname match parsing failed: {ERROR}", "ERROR", e); |
| 46 | } |
| 47 | }) |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 48 | { |
William A. Kennington III | 40c29b5 | 2022-11-16 17:48:10 -0800 | [diff] [blame] | 49 | try |
| 50 | { |
| 51 | std::variant<std::string> name; |
Patrick Williams | 89d734b | 2023-05-10 07:50:25 -0500 | [diff] [blame] | 52 | auto req = bus.get().new_method_call(HOSTNAMED_SVC, HOSTNAMED_OBJ, |
| 53 | "org.freedesktop.DBus.Properties", |
| 54 | "Get"); |
William A. Kennington III | 40c29b5 | 2022-11-16 17:48:10 -0800 | [diff] [blame] | 55 | |
| 56 | req.append(HOSTNAMED_INTF, "Hostname"); |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 57 | auto reply = req.call(); |
William A. Kennington III | 40c29b5 | 2022-11-16 17:48:10 -0800 | [diff] [blame] | 58 | reply.read(name); |
| 59 | SystemConfigIntf::hostName(std::get<std::string>(name), true); |
| 60 | } |
| 61 | catch (const std::exception& e) |
| 62 | { |
Jagpal Singh Gill | a2947b4 | 2023-04-17 21:10:14 -0700 | [diff] [blame] | 63 | lg2::error("Failed to get hostname: {ERROR}", "ERROR", e); |
William A. Kennington III | 40c29b5 | 2022-11-16 17:48:10 -0800 | [diff] [blame] | 64 | } |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 65 | |
William A. Kennington III | d99e6db | 2022-11-15 20:39:45 -0800 | [diff] [blame] | 66 | emit_object_added(); |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | std::string SystemConfiguration::hostName(std::string name) |
| 70 | { |
| 71 | if (SystemConfigIntf::hostName() == name) |
| 72 | { |
| 73 | return name; |
| 74 | } |
Ratan Gupta | d30adf8 | 2020-06-12 09:47:32 +0530 | [diff] [blame] | 75 | try |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 76 | { |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 77 | auto method = bus.get().new_method_call( |
| 78 | HOSTNAMED_SVC, HOSTNAMED_OBJ, HOSTNAMED_INTF, "SetStaticHostname"); |
William A. Kennington III | 40c29b5 | 2022-11-16 17:48:10 -0800 | [diff] [blame] | 79 | method.append(name, /*interactive=*/false); |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 80 | bus.get().call_noreply(method); |
William A. Kennington III | 40c29b5 | 2022-11-16 17:48:10 -0800 | [diff] [blame] | 81 | return SystemConfigIntf::hostName(std::move(name)); |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 82 | } |
William A. Kennington III | 40c29b5 | 2022-11-16 17:48:10 -0800 | [diff] [blame] | 83 | catch (const std::exception& e) |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 84 | { |
Jagpal Singh Gill | a2947b4 | 2023-04-17 21:10:14 -0700 | [diff] [blame] | 85 | lg2::error("Failed to set hostname: {ERROR}", "ERROR", e); |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 86 | } |
William A. Kennington III | 40c29b5 | 2022-11-16 17:48:10 -0800 | [diff] [blame] | 87 | return SystemConfigIntf::hostName(); |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 88 | } |
| 89 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 90 | } // namespace network |
| 91 | } // namespace phosphor |