blob: f98a7d5425404e64541377463471e9d1f58e840e [file] [log] [blame]
Ratan Gupta8804feb2017-05-25 10:49:57 +05301#pragma once
Ratan Gupta3681a502017-06-17 19:20:04 +05302#include "types.hpp"
Patrick Venture189d44e2018-07-09 12:30:59 -07003
William A. Kennington III4966e962019-04-08 01:58:10 -07004#include <netinet/ether.h>
William A. Kennington IIIe5a48ab2019-04-22 03:55:23 -07005#include <netinet/in.h>
Patrick Venture189d44e2018-07-09 12:30:59 -07006#include <unistd.h>
7
William A. Kennington III4966e962019-04-08 01:58:10 -07008#include <cstring>
William A. Kennington IIIa520a392022-08-08 12:17:34 -07009#include <filesystem>
William A. Kennington III7b9e8bd2019-04-23 19:31:31 -070010#include <optional>
Patrick Venture189d44e2018-07-09 12:30:59 -070011#include <sdbusplus/bus.hpp>
William A. Kennington III69f45542022-09-24 23:28:14 -070012#include <stdplus/zstring.hpp>
William A. Kennington IIId27410f2019-01-30 17:15:43 -080013#include <string>
William A. Kennington IIIa00b1c32019-02-01 18:57:17 -080014#include <string_view>
William A. Kennington III95530ec2022-08-19 01:44:39 -070015#include <unordered_set>
Johnathan Mantey817012a2020-01-30 15:07:39 -080016#include <xyz/openbmc_project/Network/EthernetInterface/server.hpp>
Ratan Gupta8804feb2017-05-25 10:49:57 +053017
18namespace phosphor
19{
20namespace network
21{
William A. Kennington III20efa792022-10-04 17:19:08 -070022namespace config
23{
24class Parser;
25}
Nagaraju Goruganti66b974d2017-10-03 08:43:08 -050026
Johnathan Mantey817012a2020-01-30 15:07:39 -080027using EthernetInterfaceIntf =
28 sdbusplus::xyz::openbmc_project::Network::server::EthernetInterface;
29
Ratan Guptabd303b12017-08-18 17:10:07 +053030namespace mac_address
31{
32
Ratan Guptabd303b12017-08-18 17:10:07 +053033/** @brief gets the MAC address from the Inventory.
34 * @param[in] bus - DBUS Bus Object.
Alvin Wang38a63c32019-08-29 22:56:46 +080035 * @param[in] intfName - Interface name
Ratan Guptabd303b12017-08-18 17:10:07 +053036 */
Patrick Williamsc38b0712022-07-22 19:26:54 -050037ether_addr getfromInventory(sdbusplus::bus_t& bus, const std::string& intfName);
William A. Kennington III1137a972019-04-20 20:49:58 -070038
39/** @brief Converts the given mac address into byte form
40 * @param[in] str - The mac address in human readable form
41 * @returns A mac address in network byte order
42 * @throws std::runtime_error for bad mac
43 */
William A. Kennington IIIfeb7aab2022-10-03 17:21:44 -070044ether_addr fromString(std::string_view str);
Ratan Guptabd303b12017-08-18 17:10:07 +053045
William A. Kennington IIId27410f2019-01-30 17:15:43 -080046/** @brief Converts the given mac address bytes into a string
William A. Kennington III1137a972019-04-20 20:49:58 -070047 * @param[in] mac - The mac address
William A. Kennington IIId27410f2019-01-30 17:15:43 -080048 * @returns A valid mac address string
49 */
William A. Kennington III6ca08d82019-04-20 16:04:18 -070050std::string toString(const ether_addr& mac);
William A. Kennington IIId27410f2019-01-30 17:15:43 -080051
William A. Kennington III1137a972019-04-20 20:49:58 -070052/** @brief Determines if the mac address is empty
53 * @param[in] mac - The mac address
54 * @return True if 00:00:00:00:00:00
Ratan Guptabd303b12017-08-18 17:10:07 +053055 */
William A. Kennington III1137a972019-04-20 20:49:58 -070056bool isEmpty(const ether_addr& mac);
Ratan Guptabd303b12017-08-18 17:10:07 +053057
William A. Kennington III1137a972019-04-20 20:49:58 -070058/** @brief Determines if the mac address is a multicast address
59 * @param[in] mac - The mac address
60 * @return True if multicast bit is set
61 */
62bool isMulticast(const ether_addr& mac);
63
64/** @brief Determines if the mac address is a unicast address
65 * @param[in] mac - The mac address
66 * @return True if not multicast or empty
67 */
68bool isUnicast(const ether_addr& mac);
69
Gunnar Mills57d9c502018-09-14 14:42:34 -050070} // namespace mac_address
Ratan Gupta8804feb2017-05-25 10:49:57 +053071
Ratan Gupta497c0c92017-08-22 19:15:59 +053072constexpr auto networkdService = "systemd-networkd.service";
73constexpr auto timeSynchdService = "systemd-timesyncd.service";
74
William A. Kennington IIIe5a48ab2019-04-22 03:55:23 -070075template <int family>
76struct FamilyTraits
77{
78};
79
80template <>
81struct FamilyTraits<AF_INET>
82{
83 using addr = in_addr;
84};
85
86template <>
87struct FamilyTraits<AF_INET6>
88{
89 using addr = in6_addr;
90};
91
William A. Kennington IIIa00b1c32019-02-01 18:57:17 -080092/* @brief converts a sockaddr for the specified address family into
93 * a type_safe InAddrAny.
94 * @param[in] addressFamily - The address family of the buf
95 * @param[in] buf - The network byte order address
96 */
97InAddrAny addrFromBuf(int addressFamily, std::string_view buf);
98
William A. Kennington III5058f572019-01-30 17:18:14 -080099/* @brief converts the ip bytes into a string representation
100 * @param[in] addr - input ip address to convert.
101 * @returns String representation of the ip.
102 */
103std::string toString(const InAddrAny& addr);
Alexander Filippov983da552021-02-08 15:26:54 +0300104std::string toString(const struct in_addr& addr);
105std::string toString(const struct in6_addr& addr);
William A. Kennington III5058f572019-01-30 17:18:14 -0800106
Nagaraju Goruganti66b974d2017-10-03 08:43:08 -0500107/* @brief checks that the given ip address valid or not.
108 * @param[in] addressFamily - IP address family(AF_INET/AF_INET6).
109 * @param[in] address - IP address.
110 * @returns true if it is valid otherwise false.
111 */
William A. Kennington III69f45542022-09-24 23:28:14 -0700112bool isValidIP(int addressFamily, stdplus::const_zstring address);
Nagaraju Goruganti66b974d2017-10-03 08:43:08 -0500113
114/* @brief checks that the given prefix is valid or not.
William A. Kennington IIIe5a48ab2019-04-22 03:55:23 -0700115 * @param[in] family - IP address family(AF_INET/AF_INET6).
Nagaraju Goruganti66b974d2017-10-03 08:43:08 -0500116 * @param[in] prefix - prefix length.
117 * @returns true if it is valid otherwise false.
118 */
William A. Kennington IIIe5a48ab2019-04-22 03:55:23 -0700119template <int family>
120constexpr bool isValidPrefix(uint8_t prefix) noexcept
121{
122 return prefix <= sizeof(typename FamilyTraits<family>::addr) * 8;
123}
124bool isValidPrefix(int family, uint8_t prefixLength);
Ratan Gupta8804feb2017-05-25 10:49:57 +0530125
Ratan Guptafd4b0f02017-09-16 06:01:24 +0530126/** @brief Get all the interfaces from the system.
127 * @returns list of interface names.
128 */
129InterfaceList getInterfaces();
130
Ratan Guptabc886292017-07-25 18:29:57 +0530131/** @brief Delete the given interface.
132 * @param[in] intf - interface name.
133 */
William A. Kennington III69f45542022-09-24 23:28:14 -0700134void deleteInterface(stdplus::const_zstring intf);
Ratan Guptabc886292017-07-25 18:29:57 +0530135
William A. Kennington III7b9e8bd2019-04-23 19:31:31 -0700136/** @brief Converts the interface name into a u-boot environment
137 * variable that would hold its ethernet address.
138 *
139 * @param[in] intf - interface name
140 * @return The name of th environment key
141 */
William A. Kennington III69f45542022-09-24 23:28:14 -0700142std::optional<std::string> interfaceToUbootEthAddr(std::string_view intf);
William A. Kennington III7b9e8bd2019-04-23 19:31:31 -0700143
William A. Kennington IIIa520a392022-08-08 12:17:34 -0700144/** @brief read the IPv6AcceptRA value from the configuration file
145 * @param[in] config - The parsed configuration.
Ratan Gupta56187e72017-08-13 09:40:14 +0530146 */
William A. Kennington IIIa520a392022-08-08 12:17:34 -0700147bool getIPv6AcceptRA(const config::Parser& config);
148
149/** @brief read the DHCP value from the configuration file
150 * @param[in] config - The parsed configuration.
151 */
William A. Kennington III8060c0d2022-08-18 19:19:34 -0700152struct DHCPVal
153{
154 bool v4, v6;
155};
156DHCPVal getDHCPValue(const config::Parser& config);
Ratan Guptabc886292017-07-25 18:29:57 +0530157
William A. Kennington IIIe94c9ff2022-08-18 20:12:27 -0700158/** @brief Read a boolean DHCP property from a conf file
159 * @param[in] config - The parsed configuration.
160 * @param[in] key - The property name.
161 */
162bool getDHCPProp(const config::Parser& config, std::string_view key);
163
Ratan Guptabd303b12017-08-18 17:10:07 +0530164namespace internal
165{
166
167/* @brief runs the given command in child process.
168 * @param[in] path - path of the binary file which needs to be execeuted.
169 * @param[in] args - arguments of the command.
170 */
William A. Kennington III69f45542022-09-24 23:28:14 -0700171void executeCommandinChildProcess(stdplus::const_zstring path, char** args);
Ratan Guptabd303b12017-08-18 17:10:07 +0530172
Lei YU307554e2021-03-18 14:56:50 +0800173/** @brief Get ignored interfaces from environment */
William A. Kennington IIIee5b2c92021-04-28 02:31:28 -0700174std::string_view getIgnoredInterfacesEnv();
Lei YU307554e2021-03-18 14:56:50 +0800175
176/** @brief Parse the comma separated interface names */
William A. Kennington III95530ec2022-08-19 01:44:39 -0700177std::unordered_set<std::string_view>
178 parseInterfaces(std::string_view interfaces);
Lei YU307554e2021-03-18 14:56:50 +0800179
180/** @brief Get the ignored interfaces */
William A. Kennington III95530ec2022-08-19 01:44:39 -0700181const std::unordered_set<std::string_view>& getIgnoredInterfaces();
Lei YU307554e2021-03-18 14:56:50 +0800182
Ratan Guptabd303b12017-08-18 17:10:07 +0530183} // namespace internal
184
185/* @brief runs the given command in child process.
186 * @param[in] path -path of the binary file which needs to be execeuted.
187 * @param[in] tArgs - arguments of the command.
188 */
Gunnar Mills57d9c502018-09-14 14:42:34 -0500189template <typename... ArgTypes>
William A. Kennington III69f45542022-09-24 23:28:14 -0700190void execute(stdplus::const_zstring path, ArgTypes&&... tArgs)
Ratan Guptabd303b12017-08-18 17:10:07 +0530191{
William A. Kennington III0420c6a2019-06-27 14:38:17 -0700192 using expandType = char*[];
Ratan Guptabd303b12017-08-18 17:10:07 +0530193
Gunnar Mills57d9c502018-09-14 14:42:34 -0500194 expandType args = {const_cast<char*>(tArgs)..., nullptr};
Ratan Guptabd303b12017-08-18 17:10:07 +0530195
196 internal::executeCommandinChildProcess(path, args);
197}
198
Gunnar Mills57d9c502018-09-14 14:42:34 -0500199} // namespace network
Ratan Gupta8804feb2017-05-25 10:49:57 +0530200
Gunnar Mills57d9c502018-09-14 14:42:34 -0500201} // namespace phosphor