summaryrefslogtreecommitdiff
path: root/accel-pppd
diff options
context:
space:
mode:
authorDmitry Kozlov <xeb@mail.ru>2016-03-29 15:02:53 +0300
committerDmitry Kozlov <xeb@mail.ru>2016-03-29 15:02:53 +0300
commit152940fa7dc9bed56ad66dd6e0f10df3ff2f9aac (patch)
tree467e0d61ff7a357c578a0a014a2fc89b951f1286 /accel-pppd
parentb343b7c6246a48a1bd84bf71438e193cefec3c04 (diff)
downloadaccel-ppp-xebd-152940fa7dc9bed56ad66dd6e0f10df3ff2f9aac.tar.gz
accel-ppp-xebd-152940fa7dc9bed56ad66dd6e0f10df3ff2f9aac.zip
vlan_mon: use local netlink socket in utility functions
Diffstat (limited to 'accel-pppd')
-rw-r--r--accel-pppd/vlan-mon/vlan_mon.c43
1 files changed, 34 insertions, 9 deletions
diff --git a/accel-pppd/vlan-mon/vlan_mon.c b/accel-pppd/vlan-mon/vlan_mon.c
index 9b77fbc..b7e7129 100644
--- a/accel-pppd/vlan-mon/vlan_mon.c
+++ b/accel-pppd/vlan-mon/vlan_mon.c
@@ -49,15 +49,22 @@ void __export vlan_mon_register_proto(int proto, vlan_mon_notify func)
int __export vlan_mon_add(int ifindex, int proto, long *mask, int len)
{
+ struct rtnl_handle rth;
struct nlmsghdr *nlh;
struct genlmsghdr *ghdr;
struct {
struct nlmsghdr n;
char buf[1024];
} req;
+ int r = 0;
+
+ if (vlan_mon_genl_id < 0)
+ return -1;
- if (rth.fd == -1)
+ if (rtnl_open_byproto(&rth, 0, NETLINK_GENERIC)) {
+ log_error("ipoe: cannot open generic netlink socket\n");
return -1;
+ }
nlh = &req.n;
nlh->nlmsg_len = NLMSG_LENGTH(GENL_HDRLEN);
@@ -73,14 +80,17 @@ int __export vlan_mon_add(int ifindex, int proto, long *mask, int len)
if (rtnl_talk(&rth, nlh, 0, 0, nlh, NULL, NULL, 0) < 0 ) {
log_error("vlan_mon: nl_add_vlan_mon: error talking to kernel\n");
- return -1;
+ r = -1;
}
- return 0;
+ rtnl_close(&rth);
+
+ return r;
}
int __export vlan_mon_add_vid(int ifindex, int proto, int vid)
{
+ struct rtnl_handle rth;
struct nlmsghdr *nlh;
struct genlmsghdr *ghdr;
struct {
@@ -89,9 +99,14 @@ int __export vlan_mon_add_vid(int ifindex, int proto, int vid)
} req;
int r = 0;
- if (rth.fd == -1)
+ if (vlan_mon_genl_id < 0)
return -1;
+ if (rtnl_open_byproto(&rth, 0, NETLINK_GENERIC)) {
+ log_error("ipoe: cannot open generic netlink socket\n");
+ return -1;
+ }
+
nlh = &req.n;
nlh->nlmsg_len = NLMSG_LENGTH(GENL_HDRLEN);
nlh->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
@@ -109,20 +124,29 @@ int __export vlan_mon_add_vid(int ifindex, int proto, int vid)
r = -1;
}
+ rtnl_close(&rth);
+
return r;
}
int __export vlan_mon_del(int ifindex, int proto)
{
+ struct rtnl_handle rth;
struct nlmsghdr *nlh;
struct genlmsghdr *ghdr;
struct {
struct nlmsghdr n;
char buf[1024];
} req;
+ int r = 0;
+
+ if (vlan_mon_genl_id < 0)
+ return -1;
- if (rth.fd == -1)
+ if (rtnl_open_byproto(&rth, 0, NETLINK_GENERIC)) {
+ log_error("ipoe: cannot open generic netlink socket\n");
return -1;
+ }
nlh = &req.n;
nlh->nlmsg_len = NLMSG_LENGTH(GENL_HDRLEN);
@@ -137,10 +161,12 @@ int __export vlan_mon_del(int ifindex, int proto)
if (rtnl_talk(&rth, nlh, 0, 0, nlh, NULL, NULL, 0) < 0 ) {
log_error("vlan_mon: nl_del_vlan_mon: error talking to kernel\n");
- return -1;
+ r = -1;
}
- return 0;
+ rtnl_close(&rth);
+
+ return r;
}
static void vlan_mon_handler(const struct sockaddr_nl *addr, struct nlmsghdr *h)
@@ -383,14 +409,13 @@ static void init(void)
int mcg_id = genl_resolve_mcg(VLAN_MON_GENL_NAME, VLAN_MON_GENL_MCG, &vlan_mon_genl_id);
if (mcg_id == -1) {
log_warn("vlan_mon: kernel module is not loaded\n");
- rth.fd = -1;
vlan_mon_genl_id = -1;
return;
}
if (rtnl_open_byproto(&rth, 1 << (mcg_id - 1), NETLINK_GENERIC)) {
log_error("vlan_mon: cannot open generic netlink socket\n");
- rth.fd = -1;
+ vlan_mon_genl_id = -1;
return;
}