ifupdown-ng/libifupdown/interface-file.c

239 lines
6.1 KiB
C
Raw Normal View History

2020-07-19 00:02:25 +00:00
/*
* libifupdown/interface-file.h
* Purpose: /etc/network/interfaces parser
*
* Copyright (c) 2020 Ariadne Conill <ariadne@dereferenced.org>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* This software is provided 'as is' and without any warranty, express or
* implied. In no event shall the authors be liable for any damages arising
* from the use of this software.
*/
2020-07-19 00:48:49 +00:00
#include <ctype.h>
2020-07-19 00:02:25 +00:00
#include <stdio.h>
2020-07-19 00:48:49 +00:00
#include <string.h>
#include "libifupdown/libifupdown.h"
/* internally rewrite problematic ifupdown2 tokens to ifupdown-ng equivalents */
struct remap_token {
const char *token;
const char *alternative;
};
/* this list must be in alphabetical order for bsearch */
static const struct remap_token tokens[] = {
{"endpoint", "tunnel-remote"}, /* legacy ifupdown */
{"local", "tunnel-local"}, /* legacy ifupdown */
{"mode", "tunnel-mode"}, /* legacy ifupdown */
2020-08-19 12:03:48 +00:00
{"provider", "ppp-provider"}, /* legacy ifupdown, ifupdown2 */
{"ttl", "tunnel-ttl"}, /* legacy ifupdown */
{"tunnel-endpoint", "tunnel-remote"}, /* ifupdown2 */
{"tunnel-physdev", "tunnel-dev"}, /* ifupdown2 */
{"vrf", "vrf-member"}, /* ifupdown2 */
};
static int
token_cmp(const void *a, const void *b)
{
const char *key = a;
const struct remap_token *token = b;
return strcmp(key, token->token);
}
static char *
maybe_remap_token(const char *token)
{
const struct remap_token *tok = NULL;
static char tokbuf[4096];
tok = bsearch(token, tokens, ARRAY_SIZE(tokens), sizeof(*tokens), token_cmp);
strlcpy(tokbuf, tok != NULL ? tok->alternative : token, sizeof tokbuf);
return tokbuf;
}
2020-07-19 00:02:25 +00:00
bool
lif_interface_file_parse(struct lif_dict *collection, const char *filename)
{
lif_interface_collection_init(collection);
2020-07-19 00:48:49 +00:00
struct lif_interface *cur_iface = NULL;
FILE *f = fopen(filename, "r");
if (f == NULL)
return false;
char linebuf[4096];
while (lif_fgetline(linebuf, sizeof linebuf, f) != NULL)
{
char *bufp = linebuf;
char *token = lif_next_token(&bufp);
2020-07-19 00:48:49 +00:00
if (!*token || !isalpha(*token))
continue;
if (!strcmp(token, "source"))
{
char *source_filename = lif_next_token(&bufp);
2020-07-19 00:48:49 +00:00
if (!*source_filename)
goto parse_error;
2020-07-19 00:02:25 +00:00
2020-07-19 00:48:49 +00:00
if (!strcmp(filename, source_filename))
{
fprintf(stderr, "%s: attempt to source %s would create infinite loop\n",
filename, source_filename);
goto parse_error;
}
lif_interface_file_parse(collection, source_filename);
}
else if (!strcmp(token, "auto"))
{
char *ifname = lif_next_token(&bufp);
2020-07-19 00:48:49 +00:00
if (!*ifname && cur_iface == NULL)
goto parse_error;
else
{
cur_iface = lif_interface_collection_find(collection, ifname);
if (cur_iface == NULL)
goto parse_error;
}
cur_iface->is_auto = true;
}
else if (!strcmp(token, "iface"))
{
char *ifname = lif_next_token(&bufp);
2020-07-19 00:48:49 +00:00
if (!*ifname)
goto parse_error;
cur_iface = lif_interface_collection_find(collection, ifname);
if (cur_iface == NULL)
goto parse_error;
/* in original ifupdown config, we can have "inet loopback"
* or "inet dhcp" or such to designate hints. lets pick up
* those hints here.
*/
char *token = lif_next_token(&bufp);
while (*token)
{
if (!strcmp(token, "dhcp"))
{
cur_iface->is_dhcp = true;
2020-08-20 09:08:29 +00:00
lif_interface_use_executor(cur_iface, "dhcp");
}
2020-08-19 12:03:48 +00:00
else if (!strcmp(token, "ppp"))
{
2020-08-20 09:08:29 +00:00
lif_interface_use_executor(cur_iface, "ppp");
2020-08-19 12:03:48 +00:00
}
else if (!strcmp(token, "inherits"))
{
token = lif_next_token(&bufp);
if (!*token)
{
fprintf(stderr, "%s: inherits without interface\n", filename);
goto parse_error;
}
if (!lif_interface_collection_inherit(cur_iface, collection, token))
{
fprintf(stderr, "%s: could not inherit %s\n", filename, token);
goto parse_error;
}
}
token = lif_next_token(&bufp);
}
2020-07-19 00:48:49 +00:00
}
else if (!strcmp(token, "use"))
{
char *executor = lif_next_token(&bufp);
if (cur_iface == NULL)
{
fprintf(stderr, "%s: use '%s' without interface\n", filename, executor);
goto parse_error;
}
/* pass requires as compatibility env vars to appropriate executors (bridge, bond) */
if (!strcmp(executor, "dhcp"))
cur_iface->is_dhcp = true;
else if (!strcmp(executor, "bridge"))
cur_iface->is_bridge = true;
else if (!strcmp(executor, "bond"))
cur_iface->is_bond = true;
else if (!strcmp(executor, "link"))
continue;
2020-08-20 09:08:29 +00:00
lif_interface_use_executor(cur_iface, executor);
}
else if (!strcmp(token, "inherit"))
{
token = lif_next_token(&bufp);
if (!*token)
{
fprintf(stderr, "%s: inherits without interface\n", filename);
goto parse_error;
}
if (!lif_interface_collection_inherit(cur_iface, collection, token))
{
fprintf(stderr, "%s: could not inherit %s\n", filename, token);
goto parse_error;
}
}
2020-07-19 00:48:49 +00:00
else if (!strcmp(token, "address"))
{
char *addr = lif_next_token(&bufp);
2020-07-19 00:48:49 +00:00
if (cur_iface == NULL)
{
fprintf(stderr, "%s: address '%s' without interface\n", filename, addr);
goto parse_error;
}
lif_interface_address_add(cur_iface, addr);
}
else if (cur_iface != NULL)
{
token = maybe_remap_token(token);
2020-07-19 00:48:49 +00:00
lif_dict_add(&cur_iface->vars, token, strdup(bufp));
/* Check if token looks like <word1>-<word*> and assume <word1> is an addon */
char *word_end = strchr(token, '-');
2020-08-20 09:08:29 +00:00
if (word_end != NULL)
{
/* Copy word1 to not mangle *token */
char *addon = strndup(token, word_end - token);
2020-08-20 09:08:29 +00:00
lif_interface_use_executor(cur_iface, addon);
free(addon);
/* pass requires as compatibility env vars to appropriate executors (bridge, bond) */
if (!strcmp(addon, "dhcp"))
cur_iface->is_dhcp = true;
else if (!strcmp(addon, "bridge"))
cur_iface->is_bridge = true;
else if (!strcmp(addon, "bond"))
cur_iface->is_bond = true;
}
2020-07-19 00:48:49 +00:00
}
}
fclose(f);
2020-07-19 00:02:25 +00:00
return true;
2020-07-19 00:48:49 +00:00
parse_error:
fprintf(stderr, "libifupdown: %s: failed to parse line \"%s\"\n",
filename, linebuf);
fclose(f);
return false;
2020-07-19 00:02:25 +00:00
}