summaryrefslogtreecommitdiff
path: root/interface-ip.c
blob: d2e1461cfa8cca291bd8a785775a3ed745496163 (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
160
161
162
163
164
165
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>

#include <arpa/inet.h>

#include "netifd.h"
#include "device.h"
#include "interface.h"
#include "interface-ip.h"
#include "proto.h"
#include "ubus.h"
#include "system.h"

static int
addr_cmp(const void *k1, const void *k2, void *ptr)
{
	return memcmp(k1, k2, sizeof(struct device_addr) -
		      offsetof(struct device_addr, mask));
}

static int
route_cmp(const void *k1, const void *k2, void *ptr)
{
	return memcmp(k1, k2, sizeof(struct device_route) -
		      offsetof(struct device_route, mask));
}

static void
interface_update_proto_addr(struct vlist_tree *tree,
			    struct vlist_node *node_new,
			    struct vlist_node *node_old)
{
	struct interface *iface;
	struct device *dev;
	struct device_addr *addr;

	iface = container_of(tree, struct interface, proto_addr);
	dev = iface->l3_dev->dev;

	if (node_old) {
		addr = container_of(node_old, struct device_addr, node);
		if (!(addr->flags & DEVADDR_EXTERNAL))
			system_del_address(dev, addr);
		free(addr);
	}

	if (node_new) {
		addr = container_of(node_new, struct device_addr, node);
		if (!(addr->flags & DEVADDR_EXTERNAL))
			system_add_address(dev, addr);
	}
}

static void
interface_update_proto_route(struct vlist_tree *tree,
			     struct vlist_node *node_new,
			     struct vlist_node *node_old)
{
	struct interface *iface;
	struct device *dev;
	struct device_route *route;

	iface = container_of(tree, struct interface, proto_route);
	dev = iface->l3_dev->dev;

	if (node_old) {
		route = container_of(node_old, struct device_route, node);
		if (!(route->flags & DEVADDR_EXTERNAL))
			system_del_route(dev, route);
		free(route);
	}

	if (node_new) {
		route = container_of(node_new, struct device_route, node);
		if (!(route->flags & DEVADDR_EXTERNAL))
			system_add_route(dev, route);
	}
}

static void
interface_clear_dns_servers(struct interface *iface)
{
	struct dns_server *s, *tmp;

	list_for_each_entry_safe(s, tmp, &iface->proto_dns_servers, list) {
		list_del(&s->list);
		free(s);
	}
}

static void
interface_clear_dns_search(struct interface *iface)
{
	struct dns_search_domain *s, *tmp;

	list_for_each_entry_safe(s, tmp, &iface->proto_dns_search, list) {
		list_del(&s->list);
		free(s);
	}
}

void
interface_clear_dns(struct interface *iface)
{
	interface_clear_dns_servers(iface);
	interface_clear_dns_search(iface);
}

void
interface_write_resolv_conf(void)
{
	struct interface *iface;
	struct dns_server *s;
	struct dns_search_domain *d;
	char *path = alloca(strlen(resolv_conf) + 5);
	const char *str;
	char buf[32];
	FILE *f;

	sprintf(path, "%s.tmp", resolv_conf);
	unlink(path);
	f = fopen(path, "w");
	if (!f) {
		D(INTERFACE, "Failed to open %s for writing\n", path);
		return;
	}

	vlist_for_each_element(&interfaces, iface, node) {
		if (iface->state != IFS_UP)
			continue;

		if (list_empty(&iface->proto_dns_search) &&
		    list_empty(&iface->proto_dns_servers))
			continue;

		fprintf(f, "# Interface %s\n", iface->name);
		list_for_each_entry(s, &iface->proto_dns_servers, list) {
			str = inet_ntop(s->af, &s->addr, buf, sizeof(buf));
			if (!str)
				continue;

			fprintf(f, "nameserver %s\n", str);
		}

		list_for_each_entry(d, &iface->proto_dns_search, list) {
			fprintf(f, "search %s\n", d->name);
		}
	}
	fclose(f);
	if (rename(path, resolv_conf) < 0) {
		D(INTERFACE, "Failed to replace %s\n", resolv_conf);
		unlink(path);
	}
}

void
interface_ip_init(struct interface *iface)
{
	vlist_init(&iface->proto_route, route_cmp, interface_update_proto_route,
		   struct device_route, node, mask);
	vlist_init(&iface->proto_addr, addr_cmp, interface_update_proto_addr,
		   struct device_addr, node, mask);
}