networkd-route.c revision 4fb7242cbbed0d865eb343548b8f0ee0fee71d85
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2013 Tom Gundersen <teg@jklm.no>
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 "networkd.h"
#include "utf8.h"
#include "util.h"
#include "conf-parser.h"
#include "net-util.h"
if (section) {
if (route) {
return 0;
}
}
if (!route)
return -ENOMEM;
if (section) {
}
return 0;
}
if (!route)
return -ENOMEM;
return 0;
}
if (!route)
return;
}
}
int r;
if (r < 0) {
return r;
}
if (r < 0) {
return r;
}
if (route->dst_prefixlen) {
if (r < 0) {
return r;
}
if (r < 0) {
return r;
}
}
if (r < 0) {
return r;
}
if (r < 0) {
return r;
}
return 0;
}
int config_parse_gateway(const char *unit,
const char *filename,
unsigned line,
const char *section,
unsigned section_line,
const char *lvalue,
int ltype,
const char *rvalue,
void *data,
void *userdata) {
int r;
/* we are not in an Route section, so treat
* this as the special '0' section */
section_line = 0;
}
if (r < 0)
return r;
if (r < 0) {
"Route is invalid, ignoring assignment: %s", route);
return 0;
}
n = NULL;
return 0;
}
int config_parse_destination(const char *unit,
const char *filename,
unsigned line,
const char *section,
unsigned section_line,
const char *lvalue,
int ltype,
const char *rvalue,
void *data,
void *userdata) {
const char *e;
int r;
if (r < 0)
return r;
/* address */
if (e) {
if (!address)
return log_oom();
} else {
if (!address)
return log_oom();
}
if (r < 0) {
"Destination is invalid, ignoring assignment: %s", address);
return 0;
}
/* prefixlen */
if (e) {
unsigned i;
r = safe_atou(e + 1, &i);
if (r < 0) {
"Route destination prefix length is invalid, "
"ignoring assignment: %s", e + 1);
return 0;
}
n->dst_prefixlen = (unsigned char) i;
} else {
switch (n->family) {
case AF_INET:
n->dst_prefixlen = 32;
break;
case AF_INET6:
n->dst_prefixlen = 128;
break;
}
}
n = NULL;
return 0;
}