Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ratan Gupta | 068a8cf | 2017-07-11 19:18:29 +0530 | [diff] [blame] | 3 | #include "config.h" |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 4 | |
Alvin Wang | 38a63c3 | 2019-08-29 22:56:46 +0800 | [diff] [blame] | 5 | #include "ethernet_interface.hpp" |
Ratan Gupta | 3681a50 | 2017-06-17 19:20:04 +0530 | [diff] [blame] | 6 | #include "types.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 7 | |
William A. Kennington III | 4966e96 | 2019-04-08 01:58:10 -0700 | [diff] [blame] | 8 | #include <netinet/ether.h> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 9 | #include <unistd.h> |
| 10 | |
William A. Kennington III | 4966e96 | 2019-04-08 01:58:10 -0700 | [diff] [blame] | 11 | #include <cstring> |
William A. Kennington III | 7b9e8bd | 2019-04-23 19:31:31 -0700 | [diff] [blame] | 12 | #include <optional> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 13 | #include <sdbusplus/bus.hpp> |
William A. Kennington III | d27410f | 2019-01-30 17:15:43 -0800 | [diff] [blame] | 14 | #include <string> |
William A. Kennington III | a00b1c3 | 2019-02-01 18:57:17 -0800 | [diff] [blame] | 15 | #include <string_view> |
Johnathan Mantey | 817012a | 2020-01-30 15:07:39 -0800 | [diff] [blame] | 16 | #include <xyz/openbmc_project/Network/EthernetInterface/server.hpp> |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 17 | |
| 18 | namespace phosphor |
| 19 | { |
| 20 | namespace network |
| 21 | { |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 22 | |
Johnathan Mantey | 817012a | 2020-01-30 15:07:39 -0800 | [diff] [blame] | 23 | using EthernetInterfaceIntf = |
| 24 | sdbusplus::xyz::openbmc_project::Network::server::EthernetInterface; |
| 25 | |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 26 | constexpr auto IPV4_MIN_PREFIX_LENGTH = 1; |
| 27 | constexpr auto IPV4_MAX_PREFIX_LENGTH = 32; |
John Wang | 4d94ecd | 2021-04-07 17:37:03 +0800 | [diff] [blame] | 28 | constexpr auto IPV6_MAX_PREFIX_LENGTH = 128; |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 29 | constexpr auto IPV4_PREFIX = "169.254"; |
| 30 | constexpr auto IPV6_PREFIX = "fe80"; |
| 31 | |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 32 | namespace mac_address |
| 33 | { |
| 34 | |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 35 | /** @brief gets the MAC address from the Inventory. |
| 36 | * @param[in] bus - DBUS Bus Object. |
Alvin Wang | 38a63c3 | 2019-08-29 22:56:46 +0800 | [diff] [blame] | 37 | * @param[in] intfName - Interface name |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 38 | */ |
Alvin Wang | 38a63c3 | 2019-08-29 22:56:46 +0800 | [diff] [blame] | 39 | ether_addr getfromInventory(sdbusplus::bus::bus& bus, |
| 40 | const std::string& intfName); |
William A. Kennington III | 1137a97 | 2019-04-20 20:49:58 -0700 | [diff] [blame] | 41 | |
| 42 | /** @brief Converts the given mac address into byte form |
| 43 | * @param[in] str - The mac address in human readable form |
| 44 | * @returns A mac address in network byte order |
| 45 | * @throws std::runtime_error for bad mac |
| 46 | */ |
William A. Kennington III | 1c77602 | 2022-01-05 14:12:16 -0800 | [diff] [blame] | 47 | ether_addr fromString(const char* str); |
| 48 | inline ether_addr fromString(const std::string& str) |
| 49 | { |
| 50 | return fromString(str.c_str()); |
| 51 | } |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 52 | |
William A. Kennington III | d27410f | 2019-01-30 17:15:43 -0800 | [diff] [blame] | 53 | /** @brief Converts the given mac address bytes into a string |
William A. Kennington III | 1137a97 | 2019-04-20 20:49:58 -0700 | [diff] [blame] | 54 | * @param[in] mac - The mac address |
William A. Kennington III | d27410f | 2019-01-30 17:15:43 -0800 | [diff] [blame] | 55 | * @returns A valid mac address string |
| 56 | */ |
William A. Kennington III | 6ca08d8 | 2019-04-20 16:04:18 -0700 | [diff] [blame] | 57 | std::string toString(const ether_addr& mac); |
William A. Kennington III | d27410f | 2019-01-30 17:15:43 -0800 | [diff] [blame] | 58 | |
William A. Kennington III | 1137a97 | 2019-04-20 20:49:58 -0700 | [diff] [blame] | 59 | /** @brief Determines if the mac address is empty |
| 60 | * @param[in] mac - The mac address |
| 61 | * @return True if 00:00:00:00:00:00 |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 62 | */ |
William A. Kennington III | 1137a97 | 2019-04-20 20:49:58 -0700 | [diff] [blame] | 63 | bool isEmpty(const ether_addr& mac); |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 64 | |
William A. Kennington III | 1137a97 | 2019-04-20 20:49:58 -0700 | [diff] [blame] | 65 | /** @brief Determines if the mac address is a multicast address |
| 66 | * @param[in] mac - The mac address |
| 67 | * @return True if multicast bit is set |
| 68 | */ |
| 69 | bool isMulticast(const ether_addr& mac); |
| 70 | |
| 71 | /** @brief Determines if the mac address is a unicast address |
| 72 | * @param[in] mac - The mac address |
| 73 | * @return True if not multicast or empty |
| 74 | */ |
| 75 | bool isUnicast(const ether_addr& mac); |
| 76 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 77 | } // namespace mac_address |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 78 | |
Ratan Gupta | 497c0c9 | 2017-08-22 19:15:59 +0530 | [diff] [blame] | 79 | constexpr auto networkdService = "systemd-networkd.service"; |
| 80 | constexpr auto timeSynchdService = "systemd-timesyncd.service"; |
| 81 | |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 82 | /* @brief converts the given subnet into prefix notation. |
| 83 | * @param[in] addressFamily - IP address family(AF_INET/AF_INET6). |
| 84 | * @param[in] mask - Subnet Mask. |
| 85 | * @returns prefix. |
| 86 | */ |
| 87 | uint8_t toCidr(int addressFamily, const std::string& mask); |
| 88 | |
William A. Kennington III | a00b1c3 | 2019-02-01 18:57:17 -0800 | [diff] [blame] | 89 | /* @brief converts a sockaddr for the specified address family into |
| 90 | * a type_safe InAddrAny. |
| 91 | * @param[in] addressFamily - The address family of the buf |
| 92 | * @param[in] buf - The network byte order address |
| 93 | */ |
| 94 | InAddrAny addrFromBuf(int addressFamily, std::string_view buf); |
| 95 | |
William A. Kennington III | 5058f57 | 2019-01-30 17:18:14 -0800 | [diff] [blame] | 96 | /* @brief converts the ip bytes into a string representation |
| 97 | * @param[in] addr - input ip address to convert. |
| 98 | * @returns String representation of the ip. |
| 99 | */ |
| 100 | std::string toString(const InAddrAny& addr); |
Alexander Filippov | 983da55 | 2021-02-08 15:26:54 +0300 | [diff] [blame] | 101 | std::string toString(const struct in_addr& addr); |
| 102 | std::string toString(const struct in6_addr& addr); |
William A. Kennington III | 5058f57 | 2019-01-30 17:18:14 -0800 | [diff] [blame] | 103 | |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 104 | /* @brief converts the prefix into subnetmask. |
| 105 | * @param[in] addressFamily - IP address family(AF_INET/AF_INET6). |
| 106 | * @param[in] prefix - prefix length. |
| 107 | * @returns subnet mask. |
| 108 | */ |
| 109 | std::string toMask(int addressFamily, uint8_t prefix); |
| 110 | |
| 111 | /* @brief checks that the given ip address is link local or not. |
| 112 | * @param[in] address - IP address. |
| 113 | * @returns true if it is linklocal otherwise false. |
| 114 | */ |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 115 | bool isLinkLocalIP(const std::string& address); |
| 116 | |
| 117 | /* @brief checks that the given ip address valid or not. |
| 118 | * @param[in] addressFamily - IP address family(AF_INET/AF_INET6). |
| 119 | * @param[in] address - IP address. |
| 120 | * @returns true if it is valid otherwise false. |
| 121 | */ |
| 122 | bool isValidIP(int addressFamily, const std::string& address); |
| 123 | |
| 124 | /* @brief checks that the given prefix is valid or not. |
| 125 | * @param[in] addressFamily - IP address family(AF_INET/AF_INET6). |
| 126 | * @param[in] prefix - prefix length. |
| 127 | * @returns true if it is valid otherwise false. |
| 128 | */ |
| 129 | bool isValidPrefix(int addressFamily, uint8_t prefixLength); |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 130 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 131 | /** @brief Gets the map of interface and the associated |
| 132 | * address. |
| 133 | * @returns map of interface and the address. |
Ratan Gupta | 3681a50 | 2017-06-17 19:20:04 +0530 | [diff] [blame] | 134 | */ |
| 135 | IntfAddrMap getInterfaceAddrs(); |
| 136 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 137 | /** @brief Get all the interfaces from the system. |
| 138 | * @returns list of interface names. |
| 139 | */ |
| 140 | InterfaceList getInterfaces(); |
| 141 | |
Ratan Gupta | bc88629 | 2017-07-25 18:29:57 +0530 | [diff] [blame] | 142 | /** @brief Delete the given interface. |
| 143 | * @param[in] intf - interface name. |
| 144 | */ |
| 145 | void deleteInterface(const std::string& intf); |
| 146 | |
William A. Kennington III | 7b9e8bd | 2019-04-23 19:31:31 -0700 | [diff] [blame] | 147 | /** @brief Converts the interface name into a u-boot environment |
| 148 | * variable that would hold its ethernet address. |
| 149 | * |
| 150 | * @param[in] intf - interface name |
| 151 | * @return The name of th environment key |
| 152 | */ |
| 153 | std::optional<std::string> interfaceToUbootEthAddr(const char* intf); |
| 154 | |
Ratan Gupta | 56187e7 | 2017-08-13 09:40:14 +0530 | [diff] [blame] | 155 | /** @brief read the DHCP value from the configuration file |
| 156 | * @param[in] confDir - Network configuration directory. |
| 157 | * @param[in] intf - Interface name. |
| 158 | */ |
Johnathan Mantey | 817012a | 2020-01-30 15:07:39 -0800 | [diff] [blame] | 159 | EthernetInterfaceIntf::DHCPConf getDHCPValue(const std::string& confDir, |
| 160 | const std::string& intf); |
Ratan Gupta | bc88629 | 2017-07-25 18:29:57 +0530 | [diff] [blame] | 161 | |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 162 | namespace internal |
| 163 | { |
| 164 | |
| 165 | /* @brief runs the given command in child process. |
| 166 | * @param[in] path - path of the binary file which needs to be execeuted. |
| 167 | * @param[in] args - arguments of the command. |
| 168 | */ |
| 169 | void executeCommandinChildProcess(const char* path, char** args); |
| 170 | |
Lei YU | 307554e | 2021-03-18 14:56:50 +0800 | [diff] [blame] | 171 | /** @brief Get ignored interfaces from environment */ |
William A. Kennington III | ee5b2c9 | 2021-04-28 02:31:28 -0700 | [diff] [blame] | 172 | std::string_view getIgnoredInterfacesEnv(); |
Lei YU | 307554e | 2021-03-18 14:56:50 +0800 | [diff] [blame] | 173 | |
| 174 | /** @brief Parse the comma separated interface names */ |
William A. Kennington III | ee5b2c9 | 2021-04-28 02:31:28 -0700 | [diff] [blame] | 175 | std::set<std::string_view> parseInterfaces(std::string_view interfaces); |
Lei YU | 307554e | 2021-03-18 14:56:50 +0800 | [diff] [blame] | 176 | |
| 177 | /** @brief Get the ignored interfaces */ |
William A. Kennington III | ee5b2c9 | 2021-04-28 02:31:28 -0700 | [diff] [blame] | 178 | const std::set<std::string_view>& getIgnoredInterfaces(); |
Lei YU | 307554e | 2021-03-18 14:56:50 +0800 | [diff] [blame] | 179 | |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 180 | } // namespace internal |
| 181 | |
| 182 | /* @brief runs the given command in child process. |
| 183 | * @param[in] path -path of the binary file which needs to be execeuted. |
| 184 | * @param[in] tArgs - arguments of the command. |
| 185 | */ |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 186 | template <typename... ArgTypes> |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 187 | void execute(const char* path, ArgTypes&&... tArgs) |
| 188 | { |
William A. Kennington III | 0420c6a | 2019-06-27 14:38:17 -0700 | [diff] [blame] | 189 | using expandType = char*[]; |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 190 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 191 | expandType args = {const_cast<char*>(tArgs)..., nullptr}; |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 192 | |
| 193 | internal::executeCommandinChildProcess(path, args); |
| 194 | } |
| 195 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 196 | } // namespace network |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 197 | |
| 198 | class Descriptor |
| 199 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 200 | private: |
| 201 | /** default value */ |
| 202 | int fd = -1; |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 203 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 204 | public: |
| 205 | Descriptor() = default; |
| 206 | Descriptor(const Descriptor&) = delete; |
| 207 | Descriptor& operator=(const Descriptor&) = delete; |
| 208 | Descriptor(Descriptor&&) = delete; |
| 209 | Descriptor& operator=(Descriptor&&) = delete; |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 210 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 211 | explicit Descriptor(int fd) : fd(fd) |
| 212 | { |
| 213 | } |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 214 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 215 | /* @brief sets the internal file descriptor with the given descriptor |
| 216 | * and closes the old descriptor. |
| 217 | * @param[in] descriptor - File/Socket descriptor. |
| 218 | */ |
| 219 | void set(int descriptor) |
| 220 | { |
| 221 | // same descriptor given |
| 222 | if (fd == descriptor) |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 223 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 224 | return; |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 225 | } |
| 226 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 227 | // close the old descriptor |
| 228 | if (fd >= 0) |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 229 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 230 | close(fd); |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 231 | } |
| 232 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 233 | fd = descriptor; |
| 234 | } |
| 235 | |
| 236 | ~Descriptor() |
| 237 | { |
| 238 | if (fd >= 0) |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 239 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 240 | close(fd); |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 241 | } |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | int operator()() const |
| 245 | { |
| 246 | return fd; |
| 247 | } |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 248 | }; |
| 249 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 250 | } // namespace phosphor |