networkd-address.c revision cf6a8911738fe2635a5210769d5348b05b166691
/*-*- 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 (address) {
return 0;
}
}
if (!address)
return -ENOMEM;
if (section) {
}
return 0;
}
if (!address)
return -ENOMEM;
return 0;
}
if (!address)
return;
}
}
int r;
if (r < 0) {
log_error("Could not allocate RTM_DELADDR message: %s",
strerror(-r));
return r;
}
if (r < 0) {
return r;
}
if (r < 0) {
log_error("Could not append IFA_LOCAL attribute: %s",
strerror(-r));
return r;
}
if (r < 0) {
return r;
}
return 0;
}
int r;
if (r < 0) {
log_error("Could not allocate RTM_NEWADDR message: %s",
strerror(-r));
return r;
}
if (r < 0) {
return r;
}
if (r < 0) {
return r;
}
if (r < 0) {
return r;
}
if (r < 0) {
log_error("Could not append IFA_LOCAL attribute: %s",
strerror(-r));
return r;
}
if (r < 0) {
log_error("Could not append IFA_BROADCAST attribute: %s",
strerror(-r));
return r;
}
}
if (r < 0) {
log_error("Could not append IFA_LABEL attribute: %s",
strerror(-r));
return r;
}
}
if (r < 0) {
return r;
}
return 0;
}
int config_parse_dns(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;
r = address_new_dynamic(&n);
if (r < 0)
return r;
if (r < 0) {
"DNS address is invalid, ignoring assignment: %s", rvalue);
return 0;
}
*dns = n;
n = NULL;
return 0;
}
int config_parse_broadcast(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;
if (r < 0)
return r;
if (r < 0) {
"Broadcast is invalid, ignoring assignment: %s", address);
return 0;
}
n = NULL;
return 0;
}
int config_parse_address(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;
/* we are not in an Address section, so treat
* this as the special '0' section */
section_line = 0;
}
if (r < 0)
return r;
/* prefixlen */
if (e) {
unsigned i;
r = safe_atou(e + 1, &i);
if (r < 0) {
"Interface prefix length is invalid, "
"ignoring assignment: %s", e + 1);
return 0;
}
n->prefixlen = (unsigned char) i;
if (!address)
return log_oom();
} else {
if (!address)
return log_oom();
}
if (r < 0) {
"Address is invalid, ignoring assignment: %s", address);
return 0;
}
n = NULL;
return 0;
}
int config_parse_label(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) {
char *label;
int r;
if (r < 0)
return r;
if (!label)
return log_oom();
"Interface label is not ASCII clean or is too"
" long, ignoring assignment: %s", rvalue);
return 0;
}
if (*label)
else {
}
n = NULL;
return 0;
}