system: fix typo in returning address length.
[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_user;
23 struct device_hotplug_ops;
24 struct interface;
25
26 typedef int (*device_state_cb)(struct device *, bool up);
27
28 enum {
29         DEV_ATTR_TYPE,
30         DEV_ATTR_MTU,
31         DEV_ATTR_MACADDR,
32         DEV_ATTR_TXQUEUELEN,
33         DEV_ATTR_ENABLED,
34         DEV_ATTR_IPV6,
35         DEV_ATTR_PROMISC,
36         DEV_ATTR_RPFILTER,
37         DEV_ATTR_ACCEPTLOCAL,
38         DEV_ATTR_IGMPVERSION,
39         DEV_ATTR_MLDVERSION,
40         DEV_ATTR_NEIGHREACHABLETIME,
41         DEV_ATTR_RPS,
42         DEV_ATTR_XPS,
43         __DEV_ATTR_MAX,
44 };
45
46 enum dev_change_type {
47         DEV_CONFIG_NO_CHANGE,
48         DEV_CONFIG_APPLIED,
49         DEV_CONFIG_RESTART,
50         DEV_CONFIG_RECREATE,
51 };
52
53 struct device_type {
54         struct list_head list;
55         const char *name;
56
57         bool keep_link_status;
58
59         const struct uci_blob_param_list *config_params;
60
61         struct device *(*create)(const char *name, struct blob_attr *attr);
62         void (*config_init)(struct device *);
63         enum dev_change_type (*reload)(struct device *, struct blob_attr *);
64         void (*dump_info)(struct device *, struct blob_buf *buf);
65         void (*dump_stats)(struct device *, struct blob_buf *buf);
66         int (*check_state)(struct device *);
67         void (*free)(struct device *);
68 };
69
70 enum {
71         DEV_OPT_MTU                     = (1 << 0),
72         DEV_OPT_MACADDR                 = (1 << 1),
73         DEV_OPT_TXQUEUELEN              = (1 << 2),
74         DEV_OPT_IPV6                    = (1 << 3),
75         DEV_OPT_PROMISC                 = (1 << 4),
76         DEV_OPT_RPFILTER                = (1 << 5),
77         DEV_OPT_ACCEPTLOCAL             = (1 << 6),
78         DEV_OPT_IGMPVERSION             = (1 << 7),
79         DEV_OPT_MLDVERSION              = (1 << 8),
80         DEV_OPT_NEIGHREACHABLETIME      = (1 << 9),
81         DEV_OPT_RPS                     = (1 << 10),
82         DEV_OPT_XPS                     = (1 << 11),
83 };
84
85 /* events broadcasted to all users of a device */
86 enum device_event {
87         DEV_EVENT_ADD,
88         DEV_EVENT_REMOVE,
89
90         DEV_EVENT_UPDATE_IFNAME,
91         DEV_EVENT_UPDATE_IFINDEX,
92
93         DEV_EVENT_SETUP,
94         DEV_EVENT_TEARDOWN,
95         DEV_EVENT_UP,
96         DEV_EVENT_DOWN,
97
98         DEV_EVENT_LINK_UP,
99         DEV_EVENT_LINK_DOWN,
100
101         /* Topology changed (i.e. bridge member added) */
102         DEV_EVENT_TOPO_CHANGE,
103
104         __DEV_EVENT_MAX
105 };
106
107 /*
108  * device dependency with callbacks
109  */
110 struct device_user {
111         struct safe_list list;
112
113         bool claimed;
114         bool hotplug;
115         bool alias;
116
117         uint8_t ev_idx[__DEV_EVENT_MAX];
118
119         struct device *dev;
120         void (*cb)(struct device_user *, enum device_event);
121 };
122
123 struct device_settings {
124         unsigned int flags;
125         unsigned int mtu;
126         unsigned int txqueuelen;
127         uint8_t macaddr[6];
128         bool ipv6;
129         bool promisc;
130         unsigned int rpfilter;
131         bool acceptlocal;
132         unsigned int igmpversion;
133         unsigned int mldversion;
134         unsigned int neigh4reachabletime;
135         unsigned int neigh6reachabletime;
136         bool rps;
137         bool xps;
138 };
139
140 /*
141  * link layer device. typically represents a linux network device.
142  * can be used to support VLANs as well
143  */
144 struct device {
145         const struct device_type *type;
146
147         struct avl_node avl;
148         struct safe_list users;
149         struct safe_list aliases;
150
151         char ifname[IFNAMSIZ + 1];
152         int ifindex;
153
154         struct blob_attr *config;
155         bool config_pending;
156         bool sys_present;
157         bool present;
158         int active;
159         bool link_active;
160
161         bool external;
162         bool disabled;
163         bool deferred;
164         bool hidden;
165
166         bool current_config;
167         bool iface_config;
168         bool default_config;
169         bool wireless;
170
171         struct interface *config_iface;
172
173         /* set interface up or down */
174         device_state_cb set_state;
175
176         const struct device_hotplug_ops *hotplug_ops;
177
178         struct device_user parent;
179
180         struct device_settings orig_settings;
181         struct device_settings settings;
182 };
183
184 struct device_hotplug_ops {
185         int (*prepare)(struct device *dev);
186         int (*add)(struct device *main, struct device *member);
187         int (*del)(struct device *main, struct device *member);
188 };
189
190 extern const struct uci_blob_param_list device_attr_list;
191 extern const struct device_type simple_device_type;
192 extern const struct device_type bridge_device_type;
193 extern const struct device_type tunnel_device_type;
194 extern const struct device_type macvlan_device_type;
195 extern const struct device_type vlandev_device_type;
196
197 void device_lock(void);
198 void device_unlock(void);
199
200 struct device *device_create(const char *name, const struct device_type *type,
201                              struct blob_attr *config);
202 void device_init_settings(struct device *dev, struct blob_attr **tb);
203 void device_init_pending(void);
204
205 enum dev_change_type
206 device_apply_config(struct device *dev, const struct device_type *type,
207                     struct blob_attr *config);
208
209 void device_reset_config(void);
210 void device_reset_old(void);
211 void device_set_default_ps(bool state);
212
213 void device_init_virtual(struct device *dev, const struct device_type *type, const char *name);
214 int device_init(struct device *iface, const struct device_type *type, const char *ifname);
215 void device_cleanup(struct device *iface);
216 struct device *device_get(const char *name, int create);
217 void device_add_user(struct device_user *dep, struct device *iface);
218 void device_remove_user(struct device_user *dep);
219 void device_broadcast_event(struct device *dev, enum device_event ev);
220
221 void device_set_present(struct device *dev, bool state);
222 void device_set_link(struct device *dev, bool state);
223 void device_set_ifindex(struct device *dev, int ifindex);
224 void device_refresh_present(struct device *dev);
225 int device_claim(struct device_user *dep);
226 void device_release(struct device_user *dep);
227 int device_check_state(struct device *dev);
228 void device_dump_status(struct blob_buf *b, struct device *dev);
229
230 void device_free(struct device *dev);
231 void device_free_unused(struct device *dev);
232
233 struct device *get_vlan_device_chain(const char *ifname, bool create);
234 void alias_notify_device(const char *name, struct device *dev);
235 struct device *device_alias_get(const char *name);
236
237 static inline void
238 device_set_deferred(struct device *dev, bool value)
239 {
240         dev->deferred = value;
241         device_refresh_present(dev);
242 }
243
244 static inline void
245 device_set_disabled(struct device *dev, bool value)
246 {
247         dev->disabled = value;
248         device_refresh_present(dev);
249 }
250
251 #endif