Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 1 | #include "config.h" |
Ratan Gupta | 3681a50 | 2017-06-17 19:20:04 +0530 | [diff] [blame] | 2 | #include "util.hpp" |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 3 | #include "network_manager.hpp" |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 4 | #include "network_config.hpp" |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 5 | #include "ipaddress.hpp" |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 6 | #include "timer.hpp" |
Ratan Gupta | 44ae86e | 2017-05-15 21:52:14 +0530 | [diff] [blame] | 7 | #include "xyz/openbmc_project/Common/error.hpp" |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 8 | |
| 9 | #include <phosphor-logging/log.hpp> |
Ratan Gupta | 44ae86e | 2017-05-15 21:52:14 +0530 | [diff] [blame] | 10 | #include <phosphor-logging/elog-errors.hpp> |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 11 | |
| 12 | #include <algorithm> |
Ratan Gupta | 738a67f | 2017-04-21 10:38:05 +0530 | [diff] [blame] | 13 | #include <bitset> |
Ratan Gupta | 738a67f | 2017-04-21 10:38:05 +0530 | [diff] [blame] | 14 | #include <map> |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 15 | #include <fstream> |
Ratan Gupta | 738a67f | 2017-04-21 10:38:05 +0530 | [diff] [blame] | 16 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 17 | #include <arpa/inet.h> |
| 18 | #include <dirent.h> |
| 19 | #include <net/if.h> |
| 20 | |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 21 | #include <string> |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 22 | |
| 23 | namespace phosphor |
| 24 | { |
| 25 | namespace network |
| 26 | { |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 27 | |
Ratan Gupta | 16f1288 | 2017-09-22 18:26:11 +0530 | [diff] [blame^] | 28 | extern std::unique_ptr<phosphor::network::Timer> refreshObjectTimer; |
| 29 | extern std::unique_ptr<phosphor::network::Timer> restartTimer; |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 30 | using namespace phosphor::logging; |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 31 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 32 | |
Ratan Gupta | 255d514 | 2017-08-10 09:02:08 +0530 | [diff] [blame] | 33 | Manager::Manager(sdbusplus::bus::bus& bus, const char* objPath, |
| 34 | const std::string& path): |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 35 | details::VLANCreateIface(bus, objPath, true), |
| 36 | bus(bus), |
| 37 | objectPath(objPath) |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 38 | { |
Ratan Gupta | 255d514 | 2017-08-10 09:02:08 +0530 | [diff] [blame] | 39 | fs::path confDir(path); |
| 40 | setConfDir(confDir); |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 41 | } |
| 42 | |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 43 | bool Manager::createDefaultNetworkFiles(bool force) |
| 44 | { |
| 45 | auto isCreated = false; |
| 46 | try |
| 47 | { |
| 48 | // Directory would have created before with |
| 49 | // setConfDir function. |
| 50 | if (force) |
| 51 | { |
| 52 | // Factory Reset case |
| 53 | // we need to forcefully write the files |
| 54 | // so delete the existing ones. |
| 55 | if (fs::is_directory(confDir)) |
| 56 | { |
| 57 | for (const auto& file : fs::directory_iterator(confDir)) |
| 58 | { |
| 59 | fs::remove(file.path()); |
| 60 | } |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | auto interfaceStrList = getInterfaces(); |
| 65 | for (const auto& interface : interfaceStrList) |
| 66 | { |
| 67 | auto fileName = systemd::config::networkFilePrefix + interface + |
| 68 | systemd::config::networkFileSuffix; |
| 69 | |
| 70 | fs::path filePath = confDir; |
| 71 | filePath /= fileName; |
| 72 | |
| 73 | // create the interface specific network file |
| 74 | // if not exist or we forcefully wants to write |
| 75 | // the network file. |
| 76 | |
| 77 | if (force || !fs::is_regular_file(filePath.string())) |
| 78 | { |
| 79 | bmc::writeDHCPDefault(filePath.string(), interface); |
| 80 | log<level::INFO>("Created the default network file.", |
| 81 | entry("INTERFACE=%s", interface.c_str())); |
| 82 | isCreated = true; |
| 83 | } |
| 84 | } |
| 85 | } |
| 86 | catch (std::exception& e) |
| 87 | { |
| 88 | log<level::ERR>("Unable to create the default network file"); |
| 89 | } |
| 90 | return isCreated; |
| 91 | } |
| 92 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 93 | void Manager::setConfDir(const fs::path& dir) |
| 94 | { |
| 95 | confDir = dir; |
Ratan Gupta | 255d514 | 2017-08-10 09:02:08 +0530 | [diff] [blame] | 96 | |
| 97 | if (!fs::exists(confDir)) |
| 98 | { |
| 99 | if (!fs::create_directories(confDir)) |
| 100 | { |
| 101 | log<level::ERR>("Unable to create the network conf dir", |
| 102 | entry("DIR=%s", confDir.c_str())); |
| 103 | elog<InternalFailure>(); |
| 104 | } |
| 105 | } |
| 106 | |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | void Manager::createInterfaces() |
| 110 | { |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 111 | //clear all the interfaces first |
| 112 | interfaces.clear(); |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 113 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 114 | auto interfaceStrList = getInterfaces(); |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 115 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 116 | for (auto& interface : interfaceStrList) |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 117 | { |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 118 | fs::path objPath = objectPath; |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 119 | auto index = interface.find("."); |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 120 | |
| 121 | // interface can be of vlan type or normal ethernet interface. |
| 122 | // vlan interface looks like "interface.vlanid",so here by looking |
| 123 | // at the interface name we decide that we need |
| 124 | // to create the vlaninterface or normal physical interface. |
| 125 | if (index != std::string::npos) |
| 126 | { |
| 127 | //it is vlan interface |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 128 | auto interfaceName = interface.substr(0, index); |
| 129 | auto vlanid = interface.substr(index + 1); |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 130 | uint32_t vlanInt = std::stoul(vlanid); |
| 131 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 132 | interfaces[interfaceName]->loadVLAN(vlanInt); |
Ratan Gupta | 6e8df63 | 2017-08-13 09:41:58 +0530 | [diff] [blame] | 133 | continue; |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 134 | } |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 135 | // normal ethernet interface |
| 136 | objPath /= interface; |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 137 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 138 | auto dhcp = getDHCPValue(confDir, interface); |
Ratan Gupta | 34f96d6 | 2017-06-15 09:16:22 +0530 | [diff] [blame] | 139 | |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 140 | auto intf = std::make_shared<phosphor::network::EthernetInterface>( |
| 141 | bus, |
| 142 | objPath.string(), |
| 143 | dhcp, |
| 144 | *this); |
| 145 | |
| 146 | |
| 147 | intf->createIPAddressObjects(); |
| 148 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 149 | this->interfaces.emplace(std::make_pair( |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 150 | std::move(interface), std::move(intf))); |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 151 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 152 | } |
Ratan Gupta | 87c1398 | 2017-06-15 09:27:27 +0530 | [diff] [blame] | 153 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 154 | } |
| 155 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 156 | void Manager::createChildObjects() |
| 157 | { |
| 158 | // creates the ethernet interface dbus object. |
| 159 | createInterfaces(); |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 160 | |
| 161 | systemConf.reset(nullptr); |
| 162 | dhcpConf.reset(nullptr); |
| 163 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 164 | fs::path objPath = objectPath; |
| 165 | objPath /= "config"; |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 166 | |
| 167 | // create the system conf object. |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 168 | systemConf = std::make_unique<phosphor::network::SystemConfiguration>( |
| 169 | bus, objPath.string(), *this); |
Ratan Gupta | d16f88c | 2017-07-11 17:47:57 +0530 | [diff] [blame] | 170 | // create the dhcp conf object. |
| 171 | objPath /= "dhcp"; |
| 172 | dhcpConf = std::make_unique<phosphor::network::dhcp::Configuration>( |
| 173 | bus, objPath.string(), *this); |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 174 | |
| 175 | } |
| 176 | |
Ratan Gupta | 584df83 | 2017-07-31 16:21:54 +0530 | [diff] [blame] | 177 | void Manager::vLAN(IntfName interfaceName, uint32_t id) |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 178 | { |
Ratan Gupta | 2b10653 | 2017-07-25 16:05:02 +0530 | [diff] [blame] | 179 | interfaces[interfaceName]->createVLAN(id); |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 180 | } |
| 181 | |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 182 | void Manager::reset() |
| 183 | { |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 184 | if(!createDefaultNetworkFiles(true)) |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 185 | { |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 186 | log<level::ERR>("Network Factory Reset failed."); |
| 187 | return; |
| 188 | // TODO: openbmc/openbmc#1721 - Log ResetFailed error here. |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 189 | } |
| 190 | |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 191 | log<level::INFO>("Network Factory Reset done."); |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 192 | } |
| 193 | |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 194 | // Need to merge the below function with the code which writes the |
| 195 | // config file during factory reset. |
| 196 | //TODO openbmc/openbmc#1751 |
| 197 | void Manager::writeToConfigurationFile() |
| 198 | { |
| 199 | // write all the static ip address in the systemd-network conf file |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 200 | for (const auto& intf : interfaces) |
| 201 | { |
Ratan Gupta | 2b10653 | 2017-07-25 16:05:02 +0530 | [diff] [blame] | 202 | intf.second->writeConfigurationFile(); |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 203 | |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 204 | } |
Ratan Gupta | 16f1288 | 2017-09-22 18:26:11 +0530 | [diff] [blame^] | 205 | restartTimers(); |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 206 | } |
| 207 | |
Ratan Gupta | 16f1288 | 2017-09-22 18:26:11 +0530 | [diff] [blame^] | 208 | void Manager::restartTimers() |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 209 | { |
| 210 | using namespace std::chrono; |
Ratan Gupta | 16f1288 | 2017-09-22 18:26:11 +0530 | [diff] [blame^] | 211 | if (refreshObjectTimer && restartTimer) |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 212 | { |
Ratan Gupta | 16f1288 | 2017-09-22 18:26:11 +0530 | [diff] [blame^] | 213 | // start the restart timer. |
| 214 | auto restartTime = duration_cast<microseconds>( |
| 215 | phosphor::network::restartTimeout); |
| 216 | restartTimer->startTimer(restartTime); |
| 217 | |
| 218 | // start the refresh timer. |
| 219 | auto refreshTime = duration_cast<microseconds>( |
| 220 | phosphor::network::refreshTimeout); |
| 221 | refreshObjectTimer->startTimer(refreshTime); |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 222 | } |
Ratan Gupta | 70c7e5b | 2017-07-12 11:41:55 +0530 | [diff] [blame] | 223 | } |
| 224 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 225 | }//namespace network |
| 226 | }//namespace phosphor |