]> git.proxmox.com Git - mirror_frr.git/blob - zebra/interface.h
Merge pull request #836 from dwalton76/zebra-debug-packet-send-detail
[mirror_frr.git] / zebra / interface.h
1 /* Interface function header.
2 * Copyright (C) 1999 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #ifndef _ZEBRA_INTERFACE_H
22 #define _ZEBRA_INTERFACE_H
23
24 #include "redistribute.h"
25 #include "vrf.h"
26
27 #ifdef HAVE_IRDP
28 #include "zebra/irdp.h"
29 #endif
30
31 #include "zebra/zebra_l2.h"
32
33 /* For interface multicast configuration. */
34 #define IF_ZEBRA_MULTICAST_UNSPEC 0
35 #define IF_ZEBRA_MULTICAST_ON 1
36 #define IF_ZEBRA_MULTICAST_OFF 2
37
38 /* For interface shutdown configuration. */
39 #define IF_ZEBRA_SHUTDOWN_OFF 0
40 #define IF_ZEBRA_SHUTDOWN_ON 1
41
42 #if defined(HAVE_RTADV)
43 /* Router advertisement parameter. From RFC4861, RFC6275 and RFC4191. */
44 struct rtadvconf {
45 /* A flag indicating whether or not the router sends periodic Router
46 Advertisements and responds to Router Solicitations.
47 Default: FALSE */
48 int AdvSendAdvertisements;
49
50 /* The maximum time allowed between sending unsolicited multicast
51 Router Advertisements from the interface, in milliseconds.
52 MUST be no less than 70 ms [RFC6275 7.5] and no greater
53 than 1800000 ms [RFC4861 6.2.1].
54
55 Default: 600000 milliseconds */
56 int MaxRtrAdvInterval;
57 #define RTADV_MAX_RTR_ADV_INTERVAL 600000
58
59 /* The minimum time allowed between sending unsolicited multicast
60 Router Advertisements from the interface, in milliseconds.
61 MUST be no less than 30 ms [RFC6275 7.5].
62 MUST be no greater than .75 * MaxRtrAdvInterval.
63
64 Default: 0.33 * MaxRtrAdvInterval */
65 int MinRtrAdvInterval; /* This field is currently unused. */
66 /* $FRR indent$ */
67 /* clang-format off */
68 #define RTADV_MIN_RTR_ADV_INTERVAL (0.33 * RTADV_MAX_RTR_ADV_INTERVAL)
69
70 /* Unsolicited Router Advertisements' interval timer. */
71 int AdvIntervalTimer;
72
73 /* The TRUE/FALSE value to be placed in the "Managed address
74 configuration" flag field in the Router Advertisement. See
75 [ADDRCONF].
76
77 Default: FALSE */
78 int AdvManagedFlag;
79
80
81 /* The TRUE/FALSE value to be placed in the "Other stateful
82 configuration" flag field in the Router Advertisement. See
83 [ADDRCONF].
84
85 Default: FALSE */
86 int AdvOtherConfigFlag;
87
88 /* The value to be placed in MTU options sent by the router. A
89 value of zero indicates that no MTU options are sent.
90
91 Default: 0 */
92 int AdvLinkMTU;
93
94
95 /* The value to be placed in the Reachable Time field in the Router
96 Advertisement messages sent by the router. The value zero means
97 unspecified (by this router). MUST be no greater than 3,600,000
98 milliseconds (1 hour).
99
100 Default: 0 */
101 u_int32_t AdvReachableTime;
102 #define RTADV_MAX_REACHABLE_TIME 3600000
103
104 /* The value to be placed in the Retrans Timer field in the Router
105 Advertisement messages sent by the router. The value zero means
106 unspecified (by this router).
107
108 Default: 0 */
109 int AdvRetransTimer;
110
111 /* The default value to be placed in the Cur Hop Limit field in the
112 Router Advertisement messages sent by the router. The value
113 should be set to that current diameter of the Internet. The
114 value zero means unspecified (by this router).
115
116 Default: The value specified in the "Assigned Numbers" RFC
117 [ASSIGNED] that was in effect at the time of implementation. */
118 int AdvCurHopLimit;
119
120 /* The value to be placed in the Router Lifetime field of Router
121 Advertisements sent from the interface, in seconds. MUST be
122 either zero or between MaxRtrAdvInterval and 9000 seconds. A
123 value of zero indicates that the router is not to be used as a
124 default router.
125
126 Default: 3 * MaxRtrAdvInterval */
127 int AdvDefaultLifetime;
128 #define RTADV_MAX_RTRLIFETIME 9000 /* 2.5 hours */
129
130 /* A list of prefixes to be placed in Prefix Information options in
131 Router Advertisement messages sent from the interface.
132
133 Default: all prefixes that the router advertises via routing
134 protocols as being on-link for the interface from which the
135 advertisement is sent. The link-local prefix SHOULD NOT be
136 included in the list of advertised prefixes. */
137 struct list *AdvPrefixList;
138
139 /* The TRUE/FALSE value to be placed in the "Home agent"
140 flag field in the Router Advertisement. See [RFC6275 7.1].
141
142 Default: FALSE */
143 int AdvHomeAgentFlag;
144 #ifndef ND_RA_FLAG_HOME_AGENT
145 #define ND_RA_FLAG_HOME_AGENT 0x20
146 #endif
147
148 /* The value to be placed in Home Agent Information option if Home
149 Flag is set.
150 Default: 0 */
151 int HomeAgentPreference;
152
153 /* The value to be placed in Home Agent Information option if Home
154 Flag is set. Lifetime (seconds) MUST not be greater than 18.2
155 hours.
156 The value 0 has special meaning: use of AdvDefaultLifetime value.
157
158 Default: 0 */
159 int HomeAgentLifetime;
160 #define RTADV_MAX_HALIFETIME 65520 /* 18.2 hours */
161
162 /* The TRUE/FALSE value to insert or not an Advertisement Interval
163 option. See [RFC 6275 7.3]
164
165 Default: FALSE */
166 int AdvIntervalOption;
167
168 /* The value to be placed in the Default Router Preference field of
169 a router advertisement. See [RFC 4191 2.1 & 2.2]
170
171 Default: 0 (medium) */
172 int DefaultPreference;
173 #define RTADV_PREF_MEDIUM 0x0 /* Per RFC4191. */
174
175 u_char inFastRexmit; /* True if we're rexmits faster than usual */
176 u_char configured; /* Has operator configured RA? */
177 int
178 NumFastReXmitsRemain; /* Loaded first with number of fast
179 rexmits to do */
180
181 #define RTADV_FAST_REXMIT_PERIOD 1 /* 1 sec */
182 #define RTADV_NUM_FAST_REXMITS 4 /* Fast Rexmit RA 4 times on certain events */
183 };
184
185 #endif /* HAVE_RTADV */
186
187 /* Zebra interface type - ones of interest. */
188 typedef enum {
189 ZEBRA_IF_VXLAN, /* VxLAN interface */
190 ZEBRA_IF_VRF, /* VRF device */
191 ZEBRA_IF_BRIDGE, /* bridge device */
192 ZEBRA_IF_VLAN, /* VLAN sub-interface */
193 ZEBRA_IF_OTHER, /* Anything else */
194 } zebra_iftype_t;
195
196 /* Zebra "slave" interface type */
197 typedef enum {
198 ZEBRA_IF_SLAVE_NONE, /* Not a slave */
199 ZEBRA_IF_SLAVE_VRF, /* Member of a VRF */
200 ZEBRA_IF_SLAVE_BRIDGE, /* Member of a bridge */
201 ZEBRA_IF_SLAVE_OTHER, /* Something else - e.g., bond slave */
202 } zebra_slave_iftype_t;
203
204 /* `zebra' daemon local interface structure. */
205 struct zebra_if {
206 /* Shutdown configuration. */
207 u_char shutdown;
208
209 /* Multicast configuration. */
210 u_char multicast;
211
212 /* Router advertise configuration. */
213 u_char rtadv_enable;
214
215 /* Installed addresses chains tree. */
216 struct route_table *ipv4_subnets;
217
218 /* Information about up/down changes */
219 unsigned int up_count;
220 char up_last[QUAGGA_TIMESTAMP_LEN];
221 unsigned int down_count;
222 char down_last[QUAGGA_TIMESTAMP_LEN];
223
224 #if defined(HAVE_RTADV)
225 struct rtadvconf rtadv;
226 unsigned int ra_sent, ra_rcvd;
227 #endif /* HAVE_RTADV */
228
229 #ifdef HAVE_IRDP
230 struct irdp_interface irdp;
231 #endif
232
233 #ifdef HAVE_STRUCT_SOCKADDR_DL
234 union {
235 /* note that sdl_storage is never accessed, it only exists to
236 * make space.
237 * all actual uses refer to sdl - but use sizeof(sdl_storage)!
238 * this fits
239 * best with C aliasing rules. */
240 struct sockaddr_dl sdl;
241 struct sockaddr_storage sdl_storage;
242 };
243 #endif
244
245 #ifdef SUNOS_5
246 /* the real IFF_UP state of the primary interface.
247 * need this to differentiate between all interfaces being
248 * down (but primary still plumbed) and primary having gone
249 * ~IFF_UP, and all addresses gone.
250 */
251 u_char primary_state;
252 #endif /* SUNOS_5 */
253
254 /* ptm enable configuration */
255 u_char ptm_enable;
256
257 /* Zebra interface and "slave" interface type */
258 zebra_iftype_t zif_type;
259 zebra_slave_iftype_t zif_slave_type;
260
261 /* Additional L2 info, depends on zif_type */
262 union zebra_l2if_info l2info;
263
264 /* For members of a bridge, link to bridge. */
265 /* Note: If additional fields become necessary, this can be modified to
266 * be a pointer to a dynamically allocd struct.
267 */
268 struct zebra_l2info_brslave brslave_info;
269
270 /* Link fields - for sub-interfaces. */
271 ifindex_t link_ifindex;
272 struct interface *link;
273 };
274
275 static inline void zebra_if_set_ziftype(struct interface *ifp,
276 zebra_iftype_t zif_type,
277 zebra_slave_iftype_t zif_slave_type)
278 {
279 struct zebra_if *zif;
280
281 zif = (struct zebra_if *)ifp->info;
282 zif->zif_type = zif_type;
283 zif->zif_slave_type = zif_slave_type;
284 }
285
286 #define IS_ZEBRA_IF_VRF(ifp) \
287 (((struct zebra_if *)(ifp->info))->zif_type == ZEBRA_IF_VRF)
288
289 #define IS_ZEBRA_IF_BRIDGE(ifp) \
290 (((struct zebra_if *)(ifp->info))->zif_type == ZEBRA_IF_BRIDGE)
291
292 #define IS_ZEBRA_IF_VLAN(ifp) \
293 (((struct zebra_if *)(ifp->info))->zif_type == ZEBRA_IF_VLAN)
294
295 #define IS_ZEBRA_IF_VXLAN(ifp) \
296 (((struct zebra_if *)(ifp->info))->zif_type == ZEBRA_IF_VXLAN)
297
298 #define IS_ZEBRA_IF_BRIDGE_SLAVE(ifp) \
299 (((struct zebra_if *)(ifp->info))->zif_slave_type \
300 == ZEBRA_IF_SLAVE_BRIDGE)
301
302 #define IS_ZEBRA_IF_VRF_SLAVE(ifp) \
303 (((struct zebra_if *)(ifp->info))->zif_slave_type == ZEBRA_IF_SLAVE_VRF)
304
305 extern struct interface *if_lookup_by_index_per_ns(struct zebra_ns *,
306 u_int32_t);
307 extern struct interface *if_lookup_by_name_per_ns(struct zebra_ns *,
308 const char *);
309 extern struct interface *if_link_per_ns(struct zebra_ns *, struct interface *);
310 extern const char *ifindex2ifname_per_ns(struct zebra_ns *, unsigned int);
311
312 extern void if_unlink_per_ns(struct interface *);
313 extern void if_nbr_ipv6ll_to_ipv4ll_neigh_update(struct interface *ifp,
314 struct in6_addr *address,
315 int add);
316 extern void if_nbr_ipv6ll_to_ipv4ll_neigh_del_all(struct interface *ifp);
317 extern void if_delete_update(struct interface *ifp);
318 extern void if_add_update(struct interface *ifp);
319 extern void if_up(struct interface *);
320 extern void if_down(struct interface *);
321 extern void if_refresh(struct interface *);
322 extern void if_flags_update(struct interface *, uint64_t);
323 extern int if_subnet_add(struct interface *, struct connected *);
324 extern int if_subnet_delete(struct interface *, struct connected *);
325 extern int ipv6_address_configured(struct interface *ifp);
326 extern void if_handle_vrf_change(struct interface *ifp, vrf_id_t vrf_id);
327 extern void zebra_if_update_link(struct interface *ifp, ifindex_t link_ifindex);
328
329 extern void vrf_add_update(struct vrf *vrfp);
330
331 #ifdef HAVE_PROC_NET_DEV
332 extern void ifstat_update_proc(void);
333 #endif /* HAVE_PROC_NET_DEV */
334 #ifdef HAVE_NET_RT_IFLIST
335 extern void ifstat_update_sysctl(void);
336
337 #endif /* HAVE_NET_RT_IFLIST */
338 #ifdef HAVE_PROC_NET_DEV
339 extern int interface_list_proc(void);
340 #endif /* HAVE_PROC_NET_DEV */
341 #ifdef HAVE_PROC_NET_IF_INET6
342 extern int ifaddr_proc_ipv6(void);
343 #endif /* HAVE_PROC_NET_IF_INET6 */
344
345 #endif /* _ZEBRA_INTERFACE_H */