system-linux: parse gre specific settings as nested json data object
[project/netifd.git] / system.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_SYSTEM_H
15 #define __NETIFD_SYSTEM_H
16
17 #include <net/if.h>
18 #include <sys/time.h>
19 #include <sys/socket.h>
20 #include <arpa/inet.h>
21 #include "device.h"
22 #include "interface-ip.h"
23 #include "iprule.h"
24
25 enum tunnel_param {
26         TUNNEL_ATTR_TYPE,
27         TUNNEL_ATTR_REMOTE,
28         TUNNEL_ATTR_LOCAL,
29         TUNNEL_ATTR_MTU,
30         TUNNEL_ATTR_DF,
31         TUNNEL_ATTR_TTL,
32         TUNNEL_ATTR_TOS,
33         TUNNEL_ATTR_6RD_PREFIX,
34         TUNNEL_ATTR_6RD_RELAY_PREFIX,
35         TUNNEL_ATTR_LINK,
36         TUNNEL_ATTR_FMRS,
37         TUNNEL_ATTR_INFO,
38         TUNNEL_ATTR_DATA,
39         __TUNNEL_ATTR_MAX
40 };
41
42 extern const struct uci_blob_param_list tunnel_attr_list;
43
44 enum vxlan_data {
45         VXLAN_DATA_ATTR_ID,
46         VXLAN_DATA_ATTR_PORT,
47         VXLAN_DATA_ATTR_MACADDR,
48         __VXLAN_DATA_ATTR_MAX
49 };
50
51 enum gre_data {
52         GRE_DATA_IKEY,
53         GRE_DATA_OKEY,
54         GRE_DATA_ICSUM,
55         GRE_DATA_OCSUM,
56         GRE_DATA_ISEQNO,
57         GRE_DATA_OSEQNO,
58         __GRE_DATA_ATTR_MAX
59 };
60
61 extern const struct uci_blob_param_list vxlan_data_attr_list;
62 extern const struct uci_blob_param_list gre_data_attr_list;
63
64 enum bridge_opt {
65         /* stp and forward delay always set */
66         BRIDGE_OPT_AGEING_TIME              = (1 << 0),
67         BRIDGE_OPT_HELLO_TIME               = (1 << 1),
68         BRIDGE_OPT_MAX_AGE                  = (1 << 2),
69         BRIDGE_OPT_ROBUSTNESS               = (1 << 3),
70         BRIDGE_OPT_QUERY_INTERVAL           = (1 << 4),
71         BRIDGE_OPT_QUERY_RESPONSE_INTERVAL  = (1 << 5),
72         BRIDGE_OPT_LAST_MEMBER_INTERVAL     = (1 << 6),
73 };
74
75 struct bridge_config {
76         enum bridge_opt flags;
77         bool stp;
78
79         bool igmp_snoop;
80         bool multicast_querier;
81         int robustness;
82         int query_interval;
83         int query_response_interval;
84         int last_member_interval;
85
86         unsigned short priority;
87         int forward_delay;
88         bool bridge_empty;
89
90         int ageing_time;
91         int hello_time;
92         int max_age;
93         int hash_max;
94 };
95
96 enum macvlan_opt {
97         MACVLAN_OPT_MACADDR = (1 << 0),
98 };
99
100 struct macvlan_config {
101         const char *mode;
102
103         enum macvlan_opt flags;
104         unsigned char macaddr[6];
105 };
106
107 enum veth_opt {
108         VETH_OPT_MACADDR = (1 << 0),
109         VETH_OPT_PEER_NAME = (1 << 1),
110         VETH_OPT_PEER_MACADDR = (1 << 2),
111 };
112
113 struct veth_config {
114         enum veth_opt flags;
115
116         unsigned char macaddr[6];
117         char peer_name[IFNAMSIZ];
118         unsigned char peer_macaddr[6];
119 };
120
121 enum vlan_proto {
122         VLAN_PROTO_8021Q = 0x8100,
123         VLAN_PROTO_8021AD = 0x88A8
124 };
125
126 struct vlandev_config {
127         enum vlan_proto proto;
128         uint16_t vid;
129 };
130
131 static inline int system_get_addr_family(unsigned int flags)
132 {
133         if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6)
134                 return AF_INET6;
135         else
136                 return AF_INET;
137 }
138
139 static inline int system_get_addr_len(unsigned int flags)
140 {
141         if ((flags & DEVADDR_FAMILY) != DEVADDR_INET6)
142                 return sizeof(struct in_addr);
143         else
144                 return sizeof(struct in6_addr);
145 }
146
147 int system_init(void);
148
149 int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg);
150 int system_bridge_delbr(struct device *bridge);
151 int system_bridge_addif(struct device *bridge, struct device *dev);
152 int system_bridge_delif(struct device *bridge, struct device *dev);
153
154 int system_macvlan_add(struct device *macvlan, struct device *dev, struct macvlan_config *cfg);
155 int system_macvlan_del(struct device *macvlan);
156
157 int system_veth_add(struct device *veth, struct veth_config *cfg);
158 int system_veth_del(struct device *veth);
159
160 int system_vlan_add(struct device *dev, int id);
161 int system_vlan_del(struct device *dev);
162
163 int system_vlandev_add(struct device *vlandev, struct device *dev, struct vlandev_config *cfg);
164 int system_vlandev_del(struct device *vlandev);
165
166 void system_if_get_settings(struct device *dev, struct device_settings *s);
167 void system_if_clear_state(struct device *dev);
168 int system_if_up(struct device *dev);
169 int system_if_down(struct device *dev);
170 int system_if_check(struct device *dev);
171 int system_if_resolve(struct device *dev);
172
173 int system_if_dump_info(struct device *dev, struct blob_buf *b);
174 int system_if_dump_stats(struct device *dev, struct blob_buf *b);
175 struct device *system_if_get_parent(struct device *dev);
176 bool system_if_force_external(const char *ifname);
177 void system_if_apply_settings(struct device *dev, struct device_settings *s,
178                               unsigned int apply_mask);
179
180 int system_add_address(struct device *dev, struct device_addr *addr);
181 int system_del_address(struct device *dev, struct device_addr *addr);
182
183 int system_add_route(struct device *dev, struct device_route *route);
184 int system_del_route(struct device *dev, struct device_route *route);
185 int system_flush_routes(void);
186
187 bool system_resolve_rt_type(const char *type, unsigned int *id);
188 bool system_resolve_rt_proto(const char *type, unsigned int *id);
189 bool system_resolve_rt_table(const char *name, unsigned int *id);
190 bool system_is_default_rt_table(unsigned int id);
191 bool system_resolve_rpfilter(const char *filter, unsigned int *id);
192
193 int system_del_ip_tunnel(const char *name, struct blob_attr *attr);
194 int system_add_ip_tunnel(const char *name, struct blob_attr *attr);
195
196 int system_add_iprule(struct iprule *rule);
197 int system_del_iprule(struct iprule *rule);
198 int system_flush_iprules(void);
199
200 bool system_resolve_iprule_action(const char *action, unsigned int *id);
201
202 time_t system_get_rtime(void);
203
204 void system_fd_set_cloexec(int fd);
205
206 int system_update_ipv6_mtu(struct device *device, int mtu);
207
208 #endif