blob: 19eb108637f40d0eb53564692e795c6cc0ac3e45 [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 IIIfd862be2022-10-09 18:40:55 -07004#include <net/ethernet.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 III1137a972019-04-20 20:49:58 -070046/** @brief Determines if the mac address is empty
47 * @param[in] mac - The mac address
48 * @return True if 00:00:00:00:00:00
Ratan Guptabd303b12017-08-18 17:10:07 +053049 */
William A. Kennington III1137a972019-04-20 20:49:58 -070050bool isEmpty(const ether_addr& mac);
Ratan Guptabd303b12017-08-18 17:10:07 +053051
William A. Kennington III1137a972019-04-20 20:49:58 -070052/** @brief Determines if the mac address is a multicast address
53 * @param[in] mac - The mac address
54 * @return True if multicast bit is set
55 */
56bool isMulticast(const ether_addr& mac);
57
58/** @brief Determines if the mac address is a unicast address
59 * @param[in] mac - The mac address
60 * @return True if not multicast or empty
61 */
62bool isUnicast(const ether_addr& mac);
63
Gunnar Mills57d9c502018-09-14 14:42:34 -050064} // namespace mac_address
Ratan Gupta8804feb2017-05-25 10:49:57 +053065
William A. Kennington IIIe5a48ab2019-04-22 03:55:23 -070066template <int family>
67struct FamilyTraits
68{
69};
70
71template <>
72struct FamilyTraits<AF_INET>
73{
74 using addr = in_addr;
75};
76
77template <>
78struct FamilyTraits<AF_INET6>
79{
80 using addr = in6_addr;
81};
82
William A. Kennington IIIa00b1c32019-02-01 18:57:17 -080083/* @brief converts a sockaddr for the specified address family into
84 * a type_safe InAddrAny.
William A. Kennington III97b5dc62022-10-07 14:01:29 -070085 * @param[in] family - The address family of the buf
William A. Kennington IIIa00b1c32019-02-01 18:57:17 -080086 * @param[in] buf - The network byte order address
87 */
William A. Kennington III97b5dc62022-10-07 14:01:29 -070088template <int family>
89typename FamilyTraits<family>::addr addrFromBuf(std::string_view buf);
90InAddrAny addrFromBuf(int family, std::string_view buf);
William A. Kennington IIIa00b1c32019-02-01 18:57:17 -080091
Nagaraju Goruganti66b974d2017-10-03 08:43:08 -050092/* @brief checks that the given ip address valid or not.
William A. Kennington III9f228302022-10-07 14:02:49 -070093 * @param[in] family - IP address family(AF_INET/AF_INET6).
Nagaraju Goruganti66b974d2017-10-03 08:43:08 -050094 * @param[in] address - IP address.
95 * @returns true if it is valid otherwise false.
96 */
William A. Kennington III9f228302022-10-07 14:02:49 -070097bool isValidIP(int family, stdplus::const_zstring address) noexcept;
William A. Kennington IIIff12acb2022-10-07 19:06:56 -070098bool isValidIP(stdplus::const_zstring address) noexcept;
Nagaraju Goruganti66b974d2017-10-03 08:43:08 -050099
100/* @brief checks that the given prefix is valid or not.
William A. Kennington IIIe5a48ab2019-04-22 03:55:23 -0700101 * @param[in] family - IP address family(AF_INET/AF_INET6).
Nagaraju Goruganti66b974d2017-10-03 08:43:08 -0500102 * @param[in] prefix - prefix length.
103 * @returns true if it is valid otherwise false.
104 */
William A. Kennington IIIe5a48ab2019-04-22 03:55:23 -0700105template <int family>
106constexpr bool isValidPrefix(uint8_t prefix) noexcept
107{
108 return prefix <= sizeof(typename FamilyTraits<family>::addr) * 8;
109}
110bool isValidPrefix(int family, uint8_t prefixLength);
Ratan Gupta8804feb2017-05-25 10:49:57 +0530111
Ratan Guptabc886292017-07-25 18:29:57 +0530112/** @brief Delete the given interface.
113 * @param[in] intf - interface name.
114 */
William A. Kennington III69f45542022-09-24 23:28:14 -0700115void deleteInterface(stdplus::const_zstring intf);
Ratan Guptabc886292017-07-25 18:29:57 +0530116
William A. Kennington III7b9e8bd2019-04-23 19:31:31 -0700117/** @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 */
William A. Kennington III69f45542022-09-24 23:28:14 -0700123std::optional<std::string> interfaceToUbootEthAddr(std::string_view intf);
William A. Kennington III7b9e8bd2019-04-23 19:31:31 -0700124
William A. Kennington IIIa520a392022-08-08 12:17:34 -0700125/** @brief read the IPv6AcceptRA value from the configuration file
126 * @param[in] config - The parsed configuration.
Ratan Gupta56187e72017-08-13 09:40:14 +0530127 */
William A. Kennington IIIa520a392022-08-08 12:17:34 -0700128bool 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 III8060c0d2022-08-18 19:19:34 -0700133struct DHCPVal
134{
135 bool v4, v6;
136};
137DHCPVal getDHCPValue(const config::Parser& config);
Ratan Guptabc886292017-07-25 18:29:57 +0530138
William A. Kennington IIIe94c9ff2022-08-18 20:12:27 -0700139/** @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 */
143bool getDHCPProp(const config::Parser& config, std::string_view key);
144
Ratan Guptabd303b12017-08-18 17:10:07 +0530145namespace 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 */
William A. Kennington III69f45542022-09-24 23:28:14 -0700152void executeCommandinChildProcess(stdplus::const_zstring path, char** args);
Ratan Guptabd303b12017-08-18 17:10:07 +0530153
Lei YU307554e2021-03-18 14:56:50 +0800154/** @brief Get ignored interfaces from environment */
William A. Kennington IIIee5b2c92021-04-28 02:31:28 -0700155std::string_view getIgnoredInterfacesEnv();
Lei YU307554e2021-03-18 14:56:50 +0800156
157/** @brief Parse the comma separated interface names */
William A. Kennington III95530ec2022-08-19 01:44:39 -0700158std::unordered_set<std::string_view>
159 parseInterfaces(std::string_view interfaces);
Lei YU307554e2021-03-18 14:56:50 +0800160
161/** @brief Get the ignored interfaces */
William A. Kennington III95530ec2022-08-19 01:44:39 -0700162const std::unordered_set<std::string_view>& getIgnoredInterfaces();
Lei YU307554e2021-03-18 14:56:50 +0800163
Ratan Guptabd303b12017-08-18 17:10:07 +0530164} // 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 Mills57d9c502018-09-14 14:42:34 -0500170template <typename... ArgTypes>
William A. Kennington III69f45542022-09-24 23:28:14 -0700171void execute(stdplus::const_zstring path, ArgTypes&&... tArgs)
Ratan Guptabd303b12017-08-18 17:10:07 +0530172{
William A. Kennington III0420c6a2019-06-27 14:38:17 -0700173 using expandType = char*[];
Ratan Guptabd303b12017-08-18 17:10:07 +0530174
Gunnar Mills57d9c502018-09-14 14:42:34 -0500175 expandType args = {const_cast<char*>(tArgs)..., nullptr};
Ratan Guptabd303b12017-08-18 17:10:07 +0530176
177 internal::executeCommandinChildProcess(path, args);
178}
179
Gunnar Mills57d9c502018-09-14 14:42:34 -0500180} // namespace network
Ratan Gupta8804feb2017-05-25 10:49:57 +0530181
Gunnar Mills57d9c502018-09-14 14:42:34 -0500182} // namespace phosphor