loopback-setup.c revision 58a489c2b3628f3003d3901537bec8b5e6c1b7bd
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include "util.h"
#include "macro.h"
#include "loopback-setup.h"
#include "socket-util.h"
#include "sd-rtnl.h"
#include "rtnl-util.h"
/* this is hardcoded in the kernel, so don't look it up */
#define LOOPBACK_IFINDEX 1
int r;
if (r < 0)
return r;
if (r < 0)
return r;
if (r < 0)
return r;
return 0;
}
static int check_loopback(void) {
int r;
union {
struct sockaddr_in in;
} sa = {
};
/* If we failed to set up the loop back device, check whether
* it might already be set up */
if (fd < 0)
return -errno;
r = 1;
else
return r;
}
int loopback_setup(void) {
int r;
r = sd_rtnl_open(&rtnl, 0);
if (r < 0)
return r;
r = start_loopback(rtnl);
if (r == -EPERM) {
if (check_loopback() < 0)
} else if (r < 0)
return log_warning_errno(r, "Failed to configure loopback device: %m");
return 0;
}