blob: 2bc203f1e011faf6a509e285602dd245c53479b6 [file] [log] [blame]
Ratan Guptaa54d8f82017-09-08 17:05:46 +05301#include "config.h"
Gunnar Mills57d9c502018-09-14 14:42:34 -05002
Patrick Venture189d44e2018-07-09 12:30:59 -07003#include "dns_updater.hpp"
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +05304#include "network_manager.hpp"
5#include "rtnetlink_server.hpp"
William A. Kennington III3a70fa22018-09-20 18:48:20 -07006#include "types.hpp"
Vishwanatha Subbanna18891c62017-10-17 15:22:46 +05307#include "watch.hpp"
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +05308
Ratan Guptaf6657382017-11-10 17:58:17 +05309#include <linux/netlink.h>
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053010
William A. Kennington III3a70fa22018-09-20 18:48:20 -070011#include <functional>
Ratan Guptaf6657382017-11-10 17:58:17 +053012#include <memory>
13#include <phosphor-logging/elog-errors.hpp>
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053014#include <phosphor-logging/log.hpp>
Ratan Guptacb7098d2017-04-14 17:46:05 +053015#include <sdbusplus/bus.hpp>
16#include <sdbusplus/server/manager.hpp>
William A. Kennington III3a70fa22018-09-20 18:48:20 -070017#include <sdeventplus/event.hpp>
Ratan Guptaf6657382017-11-10 17:58:17 +053018#include <xyz/openbmc_project/Common/error.hpp>
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053019
William A. Kennington III09095f82018-09-27 12:05:12 -070020using phosphor::logging::elog;
21using phosphor::logging::entry;
22using phosphor::logging::level;
23using phosphor::logging::log;
24using sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
25
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053026namespace phosphor
27{
28namespace network
29{
30
31std::unique_ptr<phosphor::network::Manager> manager = nullptr;
William A. Kennington III3a70fa22018-09-20 18:48:20 -070032std::unique_ptr<Timer> refreshObjectTimer = nullptr;
33std::unique_ptr<Timer> restartTimer = nullptr;
Ratan Guptaa54d8f82017-09-08 17:05:46 +053034
Ratan Gupta16f12882017-09-22 18:26:11 +053035/** @brief refresh the network objects. */
Ratan Guptaa54d8f82017-09-08 17:05:46 +053036void refreshObjects()
37{
Ratan Gupta16f12882017-09-22 18:26:11 +053038 if (manager)
39 {
Ratan Gupta310a0b12017-11-15 17:40:24 +053040 log<level::INFO>("Refreshing the objects.");
Ratan Gupta16f12882017-09-22 18:26:11 +053041 manager->createChildObjects();
Ratan Gupta310a0b12017-11-15 17:40:24 +053042 log<level::INFO>("Refreshing complete.");
Ratan Gupta16f12882017-09-22 18:26:11 +053043 }
44}
45
46/** @brief restart the systemd networkd. */
47void restartNetwork()
48{
49 restartSystemdUnit("systemd-networkd.service");
Ratan Guptaa54d8f82017-09-08 17:05:46 +053050}
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053051
Ratan Gupta16f12882017-09-22 18:26:11 +053052void initializeTimers()
53{
William A. Kennington III3a70fa22018-09-20 18:48:20 -070054 auto event = sdeventplus::Event::get_default();
55 refreshObjectTimer =
56 std::make_unique<Timer>(event, std::bind(refreshObjects));
57 restartTimer = std::make_unique<Timer>(event, std::bind(restartNetwork));
Ratan Gupta16f12882017-09-22 18:26:11 +053058}
59
William A. Kennington III3a70fa22018-09-20 18:48:20 -070060} // namespace network
61} // namespace phosphor
62
Ratan Guptaf6657382017-11-10 17:58:17 +053063void createNetLinkSocket(phosphor::Descriptor& smartSock)
64{
Gunnar Mills57d9c502018-09-14 14:42:34 -050065 // RtnetLink socket
Ratan Guptaf6657382017-11-10 17:58:17 +053066 auto fd = socket(PF_NETLINK, SOCK_RAW | SOCK_NONBLOCK, NETLINK_ROUTE);
67 if (fd < 0)
68 {
Ratan Guptaf6657382017-11-10 17:58:17 +053069 log<level::ERR>("Unable to create the net link socket",
William A. Kennington III798c2812018-09-27 12:07:39 -070070 entry("ERRNO=%d", errno));
Ratan Guptaf6657382017-11-10 17:58:17 +053071 elog<InternalFailure>();
72 }
73 smartSock.set(fd);
74}
75
Gunnar Mills57d9c502018-09-14 14:42:34 -050076int main(int argc, char* argv[])
Ratan Gupta8c834932017-04-14 16:30:24 +053077{
William A. Kennington III3a70fa22018-09-20 18:48:20 -070078 phosphor::network::initializeTimers();
Ratan Guptaa54d8f82017-09-08 17:05:46 +053079
Ratan Guptacb7098d2017-04-14 17:46:05 +053080 auto bus = sdbusplus::bus::new_default();
81
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053082 // Need sd_event to watch for OCC device errors
83 sd_event* event = nullptr;
84 auto r = sd_event_default(&event);
85 if (r < 0)
86 {
87 log<level::ERR>("Error creating a default sd_event handler");
88 return r;
89 }
90
91 phosphor::network::EventPtr eventPtr{event};
92 event = nullptr;
93
94 // Attach the bus to sd_event to service user requests
95 bus.attach_event(eventPtr.get(), SD_EVENT_PRIORITY_NORMAL);
96
Ratan Guptacb7098d2017-04-14 17:46:05 +053097 // Add sdbusplus Object Manager for the 'root' path of the network manager.
98 sdbusplus::server::manager::manager objManager(bus, OBJ_NETWORK);
Ratan Gupta26e87a02017-08-18 01:08:40 +053099 bus.request_name(BUSNAME_NETWORK);
Ratan Guptacb7098d2017-04-14 17:46:05 +0530100
Gunnar Mills57d9c502018-09-14 14:42:34 -0500101 phosphor::network::manager = std::make_unique<phosphor::network::Manager>(
102 bus, OBJ_NETWORK, NETWORK_CONF_DIR);
Ratan Guptacb7098d2017-04-14 17:46:05 +0530103
Ratan Guptab610caf2017-09-19 09:33:51 +0530104 // create the default network files if the network file
105 // is not there for any interface.
106 // Parameter false means don't create the network
107 // files forcefully.
108 if (phosphor::network::manager->createDefaultNetworkFiles(false))
109 {
110 // if files created restart the network.
111 // don't need to call the create child objects as eventhandler
112 // will create it.
Ratan Gupta16f12882017-09-22 18:26:11 +0530113 phosphor::network::restartNetwork();
Ratan Guptab610caf2017-09-19 09:33:51 +0530114 }
Ratan Guptae9629412017-12-21 08:20:25 +0530115 else
116 {
117 // this will add the additional fixes which is needed
118 // in the existing network file.
119 phosphor::network::manager->writeToConfigurationFile();
Ratan Gupta2939f182018-02-14 23:14:54 +0530120 // whenever the configuration file gets written it restart
121 // the network which creates the network objects
Ratan Guptae9629412017-12-21 08:20:25 +0530122 }
Vishwanatha Subbanna18891c62017-10-17 15:22:46 +0530123
Gunnar Mills57d9c502018-09-14 14:42:34 -0500124 // RtnetLink socket
Ratan Guptaf6657382017-11-10 17:58:17 +0530125 phosphor::Descriptor smartSock;
126 createNetLinkSocket(smartSock);
127
Vishwanatha Subbanna18891c62017-10-17 15:22:46 +0530128 // RTNETLINK event handler
Ratan Guptaf6657382017-11-10 17:58:17 +0530129 phosphor::network::rtnetlink::Server svr(eventPtr, smartSock);
Vishwanatha Subbanna18891c62017-10-17 15:22:46 +0530130
131 // DNS entry handler
Gunnar Mills57d9c502018-09-14 14:42:34 -0500132 phosphor::network::inotify::Watch watch(
133 eventPtr, DNS_ENTRY_FILE,
134 std::bind(&phosphor::network::dns::updater::processDNSEntries,
135 std::placeholders::_1));
Vishwanatha Subbanna18891c62017-10-17 15:22:46 +0530136
137 // At this point, we have registered for the notifications for future
138 // events. However, if the file is already populated before this, then
139 // they won't ever get notified and thus we need to read once before
140 // waiting on change events
141 phosphor::network::dns::updater::processDNSEntries(DNS_ENTRY_FILE);
142
Vishwanatha Subbanna18891c62017-10-17 15:22:46 +0530143 sd_event_loop(eventPtr.get());
Ratan Gupta8c834932017-04-14 16:30:24 +0530144}