if.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:6k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* Interface related header.
  2.    Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
  3. This file is part of GNU Zebra.
  4. GNU Zebra is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published
  6. by the Free Software Foundation; either version 2, or (at your
  7. option) any later version.
  8. GNU Zebra is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Zebra; see the file COPYING.  If not, write to the
  14. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA.  */
  16. #ifndef _ZEBRA_IF_H
  17. #define _ZEBRA_IF_H
  18. #include "linklist.h"
  19. /*
  20.   Interface name length.
  21.    Linux define value in /usr/include/linux/if.h.
  22.    #define IFNAMSIZ        16
  23.    FreeBSD define value in /usr/include/net/if.h.
  24.    #define IFNAMSIZ        16
  25. */
  26. #define INTERFACE_NAMSIZ      20
  27. #define INTERFACE_HWADDR_MAX  20
  28. /* Internal If indexes start at 0xFFFFFFFF and go down to 1 greater
  29.    than this */
  30. #define IFINDEX_INTERNBASE 0x80000000
  31. #ifdef HAVE_PROC_NET_DEV
  32. struct if_stats
  33. {
  34.   unsigned long rx_packets;   /* total packets received       */
  35.   unsigned long tx_packets;   /* total packets transmitted    */
  36.   unsigned long rx_bytes;     /* total bytes received         */
  37.   unsigned long tx_bytes;     /* total bytes transmitted      */
  38.   unsigned long rx_errors;    /* bad packets received         */
  39.   unsigned long tx_errors;    /* packet transmit problems     */
  40.   unsigned long rx_dropped;   /* no space in linux buffers    */
  41.   unsigned long tx_dropped;   /* no space available in linux  */
  42.   unsigned long rx_multicast; /* multicast packets received   */
  43.   unsigned long rx_compressed;
  44.   unsigned long tx_compressed;
  45.   unsigned long collisions;
  46.   /* detailed rx_errors: */
  47.   unsigned long rx_length_errors;
  48.   unsigned long rx_over_errors;       /* receiver ring buff overflow  */
  49.   unsigned long rx_crc_errors;        /* recved pkt with crc error    */
  50.   unsigned long rx_frame_errors;      /* recv'd frame alignment error */
  51.   unsigned long rx_fifo_errors;       /* recv'r fifo overrun          */
  52.   unsigned long rx_missed_errors;     /* receiver missed packet     */
  53.   /* detailed tx_errors */
  54.   unsigned long tx_aborted_errors;
  55.   unsigned long tx_carrier_errors;
  56.   unsigned long tx_fifo_errors;
  57.   unsigned long tx_heartbeat_errors;
  58.   unsigned long tx_window_errors;
  59. };
  60. #endif /* HAVE_PROC_NET_DEV */
  61. /* Interface structure */
  62. struct interface 
  63. {
  64.   /* Interface name. */
  65.   char name[INTERFACE_NAMSIZ + 1];
  66.   /* Interface index. */
  67.   unsigned int ifindex;
  68.   /* Zebra internal interface status */
  69.   u_char status;
  70. #define ZEBRA_INTERFACE_ACTIVE     (1 << 0)
  71. #define ZEBRA_INTERFACE_SUB        (1 << 1)
  72.   
  73.   /* Interface flags. */
  74.   unsigned long flags;
  75.   /* Interface metric */
  76.   int metric;
  77.   /* Interface MTU. */
  78.   int mtu;
  79.   /* Hardware address. */
  80. #ifdef HAVE_SOCKADDR_DL
  81.   struct sockaddr_dl sdl;
  82. #else
  83.   unsigned short hw_type;
  84.   u_char hw_addr[INTERFACE_HWADDR_MAX];
  85.   int hw_addr_len;
  86. #endif /* HAVE_SOCKADDR_DL */
  87.   /* interface bandwidth, kbits */
  88.   unsigned int bandwidth;
  89.   
  90.   /* description of the interface. */
  91.   char *desc;
  92.   /* Distribute list. */
  93.   void *distribute_in;
  94.   void *distribute_out;
  95.   /* Connected address list. */
  96.   list connected;
  97.   /* Daemon specific interface data pointer. */
  98.   void *info;
  99.   /* Statistics fileds. */
  100. #ifdef HAVE_PROC_NET_DEV
  101.   struct if_stats stats;
  102. #endif /* HAVE_PROC_NET_DEV */  
  103. #ifdef HAVE_NET_RT_IFLIST
  104.   struct if_data stats;
  105. #endif /* HAVE_NET_RT_IFLIST */
  106. };
  107. /* Connected address structure. */
  108. struct connected
  109. {
  110.   /* Attached interface. */
  111.   struct interface *ifp;
  112.   /* Flags for configuration. */
  113.   u_char conf;
  114. #define ZEBRA_IFC_REAL         (1 << 0)
  115. #define ZEBRA_IFC_CONFIGURED   (1 << 1)
  116.   /* Flags for connected address. */
  117.   u_char flags;
  118. #define ZEBRA_IFA_SECONDARY   (1 << 0)
  119.   /* Address of connected network. */
  120.   struct prefix *address;
  121.   struct prefix *destination;
  122.   /* Label for Linux 2.2.X and upper. */
  123.   char *label;
  124. };
  125. /* Interface hook sort. */
  126. #define IF_NEW_HOOK   0
  127. #define IF_DELETE_HOOK 1
  128. /* There are some interface flags which are only supported by some
  129.    operating system. */
  130. #ifndef IFF_NOTRAILERS
  131. #define IFF_NOTRAILERS 0x0
  132. #endif /* IFF_NOTRAILERS */
  133. #ifndef IFF_OACTIVE
  134. #define IFF_OACTIVE 0x0
  135. #endif /* IFF_OACTIVE */
  136. #ifndef IFF_SIMPLEX
  137. #define IFF_SIMPLEX 0x0
  138. #endif /* IFF_SIMPLEX */
  139. #ifndef IFF_LINK0
  140. #define IFF_LINK0 0x0
  141. #endif /* IFF_LINK0 */
  142. #ifndef IFF_LINK1
  143. #define IFF_LINK1 0x0
  144. #endif /* IFF_LINK1 */
  145. #ifndef IFF_LINK2
  146. #define IFF_LINK2 0x0
  147. #endif /* IFF_LINK2 */
  148. /* Prototypes. */
  149. struct interface *if_new (void);
  150. struct interface *if_create (void);
  151. struct interface *if_lookup_by_index (unsigned int);
  152. struct interface *if_lookup_by_name (char *);
  153. struct interface *if_lookup_exact_address (struct in_addr);
  154. struct interface *if_lookup_address (struct in_addr);
  155. struct interface *if_get_by_name (char *);
  156. void if_delete (struct interface *);
  157. int if_is_up (struct interface *);
  158. int if_is_loopback (struct interface *);
  159. int if_is_broadcast (struct interface *);
  160. int if_is_pointopoint (struct interface *);
  161. int if_is_multicast (struct interface *);
  162. void if_add_hook (int, int (*)(struct interface *));
  163. void if_init ();
  164. void if_dump_all ();
  165. char *ifindex2ifname (unsigned int);
  166. /* Connected address functions. */
  167. struct connected *connected_new ();
  168. void connected_free (struct connected *);
  169. void connected_add (struct interface *, struct connected *);
  170. struct connected  *connected_delete_by_prefix (struct interface *, struct prefix *);
  171. int ifc_pointopoint (struct connected *);
  172. #ifndef HAVE_IF_NAMETOINDEX
  173. unsigned int if_nametoindex (const char *);
  174. #endif
  175. #ifndef HAVE_IF_INDEXTONAME
  176. char *if_indextoname (unsigned int, char *);
  177. #endif
  178. /* Exported variables. */
  179. extern list iflist;
  180. extern struct cmd_element interface_desc_cmd;
  181. extern struct cmd_element no_interface_desc_cmd;
  182. extern struct cmd_element interface_cmd;
  183. extern struct cmd_element interface_pseudo_cmd;
  184. extern struct cmd_element no_interface_pseudo_cmd;
  185. #endif /* _ZEBRA_IF_H */