2011-07-25 12:00:57 +05:30
|
|
|
/* nl.c - low level netlink protocol functions
|
|
|
|
*
|
2014-03-13 00:55:07 +05:30
|
|
|
* Copyright (c) 2011-2014 Nicholas J. Kain <njkain at gmail dot com>
|
2011-07-25 12:00:57 +05:30
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* - Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2011-07-04 03:00:55 +05:30
|
|
|
#include <assert.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <arpa/inet.h>
|
2014-03-13 00:55:07 +05:30
|
|
|
#include <linux/rtnetlink.h>
|
2011-07-04 03:00:55 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
2014-03-31 02:32:48 +05:30
|
|
|
#include "nk/log.h"
|
2014-04-07 13:45:02 +05:30
|
|
|
#include "nk/io.h"
|
2011-07-04 03:00:55 +05:30
|
|
|
#include "nl.h"
|
|
|
|
|
2014-03-18 05:52:20 +05:30
|
|
|
int rtattr_assign(struct rtattr *attr, int type, void *data)
|
|
|
|
{
|
|
|
|
struct rtattr **tb = data;
|
|
|
|
if (type >= IFA_MAX)
|
|
|
|
return 0;
|
|
|
|
tb[type] = attr;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-13 00:55:07 +05:30
|
|
|
#define NLMSG_TAIL(nmsg) \
|
|
|
|
((struct rtattr *) (((uint8_t*) (nmsg)) + \
|
|
|
|
NLMSG_ALIGN((nmsg)->nlmsg_len)))
|
|
|
|
|
|
|
|
int nl_add_rtattr(struct nlmsghdr *n, size_t max_length, int type,
|
|
|
|
const void *data, size_t data_length)
|
|
|
|
{
|
2014-03-18 08:28:55 +05:30
|
|
|
size_t length = RTA_LENGTH(data_length);
|
2014-03-13 00:55:07 +05:30
|
|
|
|
|
|
|
if (NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(length) > max_length)
|
|
|
|
return -E2BIG;
|
|
|
|
|
2014-03-18 08:28:55 +05:30
|
|
|
struct rtattr *rta = NLMSG_TAIL(n);
|
2014-03-13 00:55:07 +05:30
|
|
|
rta->rta_type = type;
|
|
|
|
rta->rta_len = length;
|
|
|
|
memcpy(RTA_DATA(rta), data, data_length);
|
|
|
|
n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(length);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-15 12:14:43 +05:30
|
|
|
void nl_rtattr_parse(const struct nlmsghdr *nlh, size_t offset,
|
|
|
|
nl_rtattr_parse_fn workfn, void *data)
|
|
|
|
{
|
2014-03-18 05:32:22 +05:30
|
|
|
struct rtattr *attr =
|
|
|
|
(struct rtattr *)((char *)NLMSG_DATA(nlh) + NLMSG_ALIGN(offset));
|
|
|
|
size_t rtlen = nlh->nlmsg_len - NLMSG_HDRLEN - NLMSG_ALIGN(offset);
|
|
|
|
for (; RTA_OK(attr, rtlen); attr = RTA_NEXT(attr, rtlen)) {
|
2014-03-15 12:14:43 +05:30
|
|
|
if (workfn(attr, attr->rta_type, data) < 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-04 03:00:55 +05:30
|
|
|
ssize_t nl_recv_buf(int fd, char *buf, size_t blen)
|
|
|
|
{
|
|
|
|
struct sockaddr_nl addr;
|
|
|
|
struct iovec iov = {
|
|
|
|
.iov_base = buf,
|
|
|
|
.iov_len = blen,
|
|
|
|
};
|
|
|
|
struct msghdr msg = {
|
|
|
|
.msg_name = &addr,
|
|
|
|
.msg_namelen = sizeof addr,
|
|
|
|
.msg_iov = &iov,
|
|
|
|
.msg_iovlen = 1,
|
|
|
|
};
|
2014-03-15 14:05:07 +05:30
|
|
|
ssize_t ret;
|
2014-04-07 13:52:32 +05:30
|
|
|
ret = safe_recvmsg(fd, &msg, MSG_DONTWAIT);
|
2014-04-06 16:03:14 +05:30
|
|
|
if (ret < 0) {
|
2014-04-07 13:52:32 +05:30
|
|
|
if (errno == EAGAIN || errno == EWOULDBLOCK)
|
|
|
|
return 0;
|
|
|
|
log_error("%s: recvmsg failed: %s", __func__, strerror(errno));
|
|
|
|
return -1;
|
2011-07-04 03:00:55 +05:30
|
|
|
}
|
|
|
|
if (msg.msg_flags & MSG_TRUNC) {
|
2014-03-17 09:09:41 +05:30
|
|
|
log_error("%s: Buffer not long enough for message.", __func__);
|
2011-07-04 03:00:55 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (msg.msg_namelen != sizeof addr) {
|
2014-03-17 09:09:41 +05:30
|
|
|
log_error("%s: Response was not of the same address family.",
|
|
|
|
__func__);
|
2011-07-04 03:00:55 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-03-15 14:13:29 +05:30
|
|
|
int nl_foreach_nlmsg(char *buf, size_t blen, uint32_t seq, uint32_t portid,
|
2011-07-04 03:00:55 +05:30
|
|
|
nlmsg_foreach_fn pfn, void *fnarg)
|
|
|
|
{
|
|
|
|
const struct nlmsghdr *nlh = (const struct nlmsghdr *)buf;
|
|
|
|
|
|
|
|
assert(pfn);
|
2014-03-15 14:13:29 +05:30
|
|
|
for (;NLMSG_OK(nlh, blen); nlh = NLMSG_NEXT(nlh, blen)) {
|
2011-07-04 03:00:55 +05:30
|
|
|
// PortID should be zero for messages from the kernel.
|
2014-03-15 14:13:29 +05:30
|
|
|
if (nlh->nlmsg_pid && portid && nlh->nlmsg_pid != portid)
|
|
|
|
continue;
|
|
|
|
if (seq && nlh->nlmsg_seq != seq)
|
2011-07-04 03:00:55 +05:30
|
|
|
continue;
|
|
|
|
|
|
|
|
if (nlh->nlmsg_type >= NLMSG_MIN_TYPE) {
|
|
|
|
pfn(nlh, fnarg);
|
|
|
|
} else {
|
|
|
|
switch (nlh->nlmsg_type) {
|
|
|
|
case NLMSG_ERROR:
|
2014-03-17 09:09:41 +05:30
|
|
|
log_line("%s: Received a NLMSG_ERROR: %s",
|
|
|
|
__func__, strerror(nlmsg_get_error(nlh)));
|
2011-07-04 03:00:55 +05:30
|
|
|
return -1;
|
|
|
|
case NLMSG_DONE:
|
|
|
|
return 0;
|
|
|
|
case NLMSG_OVERRUN:
|
2014-03-17 09:09:41 +05:30
|
|
|
log_line("%s: Received a NLMSG_OVERRUN.", __func__);
|
2011-07-04 03:00:55 +05:30
|
|
|
case NLMSG_NOOP:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-16 14:40:21 +05:30
|
|
|
static int nl_sendgetlink_do(int fd, int seq, int ifindex, int by_ifindex)
|
2014-03-15 09:24:21 +05:30
|
|
|
{
|
|
|
|
char nlbuf[512];
|
|
|
|
struct nlmsghdr *nlh = (struct nlmsghdr *)nlbuf;
|
2014-03-16 14:40:21 +05:30
|
|
|
struct ifinfomsg *ifinfomsg;
|
2014-03-15 09:24:21 +05:30
|
|
|
|
|
|
|
memset(nlbuf, 0, sizeof nlbuf);
|
2014-03-17 15:44:14 +05:30
|
|
|
nlh->nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
|
2014-03-15 09:24:21 +05:30
|
|
|
nlh->nlmsg_type = RTM_GETLINK;
|
|
|
|
nlh->nlmsg_flags = NLM_F_REQUEST | NLM_F_ROOT;
|
2014-03-15 10:00:39 +05:30
|
|
|
nlh->nlmsg_seq = seq;
|
|
|
|
|
2014-03-16 14:40:21 +05:30
|
|
|
if (by_ifindex) {
|
|
|
|
ifinfomsg = NLMSG_DATA(nlh);
|
|
|
|
ifinfomsg->ifi_index = ifindex;
|
|
|
|
}
|
|
|
|
|
2014-03-15 10:00:39 +05:30
|
|
|
struct sockaddr_nl addr = {
|
|
|
|
.nl_family = AF_NETLINK,
|
|
|
|
};
|
2014-04-07 13:45:02 +05:30
|
|
|
ssize_t r = safe_sendto(fd, nlbuf, nlh->nlmsg_len, 0,
|
|
|
|
(struct sockaddr *)&addr, sizeof addr);
|
|
|
|
if (r < 0 || (size_t)r != nlh->nlmsg_len) {
|
|
|
|
if (r < 0)
|
|
|
|
log_error("%s: sendto socket failed: %s", __func__,
|
|
|
|
strerror(errno));
|
|
|
|
else
|
|
|
|
log_error("%s: sendto short write: %z < %zu", __func__, r,
|
|
|
|
nlh->nlmsg_len);
|
|
|
|
return -1;
|
2014-03-15 10:00:39 +05:30
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-16 14:40:21 +05:30
|
|
|
int nl_sendgetlinks(int fd, int seq)
|
|
|
|
{
|
|
|
|
return nl_sendgetlink_do(fd, seq, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int nl_sendgetlink(int fd, int seq, int ifindex)
|
|
|
|
{
|
|
|
|
return nl_sendgetlink_do(fd, seq, ifindex, 1);
|
|
|
|
}
|
|
|
|
|
2014-03-28 09:39:53 +05:30
|
|
|
static int nl_sendgetaddr_do(int fd, int seq, int ifindex, int by_ifindex,
|
|
|
|
int afamily, int by_afamily)
|
2014-03-15 10:00:39 +05:30
|
|
|
{
|
|
|
|
char nlbuf[512];
|
|
|
|
struct nlmsghdr *nlh = (struct nlmsghdr *)nlbuf;
|
2014-03-15 12:14:43 +05:30
|
|
|
struct ifaddrmsg *ifaddrmsg;
|
2014-03-15 10:00:39 +05:30
|
|
|
|
|
|
|
memset(nlbuf, 0, sizeof nlbuf);
|
2014-03-17 15:44:14 +05:30
|
|
|
nlh->nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
|
2014-03-15 10:00:39 +05:30
|
|
|
nlh->nlmsg_type = RTM_GETADDR;
|
|
|
|
nlh->nlmsg_flags = NLM_F_REQUEST | NLM_F_ROOT;
|
|
|
|
nlh->nlmsg_seq = seq;
|
2014-03-15 09:24:21 +05:30
|
|
|
|
2014-03-15 12:14:43 +05:30
|
|
|
ifaddrmsg = NLMSG_DATA(nlh);
|
2014-03-28 09:39:53 +05:30
|
|
|
if (by_afamily)
|
|
|
|
ifaddrmsg->ifa_family = afamily;
|
|
|
|
if (by_ifindex)
|
|
|
|
ifaddrmsg->ifa_index = ifindex;
|
2014-03-15 12:14:43 +05:30
|
|
|
|
2014-03-15 09:24:21 +05:30
|
|
|
struct sockaddr_nl addr = {
|
|
|
|
.nl_family = AF_NETLINK,
|
|
|
|
};
|
2014-04-07 13:45:02 +05:30
|
|
|
ssize_t r = safe_sendto(fd, nlbuf, nlh->nlmsg_len, 0,
|
|
|
|
(struct sockaddr *)&addr, sizeof addr);
|
|
|
|
if (r < 0 || (size_t)r != nlh->nlmsg_len) {
|
|
|
|
if (r < 0)
|
|
|
|
log_error("%s: sendto socket failed: %s", __func__,
|
|
|
|
strerror(errno));
|
|
|
|
else
|
|
|
|
log_error("%s: sendto short write: %z < %zu", __func__, r,
|
|
|
|
nlh->nlmsg_len);
|
|
|
|
return -1;
|
2014-03-15 09:24:21 +05:30
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-28 09:39:53 +05:30
|
|
|
int nl_sendgetaddrs(int fd, int seq)
|
|
|
|
{
|
|
|
|
return nl_sendgetaddr_do(fd, seq, 0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int nl_sendgetaddrs4(int fd, int seq)
|
|
|
|
{
|
|
|
|
return nl_sendgetaddr_do(fd, seq, 0, 0, AF_INET, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int nl_sendgetaddrs6(int fd, int seq)
|
|
|
|
{
|
|
|
|
return nl_sendgetaddr_do(fd, seq, 0, 0, AF_INET6, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int nl_sendgetaddr4(int fd, int seq, int ifindex)
|
|
|
|
{
|
|
|
|
return nl_sendgetaddr_do(fd, seq, ifindex, 1, AF_INET, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int nl_sendgetaddr6(int fd, int seq, int ifindex)
|
|
|
|
{
|
|
|
|
return nl_sendgetaddr_do(fd, seq, ifindex, 1, AF_INET6, 1);
|
|
|
|
}
|
|
|
|
|
2011-07-04 03:00:55 +05:30
|
|
|
int nl_open(int nltype, int nlgroup, int *nlportid)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
fd = socket(AF_NETLINK, SOCK_RAW, nltype);
|
2014-04-06 16:03:14 +05:30
|
|
|
if (fd < 0) {
|
2014-03-17 09:09:41 +05:30
|
|
|
log_error("%s: socket failed: %s", __func__, strerror(errno));
|
2011-07-04 03:00:55 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2014-04-06 16:03:14 +05:30
|
|
|
if (fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK) < 0) {
|
2014-03-17 09:09:41 +05:30
|
|
|
log_error("%s: Set non-blocking failed: %s",
|
|
|
|
__func__, strerror(errno));
|
2011-07-04 03:00:55 +05:30
|
|
|
goto err_close;
|
|
|
|
}
|
|
|
|
if (fcntl(fd, F_SETFD, FD_CLOEXEC)) {
|
2014-03-17 09:09:41 +05:30
|
|
|
log_error("%s: Set close-on-exec failed: %s",
|
|
|
|
__func__, strerror(errno));
|
2011-07-04 03:00:55 +05:30
|
|
|
goto err_close;
|
|
|
|
}
|
|
|
|
socklen_t al;
|
|
|
|
struct sockaddr_nl nlsock = {
|
|
|
|
.nl_family = AF_NETLINK,
|
|
|
|
.nl_groups = nlgroup,
|
|
|
|
};
|
2014-04-06 16:03:14 +05:30
|
|
|
if (bind(fd, (struct sockaddr *)&nlsock, sizeof nlsock) < 0) {
|
2014-03-17 09:09:41 +05:30
|
|
|
log_error("%s: bind to group failed: %s",
|
|
|
|
__func__, strerror(errno));
|
2011-07-04 03:00:55 +05:30
|
|
|
goto err_close;
|
|
|
|
}
|
|
|
|
al = sizeof nlsock;
|
2014-04-06 16:03:14 +05:30
|
|
|
if (getsockname(fd, (struct sockaddr *)&nlsock, &al) < 0) {
|
2014-03-17 09:09:41 +05:30
|
|
|
log_error("%s: getsockname failed: %s",
|
|
|
|
__func__, strerror(errno));
|
2011-07-04 03:00:55 +05:30
|
|
|
goto err_close;
|
|
|
|
}
|
|
|
|
if (al != sizeof nlsock) {
|
2014-03-17 09:09:41 +05:30
|
|
|
log_error("%s: Bound socket doesn't have right family size.",
|
|
|
|
__func__);
|
2011-07-04 03:00:55 +05:30
|
|
|
goto err_close;
|
|
|
|
}
|
|
|
|
if (nlsock.nl_family != AF_NETLINK) {
|
2014-03-17 09:09:41 +05:30
|
|
|
log_error("%s: Bound socket isn't AF_NETLINK.",
|
|
|
|
__func__);
|
2011-07-04 03:00:55 +05:30
|
|
|
goto err_close;
|
|
|
|
}
|
|
|
|
if (nlportid)
|
|
|
|
*nlportid = nlsock.nl_pid;
|
|
|
|
return fd;
|
|
|
|
err_close:
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|