ifupdown-ng/libifupdown/interface.c

217 lines
4.8 KiB
C
Raw Normal View History

/*
* libifupdown/interface.c
* Purpose: interface management
*
* 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.
*/
#include <stdio.h>
#include <string.h>
#include "libifupdown/interface.h"
bool
lif_address_parse(struct lif_address *address, const char *presentation)
{
char buf[512], *netmask_p;
strlcpy(buf, presentation, sizeof buf);
address->domain = strchr(buf, ':') != NULL ? AF_INET6 : AF_INET;
netmask_p = strrchr(buf, '/');
if (netmask_p != NULL)
{
*netmask_p++ = '\0';
address->netmask = strtol(netmask_p, NULL, 10);
}
else
address->netmask = 0;
return !!inet_pton(address->domain, buf, address->addr_buf);
}
bool
lif_address_unparse(const struct lif_address *address, char *buf, size_t buflen, bool with_netmask)
{
char workbuf[512] = {};
if (!inet_ntop(address->domain, address->addr_buf, workbuf, sizeof workbuf))
return false;
if (!with_netmask || !address->netmask)
{
strlcpy(buf, workbuf, buflen);
return true;
}
snprintf(buf, buflen, "%s/%zu", workbuf, address->netmask);
return true;
}
void
lif_interface_init(struct lif_interface *interface, const char *ifname)
{
memset(interface, '\0', sizeof *interface);
interface->ifname = strdup(ifname);
lif_dict_add(&interface->vars, "use", strdup("link"));
}
bool
lif_interface_address_add(struct lif_interface *interface, const char *address)
{
struct lif_address *addr = calloc(1, sizeof *addr);
if (!lif_address_parse(addr, address))
{
free(addr);
return false;
}
if (!interface->is_static)
{
lif_dict_add(&interface->vars, "use", strdup("static"));
interface->is_static = true;
}
lif_dict_add(&interface->vars, "address", addr);
return true;
}
void
lif_interface_address_delete(struct lif_interface *interface, const char *address)
{
struct lif_node *iter, *iter_next;
struct lif_address addr;
if (!lif_address_parse(&addr, address))
return;
LIF_DICT_FOREACH_SAFE(iter, iter_next, &interface->vars)
{
struct lif_dict_entry *entry = iter->data;
if (strcmp(entry->key, "address"))
continue;
struct lif_address *entry_addr = entry->data;
char addr_buf[512] = {};
if (!lif_address_unparse(entry_addr, addr_buf, sizeof addr_buf, addr.netmask != 0))
continue;
if (strcmp(addr_buf, address))
continue;
lif_dict_delete_entry(&interface->vars, entry);
free(entry_addr);
}
}
void
lif_interface_fini(struct lif_interface *interface)
{
struct lif_node *iter, *iter_next;
LIF_DICT_FOREACH_SAFE(iter, iter_next, &interface->vars)
{
struct lif_dict_entry *entry = iter->data;
free(entry->data);
lif_dict_delete_entry(&interface->vars, entry);
}
free(interface->ifname);
}
void
lif_interface_collection_init(struct lif_dict *collection)
{
struct lif_interface *if_lo;
memset(collection, '\0', sizeof *collection);
/* always enable loopback interface as part of a collection */
if_lo = lif_interface_collection_find(collection, "lo");
2020-07-26 08:59:15 +00:00
if_lo->is_auto = true;
lif_dict_add(&if_lo->vars, "use", strdup("loopback"));
}
void
lif_interface_collection_fini(struct lif_dict *collection)
{
struct lif_node *iter, *iter_next;
LIF_DICT_FOREACH_SAFE(iter, iter_next, collection)
{
struct lif_dict_entry *entry = iter->data;
struct lif_interface *iface = entry->data;
lif_interface_fini(iface);
free(iface);
lif_dict_delete_entry(collection, entry);
}
}
struct lif_interface *
lif_interface_collection_find(struct lif_dict *collection, const char *ifname)
{
struct lif_dict_entry *entry = lif_dict_find(collection, ifname);
if (entry == NULL)
{
struct lif_interface *iface = calloc(1, sizeof *iface);
lif_interface_init(iface, ifname);
lif_dict_add(collection, ifname, iface);
return iface;
}
return entry->data;
}
struct lif_interface *
lif_interface_collection_upsert(struct lif_dict *collection, struct lif_interface *interface)
{
struct lif_dict_entry *entry = lif_dict_find(collection, interface->ifname);
if (entry == NULL)
{
lif_dict_add(collection, interface->ifname, interface);
return interface;
}
if (entry->data == interface)
return interface;
lif_interface_collection_delete(collection, entry->data);
lif_dict_add(collection, interface->ifname, interface);
return interface;
}
void
lif_interface_collection_delete(struct lif_dict *collection, struct lif_interface *interface)
{
struct lif_dict_entry *entry = lif_dict_find(collection, interface->ifname);
if (entry == NULL)
return;
lif_interface_fini(interface);
free(interface);
lif_dict_delete_entry(collection, entry);
}