conf-parser.c revision 4d7213b2747ddd87002f970ccc60b1a9ab637136
/*-*- 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 <stdio.h>
#include <errno.h>
#include <assert.h>
#include <stdlib.h>
#include "conf-parser.h"
#include "util.h"
#include "macro.h"
#include "strv.h"
#include "log.h"
#include "utf8.h"
#include "path-util.h"
#include "set.h"
#include "exit-status.h"
#include "sd-messages.h"
const char *config_file, unsigned config_line,
int r;
if (r < 0)
return log_oom();
if (unit)
r = log_struct_internal(level,
"CONFIG_FILE=%s", config_file,
"CONFIG_LINE=%u", config_line,
NULL);
else
r = log_struct_internal(level,
"CONFIG_FILE=%s", config_file,
"CONFIG_LINE=%u", config_line,
NULL);
return r;
}
void *table,
const char *section,
const char *lvalue,
int *ltype,
void **data,
void *userdata) {
ConfigTableItem *t;
continue;
continue;
return 1;
}
return 0;
}
void *table,
const char *section,
const char *lvalue,
int *ltype,
void **data,
void *userdata) {
const ConfigPerfItem *p;
if (!section)
else {
char *key;
if (!key)
return -ENOMEM;
}
if (!p)
return 0;
return 1;
}
/* Run the user supplied parser for an assignment */
static int next_assignment(const char *unit,
const char *filename,
unsigned line,
void *table,
const char *section,
unsigned section_line,
const char *lvalue,
const char *rvalue,
bool relaxed,
void *userdata) {
int ltype = 0;
int r;
if (r < 0)
return r;
if (r > 0) {
if (func)
return 0;
}
/* Warn about unknown non-extension fields. */
return 0;
}
/* Parse a variable assignment line */
static int parse_line(const char* unit,
const char *filename,
unsigned line,
const char *sections,
void *table,
bool relaxed,
bool allow_include,
char **section,
unsigned *section_line,
char *l,
void *userdata) {
char *e;
assert(l);
l = strstrip(l);
if (!*l)
return 0;
return 0;
if (startswith(l, ".include ")) {
/* .includes are a bad idea, we only support them here
* for historical reasons. They create cyclic include
* problems and make it difficult to detect
* configuration file changes with an easy
* stat(). Better approaches, such as .d/ drop-in
* snippets exist.
*
* Support for them should be eventually removed. */
if (!allow_include) {
".include not allowed here. Ignoring.");
return 0;
}
if (!fn)
return -ENOMEM;
}
if (*l == '[') {
size_t k;
char *n;
k = strlen(l);
assert(k > 0);
if (l[k-1] != ']') {
"Invalid section header '%s'", l);
return -EBADMSG;
}
if (!n)
return -ENOMEM;
if (!relaxed)
"Unknown section '%s'. Ignoring.", n);
free(n);
*section_line = 0;
} else {
*section = n;
*section_line = line;
}
return 0;
}
if (!relaxed)
"Assignment outside of section. Ignoring.");
return 0;
}
e = strchr(l, '=');
if (!e) {
return -EBADMSG;
}
*e = 0;
e++;
return next_assignment(unit,
line,
*section,
strstrip(l),
strstrip(e),
userdata);
}
/* Go through the file and parse each line */
int config_parse(const char *unit,
const char *filename,
FILE *f,
const char *sections,
void *table,
bool relaxed,
bool allow_include,
void *userdata) {
unsigned line = 0, section_line = 0;
int r;
if (!f) {
if (!f) {
return -errno;
}
}
while (!feof(f)) {
bool escaped = false;
if (!fgets(l, sizeof(l), f)) {
if (feof(f))
break;
return -errno;
}
truncate_nl(l);
if (continuation) {
c = strappend(continuation, l);
if (!c)
return -ENOMEM;
continuation = NULL;
p = c;
} else
p = l;
for (e = p; *e; e++) {
if (escaped)
escaped = false;
else if (*e == '\\')
escaped = true;
}
if (escaped) {
*(e-1) = ' ';
if (c)
continuation = c;
else {
continuation = strdup(l);
if (!continuation)
return -ENOMEM;
}
continue;
}
r = parse_line(unit,
++line,
§ion,
p,
userdata);
free(c);
if (r < 0)
return r;
}
return 0;
}
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) \
"Failed to parse %s value, ignoring: %s", \
\
return 0; \
}
DEFINE_PARSER(int, int, safe_atoi)
DEFINE_PARSER(long, long, safe_atoli)
DEFINE_PARSER(unsigned, unsigned, safe_atou)
DEFINE_PARSER(double, double, safe_atod)
int config_parse_iec_size(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) {
off_t o;
int r;
log_syntax(unit, LOG_ERR, filename, line, r < 0 ? -r : ERANGE, "Failed to parse size value, ignoring: %s", rvalue);
return 0;
}
return 0;
}
int config_parse_si_size(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) {
off_t o;
int r;
log_syntax(unit, LOG_ERR, filename, line, r < 0 ? -r : ERANGE, "Failed to parse size value, ignoring: %s", rvalue);
return 0;
}
return 0;
}
int config_parse_iec_off(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 0;
}
int config_parse_bool(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 k;
bool *b = data;
k = parse_boolean(rvalue);
if (k < 0) {
"Failed to parse boolean value, ignoring: %s", rvalue);
return 0;
}
*b = !!k;
return 0;
}
int config_parse_string(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 **s = data;
char *n;
if (!n)
return log_oom();
if (!utf8_is_valid(n)) {
"String is not UTF-8 clean, ignoring assignment: %s", rvalue);
free(n);
return 0;
}
free(*s);
if (*n)
*s = n;
else {
free(n);
*s = NULL;
}
return 0;
}
int config_parse_path(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 **s = data;
char *n;
int offset;
if (!utf8_is_valid(rvalue)) {
"Path is not UTF-8 clean, ignoring assignment: %s", rvalue);
return 0;
}
"Not an absolute path, ignoring: %s", rvalue);
return 0;
}
if (!n)
return log_oom();
free(*s);
*s = n;
return 0;
}
int config_parse_strv(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) {
size_t l;
int r;
char **empty;
/* Empty assignment resets the list. As a special rule
* we actually fill in a real empty array here rather
* than NULL, since some code wants to know if
* something was set at all... */
if (!empty)
return log_oom();
return 0;
}
_cleanup_free_ char *n;
n = cunescape_length(w, l);
if (!n)
return log_oom();
if (!utf8_is_valid(n)) {
"String is not UTF-8 clean, ignoring: %s", rvalue);
continue;
}
r = strv_extend(sv, n);
if (r < 0)
return log_oom();
}
return 0;
}
int config_parse_path_strv(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) {
size_t l;
int r;
/* Empty assignment resets the list */
return 0;
}
_cleanup_free_ char *n;
int offset;
n = strndup(w, l);
if (!n)
return log_oom();
if (!utf8_is_valid(n)) {
"Path is not UTF-8 clean, ignoring assignment: %s", rvalue);
continue;
}
if (!path_is_absolute(n + offset)) {
"Not an absolute path, ignoring: %s", rvalue);
continue;
}
r = strv_extend(sv, n);
if (r < 0)
return log_oom();
}
return 0;
}
int config_parse_mode(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) {
long l;
char *x = NULL;
errno = 0;
"Failed to parse mode value, ignoring: %s", rvalue);
return 0;
}
if (l < 0000 || l > 07777) {
"Mode value out of range, ignoring: %s", rvalue);
return 0;
}
*m = (mode_t) l;
return 0;
}
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 *o = data, x;
if (x < 0) {
"Failed to parse log facility, ignoring: %s", rvalue);
return 0;
}
*o = (x << 3) | LOG_PRI(*o);
return 0;
}
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 *o = data, x;
x = log_level_from_string(rvalue);
if (x < 0) {
"Failed to parse log level, ignoring: %s", rvalue);
return 0;
}
*o = (*o & LOG_FACMASK) | x;
return 0;
}
int config_parse_set_status(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 *w;
size_t l;
char *state;
int r;
/* Empty assignment resets the list */
return 0;
}
int val;
char *temp;
if (!temp)
return log_oom();
if (r < 0) {
if (val > 0) {
if (r < 0)
return log_oom();
if (r < 0) {
"Unable to store: %s", w);
return r;
}
} else {
"Failed to parse value, ignoring: %s", w);
return 0;
}
} else {
"Value %d is outside range 0-255, ignoring", val);
else {
if (r < 0)
return log_oom();
if (r < 0) {
"Unable to store: %s", w);
return r;
}
}
}
}
return 0;
}