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