blob: 13cc254e262863f63837a2a629cc3dae7b241e25 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Interface related header.
2 Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published
8by the Free Software Foundation; either version 2, or (at your
9option) any later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the
18Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
21#ifndef _ZEBRA_IF_H
22#define _ZEBRA_IF_H
23
24#include "linklist.h"
25
26/*
27 Interface name length.
28
29 Linux define value in /usr/include/linux/if.h.
30 #define IFNAMSIZ 16
31
32 FreeBSD define value in /usr/include/net/if.h.
33 #define IFNAMSIZ 16
34*/
35
36#define INTERFACE_NAMSIZ 20
37#define INTERFACE_HWADDR_MAX 20
38
paul718e3742002-12-13 20:15:29 +000039#ifdef HAVE_PROC_NET_DEV
40struct if_stats
41{
42 unsigned long rx_packets; /* total packets received */
43 unsigned long tx_packets; /* total packets transmitted */
44 unsigned long rx_bytes; /* total bytes received */
45 unsigned long tx_bytes; /* total bytes transmitted */
46 unsigned long rx_errors; /* bad packets received */
47 unsigned long tx_errors; /* packet transmit problems */
48 unsigned long rx_dropped; /* no space in linux buffers */
49 unsigned long tx_dropped; /* no space available in linux */
50 unsigned long rx_multicast; /* multicast packets received */
51 unsigned long rx_compressed;
52 unsigned long tx_compressed;
53 unsigned long collisions;
54
55 /* detailed rx_errors: */
56 unsigned long rx_length_errors;
57 unsigned long rx_over_errors; /* receiver ring buff overflow */
58 unsigned long rx_crc_errors; /* recved pkt with crc error */
59 unsigned long rx_frame_errors; /* recv'd frame alignment error */
60 unsigned long rx_fifo_errors; /* recv'r fifo overrun */
61 unsigned long rx_missed_errors; /* receiver missed packet */
62 /* detailed tx_errors */
63 unsigned long tx_aborted_errors;
64 unsigned long tx_carrier_errors;
65 unsigned long tx_fifo_errors;
66 unsigned long tx_heartbeat_errors;
67 unsigned long tx_window_errors;
68};
69#endif /* HAVE_PROC_NET_DEV */
70
71/* Interface structure */
72struct interface
73{
ajsd2fc8892005-04-02 18:38:43 +000074 /* Interface name. This should probably never be changed after the
75 interface is created, because the configuration info for this interface
76 is associated with this structure. For that reason, the interface
77 should also never be deleted (to avoid losing configuration info).
78 To delete, just set ifindex to IFINDEX_INTERNAL to indicate that the
79 interface does not exist in the kernel.
80 */
paul718e3742002-12-13 20:15:29 +000081 char name[INTERFACE_NAMSIZ + 1];
82
ajsd2fc8892005-04-02 18:38:43 +000083 /* Interface index (should be IFINDEX_INTERNAL for non-kernel or
84 deleted interfaces). */
paul718e3742002-12-13 20:15:29 +000085 unsigned int ifindex;
ajsd2fc8892005-04-02 18:38:43 +000086#define IFINDEX_INTERNAL 0
paul718e3742002-12-13 20:15:29 +000087
88 /* Zebra internal interface status */
89 u_char status;
90#define ZEBRA_INTERFACE_ACTIVE (1 << 0)
91#define ZEBRA_INTERFACE_SUB (1 << 1)
paul2e3b2e42002-12-13 21:03:13 +000092#define ZEBRA_INTERFACE_LINKDETECTION (1 << 2)
paul718e3742002-12-13 20:15:29 +000093
94 /* Interface flags. */
paulc77d4542006-01-11 01:59:04 +000095 uint64_t flags;
paul718e3742002-12-13 20:15:29 +000096
97 /* Interface metric */
98 int metric;
99
100 /* Interface MTU. */
paulc9eca012004-10-11 11:28:44 +0000101 unsigned int mtu; /* IPv4 MTU */
102 unsigned int mtu6; /* IPv6 MTU - probably, but not neccessarily same as mtu */
paul718e3742002-12-13 20:15:29 +0000103
104 /* Hardware address. */
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000105#ifdef HAVE_STRUCT_SOCKADDR_DL
David Lamparterca3ccd82012-09-26 14:52:39 +0200106 union {
107 /* note that sdl_storage is never accessed, it only exists to make space.
108 * all actual uses refer to sdl - but use sizeof(sdl_storage)! this fits
109 * best with C aliasing rules. */
110 struct sockaddr_dl sdl;
111 struct sockaddr_storage sdl_storage;
112 };
paul718e3742002-12-13 20:15:29 +0000113#else
114 unsigned short hw_type;
115 u_char hw_addr[INTERFACE_HWADDR_MAX];
116 int hw_addr_len;
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000117#endif /* HAVE_STRUCT_SOCKADDR_DL */
paul718e3742002-12-13 20:15:29 +0000118
119 /* interface bandwidth, kbits */
120 unsigned int bandwidth;
121
122 /* description of the interface. */
123 char *desc;
124
125 /* Distribute list. */
126 void *distribute_in;
127 void *distribute_out;
128
129 /* Connected address list. */
hasso52dc7ee2004-09-23 19:18:23 +0000130 struct list *connected;
paul718e3742002-12-13 20:15:29 +0000131
132 /* Daemon specific interface data pointer. */
133 void *info;
134
135 /* Statistics fileds. */
136#ifdef HAVE_PROC_NET_DEV
137 struct if_stats stats;
138#endif /* HAVE_PROC_NET_DEV */
139#ifdef HAVE_NET_RT_IFLIST
140 struct if_data stats;
141#endif /* HAVE_NET_RT_IFLIST */
142};
143
144/* Connected address structure. */
145struct connected
146{
147 /* Attached interface. */
148 struct interface *ifp;
149
150 /* Flags for configuration. */
151 u_char conf;
152#define ZEBRA_IFC_REAL (1 << 0)
153#define ZEBRA_IFC_CONFIGURED (1 << 1)
Christian Frankef7f740f2013-01-24 14:04:48 +0000154#define ZEBRA_IFC_QUEUED (1 << 2)
Andrew J. Schorr9c378512006-05-21 04:04:49 +0000155 /*
156 The ZEBRA_IFC_REAL flag should be set if and only if this address
Christian Frankef7f740f2013-01-24 14:04:48 +0000157 exists in the kernel and is actually usable. (A case where it exists but
158 is not yet usable would be IPv6 with DAD)
Andrew J. Schorr9c378512006-05-21 04:04:49 +0000159 The ZEBRA_IFC_CONFIGURED flag should be set if and only if this address
160 was configured by the user from inside quagga.
Christian Frankef7f740f2013-01-24 14:04:48 +0000161 The ZEBRA_IFC_QUEUED flag should be set if and only if the address exists
162 in the kernel. It may and should be set although the address might not be
163 usable yet. (compare with ZEBRA_IFC_REAL)
Andrew J. Schorr9c378512006-05-21 04:04:49 +0000164 */
paul718e3742002-12-13 20:15:29 +0000165
166 /* Flags for connected address. */
167 u_char flags;
Andrew J. Schorre4529632006-12-12 19:18:21 +0000168#define ZEBRA_IFA_SECONDARY (1 << 0)
169#define ZEBRA_IFA_PEER (1 << 1)
170 /* N.B. the ZEBRA_IFA_PEER flag should be set if and only if
171 a peer address has been configured. If this flag is set,
172 the destination field must contain the peer address.
173 Otherwise, if this flag is not set, the destination address
174 will either contain a broadcast address or be NULL.
175 */
paul718e3742002-12-13 20:15:29 +0000176
177 /* Address of connected network. */
178 struct prefix *address;
Andrew J. Schorre4529632006-12-12 19:18:21 +0000179
180 /* Peer or Broadcast address, depending on whether ZEBRA_IFA_PEER is set.
181 Note: destination may be NULL if ZEBRA_IFA_PEER is not set. */
182 struct prefix *destination;
paul718e3742002-12-13 20:15:29 +0000183
184 /* Label for Linux 2.2.X and upper. */
185 char *label;
186};
187
Andrew J. Schorre4529632006-12-12 19:18:21 +0000188/* Does the destination field contain a peer address? */
189#define CONNECTED_PEER(C) CHECK_FLAG((C)->flags, ZEBRA_IFA_PEER)
hasso3fb9cd62004-10-19 19:44:43 +0000190
Andrew J. Schorre4529632006-12-12 19:18:21 +0000191/* Prefix to insert into the RIB */
192#define CONNECTED_PREFIX(C) \
193 (CONNECTED_PEER(C) ? (C)->destination : (C)->address)
194
195/* Identifying address. We guess that if there's a peer address, but the
196 local address is in the same prefix, then the local address may be unique. */
197#define CONNECTED_ID(C) \
198 ((CONNECTED_PEER(C) && !prefix_match((C)->destination, (C)->address)) ?\
199 (C)->destination : (C)->address)
hasso3fb9cd62004-10-19 19:44:43 +0000200
paul718e3742002-12-13 20:15:29 +0000201/* Interface hook sort. */
202#define IF_NEW_HOOK 0
203#define IF_DELETE_HOOK 1
204
205/* There are some interface flags which are only supported by some
206 operating system. */
207
208#ifndef IFF_NOTRAILERS
209#define IFF_NOTRAILERS 0x0
210#endif /* IFF_NOTRAILERS */
211#ifndef IFF_OACTIVE
212#define IFF_OACTIVE 0x0
213#endif /* IFF_OACTIVE */
214#ifndef IFF_SIMPLEX
215#define IFF_SIMPLEX 0x0
216#endif /* IFF_SIMPLEX */
217#ifndef IFF_LINK0
218#define IFF_LINK0 0x0
219#endif /* IFF_LINK0 */
220#ifndef IFF_LINK1
221#define IFF_LINK1 0x0
222#endif /* IFF_LINK1 */
223#ifndef IFF_LINK2
224#define IFF_LINK2 0x0
225#endif /* IFF_LINK2 */
paul4ba9b922004-12-21 22:34:58 +0000226#ifndef IFF_NOXMIT
227#define IFF_NOXMIT 0x0
228#endif /* IFF_NOXMIT */
229#ifndef IFF_NORTEXCH
230#define IFF_NORTEXCH 0x0
231#endif /* IFF_NORTEXCH */
232#ifndef IFF_IPV4
233#define IFF_IPV4 0x0
234#endif /* IFF_IPV4 */
235#ifndef IFF_IPV6
236#define IFF_IPV6 0x0
237#endif /* IFF_IPV6 */
238#ifndef IFF_VIRTUAL
239#define IFF_VIRTUAL 0x0
240#endif /* IFF_VIRTUAL */
paul718e3742002-12-13 20:15:29 +0000241
242/* Prototypes. */
paul8cc41982005-05-06 21:25:49 +0000243extern int if_cmp_func (struct interface *, struct interface *);
244extern struct interface *if_create (const char *name, int namelen);
245extern struct interface *if_lookup_by_index (unsigned int);
246extern struct interface *if_lookup_exact_address (struct in_addr);
247extern struct interface *if_lookup_address (struct in_addr);
ajsa3491982005-04-02 22:50:38 +0000248
ajs08dbfb62005-04-03 03:40:52 +0000249/* These 2 functions are to be used when the ifname argument is terminated
250 by a '\0' character: */
paul8cc41982005-05-06 21:25:49 +0000251extern struct interface *if_lookup_by_name (const char *ifname);
252extern struct interface *if_get_by_name (const char *ifname);
ajsd2fc8892005-04-02 18:38:43 +0000253
ajs08dbfb62005-04-03 03:40:52 +0000254/* For these 2 functions, the namelen argument should be the precise length
255 of the ifname string (not counting any optional trailing '\0' character).
256 In most cases, strnlen should be used to calculate the namelen value. */
257extern struct interface *if_lookup_by_name_len(const char *ifname,
ajsa3491982005-04-02 22:50:38 +0000258 size_t namelen);
ajs08dbfb62005-04-03 03:40:52 +0000259extern struct interface *if_get_by_name_len(const char *ifname, size_t namelen);
ajsa3491982005-04-02 22:50:38 +0000260
261
ajsd2fc8892005-04-02 18:38:43 +0000262/* Delete the interface, but do not free the structure, and leave it in the
263 interface list. It is often advisable to leave the pseudo interface
264 structure because there may be configuration information attached. */
265extern void if_delete_retain (struct interface *);
266
267/* Delete and free the interface structure: calls if_delete_retain and then
268 deletes it from the interface list and frees the structure. */
269extern void if_delete (struct interface *);
270
paul8cc41982005-05-06 21:25:49 +0000271extern int if_is_up (struct interface *);
272extern int if_is_running (struct interface *);
273extern int if_is_operative (struct interface *);
274extern int if_is_loopback (struct interface *);
275extern int if_is_broadcast (struct interface *);
276extern int if_is_pointopoint (struct interface *);
277extern int if_is_multicast (struct interface *);
278extern void if_add_hook (int, int (*)(struct interface *));
279extern void if_init (void);
Tom Goff4bd045d2010-11-10 13:00:54 -0800280extern void if_terminate (void);
paul8cc41982005-05-06 21:25:49 +0000281extern void if_dump_all (void);
ajs847947f2005-02-02 18:38:48 +0000282extern const char *if_flag_dump(unsigned long);
paul718e3742002-12-13 20:15:29 +0000283
ajsd2fc8892005-04-02 18:38:43 +0000284/* Please use ifindex2ifname instead of if_indextoname where possible;
285 ifindex2ifname uses internal interface info, whereas if_indextoname must
286 make a system call. */
paul8cc41982005-05-06 21:25:49 +0000287extern const char *ifindex2ifname (unsigned int);
ajsd2fc8892005-04-02 18:38:43 +0000288
289/* Please use ifname2ifindex instead of if_nametoindex where possible;
290 ifname2ifindex uses internal interface info, whereas if_nametoindex must
291 make a system call. */
292extern unsigned int ifname2ifindex(const char *ifname);
293
paul718e3742002-12-13 20:15:29 +0000294/* Connected address functions. */
paul8cc41982005-05-06 21:25:49 +0000295extern struct connected *connected_new (void);
296extern void connected_free (struct connected *);
297extern void connected_add (struct interface *, struct connected *);
298extern struct connected *connected_add_by_prefix (struct interface *,
paul4a7aac12004-05-08 05:00:31 +0000299 struct prefix *,
300 struct prefix *);
paul8cc41982005-05-06 21:25:49 +0000301extern struct connected *connected_delete_by_prefix (struct interface *,
paul4a7aac12004-05-08 05:00:31 +0000302 struct prefix *);
paul8cc41982005-05-06 21:25:49 +0000303extern struct connected *connected_lookup_address (struct interface *,
paul4a7aac12004-05-08 05:00:31 +0000304 struct in_addr);
paul718e3742002-12-13 20:15:29 +0000305
306#ifndef HAVE_IF_NAMETOINDEX
paul8cc41982005-05-06 21:25:49 +0000307extern unsigned int if_nametoindex (const char *);
paul718e3742002-12-13 20:15:29 +0000308#endif
309#ifndef HAVE_IF_INDEXTONAME
paul8cc41982005-05-06 21:25:49 +0000310extern char *if_indextoname (unsigned int, char *);
paul718e3742002-12-13 20:15:29 +0000311#endif
312
313/* Exported variables. */
hasso52dc7ee2004-09-23 19:18:23 +0000314extern struct list *iflist;
paul718e3742002-12-13 20:15:29 +0000315extern struct cmd_element interface_desc_cmd;
316extern struct cmd_element no_interface_desc_cmd;
317extern struct cmd_element interface_cmd;
paul32d24632003-05-23 09:25:20 +0000318extern struct cmd_element no_interface_cmd;
paul718e3742002-12-13 20:15:29 +0000319extern struct cmd_element interface_pseudo_cmd;
320extern struct cmd_element no_interface_pseudo_cmd;
Paul Jakma478ccfd2006-03-06 18:18:37 +0000321extern struct cmd_element show_address_cmd;
paul718e3742002-12-13 20:15:29 +0000322
323#endif /* _ZEBRA_IF_H */