]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zserv.c
2005-04-10 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
[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 size_t already;
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 ((already = stream_get_endp(client->ibuf)) < ZEBRA_HEADER_SIZE)
1184 {
1185 ssize_t nbyte;
1186 if (((nbyte = stream_read_try (client->ibuf, sock,
1187 ZEBRA_HEADER_SIZE-already)) == 0) ||
1188 (nbyte == -1))
1189 {
1190 if (IS_ZEBRA_DEBUG_EVENT)
1191 zlog_debug ("connection closed socket [%d]", sock);
1192 zebra_client_close (client);
1193 return -1;
1194 }
1195 if (nbyte != (ssize_t)(ZEBRA_HEADER_SIZE-already))
1196 {
1197 /* Try again later. */
1198 zebra_event (ZEBRA_READ, sock, client);
1199 return 0;
1200 }
1201 already = ZEBRA_HEADER_SIZE;
1202 }
1203
1204 /* Reset to read from the beginning of the incoming packet. */
1205 stream_set_getp(client->ibuf, 0);
1206
1207 length = stream_getw (client->ibuf);
1208 command = stream_getc (client->ibuf);
1209
1210 if (length < ZEBRA_HEADER_SIZE)
1211 {
1212 zlog_warn("%s: socket %d message length %u is less than header size %d",
1213 __func__, sock, length, ZEBRA_HEADER_SIZE);
1214 zebra_client_close (client);
1215 return -1;
1216 }
1217 if (length > STREAM_SIZE(client->ibuf))
1218 {
1219 zlog_warn("%s: socket %d message length %u exceeds buffer size %lu",
1220 __func__, sock, length, (u_long)STREAM_SIZE(client->ibuf));
1221 zebra_client_close (client);
1222 return -1;
1223 }
1224
1225 /* Read rest of data. */
1226 if (already < length)
1227 {
1228 ssize_t nbyte;
1229 if (((nbyte = stream_read_try (client->ibuf, sock,
1230 length-already)) == 0) ||
1231 (nbyte == -1))
1232 {
1233 if (IS_ZEBRA_DEBUG_EVENT)
1234 zlog_debug ("connection closed [%d] when reading zebra data", sock);
1235 zebra_client_close (client);
1236 return -1;
1237 }
1238 if (nbyte != (ssize_t)(length-already))
1239 {
1240 /* Try again later. */
1241 zebra_event (ZEBRA_READ, sock, client);
1242 return 0;
1243 }
1244 }
1245
1246 length -= ZEBRA_HEADER_SIZE;
1247
1248 /* Debug packet information. */
1249 if (IS_ZEBRA_DEBUG_EVENT)
1250 zlog_debug ("zebra message comes from socket [%d]", sock);
1251
1252 if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
1253 zlog_debug ("zebra message received [%s] %d",
1254 zebra_command_str[command], length);
1255
1256 switch (command)
1257 {
1258 case ZEBRA_ROUTER_ID_ADD:
1259 zread_router_id_add (client, length);
1260 break;
1261 case ZEBRA_ROUTER_ID_DELETE:
1262 zread_router_id_delete (client, length);
1263 break;
1264 case ZEBRA_INTERFACE_ADD:
1265 zread_interface_add (client, length);
1266 break;
1267 case ZEBRA_INTERFACE_DELETE:
1268 zread_interface_delete (client, length);
1269 break;
1270 case ZEBRA_IPV4_ROUTE_ADD:
1271 zread_ipv4_add (client, length);
1272 break;
1273 case ZEBRA_IPV4_ROUTE_DELETE:
1274 zread_ipv4_delete (client, length);
1275 break;
1276 #ifdef HAVE_IPV6
1277 case ZEBRA_IPV6_ROUTE_ADD:
1278 zread_ipv6_add (client, length);
1279 break;
1280 case ZEBRA_IPV6_ROUTE_DELETE:
1281 zread_ipv6_delete (client, length);
1282 break;
1283 #endif /* HAVE_IPV6 */
1284 case ZEBRA_REDISTRIBUTE_ADD:
1285 zebra_redistribute_add (command, client, length);
1286 break;
1287 case ZEBRA_REDISTRIBUTE_DELETE:
1288 zebra_redistribute_delete (command, client, length);
1289 break;
1290 case ZEBRA_REDISTRIBUTE_DEFAULT_ADD:
1291 zebra_redistribute_default_add (command, client, length);
1292 break;
1293 case ZEBRA_REDISTRIBUTE_DEFAULT_DELETE:
1294 zebra_redistribute_default_delete (command, client, length);
1295 break;
1296 case ZEBRA_IPV4_NEXTHOP_LOOKUP:
1297 zread_ipv4_nexthop_lookup (client, length);
1298 break;
1299 #ifdef HAVE_IPV6
1300 case ZEBRA_IPV6_NEXTHOP_LOOKUP:
1301 zread_ipv6_nexthop_lookup (client, length);
1302 break;
1303 #endif /* HAVE_IPV6 */
1304 case ZEBRA_IPV4_IMPORT_LOOKUP:
1305 zread_ipv4_import_lookup (client, length);
1306 break;
1307 default:
1308 zlog_info ("Zebra received unknown command %d", command);
1309 break;
1310 }
1311
1312 if (client->t_suicide)
1313 {
1314 /* No need to wait for thread callback, just kill immediately. */
1315 zebra_client_close(client);
1316 return -1;
1317 }
1318
1319 stream_reset (client->ibuf);
1320 zebra_event (ZEBRA_READ, sock, client);
1321 return 0;
1322 }
1323
1324
1325 /* Accept code of zebra server socket. */
1326 static int
1327 zebra_accept (struct thread *thread)
1328 {
1329 int accept_sock;
1330 int client_sock;
1331 struct sockaddr_in client;
1332 socklen_t len;
1333
1334 accept_sock = THREAD_FD (thread);
1335
1336 /* Reregister myself. */
1337 zebra_event (ZEBRA_SERV, accept_sock, NULL);
1338
1339 len = sizeof (struct sockaddr_in);
1340 client_sock = accept (accept_sock, (struct sockaddr *) &client, &len);
1341
1342 if (client_sock < 0)
1343 {
1344 zlog_warn ("Can't accept zebra socket: %s", safe_strerror (errno));
1345 return -1;
1346 }
1347
1348 /* Make client socket non-blocking. */
1349 set_nonblocking(client_sock);
1350
1351 /* Create new zebra client. */
1352 zebra_client_create (client_sock);
1353
1354 return 0;
1355 }
1356
1357 #ifdef HAVE_TCP_ZEBRA
1358 /* Make zebra's server socket. */
1359 static void
1360 zebra_serv ()
1361 {
1362 int ret;
1363 int accept_sock;
1364 struct sockaddr_in addr;
1365
1366 accept_sock = socket (AF_INET, SOCK_STREAM, 0);
1367
1368 if (accept_sock < 0)
1369 {
1370 zlog_warn ("Can't create zserv stream socket: %s",
1371 safe_strerror (errno));
1372 zlog_warn ("zebra can't provice full functionality due to above error");
1373 return;
1374 }
1375
1376 memset (&addr, 0, sizeof (struct sockaddr_in));
1377 addr.sin_family = AF_INET;
1378 addr.sin_port = htons (ZEBRA_PORT);
1379 #ifdef HAVE_SIN_LEN
1380 addr.sin_len = sizeof (struct sockaddr_in);
1381 #endif /* HAVE_SIN_LEN */
1382 addr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
1383
1384 sockopt_reuseaddr (accept_sock);
1385 sockopt_reuseport (accept_sock);
1386
1387 if ( zserv_privs.change(ZPRIVS_RAISE) )
1388 zlog (NULL, LOG_ERR, "Can't raise privileges");
1389
1390 ret = bind (accept_sock, (struct sockaddr *)&addr,
1391 sizeof (struct sockaddr_in));
1392 if (ret < 0)
1393 {
1394 zlog_warn ("Can't bind to stream socket: %s",
1395 safe_strerror (errno));
1396 zlog_warn ("zebra can't provice full functionality due to above error");
1397 close (accept_sock); /* Avoid sd leak. */
1398 return;
1399 }
1400
1401 if ( zserv_privs.change(ZPRIVS_LOWER) )
1402 zlog (NULL, LOG_ERR, "Can't lower privileges");
1403
1404 ret = listen (accept_sock, 1);
1405 if (ret < 0)
1406 {
1407 zlog_warn ("Can't listen to stream socket: %s",
1408 safe_strerror (errno));
1409 zlog_warn ("zebra can't provice full functionality due to above error");
1410 close (accept_sock); /* Avoid sd leak. */
1411 return;
1412 }
1413
1414 zebra_event (ZEBRA_SERV, accept_sock, NULL);
1415 }
1416 #endif /* HAVE_TCP_ZEBRA */
1417
1418 /* For sockaddr_un. */
1419 #include <sys/un.h>
1420
1421 /* zebra server UNIX domain socket. */
1422 static void
1423 zebra_serv_un (const char *path)
1424 {
1425 int ret;
1426 int sock, len;
1427 struct sockaddr_un serv;
1428 mode_t old_mask;
1429
1430 /* First of all, unlink existing socket */
1431 unlink (path);
1432
1433 /* Set umask */
1434 old_mask = umask (0077);
1435
1436 /* Make UNIX domain socket. */
1437 sock = socket (AF_UNIX, SOCK_STREAM, 0);
1438 if (sock < 0)
1439 {
1440 zlog_warn ("Can't create zserv unix socket: %s",
1441 safe_strerror (errno));
1442 zlog_warn ("zebra can't provide full functionality due to above error");
1443 return;
1444 }
1445
1446 /* Make server socket. */
1447 memset (&serv, 0, sizeof (struct sockaddr_un));
1448 serv.sun_family = AF_UNIX;
1449 strncpy (serv.sun_path, path, strlen (path));
1450 #ifdef HAVE_SUN_LEN
1451 len = serv.sun_len = SUN_LEN(&serv);
1452 #else
1453 len = sizeof (serv.sun_family) + strlen (serv.sun_path);
1454 #endif /* HAVE_SUN_LEN */
1455
1456 ret = bind (sock, (struct sockaddr *) &serv, len);
1457 if (ret < 0)
1458 {
1459 zlog_warn ("Can't bind 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 ret = listen (sock, 5);
1467 if (ret < 0)
1468 {
1469 zlog_warn ("Can't listen to unix socket %s: %s",
1470 path, safe_strerror (errno));
1471 zlog_warn ("zebra can't provide full functionality due to above error");
1472 close (sock);
1473 return;
1474 }
1475
1476 umask (old_mask);
1477
1478 zebra_event (ZEBRA_SERV, sock, NULL);
1479 }
1480 \f
1481
1482 static void
1483 zebra_event (enum event event, int sock, struct zserv *client)
1484 {
1485 switch (event)
1486 {
1487 case ZEBRA_SERV:
1488 thread_add_read (zebrad.master, zebra_accept, client, sock);
1489 break;
1490 case ZEBRA_READ:
1491 client->t_read =
1492 thread_add_read (zebrad.master, zebra_client_read, client, sock);
1493 break;
1494 case ZEBRA_WRITE:
1495 /**/
1496 break;
1497 }
1498 }
1499 \f
1500 /* Display default rtm_table for all clients. */
1501 DEFUN (show_table,
1502 show_table_cmd,
1503 "show table",
1504 SHOW_STR
1505 "default routing table to use for all clients\n")
1506 {
1507 vty_out (vty, "table %d%s", zebrad.rtm_table_default,
1508 VTY_NEWLINE);
1509 return CMD_SUCCESS;
1510 }
1511
1512 DEFUN (config_table,
1513 config_table_cmd,
1514 "table TABLENO",
1515 "Configure target kernel routing table\n"
1516 "TABLE integer\n")
1517 {
1518 zebrad.rtm_table_default = strtol (argv[0], (char**)0, 10);
1519 return CMD_SUCCESS;
1520 }
1521
1522 DEFUN (ip_forwarding,
1523 ip_forwarding_cmd,
1524 "ip forwarding",
1525 IP_STR
1526 "Turn on IP forwarding")
1527 {
1528 int ret;
1529
1530 ret = ipforward ();
1531 if (ret == 0)
1532 ret = ipforward_on ();
1533
1534 if (ret == 0)
1535 {
1536 vty_out (vty, "Can't turn on IP forwarding%s", VTY_NEWLINE);
1537 return CMD_WARNING;
1538 }
1539
1540 return CMD_SUCCESS;
1541 }
1542
1543 DEFUN (no_ip_forwarding,
1544 no_ip_forwarding_cmd,
1545 "no ip forwarding",
1546 NO_STR
1547 IP_STR
1548 "Turn off IP forwarding")
1549 {
1550 int ret;
1551
1552 ret = ipforward ();
1553 if (ret != 0)
1554 ret = ipforward_off ();
1555
1556 if (ret != 0)
1557 {
1558 vty_out (vty, "Can't turn off IP forwarding%s", VTY_NEWLINE);
1559 return CMD_WARNING;
1560 }
1561
1562 return CMD_SUCCESS;
1563 }
1564
1565 /* This command is for debugging purpose. */
1566 DEFUN (show_zebra_client,
1567 show_zebra_client_cmd,
1568 "show zebra client",
1569 SHOW_STR
1570 "Zebra information"
1571 "Client information")
1572 {
1573 struct listnode *node;
1574 struct zserv *client;
1575
1576 for (ALL_LIST_ELEMENTS_RO (zebrad.client_list, node, client))
1577 vty_out (vty, "Client fd %d%s", client->sock, VTY_NEWLINE);
1578
1579 return CMD_SUCCESS;
1580 }
1581
1582 /* Table configuration write function. */
1583 static int
1584 config_write_table (struct vty *vty)
1585 {
1586 if (zebrad.rtm_table_default)
1587 vty_out (vty, "table %d%s", zebrad.rtm_table_default,
1588 VTY_NEWLINE);
1589 return 0;
1590 }
1591
1592 /* table node for routing tables. */
1593 struct cmd_node table_node =
1594 {
1595 TABLE_NODE,
1596 "", /* This node has no interface. */
1597 1
1598 };
1599 \f
1600 /* Only display ip forwarding is enabled or not. */
1601 DEFUN (show_ip_forwarding,
1602 show_ip_forwarding_cmd,
1603 "show ip forwarding",
1604 SHOW_STR
1605 IP_STR
1606 "IP forwarding status\n")
1607 {
1608 int ret;
1609
1610 ret = ipforward ();
1611
1612 if (ret == 0)
1613 vty_out (vty, "IP forwarding is off%s", VTY_NEWLINE);
1614 else
1615 vty_out (vty, "IP forwarding is on%s", VTY_NEWLINE);
1616 return CMD_SUCCESS;
1617 }
1618
1619 #ifdef HAVE_IPV6
1620 /* Only display ipv6 forwarding is enabled or not. */
1621 DEFUN (show_ipv6_forwarding,
1622 show_ipv6_forwarding_cmd,
1623 "show ipv6 forwarding",
1624 SHOW_STR
1625 "IPv6 information\n"
1626 "Forwarding status\n")
1627 {
1628 int ret;
1629
1630 ret = ipforward_ipv6 ();
1631
1632 switch (ret)
1633 {
1634 case -1:
1635 vty_out (vty, "ipv6 forwarding is unknown%s", VTY_NEWLINE);
1636 break;
1637 case 0:
1638 vty_out (vty, "ipv6 forwarding is %s%s", "off", VTY_NEWLINE);
1639 break;
1640 case 1:
1641 vty_out (vty, "ipv6 forwarding is %s%s", "on", VTY_NEWLINE);
1642 break;
1643 default:
1644 vty_out (vty, "ipv6 forwarding is %s%s", "off", VTY_NEWLINE);
1645 break;
1646 }
1647 return CMD_SUCCESS;
1648 }
1649
1650 DEFUN (ipv6_forwarding,
1651 ipv6_forwarding_cmd,
1652 "ipv6 forwarding",
1653 IPV6_STR
1654 "Turn on IPv6 forwarding")
1655 {
1656 int ret;
1657
1658 ret = ipforward_ipv6 ();
1659 if (ret == 0)
1660 ret = ipforward_ipv6_on ();
1661
1662 if (ret == 0)
1663 {
1664 vty_out (vty, "Can't turn on IPv6 forwarding%s", VTY_NEWLINE);
1665 return CMD_WARNING;
1666 }
1667
1668 return CMD_SUCCESS;
1669 }
1670
1671 DEFUN (no_ipv6_forwarding,
1672 no_ipv6_forwarding_cmd,
1673 "no ipv6 forwarding",
1674 NO_STR
1675 IPV6_STR
1676 "Turn off IPv6 forwarding")
1677 {
1678 int ret;
1679
1680 ret = ipforward_ipv6 ();
1681 if (ret != 0)
1682 ret = ipforward_ipv6_off ();
1683
1684 if (ret != 0)
1685 {
1686 vty_out (vty, "Can't turn off IPv6 forwarding%s", VTY_NEWLINE);
1687 return CMD_WARNING;
1688 }
1689
1690 return CMD_SUCCESS;
1691 }
1692
1693 #endif /* HAVE_IPV6 */
1694
1695 /* IPForwarding configuration write function. */
1696 static int
1697 config_write_forwarding (struct vty *vty)
1698 {
1699 /* FIXME: Find better place for that. */
1700 router_id_write (vty);
1701
1702 if (ipforward ())
1703 vty_out (vty, "ip forwarding%s", VTY_NEWLINE);
1704 #ifdef HAVE_IPV6
1705 if (ipforward_ipv6 ())
1706 vty_out (vty, "ipv6 forwarding%s", VTY_NEWLINE);
1707 #endif /* HAVE_IPV6 */
1708 vty_out (vty, "!%s", VTY_NEWLINE);
1709 return 0;
1710 }
1711
1712 /* table node for routing tables. */
1713 struct cmd_node forwarding_node =
1714 {
1715 FORWARDING_NODE,
1716 "", /* This node has no interface. */
1717 1
1718 };
1719
1720 \f
1721 /* Initialisation of zebra and installation of commands. */
1722 void
1723 zebra_init ()
1724 {
1725 /* Client list init. */
1726 zebrad.client_list = list_new ();
1727
1728 /* Make zebra server socket. */
1729 #ifdef HAVE_TCP_ZEBRA
1730 zebra_serv ();
1731 #else
1732 zebra_serv_un (ZEBRA_SERV_PATH);
1733 #endif /* HAVE_TCP_ZEBRA */
1734
1735 /* Install configuration write function. */
1736 install_node (&table_node, config_write_table);
1737 install_node (&forwarding_node, config_write_forwarding);
1738
1739 install_element (VIEW_NODE, &show_ip_forwarding_cmd);
1740 install_element (ENABLE_NODE, &show_ip_forwarding_cmd);
1741 install_element (CONFIG_NODE, &ip_forwarding_cmd);
1742 install_element (CONFIG_NODE, &no_ip_forwarding_cmd);
1743 install_element (ENABLE_NODE, &show_zebra_client_cmd);
1744
1745 #ifdef HAVE_NETLINK
1746 install_element (VIEW_NODE, &show_table_cmd);
1747 install_element (ENABLE_NODE, &show_table_cmd);
1748 install_element (CONFIG_NODE, &config_table_cmd);
1749 #endif /* HAVE_NETLINK */
1750
1751 #ifdef HAVE_IPV6
1752 install_element (VIEW_NODE, &show_ipv6_forwarding_cmd);
1753 install_element (ENABLE_NODE, &show_ipv6_forwarding_cmd);
1754 install_element (CONFIG_NODE, &ipv6_forwarding_cmd);
1755 install_element (CONFIG_NODE, &no_ipv6_forwarding_cmd);
1756 #endif /* HAVE_IPV6 */
1757 }