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

网络

开发平台:

Unix_Linux

  1. /* BGP Extended Communities Attribute
  2.    Copyright (C) 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
  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 "hash.h"
  18. #include "memory.h"
  19. #include "prefix.h"
  20. #include "command.h"
  21. #include "bgpd/bgpd.h"
  22. #include "bgpd/bgp_ecommunity.h"
  23. /* Hash of community attribute. */
  24. struct hash *ecomhash;
  25. /* Allocate a new ecommunities.  */
  26. struct ecommunity *
  27. ecommunity_new ()
  28. {
  29.   return (struct ecommunity *) XCALLOC (MTYPE_ECOMMUNITY,
  30. sizeof (struct ecommunity));
  31. }
  32. /* Allocate ecommunities.  */
  33. void
  34. ecommunity_free (struct ecommunity *ecom)
  35. {
  36.   if (ecom->val)
  37.     XFREE (MTYPE_ECOMMUNITY_VAL, ecom->val);
  38.   if (ecom->str)
  39.     XFREE (MTYPE_ECOMMUNITY_STR, ecom->str);
  40.   XFREE (MTYPE_ECOMMUNITY, ecom);
  41. }
  42. /* Add a new Extended Communities value to Extended Communities
  43.    Attribute structure.  When the value is already exists in the
  44.    structure, we don't add the value.  Newly added value is sorted by
  45.    numerical order.  When the value is added to the structure return 1
  46.    else return 0.  */
  47. static int
  48. ecommunity_add_val (struct ecommunity *ecom, struct ecommunity_val *eval)
  49. {
  50.   u_char *p;
  51.   int ret;
  52.   int c;
  53.   /* When this is fist value, just add it.  */
  54.   if (ecom->val == NULL)
  55.     {
  56.       ecom->size++;
  57.       ecom->val = XMALLOC (MTYPE_ECOMMUNITY_VAL, ecom_length (ecom));
  58.       memcpy (ecom->val, eval->val, ECOMMUNITY_SIZE);
  59.       return 1;
  60.     }
  61.   /* If the value already exists in the structure return 0.  */
  62.   c = 0;
  63.   for (p = ecom->val; c < ecom->size; p += ECOMMUNITY_SIZE, c++)
  64.     {
  65.       ret = memcmp (p, eval->val, ECOMMUNITY_SIZE);
  66.       if (ret == 0)
  67.         return 0;
  68.       if (ret > 0)
  69.         break;
  70.     }
  71.   /* Add the value to the structure with numerical sorting.  */
  72.   ecom->size++;
  73.   ecom->val = XREALLOC (MTYPE_ECOMMUNITY_VAL, ecom->val, ecom_length (ecom));
  74.   memmove (ecom->val + (c + 1) * ECOMMUNITY_SIZE,
  75.    ecom->val + c * ECOMMUNITY_SIZE,
  76.    (ecom->size - 1 - c) * ECOMMUNITY_SIZE);
  77.   memcpy (ecom->val + c * ECOMMUNITY_SIZE, eval->val, ECOMMUNITY_SIZE);
  78.   return 1;
  79. }
  80. /* This function takes pointer to Extended Communites strucutre then
  81.    create a new Extended Communities structure by uniq and sort each
  82.    Exteneded Communities value.  */
  83. struct ecommunity *
  84. ecommunity_uniq_sort (struct ecommunity *ecom)
  85. {
  86.   int i;
  87.   struct ecommunity *new;
  88.   struct ecommunity_val *eval;
  89.   
  90.   if (! ecom)
  91.     return NULL;
  92.   
  93.   new = ecommunity_new ();;
  94.   
  95.   for (i = 0; i < ecom->size; i++)
  96.     {
  97.       eval = (struct ecommunity_val *) (ecom->val + (i * ECOMMUNITY_SIZE));
  98.       ecommunity_add_val (new, eval);
  99.     }
  100.   return new;
  101. }
  102. /* Parse Extended Communites Attribute in BGP packet.  */
  103. struct ecommunity *
  104. ecommunity_parse (char *pnt, u_short length)
  105. {
  106.   struct ecommunity tmp;
  107.   struct ecommunity *new;
  108.   /* Length check.  */
  109.   if (length % ECOMMUNITY_SIZE)
  110.     return NULL;
  111.   /* Prepare tmporary structure for making a new Extended Communities
  112.      Attribute.  */
  113.   tmp.size = length / ECOMMUNITY_SIZE;
  114.   tmp.val = pnt;
  115.   /* Create a new Extended Communities Attribute by uniq and sort each
  116.      Extended Communities value  */
  117.   new = ecommunity_uniq_sort (&tmp);
  118.   return ecommunity_intern (new);
  119. }
  120. /* Duplicate the Extended Communities Attribute structure.  */
  121. struct ecommunity *
  122. ecommunity_dup (struct ecommunity *ecom)
  123. {
  124.   struct ecommunity *new;
  125.   new = XCALLOC (MTYPE_ECOMMUNITY, sizeof (struct ecommunity));
  126.   new->size = ecom->size;
  127.   if (new->size)
  128.     {
  129.       new->val = XMALLOC (MTYPE_ECOMMUNITY_VAL, ecom->size * ECOMMUNITY_SIZE);
  130.       memcpy (new->val, ecom->val, ecom->size * ECOMMUNITY_SIZE);
  131.     }
  132.   else
  133.     new->val = NULL;
  134.   return new;
  135. }
  136. /* Retrun string representation of communities attribute. */
  137. char *
  138. ecommunity_str (struct ecommunity *ecom)
  139. {
  140.   if (! ecom->str)
  141.     ecom->str = ecommunity_ecom2str (ecom, ECOMMUNITY_FORMAT_DISPLAY);
  142.   return ecom->str;
  143. }
  144. /* Merge two Extended Communities Attribute structure.  */
  145. struct ecommunity *
  146. ecommunity_merge (struct ecommunity *ecom1, struct ecommunity *ecom2)
  147. {
  148.   if (ecom1->val)
  149.     ecom1->val = XREALLOC (MTYPE_ECOMMUNITY_VAL, ecom1->val, 
  150.    (ecom1->size + ecom2->size) * ECOMMUNITY_SIZE);
  151.   else
  152.     ecom1->val = XMALLOC (MTYPE_ECOMMUNITY_VAL,
  153.   (ecom1->size + ecom2->size) * ECOMMUNITY_SIZE);
  154.   memcpy (ecom1->val + (ecom1->size * ECOMMUNITY_SIZE),
  155.   ecom2->val, ecom2->size * ECOMMUNITY_SIZE);
  156.   ecom1->size += ecom2->size;
  157.   return ecom1;
  158. }
  159. /* Intern Extended Communities Attribute.  */
  160. struct ecommunity *
  161. ecommunity_intern (struct ecommunity *ecom)
  162. {
  163.   struct ecommunity *find;
  164.   assert (ecom->refcnt == 0);
  165.   find = (struct ecommunity *) hash_get (ecomhash, ecom, hash_alloc_intern);
  166.   if (find != ecom)
  167.     ecommunity_free (ecom);
  168.   find->refcnt++;
  169.   if (! find->str)
  170.     find->str = ecommunity_ecom2str (find, ECOMMUNITY_FORMAT_DISPLAY);
  171.   return find;
  172. }
  173. /* Unintern Extended Communities Attribute.  */
  174. void
  175. ecommunity_unintern (struct ecommunity *ecom)
  176. {
  177.   struct ecommunity *ret;
  178.   if (ecom->refcnt)
  179.     ecom->refcnt--;
  180.   /* Pull off from hash.  */
  181.   if (ecom->refcnt == 0)
  182.     {
  183.       /* Extended community must be in the hash.  */
  184.       ret = (struct ecommunity *) hash_release (ecomhash, ecom);
  185.       assert (ret != NULL);
  186.       ecommunity_free (ecom);
  187.     }
  188. }
  189. /* Utinity function to make hash key.  */
  190. unsigned int
  191. ecommunity_hash_make (struct ecommunity *ecom)
  192. {
  193.   int c;
  194.   unsigned int key;
  195.   unsigned char *pnt;
  196.   key = 0;
  197.   pnt = ecom->val;
  198.   
  199.   for (c = 0; c < ecom->size * ECOMMUNITY_SIZE; c++)
  200.     key += pnt[c];
  201.   return key;
  202. }
  203. /* Compare two Extended Communities Attribute structure.  */
  204. int
  205. ecommunity_cmp (struct ecommunity *ecom1, struct ecommunity *ecom2)
  206. {
  207.   if (ecom1->size == ecom2->size
  208.       && memcmp (ecom1->val, ecom2->val, ecom1->size * ECOMMUNITY_SIZE) == 0)
  209.     return 1;
  210.   return 0;
  211. }
  212. /* Initialize Extended Comminities related hash. */
  213. void
  214. ecommunity_init ()
  215. {
  216.   ecomhash = hash_create (ecommunity_hash_make, ecommunity_cmp);
  217. }
  218. /* Extended Communities token enum. */
  219. enum ecommunity_token
  220. {
  221.   ecommunity_token_rt,
  222.   ecommunity_token_soo,
  223.   ecommunity_token_val,
  224.   ecommunity_token_unknown
  225. };
  226. /* Get next Extended Communities token from the string. */
  227. char *
  228. ecommunity_gettoken (char *str, struct ecommunity_val *eval,
  229.      enum ecommunity_token *token)
  230. {
  231.   int ret;
  232.   int dot = 0;
  233.   int digit = 0;
  234.   int separator = 0;
  235.   u_int32_t val_low = 0;
  236.   u_int32_t val_high = 0;
  237.   char *p = str;
  238.   struct in_addr ip;
  239.   char ipstr[INET_ADDRSTRLEN + 1];
  240.   /* Skip white space. */
  241.   while (isspace ((int) *p))
  242.     {
  243.       p++;
  244.       str++;
  245.     }
  246.   /* Check the end of the line. */
  247.   if (*p == '')
  248.     return NULL;
  249.   /* "rt" and "soo" keyword parse. */
  250.   if (! isdigit ((int) *p)) 
  251.     {
  252.       /* "rt" match check.  */
  253.       if (tolower ((int) *p) == 'r')
  254. {
  255.   p++;
  256.     if (tolower ((int) *p) == 't')
  257.     {
  258.       p++;
  259.       *token = ecommunity_token_rt;
  260.       return p;
  261.     }
  262.   if (isspace ((int) *p) || *p == '')
  263.     {
  264.       *token = ecommunity_token_rt;
  265.       return p;
  266.     }
  267.   goto error;
  268. }
  269.       /* "soo" match check.  */
  270.       else if (tolower ((int) *p) == 's')
  271. {
  272.   p++;
  273.     if (tolower ((int) *p) == 'o')
  274.     {
  275.       p++;
  276.       if (tolower ((int) *p) == 'o')
  277. {
  278.   p++;
  279.   *token = ecommunity_token_soo;
  280.   return p;
  281. }
  282.       if (isspace ((int) *p) || *p == '')
  283. {
  284.   *token = ecommunity_token_soo;
  285.   return p;
  286. }
  287.       goto error;
  288.     }
  289.   if (isspace ((int) *p) || *p == '')
  290.     {
  291.       *token = ecommunity_token_soo;
  292.       return p;
  293.     }
  294.   goto error;
  295. }
  296.       goto error;
  297.     }
  298.   
  299.   while (isdigit ((int) *p) || *p == ':' || *p == '.') 
  300.     {
  301.       if (*p == ':') 
  302. {
  303.   if (separator)
  304.     goto error;
  305.   separator = 1;
  306.   digit = 0;
  307.   if (dot)
  308.     {
  309.       if ((p - str) > INET_ADDRSTRLEN)
  310. goto error;
  311.       memset (ipstr, 0, INET_ADDRSTRLEN + 1);
  312.       memcpy (ipstr, str, p - str);
  313.       ret = inet_aton (ipstr, &ip);
  314.       if (ret == 0)
  315. goto error;
  316.     }
  317.   else
  318.     val_high = val_low;
  319.   val_low = 0;
  320. }
  321.       else if (*p == '.')
  322. {
  323.   if (separator)
  324.     goto error;
  325.   dot++;
  326.   if (dot > 4)
  327.     goto error;
  328. }
  329.       else
  330. {
  331.   digit = 1;
  332.   val_low *= 10;
  333.   val_low += (*p - '0');
  334. }
  335.       p++;
  336.     }
  337.   /* Low digit part must be there. */
  338.   if (! digit || ! separator)
  339.     goto error;
  340.   /* Encode result into routing distinguisher.  */
  341.   if (dot)
  342.     {
  343.       eval->val[0] = ECOMMUNITY_ENCODE_IP;
  344.       eval->val[1] = 0;
  345.       memcpy (&eval->val[2], &ip, sizeof (struct in_addr));
  346.       eval->val[6] = (val_low >> 8) & 0xff;
  347.       eval->val[7] = val_low & 0xff;
  348.     }
  349.   else
  350.     {
  351.       eval->val[0] = ECOMMUNITY_ENCODE_AS;
  352.       eval->val[1] = 0;
  353.       eval->val[2] = (val_high >>8) & 0xff;
  354.       eval->val[3] = val_high & 0xff;
  355.       eval->val[4] = (val_low >>24) & 0xff;
  356.       eval->val[5] = (val_low >>16) & 0xff;
  357.       eval->val[6] = (val_low >>8) & 0xff;
  358.       eval->val[7] = val_low & 0xff;
  359.     }
  360.   *token = ecommunity_token_val;
  361.   return p;
  362.  error:
  363.   *token = ecommunity_token_unknown;
  364.   return p;
  365. }
  366. /* Convert string to extended community attribute. 
  367.    When type is already known, please specify both str and type.  str
  368.    should not include keyword such as "rt" and "soo".  Type is
  369.    ECOMMUNITY_TYPE_ROUTE_TARGET or ECOMMUNITY_TYPE_SITE_ORIGIN.
  370.    keyword_included should be zero.
  371.    For example route-map's "set extcommunity" command case:
  372.    "rt 100:1 100:2 100:3"        -> str = "100:1 100:2 100:3"
  373.                                     type = ECOMMUNITY_TYPE_ROUTE_TARGET
  374.                                     keyword_included = 0
  375.    "soo 100:1"                   -> str = "100:1"
  376.                                     type = ECOMMUNITY_TYPE_SITE_ORIGIN
  377.                                     keyword_included = 0
  378.    When string includes keyword for each extended community value.
  379.    Please specify keyword_included as non-zero value.
  380.    For example standard extcommunity-list case:
  381.    "rt 100:1 rt 100:2 soo 100:1" -> str = "rt 100:1 rt 100:2 soo 100:1"
  382.                                     type = 0
  383.                                     keyword_include = 1
  384. */
  385. struct ecommunity *
  386. ecommunity_str2com (char *str, int type, int keyword_included)
  387. {
  388.   struct ecommunity *ecom = NULL;
  389.   enum ecommunity_token token;
  390.   struct ecommunity_val eval;
  391.   int keyword = 0;
  392.   while ((str = ecommunity_gettoken (str, &eval, &token)))
  393.     {
  394.       switch (token)
  395. {
  396. case ecommunity_token_rt:
  397. case ecommunity_token_soo:
  398.   if (! keyword_included || keyword)
  399.     {
  400.       if (ecom)
  401. ecommunity_free (ecom);
  402.       return NULL;
  403.     }
  404.   keyword = 1;
  405.   if (token == ecommunity_token_rt)
  406.     {
  407.       type = ECOMMUNITY_TYPE_ROUTE_TARGET;
  408.     }
  409.   if (token == ecommunity_token_soo)
  410.     {
  411.       type = ECOMMUNITY_TYPE_SITE_ORIGIN;
  412.     }
  413.   break;
  414. case ecommunity_token_val:
  415.   if (keyword_included)
  416.     {
  417.       if (! keyword)
  418. {
  419.   if (ecom)
  420.     ecommunity_free (ecom);
  421.   return NULL;
  422. }
  423.       keyword = 0;
  424.     }
  425.   if (ecom == NULL)
  426.     ecom = ecommunity_new ();
  427.   eval.val[1] = type;
  428.   ecommunity_add_val (ecom, &eval);
  429.   break;
  430. case ecommunity_token_unknown:
  431. default:
  432.   if (ecom)
  433.     ecommunity_free (ecom);
  434.   return NULL;
  435.   break;
  436. }
  437.     }
  438.   return ecom;
  439. }
  440. struct ecommunity *
  441. ecommunity_cost_str2com (char *str, u_char poi)
  442. {
  443.   struct ecommunity *ecom = NULL;
  444.   struct ecommunity_cost ecost;
  445.   u_int32_t id = 0;
  446.   u_int32_t val = 0;
  447.   char *p = str;
  448.   while (isspace ((int) *p))
  449.     p++;
  450.   while (isdigit ((int) *p))
  451.     {
  452.       id *= 10;
  453.       id += (*p - '0');
  454.       p++;
  455.     }
  456.   while (isspace ((int) *p))
  457.     p++;
  458.   while (isdigit ((int) *p))
  459.     {
  460.       val *= 10;
  461.       val += (*p - '0');
  462.       p++;
  463.     }
  464.   ecost.type = ntohs (ECOMMUNITY_COST_COMMUNITY);
  465.   ecost.poi = poi;
  466.   ecost.id = id;
  467.   ecost.val = ntohl (val);
  468.   ecom = ecommunity_new ();
  469.   ecommunity_add_val (ecom, (struct ecommunity_val *)&ecost);
  470.   return ecom;
  471. }
  472. /* Convert extended community attribute to string.  
  473.    Due to historical reason of industry standard implementation, there
  474.    are three types of format.
  475.    route-map set extcommunity format
  476.         "rt 100:1 100:2"
  477.         "soo 100:3"
  478.    extcommunity-list
  479.         "rt 100:1 rt 100:2 soo 100:3"
  480.    "show ip bgp" and extcommunity-list regular expression matching
  481.         "RT:100:1 RT:100:2 SoO:100:3"
  482.    For each formath please use below definition for format:
  483.    ECOMMUNITY_FORMAT_CONFIG
  484.    ECOMMUNITY_FORMAT_DISPLAY
  485. */
  486. char *
  487. ecommunity_cost_poi_print (u_char poi)
  488. {
  489.   if (poi == ECOMMUNITY_COST_POI_IGP)
  490.     return "igp";
  491.   return "?";
  492. }
  493. char *
  494. ecommunity_ecom2str (struct ecommunity *ecom, int format)
  495. {
  496.   int i;
  497.   u_char *pnt;
  498.   int encode = 0;
  499.   int encode_check = 0;
  500.   int type = 0;
  501. #define ECOMMUNITY_STR_DEFAULT_LEN  26
  502.   int str_size;
  503.   int str_pnt;
  504.   u_char *str_buf;
  505.   char *prefix;
  506.   int len = 0;
  507.   int first = 1;
  508.   /* For parse Extended Community attribute tupple. */
  509.   struct ecommunity_as
  510.   {
  511.     as_t as;
  512.     u_int32_t val;
  513.   } eas;
  514.   struct ecommunity_ip
  515.   {
  516.     struct in_addr ip;
  517.     u_int16_t val;
  518.   } eip;
  519.   if (ecom->size == 0)
  520.     {
  521.       str_buf = XMALLOC (MTYPE_ECOMMUNITY_STR, 1);
  522.       str_buf[0] = '';
  523.       return str_buf;
  524.     }
  525.   /* Prepare buffer.  */
  526.   str_buf = XMALLOC (MTYPE_ECOMMUNITY_STR, ECOMMUNITY_STR_DEFAULT_LEN + 1);
  527.   str_size = ECOMMUNITY_STR_DEFAULT_LEN + 1;
  528.   str_pnt = 0;
  529.   for (i = 0; i < ecom->size; i++)
  530.     {
  531.       /* Make it sure size is enough.  */
  532.       while (str_pnt + ECOMMUNITY_STR_DEFAULT_LEN >= str_size)
  533. {
  534.   str_size *= 2;
  535.   str_buf = XREALLOC (MTYPE_ECOMMUNITY_STR, str_buf, str_size);
  536. }
  537.       /* Space between each value.  */
  538.       if (! first)
  539. str_buf[str_pnt++] = ' ';
  540.       pnt = ecom->val + (i * 8);
  541.       /* High-order octet of type. */
  542.       encode = *pnt++;
  543.       encode_check = encode & ~ECOMMUNITY_FLAG_NON_TRANSITIVE;
  544.       if (encode_check != ECOMMUNITY_ENCODE_AS
  545.           && encode_check != ECOMMUNITY_ENCODE_IP
  546.           && encode_check != ECOMMUNITY_ENCODE_OPAQUE)
  547. {
  548.   len = sprintf (str_buf + str_pnt, "?");
  549.   str_pnt += len;
  550.   first = 0;
  551.   continue;
  552. }
  553.       
  554.       /* Low-order octet of type. */
  555.       type = *pnt++;
  556.       if ((encode_check == ECOMMUNITY_ENCODE_AS
  557.    || encode_check == ECOMMUNITY_ENCODE_IP
  558.    || encode_check == ECOMMUNITY_ENCODE_4OCTET_AS)
  559.   && (type == ECOMMUNITY_TYPE_ROUTE_TARGET || type == ECOMMUNITY_TYPE_SITE_ORIGIN)
  560.   && ! CHECK_FLAG (encode, ECOMMUNITY_FLAG_NON_TRANSITIVE))
  561. {
  562.   switch (format)
  563.     {
  564.       case ECOMMUNITY_FORMAT_CONFIG:
  565. prefix = (type == ECOMMUNITY_TYPE_ROUTE_TARGET ? "rt " : "soo ");
  566. break;
  567.       case ECOMMUNITY_FORMAT_DISPLAY:
  568. prefix = (type == ECOMMUNITY_TYPE_ROUTE_TARGET ? "RT:" : "SoO:");
  569. break;
  570.       default:
  571. prefix = "";
  572. break;
  573.     }
  574. }
  575.       else if (encode_check == ECOMMUNITY_ENCODE_OPAQUE
  576.        && type == ECOMMUNITY_TYPE_COST_COMMUNITY
  577.        && CHECK_FLAG (encode, ECOMMUNITY_FLAG_NON_TRANSITIVE))
  578. {
  579.   u_int32_t val;
  580.   u_char poi;
  581.   u_char id;
  582.           poi = *pnt++;
  583.   id =  *pnt++;
  584.   memcpy (&val, pnt, 4);
  585.   len = sprintf (str_buf + str_pnt, "Cost:%s:%d:%u",
  586.  ecommunity_cost_poi_print (poi), id, ntohl (val));
  587.   str_pnt += len;
  588.   first = 0;
  589.   continue;
  590. }
  591.       else
  592. {
  593.   len = sprintf (str_buf + str_pnt, "?");
  594.   str_pnt += len;
  595.   first = 0;
  596.   continue;
  597. }
  598.       /* Put string into buffer.  */
  599.       if (encode_check == ECOMMUNITY_ENCODE_AS)
  600. {
  601.   eas.as = (*pnt++ << 8);
  602.   eas.as |= (*pnt++);
  603.   eas.val = (*pnt++ << 24);
  604.   eas.val |= (*pnt++ << 16);
  605.   eas.val |= (*pnt++ << 8);
  606.   eas.val |= (*pnt++);
  607.   len = sprintf (str_buf + str_pnt, "%s%d:%d", prefix,
  608.  eas.as, eas.val);
  609.   str_pnt += len;
  610.   first = 0;
  611. }
  612.       else if (encode_check == ECOMMUNITY_ENCODE_IP)
  613. {
  614.   memcpy (&eip.ip, pnt, 4);
  615.   pnt += 4;
  616.   eip.val = (*pnt++ << 8);
  617.   eip.val |= (*pnt++);
  618.   len = sprintf (str_buf + str_pnt, "%s%s:%d", prefix,
  619.  inet_ntoa (eip.ip), eip.val);
  620.   str_pnt += len;
  621.   first = 0;
  622. }
  623.     }
  624.   return str_buf;
  625. }
  626. int
  627. ecommunity_match (struct ecommunity *ecom1, struct ecommunity *ecom2)
  628. {
  629.   int i = 0;
  630.   int j = 0;
  631.   if (ecom1 == NULL && ecom2 == NULL)
  632.     return 1;
  633.   if (ecom1 == NULL || ecom2 == NULL)
  634.     return 0;
  635.   if (ecom1->size < ecom2->size)
  636.     return 0;
  637.   /* Every community on com2 needs to be on com1 for this to match */
  638.   while (i < ecom1->size && j < ecom2->size)
  639.     {
  640.       if (memcmp (ecom1->val + i, ecom2->val + j, ECOMMUNITY_SIZE) == 0)
  641.         j++;
  642.       i++;
  643.     }
  644.   if (j == ecom2->size)
  645.     return 1;
  646.   else
  647.     return 0;
  648. }
  649. int
  650. ecommunity_cost_cmp (struct ecommunity *ecom1, struct ecommunity *ecom2, u_char poi)
  651. {
  652.   int i = 0;
  653.   int j = 0;
  654.   int find1 = 0;
  655.   int find2 = 0;
  656.   u_char id1 = 0;
  657.   u_char id2 = 0;
  658.   u_int32_t val1 = 0;
  659.   u_int32_t val2 = 0;
  660.   /* For parse Extended Community attribute tupple. */
  661.   struct ecommunity_cost
  662.   {
  663.     u_int16_t type;
  664.     u_char poi;
  665.     u_char id;
  666.     u_int32_t val;
  667.   } ecost;
  668.   if (ecom1 == NULL && ecom2 == NULL)
  669.     return 0;
  670.   while (1)
  671.     {
  672.       while (ecom1 && i < ecom1->size)
  673. {
  674.   memcpy (&ecost, (ecom1->val + (i * 8)), sizeof (struct ecommunity_cost));
  675.   if (ntohs (ecost.type) == ECOMMUNITY_COST_COMMUNITY
  676.       && ecost.poi == poi)
  677.     {
  678.       id1 = ecost.id;
  679.       val1 = ntohl (ecost.val);
  680.       find1 = 1;
  681.       break;
  682.     }
  683.   i++;
  684. }
  685.       while (ecom2 && j < ecom2->size)
  686. {
  687.   memcpy (&ecost, ecom2->val + (j * 8), sizeof (struct ecommunity_cost));
  688.   if (ntohs (ecost.type) == ECOMMUNITY_COST_COMMUNITY
  689.       && ecost.poi == poi)
  690.     {
  691.       id2 = ecost.id;
  692.       val2 = ntohl (ecost.val);
  693.       find2 = 1;
  694.       break;
  695.     }
  696.   j++;
  697. }
  698.       if (! find1 || ! find2)
  699. break;
  700.       if (id1 != id2)
  701. break;
  702.       if (val1 != val2)
  703. break;
  704.       find1 = 0;
  705.       find2 = 0;
  706.       i++;
  707.       j++;
  708.     }
  709.   if (! find1)
  710.     val1 = COST_COMMUNITY_DEFAULT_COST;
  711.   if (! find2)
  712.     val2 = COST_COMMUNITY_DEFAULT_COST;
  713.   if (find1 && find2)
  714.     {
  715.       if (id1 < id2)
  716. return 1;
  717.       if (id1 > id2)
  718. return -1;
  719.     }
  720.   if (val1 < val2)
  721.     return 1;
  722.   if (val1 > val2)
  723.     return -1;
  724.   return 0;
  725. }