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 <libubox/safe_list.h>
19 #include <netinet/in.h>
23 struct device_hotplug_ops
;
25 typedef int (*device_state_cb
)(struct device
*, bool up
);
37 enum dev_change_type
{
45 struct list_head list
;
48 const struct config_param_list
*config_params
;
50 struct device
*(*create
)(const char *name
, struct blob_attr
*attr
);
51 void (*config_init
)(struct device
*);
52 enum dev_change_type (*reload
)(struct device
*, struct blob_attr
*);
53 void (*dump_info
)(struct device
*, struct blob_buf
*buf
);
54 void (*dump_stats
)(struct device
*, struct blob_buf
*buf
);
55 int (*check_state
)(struct device
*);
56 void (*free
)(struct device
*);
60 DEV_OPT_MTU
= (1 << 0),
61 DEV_OPT_MACADDR
= (1 << 1),
62 DEV_OPT_TXQUEUELEN
= (1 << 2)
65 /* events broadcasted to all users of a device */
70 DEV_EVENT_UPDATE_IFNAME
,
84 * device dependency with callbacks
87 struct safe_list list
;
93 uint8_t ev_idx
[__DEV_EVENT_MAX
];
96 void (*cb
)(struct device_user
*, enum device_event
);
99 struct device_settings
{
102 unsigned int txqueuelen
;
107 * link layer device. typically represents a linux network device.
108 * can be used to support VLANs as well
111 const struct device_type
*type
;
114 struct safe_list users
;
115 struct safe_list aliases
;
117 char ifname
[IFNAMSIZ
+ 1];
120 struct blob_attr
*config
;
134 /* set interface up or down */
135 device_state_cb set_state
;
137 const struct device_hotplug_ops
*hotplug_ops
;
139 struct device_user parent
;
141 struct device_settings orig_settings
;
142 struct device_settings settings
;
145 struct device_hotplug_ops
{
146 int (*prepare
)(struct device
*dev
);
147 int (*add
)(struct device
*main
, struct device
*member
);
148 int (*del
)(struct device
*main
, struct device
*member
);
151 extern const struct config_param_list device_attr_list
;
152 extern const struct device_type simple_device_type
;
153 extern const struct device_type bridge_device_type
;
154 extern const struct device_type tunnel_device_type
;
156 void device_lock(void);
157 void device_unlock(void);
159 struct device
*device_create(const char *name
, const struct device_type
*type
,
160 struct blob_attr
*config
);
161 void device_init_settings(struct device
*dev
, struct blob_attr
**tb
);
162 void device_init_pending(void);
165 device_set_config(struct device
*dev
, const struct device_type
*type
,
166 struct blob_attr
*attr
);
168 void device_reset_config(void);
169 void device_reset_old(void);
171 void device_init_virtual(struct device
*dev
, const struct device_type
*type
, const char *name
);
172 int device_init(struct device
*iface
, const struct device_type
*type
, const char *ifname
);
173 void device_cleanup(struct device
*iface
);
174 struct device
*device_get(const char *name
, int create
);
175 void device_add_user(struct device_user
*dep
, struct device
*iface
);
176 void device_remove_user(struct device_user
*dep
);
177 void device_broadcast_event(struct device
*dev
, enum device_event ev
);
179 void device_set_present(struct device
*dev
, bool state
);
180 void device_refresh_present(struct device
*dev
);
181 int device_claim(struct device_user
*dep
);
182 void device_release(struct device_user
*dep
);
183 int device_check_state(struct device
*dev
);
184 void device_dump_status(struct blob_buf
*b
, struct device
*dev
);
186 void device_free(struct device
*dev
);
187 void device_free_unused(struct device
*dev
);
189 struct device
*get_vlan_device_chain(const char *ifname
, bool create
);
190 void alias_notify_device(const char *name
, struct device
*dev
);
191 struct device
*device_alias_get(const char *name
);
194 device_set_deferred(struct device
*dev
, bool value
)
196 dev
->deferred
= value
;
197 device_refresh_present(dev
);
201 device_set_disabled(struct device
*dev
, bool value
)
203 dev
->disabled
= value
;
204 device_refresh_present(dev
);