2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-10 01:33:55 +00:00
|
|
|
/*
|
|
|
|
* libnetlink.c RTnetlink service routines.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/socket.h>
|
2003-06-20 09:05:00 +00:00
|
|
|
#include <sys/uio.h>
|
|
|
|
|
2007-05-31 22:16:38 +00:00
|
|
|
#include "libbb.h"
|
2002-11-10 01:33:55 +00:00
|
|
|
#include "libnetlink.h"
|
|
|
|
|
|
|
|
void rtnl_close(struct rtnl_handle *rth)
|
|
|
|
{
|
|
|
|
close(rth->fd);
|
|
|
|
}
|
|
|
|
|
2007-04-12 11:34:39 +00:00
|
|
|
int xrtnl_open(struct rtnl_handle *rth/*, unsigned subscriptions*/)
|
2002-11-10 01:33:55 +00:00
|
|
|
{
|
2006-01-30 18:00:02 +00:00
|
|
|
socklen_t addr_len;
|
2002-11-10 01:33:55 +00:00
|
|
|
|
|
|
|
memset(rth, 0, sizeof(rth));
|
|
|
|
|
2007-04-12 11:34:39 +00:00
|
|
|
rth->fd = xsocket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
|
2002-11-10 01:33:55 +00:00
|
|
|
|
|
|
|
memset(&rth->local, 0, sizeof(rth->local));
|
|
|
|
rth->local.nl_family = AF_NETLINK;
|
2007-04-12 11:34:39 +00:00
|
|
|
/*rth->local.nl_groups = subscriptions;*/
|
2002-11-10 01:33:55 +00:00
|
|
|
|
2007-04-12 11:34:39 +00:00
|
|
|
xbind(rth->fd, (struct sockaddr*)&rth->local, sizeof(rth->local));
|
2002-11-10 01:33:55 +00:00
|
|
|
addr_len = sizeof(rth->local);
|
2007-04-12 11:34:39 +00:00
|
|
|
if (getsockname(rth->fd, (struct sockaddr*)&rth->local, &addr_len) < 0)
|
|
|
|
bb_perror_msg_and_die("cannot getsockname");
|
|
|
|
if (addr_len != sizeof(rth->local))
|
|
|
|
bb_error_msg_and_die("wrong address length %d", addr_len);
|
|
|
|
if (rth->local.nl_family != AF_NETLINK)
|
|
|
|
bb_error_msg_and_die("wrong address family %d", rth->local.nl_family);
|
2002-11-10 01:33:55 +00:00
|
|
|
rth->seq = time(NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-04-12 11:34:39 +00:00
|
|
|
int xrtnl_wilddump_request(struct rtnl_handle *rth, int family, int type)
|
2002-11-10 01:33:55 +00:00
|
|
|
{
|
|
|
|
struct {
|
|
|
|
struct nlmsghdr nlh;
|
|
|
|
struct rtgenmsg g;
|
|
|
|
} req;
|
|
|
|
struct sockaddr_nl nladdr;
|
|
|
|
|
|
|
|
memset(&nladdr, 0, sizeof(nladdr));
|
|
|
|
nladdr.nl_family = AF_NETLINK;
|
|
|
|
|
|
|
|
req.nlh.nlmsg_len = sizeof(req);
|
|
|
|
req.nlh.nlmsg_type = type;
|
|
|
|
req.nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
|
|
|
|
req.nlh.nlmsg_pid = 0;
|
|
|
|
req.nlh.nlmsg_seq = rth->dump = ++rth->seq;
|
|
|
|
req.g.rtgen_family = family;
|
|
|
|
|
2007-04-12 11:34:39 +00:00
|
|
|
return xsendto(rth->fd, (void*)&req, sizeof(req),
|
|
|
|
(struct sockaddr*)&nladdr, sizeof(nladdr));
|
2002-11-10 01:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int rtnl_send(struct rtnl_handle *rth, char *buf, int len)
|
|
|
|
{
|
|
|
|
struct sockaddr_nl nladdr;
|
|
|
|
|
|
|
|
memset(&nladdr, 0, sizeof(nladdr));
|
|
|
|
nladdr.nl_family = AF_NETLINK;
|
|
|
|
|
2007-04-12 11:34:39 +00:00
|
|
|
return xsendto(rth->fd, buf, len, (struct sockaddr*)&nladdr, sizeof(nladdr));
|
2002-11-10 01:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int rtnl_dump_request(struct rtnl_handle *rth, int type, void *req, int len)
|
|
|
|
{
|
|
|
|
struct nlmsghdr nlh;
|
|
|
|
struct sockaddr_nl nladdr;
|
|
|
|
struct iovec iov[2] = { { &nlh, sizeof(nlh) }, { req, len } };
|
|
|
|
struct msghdr msg = {
|
|
|
|
(void*)&nladdr, sizeof(nladdr),
|
|
|
|
iov, 2,
|
|
|
|
NULL, 0,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
memset(&nladdr, 0, sizeof(nladdr));
|
|
|
|
nladdr.nl_family = AF_NETLINK;
|
|
|
|
|
|
|
|
nlh.nlmsg_len = NLMSG_LENGTH(len);
|
|
|
|
nlh.nlmsg_type = type;
|
|
|
|
nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
|
|
|
|
nlh.nlmsg_pid = 0;
|
|
|
|
nlh.nlmsg_seq = rth->dump = ++rth->seq;
|
|
|
|
|
|
|
|
return sendmsg(rth->fd, &msg, 0);
|
|
|
|
}
|
|
|
|
|
2007-04-12 11:34:39 +00:00
|
|
|
static int rtnl_dump_filter(struct rtnl_handle *rth,
|
2006-11-21 15:36:08 +00:00
|
|
|
int (*filter)(struct sockaddr_nl *, struct nlmsghdr *n, void *),
|
2007-04-12 11:34:39 +00:00
|
|
|
void *arg1/*,
|
2006-11-21 15:36:08 +00:00
|
|
|
int (*junk)(struct sockaddr_nl *, struct nlmsghdr *n, void *),
|
2007-04-12 11:34:39 +00:00
|
|
|
void *arg2*/)
|
2002-11-10 01:33:55 +00:00
|
|
|
{
|
2006-10-14 02:23:43 +00:00
|
|
|
char buf[8192];
|
2002-11-10 01:33:55 +00:00
|
|
|
struct sockaddr_nl nladdr;
|
|
|
|
struct iovec iov = { buf, sizeof(buf) };
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
int status;
|
|
|
|
struct nlmsghdr *h;
|
|
|
|
|
|
|
|
struct msghdr msg = {
|
|
|
|
(void*)&nladdr, sizeof(nladdr),
|
|
|
|
&iov, 1,
|
|
|
|
NULL, 0,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
status = recvmsg(rth->fd, &msg, 0);
|
|
|
|
|
|
|
|
if (status < 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg("OVERRUN");
|
2002-11-10 01:33:55 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (status == 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg("EOF on netlink");
|
2002-11-10 01:33:55 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (msg.msg_namelen != sizeof(nladdr)) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg_and_die("sender address length == %d", msg.msg_namelen);
|
2002-11-10 01:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h = (struct nlmsghdr*)buf;
|
|
|
|
while (NLMSG_OK(h, status)) {
|
|
|
|
int err;
|
|
|
|
|
2004-05-05 07:05:32 +00:00
|
|
|
if (nladdr.nl_pid != 0 ||
|
|
|
|
h->nlmsg_pid != rth->local.nl_pid ||
|
2002-11-10 01:33:55 +00:00
|
|
|
h->nlmsg_seq != rth->dump) {
|
2007-04-12 11:34:39 +00:00
|
|
|
/* if (junk) {
|
2002-11-10 01:33:55 +00:00
|
|
|
err = junk(&nladdr, h, arg2);
|
2007-04-12 11:34:39 +00:00
|
|
|
if (err < 0)
|
2002-11-10 01:33:55 +00:00
|
|
|
return err;
|
2007-04-12 11:34:39 +00:00
|
|
|
} */
|
2002-11-10 01:33:55 +00:00
|
|
|
goto skip_it;
|
|
|
|
}
|
|
|
|
|
2002-11-28 12:35:46 +00:00
|
|
|
if (h->nlmsg_type == NLMSG_DONE) {
|
2002-11-10 01:33:55 +00:00
|
|
|
return 0;
|
2002-11-28 12:35:46 +00:00
|
|
|
}
|
2002-11-10 01:33:55 +00:00
|
|
|
if (h->nlmsg_type == NLMSG_ERROR) {
|
2002-11-28 12:35:46 +00:00
|
|
|
struct nlmsgerr *l_err = (struct nlmsgerr*)NLMSG_DATA(h);
|
2002-11-10 01:33:55 +00:00
|
|
|
if (h->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr))) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg("ERROR truncated");
|
2002-11-10 01:33:55 +00:00
|
|
|
} else {
|
2002-11-28 12:35:46 +00:00
|
|
|
errno = -l_err->error;
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg("RTNETLINK answers");
|
2002-11-10 01:33:55 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
err = filter(&nladdr, h, arg1);
|
2007-04-12 11:34:39 +00:00
|
|
|
if (err < 0)
|
2002-11-10 01:33:55 +00:00
|
|
|
return err;
|
|
|
|
|
|
|
|
skip_it:
|
|
|
|
h = NLMSG_NEXT(h, status);
|
|
|
|
}
|
|
|
|
if (msg.msg_flags & MSG_TRUNC) {
|
2006-10-27 09:02:31 +00:00
|
|
|
bb_error_msg("message truncated");
|
2002-11-10 01:33:55 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (status) {
|
2006-10-27 09:02:31 +00:00
|
|
|
bb_error_msg_and_die("remnant of size %d!", status);
|
2002-11-10 01:33:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-12 11:34:39 +00:00
|
|
|
int xrtnl_dump_filter(struct rtnl_handle *rth,
|
|
|
|
int (*filter)(struct sockaddr_nl *, struct nlmsghdr *n, void *),
|
|
|
|
void *arg1)
|
|
|
|
{
|
|
|
|
int ret = rtnl_dump_filter(rth, filter, arg1/*, NULL, NULL*/);
|
|
|
|
if (ret < 0)
|
|
|
|
bb_error_msg_and_die("dump terminated");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2002-11-10 01:33:55 +00:00
|
|
|
int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, pid_t peer,
|
|
|
|
unsigned groups, struct nlmsghdr *answer,
|
|
|
|
int (*junk)(struct sockaddr_nl *,struct nlmsghdr *n, void *),
|
|
|
|
void *jarg)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
unsigned seq;
|
|
|
|
struct nlmsghdr *h;
|
|
|
|
struct sockaddr_nl nladdr;
|
|
|
|
struct iovec iov = { (void*)n, n->nlmsg_len };
|
|
|
|
char buf[8192];
|
|
|
|
struct msghdr msg = {
|
|
|
|
(void*)&nladdr, sizeof(nladdr),
|
|
|
|
&iov, 1,
|
|
|
|
NULL, 0,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
memset(&nladdr, 0, sizeof(nladdr));
|
|
|
|
nladdr.nl_family = AF_NETLINK;
|
|
|
|
nladdr.nl_pid = peer;
|
|
|
|
nladdr.nl_groups = groups;
|
|
|
|
|
|
|
|
n->nlmsg_seq = seq = ++rtnl->seq;
|
2002-11-28 12:35:46 +00:00
|
|
|
if (answer == NULL) {
|
2002-11-10 01:33:55 +00:00
|
|
|
n->nlmsg_flags |= NLM_F_ACK;
|
2002-11-28 12:35:46 +00:00
|
|
|
}
|
2002-11-10 01:33:55 +00:00
|
|
|
status = sendmsg(rtnl->fd, &msg, 0);
|
|
|
|
|
|
|
|
if (status < 0) {
|
2006-10-27 09:02:31 +00:00
|
|
|
bb_perror_msg("cannot talk to rtnetlink");
|
2002-11-10 01:33:55 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
iov.iov_base = buf;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
iov.iov_len = sizeof(buf);
|
|
|
|
status = recvmsg(rtnl->fd, &msg, 0);
|
|
|
|
|
|
|
|
if (status < 0) {
|
2002-11-28 12:35:46 +00:00
|
|
|
if (errno == EINTR) {
|
2002-11-10 01:33:55 +00:00
|
|
|
continue;
|
2002-11-28 12:35:46 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg("OVERRUN");
|
2002-11-10 01:33:55 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (status == 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg("EOF on netlink");
|
2002-11-10 01:33:55 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (msg.msg_namelen != sizeof(nladdr)) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg_and_die("sender address length == %d", msg.msg_namelen);
|
2002-11-10 01:33:55 +00:00
|
|
|
}
|
|
|
|
for (h = (struct nlmsghdr*)buf; status >= sizeof(*h); ) {
|
2002-11-28 12:35:46 +00:00
|
|
|
int l_err;
|
2002-11-10 01:33:55 +00:00
|
|
|
int len = h->nlmsg_len;
|
|
|
|
int l = len - sizeof(*h);
|
|
|
|
|
|
|
|
if (l<0 || len>status) {
|
|
|
|
if (msg.msg_flags & MSG_TRUNC) {
|
2006-10-27 09:02:31 +00:00
|
|
|
bb_error_msg("truncated message");
|
2002-11-10 01:33:55 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2006-10-27 09:02:31 +00:00
|
|
|
bb_error_msg_and_die("malformed message: len=%d!", len);
|
2002-11-10 01:33:55 +00:00
|
|
|
}
|
|
|
|
|
2004-05-05 07:05:32 +00:00
|
|
|
if (nladdr.nl_pid != peer ||
|
|
|
|
h->nlmsg_pid != rtnl->local.nl_pid ||
|
2002-11-10 01:33:55 +00:00
|
|
|
h->nlmsg_seq != seq) {
|
|
|
|
if (junk) {
|
2002-11-28 12:35:46 +00:00
|
|
|
l_err = junk(&nladdr, h, jarg);
|
|
|
|
if (l_err < 0) {
|
|
|
|
return l_err;
|
|
|
|
}
|
2002-11-10 01:33:55 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (h->nlmsg_type == NLMSG_ERROR) {
|
|
|
|
struct nlmsgerr *err = (struct nlmsgerr*)NLMSG_DATA(h);
|
|
|
|
if (l < sizeof(struct nlmsgerr)) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg("ERROR truncated");
|
2002-11-10 01:33:55 +00:00
|
|
|
} else {
|
|
|
|
errno = -err->error;
|
|
|
|
if (errno == 0) {
|
2002-11-28 12:35:46 +00:00
|
|
|
if (answer) {
|
2002-11-10 01:33:55 +00:00
|
|
|
memcpy(answer, h, h->nlmsg_len);
|
2002-11-28 12:35:46 +00:00
|
|
|
}
|
2002-11-10 01:33:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg("RTNETLINK answers");
|
2002-11-10 01:33:55 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (answer) {
|
|
|
|
memcpy(answer, h, h->nlmsg_len);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-10-27 09:02:31 +00:00
|
|
|
bb_error_msg("unexpected reply!");
|
2002-11-10 01:33:55 +00:00
|
|
|
|
|
|
|
status -= NLMSG_ALIGN(len);
|
|
|
|
h = (struct nlmsghdr*)((char*)h + NLMSG_ALIGN(len));
|
|
|
|
}
|
|
|
|
if (msg.msg_flags & MSG_TRUNC) {
|
2006-10-27 09:02:31 +00:00
|
|
|
bb_error_msg("message truncated");
|
2002-11-10 01:33:55 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (status) {
|
2006-10-27 09:02:31 +00:00
|
|
|
bb_error_msg_and_die("remnant of size %d!", status);
|
2002-11-10 01:33:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-31 18:57:37 +00:00
|
|
|
int addattr32(struct nlmsghdr *n, int maxlen, int type, uint32_t data)
|
2002-11-10 01:33:55 +00:00
|
|
|
{
|
|
|
|
int len = RTA_LENGTH(4);
|
|
|
|
struct rtattr *rta;
|
|
|
|
if (NLMSG_ALIGN(n->nlmsg_len) + len > maxlen)
|
|
|
|
return -1;
|
|
|
|
rta = (struct rtattr*)(((char*)n) + NLMSG_ALIGN(n->nlmsg_len));
|
|
|
|
rta->rta_type = type;
|
|
|
|
rta->rta_len = len;
|
|
|
|
memcpy(RTA_DATA(rta), &data, 4);
|
|
|
|
n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int addattr_l(struct nlmsghdr *n, int maxlen, int type, void *data, int alen)
|
|
|
|
{
|
|
|
|
int len = RTA_LENGTH(alen);
|
|
|
|
struct rtattr *rta;
|
|
|
|
|
|
|
|
if (NLMSG_ALIGN(n->nlmsg_len) + len > maxlen)
|
|
|
|
return -1;
|
|
|
|
rta = (struct rtattr*)(((char*)n) + NLMSG_ALIGN(n->nlmsg_len));
|
|
|
|
rta->rta_type = type;
|
|
|
|
rta->rta_len = len;
|
|
|
|
memcpy(RTA_DATA(rta), data, alen);
|
|
|
|
n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-12-31 18:57:37 +00:00
|
|
|
int rta_addattr32(struct rtattr *rta, int maxlen, int type, uint32_t data)
|
2002-11-10 01:33:55 +00:00
|
|
|
{
|
|
|
|
int len = RTA_LENGTH(4);
|
|
|
|
struct rtattr *subrta;
|
|
|
|
|
2002-11-28 12:35:46 +00:00
|
|
|
if (RTA_ALIGN(rta->rta_len) + len > maxlen) {
|
2002-11-10 01:33:55 +00:00
|
|
|
return -1;
|
2002-11-28 12:35:46 +00:00
|
|
|
}
|
2002-11-10 01:33:55 +00:00
|
|
|
subrta = (struct rtattr*)(((char*)rta) + RTA_ALIGN(rta->rta_len));
|
|
|
|
subrta->rta_type = type;
|
|
|
|
subrta->rta_len = len;
|
|
|
|
memcpy(RTA_DATA(subrta), &data, 4);
|
|
|
|
rta->rta_len = NLMSG_ALIGN(rta->rta_len) + len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int rta_addattr_l(struct rtattr *rta, int maxlen, int type, void *data, int alen)
|
|
|
|
{
|
|
|
|
struct rtattr *subrta;
|
|
|
|
int len = RTA_LENGTH(alen);
|
|
|
|
|
2002-11-28 12:35:46 +00:00
|
|
|
if (RTA_ALIGN(rta->rta_len) + len > maxlen) {
|
2002-11-10 01:33:55 +00:00
|
|
|
return -1;
|
2002-11-28 12:35:46 +00:00
|
|
|
}
|
2002-11-10 01:33:55 +00:00
|
|
|
subrta = (struct rtattr*)(((char*)rta) + RTA_ALIGN(rta->rta_len));
|
|
|
|
subrta->rta_type = type;
|
|
|
|
subrta->rta_len = len;
|
|
|
|
memcpy(RTA_DATA(subrta), data, alen);
|
|
|
|
rta->rta_len = NLMSG_ALIGN(rta->rta_len) + len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len)
|
|
|
|
{
|
|
|
|
while (RTA_OK(rta, len)) {
|
2002-11-28 12:35:46 +00:00
|
|
|
if (rta->rta_type <= max) {
|
2002-11-10 01:33:55 +00:00
|
|
|
tb[rta->rta_type] = rta;
|
2002-11-28 12:35:46 +00:00
|
|
|
}
|
2002-11-10 01:33:55 +00:00
|
|
|
rta = RTA_NEXT(rta,len);
|
|
|
|
}
|
2002-11-28 12:35:46 +00:00
|
|
|
if (len) {
|
2006-10-27 09:02:31 +00:00
|
|
|
bb_error_msg("deficit %d, rta_len=%d!", len, rta->rta_len);
|
2002-11-28 12:35:46 +00:00
|
|
|
}
|
2002-11-10 01:33:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|