summaryrefslogtreecommitdiffhomepage
path: root/interface.c
blob: d45f2d5120d0ed93b1e7d51b4a5e4a379e7c69c3 (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
166
167
168
169
#include <string.h>
#include <stdlib.h>
#include <stdio.h>

#include "netifd.h"
#include "ubus.h"

LIST_HEAD(interfaces);

static int interface_event(struct interface *iface, enum interface_event ev)
{
	if (!iface->state || !iface->state->event)
		return 0;

	return iface->state->event(iface, iface->state, ev);
}

static void
__set_interface_up(struct interface *iface)
{
	if (iface->up)
		return;

	if (claim_device(iface->main_dev.dev) < 0)
		return;

	if (interface_event(iface, IFEV_UP) < 0) {
		release_device(iface->main_dev.dev);
		return;
	}

	iface->up = true;
}

static void
__set_interface_down(struct interface *iface)
{
	if (!iface->up)
		return;

	iface->up = false;
	interface_event(iface, IFEV_DOWN);
	release_device(iface->main_dev.dev);
}

static void
interface_cb(struct device_user *dep, enum device_event ev)
{
	struct interface *iface;
	bool new_state;

	iface = container_of(dep, struct interface, main_dev);
	switch (ev) {
	case DEV_EVENT_ADD:
		new_state = true;
		break;
	case DEV_EVENT_REMOVE:
		new_state = false;
		break;
	default:
		return;
	}

	if (iface->active == new_state)
		return;

	iface->active = new_state;

	if (new_state) {
		if (iface->autostart)
			__set_interface_up(iface);
	} else
		__set_interface_down(iface);
}

struct interface *
alloc_interface(const char *name)
{
	struct interface *iface;

	iface = get_interface(name);
	if (iface)
		return iface;

	iface = calloc(1, sizeof(*iface));
	iface->main_dev.cb = interface_cb;
	iface->l3_iface = &iface->main_dev;
	strncpy(iface->name, name, sizeof(iface->name) - 1);
	list_add(&iface->list, &interfaces);
	netifd_ubus_add_interface(iface);

	return iface;
}

void
free_interface(struct interface *iface)
{
	netifd_ubus_remove_interface(iface);
	list_del(&iface->list);
	if (iface->state && iface->state->free)
		iface->state->free(iface, iface->state);
	free(iface);
}

struct interface *
get_interface(const char *name)
{
	struct interface *iface;

	list_for_each_entry(iface, &interfaces, list) {
		if (!strcmp(iface->name, name))
			return iface;
	}
	return NULL;
}

void
interface_remove_link(struct interface *iface, struct device *llif)
{
	struct device *dev = iface->main_dev.dev;

	if (dev && dev->hotplug_ops) {
		dev->hotplug_ops->del(dev, llif);
		return;
	}

	remove_device_user(&iface->main_dev);
}

int
interface_add_link(struct interface *iface, struct device *llif)
{
	struct device *dev = iface->main_dev.dev;

	if (dev && dev->hotplug_ops)
		return dev->hotplug_ops->add(dev, llif);

	if (iface->main_dev.dev)
		interface_remove_link(iface, NULL);

	add_device_user(&iface->main_dev, llif);

	return 0;
}

int
set_interface_up(struct interface *iface)
{
	iface->autostart = true;

	if (iface->up || !iface->active)
		return -1;

	__set_interface_up(iface);
	return 0;
}

int
set_interface_down(struct interface *iface)
{
	iface->autostart = false;

	if (!iface->up)
		return -1;

	__set_interface_down(iface);

	return 0;
}