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

网络

开发平台:

Unix_Linux

  1. /* BGP attributes. 
  2.    Copyright (C) 1996, 97, 98 Kunihiro Ishiguro
  3. This file is part of GNU Zebra.
  4. GNU Zebra is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option) any
  7. 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 Free
  14. Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  15. 02111-1307, USA.  */
  16. /* Simple bit mapping. */
  17. #define BITMAP_NBBY 8
  18. #define SET_BITMAP(MAP, NUM) 
  19.         SET_FLAG (MAP[(NUM) / BITMAP_NBBY], 1 << ((NUM) % BITMAP_NBBY))
  20. #define CHECK_BITMAP(MAP, NUM) 
  21.         CHECK_FLAG (MAP[(NUM) / BITMAP_NBBY], 1 << ((NUM) % BITMAP_NBBY))
  22. /* BGP Attribute type range. */
  23. #define BGP_ATTR_TYPE_RANGE     256
  24. #define BGP_ATTR_BITMAP_SIZE    (BGP_ATTR_TYPE_RANGE / BITMAP_NBBY)
  25. /* BGP Attribute flags. */
  26. #define BGP_ATTR_FLAG_OPTIONAL  0x80 /* Attribute is optional. */
  27. #define BGP_ATTR_FLAG_TRANS     0x40 /* Attribute is transitive. */
  28. #define BGP_ATTR_FLAG_PARTIAL   0x20 /* Attribute is partial. */
  29. #define BGP_ATTR_FLAG_EXTLEN    0x10 /* Extended length flag. */
  30. /* BGP attribute header must bigger than 2. */
  31. #define BGP_ATTR_MIN_LEN        2       /* Attribute flag and type. */
  32. /* BGP attribute structure. */
  33. struct attr
  34. {
  35.   /* Reference count of this attribute. */
  36.   unsigned long refcnt;
  37.   /* Flag of attribute is set or not. */
  38.   u_int32_t flag;
  39.   /* Attributes. */
  40.   u_char origin;
  41.   struct in_addr nexthop;
  42.   u_int32_t med;
  43.   u_int32_t local_pref;
  44.   as_t aggregator_as;
  45.   struct in_addr aggregator_addr;
  46.   u_int32_t weight;
  47.   struct in_addr originator_id;
  48.   struct cluster_list *cluster;
  49.   u_char mp_nexthop_len;
  50. #ifdef HAVE_IPV6
  51.   struct in6_addr mp_nexthop_global;
  52.   struct in6_addr mp_nexthop_local;
  53. #endif /* HAVE_IPV6 */
  54.   struct in_addr mp_nexthop_global_in;
  55.   struct in_addr mp_nexthop_local_in;
  56.   /* AS Path structure */
  57.   struct aspath *aspath;
  58.   /* Community structure */
  59.   struct community *community;
  60.   /* Extended Communities attribute. */
  61.   struct ecommunity *ecommunity;
  62.   /* Unknown transitive attribute. */
  63.   struct transit *transit;
  64. };
  65. /* Router Reflector related structure. */
  66. struct cluster_list
  67. {
  68.   unsigned long refcnt;
  69.   int length;
  70.   struct in_addr *list;
  71. };
  72. /* Unknown transit attribute. */
  73. struct transit
  74. {
  75.   unsigned long refcnt;
  76.   int length;
  77.   u_char *val;
  78. };
  79. #define ATTR_FLAG_BIT(X)  (1 << ((X) - 1))
  80. /* Prototypes. */
  81. void bgp_attr_init ();
  82. int bgp_attr_parse (struct peer *, struct attr *, bgp_size_t,
  83.     struct bgp_nlri *, struct bgp_nlri *);
  84. int bgp_attr_check (struct peer *, struct attr *);
  85. struct attr *bgp_attr_intern (struct attr *attr);
  86. void bgp_attr_unintern (struct attr *);
  87. void bgp_attr_flush (struct attr *);
  88. struct attr *bgp_attr_default_set (struct attr *attr, u_char);
  89. struct attr *bgp_attr_default_intern (u_char);
  90. struct attr *bgp_attr_aggregate_intern (struct bgp *, u_char, struct aspath *, struct community *, int as_set);
  91. bgp_size_t bgp_packet_attribute (struct bgp *bgp, struct peer *, struct stream *, struct attr *, struct prefix *, afi_t, safi_t, struct peer *, struct prefix_rd *, u_char *);
  92. bgp_size_t bgp_packet_withdraw (struct peer *peer, struct stream *s, struct prefix *p, afi_t, safi_t, struct prefix_rd *, u_char *);
  93. void bgp_dump_routes_attr (struct stream *, struct attr *);
  94. unsigned int attrhash_key_make (struct attr *);
  95. int attrhash_cmp (struct attr *, struct attr *);
  96. void attr_show_all (struct vty *);
  97. /* Cluster list prototypes. */
  98. int cluster_loop_check (struct cluster_list *, struct in_addr);
  99. void cluster_unintern (struct cluster_list *);
  100. /* Transit attribute prototypes. */
  101. void transit_unintern (struct transit *);