loopback-setup.c revision e99e38bbdcca3fe5956823bdb3d38544ccf93221
/*-*- Mode: C; c-basic-offset: 8 -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
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.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <linux/rtnetlink.h>
#include "util.h"
#include "macro.h"
#include "loopback-setup.h"
enum {
REQUEST_NONE = 0,
REQUEST_ADDRESS_IPV4 = 1,
REQUEST_ADDRESS_IPV6 = 2,
REQUEST_FLAGS = 4,
REQUEST_ALL = 7
};
#define NLMSG_TAIL(nmsg) \
static int add_rtattr(struct nlmsghdr *n, size_t max_length, int type, const void *data, size_t data_length) {
return -E2BIG;
rta = NLMSG_TAIL(n);
return 0;
}
static ssize_t sendto_loop(int fd, const void *buf, size_t buf_len, int flags, const struct sockaddr *sa, socklen_t sa_len) {
for (;;) {
ssize_t l;
return l;
return -errno;
}
}
static ssize_t recvfrom_loop(int fd, void *buf, size_t buf_len, int flags, struct sockaddr *sa, socklen_t *sa_len) {
for (;;) {
ssize_t l;
return l;
return -errno;
}
}
union {
struct sockaddr_nl nl;
} sa;
union {
NLMSG_ALIGN(sizeof(struct ifaddrmsg)) +
RTA_LENGTH(sizeof(struct in6_addr))];
} request;
int r;
if ((r = add_rtattr(&request.header, sizeof(request), IFA_LOCAL, &ipv4_address, sizeof(ipv4_address))) < 0)
return r;
return -errno;
if ((r = add_rtattr(&request.header, sizeof(request), IFA_LOCAL, &in6addr_loopback, sizeof(in6addr_loopback))) < 0)
return r;
return -errno;
return 0;
}
union {
struct sockaddr_nl nl;
} sa;
union {
NLMSG_ALIGN(sizeof(struct ifinfomsg))];
} request;
return -errno;
return 0;
}
static int read_response(int fd) {
union {
struct sockaddr_nl nl;
} sa;
union {
NLMSG_ALIGN(sizeof(struct nlmsgerr))];
} response;
ssize_t l;
return -errno;
return -EIO;
return 0;
return -EIO;
return 0;
return -EIO;
}
int loopback_setup(void) {
int r, if_loopback;
union {
struct sockaddr_nl nl;
struct sockaddr_storage storage;
} sa;
int requests = REQUEST_NONE;
int fd;
errno = 0;
return -errno;
r = -errno;
goto finish;
}
goto finish;
goto finish;
do {
if ((r = read_response(fd)) < 0)
goto finish;
requests |= r;
} while (requests != REQUEST_ALL);
r = 0;
if (r < 0)
if (fd >= 0)
return r;
}