2 * netifd - network interface daemon
3 * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
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
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.
17 #include <libubox/avl.h>
18 #include <netinet/in.h>
22 struct device_hotplug_ops;
24 typedef int (*device_state_cb)(struct device *, bool up);
36 enum dev_change_type {
44 struct list_head list;
47 const struct config_param_list *config_params;
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 *);
59 DEV_OPT_MTU = (1 << 0),
60 DEV_OPT_MACADDR = (1 << 1),
61 DEV_OPT_TXQUEUELEN = (1 << 2)
64 /* events broadcasted to all users of a device */
69 DEV_EVENT_UPDATE_IFNAME,
81 * device dependency with callbacks
84 struct list_head list;
90 void (*cb)(struct device_user *, enum device_event);
93 struct device_settings {
96 unsigned int txqueuelen;
101 * link layer device. typically represents a linux network device.
102 * can be used to support VLANs as well
105 const struct device_type *type;
108 struct list_head users;
110 char ifname[IFNAMSIZ + 1];
113 struct blob_attr *config;
127 /* set interface up or down */
128 device_state_cb set_state;
130 const struct device_hotplug_ops *hotplug_ops;
132 struct device_user parent;
134 struct device_settings orig_settings;
135 struct device_settings settings;
138 struct device_hotplug_ops {
139 int (*prepare)(struct device *dev);
140 int (*add)(struct device *main, struct device *member);
141 int (*del)(struct device *main, struct device *member);
144 extern const struct config_param_list device_attr_list;
145 extern const struct device_type simple_device_type;
146 extern const struct device_type bridge_device_type;
147 extern const struct device_type tunnel_device_type;
149 void device_lock(void);
150 void device_unlock(void);
152 struct device *device_create(const char *name, const struct device_type *type,
153 struct blob_attr *config);
154 void device_init_settings(struct device *dev, struct blob_attr **tb);
155 void device_init_pending(void);
158 device_set_config(struct device *dev, const struct device_type *type,
159 struct blob_attr *attr);
161 void device_reset_config(void);
162 void device_reset_old(void);
164 void device_init_virtual(struct device *dev, const struct device_type *type, const char *name);
165 int device_init(struct device *iface, const struct device_type *type, const char *ifname);
166 void device_cleanup(struct device *iface);
167 struct device *device_get(const char *name, int create);
168 void device_add_user(struct device_user *dep, struct device *iface);
169 void device_remove_user(struct device_user *dep);
170 void device_broadcast_event(struct device *dev, enum device_event ev);
172 void device_set_present(struct device *dev, bool state);
173 void device_refresh_present(struct device *dev);
174 int device_claim(struct device_user *dep);
175 void device_release(struct device_user *dep);
176 int device_check_state(struct device *dev);
177 void device_dump_status(struct blob_buf *b, struct device *dev);
179 void device_free(struct device *dev);
180 void device_free_unused(struct device *dev);
182 struct device *get_vlan_device_chain(const char *ifname, bool create);
183 void alias_notify_device(const char *name, struct device *dev);
184 struct device *device_alias_get(const char *name);
187 device_set_deferred(struct device *dev, bool value)
189 dev->deferred = value;
190 device_refresh_present(dev);
194 device_set_disabled(struct device *dev, bool value)
196 dev->disabled = value;
197 device_refresh_present(dev);