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

网络

开发平台:

Unix_Linux

  1. /* 
  2.  * Interface functions.
  3.  * Copyright (C) 1997, 98 Kunihiro Ishiguro
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  * 
  7.  * GNU Zebra is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published
  9.  * by the Free Software Foundation; either version 2, or (at your
  10.  * option) any later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20.  * Boston, MA 02111-1307, USA.
  21.  */
  22. #include <zebra.h>
  23. #include "linklist.h"
  24. #include "vector.h"
  25. #include "vty.h"
  26. #include "command.h"
  27. #include "if.h"
  28. #include "sockunion.h"
  29. #include "prefix.h"
  30. #include "zebra/connected.h"
  31. #include "memory.h"
  32. #include "table.h"
  33. #include "buffer.h"
  34. #include "str.h"
  35. #include "log.h"
  36. /* Master list of interfaces. */
  37. struct list *iflist;
  38. /* One for each program.  This structure is needed to store hooks. */
  39. struct if_master
  40. {
  41.   int (*if_new_hook) (struct interface *);
  42.   int (*if_delete_hook) (struct interface *);
  43. } if_master;
  44. /* Create new interface structure. */
  45. struct interface *
  46. if_new ()
  47. {
  48.   struct interface *ifp;
  49.   ifp = XMALLOC (MTYPE_IF, sizeof (struct interface));
  50.   memset (ifp, 0, sizeof (struct interface));
  51.   return ifp;
  52. }
  53. struct interface *
  54. if_create ()
  55. {
  56.   struct interface *ifp;
  57.   ifp = if_new ();
  58.   
  59.   listnode_add (iflist, ifp);
  60.   ifp->connected = list_new ();
  61.   ifp->connected->del = (void (*) (void *)) connected_free;
  62.   if (if_master.if_new_hook)
  63.     (*if_master.if_new_hook) (ifp);
  64.   return ifp;
  65. }
  66. /* Delete and free interface structure. */
  67. void
  68. if_delete (struct interface *ifp)
  69. {
  70.   listnode_delete (iflist, ifp);
  71.   if (if_master.if_delete_hook)
  72.     (*if_master.if_delete_hook) (ifp);
  73.   /* Free connected address list */
  74.   list_delete (ifp->connected);
  75.   XFREE (MTYPE_IF, ifp);
  76. }
  77. /* Add hook to interface master. */
  78. void
  79. if_add_hook (int type, int (*func)(struct interface *ifp))
  80. {
  81.   switch (type) {
  82.   case IF_NEW_HOOK:
  83.     if_master.if_new_hook = func;
  84.     break;
  85.   case IF_DELETE_HOOK:
  86.     if_master.if_delete_hook = func;
  87.     break;
  88.   default:
  89.     break;
  90.   }
  91. }
  92. /* Interface existance check by index. */
  93. struct interface *
  94. if_lookup_by_index (unsigned int index)
  95. {
  96.   listnode node;
  97.   struct interface *ifp;
  98.   for (node = listhead (iflist); node; nextnode (node))
  99.     {
  100.       ifp = getdata (node);
  101.       if (ifp->ifindex == index)
  102. return ifp;
  103.     }
  104.   return NULL;
  105. }
  106. char *
  107. ifindex2ifname (unsigned int index)
  108. {
  109.   listnode node;
  110.   struct interface *ifp;
  111.   for (node = listhead (iflist); node; nextnode (node))
  112.     {
  113.       ifp = getdata (node);
  114.       if (ifp->ifindex == index)
  115. return ifp->name;
  116.     }
  117.   return "unknown";
  118. }
  119. /* Interface existance check by interface name. */
  120. struct interface *
  121. if_lookup_by_name (char *name)
  122. {
  123.   listnode node;
  124.   struct interface *ifp;
  125.   for (node = listhead (iflist); node; nextnode (node))
  126.     {
  127.       ifp = getdata (node);
  128.       if (strncmp (name, ifp->name, sizeof ifp->name) == 0)
  129. return ifp;
  130.     }
  131.   return NULL;
  132. }
  133. /* Lookup interface by IPv4 address. */
  134. struct interface *
  135. if_lookup_exact_address (struct in_addr src)
  136. {
  137.   listnode node;
  138.   listnode cnode;
  139.   struct interface *ifp;
  140.   struct prefix *p;
  141.   struct connected *c;
  142.   for (node = listhead (iflist); node; nextnode (node))
  143.     {
  144.       ifp = getdata (node);
  145.       for (cnode = listhead (ifp->connected); cnode; nextnode (cnode))
  146. {
  147.   c = getdata (cnode);
  148.   p = c->address;
  149.   if (p && p->family == AF_INET)
  150.     {
  151.       if (IPV4_ADDR_SAME (&p->u.prefix4, &src))
  152. return ifp;
  153.     }       
  154. }
  155.     }
  156.   return NULL;
  157. }
  158. /* Lookup interface by IPv4 address. */
  159. struct interface *
  160. if_lookup_address (struct in_addr src)
  161. {
  162.   listnode node;
  163.   struct prefix addr;
  164.   struct prefix best;
  165.   listnode cnode;
  166.   struct interface *ifp;
  167.   struct prefix *p;
  168.   struct connected *c;
  169.   struct interface *match;
  170.   /* Zero structures - get rid of rubbish from stack */
  171.   memset(&addr, 0, sizeof(addr));
  172.   memset(&best, 0, sizeof(best));
  173.   addr.family = AF_INET;
  174.   addr.u.prefix4 = src;
  175.   addr.prefixlen = IPV4_MAX_BITLEN;
  176.   match = NULL;
  177.   for (node = listhead (iflist); node; nextnode (node))
  178.     {
  179.       ifp = getdata (node);
  180.       for (cnode = listhead (ifp->connected); cnode; nextnode (cnode))
  181. {
  182.   c = getdata (cnode);
  183.   if (if_is_pointopoint (ifp))
  184.     {
  185.       p = c->address;
  186.       if (p && p->family == AF_INET)
  187. {
  188. #ifdef OLD_RIB  /* PTP  links are conventionally identified 
  189.      by the address of the far end - MAG */
  190.   if (IPV4_ADDR_SAME (&p->u.prefix4, &src))
  191.     return ifp;
  192. #endif
  193.   p = c->destination;
  194.   if (p && IPV4_ADDR_SAME (&p->u.prefix4, &src))
  195.     return ifp;
  196. }
  197.     }
  198.   else
  199.     {
  200.       p = c->address;
  201.       if (p->family == AF_INET)
  202. {
  203.   if (prefix_match (p, &addr) && p->prefixlen > best.prefixlen)
  204.     {
  205.       best = *p;
  206.       match = ifp;
  207.     }
  208. }
  209.     }
  210. }
  211.     }
  212.   return match;
  213. }
  214. /* Get interface by name if given name interface doesn't exist create
  215.    one. */
  216. struct interface *
  217. if_get_by_name (char *name)
  218. {
  219.   struct interface *ifp;
  220.   ifp = if_lookup_by_name (name);
  221.   if (ifp == NULL)
  222.     {
  223.       ifp = if_create ();
  224.       strncpy (ifp->name, name, IFNAMSIZ);
  225.     }
  226.   return ifp;
  227. }
  228. /* Does interface up ? */
  229. int
  230. if_is_up (struct interface *ifp)
  231. {
  232.   return ifp->flags & IFF_UP;
  233. }
  234. /* Is this loopback interface ? */
  235. int
  236. if_is_loopback (struct interface *ifp)
  237. {
  238.   return ifp->flags & IFF_LOOPBACK;
  239. }
  240. /* Does this interface support broadcast ? */
  241. int
  242. if_is_broadcast (struct interface *ifp)
  243. {
  244.   return ifp->flags & IFF_BROADCAST;
  245. }
  246. /* Does this interface support broadcast ? */
  247. int
  248. if_is_pointopoint (struct interface *ifp)
  249. {
  250.   return ifp->flags & IFF_POINTOPOINT;
  251. }
  252. /* Does this interface support multicast ? */
  253. int
  254. if_is_multicast (struct interface *ifp)
  255. {
  256.   return ifp->flags & IFF_MULTICAST;
  257. }
  258. /* Printout flag information into log */
  259. const char *
  260. if_flag_dump (unsigned long flag)
  261. {
  262.   int separator = 0;
  263.   static char logbuf[BUFSIZ];
  264. #define IFF_OUT_LOG(X,STR) 
  265.   if ((X) && (flag & (X))) 
  266.     { 
  267.       if (separator) 
  268. strlcat (logbuf, ",", BUFSIZ); 
  269.       else 
  270. separator = 1; 
  271.       strlcat (logbuf, STR, BUFSIZ); 
  272.     }
  273.   strlcpy (logbuf, "  <", BUFSIZ);
  274.   IFF_OUT_LOG (IFF_UP, "UP");
  275.   IFF_OUT_LOG (IFF_BROADCAST, "BROADCAST");
  276.   IFF_OUT_LOG (IFF_DEBUG, "DEBUG");
  277.   IFF_OUT_LOG (IFF_LOOPBACK, "LOOPBACK");
  278.   IFF_OUT_LOG (IFF_POINTOPOINT, "POINTOPOINT");
  279.   IFF_OUT_LOG (IFF_NOTRAILERS, "NOTRAILERS");
  280.   IFF_OUT_LOG (IFF_RUNNING, "RUNNING");
  281.   IFF_OUT_LOG (IFF_NOARP, "NOARP");
  282.   IFF_OUT_LOG (IFF_PROMISC, "PROMISC");
  283.   IFF_OUT_LOG (IFF_ALLMULTI, "ALLMULTI");
  284.   IFF_OUT_LOG (IFF_OACTIVE, "OACTIVE");
  285.   IFF_OUT_LOG (IFF_SIMPLEX, "SIMPLEX");
  286.   IFF_OUT_LOG (IFF_LINK0, "LINK0");
  287.   IFF_OUT_LOG (IFF_LINK1, "LINK1");
  288.   IFF_OUT_LOG (IFF_LINK2, "LINK2");
  289.   IFF_OUT_LOG (IFF_MULTICAST, "MULTICAST");
  290.   strlcat (logbuf, ">", BUFSIZ);
  291.   return logbuf;
  292. }
  293. /* For debugging */
  294. void
  295. if_dump (struct interface *ifp)
  296. {
  297.   listnode node;
  298.   zlog_info ("Interface %s index %d metric %d mtu %d %s",
  299.      ifp->name, ifp->ifindex, ifp->metric, ifp->mtu, 
  300.      if_flag_dump (ifp->flags));
  301.   
  302.   for (node = listhead (ifp->connected); node; nextnode (node))
  303.     ;
  304. }
  305. /* Interface printing for all interface. */
  306. void
  307. if_dump_all ()
  308. {
  309.   listnode node;
  310.   for (node = listhead (iflist); node; nextnode (node))
  311.     if_dump (getdata (node));
  312. }
  313. DEFUN (interface_desc, 
  314.        interface_desc_cmd,
  315.        "description .LINE",
  316.        "Interface specific descriptionn"
  317.        "Characters describing this interfacen")
  318. {
  319.   int i;
  320.   struct interface *ifp;
  321.   struct buffer *b;
  322.   if (argc == 0)
  323.     return CMD_SUCCESS;
  324.   ifp = vty->index;
  325.   if (ifp->desc)
  326.     XFREE (0, ifp->desc);
  327.   b = buffer_new (1024);
  328.   for (i = 0; i < argc; i++)
  329.     {
  330.       buffer_putstr (b, (u_char *)argv[i]);
  331.       buffer_putc (b, ' ');
  332.     }
  333.   buffer_putc (b, '');
  334.   ifp->desc = buffer_getstr (b);
  335.   buffer_free (b);
  336.   return CMD_SUCCESS;
  337. }
  338. DEFUN (no_interface_desc, 
  339.        no_interface_desc_cmd,
  340.        "no description",
  341.        NO_STR
  342.        "Interface specific descriptionn")
  343. {
  344.   struct interface *ifp;
  345.   ifp = vty->index;
  346.   if (ifp->desc)
  347.     XFREE (0, ifp->desc);
  348.   ifp->desc = NULL;
  349.   return CMD_SUCCESS;
  350. }
  351. /* See also wrapper function zebra_interface() in zebra/interface.c */
  352. DEFUN (interface,
  353.        interface_cmd,
  354.        "interface IFNAME",
  355.        "Select an interface to configuren"
  356.        "Interface's namen")
  357. {
  358.   struct interface *ifp;
  359.   ifp = if_lookup_by_name (argv[0]);
  360.   if (ifp == NULL)
  361.     {
  362.       ifp = if_create ();
  363.       strncpy (ifp->name, argv[0], INTERFACE_NAMSIZ);
  364.     }
  365.   vty->index = ifp;
  366.   vty->node = INTERFACE_NODE;
  367.   return CMD_SUCCESS;
  368. }
  369. /* For debug purpose. */
  370. DEFUN (show_address,
  371.        show_address_cmd,
  372.        "show address",
  373.        SHOW_STR
  374.        "addressn")
  375. {
  376.   listnode node;
  377.   listnode node2;
  378.   struct interface *ifp;
  379.   struct connected *ifc;
  380.   struct prefix *p;
  381.   for (node = listhead (iflist); node; nextnode (node))
  382.     {
  383.       ifp = getdata (node);
  384.       for (node2 = listhead (ifp->connected); node2; nextnode (node2))
  385. {
  386.   ifc = getdata (node2);
  387.   p = ifc->address;
  388.   if (p->family == AF_INET)
  389.     vty_out (vty, "%s/%d%s", inet_ntoa (p->u.prefix4), p->prefixlen,
  390.      VTY_NEWLINE);
  391. }
  392.     }
  393.   return CMD_SUCCESS;
  394. }
  395. /* Allocate connected structure. */
  396. struct connected *
  397. connected_new ()
  398. {
  399.   struct connected *new = XMALLOC (MTYPE_CONNECTED, sizeof (struct connected));
  400.   memset (new, 0, sizeof (struct connected));
  401.   return new;
  402. }
  403. /* Free connected structure. */
  404. void
  405. connected_free (struct connected *connected)
  406. {
  407.   if (connected->address)
  408.     prefix_free (connected->address);
  409.   if (connected->destination)
  410.     prefix_free (connected->destination);
  411.   if (connected->label)
  412.     free (connected->label);
  413.   XFREE (MTYPE_CONNECTED, connected);
  414. }
  415. /* Print if_addr structure. */
  416. void
  417. connected_log (struct connected *connected, char *str)
  418. {
  419.   struct prefix *p;
  420.   struct interface *ifp;
  421.   char logbuf[BUFSIZ];
  422.   char buf[BUFSIZ];
  423.   
  424.   ifp = connected->ifp;
  425.   p = connected->address;
  426.   snprintf (logbuf, BUFSIZ, "%s interface %s %s %s/%d ", 
  427.     str, ifp->name, prefix_family_str (p),
  428.     inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
  429.     p->prefixlen);
  430.   p = connected->destination;
  431.   if (p)
  432.     {
  433.       strncat (logbuf, inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
  434.        BUFSIZ - strlen(logbuf));
  435.     }
  436.   zlog (NULL, LOG_INFO, logbuf);
  437. }
  438. /* If two connected address has same prefix return 1. */
  439. int
  440. connected_same_prefix (struct prefix *p1, struct prefix *p2)
  441. {
  442.   if (p1->family == p2->family)
  443.     {
  444.       if (p1->family == AF_INET &&
  445.   IPV4_ADDR_SAME (&p1->u.prefix4, &p2->u.prefix4))
  446. return 1;
  447. #ifdef HAVE_IPV6
  448.       if (p1->family == AF_INET6 &&
  449.   IPV6_ADDR_SAME (&p1->u.prefix6, &p2->u.prefix6))
  450. return 1;
  451. #endif /* HAVE_IPV6 */
  452.     }
  453.   return 0;
  454. }
  455. struct connected *
  456. connected_delete_by_prefix (struct interface *ifp, struct prefix *p)
  457. {
  458.   struct listnode *node;
  459.   struct listnode *next;
  460.   struct connected *ifc;
  461.   /* In case of same prefix come, replace it with new one. */
  462.   for (node = listhead (ifp->connected); node; node = next)
  463.     {
  464.       ifc = getdata (node);
  465.       next = node->next;
  466.       if (connected_same_prefix (ifc->address, p))
  467. {
  468.   listnode_delete (ifp->connected, ifc);
  469.   return ifc;
  470. }
  471.     }
  472.   return NULL;
  473. }
  474. /* Check the connected information is PtP style or not.  */
  475. int
  476. ifc_pointopoint (struct connected *ifc)
  477. {
  478.   struct prefix *p;
  479.   int ptp = 0;
  480.   /* When interface has PtP flag.  */
  481.   if (if_is_pointopoint (ifc->ifp))
  482.     return 1;
  483.   /* RFC3021 PtP check.  */
  484.   p = ifc->address;
  485.   if (p->family == AF_INET)
  486.     ptp = (p->prefixlen >= IPV4_MAX_PREFIXLEN - 1);
  487. #ifdef HAVE_IPV6
  488.   if (p->family == AF_INET6)
  489.     ptp = (p->prefixlen >= IPV6_MAX_PREFIXLEN - 1);
  490. #endif /* HAVE_IPV6 */
  491.   return ptp;
  492. }
  493. #ifndef HAVE_IF_NAMETOINDEX
  494. unsigned int
  495. if_nametoindex (const char *name)
  496. {
  497.   listnode node;
  498.   struct interface *ifp;
  499.   for (node = listhead (iflist); node; nextnode (node))
  500.     {
  501.       ifp = getdata (node);
  502.       if (strcmp (ifp->name, name) == 0)
  503. return ifp->ifindex;
  504.     }
  505.   return 0;
  506. }
  507. #endif
  508. #ifndef HAVE_IF_INDEXTONAME
  509. char *
  510. if_indextoname (unsigned int ifindex, char *name)
  511. {
  512.   listnode node;
  513.   struct interface *ifp;
  514.   for (node = listhead (iflist); node; nextnode (node))
  515.     {
  516.       ifp = getdata (node);
  517.       if (ifp->ifindex == ifindex)
  518. {
  519.   memcpy (name, ifp->name, IFNAMSIZ);
  520.   return ifp->name;
  521. }
  522.     }
  523.   return NULL;
  524. }
  525. #endif
  526. /* Interface looking up by interface's address. */
  527. /* Interface's IPv4 address reverse lookup table. */
  528. struct route_table *ifaddr_ipv4_table;
  529. /* struct route_table *ifaddr_ipv6_table; */
  530. void
  531. ifaddr_ipv4_add (struct in_addr *ifaddr, struct interface *ifp)
  532. {
  533.   struct route_node *rn;
  534.   struct prefix_ipv4 p;
  535.   p.family = AF_INET;
  536.   p.prefixlen = IPV4_MAX_PREFIXLEN;
  537.   p.prefix = *ifaddr;
  538.   rn = route_node_get (ifaddr_ipv4_table, (struct prefix *) &p);
  539.   if (rn)
  540.     {
  541.       route_unlock_node (rn);
  542.       zlog_info ("ifaddr_ipv4_add(): address %s is already added",
  543.  inet_ntoa (*ifaddr));
  544.       return;
  545.     }
  546.   rn->info = ifp;
  547. }
  548. void
  549. ifaddr_ipv4_delete (struct in_addr *ifaddr, struct interface *ifp)
  550. {
  551.   struct route_node *rn;
  552.   struct prefix_ipv4 p;
  553.   p.family = AF_INET;
  554.   p.prefixlen = IPV4_MAX_PREFIXLEN;
  555.   p.prefix = *ifaddr;
  556.   rn = route_node_lookup (ifaddr_ipv4_table, (struct prefix *) &p);
  557.   if (! rn)
  558.     {
  559.       zlog_info ("ifaddr_ipv4_delete(): can't find address %s",
  560.  inet_ntoa (*ifaddr));
  561.       return;
  562.     }
  563.   rn->info = NULL;
  564.   route_unlock_node (rn);
  565.   route_unlock_node (rn);
  566. }
  567. /* Lookup interface by interface's IP address or interface index. */
  568. struct interface *
  569. ifaddr_ipv4_lookup (struct in_addr *addr, unsigned int ifindex)
  570. {
  571.   struct prefix_ipv4 p;
  572.   struct route_node *rn;
  573.   struct interface *ifp;
  574.   listnode node;
  575.   if (addr)
  576.     {
  577.       p.family = AF_INET;
  578.       p.prefixlen = IPV4_MAX_PREFIXLEN;
  579.       p.prefix = *addr;
  580.       rn = route_node_lookup (ifaddr_ipv4_table, (struct prefix *) &p);
  581.       if (! rn)
  582. return NULL;
  583.       
  584.       ifp = rn->info;
  585.       route_unlock_node (rn);
  586.       return ifp;
  587.     }
  588.   else
  589.     {
  590.       for (node = listhead (iflist); node; nextnode (node))
  591. {
  592.   ifp = getdata (node);
  593.   if (ifp->ifindex == ifindex)
  594.     return ifp;
  595. }
  596.     }
  597.   return NULL;
  598. }
  599. /* Initialize interface list. */
  600. void
  601. if_init ()
  602. {
  603.   iflist = list_new ();
  604.   ifaddr_ipv4_table = route_table_init ();
  605.   if (iflist)
  606.     return;
  607.   memset (&if_master, 0, sizeof if_master);
  608. }