bridge-vlan: add support for defining aliases for vlan ids
[project/netifd.git] / device.h
1 /*
2 * netifd - network interface daemon
3 * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2
7 * as published by the Free Software Foundation
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14 #ifndef __NETIFD_DEVICE_H
15 #define __NETIFD_DEVICE_H
16
17 #include <libubox/avl.h>
18 #include <libubox/safe_list.h>
19 #include <libubox/kvlist.h>
20 #include <netinet/in.h>
21
22 struct device;
23 struct device_type;
24 struct device_user;
25 struct device_hotplug_ops;
26 struct bridge_vlan;
27 struct interface;
28
29 typedef int (*device_state_cb)(struct device *, bool up);
30
31 enum {
32 DEV_ATTR_TYPE,
33 DEV_ATTR_MTU,
34 DEV_ATTR_MTU6,
35 DEV_ATTR_MACADDR,
36 DEV_ATTR_TXQUEUELEN,
37 DEV_ATTR_ENABLED,
38 DEV_ATTR_IPV6,
39 DEV_ATTR_PROMISC,
40 DEV_ATTR_RPFILTER,
41 DEV_ATTR_ACCEPTLOCAL,
42 DEV_ATTR_IGMPVERSION,
43 DEV_ATTR_MLDVERSION,
44 DEV_ATTR_NEIGHREACHABLETIME,
45 DEV_ATTR_DADTRANSMITS,
46 DEV_ATTR_MULTICAST_TO_UNICAST,
47 DEV_ATTR_MULTICAST_ROUTER,
48 DEV_ATTR_MULTICAST_FAST_LEAVE,
49 DEV_ATTR_MULTICAST,
50 DEV_ATTR_LEARNING,
51 DEV_ATTR_UNICAST_FLOOD,
52 DEV_ATTR_NEIGHGCSTALETIME,
53 DEV_ATTR_SENDREDIRECTS,
54 DEV_ATTR_NEIGHLOCKTIME,
55 DEV_ATTR_ISOLATE,
56 __DEV_ATTR_MAX,
57 };
58
59 enum dev_change_type {
60 DEV_CONFIG_NO_CHANGE,
61 DEV_CONFIG_APPLIED,
62 DEV_CONFIG_RESTART,
63 DEV_CONFIG_RECREATE,
64 };
65
66 struct device_type {
67 struct list_head list;
68 const char *name;
69
70 bool bridge_capability;
71 const char *name_prefix;
72
73 const struct uci_blob_param_list *config_params;
74
75 struct device *(*create)(const char *name, struct device_type *devtype,
76 struct blob_attr *attr);
77 void (*config_init)(struct device *);
78 enum dev_change_type (*reload)(struct device *, struct blob_attr *);
79 void (*dump_info)(struct device *, struct blob_buf *buf);
80 void (*dump_stats)(struct device *, struct blob_buf *buf);
81 int (*check_state)(struct device *);
82 void (*free)(struct device *);
83 };
84
85 enum {
86 DEV_OPT_MTU = (1 << 0),
87 DEV_OPT_MACADDR = (1 << 1),
88 DEV_OPT_TXQUEUELEN = (1 << 2),
89 DEV_OPT_IPV6 = (1 << 3),
90 DEV_OPT_PROMISC = (1 << 4),
91 DEV_OPT_RPFILTER = (1 << 5),
92 DEV_OPT_ACCEPTLOCAL = (1 << 6),
93 DEV_OPT_IGMPVERSION = (1 << 7),
94 DEV_OPT_MLDVERSION = (1 << 8),
95 DEV_OPT_NEIGHREACHABLETIME = (1 << 9),
96 /* 2 bit hole */
97 DEV_OPT_MTU6 = (1 << 12),
98 DEV_OPT_DADTRANSMITS = (1 << 13),
99 DEV_OPT_MULTICAST_TO_UNICAST = (1 << 14),
100 DEV_OPT_MULTICAST_ROUTER = (1 << 15),
101 DEV_OPT_MULTICAST = (1 << 16),
102 DEV_OPT_LEARNING = (1 << 17),
103 DEV_OPT_UNICAST_FLOOD = (1 << 18),
104 DEV_OPT_NEIGHGCSTALETIME = (1 << 19),
105 DEV_OPT_MULTICAST_FAST_LEAVE = (1 << 20),
106 DEV_OPT_SENDREDIRECTS = (1 << 21),
107 DEV_OPT_NEIGHLOCKTIME = (1 << 22),
108 DEV_OPT_ISOLATE = (1 << 23),
109 };
110
111 /* events broadcasted to all users of a device */
112 enum device_event {
113 DEV_EVENT_ADD,
114 DEV_EVENT_REMOVE,
115
116 DEV_EVENT_UPDATE_IFNAME,
117 DEV_EVENT_UPDATE_IFINDEX,
118
119 DEV_EVENT_SETUP,
120 DEV_EVENT_TEARDOWN,
121 DEV_EVENT_UP,
122 DEV_EVENT_DOWN,
123
124 DEV_EVENT_LINK_UP,
125 DEV_EVENT_LINK_DOWN,
126
127 /* Topology changed (i.e. bridge member added) */
128 DEV_EVENT_TOPO_CHANGE,
129
130 __DEV_EVENT_MAX
131 };
132
133 /*
134 * device dependency with callbacks
135 */
136 struct device_user {
137 struct safe_list list;
138
139 bool claimed;
140 bool hotplug;
141 bool alias;
142
143 uint8_t ev_idx[__DEV_EVENT_MAX];
144
145 struct device *dev;
146 void (*cb)(struct device_user *, enum device_event);
147 };
148
149 struct device_settings {
150 unsigned int flags;
151 unsigned int valid_flags;
152 unsigned int mtu;
153 unsigned int mtu6;
154 unsigned int txqueuelen;
155 uint8_t macaddr[6];
156 bool ipv6;
157 bool promisc;
158 unsigned int rpfilter;
159 bool acceptlocal;
160 unsigned int igmpversion;
161 unsigned int mldversion;
162 unsigned int neigh4reachabletime;
163 unsigned int neigh6reachabletime;
164 unsigned int neigh4gcstaletime;
165 unsigned int neigh6gcstaletime;
166 int neigh4locktime;
167 unsigned int dadtransmits;
168 bool multicast_to_unicast;
169 unsigned int multicast_router;
170 bool multicast_fast_leave;
171 bool multicast;
172 bool learning;
173 bool unicast_flood;
174 bool sendredirects;
175 bool isolate;
176 };
177
178 /*
179 * link layer device. typically represents a linux network device.
180 * can be used to support VLANs as well
181 */
182 struct device {
183 struct device_type *type;
184
185 struct avl_node avl;
186 struct safe_list users;
187 struct safe_list aliases;
188
189 struct vlist_tree vlans;
190 struct kvlist vlan_aliases;
191
192 char ifname[IFNAMSIZ + 1];
193 int ifindex;
194
195 struct blob_attr *config;
196 bool config_pending;
197 bool sys_present;
198 /* DEV_EVENT_ADD */
199 bool present;
200 /* DEV_EVENT_UP */
201 int active;
202 /* DEV_EVENT_LINK_UP */
203 bool link_active;
204
205 bool external;
206 bool disabled;
207 bool deferred;
208 bool hidden;
209
210 bool current_config;
211 bool iface_config;
212 bool default_config;
213 bool wireless;
214 bool wireless_ap;
215 bool wireless_isolate;
216
217 struct interface *config_iface;
218
219 /* set interface up or down */
220 device_state_cb set_state;
221
222 const struct device_hotplug_ops *hotplug_ops;
223
224 struct device_user parent;
225
226 struct device_settings orig_settings;
227 struct device_settings settings;
228 };
229
230 struct device_hotplug_ops {
231 int (*prepare)(struct device *dev, struct device **bridge_dev);
232 int (*add)(struct device *main, struct device *member, struct blob_attr *vlan);
233 int (*del)(struct device *main, struct device *member);
234 };
235
236 enum bridge_vlan_flags {
237 BRVLAN_F_SELF = (1 << 0),
238 BRVLAN_F_PVID = (1 << 1),
239 BRVLAN_F_UNTAGGED = (1 << 2),
240 };
241
242 struct bridge_vlan_port {
243 const char *ifname;
244 uint16_t flags;
245 };
246
247 struct bridge_vlan {
248 struct vlist_node node;
249
250 struct bridge_vlan_port *ports;
251 int n_ports;
252
253 struct list_head hotplug_ports;
254
255 uint16_t vid;
256 bool local;
257 };
258
259 extern const struct uci_blob_param_list device_attr_list;
260 extern struct device_type simple_device_type;
261 extern struct device_type tunnel_device_type;
262
263 void device_lock(void);
264 void device_unlock(void);
265
266 void device_vlan_update(bool done);
267
268 int device_type_add(struct device_type *devtype);
269 struct device_type *device_type_get(const char *tname);
270 struct device *device_create(const char *name, struct device_type *type,
271 struct blob_attr *config);
272 void device_merge_settings(struct device *dev, struct device_settings *n);
273 void device_init_settings(struct device *dev, struct blob_attr **tb);
274 void device_init_pending(void);
275
276 enum dev_change_type
277 device_apply_config(struct device *dev, struct device_type *type,
278 struct blob_attr *config);
279
280 void device_reset_config(void);
281 void device_reset_old(void);
282
283 int device_init_virtual(struct device *dev, struct device_type *type, const char *name);
284 int device_init(struct device *dev, struct device_type *type, const char *ifname);
285 void device_cleanup(struct device *dev);
286 struct device *device_find(const char *name);
287 struct device *device_get(const char *name, int create);
288 void device_add_user(struct device_user *dep, struct device *dev);
289 void device_remove_user(struct device_user *dep);
290 void device_broadcast_event(struct device *dev, enum device_event ev);
291
292 void device_set_present(struct device *dev, bool state);
293 void device_set_link(struct device *dev, bool state);
294 void device_set_ifindex(struct device *dev, int ifindex);
295 int device_set_ifname(struct device *dev, const char *name);
296 void device_refresh_present(struct device *dev);
297 int device_claim(struct device_user *dep);
298 void device_release(struct device_user *dep);
299 int device_check_state(struct device *dev);
300 void device_dump_status(struct blob_buf *b, struct device *dev);
301
302 void device_free_unused(struct device *dev);
303
304 struct device *get_vlan_device_chain(const char *ifname, bool create);
305 void alias_notify_device(const char *name, struct device *dev);
306 struct device *device_alias_get(const char *name);
307
308 static inline void
309 device_set_deferred(struct device *dev, bool value)
310 {
311 dev->deferred = value;
312 device_refresh_present(dev);
313 }
314
315 static inline void
316 device_set_disabled(struct device *dev, bool value)
317 {
318 dev->disabled = value;
319 device_refresh_present(dev);
320 }
321
322 #endif