Add indicator-flags to ubus and hotplug update-events
[project/netifd.git] / interface.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_INTERFACE_H
15 #define __NETIFD_INTERFACE_H
16
17 #include "device.h"
18 #include "config.h"
19
20 struct interface;
21 struct interface_proto_state;
22
23 enum interface_event {
24 IFEV_DOWN,
25 IFEV_UP,
26 IFEV_UPDATE,
27 IFEV_FREE,
28 IFEV_RELOAD,
29 };
30
31 enum interface_state {
32 IFS_SETUP,
33 IFS_UP,
34 IFS_TEARDOWN,
35 IFS_DOWN,
36 };
37
38 enum interface_config_state {
39 IFC_NORMAL,
40 IFC_RELOAD,
41 IFC_REMOVE
42 };
43
44 enum interface_update_flags {
45 IUF_ADDRESS = (1 << 0),
46 IUF_ROUTE = (1 << 1),
47 IUF_PREFIX = (1 << 2),
48 IUF_DATA = (1 << 3),
49 };
50
51 struct interface_error {
52 struct list_head list;
53
54 const char *subsystem;
55 const char *code;
56 const char *data[];
57 };
58
59 struct interface_user {
60 struct list_head list;
61 struct interface *iface;
62 void (*cb)(struct interface_user *dep, struct interface *iface, enum interface_event ev);
63 };
64
65 struct interface_ip_settings {
66 struct interface *iface;
67 bool enabled;
68 bool no_defaultroute;
69 bool no_dns;
70 bool no_delegation;
71
72 struct vlist_tree addr;
73 struct vlist_tree route;
74 struct vlist_tree prefix;
75
76 struct vlist_simple_tree dns_servers;
77 struct vlist_simple_tree dns_search;
78 };
79
80 struct interface_data {
81 struct avl_node node;
82 struct blob_attr data[];
83 };
84
85 struct interface_assignment_class {
86 struct list_head head;
87 char name[];
88 };
89
90 /*
91 * interface configuration
92 */
93 struct interface {
94 struct vlist_node node;
95 struct list_head hotplug_list;
96 enum interface_event hotplug_ev;
97
98 const char *name;
99 const char *ifname;
100
101 bool available;
102 bool autostart;
103 bool config_autostart;
104 bool device_config;
105 bool dynamic;
106
107 time_t start_time;
108 enum interface_state state;
109 enum interface_config_state config_state;
110 enum interface_update_flags updated;
111
112 struct list_head users;
113
114 const char *parent_ifname;
115 struct interface_user parent_iface;
116
117 /* main interface that the interface is bound to */
118 struct device_user main_dev;
119
120 /* interface that layer 3 communication will go through */
121 struct device_user l3_dev;
122
123 struct blob_attr *config;
124
125 /* primary protocol state */
126 const struct proto_handler *proto_handler;
127 struct interface_proto_state *proto;
128
129 struct interface_ip_settings proto_ip;
130 struct interface_ip_settings config_ip;
131 struct vlist_tree host_routes;
132
133 int metric;
134 unsigned int ip4table;
135 unsigned int ip6table;
136
137 /* IPv6 assignment parameters */
138 uint8_t assignment_length;
139 int32_t assignment_hint;
140 struct list_head assignment_classes;
141
142 /* errors/warnings while trying to bring up the interface */
143 struct list_head errors;
144
145 /* extra data provided by protocol handlers or modules */
146 struct avl_tree data;
147
148 struct uloop_timeout remove_timer;
149 struct ubus_object ubus;
150 };
151
152
153 extern struct vlist_tree interfaces;
154 extern const struct uci_blob_param_list interface_attr_list;
155
156 struct interface *interface_alloc(const char *name, struct blob_attr *config);
157
158 void interface_set_dynamic(struct interface *iface);
159
160 void interface_add(struct interface *iface, struct blob_attr *config);
161 bool interface_add_alias(struct interface *iface, struct blob_attr *config);
162
163 void interface_set_proto_state(struct interface *iface, struct interface_proto_state *state);
164
165 void interface_set_available(struct interface *iface, bool new_state);
166 int interface_set_up(struct interface *iface);
167 int interface_set_down(struct interface *iface);
168 void __interface_set_down(struct interface *iface, bool force);
169
170 void interface_set_main_dev(struct interface *iface, struct device *dev);
171 void interface_set_l3_dev(struct interface *iface, struct device *dev);
172
173 void interface_add_user(struct interface_user *dep, struct interface *iface);
174 void interface_remove_user(struct interface_user *dep);
175
176 int interface_add_link(struct interface *iface, struct device *dev);
177 int interface_remove_link(struct interface *iface, struct device *dev);
178 int interface_handle_link(struct interface *iface, const char *name, bool add);
179
180 void interface_add_error(struct interface *iface, const char *subsystem,
181 const char *code, const char **data, int n_data);
182
183 int interface_add_data(struct interface *iface, const struct blob_attr *data);
184
185 void interface_update_start(struct interface *iface);
186 void interface_update_complete(struct interface *iface);
187
188 void interface_start_pending(void);
189
190 #endif