1998-04-22 20:58:34 +08:00
|
|
|
/*
|
|
|
|
* BIRD Internet Routing Daemon -- Network Interfaces
|
|
|
|
*
|
|
|
|
* (c) 1998 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_IFACE_H_
|
|
|
|
#define _BIRD_IFACE_H_
|
|
|
|
|
1998-04-28 22:39:34 +08:00
|
|
|
#include "lib/lists.h"
|
1998-04-23 22:01:15 +08:00
|
|
|
|
1998-05-27 05:42:05 +08:00
|
|
|
extern list iface_list;
|
|
|
|
|
1998-10-17 19:05:18 +08:00
|
|
|
struct proto;
|
|
|
|
|
1998-04-23 22:01:15 +08:00
|
|
|
struct iface {
|
|
|
|
node n;
|
1998-05-27 05:42:05 +08:00
|
|
|
char name[16];
|
1998-04-23 22:01:15 +08:00
|
|
|
unsigned flags;
|
1998-05-04 00:42:45 +08:00
|
|
|
unsigned mtu;
|
1998-05-24 22:48:09 +08:00
|
|
|
unsigned index; /* OS-dependent interface index */
|
1998-06-02 05:41:11 +08:00
|
|
|
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 */
|
|
|
|
struct neighbor *neigh; /* List of neighbors on this interface */
|
1998-04-23 22:01:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define IF_UP 1
|
|
|
|
#define IF_MULTIACCESS 2
|
|
|
|
#define IF_UNNUMBERED 4
|
|
|
|
#define IF_BROADCAST 8
|
|
|
|
#define IF_MULTICAST 16
|
|
|
|
#define IF_TUNNEL 32
|
1998-05-27 05:42:05 +08:00
|
|
|
#define IF_ADMIN_DOWN 64
|
|
|
|
#define IF_LOOPBACK 128
|
|
|
|
#define IF_IGNORE 256
|
|
|
|
#define IF_UPDATED 0x1000 /* Touched in last scan */
|
1998-04-23 22:01:15 +08:00
|
|
|
|
1998-05-27 05:42:05 +08:00
|
|
|
/* Interface change events */
|
|
|
|
|
|
|
|
#define IF_CHANGE_UP 1
|
|
|
|
#define IF_CHANGE_DOWN 2
|
1998-06-02 05:41:11 +08:00
|
|
|
#define IF_CHANGE_FLAGS 4 /* Can be converted to down/up internally */
|
1998-05-27 05:42:05 +08:00
|
|
|
#define IF_CHANGE_MTU 8
|
1998-06-05 04:30:11 +08:00
|
|
|
#define IF_CHANGE_CREATE 16 /* Seen this interface for the first time */
|
1998-05-27 05:42:05 +08:00
|
|
|
|
|
|
|
void if_init(void);
|
|
|
|
void if_dump(struct iface *);
|
|
|
|
void if_dump_all(void);
|
|
|
|
void if_update(struct iface *);
|
|
|
|
void if_end_update(void);
|
1998-10-17 19:05:18 +08:00
|
|
|
void if_feed_baby(struct proto *);
|
1998-05-27 05:42:05 +08:00
|
|
|
|
1998-06-02 05:41:11 +08: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 */
|
|
|
|
struct iface *iface; /* Interface address it's connected to */
|
|
|
|
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);
|
|
|
|
|
1998-04-22 20:58:34 +08:00
|
|
|
#endif
|