Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 1 | #pragma once |
William A. Kennington III | 95530ec | 2022-08-19 01:44:39 -0700 | [diff] [blame^] | 2 | #include "config_parser.hpp" |
Ratan Gupta | 3681a50 | 2017-06-17 19:20:04 +0530 | [diff] [blame] | 3 | #include "types.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 4 | |
William A. Kennington III | 4966e96 | 2019-04-08 01:58:10 -0700 | [diff] [blame] | 5 | #include <netinet/ether.h> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 6 | #include <unistd.h> |
| 7 | |
William A. Kennington III | 4966e96 | 2019-04-08 01:58:10 -0700 | [diff] [blame] | 8 | #include <cstring> |
William A. Kennington III | a520a39 | 2022-08-08 12:17:34 -0700 | [diff] [blame] | 9 | #include <filesystem> |
William A. Kennington III | 7b9e8bd | 2019-04-23 19:31:31 -0700 | [diff] [blame] | 10 | #include <optional> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 11 | #include <sdbusplus/bus.hpp> |
William A. Kennington III | d27410f | 2019-01-30 17:15:43 -0800 | [diff] [blame] | 12 | #include <string> |
William A. Kennington III | a00b1c3 | 2019-02-01 18:57:17 -0800 | [diff] [blame] | 13 | #include <string_view> |
William A. Kennington III | 95530ec | 2022-08-19 01:44:39 -0700 | [diff] [blame^] | 14 | #include <unordered_set> |
Johnathan Mantey | 817012a | 2020-01-30 15:07:39 -0800 | [diff] [blame] | 15 | #include <xyz/openbmc_project/Network/EthernetInterface/server.hpp> |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 16 | |
| 17 | namespace phosphor |
| 18 | { |
| 19 | namespace network |
| 20 | { |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 21 | |
Johnathan Mantey | 817012a | 2020-01-30 15:07:39 -0800 | [diff] [blame] | 22 | using EthernetInterfaceIntf = |
| 23 | sdbusplus::xyz::openbmc_project::Network::server::EthernetInterface; |
| 24 | |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 25 | constexpr auto IPV4_MIN_PREFIX_LENGTH = 1; |
| 26 | constexpr auto IPV4_MAX_PREFIX_LENGTH = 32; |
John Wang | 4d94ecd | 2021-04-07 17:37:03 +0800 | [diff] [blame] | 27 | constexpr auto IPV6_MAX_PREFIX_LENGTH = 128; |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 28 | |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 29 | namespace mac_address |
| 30 | { |
| 31 | |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 32 | /** @brief gets the MAC address from the Inventory. |
| 33 | * @param[in] bus - DBUS Bus Object. |
Alvin Wang | 38a63c3 | 2019-08-29 22:56:46 +0800 | [diff] [blame] | 34 | * @param[in] intfName - Interface name |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 35 | */ |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 36 | ether_addr getfromInventory(sdbusplus::bus_t& bus, const std::string& intfName); |
William A. Kennington III | 1137a97 | 2019-04-20 20:49:58 -0700 | [diff] [blame] | 37 | |
| 38 | /** @brief Converts the given mac address into byte form |
| 39 | * @param[in] str - The mac address in human readable form |
| 40 | * @returns A mac address in network byte order |
| 41 | * @throws std::runtime_error for bad mac |
| 42 | */ |
William A. Kennington III | 1c77602 | 2022-01-05 14:12:16 -0800 | [diff] [blame] | 43 | ether_addr fromString(const char* str); |
| 44 | inline ether_addr fromString(const std::string& str) |
| 45 | { |
| 46 | return fromString(str.c_str()); |
| 47 | } |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 48 | |
William A. Kennington III | d27410f | 2019-01-30 17:15:43 -0800 | [diff] [blame] | 49 | /** @brief Converts the given mac address bytes into a string |
William A. Kennington III | 1137a97 | 2019-04-20 20:49:58 -0700 | [diff] [blame] | 50 | * @param[in] mac - The mac address |
William A. Kennington III | d27410f | 2019-01-30 17:15:43 -0800 | [diff] [blame] | 51 | * @returns A valid mac address string |
| 52 | */ |
William A. Kennington III | 6ca08d8 | 2019-04-20 16:04:18 -0700 | [diff] [blame] | 53 | std::string toString(const ether_addr& mac); |
William A. Kennington III | d27410f | 2019-01-30 17:15:43 -0800 | [diff] [blame] | 54 | |
William A. Kennington III | 1137a97 | 2019-04-20 20:49:58 -0700 | [diff] [blame] | 55 | /** @brief Determines if the mac address is empty |
| 56 | * @param[in] mac - The mac address |
| 57 | * @return True if 00:00:00:00:00:00 |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 58 | */ |
William A. Kennington III | 1137a97 | 2019-04-20 20:49:58 -0700 | [diff] [blame] | 59 | bool isEmpty(const ether_addr& mac); |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 60 | |
William A. Kennington III | 1137a97 | 2019-04-20 20:49:58 -0700 | [diff] [blame] | 61 | /** @brief Determines if the mac address is a multicast address |
| 62 | * @param[in] mac - The mac address |
| 63 | * @return True if multicast bit is set |
| 64 | */ |
| 65 | bool isMulticast(const ether_addr& mac); |
| 66 | |
| 67 | /** @brief Determines if the mac address is a unicast address |
| 68 | * @param[in] mac - The mac address |
| 69 | * @return True if not multicast or empty |
| 70 | */ |
| 71 | bool isUnicast(const ether_addr& mac); |
| 72 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 73 | } // namespace mac_address |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 74 | |
Ratan Gupta | 497c0c9 | 2017-08-22 19:15:59 +0530 | [diff] [blame] | 75 | constexpr auto networkdService = "systemd-networkd.service"; |
| 76 | constexpr auto timeSynchdService = "systemd-timesyncd.service"; |
| 77 | |
William A. Kennington III | a00b1c3 | 2019-02-01 18:57:17 -0800 | [diff] [blame] | 78 | /* @brief converts a sockaddr for the specified address family into |
| 79 | * a type_safe InAddrAny. |
| 80 | * @param[in] addressFamily - The address family of the buf |
| 81 | * @param[in] buf - The network byte order address |
| 82 | */ |
| 83 | InAddrAny addrFromBuf(int addressFamily, std::string_view buf); |
| 84 | |
William A. Kennington III | 5058f57 | 2019-01-30 17:18:14 -0800 | [diff] [blame] | 85 | /* @brief converts the ip bytes into a string representation |
| 86 | * @param[in] addr - input ip address to convert. |
| 87 | * @returns String representation of the ip. |
| 88 | */ |
| 89 | std::string toString(const InAddrAny& addr); |
Alexander Filippov | 983da55 | 2021-02-08 15:26:54 +0300 | [diff] [blame] | 90 | std::string toString(const struct in_addr& addr); |
| 91 | std::string toString(const struct in6_addr& addr); |
William A. Kennington III | 5058f57 | 2019-01-30 17:18:14 -0800 | [diff] [blame] | 92 | |
Nagaraju Goruganti | 66b974d | 2017-10-03 08:43:08 -0500 | [diff] [blame] | 93 | /* @brief checks that the given ip address valid or not. |
| 94 | * @param[in] addressFamily - IP address family(AF_INET/AF_INET6). |
| 95 | * @param[in] address - IP address. |
| 96 | * @returns true if it is valid otherwise false. |
| 97 | */ |
| 98 | bool isValidIP(int addressFamily, const std::string& address); |
| 99 | |
| 100 | /* @brief checks that the given prefix is valid or not. |
| 101 | * @param[in] addressFamily - IP address family(AF_INET/AF_INET6). |
| 102 | * @param[in] prefix - prefix length. |
| 103 | * @returns true if it is valid otherwise false. |
| 104 | */ |
| 105 | bool isValidPrefix(int addressFamily, uint8_t prefixLength); |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 106 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 107 | /** @brief Get all the interfaces from the system. |
| 108 | * @returns list of interface names. |
| 109 | */ |
| 110 | InterfaceList getInterfaces(); |
| 111 | |
Ratan Gupta | bc88629 | 2017-07-25 18:29:57 +0530 | [diff] [blame] | 112 | /** @brief Delete the given interface. |
| 113 | * @param[in] intf - interface name. |
| 114 | */ |
| 115 | void deleteInterface(const std::string& intf); |
| 116 | |
William A. Kennington III | 7b9e8bd | 2019-04-23 19:31:31 -0700 | [diff] [blame] | 117 | /** @brief Converts the interface name into a u-boot environment |
| 118 | * variable that would hold its ethernet address. |
| 119 | * |
| 120 | * @param[in] intf - interface name |
| 121 | * @return The name of th environment key |
| 122 | */ |
| 123 | std::optional<std::string> interfaceToUbootEthAddr(const char* intf); |
| 124 | |
William A. Kennington III | a520a39 | 2022-08-08 12:17:34 -0700 | [diff] [blame] | 125 | /** @brief read the IPv6AcceptRA value from the configuration file |
| 126 | * @param[in] config - The parsed configuration. |
Ratan Gupta | 56187e7 | 2017-08-13 09:40:14 +0530 | [diff] [blame] | 127 | */ |
William A. Kennington III | a520a39 | 2022-08-08 12:17:34 -0700 | [diff] [blame] | 128 | bool getIPv6AcceptRA(const config::Parser& config); |
| 129 | |
| 130 | /** @brief read the DHCP value from the configuration file |
| 131 | * @param[in] config - The parsed configuration. |
| 132 | */ |
William A. Kennington III | 8060c0d | 2022-08-18 19:19:34 -0700 | [diff] [blame] | 133 | struct DHCPVal |
| 134 | { |
| 135 | bool v4, v6; |
| 136 | }; |
| 137 | DHCPVal getDHCPValue(const config::Parser& config); |
Ratan Gupta | bc88629 | 2017-07-25 18:29:57 +0530 | [diff] [blame] | 138 | |
William A. Kennington III | e94c9ff | 2022-08-18 20:12:27 -0700 | [diff] [blame] | 139 | /** @brief Read a boolean DHCP property from a conf file |
| 140 | * @param[in] config - The parsed configuration. |
| 141 | * @param[in] key - The property name. |
| 142 | */ |
| 143 | bool getDHCPProp(const config::Parser& config, std::string_view key); |
| 144 | |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 145 | namespace internal |
| 146 | { |
| 147 | |
| 148 | /* @brief runs the given command in child process. |
| 149 | * @param[in] path - path of the binary file which needs to be execeuted. |
| 150 | * @param[in] args - arguments of the command. |
| 151 | */ |
| 152 | void executeCommandinChildProcess(const char* path, char** args); |
| 153 | |
Lei YU | 307554e | 2021-03-18 14:56:50 +0800 | [diff] [blame] | 154 | /** @brief Get ignored interfaces from environment */ |
William A. Kennington III | ee5b2c9 | 2021-04-28 02:31:28 -0700 | [diff] [blame] | 155 | std::string_view getIgnoredInterfacesEnv(); |
Lei YU | 307554e | 2021-03-18 14:56:50 +0800 | [diff] [blame] | 156 | |
| 157 | /** @brief Parse the comma separated interface names */ |
William A. Kennington III | 95530ec | 2022-08-19 01:44:39 -0700 | [diff] [blame^] | 158 | std::unordered_set<std::string_view> |
| 159 | parseInterfaces(std::string_view interfaces); |
Lei YU | 307554e | 2021-03-18 14:56:50 +0800 | [diff] [blame] | 160 | |
| 161 | /** @brief Get the ignored interfaces */ |
William A. Kennington III | 95530ec | 2022-08-19 01:44:39 -0700 | [diff] [blame^] | 162 | const std::unordered_set<std::string_view>& getIgnoredInterfaces(); |
Lei YU | 307554e | 2021-03-18 14:56:50 +0800 | [diff] [blame] | 163 | |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 164 | } // namespace internal |
| 165 | |
| 166 | /* @brief runs the given command in child process. |
| 167 | * @param[in] path -path of the binary file which needs to be execeuted. |
| 168 | * @param[in] tArgs - arguments of the command. |
| 169 | */ |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 170 | template <typename... ArgTypes> |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 171 | void execute(const char* path, ArgTypes&&... tArgs) |
| 172 | { |
William A. Kennington III | 0420c6a | 2019-06-27 14:38:17 -0700 | [diff] [blame] | 173 | using expandType = char*[]; |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 174 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 175 | expandType args = {const_cast<char*>(tArgs)..., nullptr}; |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 176 | |
| 177 | internal::executeCommandinChildProcess(path, args); |
| 178 | } |
| 179 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 180 | } // namespace network |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 181 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 182 | } // namespace phosphor |