fix a memleak in host route dependency handling
[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 __LL_H
15 #define __LL_H
16
17 #include <libubox/avl.h>
18 #include <netinet/in.h>
19
20 struct device;
21 struct device_user;
22 struct device_hotplug_ops;
23
24 typedef int (*device_state_cb)(struct device *, bool up);
25
26 enum {
27         DEV_ATTR_TYPE,
28         DEV_ATTR_IFNAME,
29         DEV_ATTR_MTU,
30         DEV_ATTR_MACADDR,
31         DEV_ATTR_TXQUEUELEN,
32         DEV_ATTR_ENABLED,
33         __DEV_ATTR_MAX,
34 };
35
36 enum dev_change_type {
37         DEV_CONFIG_NO_CHANGE,
38         DEV_CONFIG_APPLIED,
39         DEV_CONFIG_RESTART,
40         DEV_CONFIG_RECREATE,
41 };
42
43 struct device_type {
44         struct list_head list;
45         const char *name;
46
47         const struct config_param_list *config_params;
48
49         struct device *(*create)(const char *name, struct blob_attr *attr);
50         void (*config_init)(struct device *);
51         enum dev_change_type (*reload)(struct device *, struct blob_attr *);
52         void (*dump_info)(struct device *, struct blob_buf *buf);
53         void (*dump_stats)(struct device *, struct blob_buf *buf);
54         int (*check_state)(struct device *);
55         void (*free)(struct device *);
56 };
57
58 enum {
59         DEV_OPT_MTU             = (1 << 0),
60         DEV_OPT_MACADDR         = (1 << 1),
61         DEV_OPT_TXQUEUELEN      = (1 << 2)
62 };
63
64 /* events broadcasted to all users of a device */
65 enum device_event {
66         DEV_EVENT_ADD,
67         DEV_EVENT_REMOVE,
68
69         DEV_EVENT_SETUP,
70         DEV_EVENT_TEARDOWN,
71         DEV_EVENT_UP,
72         DEV_EVENT_DOWN,
73
74         DEV_EVENT_LINK_UP,
75         DEV_EVENT_LINK_DOWN,
76 };
77
78 /*
79  * device dependency with callbacks
80  */
81 struct device_user {
82         struct list_head list;
83
84         bool claimed;
85         bool hotplug;
86
87         struct device *dev;
88         void (*cb)(struct device_user *, enum device_event);
89 };
90
91 struct device_settings {
92         unsigned int flags;
93         unsigned int mtu;
94         unsigned int txqueuelen;
95         uint8_t macaddr[6];
96 };
97
98 /* 
99  * link layer device. typically represents a linux network device.
100  * can be used to support VLANs as well
101  */
102 struct device {
103         const struct device_type *type;
104
105         struct avl_node avl;
106         struct list_head users;
107
108         char ifname[IFNAMSIZ + 1];
109         int ifindex;
110
111         struct blob_attr *config;
112         bool config_pending;
113         bool sys_present;
114         bool present;
115         int active;
116         bool external;
117         bool disabled;
118         bool deferred;
119
120         bool current_config;
121         bool default_config;
122
123         /* set interface up or down */
124         device_state_cb set_state;
125
126         const struct device_hotplug_ops *hotplug_ops;
127
128         struct device_user parent;
129
130         struct device_settings orig_settings;
131         struct device_settings settings;
132 };
133
134 struct device_hotplug_ops {
135         int (*prepare)(struct device *dev);
136         int (*add)(struct device *main, struct device *member);
137         int (*del)(struct device *main, struct device *member);
138 };
139
140 extern const struct config_param_list device_attr_list;
141 extern const struct device_type simple_device_type;
142 extern const struct device_type bridge_device_type;
143 extern const struct device_type tunnel_device_type;
144
145 void device_lock(void);
146 void device_unlock(void);
147
148 struct device *device_create(const char *name, const struct device_type *type,
149                              struct blob_attr *config);
150 void device_init_settings(struct device *dev, struct blob_attr **tb);
151 void device_init_pending(void);
152
153 enum dev_change_type
154 device_set_config(struct device *dev, const struct device_type *type,
155                   struct blob_attr *attr);
156
157 void device_reset_config(void);
158 void device_reset_old(void);
159
160 void device_init_virtual(struct device *dev, const struct device_type *type, const char *name);
161 int device_init(struct device *iface, const struct device_type *type, const char *ifname);
162 void device_cleanup(struct device *iface);
163 struct device *device_get(const char *name, int create);
164 void device_add_user(struct device_user *dep, struct device *iface);
165 void device_remove_user(struct device_user *dep);
166
167 void device_set_present(struct device *dev, bool state);
168 void device_refresh_present(struct device *dev);
169 int device_claim(struct device_user *dep);
170 void device_release(struct device_user *dep);
171 int device_check_state(struct device *dev);
172 void device_dump_status(struct blob_buf *b, struct device *dev);
173
174 void device_free(struct device *dev);
175 void device_free_unused(struct device *dev);
176
177 struct device *get_vlan_device_chain(const char *ifname, bool create);
178 void alias_notify_device(const char *name, struct device *dev);
179
180 static inline void
181 device_set_deferred(struct device *dev, bool value)
182 {
183         dev->deferred = value;
184         device_refresh_present(dev);
185 }
186
187 static inline void
188 device_set_disabled(struct device *dev, bool value)
189 {
190         dev->disabled = value;
191         device_refresh_present(dev);
192 }
193
194 #endif