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

网络

开发平台:

Unix_Linux

  1. /* BGP attributes management routines.
  2.    Copyright (C) 1996, 97, 98, 1999 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. #include <zebra.h>
  17. #include "linklist.h"
  18. #include "prefix.h"
  19. #include "memory.h"
  20. #include "vector.h"
  21. #include "vty.h"
  22. #include "stream.h"
  23. #include "log.h"
  24. #include "hash.h"
  25. #include "bgpd/bgpd.h"
  26. #include "bgpd/bgp_attr.h"
  27. #include "bgpd/bgp_route.h"
  28. #include "bgpd/bgp_aspath.h"
  29. #include "bgpd/bgp_community.h"
  30. #include "bgpd/bgp_debug.h"
  31. #include "bgpd/bgp_packet.h"
  32. #include "bgpd/bgp_ecommunity.h"
  33. /* Attribute strings for logging. */
  34. struct message attr_str [] = 
  35.   {
  36.     { BGP_ATTR_ORIGIN,           "ORIGIN" }, 
  37.     { BGP_ATTR_AS_PATH,          "AS_PATH" }, 
  38.     { BGP_ATTR_NEXT_HOP,         "NEXT_HOP" }, 
  39.     { BGP_ATTR_MULTI_EXIT_DISC,  "MULTI_EXIT_DISC" }, 
  40.     { BGP_ATTR_LOCAL_PREF,       "LOCAL_PREF" }, 
  41.     { BGP_ATTR_ATOMIC_AGGREGATE, "ATOMIC_AGGREGATE" }, 
  42.     { BGP_ATTR_AGGREGATOR,       "AGGREGATOR" }, 
  43.     { BGP_ATTR_COMMUNITIES,      "COMMUNITY" }, 
  44.     { BGP_ATTR_ORIGINATOR_ID,    "ORIGINATOR_ID" },
  45.     { BGP_ATTR_CLUSTER_LIST,     "CLUSTERLIST" }, 
  46.     { BGP_ATTR_DPA,              "DPA" },
  47.     { BGP_ATTR_ADVERTISER,       "ADVERTISER"} ,
  48.     { BGP_ATTR_RCID_PATH,        "RCID_PATH" },
  49.     { BGP_ATTR_MP_REACH_NLRI,    "MP_REACH_NLRI" },
  50.     { BGP_ATTR_MP_UNREACH_NLRI,  "MP_UNREACH_NLRI" },
  51.     { 0, NULL }
  52.   };
  53. struct hash *cluster_hash;
  54. void *
  55. cluster_hash_alloc (struct cluster_list *val)
  56. {
  57.   struct cluster_list *cluster;
  58.   cluster = XMALLOC (MTYPE_CLUSTER, sizeof (struct cluster_list));
  59.   cluster->length = val->length;
  60.   if (cluster->length)
  61.     {
  62.       cluster->list = XMALLOC (MTYPE_CLUSTER_VAL, val->length);
  63.       memcpy (cluster->list, val->list, val->length);
  64.     }
  65.   else
  66.     cluster->list = NULL;
  67.   cluster->refcnt = 0;
  68.   return cluster;
  69. }
  70. /* Cluster list related functions. */
  71. struct cluster_list *
  72. cluster_parse (caddr_t pnt, int length)
  73. {
  74.   struct cluster_list tmp;
  75.   struct cluster_list *cluster;
  76.   tmp.length = length;
  77.   tmp.list = (struct in_addr *) pnt;
  78.   cluster = hash_get (cluster_hash, &tmp, cluster_hash_alloc);
  79.   cluster->refcnt++;
  80.   return cluster;
  81. }
  82. int
  83. cluster_loop_check (struct cluster_list *cluster, struct in_addr originator)
  84. {
  85.   int i;
  86.     
  87.   for (i = 0; i < cluster->length / 4; i++)
  88.     if (cluster->list[i].s_addr == originator.s_addr)
  89.       return 1;
  90.   return 0;
  91. }
  92. unsigned int
  93. cluster_hash_key_make (struct cluster_list *cluster)
  94. {
  95.   unsigned int key = 0;
  96.   int length;
  97.   caddr_t pnt;
  98.   length = cluster->length;
  99.   pnt = (caddr_t) cluster->list;
  100.   
  101.   while (length)
  102.     key += pnt[--length];
  103.   return key;
  104. }
  105. int
  106. cluster_hash_cmp (struct cluster_list *cluster1, struct cluster_list *cluster2)
  107. {
  108.   if (cluster1->length == cluster2->length &&
  109.       memcmp (cluster1->list, cluster2->list, cluster1->length) == 0)
  110.     return 1;
  111.   return 0;
  112. }
  113. void
  114. cluster_free (struct cluster_list *cluster)
  115. {
  116.   if (cluster->list)
  117.     XFREE (MTYPE_CLUSTER_VAL, cluster->list);
  118.   XFREE (MTYPE_CLUSTER, cluster);
  119. }
  120. struct cluster_list *
  121. cluster_dup (struct cluster_list *cluster)
  122. {
  123.   struct cluster_list *new;
  124.   new = XMALLOC (MTYPE_CLUSTER, sizeof (struct cluster_list));
  125.   memset (new, 0, sizeof (struct cluster_list));
  126.   new->length = cluster->length;
  127.   if (cluster->length)
  128.     {
  129.       new->list = XMALLOC (MTYPE_CLUSTER_VAL, cluster->length);
  130.       memcpy (new->list, cluster->list, cluster->length);
  131.     }
  132.   else
  133.     new->list = NULL;
  134.   
  135.   return new;
  136. }
  137. struct cluster_list *
  138. cluster_intern (struct cluster_list *cluster)
  139. {
  140.   struct cluster_list *find;
  141.   find = hash_get (cluster_hash, cluster, cluster_hash_alloc);
  142.   find->refcnt++;
  143.   return find;
  144. }
  145. void
  146. cluster_unintern (struct cluster_list *cluster)
  147. {
  148.   struct cluster_list *ret;
  149.   if (cluster->refcnt)
  150.     cluster->refcnt--;
  151.   if (cluster->refcnt == 0)
  152.     {
  153.       ret = hash_release (cluster_hash, cluster);
  154.       cluster_free (cluster);
  155.     }
  156. }
  157. void
  158. cluster_init ()
  159. {
  160.   cluster_hash = hash_create (cluster_hash_key_make, cluster_hash_cmp);
  161. }
  162. /* Unknown transit attribute. */
  163. struct hash *transit_hash;
  164. void
  165. transit_free (struct transit *transit)
  166. {
  167.   if (transit->val)
  168.     XFREE (MTYPE_TRANSIT_VAL, transit->val);
  169.   XFREE (MTYPE_TRANSIT, transit);
  170. }
  171. void *
  172. transit_hash_alloc (struct transit *transit)
  173. {
  174.   /* Transit structure is already allocated.  */
  175.   return transit;
  176. }
  177. struct transit *
  178. transit_intern (struct transit *transit)
  179. {
  180.   struct transit *find;
  181.   find = hash_get (transit_hash, transit, transit_hash_alloc);
  182.   if (find != transit)
  183.     transit_free (transit);
  184.   find->refcnt++;
  185.   return find;
  186. }
  187. void
  188. transit_unintern (struct transit *transit)
  189. {
  190.   struct transit *ret;
  191.   if (transit->refcnt)
  192.     transit->refcnt--;
  193.   if (transit->refcnt == 0)
  194.     {
  195.       ret = hash_release (transit_hash, transit);
  196.       transit_free (transit);
  197.     }
  198. }
  199. unsigned int
  200. transit_hash_key_make (struct transit *transit)
  201. {
  202.   unsigned int key = 0;
  203.   int length;
  204.   caddr_t pnt;
  205.   length = transit->length;
  206.   pnt = (caddr_t) transit->val;
  207.   
  208.   while (length)
  209.     key += pnt[--length];
  210.   return key;
  211. }
  212. int
  213. transit_hash_cmp (struct transit *transit1, struct transit *transit2)
  214. {
  215.   if (transit1->length == transit2->length &&
  216.       memcmp (transit1->val, transit2->val, transit1->length) == 0)
  217.     return 1;
  218.   return 0;
  219. }
  220. void
  221. transit_init ()
  222. {
  223.   transit_hash = hash_create (transit_hash_key_make, transit_hash_cmp);
  224. }
  225. /* Attribute hash routines. */
  226. struct hash *attrhash;
  227. unsigned int
  228. attrhash_key_make (struct attr *attr)
  229. {
  230.   unsigned int key = 0;
  231.   key += attr->origin;
  232.   key += attr->nexthop.s_addr;
  233.   key += attr->med;
  234.   key += attr->local_pref;
  235.   key += attr->aggregator_as;
  236.   key += attr->aggregator_addr.s_addr;
  237.   key += attr->weight;
  238.   key += attr->mp_nexthop_global_in.s_addr;
  239.   if (attr->aspath)
  240.     key += aspath_key_make (attr->aspath);
  241.   if (attr->community)
  242.     key += community_hash_make (attr->community);
  243.   if (attr->ecommunity)
  244.     key += ecommunity_hash_make (attr->ecommunity);
  245.   if (attr->cluster)
  246.     key += cluster_hash_key_make (attr->cluster);
  247.   if (attr->transit)
  248.     key += transit_hash_key_make (attr->transit);
  249. #ifdef HAVE_IPV6
  250.   {
  251.     int i;
  252.    
  253.     key += attr->mp_nexthop_len;
  254.     for (i = 0; i < 16; i++)
  255.       key += attr->mp_nexthop_global.s6_addr[i];
  256.     for (i = 0; i < 16; i++)
  257.       key += attr->mp_nexthop_local.s6_addr[i];
  258.   }
  259. #endif /* HAVE_IPV6 */
  260.   return key;
  261. }
  262. int
  263. attrhash_cmp (struct attr *attr1, struct attr *attr2)
  264. {
  265.   if (attr1->flag == attr2->flag
  266.       && attr1->origin == attr2->origin
  267.       && attr1->nexthop.s_addr == attr2->nexthop.s_addr
  268.       && attr1->med == attr2->med
  269.       && attr1->local_pref == attr2->local_pref
  270.       && attr1->aggregator_as == attr2->aggregator_as
  271.       && attr1->aggregator_addr.s_addr == attr2->aggregator_addr.s_addr
  272.       && attr1->weight == attr2->weight
  273. #ifdef HAVE_IPV6
  274.       && attr1->mp_nexthop_len == attr2->mp_nexthop_len
  275.       && IPV6_ADDR_SAME (&attr1->mp_nexthop_global, &attr2->mp_nexthop_global)
  276.       && IPV6_ADDR_SAME (&attr1->mp_nexthop_local, &attr2->mp_nexthop_local)
  277. #endif /* HAVE_IPV6 */
  278.       && IPV4_ADDR_SAME (&attr1->mp_nexthop_global_in, &attr2->mp_nexthop_global_in)
  279.       && attr1->aspath == attr2->aspath
  280.       && attr1->community == attr2->community
  281.       && attr1->ecommunity == attr2->ecommunity
  282.       && attr1->cluster == attr2->cluster
  283.       && attr1->transit == attr2->transit)
  284.     return 1;
  285.   else
  286.     return 0;
  287. }
  288. void
  289. attrhash_init ()
  290. {
  291.   attrhash = hash_create (attrhash_key_make, attrhash_cmp);
  292. }
  293. void
  294. attr_show_all_iterator (struct hash_backet *backet, struct vty *vty)
  295. {
  296.   struct attr *attr = backet->data;
  297.   vty_out (vty, "attr[%ld] nexthop %s%s", attr->refcnt, 
  298.    inet_ntoa (attr->nexthop), VTY_NEWLINE);
  299. }
  300. void
  301. attr_show_all (struct vty *vty)
  302. {
  303.   hash_iterate (attrhash, 
  304. (void (*)(struct hash_backet *, void *))
  305. attr_show_all_iterator,
  306. vty);
  307. }
  308. void *
  309. bgp_attr_hash_alloc (struct attr *val)
  310. {
  311.   struct attr *attr;
  312.   attr = XMALLOC (MTYPE_ATTR, sizeof (struct attr));
  313.   *attr = *val;
  314.   attr->refcnt = 0;
  315.   return attr;
  316. }
  317. /* Internet argument attribute. */
  318. struct attr *
  319. bgp_attr_intern (struct attr *attr)
  320. {
  321.   struct attr *find;
  322.   /* Intern referenced strucutre. */
  323.   if (attr->aspath)
  324.     {
  325.       if (! attr->aspath->refcnt)
  326. attr->aspath = aspath_intern (attr->aspath);
  327.       else
  328. attr->aspath->refcnt++;
  329.     }
  330.   if (attr->community)
  331.     {
  332.       if (! attr->community->refcnt)
  333. attr->community = community_intern (attr->community);
  334.       else
  335. attr->community->refcnt++;
  336.     }
  337.   if (attr->ecommunity)
  338.     {
  339.       if (! attr->ecommunity->refcnt)
  340. attr->ecommunity = ecommunity_intern (attr->ecommunity);
  341.       else
  342. attr->ecommunity->refcnt++;
  343.     }
  344.   if (attr->cluster)
  345.     {
  346.       if (! attr->cluster->refcnt)
  347. attr->cluster = cluster_intern (attr->cluster);
  348.       else
  349. attr->cluster->refcnt++;
  350.     }
  351.   if (attr->transit)
  352.     {
  353.       if (! attr->transit->refcnt)
  354. attr->transit = transit_intern (attr->transit);
  355.       else
  356. attr->transit->refcnt++;
  357.     }
  358.   find = (struct attr *) hash_get (attrhash, attr, bgp_attr_hash_alloc);
  359.   find->refcnt++;
  360.   return find;
  361. }
  362. /* Make network statement's attribute. */
  363. struct attr *
  364. bgp_attr_default_set (struct attr *attr, u_char origin)
  365. {
  366.   memset (attr, 0, sizeof (struct attr));
  367.   attr->origin = origin;
  368.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGIN);
  369.   attr->aspath = aspath_empty ();
  370.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_AS_PATH);
  371.   attr->weight = 32768;
  372.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP);
  373. #ifdef HAVE_IPV6
  374.   attr->mp_nexthop_len = 16;
  375. #endif
  376.   return attr;
  377. }
  378. /* Make network statement's attribute. */
  379. struct attr *
  380. bgp_attr_default_intern (u_char origin)
  381. {
  382.   struct attr attr;
  383.   struct attr *new;
  384.   memset (&attr, 0, sizeof (struct attr));
  385.   attr.origin = origin;
  386.   attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGIN);
  387.   attr.aspath = aspath_empty ();
  388.   attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_AS_PATH);
  389.   attr.weight = 32768;
  390.   attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP);
  391. #ifdef HAVE_IPV6
  392.   attr.mp_nexthop_len = 16;
  393. #endif
  394.   new = bgp_attr_intern (&attr);
  395.   aspath_unintern (new->aspath);
  396.   return new;
  397. }
  398. struct attr *
  399. bgp_attr_aggregate_intern (struct bgp *bgp, u_char origin,
  400.    struct aspath *aspath,
  401.    struct community *community, int as_set)
  402. {
  403.   struct attr attr;
  404.   struct attr *new;
  405.   memset (&attr, 0, sizeof (struct attr));
  406.   /* Origin attribute. */
  407.   attr.origin = origin;
  408.   attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGIN);
  409.   /* AS path attribute. */
  410.   if (aspath)
  411.     attr.aspath = aspath_intern (aspath);
  412.   else
  413.     attr.aspath = aspath_empty ();
  414.   attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_AS_PATH);
  415.   /* Next hop attribute.  */
  416.   attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP);
  417.   if (community)
  418.     {
  419.       attr.community = community;
  420.       attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES);
  421.     }
  422.   attr.weight = 32768;
  423. #ifdef HAVE_IPV6
  424.   attr.mp_nexthop_len = 16;
  425. #endif
  426.   if (! as_set)
  427.     attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE);
  428.   attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR);
  429.   if (CHECK_FLAG (bgp->config, BGP_CONFIG_CONFEDERATION))
  430.     attr.aggregator_as = bgp->confed_id;
  431.   else
  432.     attr.aggregator_as = bgp->as;
  433.   attr.aggregator_addr = bgp->router_id;
  434.   new = bgp_attr_intern (&attr);
  435.   aspath_unintern (new->aspath);
  436.   return new;
  437. }
  438. /* Free bgp attribute and aspath. */
  439. void
  440. bgp_attr_unintern (struct attr *attr)
  441. {
  442.   struct attr *ret;
  443.   struct aspath *aspath;
  444.   struct community *community;
  445.   struct ecommunity *ecommunity;
  446.   struct cluster_list *cluster;
  447.   struct transit *transit;
  448.   /* Decrement attribute reference. */
  449.   attr->refcnt--;
  450.   aspath = attr->aspath;
  451.   community = attr->community;
  452.   ecommunity = attr->ecommunity;
  453.   cluster = attr->cluster;
  454.   transit = attr->transit;
  455.   /* If reference becomes zero then free attribute object. */
  456.   if (attr->refcnt == 0)
  457.     {    
  458.       ret = hash_release (attrhash, attr);
  459.       assert (ret != NULL);
  460.       XFREE (MTYPE_ATTR, attr);
  461.     }
  462.   /* aspath refcount shoud be decrement. */
  463.   if (aspath)
  464.     aspath_unintern (aspath);
  465.   if (community)
  466.     community_unintern (community);
  467.   if (ecommunity)
  468.     ecommunity_unintern (ecommunity);
  469.   if (cluster)
  470.     cluster_unintern (cluster);
  471.   if (transit)
  472.     transit_unintern (transit);
  473. }
  474. void
  475. bgp_attr_flush (struct attr *attr)
  476. {
  477.   if (attr->aspath && ! attr->aspath->refcnt)
  478.     aspath_free (attr->aspath);
  479.   if (attr->community && ! attr->community->refcnt)
  480.     community_free (attr->community);
  481.   if (attr->ecommunity && ! attr->ecommunity->refcnt)
  482.     ecommunity_free (attr->ecommunity);
  483.   if (attr->cluster && ! attr->cluster->refcnt)
  484.     cluster_free (attr->cluster);
  485.   if (attr->transit && ! attr->transit->refcnt)
  486.     transit_free (attr->transit);
  487. }
  488. /* Get origin attribute of the update message. */
  489. int
  490. bgp_attr_origin (struct peer *peer, bgp_size_t length, 
  491.  struct attr *attr, u_char flag, u_char *startp)
  492. {
  493.   bgp_size_t total;
  494.   /* total is entire attribute length include Attribute Flags (1),
  495.      Attribute Type code (1) and Attribute length (1 or 2).  */
  496.   total = length + (CHECK_FLAG (flag, BGP_ATTR_FLAG_EXTLEN) ? 4 : 3);
  497.   /* If any recognized attribute has Attribute Flags that conflict
  498.      with the Attribute Type Code, then the Error Subcode is set to
  499.      Attribute Flags Error.  The Data field contains the erroneous
  500.      attribute (type, length and value). */
  501.   if (flag != BGP_ATTR_FLAG_TRANS)
  502.     {
  503.       zlog (peer->log, LOG_ERR, 
  504.     "Origin attribute flag isn't transitive %d", flag);
  505.       bgp_notify_send_with_data (peer, 
  506.  BGP_NOTIFY_UPDATE_ERR, 
  507.  BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR,
  508.  startp, total);
  509.       return -1;
  510.     }
  511.   /* If any recognized attribute has Attribute Length that conflicts
  512.      with the expected length (based on the attribute type code), then
  513.      the Error Subcode is set to Attribute Length Error.  The Data
  514.      field contains the erroneous attribute (type, length and
  515.      value). */
  516.   if (length != 1)
  517.     {
  518.       zlog (peer->log, LOG_ERR, "Origin attribute length is not one %d",
  519.     length);
  520.       bgp_notify_send_with_data (peer, BGP_NOTIFY_UPDATE_ERR, 
  521.  BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
  522.  startp, total);
  523.       return -1;
  524.     }
  525.   /* Fetch origin attribute. */
  526.   attr->origin = stream_getc (BGP_INPUT (peer));
  527.   /* If the ORIGIN attribute has an undefined value, then the Error
  528.      Subcode is set to Invalid Origin Attribute.  The Data field
  529.      contains the unrecognized attribute (type, length and value). */
  530.   if ((attr->origin != BGP_ORIGIN_IGP)
  531.       && (attr->origin != BGP_ORIGIN_EGP)
  532.       && (attr->origin != BGP_ORIGIN_INCOMPLETE))
  533.     {
  534.       zlog (peer->log, LOG_ERR, "Origin attribute value is invalid %d",
  535.     attr->origin);
  536.       bgp_notify_send_with_data (peer, 
  537.  BGP_NOTIFY_UPDATE_ERR, 
  538.  BGP_NOTIFY_UPDATE_INVAL_ORIGIN,
  539.  startp, total);
  540.       return -1;
  541.     }
  542.   /* Set oring attribute flag. */
  543.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGIN);
  544.   return 0;
  545. }
  546. /* Parse AS path information.  This function is wrapper of
  547.    aspath_parse. */
  548. int
  549. bgp_attr_aspath (struct peer *peer, bgp_size_t length, 
  550.  struct attr *attr, u_char flag, u_char *startp)
  551. {
  552.   struct bgp *bgp;
  553.   struct aspath *aspath;
  554.   bgp_size_t total;
  555.   total = length + (CHECK_FLAG (flag, BGP_ATTR_FLAG_EXTLEN) ? 4 : 3);
  556.   /* Flag check. */
  557.   if (CHECK_FLAG (flag, BGP_ATTR_FLAG_OPTIONAL)
  558.       || ! CHECK_FLAG (flag, BGP_ATTR_FLAG_TRANS))
  559.     {
  560.       zlog (peer->log, LOG_ERR, 
  561.     "Origin attribute flag isn't transitive %d", flag);
  562.       bgp_notify_send_with_data (peer, 
  563.  BGP_NOTIFY_UPDATE_ERR, 
  564.  BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR,
  565.  startp, total);
  566.       return -1;
  567.     }
  568.   /* In case of IBGP, length will be zero. */
  569.   attr->aspath = aspath_parse (stream_pnt (peer->ibuf), length);
  570.   if (! attr->aspath)
  571.     {
  572.       zlog (peer->log, LOG_ERR, "Malformed AS path length is %d", length);
  573.       bgp_notify_send (peer, 
  574.        BGP_NOTIFY_UPDATE_ERR, 
  575.        BGP_NOTIFY_UPDATE_MAL_AS_PATH);
  576.       return -1;
  577.     }
  578.   bgp = peer->bgp;
  579.     
  580.   /* First AS check for EBGP. */
  581.   if (! bgp_flag_check (bgp, BGP_FLAG_NO_ENFORCE_FIRST_AS))
  582.     {
  583.       if (peer_sort (peer) == BGP_PEER_EBGP 
  584.   && ! aspath_firstas_check (attr->aspath, peer->as))
  585.   {
  586.     zlog (peer->log, LOG_ERR,
  587.   "%s incorrect first AS (must be %d)", peer->host, peer->as);
  588.     bgp_notify_send (peer,
  589.      BGP_NOTIFY_UPDATE_ERR,
  590.      BGP_NOTIFY_UPDATE_MAL_AS_PATH);
  591.   return -1;
  592.   }
  593.     }
  594.   /* local-as prepend */
  595.   if (peer->change_local_as &&
  596.       ! CHECK_FLAG (peer->flags, PEER_FLAG_LOCAL_AS_NO_PREPEND))
  597.     {
  598.       aspath = aspath_dup (attr->aspath);
  599.       aspath = aspath_add_seq (aspath, peer->change_local_as);
  600.       aspath_unintern (attr->aspath);
  601.       attr->aspath = aspath_intern (aspath);
  602.     }
  603.   /* Forward pointer. */
  604.   stream_forward (peer->ibuf, length);
  605.   /* Set aspath attribute flag. */
  606.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_AS_PATH);
  607.   return 0;
  608. }
  609. /* Nexthop attribute. */
  610. int
  611. bgp_attr_nexthop (struct peer *peer, bgp_size_t length, 
  612.   struct attr *attr, u_char flag, u_char *startp)
  613. {
  614.   bgp_size_t total;
  615.   total = length + (CHECK_FLAG (flag, BGP_ATTR_FLAG_EXTLEN) ? 4 : 3);
  616.   /* Flag check. */
  617.   if (CHECK_FLAG (flag, BGP_ATTR_FLAG_OPTIONAL)
  618.       || ! CHECK_FLAG (flag, BGP_ATTR_FLAG_TRANS))
  619.     {
  620.       zlog (peer->log, LOG_ERR, 
  621.     "Origin attribute flag isn't transitive %d", flag);
  622.       bgp_notify_send_with_data (peer, 
  623.  BGP_NOTIFY_UPDATE_ERR, 
  624.  BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR,
  625.  startp, total);
  626.       return -1;
  627.     }
  628.   /* Check nexthop attribute length. */
  629.   if (length != 4)
  630.     {
  631.       zlog (peer->log, LOG_ERR, "Nexthop attribute length isn't four [%d]",
  632.     length);
  633.       bgp_notify_send_with_data (peer, 
  634.  BGP_NOTIFY_UPDATE_ERR, 
  635.  BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
  636.  startp, total);
  637.       return -1;
  638.     }
  639.   attr->nexthop.s_addr = stream_get_ipv4 (peer->ibuf);
  640.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP);
  641.   return 0;
  642. }
  643. /* MED atrribute. */
  644. int
  645. bgp_attr_med (struct peer *peer, bgp_size_t length, 
  646.       struct attr *attr, u_char flag, u_char *startp)
  647. {
  648.   bgp_size_t total;
  649.   total = length + (CHECK_FLAG (flag, BGP_ATTR_FLAG_EXTLEN) ? 4 : 3);
  650.   /* Length check. */
  651.   if (length != 4)
  652.     {
  653.       zlog (peer->log, LOG_ERR, 
  654.     "MED attribute length isn't four [%d]", length);
  655.       
  656.       bgp_notify_send_with_data (peer, 
  657.  BGP_NOTIFY_UPDATE_ERR, 
  658.  BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
  659.  startp, total);
  660.       return -1;
  661.     }
  662.   attr->med = stream_getl (peer->ibuf);
  663.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC);
  664.   return 0;
  665. }
  666. /* Local preference attribute. */
  667. int
  668. bgp_attr_local_pref (struct peer *peer, bgp_size_t length, 
  669.      struct attr *attr, u_char flag)
  670. {
  671.   /* If it is contained in an UPDATE message that is received from an
  672.      external peer, then this attribute MUST be ignored by the
  673.      receiving speaker. */
  674.   if (peer_sort (peer) == BGP_PEER_EBGP)
  675.     {
  676.       stream_forward (peer->ibuf, length);
  677.       return 0;
  678.     }
  679.   if (length == 4) 
  680.     attr->local_pref = stream_getl (peer->ibuf);
  681.   else 
  682.     attr->local_pref = 0;
  683.   /* Set atomic aggregate flag. */
  684.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF);
  685.   return 0;
  686. }
  687. /* Atomic aggregate. */
  688. int
  689. bgp_attr_atomic (struct peer *peer, bgp_size_t length, 
  690.  struct attr *attr, u_char flag)
  691. {
  692.   if (length != 0)
  693.     {
  694.       zlog (peer->log, LOG_ERR, "Bad atomic aggregate length %d", length);
  695.       bgp_notify_send (peer, 
  696.        BGP_NOTIFY_UPDATE_ERR, 
  697.        BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
  698.       return -1;
  699.     }
  700.   /* Set atomic aggregate flag. */
  701.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE);
  702.   return 0;
  703. }
  704. /* Aggregator attribute */
  705. int
  706. bgp_attr_aggregator (struct peer *peer, bgp_size_t length,
  707.      struct attr *attr, u_char flag)
  708. {
  709.   if (length != 6)
  710.     {
  711.       zlog (peer->log, LOG_ERR, "Aggregator length is not 6 [%d]", length);
  712.       bgp_notify_send (peer,
  713.        BGP_NOTIFY_UPDATE_ERR,
  714.        BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
  715.       return -1;
  716.     }
  717.   attr->aggregator_as = stream_getw (peer->ibuf);
  718.   attr->aggregator_addr.s_addr = stream_get_ipv4 (peer->ibuf);
  719.   /* Set atomic aggregate flag. */
  720.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR);
  721.   return 0;
  722. }
  723. /* Community attribute. */
  724. int
  725. bgp_attr_community (struct peer *peer, bgp_size_t length, 
  726.     struct attr *attr, u_char flag)
  727. {
  728.   if (length == 0)
  729.     attr->community = NULL;
  730.   else
  731.     {
  732.       attr->community = community_parse (stream_pnt (peer->ibuf), length);
  733.       stream_forward (peer->ibuf, length);
  734.     }
  735.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES);
  736.   return 0;
  737. }
  738. /* Originator ID attribute. */
  739. int
  740. bgp_attr_originator_id (struct peer *peer, bgp_size_t length, 
  741. struct attr *attr, u_char flag)
  742. {
  743.   if (length != 4)
  744.     {
  745.       zlog (peer->log, LOG_ERR, "Bad originator ID length %d", length);
  746.       bgp_notify_send (peer, 
  747.        BGP_NOTIFY_UPDATE_ERR, 
  748.        BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
  749.       return -1;
  750.     }
  751.   attr->originator_id.s_addr = stream_get_ipv4 (peer->ibuf);
  752.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGINATOR_ID);
  753.   return 0;
  754. }
  755. /* Cluster list attribute. */
  756. int
  757. bgp_attr_cluster_list (struct peer *peer, bgp_size_t length, 
  758.        struct attr *attr, u_char flag)
  759. {
  760.   /* Check length. */
  761.   if (length % 4)
  762.     {
  763.       zlog (peer->log, LOG_ERR, "Bad cluster list length %d", length);
  764.       bgp_notify_send (peer, 
  765.        BGP_NOTIFY_UPDATE_ERR, 
  766.        BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
  767.       return -1;
  768.     }
  769.   attr->cluster = cluster_parse (stream_pnt (peer->ibuf), length);
  770.   stream_forward (peer->ibuf, length);;
  771.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_CLUSTER_LIST);
  772.   return 0;
  773. }
  774. /* Multiprotocol reachability information parse. */
  775. int
  776. bgp_mp_reach_parse (struct peer *peer, bgp_size_t length, struct attr *attr,
  777.     struct bgp_nlri *mp_update)
  778. {
  779.   u_int16_t afi;
  780.   u_char safi;
  781.   u_char snpa_num;
  782.   u_char snpa_len;
  783.   u_char *lim;
  784.   bgp_size_t nlri_len;
  785.   int ret;
  786.   struct stream *s;
  787.   
  788.   /* Set end of packet. */
  789.   s = peer->ibuf;
  790.   lim = stream_pnt (s) + length;
  791.   /* Load AFI, SAFI. */
  792.   afi = stream_getw (s);
  793.   safi = stream_getc (s);
  794.   /* Get nexthop length. */
  795.   attr->mp_nexthop_len = stream_getc (s);
  796.   /* Nexthop length check. */
  797.   switch (attr->mp_nexthop_len)
  798.     {
  799.     case 4:
  800.       stream_get (&attr->mp_nexthop_global_in, s, 4);
  801.       break;
  802.     case 12:
  803.       {
  804. u_int32_t rd_high;
  805. u_int32_t rd_low;
  806. rd_high = stream_getl (s);
  807. rd_low = stream_getl (s);
  808. stream_get (&attr->mp_nexthop_global_in, s, 4);
  809.       }
  810.       break;
  811. #ifdef HAVE_IPV6
  812.     case 16:
  813.       stream_get (&attr->mp_nexthop_global, s, 16);
  814.       break;
  815.     case 32:
  816.       stream_get (&attr->mp_nexthop_global, s, 16);
  817.       stream_get (&attr->mp_nexthop_local, s, 16);
  818.       if (! IN6_IS_ADDR_LINKLOCAL (&attr->mp_nexthop_local))
  819. {
  820.   char buf1[INET6_ADDRSTRLEN];
  821.   char buf2[INET6_ADDRSTRLEN];
  822.   if (BGP_DEBUG (update, UPDATE_IN))
  823.     zlog_warn ("%s got two nexthop %s %s but second one is not a link-local nexthop", peer->host,
  824.        inet_ntop (AF_INET6, &attr->mp_nexthop_global,
  825.   buf1, INET6_ADDRSTRLEN),
  826.        inet_ntop (AF_INET6, &attr->mp_nexthop_local,
  827.   buf2, INET6_ADDRSTRLEN));
  828.   attr->mp_nexthop_len = 16;
  829. }
  830.       break;
  831. #endif /* HAVE_IPV6 */
  832.     default:
  833.       zlog_info ("Wrong multiprotocol next hop length: %d", 
  834.  attr->mp_nexthop_len);
  835.       return -1;
  836.       break;
  837.     }
  838.   snpa_num = stream_getc (s);
  839.   while (snpa_num--)
  840.     {
  841.       snpa_len = stream_getc (s);
  842.       stream_forward (s, (snpa_len + 1) >> 1);
  843.     }
  844.   
  845.   nlri_len = lim - stream_pnt (s);
  846.  
  847.   if (safi != BGP_SAFI_VPNV4)
  848.     {
  849.       ret = bgp_nlri_sanity_check (peer, afi, stream_pnt (s), nlri_len);
  850.       if (ret < 0)
  851. return -1;
  852.     }
  853.   mp_update->afi = afi;
  854.   mp_update->safi = safi;
  855.   mp_update->nlri = stream_pnt (s);
  856.   mp_update->length = nlri_len;
  857.   stream_forward (s, nlri_len);
  858.   return 0;
  859. }
  860. /* Multiprotocol unreachable parse */
  861. int
  862. bgp_mp_unreach_parse (struct peer *peer, int length, 
  863.       struct bgp_nlri *mp_withdraw)
  864. {
  865.   struct stream *s;
  866.   u_int16_t afi;
  867.   u_char safi;
  868.   u_char *lim;
  869.   u_int16_t withdraw_len;
  870.   int ret;
  871.   s = peer->ibuf;
  872.   lim = stream_pnt (s) + length;
  873.   afi = stream_getw (s);
  874.   safi = stream_getc (s);
  875.   withdraw_len = lim - stream_pnt (s);
  876.   if (safi != BGP_SAFI_VPNV4)
  877.     {
  878.       ret = bgp_nlri_sanity_check (peer, afi, stream_pnt (s), withdraw_len);
  879.       if (ret < 0)
  880. return -1;
  881.     }
  882.   mp_withdraw->afi = afi;
  883.   mp_withdraw->safi = safi;
  884.   mp_withdraw->nlri = stream_pnt (s);
  885.   mp_withdraw->length = withdraw_len;
  886.   stream_forward (s, withdraw_len);
  887.   return 0;
  888. }
  889. /* Extended Community attribute. */
  890. int
  891. bgp_attr_ext_communities (struct peer *peer, bgp_size_t length, 
  892.   struct attr *attr, u_char flag)
  893. {
  894.   if (length == 0)
  895.     attr->ecommunity = NULL;
  896.   else
  897.     {
  898.       attr->ecommunity = ecommunity_parse (stream_pnt (peer->ibuf), length);
  899.       stream_forward (peer->ibuf, length);
  900.     }
  901.   attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_EXT_COMMUNITIES);
  902.   return 0;
  903. }
  904. /* BGP unknown attribute treatment. */
  905. int
  906. bgp_attr_unknown (struct peer *peer, struct attr *attr, u_char flag,
  907.   u_char type, bgp_size_t length, u_char *startp)
  908. {
  909.   bgp_size_t total;
  910.   struct transit *transit;
  911.   if (BGP_DEBUG (normal, NORMAL))
  912.     zlog_info ("%s Unknown attribute is received (type %d, length %d)",
  913.        peer->host, type, length); 
  914.   /* Forward read pointer of input stream. */
  915.   stream_forward (peer->ibuf, length);
  916.   /* Adjest total length to include type and length. */
  917.   total = length + (CHECK_FLAG (flag, BGP_ATTR_FLAG_EXTLEN) ? 4 : 3);
  918.   /* If any of the mandatory well-known attributes are not recognized,
  919.      then the Error Subcode is set to Unrecognized Well-known
  920.      Attribute.  The Data field contains the unrecognized attribute
  921.      (type, length and value). */
  922.   if (! CHECK_FLAG (flag, BGP_ATTR_FLAG_OPTIONAL))
  923.     {
  924.       /* Adjust startp to do not include flag value. */
  925.       bgp_notify_send_with_data (peer, 
  926.  BGP_NOTIFY_UPDATE_ERR, 
  927.  BGP_NOTIFY_UPDATE_UNREC_ATTR,
  928.  startp, total);
  929.       return -1;
  930.     }
  931.   /* Unrecognized non-transitive optional attributes must be quietly
  932.      ignored and not passed along to other BGP peers. */
  933.   if (! CHECK_FLAG (flag, BGP_ATTR_FLAG_TRANS))
  934.     return 0;
  935.   /* If a path with recognized transitive optional attribute is
  936.      accepted and passed along to other BGP peers and the Partial bit
  937.      in the Attribute Flags octet is set to 1 by some previous AS, it
  938.      is not set back to 0 by the current AS. */
  939.   SET_FLAG (*startp, BGP_ATTR_FLAG_PARTIAL);
  940.   /* Store transitive attribute to the end of attr->transit. */
  941.   if (! attr->transit)
  942.     {
  943.       attr->transit = XMALLOC (MTYPE_TRANSIT, sizeof (struct transit));
  944.       memset (attr->transit, 0, sizeof (struct transit));
  945.     }
  946.   transit = attr->transit;
  947.   if (transit->val)
  948.     transit->val = XREALLOC (MTYPE_TRANSIT_VAL, transit->val, 
  949.      transit->length + total);
  950.   else
  951.     transit->val = XMALLOC (MTYPE_TRANSIT_VAL, total);
  952.   memcpy (transit->val + transit->length, startp, total);
  953.   transit->length += total;
  954.   return 0;
  955. }
  956. /* Read attribute of update packet.  This function is called from
  957.    bgp_update() in bgpd.c.  */
  958. int
  959. bgp_attr_parse (struct peer *peer, struct attr *attr, bgp_size_t size,
  960. struct bgp_nlri *mp_update, struct bgp_nlri *mp_withdraw)
  961. {
  962.   int ret;
  963.   u_char flag;
  964.   u_char type;
  965.   bgp_size_t length;
  966.   u_char *startp, *endp;
  967.   u_char *attr_endp;
  968.   u_char seen[BGP_ATTR_BITMAP_SIZE];
  969.   /* Initialize bitmap. */
  970.   memset (seen, 0, BGP_ATTR_BITMAP_SIZE);
  971.   /* End pointer of BGP attribute. */
  972.   endp = BGP_INPUT_PNT (peer) + size;
  973.   /* Get attributes to the end of attribute length. */
  974.   while (BGP_INPUT_PNT (peer) < endp)
  975.     {
  976.       /* Check remaining length check.*/
  977.       if (endp - BGP_INPUT_PNT (peer) < BGP_ATTR_MIN_LEN)
  978. {
  979.   zlog (peer->log, LOG_WARNING, 
  980. "%s error BGP attribute length %d is smaller than min len",
  981. peer->host, endp - STREAM_PNT (BGP_INPUT (peer)));
  982.   bgp_notify_send (peer, 
  983.    BGP_NOTIFY_UPDATE_ERR, 
  984.    BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
  985.   return -1;
  986. }
  987.       /* Fetch attribute flag and type. */
  988.       startp = BGP_INPUT_PNT (peer);
  989.       flag = stream_getc (BGP_INPUT (peer));
  990.       type = stream_getc (BGP_INPUT (peer));
  991.       /* Check extended attribue length bit. */
  992.       if (CHECK_FLAG (flag, BGP_ATTR_FLAG_EXTLEN))
  993. length = stream_getw (BGP_INPUT (peer));
  994.       else
  995. length = stream_getc (BGP_INPUT (peer));
  996.       
  997.       /* If any attribute appears more than once in the UPDATE
  998.  message, then the Error Subcode is set to Malformed Attribute
  999.  List. */
  1000.       if (CHECK_BITMAP (seen, type))
  1001. {
  1002.   zlog (peer->log, LOG_WARNING,
  1003. "%s error BGP attribute type %d appears twice in a message",
  1004. peer->host, type);
  1005.   bgp_notify_send (peer, 
  1006.    BGP_NOTIFY_UPDATE_ERR, 
  1007.    BGP_NOTIFY_UPDATE_MAL_ATTR);
  1008.   return -1;
  1009. }
  1010.       /* Set type to bitmap to check duplicate attribute.  `type' is
  1011.  unsigned char so it never overflow bitmap range. */
  1012.       SET_BITMAP (seen, type);
  1013.       /* Overflow check. */
  1014.       attr_endp =  BGP_INPUT_PNT (peer) + length;
  1015.       if (attr_endp > endp)
  1016. {
  1017.   zlog (peer->log, LOG_WARNING, 
  1018. "%s BGP type %d length %d is too large, attribute total length is %d.  attr_endp is %p.  endp is %p", peer->host, type, length, size, attr_endp, endp);
  1019.   bgp_notify_send (peer, 
  1020.    BGP_NOTIFY_UPDATE_ERR, 
  1021.    BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
  1022.   return -1;
  1023. }
  1024.       /* OK check attribute and store it's value. */
  1025.       switch (type)
  1026. {
  1027. case BGP_ATTR_ORIGIN:
  1028.   ret = bgp_attr_origin (peer, length, attr, flag, startp);
  1029.   break;
  1030. case BGP_ATTR_AS_PATH:
  1031.   ret = bgp_attr_aspath (peer, length, attr, flag, startp);
  1032.   break;
  1033. case BGP_ATTR_NEXT_HOP:
  1034.   ret = bgp_attr_nexthop (peer, length, attr, flag, startp);
  1035.   break;
  1036. case BGP_ATTR_MULTI_EXIT_DISC:
  1037.   ret = bgp_attr_med (peer, length, attr, flag, startp);
  1038.   break;
  1039. case BGP_ATTR_LOCAL_PREF:
  1040.   ret = bgp_attr_local_pref (peer, length, attr, flag);
  1041.   break;
  1042. case BGP_ATTR_ATOMIC_AGGREGATE:
  1043.   ret = bgp_attr_atomic (peer, length, attr, flag);
  1044.   break;
  1045. case BGP_ATTR_AGGREGATOR:
  1046.   ret = bgp_attr_aggregator (peer, length, attr, flag);
  1047.   break;
  1048. case BGP_ATTR_COMMUNITIES:
  1049.   ret = bgp_attr_community (peer, length, attr, flag);
  1050.   break;
  1051. case BGP_ATTR_ORIGINATOR_ID:
  1052.   ret = bgp_attr_originator_id (peer, length, attr, flag);
  1053.   break;
  1054. case BGP_ATTR_CLUSTER_LIST:
  1055.   ret = bgp_attr_cluster_list (peer, length, attr, flag);
  1056.   break;
  1057. case BGP_ATTR_MP_REACH_NLRI:
  1058.   ret = bgp_mp_reach_parse (peer, length, attr, mp_update);
  1059.   break;
  1060. case BGP_ATTR_MP_UNREACH_NLRI:
  1061.   ret = bgp_mp_unreach_parse (peer, length, mp_withdraw);
  1062.   break;
  1063. case BGP_ATTR_EXT_COMMUNITIES:
  1064.   ret = bgp_attr_ext_communities (peer, length, attr, flag);
  1065.   break;
  1066. default:
  1067.   ret = bgp_attr_unknown (peer, attr, flag, type, length, startp);
  1068.   break;
  1069. }
  1070.       /* If error occured immediately return to the caller. */
  1071.       if (ret < 0)
  1072. return ret;
  1073.       /* Check the fetched length. */
  1074.       if (BGP_INPUT_PNT (peer) != attr_endp)
  1075. {
  1076.   zlog (peer->log, LOG_WARNING, 
  1077. "%s BGP attribute fetch error", peer->host);
  1078.   bgp_notify_send (peer, 
  1079.    BGP_NOTIFY_UPDATE_ERR, 
  1080.    BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
  1081.   return -1;
  1082. }
  1083.     }
  1084.   /* Check final read pointer is same as end pointer. */
  1085.   if (BGP_INPUT_PNT (peer) != endp)
  1086.     {
  1087.       zlog (peer->log, LOG_WARNING, 
  1088.     "%s BGP attribute length mismatch", peer->host);
  1089.       bgp_notify_send (peer, 
  1090.        BGP_NOTIFY_UPDATE_ERR, 
  1091.        BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
  1092.       return -1;
  1093.     }
  1094.   /* Finally intern unknown attribute. */
  1095.   if (attr->transit)
  1096.     attr->transit = transit_intern (attr->transit);
  1097.   return 0;
  1098. }
  1099. /* Well-known attribute check. */
  1100. int
  1101. bgp_attr_check (struct peer *peer, struct attr *attr)
  1102. {
  1103.   u_char type = 0;
  1104.   
  1105.   if (! CHECK_FLAG (attr->flag, ATTR_FLAG_BIT (BGP_ATTR_ORIGIN)))
  1106.     type = BGP_ATTR_ORIGIN;
  1107.   if (! CHECK_FLAG (attr->flag, ATTR_FLAG_BIT (BGP_ATTR_AS_PATH)))
  1108.     type = BGP_ATTR_AS_PATH;
  1109.   if (! CHECK_FLAG (attr->flag, ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP)))
  1110.     type = BGP_ATTR_NEXT_HOP;
  1111.   if (peer_sort (peer) == BGP_PEER_IBGP
  1112.       && ! CHECK_FLAG (attr->flag, ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF)))
  1113.     type = BGP_ATTR_LOCAL_PREF;
  1114.   if (type)
  1115.     {
  1116.       zlog (peer->log, LOG_WARNING, 
  1117.     "%s Missing well-known attribute %d.",
  1118.     peer->host, type);
  1119.       bgp_notify_send_with_data (peer, 
  1120.  BGP_NOTIFY_UPDATE_ERR, 
  1121.  BGP_NOTIFY_UPDATE_MISS_ATTR,
  1122.  &type, 1);
  1123.       return -1;
  1124.     }
  1125.   return 0;
  1126. }
  1127. int stream_put_prefix (struct stream *, struct prefix *);
  1128. /* Make attribute packet. */
  1129. bgp_size_t
  1130. bgp_packet_attribute (struct bgp *bgp, struct peer *peer,
  1131.       struct stream *s, struct attr *attr, struct prefix *p,
  1132.       afi_t afi, safi_t safi, struct peer *from,
  1133.       struct prefix_rd *prd, u_char *tag)
  1134. {
  1135.   unsigned long cp;
  1136.   struct aspath *aspath;
  1137.   if (! bgp)
  1138.     bgp = bgp_get_default ();
  1139.   /* Remember current pointer. */
  1140.   cp = stream_get_putp (s);
  1141.   /* Origin attribute. */
  1142.   stream_putc (s, BGP_ATTR_FLAG_TRANS);
  1143.   stream_putc (s, BGP_ATTR_ORIGIN);
  1144.   stream_putc (s, 1);
  1145.   stream_putc (s, attr->origin);
  1146.   /* AS path attribute. */
  1147.   /* If remote-peer is EBGP */
  1148.   if (peer_sort (peer) == BGP_PEER_EBGP
  1149.       && (! CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_AS_PATH_UNCHANGED)
  1150.   || attr->aspath->length == 0)
  1151.       && ! (CHECK_FLAG (from->af_flags[afi][safi], PEER_FLAG_RSERVER_CLIENT)
  1152.     && CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_RSERVER_CLIENT)))
  1153.     {    
  1154.       aspath = aspath_dup (attr->aspath);
  1155.       if (CHECK_FLAG(bgp->config, BGP_CONFIG_CONFEDERATION))
  1156. {
  1157.   /* Strip the confed info, and then stuff our path CONFED_ID
  1158.      on the front */
  1159.   aspath = aspath_delete_confed_seq (aspath);
  1160.   aspath = aspath_add_seq (aspath, bgp->confed_id);
  1161. }
  1162.       else
  1163. {
  1164.   aspath = aspath_add_seq (aspath, peer->local_as);
  1165.   if (peer->change_local_as)
  1166.     aspath = aspath_add_seq (aspath, peer->change_local_as);
  1167. }
  1168.     }
  1169.   else if (peer_sort (peer) == BGP_PEER_CONFED)
  1170.     {
  1171.       /* A confed member, so we need to do the AS_CONFED_SEQUENCE thing */
  1172.       aspath = aspath_dup (attr->aspath);
  1173.       aspath = aspath_add_confed_seq (aspath, peer->local_as);
  1174.     }
  1175.   else
  1176.     aspath = attr->aspath;
  1177.   /* AS path attribute extended length bit check. */
  1178.   if (aspath->length > 255)
  1179.     {
  1180.       stream_putc (s, BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN);
  1181.       stream_putc (s, BGP_ATTR_AS_PATH);
  1182.       stream_putw (s, aspath->length);
  1183.     }
  1184.   else
  1185.     {
  1186.       stream_putc (s, BGP_ATTR_FLAG_TRANS);
  1187.       stream_putc(s, BGP_ATTR_AS_PATH);
  1188.       stream_putc (s, aspath->length);
  1189.     }
  1190.   stream_put (s, aspath->data, aspath->length);
  1191.   if (aspath != attr->aspath)
  1192.     aspath_free (aspath);
  1193.   /* Nexthop attribute. */
  1194.   if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP) && afi == AFI_IP)
  1195.     {
  1196.       stream_putc (s, BGP_ATTR_FLAG_TRANS);
  1197.       stream_putc (s, BGP_ATTR_NEXT_HOP);
  1198.       stream_putc (s, 4);
  1199.       if (safi == SAFI_MPLS_VPN)
  1200. {
  1201.   if (attr->nexthop.s_addr == 0)
  1202.     stream_put_ipv4 (s, peer->nexthop.v4.s_addr);
  1203.   else
  1204.     stream_put_ipv4 (s, attr->nexthop.s_addr);
  1205. }
  1206.       else
  1207. stream_put_ipv4 (s, attr->nexthop.s_addr);
  1208.     }
  1209.   /* MED attribute. */
  1210.   if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC))
  1211.     {
  1212.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
  1213.       stream_putc (s, BGP_ATTR_MULTI_EXIT_DISC);
  1214.       stream_putc (s, 4);
  1215.       stream_putl (s, attr->med);
  1216.     }
  1217.   /* Local preference. */
  1218.   if (peer_sort (peer) == BGP_PEER_IBGP ||
  1219.       peer_sort (peer) == BGP_PEER_CONFED)
  1220.     {
  1221.       stream_putc (s, BGP_ATTR_FLAG_TRANS);
  1222.       stream_putc (s, BGP_ATTR_LOCAL_PREF);
  1223.       stream_putc (s, 4);
  1224.       stream_putl (s, attr->local_pref);
  1225.     }
  1226.   /* Atomic aggregate. */
  1227.   if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE))
  1228.     {
  1229.       stream_putc (s, BGP_ATTR_FLAG_TRANS);
  1230.       stream_putc (s, BGP_ATTR_ATOMIC_AGGREGATE);
  1231.       stream_putc (s, 0);
  1232.     }
  1233.   /* Aggregator. */
  1234.   if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR))
  1235.     {
  1236.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS);
  1237.       stream_putc (s, BGP_ATTR_AGGREGATOR);
  1238.       stream_putc (s, 6);
  1239.       stream_putw (s, attr->aggregator_as);
  1240.       stream_put_ipv4 (s, attr->aggregator_addr.s_addr);
  1241.     }
  1242.   /* Community attribute. */
  1243.   if (CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_SEND_COMMUNITY) 
  1244.       && (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES)))
  1245.     {
  1246.       if (attr->community->size * 4 > 255)
  1247. {
  1248.   stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN);
  1249.   stream_putc (s, BGP_ATTR_COMMUNITIES);
  1250.   stream_putw (s, attr->community->size * 4);
  1251. }
  1252.       else
  1253. {
  1254.   stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS);
  1255.   stream_putc (s, BGP_ATTR_COMMUNITIES);
  1256.   stream_putc (s, attr->community->size * 4);
  1257. }
  1258.       stream_put (s, attr->community->val, attr->community->size * 4);
  1259.     }
  1260.   /* Route Reflector. */
  1261.   if (peer_sort (peer) == BGP_PEER_IBGP
  1262.       && from
  1263.       && peer_sort (from) == BGP_PEER_IBGP)
  1264.     {
  1265.       /* Originator ID. */
  1266.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
  1267.       stream_putc (s, BGP_ATTR_ORIGINATOR_ID);
  1268.       stream_putc (s, 4);
  1269.       if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID))
  1270. stream_put_in_addr (s, &attr->originator_id);
  1271.       else
  1272. {
  1273.   if (from)
  1274.     stream_put_in_addr (s, &from->remote_id);
  1275.   else
  1276.     stream_put_in_addr (s, &attr->originator_id);
  1277. }
  1278.       /* Cluster list. */
  1279.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
  1280.       stream_putc (s, BGP_ATTR_CLUSTER_LIST);
  1281.       
  1282.       if (attr->cluster)
  1283. {
  1284.   stream_putc (s, attr->cluster->length + 4);
  1285.   /* If this peer configuration's parent BGP has cluster_id. */
  1286.   if (bgp->config & BGP_CONFIG_CLUSTER_ID)
  1287.     stream_put_in_addr (s, &bgp->cluster_id);
  1288.   else
  1289.     stream_put_in_addr (s, &bgp->router_id);
  1290.   stream_put (s, attr->cluster->list, attr->cluster->length);
  1291. }
  1292.       else
  1293. {
  1294.   stream_putc (s, 4);
  1295.   /* If this peer configuration's parent BGP has cluster_id. */
  1296.   if (bgp->config & BGP_CONFIG_CLUSTER_ID)
  1297.     stream_put_in_addr (s, &bgp->cluster_id);
  1298.   else
  1299.     stream_put_in_addr (s, &bgp->router_id);
  1300. }
  1301.     }
  1302. #ifdef HAVE_IPV6
  1303.   /* If p is IPv6 address put it into attribute. */
  1304.   if (p->family == AF_INET6)
  1305.     {
  1306.       unsigned long sizep;
  1307.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
  1308.       stream_putc (s, BGP_ATTR_MP_REACH_NLRI);
  1309.       sizep = stream_get_putp (s);
  1310.       stream_putc (s, 0); /* Length of this attribute. */
  1311.       stream_putw (s, AFI_IP6); /* AFI */
  1312.       stream_putc (s, safi); /* SAFI */
  1313.       stream_putc (s, attr->mp_nexthop_len);
  1314.       if (attr->mp_nexthop_len == 16)
  1315. stream_put (s, &attr->mp_nexthop_global, 16);
  1316.       else if (attr->mp_nexthop_len == 32)
  1317. {
  1318.   stream_put (s, &attr->mp_nexthop_global, 16);
  1319.   stream_put (s, &attr->mp_nexthop_local, 16);
  1320. }
  1321.       
  1322.       /* SNPA */
  1323.       stream_putc (s, 0);
  1324.       /* Prefix write. */
  1325.       stream_put_prefix (s, p);
  1326.       /* Set MP attribute length. */
  1327.       stream_putc_at (s, sizep, (stream_get_putp (s) - sizep) - 1);
  1328.     }
  1329. #endif /* HAVE_IPV6 */
  1330.   if (p->family == AF_INET && safi == SAFI_MULTICAST)
  1331.     {
  1332.       unsigned long sizep;
  1333.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
  1334.       stream_putc (s, BGP_ATTR_MP_REACH_NLRI);
  1335.       sizep = stream_get_putp (s);
  1336.       stream_putc (s, 0); /* Length of this attribute. */
  1337.       stream_putw (s, AFI_IP); /* AFI */
  1338.       stream_putc (s, SAFI_MULTICAST); /* SAFI */
  1339.       stream_putc (s, 4);
  1340.       stream_put_ipv4 (s, attr->nexthop.s_addr);
  1341.       /* SNPA */
  1342.       stream_putc (s, 0);
  1343.       /* Prefix write. */
  1344.       stream_put_prefix (s, p);
  1345.       /* Set MP attribute length. */
  1346.       stream_putc_at (s, sizep, (stream_get_putp (s) - sizep) - 1);
  1347.     }
  1348.   if (p->family == AF_INET && safi == SAFI_MPLS_VPN)
  1349.     {
  1350.       unsigned long sizep;
  1351.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
  1352.       stream_putc (s, BGP_ATTR_MP_REACH_NLRI);
  1353.       sizep = stream_get_putp (s);
  1354.       stream_putc (s, 0); /* Length of this attribute. */
  1355.       stream_putw (s, AFI_IP); /* AFI */
  1356.       stream_putc (s, BGP_SAFI_VPNV4); /* SAFI */
  1357.       stream_putc (s, 12);
  1358.       stream_putl (s, 0);
  1359.       stream_putl (s, 0);
  1360.       stream_put (s, &attr->mp_nexthop_global_in, 4);
  1361.       /* SNPA */
  1362.       stream_putc (s, 0);
  1363.       /* Tag, RD, Prefix write. */
  1364.       stream_putc (s, p->prefixlen + 88);
  1365.       stream_put (s, tag, 3);
  1366.       stream_put (s, prd->val, 8);
  1367.       stream_put (s, &p->u.prefix, PSIZE (p->prefixlen));
  1368.       /* Set MP attribute length. */
  1369.       stream_putc_at (s, sizep, (stream_get_putp (s) - sizep) - 1);
  1370.     }
  1371.   /* Extended Communities attribute. */
  1372.   if (CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_SEND_EXT_COMMUNITY) 
  1373.       && (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_EXT_COMMUNITIES)))
  1374.     {
  1375.       if (peer_sort (peer) == BGP_PEER_IBGP || peer_sort (peer) == BGP_PEER_CONFED)
  1376. {
  1377.   if (attr->ecommunity->size * 8 > 255)
  1378.     {
  1379.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN);
  1380.       stream_putc (s, BGP_ATTR_EXT_COMMUNITIES);
  1381.       stream_putw (s, attr->ecommunity->size * 8);
  1382.     }
  1383.   else
  1384.     {
  1385.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS);
  1386.       stream_putc (s, BGP_ATTR_EXT_COMMUNITIES);
  1387.       stream_putc (s, attr->ecommunity->size * 8);
  1388.     }
  1389.   stream_put (s, attr->ecommunity->val, attr->ecommunity->size * 8);
  1390. }
  1391.       else
  1392. {
  1393.   u_char *pnt;
  1394.   int tbit;
  1395.   int ecom_tr_size = 0;
  1396.   int i;
  1397.   for (i = 0; i < attr->ecommunity->size; i++)
  1398.     {
  1399.       pnt = attr->ecommunity->val + (i * 8);
  1400.       tbit = *pnt;
  1401.       if (CHECK_FLAG (tbit, ECOMMUNITY_FLAG_NON_TRANSITIVE))
  1402. continue;
  1403.       ecom_tr_size++;
  1404.     }
  1405.   if (ecom_tr_size)
  1406.     {
  1407.       if (ecom_tr_size * 8 > 255)
  1408. {
  1409.   stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN);
  1410.   stream_putc (s, BGP_ATTR_EXT_COMMUNITIES);
  1411.   stream_putw (s, ecom_tr_size * 8);
  1412. }
  1413.       else
  1414. {
  1415.   stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS);
  1416.   stream_putc (s, BGP_ATTR_EXT_COMMUNITIES);
  1417.   stream_putc (s, ecom_tr_size * 8);
  1418. }
  1419.       for (i = 0; i < attr->ecommunity->size; i++)
  1420. {
  1421.   pnt = attr->ecommunity->val + (i * 8);
  1422.   tbit = *pnt;
  1423.   if (CHECK_FLAG (tbit, ECOMMUNITY_FLAG_NON_TRANSITIVE))
  1424.     continue;
  1425.   stream_put (s, pnt, 8);
  1426. }
  1427.     }
  1428. }
  1429.     }
  1430.   /* Unknown transit attribute. */
  1431.   if (attr->transit)
  1432.     stream_put (s, attr->transit->val, attr->transit->length);
  1433.   /* Return total size of attribute. */
  1434.   return stream_get_putp (s) - cp;
  1435. }
  1436. bgp_size_t
  1437. bgp_packet_withdraw (struct peer *peer, struct stream *s, struct prefix *p,
  1438.      afi_t afi, safi_t safi, struct prefix_rd *prd,
  1439.      u_char *tag)
  1440. {
  1441.   unsigned long cp;
  1442.   unsigned long attrlen_pnt;
  1443.   bgp_size_t size;
  1444.   cp = stream_get_putp (s);
  1445.   stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
  1446.   stream_putc (s, BGP_ATTR_MP_UNREACH_NLRI);
  1447.   attrlen_pnt = stream_get_putp (s);
  1448.   stream_putc (s, 0); /* Length of this attribute. */
  1449.   stream_putw (s, family2afi (p->family));
  1450.   if (safi == SAFI_MPLS_VPN)
  1451.     {
  1452.       /* SAFI */
  1453.       stream_putc (s, BGP_SAFI_VPNV4);
  1454.       /* prefix. */
  1455.       stream_putc (s, p->prefixlen + 88);
  1456.       stream_put (s, tag, 3);
  1457.       stream_put (s, prd->val, 8);
  1458.       stream_put (s, &p->u.prefix, PSIZE (p->prefixlen));
  1459.     }
  1460.   else
  1461.     {
  1462.       /* SAFI */
  1463.       stream_putc (s, safi);
  1464.       /* prefix */
  1465.       stream_put_prefix (s, p);
  1466.     }
  1467.   /* Set MP attribute length. */
  1468.   size = stream_get_putp (s) - attrlen_pnt - 1;
  1469.   stream_putc_at (s, attrlen_pnt, size);
  1470.   return stream_get_putp (s) - cp;
  1471. }
  1472. /* Initialization of attribute. */
  1473. void
  1474. bgp_attr_init ()
  1475. {
  1476.   void attrhash_init ();
  1477.   aspath_init ();
  1478.   attrhash_init ();
  1479.   community_init ();
  1480.   ecommunity_init ();
  1481.   cluster_init ();
  1482.   transit_init ();
  1483. }
  1484. /* Make attribute packet. */
  1485. void
  1486. bgp_dump_routes_attr (struct stream *s, struct attr *attr)
  1487. {
  1488.   unsigned long cp;
  1489.   unsigned long len;
  1490.   struct aspath *aspath;
  1491.   /* Remember current pointer. */
  1492.   cp = stream_get_putp (s);
  1493.   /* Place holder of length. */
  1494.   stream_putw (s, 0);
  1495.   /* Origin attribute. */
  1496.   stream_putc (s, BGP_ATTR_FLAG_TRANS);
  1497.   stream_putc (s, BGP_ATTR_ORIGIN);
  1498.   stream_putc (s, 1);
  1499.   stream_putc (s, attr->origin);
  1500.   aspath = attr->aspath;
  1501.   if (aspath->length > 255)
  1502.     {
  1503.       stream_putc (s, BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN);
  1504.       stream_putc (s, BGP_ATTR_AS_PATH);
  1505.       stream_putw (s, aspath->length);
  1506.     }
  1507.   else
  1508.     {
  1509.       stream_putc (s, BGP_ATTR_FLAG_TRANS);
  1510.       stream_putc (s, BGP_ATTR_AS_PATH);
  1511.       stream_putc (s, aspath->length);
  1512.     }
  1513.   stream_put (s, aspath->data, aspath->length);
  1514.   /* Nexthop attribute. */
  1515.   stream_putc (s, BGP_ATTR_FLAG_TRANS);
  1516.   stream_putc (s, BGP_ATTR_NEXT_HOP);
  1517.   stream_putc (s, 4);
  1518.   stream_put_ipv4 (s, attr->nexthop.s_addr);
  1519.   /* MED attribute. */
  1520.   if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC))
  1521.     {
  1522.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
  1523.       stream_putc (s, BGP_ATTR_MULTI_EXIT_DISC);
  1524.       stream_putc (s, 4);
  1525.       stream_putl (s, attr->med);
  1526.     }
  1527.   /* Local preference. */
  1528.   if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF))
  1529.     {
  1530.       stream_putc (s, BGP_ATTR_FLAG_TRANS);
  1531.       stream_putc (s, BGP_ATTR_LOCAL_PREF);
  1532.       stream_putc (s, 4);
  1533.       stream_putl (s, attr->local_pref);
  1534.     }
  1535.   /* Atomic aggregate. */
  1536.   if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE))
  1537.     {
  1538.       stream_putc (s, BGP_ATTR_FLAG_TRANS);
  1539.       stream_putc (s, BGP_ATTR_ATOMIC_AGGREGATE);
  1540.       stream_putc (s, 0);
  1541.     }
  1542.   /* Aggregator. */
  1543.   if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR))
  1544.     {
  1545.       stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS);
  1546.       stream_putc (s, BGP_ATTR_AGGREGATOR);
  1547.       stream_putc (s, 6);
  1548.       stream_putw (s, attr->aggregator_as);
  1549.       stream_put_ipv4 (s, attr->aggregator_addr.s_addr);
  1550.     }
  1551.   /* Community attribute. */
  1552.   if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES))
  1553.     {
  1554.       if (attr->community->size * 4 > 255)
  1555. {
  1556.   stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN);
  1557.   stream_putc (s, BGP_ATTR_COMMUNITIES);
  1558.   stream_putw (s, attr->community->size * 4);
  1559. }
  1560.       else
  1561. {
  1562.   stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS);
  1563.   stream_putc (s, BGP_ATTR_COMMUNITIES);
  1564.   stream_putc (s, attr->community->size * 4);
  1565. }
  1566.       stream_put (s, attr->community->val, attr->community->size * 4);
  1567.     }
  1568.   /* Return total size of attribute. */
  1569.   len = stream_get_putp (s) - cp - 2;
  1570.   stream_putw_at (s, cp, len);
  1571. }