blob: 9daf9ad42a9670deaf9cae4854b62554a1f50fb4 [file] [log] [blame]
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +05301#include "rtnetlink_server.hpp"
Patrick Venture189d44e2018-07-09 12:30:59 -07002
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +05303#include "types.hpp"
4#include "util.hpp"
5
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +05306#include <linux/netlink.h>
7#include <linux/rtnetlink.h>
8#include <net/if.h>
Patrick Venture189d44e2018-07-09 12:30:59 -07009#include <netinet/in.h>
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053010#include <sys/types.h>
11#include <systemd/sd-daemon.h>
12#include <unistd.h>
13
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053014#include <memory>
Patrick Venture189d44e2018-07-09 12:30:59 -070015#include <phosphor-logging/elog-errors.hpp>
16#include <phosphor-logging/log.hpp>
17#include <xyz/openbmc_project/Common/error.hpp>
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053018
19namespace phosphor
20{
21namespace network
22{
Ratan Guptaa54d8f82017-09-08 17:05:46 +053023
William A. Kennington III3a70fa22018-09-20 18:48:20 -070024extern std::unique_ptr<Timer> refreshObjectTimer;
Ratan Guptaa54d8f82017-09-08 17:05:46 +053025
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053026namespace rtnetlink
27{
28
29/* Call Back for the sd event loop */
30static int eventHandler(sd_event_source* es, int fd, uint32_t revents,
31 void* userdata)
32{
Gunnar Mills57d9c502018-09-14 14:42:34 -050033 char buffer[phosphor::network::rtnetlink::BUFSIZE]{};
34 int len{};
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053035
36 auto netLinkHeader = reinterpret_cast<struct nlmsghdr*>(buffer);
Gunnar Mills57d9c502018-09-14 14:42:34 -050037 while ((len = recv(fd, netLinkHeader, phosphor::network::rtnetlink::BUFSIZE,
38 0)) > 0)
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053039 {
40 for (; (NLMSG_OK(netLinkHeader, len)) &&
41 (netLinkHeader->nlmsg_type != NLMSG_DONE);
Gunnar Mills57d9c502018-09-14 14:42:34 -050042 netLinkHeader = NLMSG_NEXT(netLinkHeader, len))
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053043 {
44 if (netLinkHeader->nlmsg_type == RTM_NEWADDR ||
45 netLinkHeader->nlmsg_type == RTM_DELADDR)
46 {
Ratan Guptaa54d8f82017-09-08 17:05:46 +053047 // starting the timer here to make sure that we don't want
48 // create the child objects multiple times.
Alexander Filippov74db23c2018-11-29 15:31:42 +030049 if (!refreshObjectTimer->isEnabled() ||
50 refreshObjectTimer->hasExpired())
Ratan Guptaa54d8f82017-09-08 17:05:46 +053051 {
Ratan Guptaa54d8f82017-09-08 17:05:46 +053052 // if start timer throws exception then let the application
53 // crash
William A. Kennington III3a70fa22018-09-20 18:48:20 -070054 refreshObjectTimer->restartOnce(refreshTimeout);
Ratan Guptaa54d8f82017-09-08 17:05:46 +053055 } // end if
Gunnar Mills57d9c502018-09-14 14:42:34 -050056 } // end if
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053057
58 } // end for
59
60 } // end while
61
62 return 0;
63}
64
Ratan Guptaf6657382017-11-10 17:58:17 +053065Server::Server(EventPtr& eventPtr, const phosphor::Descriptor& smartSock)
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053066{
67 using namespace phosphor::logging;
Gunnar Mills57d9c502018-09-14 14:42:34 -050068 using InternalFailure =
69 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
70 struct sockaddr_nl addr
71 {
72 };
73 int r{};
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053074
Gunnar Mills57d9c502018-09-14 14:42:34 -050075 sigset_t ss{};
Ratan Guptaf6657382017-11-10 17:58:17 +053076 // check that the given socket is valid or not.
Gunnar Mills57d9c502018-09-14 14:42:34 -050077 if (smartSock() < 0)
Ratan Guptaf6657382017-11-10 17:58:17 +053078 {
79 r = -EBADF;
80 goto finish;
81 }
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053082
83 if (sigemptyset(&ss) < 0 || sigaddset(&ss, SIGTERM) < 0 ||
84 sigaddset(&ss, SIGINT) < 0)
85 {
86 r = -errno;
87 goto finish;
88 }
89 /* Block SIGTERM first, so that the event loop can handle it */
90 if (sigprocmask(SIG_BLOCK, &ss, NULL) < 0)
91 {
92 r = -errno;
93 goto finish;
94 }
95
96 /* Let's make use of the default handler and "floating"
97 reference features of sd_event_add_signal() */
98
99 r = sd_event_add_signal(eventPtr.get(), NULL, SIGTERM, NULL, NULL);
100 if (r < 0)
101 {
102 goto finish;
103 }
104
105 r = sd_event_add_signal(eventPtr.get(), NULL, SIGINT, NULL, NULL);
106 if (r < 0)
107 {
108 goto finish;
109 }
110
Patrick Venture836c91d2018-09-11 17:36:03 -0700111 std::memset(&addr, 0, sizeof(addr));
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +0530112 addr.nl_family = AF_NETLINK;
Ratan Gupta16f12882017-09-22 18:26:11 +0530113 addr.nl_groups = RTMGRP_IPV4_IFADDR | RTMGRP_IPV6_IFADDR;
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +0530114
115 if (bind(smartSock(), (struct sockaddr*)&addr, sizeof(addr)) < 0)
116 {
117 r = -errno;
118 goto finish;
119 }
120
Gunnar Mills57d9c502018-09-14 14:42:34 -0500121 r = sd_event_add_io(eventPtr.get(), nullptr, smartSock(), EPOLLIN,
122 eventHandler, nullptr);
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +0530123 if (r < 0)
124 {
125 goto finish;
126 }
127
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +0530128finish:
129
130 if (r < 0)
131 {
Gunnar Millsd75f0492017-10-25 20:33:32 -0500132 log<level::ERR>("Failure Occurred in starting of server:",
Gunnar Millsfc7df192017-10-19 16:11:05 -0500133 entry("ERRNO=%d", errno));
Vishwanatha Subbanna18891c62017-10-17 15:22:46 +0530134 elog<InternalFailure>();
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +0530135 }
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +0530136}
137
Gunnar Mills57d9c502018-09-14 14:42:34 -0500138} // namespace rtnetlink
139} // namespace network
140} // namespace phosphor