interface-ip: route proto config support (FS#170)
[project/netifd.git] / interface-ip.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 __INTERFACE_IP_H
15 #define __INTERFACE_IP_H
16
17 #include "interface.h"
18
19 enum device_addr_flags {
20 /* address family for routes and addresses */
21 DEVADDR_INET4 = (0 << 0),
22 DEVADDR_INET6 = (1 << 0),
23 DEVADDR_FAMILY = DEVADDR_INET4 | DEVADDR_INET6,
24
25 /* externally added address */
26 DEVADDR_EXTERNAL = (1 << 2),
27
28 /* route overrides the default interface metric */
29 DEVROUTE_METRIC = (1 << 3),
30
31 /* route overrides the default interface mtu */
32 DEVROUTE_MTU = (1 << 4),
33
34 /* route overrides the default proto type */
35 DEVROUTE_PROTO = (1 << 5),
36
37 /* address is off-link (no subnet-route) */
38 DEVADDR_OFFLINK = (1 << 6),
39
40 /* route resides in different table */
41 DEVROUTE_TABLE = (1 << 7),
42
43 /* route resides in default source-route table */
44 DEVROUTE_SRCTABLE = (1 << 8),
45
46 /* route is on-link */
47 DEVROUTE_ONLINK = (1 << 9),
48
49 /* route overrides the default route type */
50 DEVROUTE_TYPE = (1 << 10),
51 };
52
53 union if_addr {
54 struct in_addr in;
55 struct in6_addr in6;
56 };
57
58 struct device_prefix_assignment {
59 struct list_head head;
60 int32_t assigned;
61 uint8_t length;
62 struct in6_addr addr;
63 bool enabled;
64 char name[];
65 };
66
67 struct device_prefix {
68 struct vlist_node node;
69 struct list_head head;
70 struct list_head assignments;
71 struct interface *iface;
72 time_t valid_until;
73 time_t preferred_until;
74
75 struct in6_addr excl_addr;
76 uint8_t excl_length;
77
78 struct in6_addr addr;
79 uint8_t length;
80
81 char pclass[];
82 };
83
84 struct device_route {
85 struct vlist_node node;
86 struct interface *iface;
87
88 bool enabled;
89 bool keep;
90 bool failed;
91
92 union if_addr nexthop;
93 int mtu;
94 unsigned int type;
95 unsigned int proto;
96 time_t valid_until;
97
98 /* must be last */
99 enum device_addr_flags flags;
100 int metric; // there can be multiple routes to the same target
101 unsigned int table;
102 unsigned int mask;
103 unsigned int sourcemask;
104 union if_addr addr;
105 union if_addr source;
106 };
107
108 struct device_addr {
109 struct vlist_node node;
110 bool enabled;
111 bool failed;
112 unsigned int policy_table;
113
114 struct device_route subnet;
115
116 /* ipv4 only */
117 uint32_t broadcast;
118 uint32_t point_to_point;
119
120 /* ipv6 only */
121 time_t valid_until;
122 time_t preferred_until;
123 char *pclass;
124
125 /* must be last */
126 enum device_addr_flags flags;
127 unsigned int mask;
128 union if_addr addr;
129 };
130
131 struct device_source_table {
132 struct list_head head;
133 uint32_t table;
134 uint16_t refcount;
135 uint8_t v6;
136 uint8_t mask;
137 union if_addr addr;
138 };
139
140 struct dns_server {
141 struct vlist_simple_node node;
142 int af;
143 union if_addr addr;
144 };
145
146 struct dns_search_domain {
147 struct vlist_simple_node node;
148 char name[];
149 };
150
151 extern const struct uci_blob_param_list route_attr_list;
152 extern struct list_head prefixes;
153
154 void interface_ip_init(struct interface *iface);
155 void interface_add_dns_server(struct interface_ip_settings *ip, const char *str);
156 void interface_add_dns_server_list(struct interface_ip_settings *ip, struct blob_attr *list);
157 void interface_add_dns_search_list(struct interface_ip_settings *ip, struct blob_attr *list);
158 void interface_write_resolv_conf(void);
159
160 void interface_ip_add_route(struct interface *iface, struct blob_attr *attr, bool v6);
161
162 void interface_ip_update_start(struct interface_ip_settings *ip);
163 void interface_ip_update_complete(struct interface_ip_settings *ip);
164 void interface_ip_flush(struct interface_ip_settings *ip);
165 void interface_ip_set_enabled(struct interface_ip_settings *ip, bool enabled);
166 void interface_ip_update_metric(struct interface_ip_settings *ip, int metric);
167
168 struct interface *interface_ip_add_target_route(union if_addr *addr, bool v6, struct interface *iface);
169
170 struct device_prefix* interface_ip_add_device_prefix(struct interface *iface,
171 struct in6_addr *addr, uint8_t length, time_t valid_until, time_t preferred_until,
172 struct in6_addr *excl_addr, uint8_t excl_length, const char *pclass);
173 void interface_ip_set_ula_prefix(const char *prefix);
174 void interface_refresh_assignments(bool hint);
175
176 #endif