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