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