Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 3 | #include "ipaddress.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 4 | |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 5 | #include "ethernet_interface.hpp" |
William A. Kennington III | c2e5e0e | 2019-04-22 01:26:06 -0700 | [diff] [blame] | 6 | #include "netlink.hpp" |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 7 | #include "util.hpp" |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 8 | |
William A. Kennington III | c2e5e0e | 2019-04-22 01:26:06 -0700 | [diff] [blame] | 9 | #include <linux/netlink.h> |
| 10 | #include <linux/rtnetlink.h> |
| 11 | |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 12 | #include <phosphor-logging/elog-errors.hpp> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 13 | #include <phosphor-logging/log.hpp> |
William A. Kennington III | c2e5e0e | 2019-04-22 01:26:06 -0700 | [diff] [blame] | 14 | #include <stdexcept> |
| 15 | #include <stdplus/raw.hpp> |
| 16 | #include <string> |
| 17 | #include <string_view> |
| 18 | #include <vector> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 19 | #include <xyz/openbmc_project/Common/error.hpp> |
William A. Kennington III | c2e5e0e | 2019-04-22 01:26:06 -0700 | [diff] [blame] | 20 | |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 21 | namespace phosphor |
| 22 | { |
| 23 | namespace network |
| 24 | { |
| 25 | |
William A. Kennington III | c2e5e0e | 2019-04-22 01:26:06 -0700 | [diff] [blame] | 26 | std::vector<AddressInfo> getCurrentAddresses(const AddressFilter& filter) |
| 27 | { |
| 28 | std::vector<AddressInfo> addresses; |
| 29 | auto cb = [&filter, &addresses](const nlmsghdr& hdr, std::string_view msg) { |
| 30 | detail::parseAddress(filter, hdr, msg, addresses); |
| 31 | }; |
| 32 | ifaddrmsg msg{}; |
| 33 | msg.ifa_index = filter.interface; |
| 34 | netlink::performRequest(NETLINK_ROUTE, RTM_GETADDR, NLM_F_DUMP, msg, cb); |
| 35 | return addresses; |
| 36 | } |
| 37 | |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 38 | using namespace phosphor::logging; |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 39 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 40 | |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 41 | IPAddress::IPAddress(sdbusplus::bus_t& bus, const char* objPath, |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 42 | EthernetInterface& parent, IP::Protocol type, |
| 43 | const std::string& ipaddress, IP::AddressOrigin origin, |
| 44 | uint8_t prefixLength, const std::string& gateway) : |
Patrick Williams | 166b959 | 2022-03-30 16:09:16 -0500 | [diff] [blame] | 45 | IPIfaces(bus, objPath, IPIfaces::action::defer_emit), |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 46 | parent(parent) |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 47 | { |
Ravi Teja | 2fd2f7d | 2019-06-06 03:27:55 -0500 | [diff] [blame] | 48 | |
| 49 | IP::address(ipaddress); |
| 50 | IP::prefixLength(prefixLength); |
| 51 | IP::gateway(gateway); |
| 52 | IP::type(type); |
| 53 | IP::origin(origin); |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 54 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 55 | // Emit deferred signal. |
| 56 | emit_object_added(); |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 57 | } |
William A. Kennington III | a809f92 | 2022-08-25 15:21:49 -0700 | [diff] [blame^] | 58 | |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 59 | void IPAddress::delete_() |
| 60 | { |
William A. Kennington III | 2dae969 | 2019-04-22 02:18:41 -0700 | [diff] [blame] | 61 | if (origin() != IP::AddressOrigin::Static) |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 62 | { |
William A. Kennington III | 2dae969 | 2019-04-22 02:18:41 -0700 | [diff] [blame] | 63 | log<level::ERR>("Tried to delete a non-static address"), |
| 64 | entry("ADDRESS=%s", address().c_str()), |
| 65 | entry("PREFIX=%" PRIu8, prefixLength()), |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 66 | entry("INTERFACE=%s", parent.interfaceName().c_str()); |
William A. Kennington III | 2dae969 | 2019-04-22 02:18:41 -0700 | [diff] [blame] | 67 | elog<InternalFailure>(); |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 68 | } |
| 69 | |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 70 | parent.deleteObject(address()); |
| 71 | } |
| 72 | |
William A. Kennington III | c2e5e0e | 2019-04-22 01:26:06 -0700 | [diff] [blame] | 73 | namespace detail |
| 74 | { |
| 75 | |
| 76 | void parseAddress(const AddressFilter& filter, const nlmsghdr& hdr, |
| 77 | std::string_view msg, std::vector<AddressInfo>& addresses) |
| 78 | { |
| 79 | if (hdr.nlmsg_type != RTM_NEWADDR) |
| 80 | { |
| 81 | throw std::runtime_error("Not an address msg"); |
| 82 | } |
| 83 | auto ifaddr = stdplus::raw::extract<ifaddrmsg>(msg); |
| 84 | |
| 85 | // Filter out addresses we don't care about |
| 86 | unsigned ifindex = ifaddr.ifa_index; |
| 87 | if (filter.interface != 0 && filter.interface != ifindex) |
| 88 | { |
| 89 | return; |
| 90 | } |
| 91 | if (filter.scope && *filter.scope != ifaddr.ifa_scope) |
| 92 | { |
| 93 | return; |
| 94 | } |
| 95 | |
| 96 | // Build the info about the address we found |
| 97 | AddressInfo address; |
| 98 | address.interface = ifindex; |
| 99 | address.prefix = ifaddr.ifa_prefixlen; |
| 100 | address.flags = ifaddr.ifa_flags; |
| 101 | address.scope = ifaddr.ifa_scope; |
| 102 | bool set_addr = false; |
| 103 | while (!msg.empty()) |
| 104 | { |
| 105 | auto [hdr, data] = netlink::extractRtAttr(msg); |
| 106 | if (hdr.rta_type == IFA_ADDRESS) |
| 107 | { |
| 108 | address.address = addrFromBuf(ifaddr.ifa_family, data); |
| 109 | set_addr = true; |
| 110 | } |
| 111 | else if (hdr.rta_type == IFA_FLAGS) |
| 112 | { |
| 113 | address.flags = stdplus::raw::extract<uint32_t>(data); |
| 114 | } |
| 115 | } |
| 116 | if (!set_addr) |
| 117 | { |
| 118 | throw std::runtime_error("Missing address"); |
| 119 | } |
| 120 | addresses.push_back(std::move(address)); |
| 121 | } |
| 122 | |
| 123 | } // namespace detail |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 124 | } // namespace network |
| 125 | } // namespace phosphor |