| 
									
										
										
										
											1998-04-22 12:58:34 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *	BIRD Internet Routing Daemon -- Network Interfaces | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											1999-02-05 21:37:34 +00:00
										 |  |  |  *	(c) 1998--1999 Martin Mares <mj@ucw.cz> | 
					
						
							| 
									
										
										
										
											1998-04-22 12:58:34 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  *	Can be freely distributed and used under the terms of the GNU GPL. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _BIRD_IFACE_H_
 | 
					
						
							|  |  |  | #define _BIRD_IFACE_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-28 14:39:34 +00:00
										 |  |  | #include "lib/lists.h"
 | 
					
						
							| 
									
										
										
										
											1998-04-23 14:01:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-26 21:42:05 +00:00
										 |  |  | extern list iface_list; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-17 11:05:18 +00:00
										 |  |  | struct proto; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-06 21:38:11 +00:00
										 |  |  | struct ifa {				/* Interface address */ | 
					
						
							|  |  |  |   node n; | 
					
						
							|  |  |  |   struct iface *iface;			/* Interface this address belongs to */ | 
					
						
							|  |  |  |   ip_addr ip;				/* IP address of this host */ | 
					
						
							|  |  |  |   ip_addr prefix;			/* Network prefix */ | 
					
						
							|  |  |  |   unsigned pxlen;			/* Prefix length */ | 
					
						
							|  |  |  |   ip_addr brd;				/* Broadcast address */ | 
					
						
							|  |  |  |   ip_addr opposite;			/* Opposite end of a point-to-point link */ | 
					
						
							|  |  |  |   unsigned scope;			/* Interface address scope */ | 
					
						
							|  |  |  |   unsigned flags;			/* Analogous to iface->flags */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-23 14:01:15 +00:00
										 |  |  | struct iface { | 
					
						
							|  |  |  |   node n; | 
					
						
							| 
									
										
										
										
											1998-05-26 21:42:05 +00:00
										 |  |  |   char name[16]; | 
					
						
							| 
									
										
										
										
											1998-04-23 14:01:15 +00:00
										 |  |  |   unsigned flags; | 
					
						
							| 
									
										
										
										
											1998-05-03 16:42:45 +00:00
										 |  |  |   unsigned mtu; | 
					
						
							| 
									
										
										
										
											1998-05-24 14:48:09 +00:00
										 |  |  |   unsigned index;			/* OS-dependent interface index */ | 
					
						
							| 
									
										
										
										
											1999-05-06 21:38:11 +00:00
										 |  |  |   list addrs;				/* Addresses assigned to this interface */ | 
					
						
							|  |  |  |   struct ifa *addr;			/* Primary address */ | 
					
						
							| 
									
										
										
										
											1998-06-01 21:41:11 +00:00
										 |  |  |   struct neighbor *neigh;		/* List of neighbors on this interface */ | 
					
						
							| 
									
										
										
										
											1998-04-23 14:01:15 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-06 21:38:11 +00:00
										 |  |  | #define IF_UP 1				/* IF_LINK_UP and IP address known */
 | 
					
						
							| 
									
										
										
										
											1998-04-23 14:01:15 +00:00
										 |  |  | #define IF_MULTIACCESS 2
 | 
					
						
							|  |  |  | #define IF_UNNUMBERED 4
 | 
					
						
							|  |  |  | #define IF_BROADCAST 8
 | 
					
						
							| 
									
										
										
										
											1999-05-06 21:38:11 +00:00
										 |  |  | #define IF_MULTICAST 0x10
 | 
					
						
							|  |  |  | #define IF_TUNNEL 0x20
 | 
					
						
							|  |  |  | #define IF_ADMIN_DOWN 0x40
 | 
					
						
							|  |  |  | #define IF_LOOPBACK 0x80
 | 
					
						
							|  |  |  | #define IF_IGNORE 0x100			/* Not to be used by routing protocols (loopbacks etc.) */
 | 
					
						
							|  |  |  | #define IF_LINK_UP 0x200
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define IA_PRIMARY 0x10000		/* This address is primary */
 | 
					
						
							|  |  |  | #define IA_SECONDARY 0x20000		/* This address has been reported as secondary by the kernel */
 | 
					
						
							|  |  |  | #define IA_FLAGS 0xff0000
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define IF_JUST_CREATED 0x10000000	/* Send creation event as soon as possible */
 | 
					
						
							|  |  |  | #define IF_TMP_DOWN 0x20000000		/* Temporary shutdown due to interface reconfiguration */
 | 
					
						
							| 
									
										
										
										
											1999-03-02 17:28:06 +00:00
										 |  |  | #define IF_UPDATED 0x40000000		/* Touched in last scan */
 | 
					
						
							| 
									
										
										
										
											1998-04-23 14:01:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-26 21:42:05 +00:00
										 |  |  | /* Interface change events */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define IF_CHANGE_UP 1
 | 
					
						
							|  |  |  | #define IF_CHANGE_DOWN 2
 | 
					
						
							| 
									
										
										
										
											1999-05-06 21:38:11 +00:00
										 |  |  | #define IF_CHANGE_MTU 4
 | 
					
						
							|  |  |  | #define IF_CHANGE_CREATE 8		/* Seen this interface for the first time */
 | 
					
						
							|  |  |  | #define IF_CHANGE_TOO_MUCH 0x40000000	/* Used internally */
 | 
					
						
							| 
									
										
										
										
											1998-05-26 21:42:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void if_init(void); | 
					
						
							|  |  |  | void if_dump(struct iface *); | 
					
						
							|  |  |  | void if_dump_all(void); | 
					
						
							| 
									
										
										
										
											1999-05-06 21:38:11 +00:00
										 |  |  | void ifa_dump(struct ifa *); | 
					
						
							|  |  |  | struct iface *if_update(struct iface *); | 
					
						
							|  |  |  | struct ifa *ifa_update(struct ifa *); | 
					
						
							|  |  |  | void ifa_delete(struct ifa *); | 
					
						
							| 
									
										
										
										
											1999-03-02 18:36:09 +00:00
										 |  |  | void if_start_update(void); | 
					
						
							| 
									
										
										
										
											1998-05-26 21:42:05 +00:00
										 |  |  | void if_end_update(void); | 
					
						
							| 
									
										
										
										
											1999-05-06 21:38:11 +00:00
										 |  |  | void if_end_partial_update(struct iface *); | 
					
						
							| 
									
										
										
										
											1998-10-17 11:05:18 +00:00
										 |  |  | void if_feed_baby(struct proto *); | 
					
						
							| 
									
										
										
										
											1999-03-02 18:36:09 +00:00
										 |  |  | struct iface *if_find_by_index(unsigned); | 
					
						
							| 
									
										
										
										
											1999-05-06 21:38:11 +00:00
										 |  |  | struct iface *if_find_by_name(char *); | 
					
						
							| 
									
										
										
										
											1998-05-26 21:42:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-01 21:41:11 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *	Neighbor Cache. We hold (direct neighbor, protocol) pairs we've seen | 
					
						
							|  |  |  |  *	along with pointer to protocol-specific data. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	The primary goal of this cache is to quickly validate all incoming | 
					
						
							|  |  |  |  *	packets if their have been sent by our neighbors and to notify | 
					
						
							|  |  |  |  *	protocols about lost neighbors when an interface goes down. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	Anyway, it can also contain `sticky' entries for currently unreachable | 
					
						
							|  |  |  |  *	addresses which cause notification when the address becomes a neighbor. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct neighbor { | 
					
						
							|  |  |  |   node n;				/* Node in global neighbor list */ | 
					
						
							|  |  |  |   ip_addr addr;				/* Address of the neighbor */ | 
					
						
							| 
									
										
										
										
											1998-10-17 11:26:28 +00:00
										 |  |  |   struct iface *iface;			/* Interface it's connected to */ | 
					
						
							| 
									
										
										
										
											1998-06-01 21:41:11 +00:00
										 |  |  |   struct neighbor *sibling;		/* Next in per-device chain */ | 
					
						
							|  |  |  |   struct proto *proto;			/* Protocol this belongs to */ | 
					
						
							|  |  |  |   void *data;				/* Protocol-specific data */ | 
					
						
							|  |  |  |   unsigned flags; | 
					
						
							|  |  |  | } neighbor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NEF_STICKY 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Find neighbor or return NULL if it doesn't exist. | 
					
						
							|  |  |  |  * If you specify flags == NEF_STICKY, a sticky entry is created if the | 
					
						
							|  |  |  |  * address is not a neighbor, but NULL can still be returned if the address | 
					
						
							|  |  |  |  * given is invalid. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | neighbor *neigh_find(struct proto *, ip_addr *, unsigned flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void neigh_dump(neighbor *); | 
					
						
							|  |  |  | void neigh_dump_all(void); | 
					
						
							| 
									
										
										
										
											1999-02-13 20:55:08 +00:00
										 |  |  | void neigh_prune(void); | 
					
						
							| 
									
										
										
										
											1998-06-01 21:41:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-11-29 22:01:03 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *	Interface Pattern Lists | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct iface_patt { | 
					
						
							|  |  |  |   node n; | 
					
						
							|  |  |  |   byte *pattern;			/* Interface name pattern */ | 
					
						
							| 
									
										
										
										
											1999-08-03 19:30:49 +00:00
										 |  |  |   ip_addr prefix;			/* Interface prefix */ | 
					
						
							|  |  |  |   int pxlen; | 
					
						
							| 
									
										
										
										
											1998-11-29 22:01:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-08-03 19:30:49 +00:00
										 |  |  |   /* Protocol-specific data follow after this structure */ | 
					
						
							| 
									
										
										
										
											1998-11-29 22:01:03 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct iface_patt *iface_patt_match(list *, struct iface *); | 
					
						
							|  |  |  | int iface_patts_equal(list *, list *, int (*)(struct iface_patt *, struct iface_patt *)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-22 12:58:34 +00:00
										 |  |  | #endif
 |