dc410b425c9398a3f690a0d0f080c0c9f46a7675
[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_IP6SEGMENTROUTING,
57 __DEV_ATTR_MAX,
58 };
59
60 enum dev_change_type {
61 DEV_CONFIG_NO_CHANGE,
62 DEV_CONFIG_APPLIED,
63 DEV_CONFIG_RESTART,
64 DEV_CONFIG_RECREATE,
65 };
66
67 struct device_type {
68 struct list_head list;
69 const char *name;
70
71 bool bridge_capability;
72 const char *name_prefix;
73
74 const struct uci_blob_param_list *config_params;
75
76 struct device *(*create)(const char *name, struct device_type *devtype,
77 struct blob_attr *attr);
78 void (*config_init)(struct device *);
79 enum dev_change_type (*reload)(struct device *, struct blob_attr *);
80 void (*dump_info)(struct device *, struct blob_buf *buf);
81 void (*dump_stats)(struct device *, struct blob_buf *buf);
82 int (*check_state)(struct device *);
83 void (*free)(struct device *);
84 };
85
86 enum {
87 DEV_OPT_MTU = (1 << 0),
88 DEV_OPT_MACADDR = (1 << 1),
89 DEV_OPT_TXQUEUELEN = (1 << 2),
90 DEV_OPT_IPV6 = (1 << 3),
91 DEV_OPT_PROMISC = (1 << 4),
92 DEV_OPT_RPFILTER = (1 << 5),
93 DEV_OPT_ACCEPTLOCAL = (1 << 6),
94 DEV_OPT_IGMPVERSION = (1 << 7),
95 DEV_OPT_MLDVERSION = (1 << 8),
96 DEV_OPT_NEIGHREACHABLETIME = (1 << 9),
97 DEV_OPT_DEFAULT_MACADDR = (1 << 10),
98 /* 1 bit hole */
99 DEV_OPT_MTU6 = (1 << 12),
100 DEV_OPT_DADTRANSMITS = (1 << 13),
101 DEV_OPT_MULTICAST_TO_UNICAST = (1 << 14),
102 DEV_OPT_MULTICAST_ROUTER = (1 << 15),
103 DEV_OPT_MULTICAST = (1 << 16),
104 DEV_OPT_LEARNING = (1 << 17),
105 DEV_OPT_UNICAST_FLOOD = (1 << 18),
106 DEV_OPT_NEIGHGCSTALETIME = (1 << 19),
107 DEV_OPT_MULTICAST_FAST_LEAVE = (1 << 20),
108 DEV_OPT_SENDREDIRECTS = (1 << 21),
109 DEV_OPT_NEIGHLOCKTIME = (1 << 22),
110 DEV_OPT_ISOLATE = (1 << 23),
111 DEV_OPT_IP6SEGMENTROUTING = (1 << 24),
112 };
113
114 /* events broadcasted to all users of a device */
115 enum device_event {
116 DEV_EVENT_ADD,
117 DEV_EVENT_REMOVE,
118
119 DEV_EVENT_UPDATE_IFNAME,
120 DEV_EVENT_UPDATE_IFINDEX,
121
122 DEV_EVENT_SETUP,
123 DEV_EVENT_TEARDOWN,
124 DEV_EVENT_UP,
125 DEV_EVENT_DOWN,
126
127 DEV_EVENT_LINK_UP,
128 DEV_EVENT_LINK_DOWN,
129
130 /* Topology changed (i.e. bridge member added) */
131 DEV_EVENT_TOPO_CHANGE,
132
133 __DEV_EVENT_MAX
134 };
135
136 /*
137 * device dependency with callbacks
138 */
139 struct device_user {
140 struct safe_list list;
141
142 bool claimed;
143 bool hotplug;
144 bool alias;
145
146 uint8_t ev_idx[__DEV_EVENT_MAX];
147
148 struct device *dev;
149 void (*cb)(struct device_user *, enum device_event);
150 };
151
152 struct device_settings {
153 unsigned int flags;
154 unsigned int valid_flags;
155 unsigned int mtu;
156 unsigned int mtu6;
157 unsigned int txqueuelen;
158 uint8_t macaddr[6];
159 bool ipv6;
160 bool promisc;
161 unsigned int rpfilter;
162 bool acceptlocal;
163 unsigned int igmpversion;
164 unsigned int mldversion;
165 unsigned int neigh4reachabletime;
166 unsigned int neigh6reachabletime;
167 unsigned int neigh4gcstaletime;
168 unsigned int neigh6gcstaletime;
169 int neigh4locktime;
170 unsigned int dadtransmits;
171 bool multicast_to_unicast;
172 unsigned int multicast_router;
173 bool multicast_fast_leave;
174 bool multicast;
175 bool learning;
176 bool unicast_flood;
177 bool sendredirects;
178 bool ip6segmentrouting;
179 bool isolate;
180 };
181
182 /*
183 * link layer device. typically represents a linux network device.
184 * can be used to support VLANs as well
185 */
186 struct device {
187 struct device_type *type;
188
189 struct avl_node avl;
190 struct safe_list users;
191 struct safe_list aliases;
192
193 struct vlist_tree vlans;
194 struct kvlist vlan_aliases;
195
196 char ifname[IFNAMSIZ + 1];
197 int ifindex;
198
199 struct blob_attr *config;
200 bool config_pending;
201 bool sys_present;
202 /* DEV_EVENT_ADD */
203 bool present;
204 /* DEV_EVENT_UP */
205 int active;
206 /* DEV_EVENT_LINK_UP */
207 bool link_active;
208
209 bool external;
210 bool disabled;
211 bool deferred;
212 bool hidden;
213
214 bool current_config;
215 bool iface_config;
216 bool default_config;
217 bool wireless;
218 bool wireless_ap;
219 bool wireless_isolate;
220
221 struct interface *config_iface;
222
223 /* set interface up or down */
224 device_state_cb set_state;
225
226 const struct device_hotplug_ops *hotplug_ops;
227
228 struct device_user parent;
229
230 struct device_settings orig_settings;
231 struct device_settings settings;
232 };
233
234 struct device_hotplug_ops {
235 int (*prepare)(struct device *dev, struct device **bridge_dev);
236 int (*add)(struct device *main, struct device *member, struct blob_attr *vlan);
237 int (*del)(struct device *main, struct device *member);
238 };
239
240 enum bridge_vlan_flags {
241 BRVLAN_F_SELF = (1 << 0),
242 BRVLAN_F_PVID = (1 << 1),
243 BRVLAN_F_UNTAGGED = (1 << 2),
244 };
245
246 struct bridge_vlan_port {
247 const char *ifname;
248 uint16_t flags;
249 };
250
251 struct bridge_vlan {
252 struct vlist_node node;
253
254 struct bridge_vlan_port *ports;
255 int n_ports;
256
257 struct list_head hotplug_ports;
258
259 uint16_t vid;
260 bool local;
261 };
262
263 extern const struct uci_blob_param_list device_attr_list;
264 extern struct device_type simple_device_type;
265 extern struct device_type tunnel_device_type;
266
267 void device_lock(void);
268 void device_unlock(void);
269
270 void device_vlan_update(bool done);
271
272 int device_type_add(struct device_type *devtype);
273 struct device_type *device_type_get(const char *tname);
274 struct device *device_create(const char *name, struct device_type *type,
275 struct blob_attr *config);
276 void device_merge_settings(struct device *dev, struct device_settings *n);
277 void device_init_settings(struct device *dev, struct blob_attr **tb);
278 void device_init_pending(void);
279
280 enum dev_change_type
281 device_apply_config(struct device *dev, struct device_type *type,
282 struct blob_attr *config);
283
284 void device_reset_config(void);
285 void device_reset_old(void);
286
287 int device_init_virtual(struct device *dev, struct device_type *type, const char *name);
288 int device_init(struct device *dev, struct device_type *type, const char *ifname);
289 void device_cleanup(struct device *dev);
290 struct device *device_find(const char *name);
291 struct device *device_get(const char *name, int create);
292 void device_add_user(struct device_user *dep, struct device *dev);
293 void device_remove_user(struct device_user *dep);
294 void device_broadcast_event(struct device *dev, enum device_event ev);
295
296 void device_set_present(struct device *dev, bool state);
297 void device_set_link(struct device *dev, bool state);
298 void device_set_ifindex(struct device *dev, int ifindex);
299 int device_set_ifname(struct device *dev, const char *name);
300 void device_refresh_present(struct device *dev);
301 int device_claim(struct device_user *dep);
302 void device_release(struct device_user *dep);
303 int device_check_state(struct device *dev);
304 void device_dump_status(struct blob_buf *b, struct device *dev);
305
306 void device_free_unused(struct device *dev);
307
308 struct device *get_vlan_device_chain(const char *ifname, bool create);
309 void alias_notify_device(const char *name, struct device *dev);
310 struct device *device_alias_get(const char *name);
311
312 static inline void
313 device_set_deferred(struct device *dev, bool value)
314 {
315 dev->deferred = value;
316 device_refresh_present(dev);
317 }
318
319 static inline void
320 device_set_disabled(struct device *dev, bool value)
321 {
322 dev->disabled = value;
323 device_refresh_present(dev);
324 }
325
326 bool device_check_ip6segmentrouting(void);
327
328 #endif