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

网络

开发平台:

Unix_Linux

  1. /* RIPng daemon
  2.  * Copyright (C) 1998, 1999 Kunihiro Ishiguro
  3.  *
  4.  * This file is part of GNU Zebra.
  5.  *
  6.  * GNU Zebra is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License as published by the
  8.  * Free Software Foundation; either version 2, or (at your option) any
  9.  * later version.
  10.  *
  11.  * GNU Zebra is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
  18.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  19.  * 02111-1307, USA.  
  20.  */
  21. #include <zebra.h>
  22. /* For struct udphdr. */
  23. #include <netinet/udp.h>
  24. #include "prefix.h"
  25. #include "filter.h"
  26. #include "log.h"
  27. #include "thread.h"
  28. #include "memory.h"
  29. #include "if.h"
  30. #include "stream.h"
  31. #include "table.h"
  32. #include "command.h"
  33. #include "sockopt.h"
  34. #include "distribute.h"
  35. #include "plist.h"
  36. #include "routemap.h"
  37. #include "ripngd/ripngd.h"
  38. #include "ripngd/ripng_route.h"
  39. #include "ripngd/ripng_debug.h"
  40. #include "ripngd/ripng_ifrmap.h"
  41. #define min(a, b) ((a) < (b) ? (a) : (b))
  42. /* RIPng structure which includes many parameters related to RIPng
  43.    protocol. If ripng couldn't active or ripng doesn't configured,
  44.    ripng->fd must be negative value. */
  45. struct ripng *ripng = NULL;
  46. enum
  47. {
  48.   ripng_all_route,
  49.   ripng_changed_route,
  50.   ripng_split_horizon,
  51.   ripng_no_split_horizon
  52. };
  53. /* Prototypes. */
  54. void
  55. ripng_output_process (struct interface *, struct sockaddr_in6 *, int, int);
  56. int
  57. ripng_triggered_update (struct thread *);
  58. /* RIPng next hop specification. */
  59. struct ripng_nexthop
  60. {
  61.   enum ripng_nexthop_type
  62.   {
  63.     RIPNG_NEXTHOP_UNSPEC,
  64.     RIPNG_NEXTHOP_ADDRESS
  65.   } flag;
  66.   struct in6_addr address;
  67. };
  68. /* Utility function for making IPv6 address string. */
  69. const char *
  70. inet6_ntop (struct in6_addr *p)
  71. {
  72.   static char buf[INET6_ADDRSTRLEN];
  73.   inet_ntop (AF_INET6, p, buf, INET6_ADDRSTRLEN);
  74.   return buf;
  75. }
  76. /* Allocate new ripng information. */
  77. struct ripng_info *
  78. ripng_info_new ()
  79. {
  80.   struct ripng_info *new;
  81.   new = XCALLOC (MTYPE_RIPNG_ROUTE, sizeof (struct ripng_info));
  82.   return new;
  83. }
  84. /* Free ripng information. */
  85. void
  86. ripng_info_free (struct ripng_info *rinfo)
  87. {
  88.   XFREE (MTYPE_RIPNG_ROUTE, rinfo);
  89. }
  90. static int
  91. setsockopt_so_recvbuf (int sock, int size)
  92. {
  93.   int ret;
  94.   ret = setsockopt (sock, SOL_SOCKET, SO_RCVBUF, (char *) &size, sizeof (int));
  95.   if (ret < 0)
  96.     zlog (NULL, LOG_ERR, "can't setsockopt SO_RCVBUF");
  97.   return ret;
  98. }
  99. /* Create ripng socket. */
  100. int 
  101. ripng_make_socket (void)
  102. {
  103.   int ret;
  104.   int sock;
  105.   struct sockaddr_in6 ripaddr;
  106.   sock = socket (AF_INET6, SOCK_DGRAM, 0);
  107.   if (sock < 0)
  108.     {
  109.       zlog (NULL, LOG_ERR, "Can't make ripng socket");
  110.       return sock;
  111.     }
  112.   ret = setsockopt_so_recvbuf (sock, 8096);
  113.   if (ret < 0)
  114.     return ret;
  115.   ret = setsockopt_ipv6_pktinfo (sock, 1);
  116.   if (ret < 0)
  117.     return ret;
  118.   ret = setsockopt_ipv6_multicast_hops (sock, 255);
  119.   if (ret < 0)
  120.     return ret;
  121.   ret = setsockopt_ipv6_multicast_loop (sock, 0);
  122.   if (ret < 0)
  123.     return ret;
  124.   ret = setsockopt_ipv6_hoplimit (sock, 1);
  125.   if (ret < 0)
  126.     return ret;
  127.   memset (&ripaddr, 0, sizeof (ripaddr));
  128.   ripaddr.sin6_family = AF_INET6;
  129. #ifdef SIN6_LEN
  130.   ripaddr.sin6_len = sizeof (struct sockaddr_in6);
  131. #endif /* SIN6_LEN */
  132.   ripaddr.sin6_port = htons (RIPNG_PORT_DEFAULT);
  133.   ret = bind (sock, (struct sockaddr *) &ripaddr, sizeof (ripaddr));
  134.   if (ret < 0)
  135.     {
  136.       zlog (NULL, LOG_ERR, "Can't bind ripng socket: %s.", strerror (errno));
  137.       return ret;
  138.     }
  139.   return sock;
  140. }
  141. /* Send RIPng packet. */
  142. int
  143. ripng_send_packet (caddr_t buf, int bufsize, struct sockaddr_in6 *to, 
  144.    struct interface *ifp)
  145. {
  146.   int ret;
  147.   struct msghdr msg;
  148.   struct iovec iov;
  149.   struct cmsghdr  *cmsgptr;
  150.   char adata [256];
  151.   struct in6_pktinfo *pkt;
  152.   struct sockaddr_in6 addr;
  153. #ifdef DEBUG
  154.   if (to)
  155.     zlog_info ("DEBUG RIPng: send to %s", inet6_ntop (&to->sin6_addr));
  156.   zlog_info ("DEBUG RIPng: send if %s", ifp->name);
  157.   zlog_info ("DEBUG RIPng: send packet size %d", bufsize);
  158. #endif /* DEBUG */
  159.   memset (&addr, 0, sizeof (struct sockaddr_in6));
  160.   addr.sin6_family = AF_INET6;
  161. #ifdef SIN6_LEN
  162.   addr.sin6_len = sizeof (struct sockaddr_in6);
  163. #endif /* SIN6_LEN */
  164.   addr.sin6_flowinfo = htonl (RIPNG_PRIORITY_DEFAULT);
  165.   /* When destination is specified. */
  166.   if (to != NULL)
  167.     {
  168.       addr.sin6_addr = to->sin6_addr;
  169.       addr.sin6_port = to->sin6_port;
  170.     }
  171.   else
  172.     {
  173.       inet_pton(AF_INET6, RIPNG_GROUP, &addr.sin6_addr);
  174.       addr.sin6_port = htons (RIPNG_PORT_DEFAULT);
  175.     }
  176.   msg.msg_name = (void *) &addr;
  177.   msg.msg_namelen = sizeof (struct sockaddr_in6);
  178.   msg.msg_iov = &iov;
  179.   msg.msg_iovlen = 1;
  180.   msg.msg_control = (void *) adata;
  181.   msg.msg_controllen = CMSG_SPACE(sizeof(struct in6_pktinfo));
  182.   iov.iov_base = buf;
  183.   iov.iov_len = bufsize;
  184.   cmsgptr = (struct cmsghdr *)adata;
  185.   cmsgptr->cmsg_len = CMSG_LEN(sizeof (struct in6_pktinfo));
  186.   cmsgptr->cmsg_level = IPPROTO_IPV6;
  187.   cmsgptr->cmsg_type = IPV6_PKTINFO;
  188.   pkt = (struct in6_pktinfo *) CMSG_DATA (cmsgptr);
  189.   memset (&pkt->ipi6_addr, 0, sizeof (struct in6_addr));
  190.   pkt->ipi6_ifindex = ifp->ifindex;
  191.   ret = sendmsg (ripng->sock, &msg, 0);
  192.   if (ret < 0)
  193.     zlog_warn ("RIPng send fail on %s: %s", ifp->name, strerror (errno));
  194.   return ret;
  195. }
  196. /* Receive UDP RIPng packet from socket. */
  197. int
  198. ripng_recv_packet (int sock, u_char *buf, int bufsize,
  199.    struct sockaddr_in6 *from, unsigned int *ifindex, 
  200.    int *hoplimit)
  201. {
  202.   int ret;
  203.   struct msghdr msg;
  204.   struct iovec iov;
  205.   struct cmsghdr  *cmsgptr;
  206.   struct in6_addr dst;
  207.   /* Ancillary data.  This store cmsghdr and in6_pktinfo.  But at this
  208.      point I can't determine size of cmsghdr */
  209.   char adata[1024];
  210.   /* Fill in message and iovec. */
  211.   msg.msg_name = (void *) from;
  212.   msg.msg_namelen = sizeof (struct sockaddr_in6);
  213.   msg.msg_iov = &iov;
  214.   msg.msg_iovlen = 1;
  215.   msg.msg_control = (void *) adata;
  216.   msg.msg_controllen = sizeof adata;
  217.   iov.iov_base = buf;
  218.   iov.iov_len = bufsize;
  219.   /* If recvmsg fail return minus value. */
  220.   ret = recvmsg (sock, &msg, 0);
  221.   if (ret < 0)
  222.     return ret;
  223.   for (cmsgptr = CMSG_FIRSTHDR(&msg); cmsgptr != NULL;
  224.        cmsgptr = CMSG_NXTHDR(&msg, cmsgptr)) 
  225.     {
  226.       /* I want interface index which this packet comes from. */
  227.       if (cmsgptr->cmsg_level == IPPROTO_IPV6 &&
  228.   cmsgptr->cmsg_type == IPV6_PKTINFO) 
  229. {
  230.   struct in6_pktinfo *ptr;
  231.   
  232.   ptr = (struct in6_pktinfo *) CMSG_DATA (cmsgptr);
  233.   *ifindex = ptr->ipi6_ifindex;
  234.   dst = ptr->ipi6_addr;
  235.   if (*ifindex == 0)
  236.     zlog_warn ("Interface index returned by IPV6_PKTINFO is zero");
  237.         }
  238.       /* Incoming packet's multicast hop limit. */
  239.       if (cmsgptr->cmsg_level == IPPROTO_IPV6 &&
  240.   cmsgptr->cmsg_type == IPV6_HOPLIMIT)
  241. *hoplimit = *((int *) CMSG_DATA (cmsgptr));
  242.     }
  243.   /* Hoplimit check shold be done when destination address is
  244.      multicast address. */
  245.   if (! IN6_IS_ADDR_MULTICAST (&dst))
  246.     *hoplimit = -1;
  247.   return ret;
  248. }
  249. /* Dump rip packet */
  250. void
  251. ripng_packet_dump (struct ripng_packet *packet, int size, char *sndrcv)
  252. {
  253.   caddr_t lim;
  254.   struct rte *rte;
  255.   char *command_str;
  256.   /* Set command string. */
  257.   if (packet->command == RIPNG_REQUEST)
  258.     command_str = "request";
  259.   else if (packet->command == RIPNG_RESPONSE)
  260.     command_str = "response";
  261.   else
  262.     command_str = "unknown";
  263.   /* Dump packet header. */
  264.   zlog_info ("%s %s version %d packet size %d", 
  265.      sndrcv, command_str, packet->version, size);
  266.   /* Dump each routing table entry. */
  267.   rte = packet->rte;
  268.   for (lim = (caddr_t) packet + size; (caddr_t) rte < lim; rte++)
  269.     {
  270.       if (rte->metric == RIPNG_METRIC_NEXTHOP)
  271. zlog_info ("  nexthop %s/%d", inet6_ntop (&rte->addr), rte->prefixlen);
  272.       else
  273. zlog_info ("  %s/%d metric %d tag %d", 
  274.    inet6_ntop (&rte->addr), rte->prefixlen, 
  275.    rte->metric, ntohs (rte->tag));
  276.     }
  277. }
  278. /* RIPng next hop address RTE (Route Table Entry). */
  279. void
  280. ripng_nexthop_rte (struct rte *rte,
  281.    struct sockaddr_in6 *from,
  282.    struct ripng_nexthop *nexthop)
  283. {
  284.   char buf[INET6_BUFSIZ];
  285.   /* Logging before checking RTE. */
  286.   if (IS_RIPNG_DEBUG_RECV)
  287.     zlog_info ("RIPng nexthop RTE address %s tag %d prefixlen %d",
  288.        inet6_ntop (&rte->addr), ntohs (rte->tag), rte->prefixlen);
  289.   /* RFC2080 2.1.1 Next Hop: 
  290.    The route tag and prefix length in the next hop RTE must be
  291.    set to zero on sending and ignored on receiption.  */
  292.   if (ntohs (rte->tag) != 0)
  293.     zlog_warn ("RIPng nexthop RTE with non zero tag value %d from %s",
  294.        ntohs (rte->tag), inet6_ntop (&from->sin6_addr));
  295.   if (rte->prefixlen != 0)
  296.     zlog_warn ("RIPng nexthop RTE with non zero prefixlen value %d from %s",
  297.        rte->prefixlen, inet6_ntop (&from->sin6_addr));
  298.   /* Specifying a value of 0:0:0:0:0:0:0:0 in the prefix field of a
  299.    next hop RTE indicates that the next hop address should be the
  300.    originator of the RIPng advertisement.  An address specified as a
  301.    next hop must be a link-local address.  */
  302.   if (IN6_IS_ADDR_UNSPECIFIED (&rte->addr))
  303.     {
  304.       nexthop->flag = RIPNG_NEXTHOP_UNSPEC;
  305.       memset (&nexthop->address, 0, sizeof (struct in6_addr));
  306.       return;
  307.     }
  308.   if (IN6_IS_ADDR_LINKLOCAL (&rte->addr))
  309.     {
  310.       nexthop->flag = RIPNG_NEXTHOP_ADDRESS;
  311.       IPV6_ADDR_COPY (&nexthop->address, &rte->addr);
  312.       return;
  313.     }
  314.   /* The purpose of the next hop RTE is to eliminate packets being
  315.    routed through extra hops in the system.  It is particularly useful
  316.    when RIPng is not being run on all of the routers on a network.
  317.    Note that next hop RTE is "advisory".  That is, if the provided
  318.    information is ignored, a possibly sub-optimal, but absolutely
  319.    valid, route may be taken.  If the received next hop address is not
  320.    a link-local address, it should be treated as 0:0:0:0:0:0:0:0.  */
  321.   zlog_warn ("RIPng nexthop RTE with non link-local address %s from %s",
  322.      inet6_ntop (&rte->addr),
  323.      inet_ntop (AF_INET6, &from->sin6_addr, buf, INET6_BUFSIZ));
  324.   nexthop->flag = RIPNG_NEXTHOP_UNSPEC;
  325.   memset (&nexthop->address, 0, sizeof (struct in6_addr));
  326.   return;
  327. }
  328. /* If ifp has same link-local address then return 1. */
  329. int
  330. ripng_lladdr_check (struct interface *ifp, struct in6_addr *addr)
  331. {
  332.   listnode listnode;
  333.   struct connected *connected;
  334.   struct prefix *p;
  335.   for (listnode = listhead (ifp->connected); listnode; nextnode (listnode))
  336.     if ((connected = getdata (listnode)) != NULL)
  337.       {
  338. p = connected->address;
  339. if (p->family == AF_INET6 &&
  340.     IN6_IS_ADDR_LINKLOCAL (&p->u.prefix6) &&
  341.     IN6_ARE_ADDR_EQUAL (&p->u.prefix6, addr))
  342.   return 1;
  343.       }
  344.   return 0;
  345. }
  346. /* RIPng route garbage collect timer. */
  347. int
  348. ripng_garbage_collect (struct thread *t)
  349. {
  350.   struct ripng_info *rinfo;
  351.   struct route_node *rp;
  352.   rinfo = THREAD_ARG (t);
  353.   rinfo->t_garbage_collect = NULL;
  354.   /* Off timeout timer. */
  355.   RIPNG_TIMER_OFF (rinfo->t_timeout);
  356.   
  357.   /* Get route_node pointer. */
  358.   rp = rinfo->rp;
  359.   /* Delete this route from the kernel. */
  360.   ripng_zebra_ipv6_delete ((struct prefix_ipv6 *)&rp->p, 
  361.    &rinfo->nexthop, rinfo->ifindex);
  362.   rinfo->flags &= ~RIPNG_RTF_FIB;
  363.   /* Aggregate count decrement. */
  364.   ripng_aggregate_decrement (rp, rinfo);
  365.   /* Unlock route_node. */
  366.   rp->info = NULL;
  367.   route_unlock_node (rp);
  368.   /* Free RIPng routing information. */
  369.   ripng_info_free (rinfo);
  370.   return 0;
  371. }
  372. /* Timeout RIPng routes. */
  373. int
  374. ripng_timeout (struct thread *t)
  375. {
  376.   struct ripng_info *rinfo;
  377.   struct route_node *rp;
  378.   rinfo = THREAD_ARG (t);
  379.   rinfo->t_timeout = NULL;
  380.   /* Get route_node pointer. */
  381.   rp = rinfo->rp;
  382.   /* - The garbage-collection timer is set for 120 seconds. */
  383.   RIPNG_TIMER_ON (rinfo->t_garbage_collect, ripng_garbage_collect, 
  384.   ripng->garbage_time);
  385.   /* - The metric for the route is set to 16 (infinity).  This causes
  386.      the route to be removed from service. */
  387.   rinfo->metric = RIPNG_METRIC_INFINITY;
  388.   /* - The route change flag is to indicate that this entry has been
  389.      changed. */
  390.   rinfo->flags |= RIPNG_RTF_CHANGED;
  391.   /* - The output process is signalled to trigger a response. */
  392.   ripng_event (RIPNG_TRIGGERED_UPDATE, 0);
  393.   return 0;
  394. }
  395. void
  396. ripng_timeout_update (struct ripng_info *rinfo)
  397. {
  398.   if (rinfo->metric != RIPNG_METRIC_INFINITY)
  399.     {
  400.       RIPNG_TIMER_OFF (rinfo->t_timeout);
  401.       RIPNG_TIMER_ON (rinfo->t_timeout, ripng_timeout, ripng->timeout_time);
  402.     }
  403. }
  404. /* Process RIPng route according to RFC2080. */
  405. void
  406. ripng_route_process (struct rte *rte, struct sockaddr_in6 *from,
  407.      struct ripng_nexthop *ripng_nexthop,
  408.      struct interface *ifp)
  409. {
  410.   struct prefix_ipv6 p;
  411.   struct route_node *rp;
  412.   struct ripng_info *rinfo;
  413.   struct ripng_interface *ri;
  414.   struct in6_addr *nexthop;
  415.   u_char oldmetric;
  416.   int same = 0;
  417.   /* Make prefix structure. */
  418.   memset (&p, 0, sizeof (struct prefix_ipv6));
  419.   p.family = AF_INET6;
  420.   /* p.prefix = rte->addr; */
  421.   IPV6_ADDR_COPY (&p.prefix, &rte->addr);
  422.   p.prefixlen = rte->prefixlen;
  423.   /* Make sure mask is applied. */
  424.   /* XXX We have to check the prefix is valid or not before call
  425.      apply_mask_ipv6. */
  426.   apply_mask_ipv6 (&p);
  427.   /* Apply input filters. */
  428.   ri = ifp->info;
  429.   if (ri->list[RIPNG_FILTER_IN])
  430.     {
  431.       if (access_list_apply (ri->list[RIPNG_FILTER_IN], &p) == FILTER_DENY)
  432. {
  433.   if (IS_RIPNG_DEBUG_PACKET)
  434.     zlog_info ("RIPng %s/%d is filtered by distribute in",
  435.        inet6_ntop (&p.prefix), p.prefixlen);
  436.   return;
  437. }
  438.     }
  439.   if (ri->prefix[RIPNG_FILTER_IN])
  440.     {
  441.       if (prefix_list_apply (ri->prefix[RIPNG_FILTER_IN], &p) == PREFIX_DENY)
  442. {
  443.   if (IS_RIPNG_DEBUG_PACKET)
  444.     zlog_info ("RIPng %s/%d is filtered by prefix-list in",
  445.        inet6_ntop (&p.prefix), p.prefixlen);
  446.   return;
  447. }
  448.     }
  449.   /* Modify entry. */
  450.   if (ri->routemap[RIPNG_FILTER_IN])
  451.     {
  452.       int ret;
  453.       struct ripng_info newinfo;
  454.       memset (&newinfo, 0, sizeof (struct ripng_info));
  455.       newinfo.metric = rte->metric;
  456.       ret = route_map_apply (ri->routemap[RIPNG_FILTER_IN], 
  457.      (struct prefix *)&p, RMAP_RIPNG, &newinfo);
  458.       if (ret == RMAP_DENYMATCH)
  459. {
  460.   if (IS_RIPNG_DEBUG_PACKET)
  461.     zlog_info ("RIPng %s/%d is filtered by route-map in",
  462.        inet6_ntop (&p.prefix), p.prefixlen);
  463.   return;
  464. }
  465.       rte->metric = newinfo.metric;
  466.     }
  467.   /* Set nexthop pointer. */
  468.   if (ripng_nexthop->flag == RIPNG_NEXTHOP_ADDRESS)
  469.     nexthop = &ripng_nexthop->address;
  470.   else
  471.     nexthop = &from->sin6_addr;
  472.   /* Lookup RIPng routing table. */
  473.   rp = route_node_get (ripng->table, (struct prefix *) &p);
  474.   if (rp->info == NULL)
  475.     {
  476.       /* Now, check to see whether there is already an explicit route
  477.  for the destination prefix.  If there is no such route, add
  478.  this route to the routing table, unless the metric is
  479.  infinity (there is no point in adding a route which
  480.  unusable). */
  481.       if (rte->metric != RIPNG_METRIC_INFINITY)
  482. {
  483.   rinfo = ripng_info_new ();
  484.   
  485.   /* - Setting the destination prefix and length to those in
  486.      the RTE. */
  487.   rp->info = rinfo;
  488.   rinfo->rp = rp;
  489.   /* - Setting the metric to the newly calculated metric (as
  490.      described above). */
  491.   rinfo->metric = rte->metric;
  492.   rinfo->tag = ntohs (rte->tag);
  493.   /* - Set the next hop address to be the address of the router
  494.      from which the datagram came or the next hop address
  495.      specified by a next hop RTE. */
  496.   IPV6_ADDR_COPY (&rinfo->nexthop, nexthop);
  497.   IPV6_ADDR_COPY (&rinfo->from, &from->sin6_addr);
  498.   rinfo->ifindex = ifp->ifindex;
  499.   /* - Initialize the timeout for the route.  If the
  500.      garbage-collection timer is running for this route, stop it. */
  501.   ripng_timeout_update (rinfo);
  502.   /* - Set the route change flag. */
  503.   rinfo->flags |= RIPNG_RTF_CHANGED;
  504.   /* - Signal the output process to trigger an update (see section
  505.      2.5). */
  506.   ripng_event (RIPNG_TRIGGERED_UPDATE, 0);
  507.   /* Finally, route goes into the kernel. */
  508.   rinfo->type = ZEBRA_ROUTE_RIPNG;
  509.   rinfo->sub_type = RIPNG_ROUTE_RTE;
  510.   ripng_zebra_ipv6_add (&p, &rinfo->nexthop, rinfo->ifindex);
  511.   rinfo->flags |= RIPNG_RTF_FIB;
  512.   /* Aggregate check. */
  513.   ripng_aggregate_increment (rp, rinfo);
  514. }
  515.     }
  516.   else
  517.     {
  518.       rinfo = rp->info;
  519.   
  520.       /* If there is an existing route, compare the next hop address
  521.  to the address of the router from which the datagram came.
  522.  If this datagram is from the same router as the existing
  523.  route, reinitialize the timeout.  */
  524.       same = (IN6_ARE_ADDR_EQUAL (&rinfo->from, &from->sin6_addr) 
  525.       && (rinfo->ifindex == ifp->ifindex));
  526.       if (same)
  527. ripng_timeout_update (rinfo);
  528.       /* Next, compare the metrics.  If the datagram is from the same
  529.  router as the existing route, and the new metric is different
  530.  than the old one; or, if the new metric is lower than the old
  531.  one; do the following actions: */
  532.       if ((same && rinfo->metric != rte->metric) ||
  533.   rte->metric < rinfo->metric)
  534. {
  535.   /* - Adopt the route from the datagram.  That is, put the
  536.      new metric in, and adjust the next hop address (if
  537.      necessary). */
  538.   oldmetric = rinfo->metric;
  539.   rinfo->metric = rte->metric;
  540.   rinfo->tag = ntohs (rte->tag);
  541.   if (! IN6_ARE_ADDR_EQUAL (&rinfo->nexthop, nexthop))
  542.     {
  543.       ripng_zebra_ipv6_delete (&p, &rinfo->nexthop, rinfo->ifindex);
  544.       ripng_zebra_ipv6_add (&p, nexthop, ifp->ifindex);
  545.       rinfo->flags |= RIPNG_RTF_FIB;
  546.       IPV6_ADDR_COPY (&rinfo->nexthop, nexthop);
  547.     }
  548.   IPV6_ADDR_COPY (&rinfo->from, &from->sin6_addr);
  549.   rinfo->ifindex = ifp->ifindex;
  550.   /* - Set the route change flag and signal the output process
  551.      to trigger an update. */
  552.   rinfo->flags |= RIPNG_RTF_CHANGED;
  553.   ripng_event (RIPNG_TRIGGERED_UPDATE, 0);
  554.   /* - If the new metric is infinity, start the deletion
  555.      process (described above); */
  556.   if (rinfo->metric == RIPNG_METRIC_INFINITY)
  557.     {
  558.       /* If the new metric is infinity, the deletion process
  559.  begins for the route, which is no longer used for
  560.  routing packets.  Note that the deletion process is
  561.  started only when the metric is first set to
  562.  infinity.  If the metric was already infinity, then a
  563.  new deletion process is not started. */
  564.       if (oldmetric != RIPNG_METRIC_INFINITY)
  565. {
  566.   /* - The garbage-collection timer is set for 120 seconds. */
  567.   RIPNG_TIMER_ON (rinfo->t_garbage_collect, 
  568.   ripng_garbage_collect, ripng->garbage_time);
  569.   RIPNG_TIMER_OFF (rinfo->t_timeout);
  570.   /* - The metric for the route is set to 16
  571.      (infinity).  This causes the route to be removed
  572.      from service.*/
  573.   /* - The route change flag is to indicate that this
  574.      entry has been changed. */
  575.   /* - The output process is signalled to trigger a
  576.                      response. */
  577.   ;  /* Above processes are already done previously. */
  578. }
  579.     }
  580.   else
  581.     {
  582.       /* otherwise, re-initialize the timeout. */
  583.       ripng_timeout_update (rinfo);
  584.       /* Should a new route to this network be established
  585.  while the garbage-collection timer is running, the
  586.  new route will replace the one that is about to be
  587.  deleted.  In this case the garbage-collection timer
  588.  must be cleared. */
  589.       RIPNG_TIMER_OFF (rinfo->t_garbage_collect);
  590.     }
  591. }
  592.       /* Unlock tempolary lock of the route. */
  593.       route_unlock_node (rp);
  594.     }
  595. }
  596. /* Add redistributed route to RIPng table. */
  597. void
  598. ripng_redistribute_add (int type, int sub_type, struct prefix_ipv6 *p, 
  599. unsigned int ifindex)
  600. {
  601.   struct route_node *rp;
  602.   struct ripng_info *rinfo;
  603.   /* Redistribute route  */
  604.   if (IN6_IS_ADDR_LINKLOCAL (&p->prefix))
  605.     return;
  606.   if (IN6_IS_ADDR_LOOPBACK (&p->prefix))
  607.     return;
  608.   rp = route_node_get (ripng->table, (struct prefix *) p);
  609.   rinfo = rp->info;
  610.   if (rinfo)
  611.     {
  612.       RIPNG_TIMER_OFF (rinfo->t_timeout);
  613.       RIPNG_TIMER_OFF (rinfo->t_garbage_collect);
  614.       route_unlock_node (rp);
  615.     }
  616.   else
  617.     {
  618.       rinfo = ripng_info_new ();
  619.       ripng_aggregate_increment (rp, rinfo);
  620.     }
  621.   rinfo->type = type;
  622.   rinfo->sub_type = sub_type;
  623.   rinfo->ifindex = ifindex;
  624.   rinfo->metric = 1;
  625.   rinfo->flags |= RIPNG_RTF_FIB;
  626.   rinfo->rp = rp;
  627.   rp->info = rinfo;
  628. }
  629. /* Delete redistributed route to RIPng table. */
  630. void
  631. ripng_redistribute_delete (int type, int sub_type, struct prefix_ipv6 *p, 
  632.    unsigned int ifindex)
  633. {
  634.   struct route_node *rp;
  635.   struct ripng_info *rinfo;
  636.   if (IN6_IS_ADDR_LINKLOCAL (&p->prefix))
  637.     return;
  638.   if (IN6_IS_ADDR_LOOPBACK (&p->prefix))
  639.     return;
  640.   rp = route_node_lookup (ripng->table, (struct prefix *) p);
  641.   if (rp)
  642.     {
  643.       rinfo = rp->info;
  644.       if (rinfo != NULL
  645.   && rinfo->type == type 
  646.   && rinfo->sub_type == sub_type 
  647.   && rinfo->ifindex == ifindex)
  648. {
  649.   rp->info = NULL;
  650.   RIPNG_TIMER_OFF (rinfo->t_timeout);
  651.   RIPNG_TIMER_OFF (rinfo->t_garbage_collect);
  652.   
  653.   ripng_info_free (rinfo);
  654.   route_unlock_node (rp);
  655. }
  656.       /* For unlock route_node_lookup (). */
  657.       route_unlock_node (rp);
  658.     }
  659. }
  660. /* Withdraw redistributed route. */
  661. void
  662. ripng_redistribute_withdraw (int type)
  663. {
  664.   struct route_node *rp;
  665.   struct ripng_info *rinfo;
  666.   for (rp = route_top (ripng->table); rp; rp = route_next (rp))
  667.     if ((rinfo = rp->info) != NULL)
  668.       {
  669. if (rinfo->type == type)
  670.   {
  671.     rp->info = NULL;
  672.     RIPNG_TIMER_OFF (rinfo->t_timeout);
  673.     RIPNG_TIMER_OFF (rinfo->t_garbage_collect);
  674.     ripng_info_free (rinfo);
  675.     route_unlock_node (rp);
  676.   }
  677.       }
  678. }
  679. /* RIP routing information. */
  680. void
  681. ripng_response_process (struct ripng_packet *packet, int size, 
  682. struct sockaddr_in6 *from, struct interface *ifp,
  683. int hoplimit)
  684. {
  685.   caddr_t lim;
  686.   struct rte *rte;
  687.   struct ripng_nexthop nexthop;
  688.   /* RFC2080 2.4.2  Response Messages:
  689.    The Response must be ignored if it is not from the RIPng port.  */
  690.   if (ntohs (from->sin6_port) != RIPNG_PORT_DEFAULT)
  691.     {
  692.       zlog_warn ("RIPng packet comes from non RIPng port %d from %s",
  693.  ntohs (from->sin6_port), inet6_ntop (&from->sin6_addr));
  694.       return;
  695.     }
  696.   /* The datagram's IPv6 source address should be checked to see
  697.    whether the datagram is from a valid neighbor; the source of the
  698.    datagram must be a link-local address.  */
  699.   if (! IN6_IS_ADDR_LINKLOCAL(&from->sin6_addr))
  700.    {
  701.       zlog_warn ("RIPng packet comes from non link local address %s",
  702.  inet6_ntop (&from->sin6_addr));
  703.       return;
  704.     }
  705.   /* It is also worth checking to see whether the response is from one
  706.    of the router's own addresses.  Interfaces on broadcast networks
  707.    may receive copies of their own multicasts immediately.  If a
  708.    router processes its own output as new input, confusion is likely,
  709.    and such datagrams must be ignored. */
  710.   if (ripng_lladdr_check (ifp, &from->sin6_addr))
  711.     {
  712.       zlog_warn ("RIPng packet comes from my own link local address %s",
  713.  inet6_ntop (&from->sin6_addr));
  714.       return;
  715.     }
  716.   /* As an additional check, periodic advertisements must have their
  717.    hop counts set to 255, and inbound, multicast packets sent from the
  718.    RIPng port (i.e. periodic advertisement or triggered update
  719.    packets) must be examined to ensure that the hop count is 255. */
  720.   if (hoplimit >= 0 && hoplimit != 255)
  721.     {
  722.       zlog_warn ("RIPng packet comes with non 255 hop count %d from %s",
  723.  hoplimit, inet6_ntop (&from->sin6_addr));
  724.       return;
  725.     }
  726.   /* Reset nexthop. */
  727.   memset (&nexthop, 0, sizeof (struct ripng_nexthop));
  728.   nexthop.flag = RIPNG_NEXTHOP_UNSPEC;
  729.   /* Set RTE pointer. */
  730.   rte = packet->rte;
  731.   for (lim = ((caddr_t) packet) + size; (caddr_t) rte < lim; rte++) 
  732.     {
  733.       /* First of all, we have to check this RTE is next hop RTE or
  734.          not.  Next hop RTE is completely different with normal RTE so
  735.          we need special treatment. */
  736.       if (rte->metric == RIPNG_METRIC_NEXTHOP)
  737. {
  738.   ripng_nexthop_rte (rte, from, &nexthop);
  739.   continue;
  740. }
  741.       /* RTE information validation. */
  742.       /* - is the destination prefix valid (e.g., not a multicast
  743.          prefix and not a link-local address) A link-local address
  744.          should never be present in an RTE. */
  745.       if (IN6_IS_ADDR_MULTICAST (&rte->addr))
  746. {
  747.   zlog_warn ("Destination prefix is a multicast address %s/%d [%d]",
  748.      inet6_ntop (&rte->addr), rte->prefixlen, rte->metric);
  749.   continue;
  750. }
  751.       if (IN6_IS_ADDR_LINKLOCAL (&rte->addr))
  752. {
  753.   zlog_warn ("Destination prefix is a link-local address %s/%d [%d]",
  754.      inet6_ntop (&rte->addr), rte->prefixlen, rte->metric);
  755.   continue;
  756. }
  757.       if (IN6_IS_ADDR_LOOPBACK (&rte->addr))
  758. {
  759.   zlog_warn ("Destination prefix is a loopback address %s/%d [%d]",
  760.      inet6_ntop (&rte->addr), rte->prefixlen, rte->metric);
  761.   continue;
  762. }
  763.       /* - is the prefix length valid (i.e., between 0 and 128,
  764.          inclusive) */
  765.       if (rte->prefixlen > 128)
  766. {
  767.   zlog_warn ("Invalid prefix length %s/%d from %s%%%s",
  768.      inet6_ntop (&rte->addr), rte->prefixlen,
  769.      inet6_ntop (&from->sin6_addr), ifp->name);
  770.   continue;
  771. }
  772.       /* - is the metric valid (i.e., between 1 and 16, inclusive) */
  773.       if (! (rte->metric >= 1 && rte->metric <= 16))
  774. {
  775.   zlog_warn ("Invalid metric %d from %s%%%s", rte->metric,
  776.      inet6_ntop (&from->sin6_addr), ifp->name);
  777.   continue;
  778. }
  779.       /* Metric calculation. */
  780.       rte->metric += ifp->metric;
  781.       if (rte->metric > RIPNG_METRIC_INFINITY)
  782. rte->metric = RIPNG_METRIC_INFINITY;
  783.       /* Routing table updates. */
  784.       ripng_route_process (rte, from, &nexthop, ifp);
  785.     }
  786. }
  787. /* Response to request message. */
  788. void
  789. ripng_request_process (struct ripng_packet *packet,int size, 
  790.        struct sockaddr_in6 *from, struct interface *ifp)
  791. {
  792.   caddr_t lim;
  793.   struct rte *rte;
  794.   struct prefix_ipv6 p;
  795.   struct route_node *rp;
  796.   struct ripng_info *rinfo;
  797.   struct ripng_interface *ri;
  798.   /* Check RIPng process is enabled on this interface. */
  799.   ri = ifp->info;
  800.   if (! ri->running)
  801.     return;
  802.   /* When passive interface is specified, suppress responses */
  803.   if (ri->passive)
  804.     return;
  805.   lim = ((caddr_t) packet) + size;
  806.   rte = packet->rte;
  807.   /* The Request is processed entry by entry.  If there are no
  808.      entries, no response is given. */
  809.   if (lim == (caddr_t) rte)
  810.     return;
  811.   /* There is one special case.  If there is exactly one entry in the
  812.      request, and it has a destination prefix of zero, a prefix length
  813.      of zero, and a metric of infinity (i.e., 16), then this is a
  814.      request to send the entire routing table.  In that case, a call
  815.      is made to the output process to send the routing table to the
  816.      requesting address/port. */
  817.   if (lim == ((caddr_t) (rte + 1)) &&
  818.       IN6_IS_ADDR_UNSPECIFIED (&rte->addr) &&
  819.       rte->prefixlen == 0 &&
  820.       rte->metric == RIPNG_METRIC_INFINITY)
  821.     {
  822.       /* All route with split horizon */
  823.       ripng_output_process (ifp, from, ripng_all_route, ripng_split_horizon);
  824.     }
  825.   else
  826.     {
  827.       /* Except for this special case, processing is quite simple.
  828.  Examine the list of RTEs in the Request one by one.  For each
  829.  entry, look up the destination in the router's routing
  830.  database and, if there is a route, put that route's metric in
  831.  the metric field of the RTE.  If there is no explicit route
  832.  to the specified destination, put infinity in the metric
  833.  field.  Once all the entries have been filled in, change the
  834.  command from Request to Response and send the datagram back
  835.  to the requestor. */
  836.       memset (&p, 0, sizeof (struct prefix_ipv6));
  837.       p.family = AF_INET6;
  838.       for (; ((caddr_t) rte) < lim; rte++)
  839. {
  840.   p.prefix = rte->addr;
  841.   p.prefixlen = rte->prefixlen;
  842.   apply_mask_ipv6 (&p);
  843.   
  844.   rp = route_node_lookup (ripng->table, (struct prefix *) &p);
  845.   if (rp)
  846.     {
  847.       rinfo = rp->info;
  848.       rte->metric = rinfo->metric;
  849.       route_unlock_node (rp);
  850.     }
  851.   else
  852.     rte->metric = RIPNG_METRIC_INFINITY;
  853. }
  854.       packet->command = RIPNG_RESPONSE;
  855.       ripng_send_packet ((caddr_t) packet, size, from, ifp);
  856.     }
  857. }
  858. /* First entry point of reading RIPng packet. */
  859. int
  860. ripng_read (struct thread *thread)
  861. {
  862.   int len;
  863.   int sock;
  864.   struct sockaddr_in6 from;
  865.   struct ripng_packet *packet;
  866.   unsigned int ifindex;
  867.   struct interface *ifp;
  868.   int hoplimit = -1;
  869.   /* Check ripng is active and alive. */
  870.   assert (ripng != NULL);
  871.   assert (ripng->sock >= 0);
  872.   /* Fetch thread data and set read pointer to empty for event
  873.      managing.  `sock' sould be same as ripng->sock. */
  874.   sock = THREAD_FD (thread);
  875.   ripng->t_read = NULL;
  876.   /* Add myself to the next event. */
  877.   ripng_event (RIPNG_READ, sock);
  878.   /* Read RIPng packet. */
  879.   len = ripng_recv_packet (sock, STREAM_DATA (ripng->ibuf), 
  880.    STREAM_SIZE (ripng->ibuf), &from, &ifindex,
  881.    &hoplimit);
  882.   if (len < 0) 
  883.     {
  884.       zlog_warn ("RIPng recvfrom failed: %s.", strerror (errno));
  885.       return len;
  886.     }
  887.   /* Check RTE boundary.  RTE size (Packet length - RIPng header size
  888.      (4)) must be multiple size of one RTE size (20). */
  889.   if (((len - 4) % 20) != 0)
  890.     {
  891.       zlog_warn ("RIPng invalid packet size %d from %s", len,
  892.  inet6_ntop (&from.sin6_addr));
  893.       return 0;
  894.     }
  895.   packet = (struct ripng_packet *) STREAM_DATA (ripng->ibuf);
  896.   ifp = if_lookup_by_index (ifindex);
  897.   /* RIPng packet received. */
  898.   if (IS_RIPNG_DEBUG_EVENT)
  899.     zlog_info ("RIPng packet received from %s port %d on %s",
  900.        inet6_ntop (&from.sin6_addr), ntohs (from.sin6_port), 
  901.        ifp ? ifp->name : "unknown");
  902.   /* Logging before packet checking. */
  903.   if (IS_RIPNG_DEBUG_RECV)
  904.     ripng_packet_dump (packet, len, "RECV");
  905.   /* Packet comes from unknown interface. */
  906.   if (ifp == NULL)
  907.     {
  908.       zlog_warn ("RIPng packet comes from unknown interface %d", ifindex);
  909.       return 0;
  910.     }
  911.   /* Packet version mismatch checking. */
  912.   if (packet->version != ripng->version) 
  913.     {
  914.       zlog_warn ("RIPng packet version %d doesn't fit to my version %d", 
  915.  packet->version, ripng->version);
  916.       return 0;
  917.     }
  918.   /* Process RIPng packet. */
  919.   switch (packet->command)
  920.     {
  921.     case RIPNG_REQUEST:
  922.       ripng_request_process (packet, len, &from, ifp);
  923.       break;
  924.     case RIPNG_RESPONSE:
  925.       ripng_response_process (packet, len, &from, ifp, hoplimit);
  926.       break;
  927.     default:
  928.       zlog_warn ("Invalid RIPng command %d", packet->command);
  929.       break;
  930.     }
  931.   return 0;
  932. }
  933. /* Walk down the RIPng routing table then clear changed flag. */
  934. void
  935. ripng_clear_changed_flag ()
  936. {
  937.   struct route_node *rp;
  938.   struct ripng_info *rinfo;
  939.   for (rp = route_top (ripng->table); rp; rp = route_next (rp))
  940.     if ((rinfo = rp->info) != NULL)
  941.       if (rinfo->flags & RIPNG_RTF_CHANGED)
  942. rinfo->flags &= ~RIPNG_RTF_CHANGED;
  943. }
  944. /* Regular update of RIPng route.  Send all routing formation to RIPng
  945.    enabled interface. */
  946. int
  947. ripng_update (struct thread *t)
  948. {
  949.   listnode node;
  950.   struct interface *ifp;
  951.   struct ripng_interface *ri;
  952.   /* Clear update timer thread. */
  953.   ripng->t_update = NULL;
  954.   /* Logging update event. */
  955.   if (IS_RIPNG_DEBUG_EVENT)
  956.     zlog_info ("RIPng update timer expired!");
  957.   /* Supply routes to each interface. */
  958.   for (node = listhead (iflist); node; nextnode (node))
  959.     {
  960.       ifp = getdata (node);
  961.       ri = ifp->info;
  962.       if (if_is_loopback (ifp) || ! if_is_up (ifp))
  963. continue;
  964.       if (! ri->running)
  965. continue;
  966.       /* When passive interface is specified, suppress announce to the
  967.          interface. */
  968.       if (ri->passive)
  969. continue;
  970. #if RIPNG_ADVANCED
  971.       if (ri->ri_send == RIPNG_SEND_OFF)
  972. {
  973.   if (IS_RIPNG_DEBUG_EVENT)
  974.     zlog (NULL, LOG_INFO, 
  975.   "[Event] RIPng send to if %d is suppressed by config",
  976.  ifp->ifindex);
  977.   continue;
  978. }
  979. #endif /* RIPNG_ADVANCED */
  980.       ripng_output_process (ifp, NULL, ripng_all_route, ripng_split_horizon);
  981.     }
  982.   /* Triggered updates may be suppressed if a regular update is due by
  983.      the time the triggered update would be sent. */
  984.   if (ripng->t_triggered_interval)
  985.     {
  986.       thread_cancel (ripng->t_triggered_interval);
  987.       ripng->t_triggered_interval = NULL;
  988.     }
  989.   ripng->trigger = 0;
  990.   /* Reset flush event. */
  991.   ripng_event (RIPNG_UPDATE_EVENT, 0);
  992.   return 0;
  993. }
  994. /* Triggered update interval timer. */
  995. int
  996. ripng_triggered_interval (struct thread *t)
  997. {
  998.   ripng->t_triggered_interval = NULL;
  999.   if (ripng->trigger)
  1000.     {
  1001.       ripng->trigger = 0;
  1002.       ripng_triggered_update (t);
  1003.     }
  1004.   return 0;
  1005. }     
  1006. /* Execute triggered update. */
  1007. int
  1008. ripng_triggered_update (struct thread *t)
  1009. {
  1010.   listnode node;
  1011.   struct interface *ifp;
  1012.   struct ripng_interface *ri;
  1013.   int interval;
  1014.   ripng->t_triggered_update = NULL;
  1015.   /* Cancel interval timer. */
  1016.   if (ripng->t_triggered_interval)
  1017.     {
  1018.       thread_cancel (ripng->t_triggered_interval);
  1019.       ripng->t_triggered_interval = NULL;
  1020.     }
  1021.   ripng->trigger = 0;
  1022.   /* Logging triggered update. */
  1023.   if (IS_RIPNG_DEBUG_EVENT)
  1024.     zlog_info ("RIPng triggered update!");
  1025.   /* Split Horizon processing is done when generating triggered
  1026.      updates as well as normal updates (see section 2.6). */
  1027.   for (node = listhead (iflist); node; nextnode (node))
  1028.     {
  1029.       ifp = getdata (node);
  1030.       ri = ifp->info;
  1031.       if (if_is_loopback (ifp) || ! if_is_up (ifp))
  1032. continue;
  1033.       if (! ri->running)
  1034. continue;
  1035.       /* When passive interface is specified, suppress announce to the
  1036.          interface. */
  1037.       if (ri->passive)
  1038. continue;
  1039.       ripng_output_process (ifp, NULL, ripng_changed_route,
  1040.     ripng_split_horizon);
  1041.     }
  1042.   /* Once all of the triggered updates have been generated, the route
  1043.      change flags should be cleared. */
  1044.   ripng_clear_changed_flag ();
  1045.   /* After a triggered update is sent, a timer should be set for a
  1046.      random interval between 1 and 5 seconds.  If other changes that
  1047.      would trigger updates occur before the timer expires, a single
  1048.      update is triggered when the timer expires. */
  1049.   interval = (random () % 5) + 1;
  1050.   ripng->t_triggered_interval = 
  1051.     thread_add_timer (master, ripng_triggered_interval, NULL, interval);
  1052.   return 0;
  1053. }
  1054. /* Write routing table entry to the stream and return next index of
  1055.    the routing table entry in the stream. */
  1056. int
  1057. ripng_write_rte (int num, struct stream *s, struct prefix_ipv6 *p,
  1058.  u_int16_t tag, u_char metric)
  1059. {
  1060.   /* RIPng packet header. */
  1061.   if (num == 0)
  1062.     {
  1063.       stream_putc (s, RIPNG_RESPONSE);
  1064.       stream_putc (s, RIPNG_V1);
  1065.       stream_putw (s, 0);
  1066.     }
  1067.   /* Write routing table entry. */
  1068.   stream_write (s, (caddr_t) &p->prefix, sizeof (struct in6_addr));
  1069.   stream_putw (s, tag);
  1070.   stream_putc (s, p->prefixlen);
  1071.   stream_putc (s, metric);
  1072.   return ++num;
  1073. }
  1074. /* Send RESPONSE message to specified destination. */
  1075. void
  1076. ripng_output_process (struct interface *ifp, struct sockaddr_in6 *to,
  1077.       int route_type, int split_horizon)
  1078. {
  1079.   int ret;
  1080.   struct stream *s;
  1081.   struct route_node *rp;
  1082.   struct ripng_info *rinfo;
  1083.   struct ripng_interface *ri;
  1084.   struct ripng_aggregate *aggregate;
  1085.   struct prefix_ipv6 *p;
  1086.   int num;
  1087.   int mtu;
  1088.   int rtemax;
  1089.   u_char metric;
  1090.   u_char metric_set;
  1091.   if (IS_RIPNG_DEBUG_EVENT)
  1092.     zlog_info ("RIPng update routes on interface %s", ifp->name);
  1093.   /* Output stream get from ripng structre.  XXX this should be
  1094.      interface structure. */
  1095.   s = ripng->obuf;
  1096.   /* Reset stream and RTE counter. */
  1097.   stream_reset (s);
  1098.   num = 0;
  1099.   mtu = ifp->mtu;
  1100.   if (mtu < 0)
  1101.     mtu = IFMINMTU;
  1102.   rtemax = (min (mtu, RIPNG_MAX_PACKET_SIZE) -
  1103.     IPV6_HDRLEN - 
  1104.     sizeof (struct udphdr) -
  1105.     sizeof (struct ripng_packet) +
  1106.     sizeof (struct rte)) / sizeof (struct rte);
  1107. #ifdef DEBUG
  1108.   zlog_info ("DEBUG RIPng: ifmtu is %d", ifp->mtu);
  1109.   zlog_info ("DEBUG RIPng: rtemax is %d", rtemax);
  1110. #endif /* DEBUG */
  1111.   
  1112.   /* Get RIPng interface. */
  1113.   ri = ifp->info;
  1114.   
  1115.   for (rp = route_top (ripng->table); rp; rp = route_next (rp))
  1116.     {
  1117.       if ((rinfo = rp->info) != NULL && rinfo->suppress == 0)
  1118. {
  1119.   p = (struct prefix_ipv6 *) &rp->p;
  1120.   metric = rinfo->metric;
  1121.   /* Changed route only output. */
  1122.   if (route_type == ripng_changed_route &&
  1123.       (! (rinfo->flags & RIPNG_RTF_CHANGED)))
  1124.     continue;
  1125.   /* Split horizon. */
  1126.   if (split_horizon == ripng_split_horizon &&
  1127.       rinfo->ifindex == ifp->ifindex)
  1128.     continue;
  1129.   /* Apply output filters.*/
  1130.   if (ri->list[RIPNG_FILTER_OUT])
  1131.     {
  1132.       if (access_list_apply (ri->list[RIPNG_FILTER_OUT], 
  1133.      (struct prefix *) p) == FILTER_DENY)
  1134. {
  1135.   if (IS_RIPNG_DEBUG_PACKET)
  1136.     zlog_info ("RIPng %s/%d is filtered by distribute out",
  1137.        inet6_ntop (&p->prefix), p->prefixlen);
  1138.   continue;
  1139. }
  1140.     }
  1141.   if (ri->prefix[RIPNG_FILTER_OUT])
  1142.     {
  1143.       if (prefix_list_apply (ri->prefix[RIPNG_FILTER_OUT], 
  1144.      (struct prefix *) p) == PREFIX_DENY)
  1145. {
  1146.   if (IS_RIPNG_DEBUG_PACKET)
  1147.     zlog_info ("RIPng %s/%d is filtered by prefix-list out",
  1148.        inet6_ntop (&p->prefix), p->prefixlen);
  1149.   continue;
  1150. }
  1151.     }
  1152.   /* Preparation for route-map. */
  1153.   metric_set = 0;
  1154.   /* Route-map */
  1155.   if (ri->routemap[RIPNG_FILTER_OUT])
  1156.     {
  1157.       int ret;
  1158.       struct ripng_info newinfo;
  1159.       memset (&newinfo, 0, sizeof (struct ripng_info));
  1160.       newinfo.metric = metric;
  1161.       ret = route_map_apply (ri->routemap[RIPNG_FILTER_OUT], 
  1162.      (struct prefix *) p, RMAP_RIPNG, 
  1163.      &newinfo);
  1164.       if (ret == RMAP_DENYMATCH)
  1165. {
  1166.   if (IS_RIPNG_DEBUG_PACKET)
  1167.     zlog_info ("RIPng %s/%d is filtered by route-map out",
  1168.        inet6_ntop (&p->prefix), p->prefixlen);
  1169.   return;
  1170. }
  1171.       metric = newinfo.metric;
  1172.       metric_set = newinfo.metric_set;
  1173.     }
  1174.   /* When the interface route-map does not set metric */
  1175.   if (! metric_set)
  1176.     {
  1177.       /* and the redistribute route-map is set. */
  1178.       if (ripng->route_map[rinfo->type].name)
  1179. {
  1180.   int ret;
  1181.   struct ripng_info newinfo;
  1182.   memset (&newinfo, 0, sizeof (struct ripng_info));
  1183.   newinfo.metric = metric;
  1184.       
  1185.   ret = route_map_apply (ripng->route_map[rinfo->type].map,
  1186.  (struct prefix *) p, RMAP_RIPNG,
  1187.  &newinfo);
  1188.   if (ret == RMAP_DENYMATCH)
  1189.     {
  1190.       if (IS_RIPNG_DEBUG_PACKET)
  1191. zlog_info ("RIPng %s/%d is filtered by route-map",
  1192.    inet6_ntop (&p->prefix), p->prefixlen);
  1193.       continue;
  1194.     }
  1195.   metric = newinfo.metric;
  1196.   metric_set = newinfo.metric_set;
  1197. }
  1198.       /* When the redistribute route-map does not set metric. */
  1199.       if (! metric_set)
  1200. {
  1201.   /* If the redistribute metric is set. */
  1202.   if (ripng->route_map[rinfo->type].metric_config
  1203.       && rinfo->metric != RIPNG_METRIC_INFINITY)
  1204.     {
  1205.       metric = ripng->route_map[rinfo->type].metric;
  1206.     }
  1207.   else
  1208.     {
  1209.       /* If the route is not connected or localy generated
  1210.  one, use default-metric value */
  1211.       if (rinfo->type != ZEBRA_ROUTE_RIPNG
  1212.   && rinfo->type != ZEBRA_ROUTE_CONNECT
  1213.   && rinfo->metric != RIPNG_METRIC_INFINITY)
  1214. metric = ripng->default_metric;
  1215.     }
  1216. }
  1217.     }
  1218.   /* Write RTE to the stream. */
  1219.   num = ripng_write_rte (num, s, p, rinfo->tag, metric);
  1220.   if (num == rtemax)
  1221.     {
  1222.       ret = ripng_send_packet (STREAM_DATA (s), stream_get_endp (s),
  1223.        to, ifp);
  1224.       if (ret >= 0 && IS_RIPNG_DEBUG_SEND)
  1225. ripng_packet_dump ((struct ripng_packet *)STREAM_DATA (s),
  1226.    stream_get_endp(s), "SEND");
  1227.       num = 0;
  1228.       stream_reset (s);
  1229.     }
  1230. }
  1231.       if ((aggregate = rp->aggregate) != NULL && 
  1232.   aggregate->count > 0 && 
  1233.   aggregate->suppress == 0)
  1234. {
  1235.   p = (struct prefix_ipv6 *) &rp->p;
  1236.   metric = aggregate->metric;
  1237.   /* Apply output filters.*/
  1238.   if (ri->list[RIPNG_FILTER_OUT])
  1239.     {
  1240.       if (access_list_apply (ri->list[RIPNG_FILTER_OUT], 
  1241.      (struct prefix *) p) == FILTER_DENY)
  1242. {
  1243.   if (IS_RIPNG_DEBUG_PACKET)
  1244.     zlog_info ("RIPng %s/%d is filtered by distribute out",
  1245.        inet6_ntop (&p->prefix), p->prefixlen);
  1246.   continue;
  1247. }
  1248.     }
  1249.   if (ri->prefix[RIPNG_FILTER_OUT])
  1250.     {
  1251.       if (prefix_list_apply (ri->prefix[RIPNG_FILTER_OUT], 
  1252.      (struct prefix *) p) == PREFIX_DENY)
  1253. {
  1254.   if (IS_RIPNG_DEBUG_PACKET)
  1255.     zlog_info ("RIPng %s/%d is filtered by prefix-list out",
  1256.        inet6_ntop (&p->prefix), p->prefixlen);
  1257.   continue;
  1258. }
  1259.     }
  1260.   /* Route-map */
  1261.   if (ri->routemap[RIPNG_FILTER_OUT])
  1262.     {
  1263.       int ret;
  1264.       struct ripng_info newinfo;
  1265.       memset (&newinfo, 0, sizeof (struct ripng_info));
  1266.       newinfo.metric = metric;
  1267.       ret = route_map_apply (ri->routemap[RIPNG_FILTER_OUT], 
  1268.      (struct prefix *) p, RMAP_RIPNG, 
  1269.      &newinfo);
  1270.       if (ret == RMAP_DENYMATCH)
  1271. {
  1272.   if (IS_RIPNG_DEBUG_PACKET)
  1273.     zlog_info ("RIPng %s/%d is filtered by route-map out",
  1274.        inet6_ntop (&p->prefix), p->prefixlen);
  1275.   return;
  1276. }
  1277.       metric = newinfo.metric;
  1278.     }
  1279.   /* Changed route only output. */
  1280.   if (route_type == ripng_changed_route)
  1281.     continue;
  1282.   /* Write RTE to the stream. */
  1283.   num = ripng_write_rte (num, s, p, aggregate->tag, metric);
  1284.   if (num == rtemax)
  1285.     {
  1286.       ret = ripng_send_packet (STREAM_DATA (s), stream_get_endp (s),
  1287.        to, ifp);
  1288.       if (ret >= 0 && IS_RIPNG_DEBUG_SEND)
  1289. ripng_packet_dump ((struct ripng_packet *)STREAM_DATA (s),
  1290.    stream_get_endp(s), "SEND");
  1291.       num = 0;
  1292.       stream_reset (s);
  1293.     }
  1294. }
  1295.     }
  1296.   
  1297.   /* If unwritten RTE exist, flush it. */
  1298.   if (num != 0)
  1299.     {
  1300.       ret = ripng_send_packet (STREAM_DATA (s), stream_get_endp (s),
  1301.        to, ifp);
  1302.       if (ret >= 0 && IS_RIPNG_DEBUG_SEND)
  1303. ripng_packet_dump ((struct ripng_packet *)STREAM_DATA (s),
  1304.    stream_get_endp (s), "SEND");
  1305.       num = 0;
  1306.       stream_reset (s);
  1307.     }
  1308. }
  1309. /* Create new RIPng instance and set it to global variable. */
  1310. int
  1311. ripng_create ()
  1312. {
  1313.   /* ripng should be NULL. */
  1314.   assert (ripng == NULL);
  1315.   /* Allocaste RIPng instance. */
  1316.   ripng = XMALLOC (0, sizeof (struct ripng));
  1317.   memset (ripng, 0, sizeof (struct ripng));
  1318.   /* Default version and timer values. */
  1319.   ripng->version = RIPNG_V1;
  1320.   ripng->update_time = RIPNG_UPDATE_TIMER_DEFAULT;
  1321.   ripng->timeout_time = RIPNG_TIMEOUT_TIMER_DEFAULT;
  1322.   ripng->garbage_time = RIPNG_GARBAGE_TIMER_DEFAULT;
  1323.   ripng->default_metric = RIPNG_DEFAULT_METRIC_DEFAULT;
  1324.   
  1325.   /* Make buffer.  */
  1326.   ripng->ibuf = stream_new (RIPNG_MAX_PACKET_SIZE * 5);
  1327.   ripng->obuf = stream_new (RIPNG_MAX_PACKET_SIZE);
  1328.   /* Initialize RIPng routig table. */
  1329.   ripng->table = route_table_init ();
  1330.   ripng->route = route_table_init ();
  1331.   ripng->aggregate = route_table_init ();
  1332.  
  1333.   /* Make socket. */
  1334.   ripng->sock = ripng_make_socket ();
  1335.   if (ripng->sock < 0)
  1336.     return ripng->sock;
  1337.   /* Threads. */
  1338.   ripng_event (RIPNG_READ, ripng->sock);
  1339.   ripng_event (RIPNG_UPDATE_EVENT, 1);
  1340.   return 0;
  1341. }
  1342. /* Sned RIPng request to the interface. */
  1343. int
  1344. ripng_request (struct interface *ifp)
  1345. {
  1346.   struct rte *rte;
  1347.   struct ripng_packet ripng_packet;
  1348.   if (IS_RIPNG_DEBUG_EVENT)
  1349.     zlog_info ("RIPng send request to %s", ifp->name);
  1350.   memset (&ripng_packet, 0, sizeof (ripng_packet));
  1351.   ripng_packet.command = RIPNG_REQUEST;
  1352.   ripng_packet.version = RIPNG_V1;
  1353.   rte = ripng_packet.rte;
  1354.   rte->metric = RIPNG_METRIC_INFINITY;
  1355.   return ripng_send_packet ((caddr_t) &ripng_packet, sizeof (ripng_packet), 
  1356.     NULL, ifp);
  1357. }
  1358. /* Clean up installed RIPng routes. */
  1359. void
  1360. ripng_terminate ()
  1361. {
  1362.   struct route_node *rp;
  1363.   struct ripng_info *rinfo;
  1364.   for (rp = route_top (ripng->table); rp; rp = route_next (rp))
  1365.     if ((rinfo = rp->info) != NULL)
  1366.       {
  1367. if (rinfo->type == ZEBRA_ROUTE_RIPNG &&
  1368.     rinfo->sub_type == RIPNG_ROUTE_RTE)
  1369.   ripng_zebra_ipv6_delete ((struct prefix_ipv6 *)&rp->p,
  1370.    &rinfo->nexthop, rinfo->ifindex);
  1371.       }
  1372. }
  1373. int
  1374. ripng_update_jitter (int time)
  1375. {
  1376.   return ((rand () % (time + 1)) - (time / 2));
  1377. }
  1378. void
  1379. ripng_event (enum ripng_event event, int sock)
  1380. {
  1381.   int ripng_request_all (struct thread *);
  1382.   int jitter = 0;
  1383.   switch (event)
  1384.     {
  1385.     case RIPNG_READ:
  1386.       if (!ripng->t_read)
  1387. ripng->t_read = thread_add_read (master, ripng_read, NULL, sock);
  1388.       break;
  1389.     case RIPNG_UPDATE_EVENT:
  1390.       if (ripng->t_update)
  1391. {
  1392.   thread_cancel (ripng->t_update);
  1393.   ripng->t_update = NULL;
  1394. }
  1395.       /* Update timer jitter. */
  1396.       jitter = ripng_update_jitter (ripng->update_time);
  1397.       ripng->t_update = 
  1398. thread_add_timer (master, ripng_update, NULL, 
  1399.   sock ? 2 : ripng->update_time + jitter);
  1400.       break;
  1401.     case RIPNG_TRIGGERED_UPDATE:
  1402.       if (ripng->t_triggered_interval)
  1403. ripng->trigger = 1;
  1404.       else if (! ripng->t_triggered_update)
  1405. ripng->t_triggered_update = 
  1406.   thread_add_event (master, ripng_triggered_update, NULL, 0);
  1407.       break;
  1408.     default:
  1409.       break;
  1410.     }
  1411. }
  1412. /* Each route type's strings and default preference. */
  1413. struct
  1414. {  
  1415.   int key;
  1416.   char *str;
  1417.   char *str_long;
  1418.   int distance;
  1419. } route_info[] =
  1420. {
  1421.   { ZEBRA_ROUTE_SYSTEM,  "X", "system",    10},
  1422.   { ZEBRA_ROUTE_KERNEL,  "K", "kernel",    20},
  1423.   { ZEBRA_ROUTE_CONNECT, "C", "connected", 30},
  1424.   { ZEBRA_ROUTE_STATIC,  "S", "static",    40},
  1425.   { ZEBRA_ROUTE_RIP,     "R", "rip",       50},
  1426.   { ZEBRA_ROUTE_RIPNG,   "R", "ripng",     50},
  1427.   { ZEBRA_ROUTE_OSPF,    "O", "ospf",      60},
  1428.   { ZEBRA_ROUTE_OSPF6,   "O", "ospf6",     60},
  1429.   { ZEBRA_ROUTE_BGP,     "B", "bgp",       70},
  1430. };
  1431. /* For messages. */
  1432. struct message ripng_route_info[] =
  1433. {
  1434.   { RIPNG_ROUTE_RTE,       " "},
  1435.   { RIPNG_ROUTE_STATIC,    "S"},
  1436.   { RIPNG_ROUTE_AGGREGATE, "a"}
  1437. };
  1438. /* Print out routes update time. */
  1439. static void
  1440. ripng_vty_out_uptime (struct vty *vty, struct ripng_info *rinfo)
  1441. {
  1442.   struct timeval timer_now;
  1443.   time_t clock;
  1444.   struct tm *tm;
  1445. #define TIME_BUF 25
  1446.   char timebuf [TIME_BUF];
  1447.   struct thread *thread;
  1448.   
  1449.   gettimeofday (&timer_now, NULL);
  1450.   if ((thread = rinfo->t_timeout) != NULL)
  1451.     {
  1452.       clock = thread->u.sands.tv_sec - timer_now.tv_sec;
  1453.       tm = gmtime (&clock);
  1454.       strftime (timebuf, TIME_BUF, "%M:%S", tm);
  1455.       vty_out (vty, "%5s", timebuf);
  1456.     }
  1457.   else if ((thread = rinfo->t_garbage_collect) != NULL)
  1458.     {
  1459.       clock = thread->u.sands.tv_sec - timer_now.tv_sec;
  1460.       tm = gmtime (&clock);
  1461.       strftime (timebuf, TIME_BUF, "%M:%S", tm);
  1462.       vty_out (vty, "%5s", timebuf);
  1463.     }
  1464. }
  1465. DEFUN (show_ipv6_ripng,
  1466.        show_ipv6_ripng_cmd,
  1467.        "show ipv6 ripng",
  1468.        SHOW_STR
  1469.        IP_STR
  1470.        "Show RIPng routesn")
  1471. {
  1472.   struct route_node *rp;
  1473.   struct ripng_info *rinfo;
  1474.   struct ripng_aggregate *aggregate;
  1475.   struct prefix_ipv6 *p;
  1476.   int len;
  1477.   /* Header of display. */ 
  1478.   vty_out (vty, "%sCodes: R - RIPng%s%s"
  1479.    "   Network                           "
  1480.    "Next Hop                  If Met Tag Time%s", VTY_NEWLINE,
  1481.    VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
  1482.   
  1483.   for (rp = route_top (ripng->table); rp; rp = route_next (rp))
  1484.     {
  1485.       if ((aggregate = rp->aggregate) != NULL)
  1486. {
  1487.   p = (struct prefix_ipv6 *) &rp->p;
  1488. #ifdef DEBUG
  1489.   len = vty_out (vty, "Ra %d/%d %s/%d ",
  1490.  aggregate->count, aggregate->suppress,
  1491.  inet6_ntop (&p->prefix), p->prefixlen);
  1492. #else
  1493.   len = vty_out (vty, "Ra %s/%d ", 
  1494.  inet6_ntop (&p->prefix), p->prefixlen);
  1495. #endif /* DEBUG */
  1496.   len = 37 - len;
  1497.   if (len > 0)
  1498.     vty_out (vty, "%*s", len, " ");
  1499.   vty_out (vty, "%*s", 26, " ");
  1500.   vty_out (vty, "%4d %3d%s", aggregate->metric,
  1501.    aggregate->tag,
  1502.    VTY_NEWLINE);
  1503. }
  1504.       if ((rinfo = rp->info) != NULL)
  1505. {
  1506.   p = (struct prefix_ipv6 *) &rp->p;
  1507. #ifdef DEBUG
  1508.   len = vty_out (vty, "%s%s 0/%d %s/%d ",
  1509.  route_info[rinfo->type].str,
  1510.  rinfo->suppress ? "s" : " ",
  1511.  rinfo->suppress,
  1512.  inet6_ntop (&p->prefix), p->prefixlen);
  1513. #else
  1514.   len = vty_out (vty, "%s%s %s/%d ",
  1515.  route_info[rinfo->type].str,
  1516.  rinfo->suppress ? "s" : " ",
  1517.  inet6_ntop (&p->prefix), p->prefixlen);
  1518. #endif /* DEBUG */
  1519.   len = 37 - len;
  1520.   if (len > 0)
  1521.     vty_out (vty, "%*s", len, " ");
  1522.   len = vty_out (vty, "%s", inet6_ntop (&rinfo->nexthop));
  1523.   len = 26 - len;
  1524.   if (len > 0)
  1525.     vty_out (vty, "%*s", len, " ");
  1526.   vty_out (vty, "%2d %2d %3d ",
  1527.    rinfo->ifindex, rinfo->metric, rinfo->tag);
  1528.   if (rinfo->sub_type == RIPNG_ROUTE_RTE)
  1529.     ripng_vty_out_uptime (vty, rinfo);
  1530.   vty_out (vty, "%s", VTY_NEWLINE);
  1531. }
  1532.     }
  1533.   return CMD_SUCCESS;
  1534. }
  1535. DEFUN (router_ripng,
  1536.        router_ripng_cmd,
  1537.        "router ripng",
  1538.        "Enable a routing processn"
  1539.        "Make RIPng instance commandn")
  1540. {
  1541.   int ret;
  1542.   vty->node = RIPNG_NODE;
  1543.   if (!ripng)
  1544.     {
  1545.       ret = ripng_create ();
  1546.       /* Notice to user we couldn't create RIPng. */
  1547.       if (ret < 0)
  1548. {
  1549.   zlog_warn ("can't create RIPng");
  1550.   return CMD_WARNING;
  1551. }
  1552.     }
  1553.   return CMD_SUCCESS;
  1554. }
  1555. DEFUN (ripng_route,
  1556.        ripng_route_cmd,
  1557.        "route IPV6ADDR",
  1558.        "Static route setupn"
  1559.        "Set static RIPng route announcementn")
  1560. {
  1561.   int ret;
  1562.   struct prefix_ipv6 p;
  1563.   struct route_node *rp;
  1564.   ret = str2prefix_ipv6 (argv[0], (struct prefix_ipv6 *)&p);
  1565.   if (ret <= 0)
  1566.     {
  1567.       vty_out (vty, "Malformed address%s", VTY_NEWLINE);
  1568.       return CMD_WARNING;
  1569.     }
  1570.   apply_mask_ipv6 (&p);
  1571.   rp = route_node_get (ripng->route, (struct prefix *) &p);
  1572.   if (rp->info)
  1573.     {
  1574.       vty_out (vty, "There is already same static route.%s", VTY_NEWLINE);
  1575.       route_unlock_node (rp);
  1576.       return CMD_WARNING;
  1577.     }
  1578.   rp->info = (void *)1;
  1579.   ripng_redistribute_add (ZEBRA_ROUTE_RIPNG, RIPNG_ROUTE_STATIC, &p, 0);
  1580.   return CMD_SUCCESS;
  1581. }
  1582. DEFUN (no_ripng_route,
  1583.        no_ripng_route_cmd,
  1584.        "no route IPV6ADDR",
  1585.        NO_STR
  1586.        "Static route setupn"
  1587.        "Delete static RIPng route announcementn")
  1588. {
  1589.   int ret;
  1590.   struct prefix_ipv6 p;
  1591.   struct route_node *rp;
  1592.   ret = str2prefix_ipv6 (argv[0], (struct prefix_ipv6 *)&p);
  1593.   if (ret <= 0)
  1594.     {
  1595.       vty_out (vty, "Malformed address%s", VTY_NEWLINE);
  1596.       return CMD_WARNING;
  1597.     }
  1598.   apply_mask_ipv6 (&p);
  1599.   rp = route_node_lookup (ripng->route, (struct prefix *) &p);
  1600.   if (! rp)
  1601.     {
  1602.       vty_out (vty, "Can't find static route.%s", VTY_NEWLINE);
  1603.       return CMD_WARNING;
  1604.     }
  1605.   ripng_redistribute_delete (ZEBRA_ROUTE_RIPNG, RIPNG_ROUTE_STATIC, &p, 0);
  1606.   route_unlock_node (rp);
  1607.   rp->info = NULL;
  1608.   route_unlock_node (rp);
  1609.   return CMD_SUCCESS;
  1610. }
  1611. DEFUN (ripng_aggregate_address,
  1612.        ripng_aggregate_address_cmd,
  1613.        "aggregate-address X:X::X:X/M",
  1614.        "Set aggregate RIPng route announcementn"
  1615.        "Aggregate networkn")
  1616. {
  1617.   int ret;
  1618.   struct prefix p;
  1619.   struct route_node *node;
  1620.   ret = str2prefix_ipv6 (argv[0], (struct prefix_ipv6 *)&p);
  1621.   if (ret <= 0)
  1622.     {
  1623.       vty_out (vty, "Malformed address%s", VTY_NEWLINE);
  1624.       return CMD_WARNING;
  1625.     }
  1626.   /* Check aggregate alredy exist or not. */
  1627.   node = route_node_get (ripng->aggregate, &p);
  1628.   if (node->info)
  1629.     {
  1630.       vty_out (vty, "There is already same aggregate route.%s", VTY_NEWLINE);
  1631.       route_unlock_node (node);
  1632.       return CMD_WARNING;
  1633.     }
  1634.   node->info = (void *)1;
  1635.   ripng_aggregate_add (&p);
  1636.   return CMD_SUCCESS;
  1637. }
  1638. DEFUN (no_ripng_aggregate_address,
  1639.        no_ripng_aggregate_address_cmd,
  1640.        "no aggregate-address X:X::X:X/M",
  1641.        NO_STR
  1642.        "Delete aggregate RIPng route announcementn"
  1643.        "Aggregate network")
  1644. {
  1645.   int ret;
  1646.   struct prefix p;
  1647.   struct route_node *rn;
  1648.   ret = str2prefix_ipv6 (argv[0], (struct prefix_ipv6 *) &p);
  1649.   if (ret <= 0)
  1650.     {
  1651.       vty_out (vty, "Malformed address%s", VTY_NEWLINE);
  1652.       return CMD_WARNING;
  1653.     }
  1654.   rn = route_node_lookup (ripng->aggregate, &p);
  1655.   if (! rn)
  1656.     {
  1657.       vty_out (vty, "Can't find aggregate route.%s", VTY_NEWLINE);
  1658.       return CMD_WARNING;
  1659.     }
  1660.   route_unlock_node (rn);
  1661.   rn->info = NULL;
  1662.   route_unlock_node (rn);
  1663.   ripng_aggregate_delete (&p);
  1664.   return CMD_SUCCESS;
  1665. }
  1666. DEFUN (ripng_default_metric,
  1667.        ripng_default_metric_cmd,
  1668.        "default-metric <1-16>",
  1669.        "Set a metric of redistribute routesn"
  1670.        "Default metricn")
  1671. {
  1672.   if (ripng)
  1673.     {
  1674.       ripng->default_metric = atoi (argv[0]);
  1675.     }
  1676.   return CMD_SUCCESS;
  1677. }
  1678. DEFUN (no_ripng_default_metric,
  1679.        no_ripng_default_metric_cmd,
  1680.        "no default-metric",
  1681.        NO_STR
  1682.        "Set a metric of redistribute routesn"
  1683.        "Default metricn")
  1684. {
  1685.   if (ripng)
  1686.     {
  1687.       ripng->default_metric = RIPNG_DEFAULT_METRIC_DEFAULT;
  1688.     }
  1689.   return CMD_SUCCESS;
  1690. }
  1691. ALIAS (no_ripng_default_metric,
  1692.        no_ripng_default_metric_val_cmd,
  1693.        "no default-metric <1-16>",
  1694.        NO_STR
  1695.        "Set a metric of redistribute routesn"
  1696.        "Default metricn");
  1697. DEFUN (ripng_timers,
  1698.        ripng_timers_cmd,
  1699.        "timers basic <0-65535> <0-65535> <0-65535>",
  1700.        "RIPng timers setupn"
  1701.        "Basic timern"
  1702.        "Routing table update timer value in second. Default is 30.n"
  1703.        "Routing information timeout timer. Default is 180.n"
  1704.        "Garbage collection timer. Default is 120.n")
  1705. {
  1706.   unsigned long update;
  1707.   unsigned long timeout;
  1708.   unsigned long garbage;
  1709.   char *endptr = NULL;
  1710.   update = strtoul (argv[0], &endptr, 10);
  1711.   if (update == ULONG_MAX || *endptr != '')
  1712.     {
  1713.       vty_out (vty, "update timer value error%s", VTY_NEWLINE);
  1714.       return CMD_WARNING;
  1715.     }
  1716.   
  1717.   timeout = strtoul (argv[1], &endptr, 10);
  1718.   if (timeout == ULONG_MAX || *endptr != '')
  1719.     {
  1720.       vty_out (vty, "timeout timer value error%s", VTY_NEWLINE);
  1721.       return CMD_WARNING;
  1722.     }
  1723.   
  1724.   garbage = strtoul (argv[2], &endptr, 10);
  1725.   if (garbage == ULONG_MAX || *endptr != '')
  1726.     {
  1727.       vty_out (vty, "garbage timer value error%s", VTY_NEWLINE);
  1728.       return CMD_WARNING;
  1729.     }
  1730.   /* Set each timer value. */
  1731.   ripng->update_time = update;
  1732.   ripng->timeout_time = timeout;
  1733.   ripng->garbage_time = garbage;
  1734.   /* Reset update timer thread. */
  1735.   ripng_event (RIPNG_UPDATE_EVENT, 0);
  1736.   return CMD_SUCCESS;
  1737. }
  1738. DEFUN (no_ripng_timers,
  1739.        no_ripng_timers_cmd,
  1740.        "no timers basic",
  1741.        NO_STR
  1742.        "RIPng timers setupn"
  1743.        "Basic timern")
  1744. {
  1745.   /* Set each timer value to the default. */
  1746.   ripng->update_time = RIPNG_UPDATE_TIMER_DEFAULT;
  1747.   ripng->timeout_time = RIPNG_TIMEOUT_TIMER_DEFAULT;
  1748.   ripng->garbage_time = RIPNG_GARBAGE_TIMER_DEFAULT;
  1749.   /* Reset update timer thread. */
  1750.   ripng_event (RIPNG_UPDATE_EVENT, 0);
  1751.   return CMD_SUCCESS;
  1752. }
  1753. DEFUN (show_ipv6_protocols, show_ipv6_protocols_cmd,
  1754.        "show ipv6 protocols",
  1755.        SHOW_STR
  1756.        IP_STR
  1757.        "Routing protocol information")
  1758. {
  1759.   if (! ripng)
  1760.     return CMD_SUCCESS;
  1761.   vty_out (vty, "Routing Protocol is "ripng"%s", VTY_NEWLINE);
  1762.   
  1763.   vty_out (vty, "Sending updates every %ld seconds, next due in %d seconds%s",
  1764.    ripng->update_time, 0,
  1765.    VTY_NEWLINE);
  1766.   vty_out (vty, "Timerout after %ld seconds, garbage correct %ld%s",
  1767.    ripng->timeout_time,
  1768.    ripng->garbage_time,
  1769.    VTY_NEWLINE);
  1770.   vty_out (vty, "Outgoing update filter list for all interfaces is not set");
  1771.   vty_out (vty, "Incoming update filter list for all interfaces is not set");
  1772.   return CMD_SUCCESS;
  1773. }
  1774. /* Please be carefull to use this command. */
  1775. DEFUN (ripng_default_information_originate,
  1776.        ripng_default_information_originate_cmd,
  1777.        "default-information originate",
  1778.        "Default route informationn"
  1779.        "Distribute default routen")
  1780. {
  1781.   struct prefix_ipv6 p;
  1782.   ripng->default_information = 1;
  1783.   str2prefix_ipv6 ("::/0", &p);
  1784.   ripng_redistribute_add (ZEBRA_ROUTE_RIPNG, RIPNG_ROUTE_STATIC, &p, 0);
  1785.   return CMD_SUCCESS;
  1786. }
  1787. DEFUN (no_ripng_default_information_originate,
  1788.        no_ripng_default_information_originate_cmd,
  1789.        "no default-information originate",
  1790.        NO_STR
  1791.        "Default route informationn"
  1792.        "Distribute default routen")
  1793. {
  1794.   struct prefix_ipv6 p;
  1795.   ripng->default_information = 0;
  1796.   str2prefix_ipv6 ("::/0", &p);
  1797.   ripng_redistribute_delete (ZEBRA_ROUTE_RIPNG, RIPNG_ROUTE_STATIC, &p, 0);
  1798.   return CMD_SUCCESS;
  1799. }
  1800. /* RIPng configuration write function. */
  1801. int
  1802. ripng_config_write (struct vty *vty)
  1803. {
  1804.   int ripng_network_write (struct vty *);
  1805.   void ripng_redistribute_write (struct vty *);
  1806.   int write = 0;
  1807.   struct route_node *rp;
  1808.   if (ripng)
  1809.     {
  1810.       /* RIPng router. */
  1811.       vty_out (vty, "router ripng%s", VTY_NEWLINE);
  1812.       if (ripng->default_information)
  1813. vty_out (vty, " default-information originate%s", VTY_NEWLINE);
  1814.       ripng_network_write (vty);
  1815.       /* RIPng default metric configuration */
  1816.       if (ripng->default_metric != RIPNG_DEFAULT_METRIC_DEFAULT)
  1817.         vty_out (vty, " default-metric %d%s",
  1818.  ripng->default_metric, VTY_NEWLINE);
  1819.       ripng_redistribute_write (vty);
  1820.       
  1821.       /* RIPng aggregate routes. */
  1822.       for (rp = route_top (ripng->aggregate); rp; rp = route_next (rp))
  1823. if (rp->info != NULL)
  1824.   vty_out (vty, " aggregate-address %s/%d%s", 
  1825.    inet6_ntop (&rp->p.u.prefix6),
  1826.    rp->p.prefixlen, 
  1827.    VTY_NEWLINE);
  1828.       /* RIPng static routes. */
  1829.       for (rp = route_top (ripng->route); rp; rp = route_next (rp))
  1830. if (rp->info != NULL)
  1831.   vty_out (vty, " route %s/%d%s", inet6_ntop (&rp->p.u.prefix6),
  1832.    rp->p.prefixlen,
  1833.    VTY_NEWLINE);
  1834.       /* RIPng timers configuration. */
  1835.       if (ripng->update_time != RIPNG_UPDATE_TIMER_DEFAULT ||
  1836.   ripng->timeout_time != RIPNG_TIMEOUT_TIMER_DEFAULT ||
  1837.   ripng->garbage_time != RIPNG_GARBAGE_TIMER_DEFAULT)
  1838. {
  1839.   vty_out (vty, " timers basic %ld %ld %ld%s",
  1840.    ripng->update_time,
  1841.    ripng->timeout_time,
  1842.    ripng->garbage_time,
  1843.    VTY_NEWLINE);
  1844. }
  1845.       write += config_write_distribute (vty);
  1846.       write += config_write_if_rmap (vty);
  1847.       write++;
  1848.     }
  1849.   return write;
  1850. }
  1851. /* RIPng node structure. */
  1852. struct cmd_node cmd_ripng_node =
  1853. {
  1854.   RIPNG_NODE,
  1855.   "%s(config-router)# ",
  1856.   1,
  1857. };
  1858. void
  1859. ripng_distribute_update (struct distribute *dist)
  1860. {
  1861.   struct interface *ifp;
  1862.   struct ripng_interface *ri;
  1863.   struct access_list *alist;
  1864.   struct prefix_list *plist;
  1865.   if (! dist->ifname)
  1866.     return;
  1867.   ifp = if_lookup_by_name (dist->ifname);
  1868.   if (ifp == NULL)
  1869.     return;
  1870.   ri = ifp->info;
  1871.   if (dist->list[DISTRIBUTE_IN])
  1872.     {
  1873.       alist = access_list_lookup (AFI_IP6, dist->list[DISTRIBUTE_IN]);
  1874.       if (alist)
  1875. ri->list[RIPNG_FILTER_IN] = alist;
  1876.       else
  1877. ri->list[RIPNG_FILTER_IN] = NULL;
  1878.     }
  1879.   else
  1880.     ri->list[RIPNG_FILTER_IN] = NULL;
  1881.   if (dist->list[DISTRIBUTE_OUT])
  1882.     {
  1883.       alist = access_list_lookup (AFI_IP6, dist->list[DISTRIBUTE_OUT]);
  1884.       if (alist)
  1885. ri->list[RIPNG_FILTER_OUT] = alist;
  1886.       else
  1887. ri->list[RIPNG_FILTER_OUT] = NULL;
  1888.     }
  1889.   else
  1890.     ri->list[RIPNG_FILTER_OUT] = NULL;
  1891.   if (dist->prefix[DISTRIBUTE_IN])
  1892.     {
  1893.       plist = prefix_list_lookup (AFI_IP6, dist->prefix[DISTRIBUTE_IN]);
  1894.       if (plist)
  1895. ri->prefix[RIPNG_FILTER_IN] = plist;
  1896.       else
  1897. ri->prefix[RIPNG_FILTER_IN] = NULL;
  1898.     }
  1899.   else
  1900.     ri->prefix[RIPNG_FILTER_IN] = NULL;
  1901.   if (dist->prefix[DISTRIBUTE_OUT])
  1902.     {
  1903.       plist = prefix_list_lookup (AFI_IP6, dist->prefix[DISTRIBUTE_OUT]);
  1904.       if (plist)
  1905. ri->prefix[RIPNG_FILTER_OUT] = plist;
  1906.       else
  1907. ri->prefix[RIPNG_FILTER_OUT] = NULL;
  1908.     }
  1909.   else
  1910.     ri->prefix[RIPNG_FILTER_OUT] = NULL;
  1911. }
  1912. void
  1913. ripng_distribute_update_interface (struct interface *ifp)
  1914. {
  1915.   struct distribute *dist;
  1916.   dist = distribute_lookup (ifp->name);
  1917.   if (dist)
  1918.     ripng_distribute_update (dist);
  1919. }
  1920. /* Update all interface's distribute list. */
  1921. void
  1922. ripng_distribute_update_all ()
  1923. {
  1924.   struct interface *ifp;
  1925.   listnode node;
  1926.   for (node = listhead (iflist); node; nextnode (node))
  1927.     {
  1928.       ifp = getdata (node);
  1929.       ripng_distribute_update_interface (ifp);
  1930.     }
  1931. }
  1932. void
  1933. ripng_if_rmap_update (struct if_rmap *if_rmap)
  1934. {
  1935.   struct interface *ifp;
  1936.   struct ripng_interface *ri;
  1937.   struct route_map *rmap;
  1938.   ifp = if_lookup_by_name (if_rmap->ifname);
  1939.   if (ifp == NULL)
  1940.     return;
  1941.   ri = ifp->info;
  1942.   if (if_rmap->routemap[IF_RMAP_IN])
  1943.     {
  1944.       rmap = route_map_lookup_by_name (if_rmap->routemap[IF_RMAP_IN]);
  1945.       if (rmap)
  1946. ri->routemap[IF_RMAP_IN] = rmap;
  1947.       else
  1948. ri->routemap[IF_RMAP_IN] = NULL;
  1949.     }
  1950.   else
  1951.     ri->routemap[RIPNG_FILTER_IN] = NULL;
  1952.   if (if_rmap->routemap[IF_RMAP_OUT])
  1953.     {
  1954.       rmap = route_map_lookup_by_name (if_rmap->routemap[IF_RMAP_OUT]);
  1955.       if (rmap)
  1956. ri->routemap[IF_RMAP_OUT] = rmap;
  1957.       else
  1958. ri->routemap[IF_RMAP_OUT] = NULL;
  1959.     }
  1960.   else
  1961.     ri->routemap[RIPNG_FILTER_OUT] = NULL;
  1962. }
  1963. void
  1964. ripng_if_rmap_update_interface (struct interface *ifp)
  1965. {
  1966.   struct if_rmap *if_rmap;
  1967.   if_rmap = if_rmap_lookup (ifp->name);
  1968.   if (if_rmap)
  1969.     ripng_if_rmap_update (if_rmap);
  1970. }
  1971. void
  1972. ripng_routemap_update_redistribute (void)
  1973. {
  1974.   int i;
  1975.   if (ripng)
  1976.     {
  1977.       for (i = 0; i < ZEBRA_ROUTE_MAX; i++) 
  1978. {
  1979.   if (ripng->route_map[i].name)
  1980.     ripng->route_map[i].map = 
  1981.       route_map_lookup_by_name (ripng->route_map[i].name);
  1982. }
  1983.     }
  1984. }
  1985. void
  1986. ripng_routemap_update ()
  1987. {
  1988.   struct interface *ifp;
  1989.   listnode node;
  1990.   for (node = listhead (iflist); node; nextnode (node))
  1991.     {
  1992.       ifp = getdata (node);
  1993.       ripng_if_rmap_update_interface (ifp);
  1994.     }
  1995.   ripng_routemap_update_redistribute ();
  1996. }
  1997. /* Initialize ripng structure and set commands. */
  1998. void
  1999. ripng_init ()
  2000. {
  2001.   /* Randomize. */
  2002.   srand (time (NULL));
  2003.   /* Install RIPNG_NODE. */
  2004.   install_node (&cmd_ripng_node, ripng_config_write);
  2005.   /* Install ripng commands. */
  2006.   install_element (VIEW_NODE, &show_ipv6_ripng_cmd);
  2007.   install_element (ENABLE_NODE, &show_ipv6_ripng_cmd);
  2008.   install_element (CONFIG_NODE, &router_ripng_cmd);
  2009.   install_default (RIPNG_NODE);
  2010.   install_element (RIPNG_NODE, &ripng_route_cmd);
  2011.   install_element (RIPNG_NODE, &no_ripng_route_cmd);
  2012.   install_element (RIPNG_NODE, &ripng_aggregate_address_cmd);
  2013.   install_element (RIPNG_NODE, &no_ripng_aggregate_address_cmd);
  2014.   install_element (RIPNG_NODE, &ripng_default_metric_cmd);
  2015.   install_element (RIPNG_NODE, &no_ripng_default_metric_cmd);
  2016.   install_element (RIPNG_NODE, &no_ripng_default_metric_val_cmd);
  2017.   install_element (RIPNG_NODE, &ripng_timers_cmd);
  2018.   install_element (RIPNG_NODE, &no_ripng_timers_cmd);
  2019.   install_element (RIPNG_NODE, &ripng_default_information_originate_cmd);
  2020.   install_element (RIPNG_NODE, &no_ripng_default_information_originate_cmd);
  2021.   ripng_if_init ();
  2022.   ripng_debug_init ();
  2023.   /* Access list install. */
  2024.   access_list_init ();
  2025.   access_list_add_hook (ripng_distribute_update_all);
  2026.   access_list_delete_hook (ripng_distribute_update_all);
  2027.   /* Prefix list initialize.*/
  2028.   prefix_list_init ();
  2029.   prefix_list_add_hook (ripng_distribute_update_all);
  2030.   prefix_list_delete_hook (ripng_distribute_update_all);
  2031.   /* Distribute list install. */
  2032.   distribute_list_init (RIPNG_NODE);
  2033.   distribute_list_add_hook (ripng_distribute_update);
  2034.   distribute_list_delete_hook (ripng_distribute_update);
  2035.   /* Route-map for interface. */
  2036.   ripng_route_map_init ();
  2037.   route_map_add_hook (ripng_routemap_update);
  2038.   route_map_delete_hook (ripng_routemap_update);
  2039.   if_rmap_init ();
  2040.   if_rmap_hook_add (ripng_if_rmap_update);
  2041.   if_rmap_hook_delete (ripng_if_rmap_update);
  2042. }