blob: 8baf186abffa7c3c42e401bb965b78757be38e3d [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* 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
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
paul5b73a672004-07-23 15:26:14 +000022#ifndef _ZEBRA_INTERFACE_H
23#define _ZEBRA_INTERFACE_H
24
25#include "redistribute.h"
Christian Franke581ecbf2016-05-03 19:59:43 +020026#include "event_counter.h"
paul5b73a672004-07-23 15:26:14 +000027
hassoca776982004-06-12 14:33:05 +000028#ifdef HAVE_IRDP
29#include "zebra/irdp.h"
30#endif
31
paul718e3742002-12-13 20:15:29 +000032/* For interface multicast configuration. */
33#define IF_ZEBRA_MULTICAST_UNSPEC 0
34#define IF_ZEBRA_MULTICAST_ON 1
35#define IF_ZEBRA_MULTICAST_OFF 2
36
37/* For interface shutdown configuration. */
Christian Frankebfac8dc2013-01-24 14:04:50 +000038#define IF_ZEBRA_SHUTDOWN_OFF 0
paul718e3742002-12-13 20:15:29 +000039#define IF_ZEBRA_SHUTDOWN_ON 1
paul718e3742002-12-13 20:15:29 +000040
Donald Sharp64257732015-11-20 08:33:30 -050041#if defined (HAVE_RTADV)
Denis Ovsienko6eb0c5a2012-01-24 11:02:03 +040042/* Router advertisement parameter. From RFC4861, RFC6275 and RFC4191. */
paul718e3742002-12-13 20:15:29 +000043struct rtadvconf
44{
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
vincent7cee1bb2005-03-25 13:08:53 +000051 Router Advertisements from the interface, in milliseconds.
Denis Ovsienko6eb0c5a2012-01-24 11:02:03 +040052 MUST be no less than 70 ms [RFC6275 7.5] and no greater
53 than 1800000 ms [RFC4861 6.2.1].
paul718e3742002-12-13 20:15:29 +000054
vincent7cee1bb2005-03-25 13:08:53 +000055 Default: 600000 milliseconds */
paul718e3742002-12-13 20:15:29 +000056 int MaxRtrAdvInterval;
vincent7cee1bb2005-03-25 13:08:53 +000057#define RTADV_MAX_RTR_ADV_INTERVAL 600000
paul718e3742002-12-13 20:15:29 +000058
59 /* The minimum time allowed between sending unsolicited multicast
vincent7cee1bb2005-03-25 13:08:53 +000060 Router Advertisements from the interface, in milliseconds.
Denis Ovsienko6eb0c5a2012-01-24 11:02:03 +040061 MUST be no less than 30 ms [RFC6275 7.5].
vincent7cee1bb2005-03-25 13:08:53 +000062 MUST be no greater than .75 * MaxRtrAdvInterval.
paul718e3742002-12-13 20:15:29 +000063
64 Default: 0.33 * MaxRtrAdvInterval */
Denis Ovsienkod660f692011-12-30 21:55:49 +040065 int MinRtrAdvInterval; /* This field is currently unused. */
paul718e3742002-12-13 20:15:29 +000066#define RTADV_MIN_RTR_ADV_INTERVAL (0.33 * RTADV_MAX_RTR_ADV_INTERVAL)
67
68 /* Unsolicited Router Advertisements' interval timer. */
69 int AdvIntervalTimer;
70
71 /* The TRUE/FALSE value to be placed in the "Managed address
72 configuration" flag field in the Router Advertisement. See
73 [ADDRCONF].
74
75 Default: FALSE */
76 int AdvManagedFlag;
77
78
79 /* The TRUE/FALSE value to be placed in the "Other stateful
80 configuration" flag field in the Router Advertisement. See
81 [ADDRCONF].
82
83 Default: FALSE */
84 int AdvOtherConfigFlag;
85
86 /* The value to be placed in MTU options sent by the router. A
87 value of zero indicates that no MTU options are sent.
88
89 Default: 0 */
90 int AdvLinkMTU;
91
92
93 /* The value to be placed in the Reachable Time field in the Router
94 Advertisement messages sent by the router. The value zero means
95 unspecified (by this router). MUST be no greater than 3,600,000
96 milliseconds (1 hour).
97
98 Default: 0 */
99 u_int32_t AdvReachableTime;
100#define RTADV_MAX_REACHABLE_TIME 3600000
101
102
103 /* The value to be placed in the Retrans Timer field in the Router
104 Advertisement messages sent by the router. The value zero means
105 unspecified (by this router).
106
107 Default: 0 */
108 int AdvRetransTimer;
109
110 /* The default value to be placed in the Cur Hop Limit field in the
111 Router Advertisement messages sent by the router. The value
112 should be set to that current diameter of the Internet. The
113 value zero means unspecified (by this router).
114
115 Default: The value specified in the "Assigned Numbers" RFC
116 [ASSIGNED] that was in effect at the time of implementation. */
117 int AdvCurHopLimit;
118
119 /* The value to be placed in the Router Lifetime field of Router
120 Advertisements sent from the interface, in seconds. MUST be
121 either zero or between MaxRtrAdvInterval and 9000 seconds. A
122 value of zero indicates that the router is not to be used as a
123 default router.
124
125 Default: 3 * MaxRtrAdvInterval */
126 int AdvDefaultLifetime;
Denis Ovsienkod660f692011-12-30 21:55:49 +0400127#define RTADV_MAX_RTRLIFETIME 9000 /* 2.5 hours */
paul718e3742002-12-13 20:15:29 +0000128
129 /* A list of prefixes to be placed in Prefix Information options in
130 Router Advertisement messages sent from the interface.
131
132 Default: all prefixes that the router advertises via routing
133 protocols as being on-link for the interface from which the
134 advertisement is sent. The link-local prefix SHOULD NOT be
135 included in the list of advertised prefixes. */
hasso52dc7ee2004-09-23 19:18:23 +0000136 struct list *AdvPrefixList;
vincent7cee1bb2005-03-25 13:08:53 +0000137
138 /* The TRUE/FALSE value to be placed in the "Home agent"
Denis Ovsienko6eb0c5a2012-01-24 11:02:03 +0400139 flag field in the Router Advertisement. See [RFC6275 7.1].
vincent7cee1bb2005-03-25 13:08:53 +0000140
141 Default: FALSE */
142 int AdvHomeAgentFlag;
143#ifndef ND_RA_FLAG_HOME_AGENT
144#define ND_RA_FLAG_HOME_AGENT 0x20
145#endif
146
147 /* The value to be placed in Home Agent Information option if Home
148 Flag is set.
149 Default: 0 */
150 int HomeAgentPreference;
151
152 /* The value to be placed in Home Agent Information option if Home
153 Flag is set. Lifetime (seconds) MUST not be greater than 18.2
154 hours.
155 The value 0 has special meaning: use of AdvDefaultLifetime value.
156
157 Default: 0 */
158 int HomeAgentLifetime;
159#define RTADV_MAX_HALIFETIME 65520 /* 18.2 hours */
160
161 /* The TRUE/FALSE value to insert or not an Advertisement Interval
Denis Ovsienko6eb0c5a2012-01-24 11:02:03 +0400162 option. See [RFC 6275 7.3]
vincent7cee1bb2005-03-25 13:08:53 +0000163
164 Default: FALSE */
165 int AdvIntervalOption;
Chris Caputob60668d2009-05-03 04:40:57 +0000166
167 /* The value to be placed in the Default Router Preference field of
168 a router advertisement. See [RFC 4191 2.1 & 2.2]
169
170 Default: 0 (medium) */
171 int DefaultPreference;
172#define RTADV_PREF_MEDIUM 0x0 /* Per RFC4191. */
paul718e3742002-12-13 20:15:29 +0000173};
174
Donald Sharp64257732015-11-20 08:33:30 -0500175#endif /* HAVE_RTADV */
paul718e3742002-12-13 20:15:29 +0000176
177/* `zebra' daemon local interface structure. */
178struct zebra_if
179{
180 /* Shutdown configuration. */
181 u_char shutdown;
182
183 /* Multicast configuration. */
184 u_char multicast;
185
186 /* Router advertise configuration. */
187 u_char rtadv_enable;
188
hassoeef1fe12004-10-03 18:46:08 +0000189 /* Installed addresses chains tree. */
190 struct route_table *ipv4_subnets;
191
Christian Franke581ecbf2016-05-03 19:59:43 +0200192 /* Information about up/down changes */
193 struct event_counter up_events;
194 struct event_counter down_events;
195
Donald Sharp64257732015-11-20 08:33:30 -0500196#if defined(HAVE_RTADV)
paul718e3742002-12-13 20:15:29 +0000197 struct rtadvconf rtadv;
198#endif /* RTADV */
hassoca776982004-06-12 14:33:05 +0000199
200#ifdef HAVE_IRDP
201 struct irdp_interface irdp;
202#endif
203
Timo Teräs954c7d62016-01-15 17:36:33 +0200204#ifdef HAVE_STRUCT_SOCKADDR_DL
205 union {
206 /* note that sdl_storage is never accessed, it only exists to make space.
207 * all actual uses refer to sdl - but use sizeof(sdl_storage)! this fits
208 * best with C aliasing rules. */
209 struct sockaddr_dl sdl;
210 struct sockaddr_storage sdl_storage;
211 };
212#endif
213
paul5c78b3d2006-01-25 04:31:40 +0000214#ifdef SUNOS_5
215 /* the real IFF_UP state of the primary interface.
216 * need this to differentiate between all interfaces being
217 * down (but primary still plumbed) and primary having gone
218 * ~IFF_UP, and all addresses gone.
219 */
220 u_char primary_state;
221#endif /* SUNOS_5 */
paul718e3742002-12-13 20:15:29 +0000222};
223
paula1ac18c2005-06-28 17:17:12 +0000224extern void if_delete_update (struct interface *ifp);
225extern void if_add_update (struct interface *ifp);
226extern void if_up (struct interface *);
227extern void if_down (struct interface *);
228extern void if_refresh (struct interface *);
paul5c78b3d2006-01-25 04:31:40 +0000229extern void if_flags_update (struct interface *, uint64_t);
Christian Franke581ecbf2016-05-03 19:59:43 +0200230extern void if_startup_count_up (void);
paula1ac18c2005-06-28 17:17:12 +0000231extern int if_subnet_add (struct interface *, struct connected *);
232extern int if_subnet_delete (struct interface *, struct connected *);
paul718e3742002-12-13 20:15:29 +0000233
234#ifdef HAVE_PROC_NET_DEV
Paul Jakmaf28b0e52006-08-06 15:57:59 +0000235extern void ifstat_update_proc (void);
paul718e3742002-12-13 20:15:29 +0000236#endif /* HAVE_PROC_NET_DEV */
237#ifdef HAVE_NET_RT_IFLIST
paula1ac18c2005-06-28 17:17:12 +0000238extern void ifstat_update_sysctl (void);
paul718e3742002-12-13 20:15:29 +0000239
240#endif /* HAVE_NET_RT_IFLIST */
241#ifdef HAVE_PROC_NET_DEV
paula1ac18c2005-06-28 17:17:12 +0000242extern int interface_list_proc (void);
paul718e3742002-12-13 20:15:29 +0000243#endif /* HAVE_PROC_NET_DEV */
244#ifdef HAVE_PROC_NET_IF_INET6
paula1ac18c2005-06-28 17:17:12 +0000245extern int ifaddr_proc_ipv6 (void);
paul718e3742002-12-13 20:15:29 +0000246#endif /* HAVE_PROC_NET_IF_INET6 */
247
paul5b73a672004-07-23 15:26:14 +0000248#endif /* _ZEBRA_INTERFACE_H */