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

网络

开发平台:

Unix_Linux

  1. /* Zebra daemon server routine.
  2.  * Copyright (C) 1997, 98, 99 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 
  18.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 
  19.  * Boston, MA 02111-1307, USA.  
  20.  */
  21. #include <zebra.h>
  22. #include "prefix.h"
  23. #include "command.h"
  24. #include "if.h"
  25. #include "thread.h"
  26. #include "stream.h"
  27. #include "memory.h"
  28. #include "table.h"
  29. #include "rib.h"
  30. #include "network.h"
  31. #include "sockunion.h"
  32. #include "log.h"
  33. #include "zclient.h"
  34. #include "zebra/zserv.h"
  35. #include "zebra/redistribute.h"
  36. #include "zebra/debug.h"
  37. #include "zebra/ipforward.h"
  38. /* Event list of zebra. */
  39. enum event { ZEBRA_SERV, ZEBRA_READ, ZEBRA_WRITE };
  40. /* Zebra client list. */
  41. list client_list;
  42. /* Default rtm_table for all clients */
  43. int rtm_table_default = 0;
  44. void zebra_event (enum event event, int sock, struct zserv *client);
  45. extern struct thread_master *master;
  46. /* For logging of zebra meesages. */
  47. char *zebra_command_str [] =
  48. {
  49.   "NULL",
  50.   "ZEBRA_INTERFACE_ADD",
  51.   "ZEBRA_INTERFACE_DELETE",
  52.   "ZEBRA_INTERFACE_ADDRESS_ADD",
  53.   "ZEBRA_INTERFACE_ADDRESS_DELETE",
  54.   "ZEBRA_INTERFACE_UP",
  55.   "ZEBRA_INTERFACE_DOWN",
  56.   "ZEBRA_IPV4_ROUTE_ADD",
  57.   "ZEBRA_IPV4_ROUTE_DELETE",
  58.   "ZEBRA_IPV6_ROUTE_ADD",
  59.   "ZEBRA_IPV6_ROUTE_DELETE",
  60.   "ZEBRA_REDISTRIBUTE_ADD",
  61.   "ZEBRA_REDISTRIBUTE_DELETE",
  62.   "ZEBRA_REDISTRIBUTE_DEFAULT_ADD",
  63.   "ZEBRA_REDISTRIBUTE_DEFAULT_DELETE",
  64.   "ZEBRA_IPV4_NEXTHOP_LOOKUP",
  65.   "ZEBRA_IPV6_NEXTHOP_LOOKUP",
  66.   "ZEBRA_IPV4_IMPORT_LOOKUP",
  67.   "ZEBRA_IPV6_IMPORT_LOOKUP"
  68. };
  69. struct zebra_message_queue
  70. {
  71.   struct nsm_message_queue *next;
  72.   struct nsm_message_queue *prev;
  73.   u_char *buf;
  74.   u_int16_t length;
  75.   u_int16_t written;
  76. };
  77. struct thread *t_write;
  78. struct fifo message_queue;
  79. int
  80. zebra_server_dequeue (struct thread *t)
  81. {
  82.   int sock;
  83.   int nbytes;
  84.   struct zebra_message_queue *queue;
  85.   sock = THREAD_FD (t);
  86.   t_write = NULL;
  87.   queue = (struct zebra_message_queue *) FIFO_HEAD (&message_queue);
  88.   if (queue)
  89.     {
  90.       nbytes = write (sock, queue->buf + queue->written,
  91.       queue->length - queue->written);
  92.       if (nbytes <= 0)
  93.         {
  94.           if (errno != EAGAIN)
  95.     return -1;
  96.         }
  97.       else if (nbytes != (queue->length - queue->written))
  98. {
  99.   queue->written += nbytes;
  100. }
  101.       else
  102.         {
  103.           FIFO_DEL (queue);
  104.           XFREE (MTYPE_TMP, queue->buf);
  105.           XFREE (MTYPE_TMP, queue);
  106.         }
  107.     }
  108.   if (FIFO_TOP (&message_queue))
  109.     THREAD_WRITE_ON (master, t_write, zebra_server_dequeue, NULL, sock);
  110.   return 0;
  111. }
  112. /* Enqueu message.  */
  113. void
  114. zebra_server_enqueue (int sock, u_char *buf, unsigned long length,
  115.       unsigned long written)
  116. {
  117.   struct zebra_message_queue *queue;
  118.   queue = XCALLOC (MTYPE_TMP, sizeof (struct zebra_message_queue));
  119.   queue->buf = XMALLOC (MTYPE_TMP, length);
  120.   memcpy (queue->buf, buf, length);
  121.   queue->length = length;
  122.   queue->written = written;
  123.   FIFO_ADD (&message_queue, queue);
  124.   THREAD_WRITE_ON (master, t_write, zebra_server_dequeue, NULL, sock);
  125. }
  126. int
  127. zebra_server_send_message (int sock, u_char *buf, unsigned long length)
  128. {
  129.   int nbytes;
  130.   if (FIFO_TOP (&message_queue))
  131.     {
  132.       zebra_server_enqueue (sock, buf, length, 0);
  133.       return 0;
  134.     }
  135.   /* Send message.  */
  136.   nbytes = write (sock, buf, length);
  137.   if (nbytes <= 0)
  138.     {
  139.       if (errno == EAGAIN)
  140.         zebra_server_enqueue (sock, buf, length, 0);
  141.       else
  142. return -1;
  143.     }
  144.   else if (nbytes != length)
  145.     zebra_server_enqueue (sock, buf, length, nbytes);
  146.   return 0;
  147. }
  148. /* Interface is added. Send ZEBRA_INTERFACE_ADD to client. */
  149. int
  150. zsend_interface_add (struct zserv *client, struct interface *ifp)
  151. {
  152.   struct stream *s;
  153.   /* Check this client need interface information. */
  154.   if (! client->ifinfo)
  155.     return -1;
  156.   s = client->obuf;
  157.   stream_reset (s);
  158.   /* Place holder for size. */
  159.   stream_putw (s, 0);
  160.   /* Message type. */
  161.   stream_putc (s, ZEBRA_INTERFACE_ADD);
  162.   /* Interface information. */
  163.   stream_put (s, ifp->name, INTERFACE_NAMSIZ);
  164.   stream_putl (s, ifp->ifindex);
  165.   stream_putl (s, ifp->flags);
  166.   stream_putl (s, ifp->metric);
  167.   stream_putl (s, ifp->mtu);
  168.   stream_putl (s, ifp->bandwidth);
  169. #ifdef HAVE_SOCKADDR_DL
  170.   stream_put (s, &ifp->sdl, sizeof (ifp->sdl));
  171. #else
  172.   stream_putl (s, ifp->hw_addr_len);
  173.   if (ifp->hw_addr_len)
  174.     stream_put (s, ifp->hw_addr, ifp->hw_addr_len);
  175. #endif /* HAVE_SOCKADDR_DL */
  176.   /* Write packet size. */
  177.   stream_putw_at (s, 0, stream_get_endp (s));
  178.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  179.   return 0;
  180. }
  181. /* Interface deletion from zebra daemon. */
  182. int
  183. zsend_interface_delete (struct zserv *client, struct interface *ifp)
  184. {
  185.   struct stream *s;
  186.   /* Check this client need interface information. */
  187.   if (! client->ifinfo)
  188.     return -1;
  189.   s = client->obuf;
  190.   stream_reset (s);
  191.   /* Packet length placeholder. */
  192.   stream_putw (s, 0);
  193.   /* Interface information. */
  194.   stream_putc (s, ZEBRA_INTERFACE_DELETE);
  195.   stream_put (s, ifp->name, INTERFACE_NAMSIZ);
  196.   stream_putl (s, ifp->ifindex);
  197.   stream_putl (s, ifp->flags);
  198.   stream_putl (s, ifp->metric);
  199.   stream_putl (s, ifp->mtu);
  200.   stream_putl (s, ifp->bandwidth);
  201.   /* Write packet length. */
  202.   stream_putw_at (s, 0, stream_get_endp (s));
  203.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  204.   return 0;
  205. }
  206. /* Interface address is added. Send ZEBRA_INTERFACE_ADDRESS_ADD to the
  207.    client. */
  208. int
  209. zsend_interface_address_add (struct zserv *client, struct interface *ifp, 
  210.      struct connected *ifc)
  211. {
  212.   int blen;
  213.   struct stream *s;
  214.   struct prefix *p;
  215.   /* Check this client need interface information. */
  216.   if (! client->ifinfo)
  217.     return -1;
  218.   s = client->obuf;
  219.   stream_reset (s);
  220.   /* Place holder for size. */
  221.   stream_putw (s, 0);
  222.   stream_putc (s, ZEBRA_INTERFACE_ADDRESS_ADD);
  223.   stream_putl (s, ifp->ifindex);
  224.   /* Interface address flag. */
  225.   stream_putc (s, ifc->flags);
  226.   /* Prefix information. */
  227.   p = ifc->address;
  228.   stream_putc (s, p->family);
  229.   blen = prefix_blen (p);
  230.   stream_put (s, &p->u.prefix, blen);
  231.   stream_putc (s, p->prefixlen);
  232.   /* Destination. */
  233.   p = ifc->destination;
  234.   if (p)
  235.     stream_put (s, &p->u.prefix, blen);
  236.   else
  237.     stream_put (s, NULL, blen);
  238.   /* Write packet size. */
  239.   stream_putw_at (s, 0, stream_get_endp (s));
  240.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  241.   return 0;
  242. }
  243. /* Interface address is deleted. Send ZEBRA_INTERFACE_ADDRESS_DELETE
  244.    to the client. */
  245. int
  246. zsend_interface_address_delete (struct zserv *client, struct interface *ifp,
  247. struct connected *ifc)
  248. {
  249.   int blen;
  250.   struct stream *s;
  251.   struct prefix *p;
  252.   /* Check this client need interface information. */
  253.   if (! client->ifinfo)
  254.     return -1;
  255.   s = client->obuf;
  256.   stream_reset (s);
  257.   /* Place holder for size. */
  258.   stream_putw (s, 0);
  259.   stream_putc (s, ZEBRA_INTERFACE_ADDRESS_DELETE);
  260.   stream_putl (s, ifp->ifindex);
  261.   /* Interface address flag. */
  262.   stream_putc (s, ifc->flags);
  263.   /* Prefix information. */
  264.   p = ifc->address;
  265.   stream_putc (s, p->family);
  266.   blen = prefix_blen (p);
  267.   stream_put (s, &p->u.prefix, blen);
  268.   p = ifc->destination;
  269.   if (p)
  270.     stream_put (s, &p->u.prefix, blen);
  271.   else
  272.     stream_put (s, NULL, blen);
  273.   /* Write packet size. */
  274.   stream_putw_at (s, 0, stream_get_endp (s));
  275.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  276.   return 0;
  277. }
  278. int
  279. zsend_interface_up (struct zserv *client, struct interface *ifp)
  280. {
  281.   struct stream *s;
  282.   /* Check this client need interface information. */
  283.   if (! client->ifinfo)
  284.     return -1;
  285.   s = client->obuf;
  286.   stream_reset (s);
  287.   /* Place holder for size. */
  288.   stream_putw (s, 0);
  289.   /* Zebra command. */
  290.   stream_putc (s, ZEBRA_INTERFACE_UP);
  291.   /* Interface information. */
  292.   stream_put (s, ifp->name, INTERFACE_NAMSIZ);
  293.   stream_putl (s, ifp->ifindex);
  294.   stream_putl (s, ifp->flags);
  295.   stream_putl (s, ifp->metric);
  296.   stream_putl (s, ifp->mtu);
  297.   stream_putl (s, ifp->bandwidth);
  298.   /* Write packet size. */
  299.   stream_putw_at (s, 0, stream_get_endp (s));
  300.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  301.   return 0;
  302. }
  303. int
  304. zsend_interface_down (struct zserv *client, struct interface *ifp)
  305. {
  306.   struct stream *s;
  307.   /* Check this client need interface information. */
  308.   if (! client->ifinfo)
  309.     return -1;
  310.   s = client->obuf;
  311.   stream_reset (s);
  312.   /* Place holder for size. */
  313.   stream_putw (s, 0);
  314.   /* Zebra command. */
  315.   stream_putc (s, ZEBRA_INTERFACE_DOWN);
  316.   /* Interface information. */
  317.   stream_put (s, ifp->name, INTERFACE_NAMSIZ);
  318.   stream_putl (s, ifp->ifindex);
  319.   stream_putl (s, ifp->flags);
  320.   stream_putl (s, ifp->metric);
  321.   stream_putl (s, ifp->mtu);
  322.   stream_putl (s, ifp->bandwidth);
  323.   /* Write packet size. */
  324.   stream_putw_at (s, 0, stream_get_endp (s));
  325.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  326.   return 0;
  327. }
  328. int
  329. zsend_ipv4_add_multipath (struct zserv *client, struct prefix *p, 
  330.   struct rib *rib)
  331. {
  332.   int psize;
  333.   struct stream *s;
  334.   struct nexthop *nexthop;
  335.   struct in_addr empty;
  336.   empty.s_addr = 0;
  337.   s = client->obuf;
  338.   stream_reset (s);
  339.   /* Place holder for size. */
  340.   stream_putw (s, 0);
  341.   /* Put command, type and nexthop. */
  342.   stream_putc (s, ZEBRA_IPV4_ROUTE_ADD);
  343.   stream_putc (s, rib->type);
  344.   stream_putc (s, rib->flags);
  345.   stream_putc (s, ZAPI_MESSAGE_NEXTHOP | ZAPI_MESSAGE_IFINDEX | ZAPI_MESSAGE_METRIC);
  346.   /* Prefix. */
  347.   psize = PSIZE (p->prefixlen);
  348.   stream_putc (s, p->prefixlen);
  349.   stream_write (s, (u_char *)&p->u.prefix, psize);
  350.   /* Nexthop */
  351.   for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
  352.     {
  353.       if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
  354. {
  355.   stream_putc (s, 1);
  356.   if (nexthop->type == NEXTHOP_TYPE_IPV4
  357.       || nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX)
  358.     stream_put_in_addr (s, &nexthop->gate.ipv4);
  359.   else
  360.     stream_put_in_addr (s, &empty);
  361.   /* Interface index. */
  362.   stream_putc (s, 1);
  363.   stream_putl (s, nexthop->ifindex);
  364.   break;
  365. }
  366.     }
  367.   /* Metric */
  368.   stream_putl (s, rib->metric);
  369.   /* Write packet size. */
  370.   stream_putw_at (s, 0, stream_get_endp (s));
  371.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  372.   return 0;
  373. }
  374. int
  375. zsend_ipv4_delete_multipath (struct zserv *client, struct prefix *p,
  376.      struct rib *rib)
  377. {
  378.   int psize;
  379.   struct stream *s;
  380.   struct nexthop *nexthop;
  381.   struct in_addr empty;
  382.   empty.s_addr = 0;
  383.   s = client->obuf;
  384.   stream_reset (s);
  385.   /* Place holder for size. */
  386.   stream_putw (s, 0);
  387.   /* Put command, type and nexthop. */
  388.   stream_putc (s, ZEBRA_IPV4_ROUTE_DELETE);
  389.   stream_putc (s, rib->type);
  390.   stream_putc (s, rib->flags);
  391.   stream_putc (s, ZAPI_MESSAGE_NEXTHOP|ZAPI_MESSAGE_IFINDEX);
  392.   /* Prefix. */
  393.   psize = PSIZE (p->prefixlen);
  394.   stream_putc (s, p->prefixlen);
  395.   stream_write (s, (u_char *)&p->u.prefix, psize);
  396.   /* Nexthop */
  397.   for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
  398.     {
  399.       if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
  400. {
  401.   stream_putc (s, 1);
  402.   if (nexthop->type == NEXTHOP_TYPE_IPV4)
  403.     stream_put_in_addr (s, &nexthop->gate.ipv4);
  404.   else
  405.     stream_put_in_addr (s, &empty);
  406.   /* Interface index. */
  407.   stream_putc (s, 1);
  408.   stream_putl (s, nexthop->ifindex);
  409.   break;
  410. }
  411.     }
  412.   /* Write packet size. */
  413.   stream_putw_at (s, 0, stream_get_endp (s));
  414.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  415.   return 0;
  416. }
  417. int
  418. zsend_ipv4_add (struct zserv *client, int type, int flags,
  419. struct prefix_ipv4 *p, struct in_addr *nexthop,
  420. unsigned int ifindex)
  421. {
  422.   int psize;
  423.   struct stream *s;
  424.   s = client->obuf;
  425.   stream_reset (s);
  426.   /* Place holder for size. */
  427.   stream_putw (s, 0);
  428.   /* Put command, type and nexthop. */
  429.   stream_putc (s, ZEBRA_IPV4_ROUTE_ADD);
  430.   stream_putc (s, type);
  431.   stream_putc (s, flags);
  432.   stream_putc (s, ZAPI_MESSAGE_NEXTHOP|ZAPI_MESSAGE_IFINDEX);
  433.   /* Prefix. */
  434.   psize = PSIZE (p->prefixlen);
  435.   stream_putc (s, p->prefixlen);
  436.   stream_write (s, (u_char *)&p->prefix, psize);
  437.   /* Nexthop */
  438.   stream_putc (s, 1);
  439.   stream_put_in_addr (s, nexthop);
  440.   /* Interface index. */
  441.   stream_putc (s, 1);
  442.   stream_putl (s, ifindex);
  443.   /* Write packet size. */
  444.   stream_putw_at (s, 0, stream_get_endp (s));
  445.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  446.   return 0;
  447. }
  448. int
  449. zsend_ipv4_delete (struct zserv *client, int type, int flags,
  450.    struct prefix_ipv4 *p, struct in_addr *nexthop,
  451.    unsigned int ifindex)
  452. {
  453.   int psize;
  454.   struct stream *s;
  455.   s = client->obuf;
  456.   stream_reset (s);
  457.   /* Place holder for size. */
  458.   stream_putw (s, 0);
  459.   /* Put command, type and nexthop. */
  460.   stream_putc (s, ZEBRA_IPV4_ROUTE_DELETE);
  461.   stream_putc (s, type);
  462.   stream_putc (s, flags);
  463.   stream_putc (s, ZAPI_MESSAGE_NEXTHOP|ZAPI_MESSAGE_IFINDEX);
  464.   /* Prefix. */
  465.   psize = PSIZE (p->prefixlen);
  466.   stream_putc (s, p->prefixlen);
  467.   stream_write (s, (u_char *)&p->prefix, psize);
  468.   /* Nexthop */
  469.   stream_putc (s, 1);
  470.   stream_put_in_addr (s, nexthop);
  471.   /* Interface index. */
  472.   stream_putc (s, 1);
  473.   stream_putl (s, ifindex);
  474.   /* Write packet size. */
  475.   stream_putw_at (s, 0, stream_get_endp (s));
  476.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  477.   return 0;
  478. }
  479. #ifdef HAVE_IPV6
  480. int
  481. zsend_ipv6_add (struct zserv *client, int type, int flags,
  482. struct prefix_ipv6 *p, struct in6_addr *nexthop,
  483. unsigned int ifindex)
  484. {
  485.   int psize;
  486.   struct stream *s;
  487.   s = client->obuf;
  488.   stream_reset (s);
  489.   /* Place holder for size. */
  490.   stream_putw (s, 0);
  491.   /* Put command, type and nexthop. */
  492.   stream_putc (s, ZEBRA_IPV6_ROUTE_ADD);
  493.   stream_putc (s, type);
  494.   stream_putc (s, flags);
  495.   stream_putc (s, ZAPI_MESSAGE_NEXTHOP|ZAPI_MESSAGE_IFINDEX);
  496.   /* Prefix. */
  497.   psize = PSIZE (p->prefixlen);
  498.   stream_putc (s, p->prefixlen);
  499.   stream_write (s, (u_char *)&p->prefix, psize);
  500.   /* Nexthop */
  501.   stream_putc (s, 1);
  502.   stream_write (s, (u_char *)nexthop, 16);
  503.   /* Interface index. */
  504.   stream_putc (s, 1);
  505.   stream_putl (s, ifindex);
  506.   /* Write packet size. */
  507.   stream_putw_at (s, 0, stream_get_endp (s));
  508.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  509.   return 0;
  510. }
  511. int
  512. zsend_ipv6_add_multipath (struct zserv *client, struct prefix *p,
  513.   struct rib *rib)
  514. {
  515.   int psize;
  516.   struct stream *s;
  517.   struct nexthop *nexthop;
  518.   struct in6_addr empty;
  519.   memset (&empty, 0, sizeof (struct in6_addr));
  520.   s = client->obuf;
  521.   stream_reset (s);
  522.   /* Place holder for size. */
  523.   stream_putw (s, 0);
  524.   /* Put command, type and nexthop. */
  525.   stream_putc (s, ZEBRA_IPV6_ROUTE_ADD);
  526.   stream_putc (s, rib->type);
  527.   stream_putc (s, rib->flags);
  528.   stream_putc (s, ZAPI_MESSAGE_NEXTHOP | ZAPI_MESSAGE_IFINDEX | ZAPI_MESSAGE_METRIC);
  529.   /* Prefix. */
  530.   psize = PSIZE (p->prefixlen);
  531.   stream_putc (s, p->prefixlen);
  532.   stream_write (s, (u_char *) &p->u.prefix, psize);
  533.   /* Nexthop */
  534.   for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
  535.     {
  536.       if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
  537. {
  538.   stream_putc (s, 1);
  539.   if (nexthop->type == NEXTHOP_TYPE_IPV6)
  540.     stream_write (s, (u_char *) &nexthop->gate.ipv6, 16);
  541.   else
  542.     stream_write (s, (u_char *) &empty, 16);
  543.   /* Interface index. */
  544.   stream_putc (s, 1);
  545.   stream_putl (s, nexthop->ifindex);
  546.   break;
  547. }
  548.     }
  549.   /* Metric */
  550.   stream_putl (s, rib->metric);
  551.   /* Write packet size. */
  552.   stream_putw_at (s, 0, stream_get_endp (s));
  553.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  554.   return 0;
  555. }
  556. int
  557. zsend_ipv6_delete (struct zserv *client, int type, int flags,
  558.    struct prefix_ipv6 *p, struct in6_addr *nexthop,
  559.    unsigned int ifindex)
  560. {
  561.   int psize;
  562.   struct stream *s;
  563.   s = client->obuf;
  564.   stream_reset (s);
  565.   /* Place holder for size. */
  566.   stream_putw (s, 0);
  567.   /* Put command, type and nexthop. */
  568.   stream_putc (s, ZEBRA_IPV6_ROUTE_DELETE);
  569.   stream_putc (s, type);
  570.   stream_putc (s, flags);
  571.   stream_putc (s, ZAPI_MESSAGE_NEXTHOP|ZAPI_MESSAGE_IFINDEX);
  572.   /* Prefix. */
  573.   psize = PSIZE (p->prefixlen);
  574.   stream_putc (s, p->prefixlen);
  575.   stream_write (s, (u_char *)&p->prefix, psize);
  576.   /* Nexthop */
  577.   stream_putc (s, 1);
  578.   stream_write (s, (u_char *)nexthop, 16);
  579.   /* Interface index. */
  580.   stream_putc (s, 1);
  581.   stream_putl (s, ifindex);
  582.   /* Write packet size. */
  583.   stream_putw_at (s, 0, stream_get_endp (s));
  584.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  585.   return 0;
  586. }
  587. int
  588. zsend_ipv6_delete_multipath (struct zserv *client, struct prefix *p,
  589.      struct rib *rib)
  590. {
  591.   int psize;
  592.   struct stream *s;
  593.   struct nexthop *nexthop;
  594.   struct in6_addr empty;
  595.   memset (&empty, 0, sizeof (struct in6_addr));
  596.   s = client->obuf;
  597.   stream_reset (s);
  598.   /* Place holder for size. */
  599.   stream_putw (s, 0);
  600.   /* Put command, type and nexthop. */
  601.   stream_putc (s, ZEBRA_IPV6_ROUTE_DELETE);
  602.   stream_putc (s, rib->type);
  603.   stream_putc (s, rib->flags);
  604.   stream_putc (s, ZAPI_MESSAGE_NEXTHOP|ZAPI_MESSAGE_IFINDEX);
  605.   /* Prefix. */
  606.   psize = PSIZE (p->prefixlen);
  607.   stream_putc (s, p->prefixlen);
  608.   stream_write (s, (u_char *)&p->u.prefix, psize);
  609.   /* Nexthop */
  610.   for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
  611.     {
  612.       if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
  613. {
  614.   stream_putc (s, 1);
  615.   if (nexthop->type == NEXTHOP_TYPE_IPV6)
  616.     stream_write (s, (u_char *) &nexthop->gate.ipv6, 16);
  617.   else
  618.     stream_write (s, (u_char *) &empty, 16);
  619.   /* Interface index. */
  620.   stream_putc (s, 1);
  621.   stream_putl (s, nexthop->ifindex);
  622.   break;
  623. }
  624.     }
  625.   /* Write packet size. */
  626.   stream_putw_at (s, 0, stream_get_endp (s));
  627.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  628.   return 0;
  629. }
  630. int
  631. zsend_ipv6_nexthop_lookup (struct zserv *client, struct in6_addr *addr)
  632. {
  633.   struct stream *s;
  634.   struct rib *rib;
  635.   unsigned long nump;
  636.   u_char num;
  637.   struct nexthop *nexthop;
  638.   /* Lookup nexthop. */
  639.   rib = rib_match_ipv6 (addr);
  640.   /* Get output stream. */
  641.   s = client->obuf;
  642.   stream_reset (s);
  643.   /* Fill in result. */
  644.   stream_putw (s, 0);
  645.   stream_putc (s, ZEBRA_IPV6_NEXTHOP_LOOKUP);
  646.   stream_put (s, &addr, 16);
  647.   if (rib)
  648.     {
  649.       stream_putl (s, rib->metric);
  650.       num = 0;
  651.       nump = s->putp;
  652.       stream_putc (s, 0);
  653.       for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
  654. if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
  655.   {
  656.     stream_putc (s, nexthop->type);
  657.     switch (nexthop->type)
  658.       {
  659.       case ZEBRA_NEXTHOP_IPV6:
  660. stream_put (s, &nexthop->gate.ipv6, 16);
  661. break;
  662.       case ZEBRA_NEXTHOP_IPV6_IFINDEX:
  663.       case ZEBRA_NEXTHOP_IPV6_IFNAME:
  664. stream_put (s, &nexthop->gate.ipv6, 16);
  665. stream_putl (s, nexthop->ifindex);
  666. break;
  667.       case ZEBRA_NEXTHOP_IFINDEX:
  668.       case ZEBRA_NEXTHOP_IFNAME:
  669. stream_putl (s, nexthop->ifindex);
  670. break;
  671.       }
  672.     num++;
  673.   }
  674.       stream_putc_at (s, nump, num);
  675.     }
  676.   else
  677.     {
  678.       stream_putl (s, 0);
  679.       stream_putc (s, 0);
  680.     }
  681.   stream_putw_at (s, 0, stream_get_endp (s));
  682.   
  683.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  684.   return 0;
  685. }
  686. #endif /* HAVE_IPV6 */
  687. int
  688. zsend_ipv4_nexthop_lookup (struct zserv *client, struct in_addr addr)
  689. {
  690.   struct stream *s;
  691.   struct rib *rib;
  692.   unsigned long nump;
  693.   u_char num;
  694.   struct nexthop *nexthop;
  695.   /* Lookup nexthop. */
  696.   rib = rib_match_ipv4 (addr);
  697.   /* Get output stream. */
  698.   s = client->obuf;
  699.   stream_reset (s);
  700.   /* Fill in result. */
  701.   stream_putw (s, 0);
  702.   stream_putc (s, ZEBRA_IPV4_NEXTHOP_LOOKUP);
  703.   stream_put_in_addr (s, &addr);
  704.   if (rib)
  705.     {
  706.       stream_putl (s, rib->metric);
  707.       num = 0;
  708.       nump = s->putp;
  709.       stream_putc (s, 0);
  710.       for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
  711. if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
  712.   {
  713.     stream_putc (s, nexthop->type);
  714.     switch (nexthop->type)
  715.       {
  716.       case ZEBRA_NEXTHOP_IPV4:
  717. stream_put_in_addr (s, &nexthop->gate.ipv4);
  718. break;
  719.       case ZEBRA_NEXTHOP_IFINDEX:
  720.       case ZEBRA_NEXTHOP_IFNAME:
  721. stream_putl (s, nexthop->ifindex);
  722. break;
  723.       }
  724.     num++;
  725.   }
  726.       stream_putc_at (s, nump, num);
  727.     }
  728.   else
  729.     {
  730.       stream_putl (s, 0);
  731.       stream_putc (s, 0);
  732.     }
  733.   stream_putw_at (s, 0, stream_get_endp (s));
  734.   
  735.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  736.   return 0;
  737. }
  738. int
  739. zsend_ipv4_import_lookup (struct zserv *client, struct prefix_ipv4 *p)
  740. {
  741.   struct stream *s;
  742.   struct rib *rib;
  743.   unsigned long nump;
  744.   u_char num;
  745.   struct nexthop *nexthop;
  746.   /* Lookup nexthop. */
  747.   rib = rib_lookup_ipv4 (p);
  748.   /* Get output stream. */
  749.   s = client->obuf;
  750.   stream_reset (s);
  751.   /* Fill in result. */
  752.   stream_putw (s, 0);
  753.   stream_putc (s, ZEBRA_IPV4_IMPORT_LOOKUP);
  754.   stream_put_in_addr (s, &p->prefix);
  755.   if (rib)
  756.     {
  757.       stream_putl (s, rib->metric);
  758.       num = 0;
  759.       nump = s->putp;
  760.       stream_putc (s, 0);
  761.       for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
  762. if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
  763.   {
  764.     stream_putc (s, nexthop->type);
  765.     switch (nexthop->type)
  766.       {
  767.       case ZEBRA_NEXTHOP_IPV4:
  768. stream_put_in_addr (s, &nexthop->gate.ipv4);
  769. break;
  770.       case ZEBRA_NEXTHOP_IFINDEX:
  771.       case ZEBRA_NEXTHOP_IFNAME:
  772. stream_putl (s, nexthop->ifindex);
  773. break;
  774.       }
  775.     num++;
  776.   }
  777.       stream_putc_at (s, nump, num);
  778.     }
  779.   else
  780.     {
  781.       stream_putl (s, 0);
  782.       stream_putc (s, 0);
  783.     }
  784.   stream_putw_at (s, 0, stream_get_endp (s));
  785.   
  786.   zebra_server_send_message (client->sock, s->data, stream_get_endp (s));
  787.   return 0;
  788. }
  789. /* Register zebra server interface information.  Send current all
  790.    interface and address information. */
  791. void
  792. zread_interface_add (struct zserv *client, u_short length)
  793. {
  794.   listnode ifnode;
  795.   listnode cnode;
  796.   struct interface *ifp;
  797.   struct connected *c;
  798.   /* Interface information is needed. */
  799.   client->ifinfo = 1;
  800.   for (ifnode = listhead (iflist); ifnode; ifnode = nextnode (ifnode))
  801.     {
  802.       ifp = getdata (ifnode);
  803.       /* Skip pseudo interface. */
  804.       if (! CHECK_FLAG (ifp->status, ZEBRA_INTERFACE_ACTIVE))
  805. continue;
  806.       zsend_interface_add (client, ifp);
  807.       for (cnode = listhead (ifp->connected); cnode; nextnode (cnode))
  808. {
  809.   c = getdata (cnode);
  810.   if (CHECK_FLAG (c->conf, ZEBRA_IFC_REAL))
  811.     zsend_interface_address_add (client, ifp, c);
  812. }
  813.     }
  814. }
  815. /* Unregister zebra server interface information. */
  816. void
  817. zread_interface_delete (struct zserv *client, u_short length)
  818. {
  819.   client->ifinfo = 0;
  820. }
  821. /* This function support multiple nexthop. */
  822. void
  823. zread_ipv4_add (struct zserv *client, u_short length)
  824. {
  825.   int i;
  826.   struct rib *rib;
  827.   struct prefix_ipv4 p;
  828.   u_char message;
  829.   struct in_addr nexthop;
  830.   u_char nexthop_num;
  831.   u_char nexthop_type;
  832.   struct stream *s;
  833.   unsigned int ifindex;
  834.   u_char ifname_len;
  835.   /* Get input stream.  */
  836.   s = client->ibuf;
  837.   /* Allocate new rib. */
  838.   rib = XMALLOC (MTYPE_RIB, sizeof (struct rib));
  839.   memset (rib, 0, sizeof (struct rib));
  840.   /* Type, flags, message. */
  841.   rib->type = stream_getc (s);
  842.   rib->flags = stream_getc (s);
  843.   message = stream_getc (s);
  844.   rib->uptime = time (NULL);
  845.   /* IPv4 prefix. */
  846.   memset (&p, 0, sizeof (struct prefix_ipv4));
  847.   p.family = AF_INET;
  848.   p.prefixlen = stream_getc (s);
  849.   stream_get (&p.prefix, s, PSIZE (p.prefixlen));
  850.   /* Nexthop parse. */
  851.   if (CHECK_FLAG (message, ZAPI_MESSAGE_NEXTHOP))
  852.     {
  853.       nexthop_num = stream_getc (s);
  854.       for (i = 0; i < nexthop_num; i++)
  855. {
  856.   nexthop_type = stream_getc (s);
  857.   switch (nexthop_type)
  858.     {
  859.     case ZEBRA_NEXTHOP_IFINDEX:
  860.       ifindex = stream_getl (s);
  861.       nexthop_ifindex_add (rib, ifindex);
  862.       break;
  863.     case ZEBRA_NEXTHOP_IFNAME:
  864.       ifname_len = stream_getc (s);
  865.       stream_forward (s, ifname_len);
  866.       break;
  867.     case ZEBRA_NEXTHOP_IPV4:
  868.       nexthop.s_addr = stream_get_ipv4 (s);
  869.       nexthop_ipv4_add (rib, &nexthop);
  870.       break;
  871.     case ZEBRA_NEXTHOP_IPV6:
  872.       stream_forward (s, IPV6_MAX_BYTELEN);
  873.       break;
  874.     case ZEBRA_NEXTHOP_BLACKHOLE:
  875.       nexthop_blackhole_add (rib);
  876.       break;
  877.     }
  878. }
  879.     }
  880.   /* Distance. */
  881.   if (CHECK_FLAG (message, ZAPI_MESSAGE_DISTANCE))
  882.     rib->distance = stream_getc (s);
  883.   /* Metric. */
  884.   if (CHECK_FLAG (message, ZAPI_MESSAGE_METRIC))
  885.     rib->metric = stream_getl (s);
  886.     
  887.   rib_add_ipv4_multipath (&p, rib);
  888. }
  889. /* Zebra server IPv4 prefix delete function. */
  890. void
  891. zread_ipv4_delete (struct zserv *client, u_short length)
  892. {
  893.   int i;
  894.   struct stream *s;
  895.   struct zapi_ipv4 api;
  896.   struct in_addr nexthop;
  897.   unsigned long ifindex;
  898.   struct prefix_ipv4 p;
  899.   u_char nexthop_num;
  900.   u_char nexthop_type;
  901.   u_char ifname_len;
  902.   
  903.   s = client->ibuf;
  904.   ifindex = 0;
  905.   nexthop.s_addr = 0;
  906.   /* Type, flags, message. */
  907.   api.type = stream_getc (s);
  908.   api.flags = stream_getc (s);
  909.   api.message = stream_getc (s);
  910.   /* IPv4 prefix. */
  911.   memset (&p, 0, sizeof (struct prefix_ipv4));
  912.   p.family = AF_INET;
  913.   p.prefixlen = stream_getc (s);
  914.   stream_get (&p.prefix, s, PSIZE (p.prefixlen));
  915.   /* Nexthop, ifindex, distance, metric. */
  916.   if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
  917.     {
  918.       nexthop_num = stream_getc (s);
  919.       for (i = 0; i < nexthop_num; i++)
  920. {
  921.   nexthop_type = stream_getc (s);
  922.   switch (nexthop_type)
  923.     {
  924.     case ZEBRA_NEXTHOP_IFINDEX:
  925.       ifindex = stream_getl (s);
  926.       break;
  927.     case ZEBRA_NEXTHOP_IFNAME:
  928.       ifname_len = stream_getc (s);
  929.       stream_forward (s, ifname_len);
  930.       break;
  931.     case ZEBRA_NEXTHOP_IPV4:
  932.       nexthop.s_addr = stream_get_ipv4 (s);
  933.       break;
  934.     case ZEBRA_NEXTHOP_IPV6:
  935.       stream_forward (s, IPV6_MAX_BYTELEN);
  936.       break;
  937.     }
  938. }
  939.     }
  940.   /* Distance. */
  941.   if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
  942.     api.distance = stream_getc (s);
  943.   else
  944.     api.distance = 0;
  945.   /* Metric. */
  946.   if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
  947.     api.metric = stream_getl (s);
  948.   else
  949.     api.metric = 0;
  950.     
  951.   rib_delete_ipv4 (api.type, api.flags, &p, &nexthop, ifindex,
  952.    client->rtm_table);
  953. }
  954. /* Nexthop lookup for IPv4. */
  955. void
  956. zread_ipv4_nexthop_lookup (struct zserv *client, u_short length)
  957. {
  958.   struct in_addr addr;
  959.   addr.s_addr = stream_get_ipv4 (client->ibuf);
  960.   zsend_ipv4_nexthop_lookup (client, addr);
  961. }
  962. /* Nexthop lookup for IPv4. */
  963. void
  964. zread_ipv4_import_lookup (struct zserv *client, u_short length)
  965. {
  966.   struct prefix_ipv4 p;
  967.   p.family = AF_INET;
  968.   p.prefixlen = stream_getc (client->ibuf);
  969.   p.prefix.s_addr = stream_get_ipv4 (client->ibuf);
  970.   zsend_ipv4_import_lookup (client, &p);
  971. }
  972. #ifdef HAVE_IPV6
  973. /* Zebra server IPv6 prefix add function. */
  974. void
  975. zread_ipv6_add (struct zserv *client, u_short length)
  976. {
  977.   int i;
  978.   struct stream *s;
  979.   struct zapi_ipv6 api;
  980.   struct in6_addr nexthop;
  981.   unsigned long ifindex;
  982.   struct prefix_ipv6 p;
  983.   
  984.   s = client->ibuf;
  985.   ifindex = 0;
  986.   memset (&nexthop, 0, sizeof (struct in6_addr));
  987.   /* Type, flags, message. */
  988.   api.type = stream_getc (s);
  989.   api.flags = stream_getc (s);
  990.   api.message = stream_getc (s);
  991.   /* IPv4 prefix. */
  992.   memset (&p, 0, sizeof (struct prefix_ipv6));
  993.   p.family = AF_INET6;
  994.   p.prefixlen = stream_getc (s);
  995.   stream_get (&p.prefix, s, PSIZE (p.prefixlen));
  996.   /* Nexthop, ifindex, distance, metric. */
  997.   if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
  998.     {
  999.       u_char nexthop_type;
  1000.       api.nexthop_num = stream_getc (s);
  1001.       for (i = 0; i < api.nexthop_num; i++)
  1002. {
  1003.   nexthop_type = stream_getc (s);
  1004.   switch (nexthop_type)
  1005.     {
  1006.     case ZEBRA_NEXTHOP_IPV6:
  1007.       stream_get (&nexthop, s, 16);
  1008.       break;
  1009.     case ZEBRA_NEXTHOP_IFINDEX:
  1010.       ifindex = stream_getl (s);
  1011.       break;
  1012.     }
  1013. }
  1014.     }
  1015.   if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
  1016.     api.distance = stream_getc (s);
  1017.   else
  1018.     api.distance = 0;
  1019.   if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
  1020.     api.metric = stream_getl (s);
  1021.   else
  1022.     api.metric = 0;
  1023.     
  1024.   if (IN6_IS_ADDR_UNSPECIFIED (&nexthop))
  1025.     rib_add_ipv6 (api.type, api.flags, &p, NULL, ifindex, 0);
  1026.   else
  1027.     rib_add_ipv6 (api.type, api.flags, &p, &nexthop, ifindex, 0);
  1028. }
  1029. /* Zebra server IPv6 prefix delete function. */
  1030. void
  1031. zread_ipv6_delete (struct zserv *client, u_short length)
  1032. {
  1033.   int i;
  1034.   struct stream *s;
  1035.   struct zapi_ipv6 api;
  1036.   struct in6_addr nexthop;
  1037.   unsigned long ifindex;
  1038.   struct prefix_ipv6 p;
  1039.   
  1040.   s = client->ibuf;
  1041.   ifindex = 0;
  1042.   memset (&nexthop, 0, sizeof (struct in6_addr));
  1043.   /* Type, flags, message. */
  1044.   api.type = stream_getc (s);
  1045.   api.flags = stream_getc (s);
  1046.   api.message = stream_getc (s);
  1047.   /* IPv4 prefix. */
  1048.   memset (&p, 0, sizeof (struct prefix_ipv6));
  1049.   p.family = AF_INET6;
  1050.   p.prefixlen = stream_getc (s);
  1051.   stream_get (&p.prefix, s, PSIZE (p.prefixlen));
  1052.   /* Nexthop, ifindex, distance, metric. */
  1053.   if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
  1054.     {
  1055.       u_char nexthop_type;
  1056.       api.nexthop_num = stream_getc (s);
  1057.       for (i = 0; i < api.nexthop_num; i++)
  1058. {
  1059.   nexthop_type = stream_getc (s);
  1060.   switch (nexthop_type)
  1061.     {
  1062.     case ZEBRA_NEXTHOP_IPV6:
  1063.       stream_get (&nexthop, s, 16);
  1064.       break;
  1065.     case ZEBRA_NEXTHOP_IFINDEX:
  1066.       ifindex = stream_getl (s);
  1067.       break;
  1068.     }
  1069. }
  1070.     }
  1071.   if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
  1072.     api.distance = stream_getc (s);
  1073.   else
  1074.     api.distance = 0;
  1075.   if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
  1076.     api.metric = stream_getl (s);
  1077.   else
  1078.     api.metric = 0;
  1079.     
  1080.   if (IN6_IS_ADDR_UNSPECIFIED (&nexthop))
  1081.     rib_delete_ipv6 (api.type, api.flags, &p, NULL, ifindex, 0);
  1082.   else
  1083.     rib_delete_ipv6 (api.type, api.flags, &p, &nexthop, ifindex, 0);
  1084. }
  1085. void
  1086. zebra_read_ipv6 (int command, struct zserv *client, u_short length)
  1087. {
  1088.   u_char type;
  1089.   u_char flags;
  1090.   struct in6_addr nexthop, *gate;
  1091.   u_char *lim;
  1092.   u_char *pnt;
  1093.   unsigned int ifindex;
  1094.   pnt = stream_pnt (client->ibuf);
  1095.   lim = pnt + length;
  1096.   type = stream_getc (client->ibuf);
  1097.   flags = stream_getc (client->ibuf);
  1098.   stream_get (&nexthop, client->ibuf, sizeof (struct in6_addr));
  1099.   
  1100.   while (stream_pnt (client->ibuf) < lim)
  1101.     {
  1102.       int size;
  1103.       struct prefix_ipv6 p;
  1104.       
  1105.       ifindex = stream_getl (client->ibuf);
  1106.       memset (&p, 0, sizeof (struct prefix_ipv6));
  1107.       p.family = AF_INET6;
  1108.       p.prefixlen = stream_getc (client->ibuf);
  1109.       size = PSIZE(p.prefixlen);
  1110.       stream_get (&p.prefix, client->ibuf, size);
  1111.       if (IN6_IS_ADDR_UNSPECIFIED (&nexthop))
  1112.         gate = NULL;
  1113.       else
  1114.         gate = &nexthop;
  1115.       if (command == ZEBRA_IPV6_ROUTE_ADD)
  1116. rib_add_ipv6 (type, flags, &p, gate, ifindex, 0);
  1117.       else
  1118. rib_delete_ipv6 (type, flags, &p, gate, ifindex, 0);
  1119.     }
  1120. }
  1121. void
  1122. zread_ipv6_nexthop_lookup (struct zserv *client, u_short length)
  1123. {
  1124.   struct in6_addr addr;
  1125.   char buf[BUFSIZ];
  1126.   stream_get (&addr, client->ibuf, 16);
  1127.   printf ("DEBUG %sn", inet_ntop (AF_INET6, &addr, buf, BUFSIZ));
  1128.   zsend_ipv6_nexthop_lookup (client, &addr);
  1129. }
  1130. #endif /* HAVE_IPV6 */
  1131. /* Close zebra client. */
  1132. void
  1133. zebra_client_close (struct zserv *client)
  1134. {
  1135.   /* Close file descriptor. */
  1136.   if (client->sock)
  1137.     {
  1138.       close (client->sock);
  1139.       client->sock = -1;
  1140.     }
  1141.   /* Free stream buffers. */
  1142.   if (client->ibuf)
  1143.     stream_free (client->ibuf);
  1144.   if (client->obuf)
  1145.     stream_free (client->obuf);
  1146.   /* Release threads. */
  1147.   if (client->t_read)
  1148.     thread_cancel (client->t_read);
  1149.   if (client->t_write)
  1150.     thread_cancel (client->t_write);
  1151.   /* Free client structure. */
  1152.   listnode_delete (client_list, client);
  1153.   XFREE (0, client);
  1154. }
  1155. /* Make new client. */
  1156. void
  1157. zebra_client_create (int sock)
  1158. {
  1159.   struct zserv *client;
  1160.   client = XCALLOC (0, sizeof (struct zserv));
  1161.   /* Make client input/output buffer. */
  1162.   client->sock = sock;
  1163.   client->ibuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
  1164.   client->obuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
  1165.   /* Set table number. */
  1166.   client->rtm_table = rtm_table_default;
  1167.   /* Add this client to linked list. */
  1168.   listnode_add (client_list, client);
  1169.   
  1170.   /* Make new read thread. */
  1171.   zebra_event (ZEBRA_READ, sock, client);
  1172. }
  1173. /* Handler of zebra service request. */
  1174. int
  1175. zebra_client_read (struct thread *thread)
  1176. {
  1177.   int sock;
  1178.   struct zserv *client;
  1179.   int nbyte;
  1180.   u_short length;
  1181.   u_char command;
  1182.   /* Get thread data.  Reset reading thread because I'm running. */
  1183.   sock = THREAD_FD (thread);
  1184.   client = THREAD_ARG (thread);
  1185.   client->t_read = NULL;
  1186.   /* Read length and command. */
  1187.   nbyte = stream_read (client->ibuf, sock, 3);
  1188.   if (nbyte <= 0) 
  1189.     {
  1190.       if (IS_ZEBRA_DEBUG_EVENT)
  1191. zlog_info ("connection closed socket [%d]", sock);
  1192.       zebra_client_close (client);
  1193.       return -1;
  1194.     }
  1195.   length = stream_getw (client->ibuf);
  1196.   command = stream_getc (client->ibuf);
  1197.   if (length < 3) 
  1198.     {
  1199.       if (IS_ZEBRA_DEBUG_EVENT)
  1200. zlog_info ("length %d is less than 3 ", length);
  1201.       zebra_client_close (client);
  1202.       return -1;
  1203.     }
  1204.   length -= 3;
  1205.   /* Read rest of data. */
  1206.   if (length)
  1207.     {
  1208.       nbyte = stream_read (client->ibuf, sock, length);
  1209.       if (nbyte <= 0) 
  1210. {
  1211.   if (IS_ZEBRA_DEBUG_EVENT)
  1212.     zlog_info ("connection closed [%d] when reading zebra data", sock);
  1213.   zebra_client_close (client);
  1214.   return -1;
  1215. }
  1216.     }
  1217.   /* Debug packet information. */
  1218.   if (IS_ZEBRA_DEBUG_EVENT)
  1219.     zlog_info ("zebra message comes from socket [%d]", sock);
  1220.   if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
  1221.     zlog_info ("zebra message received [%s] %d", 
  1222.        zebra_command_str[command], length);
  1223.   switch (command) 
  1224.     {
  1225.     case ZEBRA_INTERFACE_ADD:
  1226.       zread_interface_add (client, length);
  1227.       break;
  1228.     case ZEBRA_INTERFACE_DELETE:
  1229.       zread_interface_delete (client, length);
  1230.       break;
  1231.     case ZEBRA_IPV4_ROUTE_ADD:
  1232.       zread_ipv4_add (client, length);
  1233.       break;
  1234.     case ZEBRA_IPV4_ROUTE_DELETE:
  1235.       zread_ipv4_delete (client, length);
  1236.       break;
  1237. #ifdef HAVE_IPV6
  1238.     case ZEBRA_IPV6_ROUTE_ADD:
  1239.       zread_ipv6_add (client, length);
  1240.       break;
  1241.     case ZEBRA_IPV6_ROUTE_DELETE:
  1242.       zread_ipv6_delete (client, length);
  1243.       break;
  1244. #endif /* HAVE_IPV6 */
  1245.     case ZEBRA_REDISTRIBUTE_ADD:
  1246.       zebra_redistribute_add (command, client, length);
  1247.       break;
  1248.     case ZEBRA_REDISTRIBUTE_DELETE:
  1249.       zebra_redistribute_delete (command, client, length);
  1250.       break;
  1251.     case ZEBRA_REDISTRIBUTE_DEFAULT_ADD:
  1252.       zebra_redistribute_default_add (command, client, length);
  1253.       break;
  1254.     case ZEBRA_REDISTRIBUTE_DEFAULT_DELETE:
  1255.       zebra_redistribute_default_delete (command, client, length);
  1256.       break;
  1257.     case ZEBRA_IPV4_NEXTHOP_LOOKUP:
  1258.       zread_ipv4_nexthop_lookup (client, length);
  1259.       break;
  1260. #ifdef HAVE_IPV6
  1261.     case ZEBRA_IPV6_NEXTHOP_LOOKUP:
  1262.       zread_ipv6_nexthop_lookup (client, length);
  1263.       break;
  1264. #endif /* HAVE_IPV6 */
  1265.     case ZEBRA_IPV4_IMPORT_LOOKUP:
  1266.       zread_ipv4_import_lookup (client, length);
  1267.       break;
  1268.     default:
  1269.       zlog_info ("Zebra received unknown command %d", command);
  1270.       break;
  1271.     }
  1272.   stream_reset (client->ibuf);
  1273.   zebra_event (ZEBRA_READ, sock, client);
  1274.   return 0;
  1275. }
  1276. /* Write output buffer to the socket. */
  1277. void
  1278. zebra_write (struct thread *thread)
  1279. {
  1280.   int sock;
  1281.   struct zserv *client;
  1282.   /* Thread treatment. */
  1283.   sock = THREAD_FD (thread);
  1284.   client = THREAD_ARG (thread);
  1285.   client->t_write = NULL;
  1286.   stream_flush (client->obuf, sock);
  1287. }
  1288. /* Accept code of zebra server socket. */
  1289. int
  1290. zebra_accept (struct thread *thread)
  1291. {
  1292.   int val;
  1293.   int accept_sock;
  1294.   int client_sock;
  1295.   struct sockaddr_in client;
  1296.   socklen_t len;
  1297.   accept_sock = THREAD_FD (thread);
  1298.   len = sizeof (struct sockaddr_in);
  1299.   client_sock = accept (accept_sock, (struct sockaddr *) &client, &len);
  1300.   if (client_sock < 0)
  1301.     {
  1302.       zlog_warn ("Can't accept zebra socket: %s", strerror (errno));
  1303.       return -1;
  1304.     }
  1305.   /* Make client socket non-blocking.  */
  1306.   val = fcntl (client_sock, F_GETFL, 0);
  1307.   fcntl (client_sock, F_SETFL, (val | O_NONBLOCK));
  1308.   /* Create new zebra client. */
  1309.   zebra_client_create (client_sock);
  1310.   /* Register myself. */
  1311.   zebra_event (ZEBRA_SERV, accept_sock, NULL);
  1312.   return 0;
  1313. }
  1314. /* Make zebra's server socket. */
  1315. void
  1316. zebra_serv ()
  1317. {
  1318.   int ret;
  1319.   int accept_sock;
  1320.   struct sockaddr_in addr;
  1321.   accept_sock = socket (AF_INET, SOCK_STREAM, 0);
  1322.   if (accept_sock < 0) 
  1323.     {
  1324.       zlog_warn ("Can't bind to socket: %s", strerror (errno));
  1325.       zlog_warn ("zebra can't provice full functionality due to above error");
  1326.       return;
  1327.     }
  1328.   memset (&addr, 0, sizeof (struct sockaddr_in));
  1329.   addr.sin_family = AF_INET;
  1330.   addr.sin_port = htons (ZEBRA_PORT);
  1331. #ifdef HAVE_SIN_LEN
  1332.   addr.sin_len = sizeof (struct sockaddr_in);
  1333. #endif /* HAVE_SIN_LEN */
  1334.   addr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
  1335.   sockopt_reuseaddr (accept_sock);
  1336.   sockopt_reuseport (accept_sock);
  1337.   ret  = bind (accept_sock, (struct sockaddr *)&addr, 
  1338.        sizeof (struct sockaddr_in));
  1339.   if (ret < 0)
  1340.     {
  1341.       zlog_warn ("Can't bind to socket: %s", strerror (errno));
  1342.       zlog_warn ("zebra can't provice full functionality due to above error");
  1343.       close (accept_sock);      /* Avoid sd leak. */
  1344.       return;
  1345.     }
  1346.   ret = listen (accept_sock, 1);
  1347.   if (ret < 0)
  1348.     {
  1349.       zlog_warn ("Can't listen to socket: %s", strerror (errno));
  1350.       zlog_warn ("zebra can't provice full functionality due to above error");
  1351.       close (accept_sock); /* Avoid sd leak. */
  1352.       return;
  1353.     }
  1354.   zebra_event (ZEBRA_SERV, accept_sock, NULL);
  1355. }
  1356. /* For sockaddr_un. */
  1357. #include <sys/un.h>
  1358. /* zebra server UNIX domain socket. */
  1359. void
  1360. zebra_serv_un (char *path)
  1361. {
  1362.   int ret;
  1363.   int sock, len;
  1364.   struct sockaddr_un serv;
  1365.   mode_t old_mask;
  1366.   /* First of all, unlink existing socket */
  1367.   unlink (path);
  1368.   /* Set umask */
  1369.   old_mask = umask (0077);
  1370.   /* Make UNIX domain socket. */
  1371.   sock = socket (AF_UNIX, SOCK_STREAM, 0);
  1372.   if (sock < 0)
  1373.     {
  1374.       perror ("sock");
  1375.       return;
  1376.     }
  1377.   /* Make server socket. */
  1378.   memset (&serv, 0, sizeof (struct sockaddr_un));
  1379.   serv.sun_family = AF_UNIX;
  1380.   strncpy (serv.sun_path, path, strlen (path));
  1381. #ifdef HAVE_SUN_LEN
  1382.   len = serv.sun_len = SUN_LEN(&serv);
  1383. #else
  1384.   len = sizeof (serv.sun_family) + strlen (serv.sun_path);
  1385. #endif /* HAVE_SUN_LEN */
  1386.   ret = bind (sock, (struct sockaddr *) &serv, len);
  1387.   if (ret < 0)
  1388.     {
  1389.       perror ("bind");
  1390.       close (sock);
  1391.       return;
  1392.     }
  1393.   ret = listen (sock, 5);
  1394.   if (ret < 0)
  1395.     {
  1396.       perror ("listen");
  1397.       close (sock);
  1398.       return;
  1399.     }
  1400.   umask (old_mask);
  1401.   zebra_event (ZEBRA_SERV, sock, NULL);
  1402. }
  1403. /* Zebra's event management function. */
  1404. extern struct thread_master *master;
  1405. void
  1406. zebra_event (enum event event, int sock, struct zserv *client)
  1407. {
  1408.   switch (event)
  1409.     {
  1410.     case ZEBRA_SERV:
  1411.       thread_add_read (master, zebra_accept, client, sock);
  1412.       break;
  1413.     case ZEBRA_READ:
  1414.       client->t_read = 
  1415. thread_add_read (master, zebra_client_read, client, sock);
  1416.       break;
  1417.     case ZEBRA_WRITE:
  1418.       /**/
  1419.       break;
  1420.     }
  1421. }
  1422. /* Display default rtm_table for all clients. */
  1423. DEFUN (show_table,
  1424.        show_table_cmd,
  1425.        "show table",
  1426.        SHOW_STR
  1427.        "default routing table to use for all clientsn")
  1428. {
  1429.   vty_out (vty, "table %d%s", rtm_table_default,
  1430.    VTY_NEWLINE);
  1431.   return CMD_SUCCESS;
  1432. }
  1433. DEFUN (config_table, 
  1434.        config_table_cmd,
  1435.        "table TABLENO",
  1436.        "Configure target kernel routing tablen"
  1437.        "TABLE integern")
  1438. {
  1439.   rtm_table_default = strtol (argv[0], (char**)0, 10);
  1440.   return CMD_SUCCESS;
  1441. }
  1442. DEFUN (no_ip_forwarding,
  1443.        no_ip_forwarding_cmd,
  1444.        "no ip forwarding",
  1445.        NO_STR
  1446.        IP_STR
  1447.        "Turn off IP forwarding")
  1448. {
  1449.   int ret;
  1450.   ret = ipforward ();
  1451.   if (ret == 0)
  1452.     {
  1453.       vty_out (vty, "IP forwarding is already off%s", VTY_NEWLINE); 
  1454.       return CMD_ERR_NOTHING_TODO;
  1455.     }
  1456.   ret = ipforward_off ();
  1457.   if (ret != 0)
  1458.     {
  1459.       vty_out (vty, "Can't turn off IP forwarding%s", VTY_NEWLINE);
  1460.       return CMD_WARNING;
  1461.     }
  1462.   return CMD_SUCCESS;
  1463. }
  1464. /* This command is for debugging purpose. */
  1465. DEFUN (show_zebra_client,
  1466.        show_zebra_client_cmd,
  1467.        "show zebra client",
  1468.        SHOW_STR
  1469.        "Zebra information"
  1470.        "Client information")
  1471. {
  1472.   listnode node;
  1473.   struct zserv *client;
  1474.   for (node = listhead (client_list); node; nextnode (node))
  1475.     {
  1476.       client = getdata (node);
  1477.       vty_out (vty, "Client fd %d%s", client->sock, VTY_NEWLINE);
  1478.     }
  1479.   return CMD_SUCCESS;
  1480. }
  1481. /* Table configuration write function. */
  1482. int
  1483. config_write_table (struct vty *vty)
  1484. {
  1485.   if (rtm_table_default)
  1486.     vty_out (vty, "table %d%s", rtm_table_default,
  1487.      VTY_NEWLINE);
  1488.   return 0;
  1489. }
  1490. /* table node for routing tables. */
  1491. struct cmd_node table_node =
  1492. {
  1493.   TABLE_NODE,
  1494.   "", /* This node has no interface. */
  1495.   1
  1496. };
  1497. /* Only display ip forwarding is enabled or not. */
  1498. DEFUN (show_ip_forwarding,
  1499.        show_ip_forwarding_cmd,
  1500.        "show ip forwarding",
  1501.        SHOW_STR
  1502.        IP_STR
  1503.        "IP forwarding statusn")
  1504. {
  1505.   int ret;
  1506.   ret = ipforward ();
  1507.   if (ret == 0)
  1508.     vty_out (vty, "IP forwarding is off%s", VTY_NEWLINE);
  1509.   else
  1510.     vty_out (vty, "IP forwarding is on%s", VTY_NEWLINE);
  1511.   return CMD_SUCCESS;
  1512. }
  1513. #ifdef HAVE_IPV6
  1514. /* Only display ipv6 forwarding is enabled or not. */
  1515. DEFUN (show_ipv6_forwarding,
  1516.        show_ipv6_forwarding_cmd,
  1517.        "show ipv6 forwarding",
  1518.        SHOW_STR
  1519.        "IPv6 informationn"
  1520.        "Forwarding statusn")
  1521. {
  1522.   int ret;
  1523.   ret = ipforward_ipv6 ();
  1524.   switch (ret)
  1525.     {
  1526.     case -1:
  1527.       vty_out (vty, "ipv6 forwarding is unknown%s", VTY_NEWLINE);
  1528.       break;
  1529.     case 0:
  1530.       vty_out (vty, "ipv6 forwarding is %s%s", "off", VTY_NEWLINE);
  1531.       break;
  1532.     case 1:
  1533.       vty_out (vty, "ipv6 forwarding is %s%s", "on", VTY_NEWLINE);
  1534.       break;
  1535.     default:
  1536.       vty_out (vty, "ipv6 forwarding is %s%s", "off", VTY_NEWLINE);
  1537.       break;
  1538.     }
  1539.   return CMD_SUCCESS;
  1540. }
  1541. DEFUN (no_ipv6_forwarding,
  1542.        no_ipv6_forwarding_cmd,
  1543.        "no ipv6 forwarding",
  1544.        NO_STR
  1545.        IP_STR
  1546.        "Doesn't forward IPv6 protocol packet")
  1547. {
  1548.   int ret;
  1549.   ret = ipforward_ipv6_off ();
  1550.   if (ret != 0)
  1551.     {
  1552.       vty_out (vty, "Can't turn off IPv6 forwarding%s", VTY_NEWLINE);
  1553.       return CMD_WARNING;
  1554.     }
  1555.   return CMD_SUCCESS;
  1556. }
  1557. #endif /* HAVE_IPV6 */
  1558. /* IPForwarding configuration write function. */
  1559. int
  1560. config_write_forwarding (struct vty *vty)
  1561. {
  1562.   if (! ipforward ())
  1563.     vty_out (vty, "no ip forwarding%s", VTY_NEWLINE);
  1564. #ifdef HAVE_IPV6
  1565.   if (! ipforward_ipv6 ())
  1566.     vty_out (vty, "no ipv6 forwarding%s", VTY_NEWLINE);
  1567. #endif /* HAVE_IPV6 */
  1568.   vty_out (vty, "!%s", VTY_NEWLINE);
  1569.   return 0;
  1570. }
  1571. /* table node for routing tables. */
  1572. struct cmd_node forwarding_node =
  1573. {
  1574.   FORWARDING_NODE,
  1575.   "", /* This node has no interface. */
  1576.   1
  1577. };
  1578. /* Initialisation of zebra and installation of commands. */
  1579. void
  1580. zebra_init ()
  1581. {
  1582.   /* Client list init. */
  1583.   client_list = list_new ();
  1584.   /* Forwarding is on by default. */
  1585.   ipforward_on ();
  1586. #ifdef HAVE_IPV6
  1587.   ipforward_ipv6_on ();
  1588. #endif /* HAVE_IPV6 */
  1589.   /* Make zebra server socket. */
  1590. #ifdef HAVE_TCP_ZEBRA
  1591.   zebra_serv ();
  1592. #else
  1593.   zebra_serv_un (ZEBRA_SERV_PATH);
  1594. #endif /* HAVE_TCP_ZEBRA */
  1595.   /* Install configuration write function. */
  1596.   install_node (&table_node, config_write_table);
  1597.   install_node (&forwarding_node, config_write_forwarding);
  1598.   install_element (VIEW_NODE, &show_ip_forwarding_cmd);
  1599.   install_element (ENABLE_NODE, &show_ip_forwarding_cmd);
  1600.   install_element (CONFIG_NODE, &no_ip_forwarding_cmd);
  1601.   install_element (ENABLE_NODE, &show_zebra_client_cmd);
  1602. #ifdef HAVE_NETLINK
  1603.   install_element (VIEW_NODE, &show_table_cmd);
  1604.   install_element (ENABLE_NODE, &show_table_cmd);
  1605.   install_element (CONFIG_NODE, &config_table_cmd);
  1606. #endif /* HAVE_NETLINK */
  1607. #ifdef HAVE_IPV6
  1608.   install_element (VIEW_NODE, &show_ipv6_forwarding_cmd);
  1609.   install_element (ENABLE_NODE, &show_ipv6_forwarding_cmd);
  1610.   install_element (CONFIG_NODE, &no_ipv6_forwarding_cmd);
  1611. #endif /* HAVE_IPV6 */
  1612.   FIFO_INIT(&message_queue);
  1613.   t_write = NULL;
  1614. }