summaryrefslogtreecommitdiffhomepage
path: root/config.c
blob: 99adda1a0a66943e668aafdd87313c7fe4c8f85f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#include <string.h>
#include <stdlib.h>
#include <stdio.h>

#include <sys/types.h>
#include <sys/socket.h>
#include <net/ethernet.h>

#include "netifd.h"
#include "interface.h"

struct uci_context *uci_ctx;
struct uci_package *uci_network;
bool config_init = false;

static void
config_parse_interface(struct uci_section *s)
{
	struct interface *iface;
	const char *type;

	DPRINTF("Create interface '%s'\n", s->e.name);

	iface = alloc_interface(s->e.name);
	type = uci_lookup_option_string(uci_ctx, s, "type");

	if (!type)
		type = "";

	if (!strcmp(type, "bridge"))
		interface_attach_bridge(iface, s);
}

enum {
	SDEV_NAME,
	SDEV_TYPE,
	SDEV_MTU,
	SDEV_MACADDR,
	SDEV_TXQUEUELEN,
	__SDEV_MAX,
};

struct uci_parse_option dev_opts[__SDEV_MAX] = {
	[SDEV_NAME] = { "name", UCI_TYPE_STRING },
	[SDEV_TYPE] = { "type", UCI_TYPE_STRING },
	[SDEV_MTU] = { "mtu", UCI_TYPE_STRING },
	[SDEV_MACADDR] = { "macaddr", UCI_TYPE_STRING },
	[SDEV_TXQUEUELEN] = { "txqueuelen", UCI_TYPE_STRING },
};

static bool
add_int_option(struct uci_option *o, unsigned int *dest)
{
	char *error = NULL;
	int val;

	if (!o)
		return false;

	val = strtoul(o->v.string, &error, 0);
	if (error && *error)
		return false;

	*dest = val;
	return true;
}

static void
config_init_device_settings(struct device *dev, struct uci_option **opts)
{
	struct ether_addr *ea;

	dev->flags = 0;

	if (add_int_option(opts[SDEV_MTU], &dev->mtu))
		dev->flags |= DEV_OPT_MTU;

	if (add_int_option(opts[SDEV_TXQUEUELEN], &dev->txqueuelen))
		dev->flags |= DEV_OPT_TXQUEUELEN;

	if (opts[SDEV_MACADDR]) {
		ea = ether_aton(opts[SDEV_MACADDR]->v.string);
		if (ea) {
			memcpy(dev->macaddr, ea, sizeof(dev->macaddr));
			dev->flags |= DEV_OPT_MACADDR;
		}
	}
}

void
config_init_devices(void)
{
	struct uci_element *e;
	struct device *dev;
	struct uci_option *opts[__SDEV_MAX];

	uci_foreach_element(&uci_network->sections, e) {
		struct uci_section *s = uci_to_section(e);

		if (strcmp(s->type, "device") != 0)
			continue;

		uci_parse_section(s, dev_opts, __SDEV_MAX, opts);
		if (!opts[SDEV_NAME])
			continue;

		dev = NULL;
		if (opts[SDEV_TYPE]) {
			const char *type = opts[SDEV_TYPE]->v.string;

			if (!strcmp(type, "bridge"))
				dev = bridge_create(opts[SDEV_NAME]->v.string, s);
		} else {
			dev = get_device(opts[SDEV_NAME]->v.string, true);
		}

		if (!dev)
			continue;

		config_init_device_settings(dev, opts);
		dev->config_hash = uci_hash_options(opts, __SDEV_MAX);
	}
}

void
config_init_interfaces(const char *name)
{
	struct uci_context *ctx;
	struct uci_package *p = NULL;
	struct uci_element *e;

	ctx = uci_alloc_context();
	uci_ctx = ctx;

	uci_set_confdir(ctx, "./config");

	if (uci_load(ctx, "network", &p)) {
		fprintf(stderr, "Failed to load network config\n");
		return;
	}

	uci_network = p;
	config_init = true;

	config_init_devices();

	uci_foreach_element(&p->sections, e) {
		struct uci_section *s = uci_to_section(e);

		if (name && strcmp(s->e.name, name) != 0)
			continue;

		if (!strcmp(s->type, "interface"))
			config_parse_interface(s);
	}
	config_init = false;

	start_pending_interfaces();
}