add copyright headers
[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
119 bool current_config;
120 bool default_config;
121
122 /* set interface up or down */
123 device_state_cb set_state;
124
125 const struct device_hotplug_ops *hotplug_ops;
126
127 struct device_user parent;
128
129 struct device_settings orig_settings;
130 struct device_settings settings;
131 };
132
133 struct device_hotplug_ops {
134 int (*prepare)(struct device *dev);
135 int (*add)(struct device *main, struct device *member);
136 int (*del)(struct device *main, struct device *member);
137 };
138
139 extern const struct config_param_list device_attr_list;
140 extern const struct device_type simple_device_type;
141 extern const struct device_type bridge_device_type;
142 extern const struct device_type tunnel_device_type;
143
144 void device_lock(void);
145 void device_unlock(void);
146
147 struct device *device_create(const char *name, const struct device_type *type,
148 struct blob_attr *config);
149 void device_init_settings(struct device *dev, struct blob_attr **tb);
150 void device_init_pending(void);
151
152 enum dev_change_type
153 device_set_config(struct device *dev, const struct device_type *type,
154 struct blob_attr *attr);
155
156 void device_reset_config(void);
157 void device_reset_old(void);
158
159 void device_init_virtual(struct device *dev, const struct device_type *type, const char *name);
160 int device_init(struct device *iface, const struct device_type *type, const char *ifname);
161 void device_cleanup(struct device *iface);
162 struct device *device_get(const char *name, int create);
163 void device_add_user(struct device_user *dep, struct device *iface);
164 void device_remove_user(struct device_user *dep);
165
166 void device_set_present(struct device *dev, bool state);
167 void device_set_disabled(struct device *dev, bool value);
168 int device_claim(struct device_user *dep);
169 void device_release(struct device_user *dep);
170 int device_check_state(struct device *dev);
171 void device_dump_status(struct blob_buf *b, struct device *dev);
172
173 void device_free(struct device *dev);
174 void device_free_unused(struct device *dev);
175
176 struct device *get_vlan_device_chain(const char *ifname, bool create);
177 void alias_notify_device(const char *name, struct device *dev);
178
179 #endif