]> git.proxmox.com Git - mirror_frr.git/blob - lib/zclient.c
lib, bgpd: Remove UNDEFINED_NODE
[mirror_frr.git] / lib / zclient.c
1 /* Zebra's client library.
2 * Copyright (C) 1999 Kunihiro Ishiguro
3 * Copyright (C) 2005 Andrew J. Schorr
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20 * MA 02111-1307, USA.
21 */
22
23 #include <zebra.h>
24
25 #include "prefix.h"
26 #include "stream.h"
27 #include "buffer.h"
28 #include "network.h"
29 #include "if.h"
30 #include "log.h"
31 #include "thread.h"
32 #include "zclient.h"
33 #include "memory.h"
34 #include "table.h"
35 #include "nexthop.h"
36 #include "mpls.h"
37
38 DEFINE_MTYPE_STATIC(LIB, ZCLIENT, "Zclient")
39 DEFINE_MTYPE_STATIC(LIB, REDIST_INST, "Redistribution instance IDs")
40
41 /* Zebra client events. */
42 enum event {ZCLIENT_SCHEDULE, ZCLIENT_READ, ZCLIENT_CONNECT};
43
44 /* Prototype for event manager. */
45 static void zclient_event (enum event, struct zclient *);
46
47 const char *zclient_serv_path = NULL;
48
49 /* This file local debug flag. */
50 int zclient_debug = 0;
51
52 /* Allocate zclient structure. */
53 struct zclient *
54 zclient_new (struct thread_master *master)
55 {
56 struct zclient *zclient;
57 zclient = XCALLOC (MTYPE_ZCLIENT, sizeof (struct zclient));
58
59 zclient->ibuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
60 zclient->obuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
61 zclient->wb = buffer_new(0);
62 zclient->master = master;
63
64 return zclient;
65 }
66
67 /* This function is only called when exiting, because
68 many parts of the code do not check for I/O errors, so they could
69 reference an invalid pointer if the structure was ever freed.
70
71 Free zclient structure. */
72 void
73 zclient_free (struct zclient *zclient)
74 {
75 if (zclient->ibuf)
76 stream_free(zclient->ibuf);
77 if (zclient->obuf)
78 stream_free(zclient->obuf);
79 if (zclient->wb)
80 buffer_free(zclient->wb);
81
82 XFREE (MTYPE_ZCLIENT, zclient);
83 }
84
85 u_short *
86 redist_check_instance (struct redist_proto *red, u_short instance)
87 {
88 struct listnode *node;
89 u_short *id;
90
91 if (!red->instances)
92 return NULL;
93
94 for (ALL_LIST_ELEMENTS_RO (red->instances, node, id))
95 if (*id == instance)
96 return id;
97
98 return NULL;
99 }
100
101 void
102 redist_add_instance (struct redist_proto *red, u_short instance)
103 {
104 u_short *in;
105
106 red->enabled = 1;
107
108 if (!red->instances)
109 red->instances = list_new();
110
111 in = XMALLOC (MTYPE_REDIST_INST, sizeof(u_short));
112 *in = instance;
113 listnode_add (red->instances, in);
114 }
115
116 void
117 redist_del_instance (struct redist_proto *red, u_short instance)
118 {
119 u_short *id;
120
121 id = redist_check_instance (red, instance);
122 if (! id)
123 return;
124
125 listnode_delete(red->instances, id);
126 XFREE (MTYPE_REDIST_INST, id);
127 if (!red->instances->count)
128 {
129 red->enabled = 0;
130 list_free(red->instances);
131 red->instances = NULL;
132 }
133 }
134
135 /* Stop zebra client services. */
136 void
137 zclient_stop (struct zclient *zclient)
138 {
139 afi_t afi;
140 int i;
141
142 if (zclient_debug)
143 zlog_debug ("zclient stopped");
144
145 /* Stop threads. */
146 THREAD_OFF(zclient->t_read);
147 THREAD_OFF(zclient->t_connect);
148 THREAD_OFF(zclient->t_write);
149
150 /* Reset streams. */
151 stream_reset(zclient->ibuf);
152 stream_reset(zclient->obuf);
153
154 /* Empty the write buffer. */
155 buffer_reset(zclient->wb);
156
157 /* Close socket. */
158 if (zclient->sock >= 0)
159 {
160 close (zclient->sock);
161 zclient->sock = -1;
162 }
163 zclient->fail = 0;
164
165 for (afi = AFI_IP; afi < AFI_MAX; afi++)
166 {
167 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
168 {
169 vrf_bitmap_free(zclient->redist[afi][i]);
170 zclient->redist[afi][i] = VRF_BITMAP_NULL;
171 }
172 redist_del_instance(&zclient->mi_redist[afi][zclient->redist_default],
173 zclient->instance);
174 }
175
176 vrf_bitmap_free(zclient->default_information);
177 zclient->default_information = VRF_BITMAP_NULL;
178 }
179
180 void
181 zclient_reset (struct zclient *zclient)
182 {
183 afi_t afi;
184
185 zclient_stop (zclient);
186
187 for (afi = AFI_IP; afi < AFI_MAX; afi++)
188 redist_del_instance (&zclient->mi_redist[afi][zclient->redist_default], zclient->instance);
189
190 zclient_init (zclient, zclient->redist_default, zclient->instance);
191 }
192
193 #ifdef HAVE_TCP_ZEBRA
194
195 /* Make socket to zebra daemon. Return zebra socket. */
196 static int
197 zclient_socket(void)
198 {
199 int sock;
200 int ret;
201 struct sockaddr_in serv;
202
203 /* We should think about IPv6 connection. */
204 sock = socket (AF_INET, SOCK_STREAM, 0);
205 if (sock < 0)
206 return -1;
207
208 /* Make server socket. */
209 memset (&serv, 0, sizeof (struct sockaddr_in));
210 serv.sin_family = AF_INET;
211 serv.sin_port = htons (ZEBRA_PORT);
212 #ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
213 serv.sin_len = sizeof (struct sockaddr_in);
214 #endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
215 serv.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
216
217 /* Connect to zebra. */
218 ret = connect (sock, (struct sockaddr *) &serv, sizeof (serv));
219 if (ret < 0)
220 {
221 if (zclient_debug)
222 zlog_warn ("%s connect failure: %d(%s)", __PRETTY_FUNCTION__,
223 errno, safe_strerror (errno));
224 close (sock);
225 return -1;
226 }
227 return sock;
228 }
229
230 #else
231
232 /* For sockaddr_un. */
233 #include <sys/un.h>
234
235 static int
236 zclient_socket_un (const char *path)
237 {
238 int ret;
239 int sock, len;
240 struct sockaddr_un addr;
241
242 sock = socket (AF_UNIX, SOCK_STREAM, 0);
243 if (sock < 0)
244 return -1;
245
246 /* Make server socket. */
247 memset (&addr, 0, sizeof (struct sockaddr_un));
248 addr.sun_family = AF_UNIX;
249 strncpy (addr.sun_path, path, strlen (path));
250 #ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
251 len = addr.sun_len = SUN_LEN(&addr);
252 #else
253 len = sizeof (addr.sun_family) + strlen (addr.sun_path);
254 #endif /* HAVE_STRUCT_SOCKADDR_UN_SUN_LEN */
255
256 ret = connect (sock, (struct sockaddr *) &addr, len);
257 if (ret < 0)
258 {
259 if (zclient_debug)
260 zlog_warn ("%s connect failure: %d(%s)", __PRETTY_FUNCTION__,
261 errno, safe_strerror (errno));
262 close (sock);
263 return -1;
264 }
265 return sock;
266 }
267
268 #endif /* HAVE_TCP_ZEBRA */
269
270 /**
271 * Connect to zebra daemon.
272 * @param zclient a pointer to zclient structure
273 * @return socket fd just to make sure that connection established
274 * @see zclient_init
275 * @see zclient_new
276 */
277 int
278 zclient_socket_connect (struct zclient *zclient)
279 {
280 #ifdef HAVE_TCP_ZEBRA
281 zclient->sock = zclient_socket ();
282 #else
283 zclient->sock = zclient_socket_un (zclient_serv_path_get());
284 #endif
285 return zclient->sock;
286 }
287
288 static int
289 zclient_failed(struct zclient *zclient)
290 {
291 zclient->fail++;
292 zclient_stop(zclient);
293 zclient_event(ZCLIENT_CONNECT, zclient);
294 return -1;
295 }
296
297 static int
298 zclient_flush_data(struct thread *thread)
299 {
300 struct zclient *zclient = THREAD_ARG(thread);
301
302 zclient->t_write = NULL;
303 if (zclient->sock < 0)
304 return -1;
305 switch (buffer_flush_available(zclient->wb, zclient->sock))
306 {
307 case BUFFER_ERROR:
308 zlog_warn("%s: buffer_flush_available failed on zclient fd %d, closing",
309 __func__, zclient->sock);
310 return zclient_failed(zclient);
311 break;
312 case BUFFER_PENDING:
313 zclient->t_write = thread_add_write(zclient->master, zclient_flush_data,
314 zclient, zclient->sock);
315 break;
316 case BUFFER_EMPTY:
317 break;
318 }
319 return 0;
320 }
321
322 int
323 zclient_send_message(struct zclient *zclient)
324 {
325 if (zclient->sock < 0)
326 return -1;
327 switch (buffer_write(zclient->wb, zclient->sock, STREAM_DATA(zclient->obuf),
328 stream_get_endp(zclient->obuf)))
329 {
330 case BUFFER_ERROR:
331 zlog_warn("%s: buffer_write failed to zclient fd %d, closing",
332 __func__, zclient->sock);
333 return zclient_failed(zclient);
334 break;
335 case BUFFER_EMPTY:
336 THREAD_OFF(zclient->t_write);
337 break;
338 case BUFFER_PENDING:
339 THREAD_WRITE_ON(zclient->master, zclient->t_write,
340 zclient_flush_data, zclient, zclient->sock);
341 break;
342 }
343 return 0;
344 }
345
346 void
347 zclient_create_header (struct stream *s, uint16_t command, vrf_id_t vrf_id)
348 {
349 /* length placeholder, caller can update */
350 stream_putw (s, ZEBRA_HEADER_SIZE);
351 stream_putc (s, ZEBRA_HEADER_MARKER);
352 stream_putc (s, ZSERV_VERSION);
353 stream_putw (s, vrf_id);
354 stream_putw (s, command);
355 }
356
357 int
358 zclient_read_header (struct stream *s, int sock, u_int16_t *size, u_char *marker,
359 u_char *version, vrf_id_t *vrf_id, u_int16_t *cmd)
360 {
361 if (stream_read (s, sock, ZEBRA_HEADER_SIZE) != ZEBRA_HEADER_SIZE)
362 return -1;
363
364 *size = stream_getw (s) - ZEBRA_HEADER_SIZE;
365 *marker = stream_getc (s);
366 *version = stream_getc (s);
367 *vrf_id = stream_getw (s);
368 *cmd = stream_getw (s);
369
370 if (*version != ZSERV_VERSION || *marker != ZEBRA_HEADER_MARKER)
371 {
372 zlog_err("%s: socket %d version mismatch, marker %d, version %d",
373 __func__, sock, *marker, *version);
374 return -1;
375 }
376
377 if (*size && stream_read (s, sock, *size) != *size)
378 return -1;
379
380 return 0;
381 }
382
383 /* Send simple Zebra message. */
384 static int
385 zebra_message_send (struct zclient *zclient, int command, vrf_id_t vrf_id)
386 {
387 struct stream *s;
388
389 /* Get zclient output buffer. */
390 s = zclient->obuf;
391 stream_reset (s);
392
393 /* Send very simple command only Zebra message. */
394 zclient_create_header (s, command, vrf_id);
395
396 return zclient_send_message(zclient);
397 }
398
399 static int
400 zebra_hello_send (struct zclient *zclient)
401 {
402 struct stream *s;
403
404 if (zclient->redist_default)
405 {
406 s = zclient->obuf;
407 stream_reset (s);
408
409 /* The VRF ID in the HELLO message is always 0. */
410 zclient_create_header (s, ZEBRA_HELLO, VRF_DEFAULT);
411 stream_putc (s, zclient->redist_default);
412 stream_putw (s, zclient->instance);
413 stream_putw_at (s, 0, stream_get_endp (s));
414 return zclient_send_message(zclient);
415 }
416
417 return 0;
418 }
419
420 /* Send register requests to zebra daemon for the information in a VRF. */
421 void
422 zclient_send_reg_requests (struct zclient *zclient, vrf_id_t vrf_id)
423 {
424 int i;
425 afi_t afi;
426
427 /* zclient is disabled. */
428 if (! zclient->enable)
429 return;
430
431 /* If not connected to the zebra yet. */
432 if (zclient->sock < 0)
433 return;
434
435 if (zclient_debug)
436 zlog_debug ("%s: send register messages for VRF %u", __func__, vrf_id);
437
438 /* We need router-id information. */
439 zebra_message_send (zclient, ZEBRA_ROUTER_ID_ADD, vrf_id);
440
441 /* We need interface information. */
442 zebra_message_send (zclient, ZEBRA_INTERFACE_ADD, vrf_id);
443
444 /* Set unwanted redistribute route. */
445 for (afi = AFI_IP; afi < AFI_MAX; afi++)
446 vrf_bitmap_set (zclient->redist[afi][zclient->redist_default], vrf_id);
447
448 /* Flush all redistribute request. */
449 if (vrf_id == VRF_DEFAULT)
450 for (afi = AFI_IP; afi < AFI_MAX; afi++)
451 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
452 if (zclient->mi_redist[afi][i].enabled)
453 {
454 struct listnode *node;
455 u_short *id;
456
457 for (ALL_LIST_ELEMENTS_RO(zclient->mi_redist[afi][i].instances, node, id))
458 if (!(i == zclient->redist_default && *id == zclient->instance))
459 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient, afi, i,
460 *id, VRF_DEFAULT);
461 }
462
463 /* Flush all redistribute request. */
464 for (afi = AFI_IP; afi < AFI_MAX; afi++)
465 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
466 if (i != zclient->redist_default &&
467 vrf_bitmap_check (zclient->redist[afi][i], vrf_id))
468 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient, afi, i, 0, vrf_id);
469
470 /* If default information is needed. */
471 if (vrf_bitmap_check (zclient->default_information, VRF_DEFAULT))
472 zebra_message_send (zclient, ZEBRA_REDISTRIBUTE_DEFAULT_ADD, vrf_id);
473 }
474
475 /* Send unregister requests to zebra daemon for the information in a VRF. */
476 void
477 zclient_send_dereg_requests (struct zclient *zclient, vrf_id_t vrf_id)
478 {
479 int i;
480 afi_t afi;
481
482 /* zclient is disabled. */
483 if (! zclient->enable)
484 return;
485
486 /* If not connected to the zebra yet. */
487 if (zclient->sock < 0)
488 return;
489
490 if (zclient_debug)
491 zlog_debug ("%s: send deregister messages for VRF %u", __func__, vrf_id);
492
493 /* We need router-id information. */
494 zebra_message_send (zclient, ZEBRA_ROUTER_ID_DELETE, vrf_id);
495
496 /* We need interface information. */
497 zebra_message_send (zclient, ZEBRA_INTERFACE_DELETE, vrf_id);
498
499 /* Set unwanted redistribute route. */
500 for (afi = AFI_IP; afi < AFI_MAX; afi++)
501 vrf_bitmap_set (zclient->redist[afi][zclient->redist_default], vrf_id);
502
503 /* Flush all redistribute request. */
504 if (vrf_id == VRF_DEFAULT)
505 for (afi = AFI_IP; afi < AFI_MAX; afi++)
506 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
507 if (zclient->mi_redist[afi][i].enabled)
508 {
509 struct listnode *node;
510 u_short *id;
511
512 for (ALL_LIST_ELEMENTS_RO(zclient->mi_redist[afi][i].instances, node, id))
513 if (!(i == zclient->redist_default && *id == zclient->instance))
514 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, zclient, afi, i,
515 *id, VRF_DEFAULT);
516 }
517
518 /* Flush all redistribute request. */
519 for (afi = AFI_IP; afi < AFI_MAX; afi++)
520 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
521 if (i != zclient->redist_default &&
522 vrf_bitmap_check (zclient->redist[afi][i], vrf_id))
523 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, zclient, afi, i, 0, vrf_id);
524
525 /* If default information is needed. */
526 if (vrf_bitmap_check (zclient->default_information, VRF_DEFAULT))
527 zebra_message_send (zclient, ZEBRA_REDISTRIBUTE_DEFAULT_DELETE, vrf_id);
528 }
529
530 /* Send request to zebra daemon to start or stop RA. */
531 void
532 zclient_send_interface_radv_req (struct zclient *zclient, vrf_id_t vrf_id,
533 struct interface *ifp, int enable, int ra_interval)
534 {
535 struct stream *s;
536
537 /* zclient is disabled. */
538 if (!zclient->enable)
539 return;
540
541 /* If not connected to the zebra yet. */
542 if (zclient->sock < 0)
543 return;
544
545 /* Form and send message. */
546 s = zclient->obuf;
547 stream_reset (s);
548
549 if (enable)
550 zclient_create_header (s, ZEBRA_INTERFACE_ENABLE_RADV, vrf_id);
551 else
552 zclient_create_header (s, ZEBRA_INTERFACE_DISABLE_RADV, vrf_id);
553
554 stream_putl (s, ifp->ifindex);
555 stream_putl (s, ra_interval);
556
557 stream_putw_at (s, 0, stream_get_endp (s));
558
559 zclient_send_message(zclient);
560 }
561
562 /* Make connection to zebra daemon. */
563 int
564 zclient_start (struct zclient *zclient)
565 {
566 if (zclient_debug)
567 zlog_info ("zclient_start is called");
568
569 /* zclient is disabled. */
570 if (! zclient->enable)
571 return 0;
572
573 /* If already connected to the zebra. */
574 if (zclient->sock >= 0)
575 return 0;
576
577 /* Check connect thread. */
578 if (zclient->t_connect)
579 return 0;
580
581 if (zclient_socket_connect(zclient) < 0)
582 {
583 if (zclient_debug)
584 zlog_debug ("zclient connection fail");
585 zclient->fail++;
586 zclient_event (ZCLIENT_CONNECT, zclient);
587 return -1;
588 }
589
590 if (set_nonblocking(zclient->sock) < 0)
591 zlog_warn("%s: set_nonblocking(%d) failed", __func__, zclient->sock);
592
593 /* Clear fail count. */
594 zclient->fail = 0;
595 if (zclient_debug)
596 zlog_debug ("zclient connect success with socket [%d]", zclient->sock);
597
598 /* Create read thread. */
599 zclient_event (ZCLIENT_READ, zclient);
600
601 zebra_hello_send (zclient);
602
603 /* Inform the successful connection. */
604 if (zclient->zebra_connected)
605 (*zclient->zebra_connected) (zclient);
606
607 return 0;
608 }
609
610 /* Initialize zebra client. Argument redist_default is unwanted
611 redistribute route type. */
612 void
613 zclient_init (struct zclient *zclient, int redist_default, u_short instance)
614 {
615 int afi, i;
616
617 /* Enable zebra client connection by default. */
618 zclient->enable = 1;
619
620 /* Set -1 to the default socket value. */
621 zclient->sock = -1;
622
623 /* Clear redistribution flags. */
624 for (afi = AFI_IP; afi < AFI_MAX; afi++)
625 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
626 zclient->redist[afi][i] = vrf_bitmap_init();
627
628 /* Set unwanted redistribute route. bgpd does not need BGP route
629 redistribution. */
630 zclient->redist_default = redist_default;
631 zclient->instance = instance;
632 /* Pending: make afi(s) an arg. */
633 for (afi = AFI_IP; afi < AFI_MAX; afi++)
634 redist_add_instance (&zclient->mi_redist[afi][redist_default], instance);
635
636 /* Set default-information redistribute to zero. */
637 zclient->default_information = vrf_bitmap_init ();;
638
639 if (zclient_debug)
640 zlog_debug ("zclient_start is called");
641
642 zclient_event (ZCLIENT_SCHEDULE, zclient);
643 }
644
645 /* This function is a wrapper function for calling zclient_start from
646 timer or event thread. */
647 static int
648 zclient_connect (struct thread *t)
649 {
650 struct zclient *zclient;
651
652 zclient = THREAD_ARG (t);
653 zclient->t_connect = NULL;
654
655 if (zclient_debug)
656 zlog_debug ("zclient_connect is called");
657
658 return zclient_start (zclient);
659 }
660
661 /*
662 * "xdr_encode"-like interface that allows daemon (client) to send
663 * a message to zebra server for a route that needs to be
664 * added/deleted to the kernel. Info about the route is specified
665 * by the caller in a struct zapi_ipv4. zapi_ipv4_read() then writes
666 * the info down the zclient socket using the stream_* functions.
667 *
668 * The corresponding read ("xdr_decode") function on the server
669 * side is zread_ipv4_add()/zread_ipv4_delete().
670 *
671 * 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
672 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
673 * | Length (2) | Command | Route Type |
674 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
675 * | ZEBRA Flags | Message Flags | Prefix length |
676 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
677 * | Destination IPv4 Prefix for route |
678 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
679 * | Nexthop count |
680 * +-+-+-+-+-+-+-+-+
681 *
682 *
683 * A number of IPv4 nexthop(s) or nexthop interface index(es) are then
684 * described, as per the Nexthop count. Each nexthop described as:
685 *
686 * +-+-+-+-+-+-+-+-+
687 * | Nexthop Type | Set to one of ZEBRA_NEXTHOP_*
688 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
689 * | IPv4 Nexthop address or Interface Index number |
690 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
691 *
692 * Alternatively, if the flags field has ZEBRA_FLAG_BLACKHOLE or
693 * ZEBRA_FLAG_REJECT is set then Nexthop count is set to 1, then _no_
694 * nexthop information is provided, and the message describes a prefix
695 * to blackhole or reject route.
696 *
697 * The original struct zapi_ipv4, zapi_ipv4_route() and zread_ipv4_*()
698 * infrastructure was built around the traditional (32-bit "gate OR
699 * ifindex") nexthop data unit. A special encoding can be used to feed
700 * onlink (64-bit "gate AND ifindex") nexthops into zapi_ipv4_route()
701 * using the same zapi_ipv4 structure. This is done by setting zapi_ipv4
702 * fields as follows:
703 * - .message |= ZAPI_MESSAGE_NEXTHOP | ZAPI_MESSAGE_ONLINK
704 * - .nexthop_num == .ifindex_num
705 * - .nexthop and .ifindex are filled with gate and ifindex parts of
706 * each compound nexthop, both in the same order
707 *
708 * zapi_ipv4_route() will produce two nexthop data units for each such
709 * interleaved 64-bit nexthop. On the zserv side of the socket it will be
710 * mapped to a singlle NEXTHOP_TYPE_IPV4_IFINDEX_OL RIB nexthop structure.
711 *
712 * If ZAPI_MESSAGE_DISTANCE is set, the distance value is written as a 1
713 * byte value.
714 *
715 * If ZAPI_MESSAGE_METRIC is set, the metric value is written as an 8
716 * byte value.
717 *
718 * If ZAPI_MESSAGE_TAG is set, the tag value is written as a 4 byte value
719 *
720 * If ZAPI_MESSAGE_MTU is set, the mtu value is written as a 4 byte value
721 *
722 * XXX: No attention paid to alignment.
723 */
724 int
725 zapi_ipv4_route (u_char cmd, struct zclient *zclient, struct prefix_ipv4 *p,
726 struct zapi_ipv4 *api)
727 {
728 int i;
729 int psize;
730 struct stream *s;
731
732 /* Reset stream. */
733 s = zclient->obuf;
734 stream_reset (s);
735
736 /* Some checks for labeled-unicast. The current expectation is that each
737 * nexthop is accompanied by a label in the case of labeled-unicast.
738 */
739 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_LABEL) &&
740 CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
741 {
742 /* We expect prefixes installed with labels and the number to match
743 * the number of nexthops.
744 */
745 assert (api->label_num == api->nexthop_num);
746 }
747
748 zclient_create_header (s, cmd, api->vrf_id);
749
750 /* Put type and nexthop. */
751 stream_putc (s, api->type);
752 stream_putw (s, api->instance);
753 stream_putl (s, api->flags);
754 stream_putc (s, api->message);
755 stream_putw (s, api->safi);
756
757 /* Put prefix information. */
758 psize = PSIZE (p->prefixlen);
759 stream_putc (s, p->prefixlen);
760 stream_write (s, (u_char *) & p->prefix, psize);
761
762 /* Nexthop, ifindex, distance and metric information. */
763 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
764 {
765 /* traditional 32-bit data units */
766 if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE))
767 {
768 stream_putc (s, 1);
769 stream_putc (s, NEXTHOP_TYPE_BLACKHOLE);
770 /* XXX assert(api->nexthop_num == 0); */
771 /* XXX assert(api->ifindex_num == 0); */
772 }
773 else
774 stream_putc (s, api->nexthop_num + api->ifindex_num);
775
776 for (i = 0; i < api->nexthop_num; i++)
777 {
778 stream_putc (s, NEXTHOP_TYPE_IPV4);
779 stream_put_in_addr (s, api->nexthop[i]);
780 /* For labeled-unicast, each nexthop is followed by label. */
781 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_LABEL))
782 stream_putl (s, api->label[i]);
783 }
784 for (i = 0; i < api->ifindex_num; i++)
785 {
786 stream_putc (s, NEXTHOP_TYPE_IFINDEX);
787 stream_putl (s, api->ifindex[i]);
788 }
789 }
790
791 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_DISTANCE))
792 stream_putc (s, api->distance);
793 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_METRIC))
794 stream_putl (s, api->metric);
795 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_TAG))
796 stream_putl (s, api->tag);
797 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_MTU))
798 stream_putl (s, api->mtu);
799
800 /* Put length at the first point of the stream. */
801 stream_putw_at (s, 0, stream_get_endp (s));
802
803 return zclient_send_message(zclient);
804 }
805
806 int
807 zapi_ipv4_route_ipv6_nexthop (u_char cmd, struct zclient *zclient,
808 struct prefix_ipv4 *p, struct zapi_ipv6 *api)
809 {
810 int i;
811 int psize;
812 struct stream *s;
813
814 /* Reset stream. */
815 s = zclient->obuf;
816 stream_reset (s);
817
818 /* Some checks for labeled-unicast. The current expectation is that each
819 * nexthop is accompanied by a label in the case of labeled-unicast.
820 */
821 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_LABEL) &&
822 CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
823 {
824 /* We expect prefixes installed with labels and the number to match
825 * the number of nexthops.
826 */
827 assert (api->label_num == api->nexthop_num);
828 }
829
830 zclient_create_header (s, cmd, api->vrf_id);
831
832 /* Put type and nexthop. */
833 stream_putc (s, api->type);
834 stream_putw (s, api->instance);
835 stream_putl (s, api->flags);
836 stream_putc (s, api->message);
837 stream_putw (s, api->safi);
838
839 /* Put prefix information. */
840 psize = PSIZE (p->prefixlen);
841 stream_putc (s, p->prefixlen);
842 stream_write (s, (u_char *) & p->prefix, psize);
843
844 /* Nexthop, ifindex, distance and metric information. */
845 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
846 {
847 if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE))
848 {
849 stream_putc (s, 1);
850 stream_putc (s, NEXTHOP_TYPE_BLACKHOLE);
851 /* XXX assert(api->nexthop_num == 0); */
852 /* XXX assert(api->ifindex_num == 0); */
853 }
854 else
855 stream_putc (s, api->nexthop_num + api->ifindex_num);
856
857 for (i = 0; i < api->nexthop_num; i++)
858 {
859 stream_putc (s, NEXTHOP_TYPE_IPV6);
860 stream_write (s, (u_char *)api->nexthop[i], 16);
861 /* For labeled-unicast, each nexthop is followed by label. */
862 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_LABEL))
863 stream_putl (s, api->label[i]);
864 }
865 for (i = 0; i < api->ifindex_num; i++)
866 {
867 stream_putc (s, NEXTHOP_TYPE_IFINDEX);
868 stream_putl (s, api->ifindex[i]);
869 }
870 }
871
872 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_DISTANCE))
873 stream_putc (s, api->distance);
874 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_METRIC))
875 stream_putl (s, api->metric);
876 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_TAG))
877 stream_putl (s, api->tag);
878 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_MTU))
879 stream_putl (s, api->mtu);
880
881 /* Put length at the first point of the stream. */
882 stream_putw_at (s, 0, stream_get_endp (s));
883
884 return zclient_send_message(zclient);
885 }
886
887 int
888 zapi_ipv6_route (u_char cmd, struct zclient *zclient, struct prefix_ipv6 *p,
889 struct prefix_ipv6 *src_p, struct zapi_ipv6 *api)
890 {
891 int i;
892 int psize;
893 struct stream *s;
894
895 /* either we have !SRCPFX && src_p == NULL, or SRCPFX && src_p != NULL */
896 assert (!(api->message & ZAPI_MESSAGE_SRCPFX) == !src_p);
897
898 /* Reset stream. */
899 s = zclient->obuf;
900 stream_reset (s);
901
902 /* Some checks for labeled-unicast. The current expectation is that each
903 * nexthop is accompanied by a label in the case of labeled-unicast.
904 */
905 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_LABEL) &&
906 CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
907 {
908 /* We expect prefixes installed with labels and the number to match
909 * the number of nexthops.
910 */
911 assert (api->label_num == api->nexthop_num);
912 }
913
914 zclient_create_header (s, cmd, api->vrf_id);
915
916 /* Put type and nexthop. */
917 stream_putc (s, api->type);
918 stream_putw (s, api->instance);
919 stream_putl (s, api->flags);
920 stream_putc (s, api->message);
921 stream_putw (s, api->safi);
922
923 /* Put prefix information. */
924 psize = PSIZE (p->prefixlen);
925 stream_putc (s, p->prefixlen);
926 stream_write (s, (u_char *)&p->prefix, psize);
927
928 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_SRCPFX))
929 {
930 psize = PSIZE (src_p->prefixlen);
931 stream_putc (s, src_p->prefixlen);
932 stream_write (s, (u_char *)&src_p->prefix, psize);
933 }
934
935 /* Nexthop, ifindex, distance and metric information. */
936 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
937 {
938 if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE))
939 {
940 stream_putc (s, 1);
941 stream_putc (s, NEXTHOP_TYPE_BLACKHOLE);
942 /* XXX assert(api->nexthop_num == 0); */
943 /* XXX assert(api->ifindex_num == 0); */
944 }
945 else
946 stream_putc (s, api->nexthop_num + api->ifindex_num);
947
948 for (i = 0; i < api->nexthop_num; i++)
949 {
950 stream_putc (s, NEXTHOP_TYPE_IPV6);
951 stream_write (s, (u_char *)api->nexthop[i], 16);
952 /* For labeled-unicast, each nexthop is followed by label. */
953 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_LABEL))
954 stream_putl (s, api->label[i]);
955 }
956 for (i = 0; i < api->ifindex_num; i++)
957 {
958 stream_putc (s, NEXTHOP_TYPE_IFINDEX);
959 stream_putl (s, api->ifindex[i]);
960 }
961 }
962
963 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_DISTANCE))
964 stream_putc (s, api->distance);
965 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_METRIC))
966 stream_putl (s, api->metric);
967 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_TAG))
968 stream_putl (s, api->tag);
969 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_MTU))
970 stream_putl (s, api->mtu);
971
972 /* Put length at the first point of the stream. */
973 stream_putw_at (s, 0, stream_get_endp (s));
974
975 return zclient_send_message(zclient);
976 }
977
978 /*
979 * send a ZEBRA_REDISTRIBUTE_ADD or ZEBRA_REDISTRIBUTE_DELETE
980 * for the route type (ZEBRA_ROUTE_KERNEL etc.). The zebra server will
981 * then set/unset redist[type] in the client handle (a struct zserv) for the
982 * sending client
983 */
984 int
985 zebra_redistribute_send (int command, struct zclient *zclient, afi_t afi, int type,
986 u_short instance, vrf_id_t vrf_id)
987 {
988 struct stream *s;
989
990 s = zclient->obuf;
991 stream_reset(s);
992
993 zclient_create_header (s, command, vrf_id);
994 stream_putc (s, afi);
995 stream_putc (s, type);
996 stream_putw (s, instance);
997
998 stream_putw_at (s, 0, stream_get_endp (s));
999
1000 return zclient_send_message(zclient);
1001 }
1002
1003 /* Get prefix in ZServ format; family should be filled in on prefix */
1004 static void
1005 zclient_stream_get_prefix (struct stream *s, struct prefix *p)
1006 {
1007 size_t plen = prefix_blen (p);
1008 u_char c;
1009 p->prefixlen = 0;
1010
1011 if (plen == 0)
1012 return;
1013
1014 stream_get (&p->u.prefix, s, plen);
1015 c = stream_getc(s);
1016 p->prefixlen = MIN(plen * 8, c);
1017 }
1018
1019 /* Router-id update from zebra daemon. */
1020 void
1021 zebra_router_id_update_read (struct stream *s, struct prefix *rid)
1022 {
1023 /* Fetch interface address. */
1024 rid->family = stream_getc (s);
1025
1026 zclient_stream_get_prefix (s, rid);
1027 }
1028
1029 /* Interface addition from zebra daemon. */
1030 /*
1031 * The format of the message sent with type ZEBRA_INTERFACE_ADD or
1032 * ZEBRA_INTERFACE_DELETE from zebra to the client is:
1033 * 0 1 2 3
1034 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
1035 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1036 * | ifname |
1037 * | |
1038 * | |
1039 * | |
1040 * | |
1041 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1042 * | ifindex |
1043 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1044 * | status |
1045 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1046 * | if_flags |
1047 * | |
1048 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1049 * | metric |
1050 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1051 * | speed |
1052 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1053 * | ifmtu |
1054 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1055 * | ifmtu6 |
1056 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1057 * | bandwidth |
1058 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1059 * | Link Layer Type |
1060 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1061 * | Harware Address Length |
1062 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1063 * | Hardware Address if HW lenght different from 0 |
1064 * | ... max INTERFACE_HWADDR_MAX |
1065 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1066 * | Link_params? | Whether a link-params follows: 1 or 0.
1067 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1068 * | Link_params 0 or 1 INTERFACE_LINK_PARAMS_SIZE sized |
1069 * | .... (struct if_link_params). |
1070 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1071 */
1072
1073 static void
1074 zclient_vrf_add (struct zclient *zclient, vrf_id_t vrf_id)
1075 {
1076 struct vrf *vrf;
1077 char vrfname_tmp[VRF_NAMSIZ];
1078
1079 /* Read interface name. */
1080 stream_get (vrfname_tmp, zclient->ibuf, VRF_NAMSIZ);
1081
1082 /* Lookup/create vrf by vrf_id. */
1083 vrf = vrf_get (vrf_id, vrfname_tmp);
1084
1085 vrf_enable (vrf);
1086 }
1087
1088 static void
1089 zclient_vrf_delete (struct zclient *zclient, vrf_id_t vrf_id)
1090 {
1091 struct vrf *vrf;
1092
1093 /* Lookup vrf by vrf_id. */
1094 vrf = vrf_lookup_by_id (vrf_id);
1095
1096 /*
1097 * If a routing protocol doesn't know about a
1098 * vrf that is about to be deleted. There is
1099 * no point in attempting to delete it.
1100 */
1101 if (!vrf)
1102 return;
1103
1104 vrf_delete (vrf);
1105 }
1106
1107 struct interface *
1108 zebra_interface_add_read (struct stream *s, vrf_id_t vrf_id)
1109 {
1110 struct interface *ifp;
1111 char ifname_tmp[INTERFACE_NAMSIZ];
1112
1113 /* Read interface name. */
1114 stream_get (ifname_tmp, s, INTERFACE_NAMSIZ);
1115
1116 /* Lookup/create interface by name. */
1117 ifp = if_get_by_name_len (ifname_tmp,
1118 strnlen (ifname_tmp, INTERFACE_NAMSIZ),
1119 vrf_id, 0);
1120
1121 zebra_interface_if_set_value (s, ifp);
1122
1123 return ifp;
1124 }
1125
1126 /*
1127 * Read interface up/down msg (ZEBRA_INTERFACE_UP/ZEBRA_INTERFACE_DOWN)
1128 * from zebra server. The format of this message is the same as
1129 * that sent for ZEBRA_INTERFACE_ADD/ZEBRA_INTERFACE_DELETE (see
1130 * comments for zebra_interface_add_read), except that no sockaddr_dl
1131 * is sent at the tail of the message.
1132 */
1133 struct interface *
1134 zebra_interface_state_read (struct stream *s, vrf_id_t vrf_id)
1135 {
1136 struct interface *ifp;
1137 char ifname_tmp[INTERFACE_NAMSIZ];
1138
1139 /* Read interface name. */
1140 stream_get (ifname_tmp, s, INTERFACE_NAMSIZ);
1141
1142 /* Lookup this by interface index. */
1143 ifp = if_lookup_by_name_len (ifname_tmp,
1144 strnlen (ifname_tmp, INTERFACE_NAMSIZ),
1145 vrf_id);
1146 if (ifp == NULL)
1147 {
1148 zlog_warn ("INTERFACE_STATE: Cannot find IF %s in VRF %d",
1149 ifname_tmp, vrf_id);
1150 return NULL;
1151 }
1152
1153 zebra_interface_if_set_value (s, ifp);
1154
1155 return ifp;
1156 }
1157
1158 static void
1159 link_params_set_value(struct stream *s, struct if_link_params *iflp)
1160 {
1161
1162 if (iflp == NULL)
1163 return;
1164
1165 iflp->lp_status = stream_getl (s);
1166 iflp->te_metric = stream_getl (s);
1167 iflp->max_bw = stream_getf (s);
1168 iflp->max_rsv_bw = stream_getf (s);
1169 uint32_t bwclassnum = stream_getl (s);
1170 {
1171 unsigned int i;
1172 for (i = 0; i < bwclassnum && i < MAX_CLASS_TYPE; i++)
1173 iflp->unrsv_bw[i] = stream_getf (s);
1174 if (i < bwclassnum)
1175 zlog_err ("%s: received %d > %d (MAX_CLASS_TYPE) bw entries"
1176 " - outdated library?",
1177 __func__, bwclassnum, MAX_CLASS_TYPE);
1178 }
1179 iflp->admin_grp = stream_getl (s);
1180 iflp->rmt_as = stream_getl (s);
1181 iflp->rmt_ip.s_addr = stream_get_ipv4 (s);
1182
1183 iflp->av_delay = stream_getl (s);
1184 iflp->min_delay = stream_getl (s);
1185 iflp->max_delay = stream_getl (s);
1186 iflp->delay_var = stream_getl (s);
1187
1188 iflp->pkt_loss = stream_getf (s);
1189 iflp->res_bw = stream_getf (s);
1190 iflp->ava_bw = stream_getf (s);
1191 iflp->use_bw = stream_getf (s);
1192 }
1193
1194 struct interface *
1195 zebra_interface_link_params_read (struct stream *s)
1196 {
1197 struct if_link_params *iflp;
1198 ifindex_t ifindex;
1199
1200 assert (s);
1201
1202 ifindex = stream_getl (s);
1203
1204 struct interface *ifp = if_lookup_by_index (ifindex, VRF_DEFAULT);
1205
1206 if (ifp == NULL)
1207 {
1208 zlog_err ("%s: unknown ifindex %u, shouldn't happen",
1209 __func__, ifindex);
1210 return NULL;
1211 }
1212
1213 if ((iflp = if_link_params_get (ifp)) == NULL)
1214 return NULL;
1215
1216 link_params_set_value(s, iflp);
1217
1218 return ifp;
1219 }
1220
1221 void
1222 zebra_interface_if_set_value (struct stream *s, struct interface *ifp)
1223 {
1224 u_char link_params_status = 0;
1225
1226 /* Read interface's index. */
1227 ifp->ifindex = stream_getl (s);
1228 ifp->status = stream_getc (s);
1229
1230 /* Read interface's value. */
1231 ifp->flags = stream_getq (s);
1232 ifp->ptm_enable = stream_getc (s);
1233 ifp->ptm_status = stream_getc (s);
1234 ifp->metric = stream_getl (s);
1235 ifp->speed = stream_getl (s);
1236 ifp->mtu = stream_getl (s);
1237 ifp->mtu6 = stream_getl (s);
1238 ifp->bandwidth = stream_getl (s);
1239 ifp->ll_type = stream_getl (s);
1240 ifp->hw_addr_len = stream_getl (s);
1241 if (ifp->hw_addr_len)
1242 stream_get (ifp->hw_addr, s, MIN(ifp->hw_addr_len, INTERFACE_HWADDR_MAX));
1243
1244 /* Read Traffic Engineering status */
1245 link_params_status = stream_getc (s);
1246 /* Then, Traffic Engineering parameters if any */
1247 if (link_params_status)
1248 {
1249 struct if_link_params *iflp = if_link_params_get (ifp);
1250 link_params_set_value(s, iflp);
1251 }
1252 }
1253
1254 size_t
1255 zebra_interface_link_params_write (struct stream *s, struct interface *ifp)
1256 {
1257 size_t w;
1258 struct if_link_params *iflp;
1259 int i;
1260
1261 if (s == NULL || ifp == NULL || ifp->link_params == NULL)
1262 return 0;
1263
1264 iflp = ifp->link_params;
1265 w = 0;
1266
1267 w += stream_putl (s, iflp->lp_status);
1268
1269 w += stream_putl (s, iflp->te_metric);
1270 w += stream_putf (s, iflp->max_bw);
1271 w += stream_putf (s, iflp->max_rsv_bw);
1272
1273 w += stream_putl (s, MAX_CLASS_TYPE);
1274 for (i = 0; i < MAX_CLASS_TYPE; i++)
1275 w += stream_putf (s, iflp->unrsv_bw[i]);
1276
1277 w += stream_putl (s, iflp->admin_grp);
1278 w += stream_putl (s, iflp->rmt_as);
1279 w += stream_put_in_addr (s, &iflp->rmt_ip);
1280
1281 w += stream_putl (s, iflp->av_delay);
1282 w += stream_putl (s, iflp->min_delay);
1283 w += stream_putl (s, iflp->max_delay);
1284 w += stream_putl (s, iflp->delay_var);
1285
1286 w += stream_putf (s, iflp->pkt_loss);
1287 w += stream_putf (s, iflp->res_bw);
1288 w += stream_putf (s, iflp->ava_bw);
1289 w += stream_putf (s, iflp->use_bw);
1290
1291 return w;
1292 }
1293
1294 /*
1295 * format of message for address additon is:
1296 * 0
1297 * 0 1 2 3 4 5 6 7
1298 * +-+-+-+-+-+-+-+-+
1299 * | type | ZEBRA_INTERFACE_ADDRESS_ADD or
1300 * +-+-+-+-+-+-+-+-+ ZEBRA_INTERFACE_ADDRES_DELETE
1301 * | |
1302 * + +
1303 * | ifindex |
1304 * + +
1305 * | |
1306 * + +
1307 * | |
1308 * +-+-+-+-+-+-+-+-+
1309 * | ifc_flags | flags for connected address
1310 * +-+-+-+-+-+-+-+-+
1311 * | addr_family |
1312 * +-+-+-+-+-+-+-+-+
1313 * | addr... |
1314 * : :
1315 * | |
1316 * +-+-+-+-+-+-+-+-+
1317 * | addr_len | len of addr. E.g., addr_len = 4 for ipv4 addrs.
1318 * +-+-+-+-+-+-+-+-+
1319 * | daddr.. |
1320 * : :
1321 * | |
1322 * +-+-+-+-+-+-+-+-+
1323 */
1324
1325 static int
1326 memconstant(const void *s, int c, size_t n)
1327 {
1328 const u_char *p = s;
1329
1330 while (n-- > 0)
1331 if (*p++ != c)
1332 return 0;
1333 return 1;
1334 }
1335
1336
1337 struct connected *
1338 zebra_interface_address_read (int type, struct stream *s, vrf_id_t vrf_id)
1339 {
1340 ifindex_t ifindex;
1341 struct interface *ifp;
1342 struct connected *ifc;
1343 struct prefix p, d, *dp;
1344 int plen;
1345 u_char ifc_flags;
1346
1347 memset (&p, 0, sizeof(p));
1348 memset (&d, 0, sizeof(d));
1349
1350 /* Get interface index. */
1351 ifindex = stream_getl (s);
1352
1353 /* Lookup index. */
1354 ifp = if_lookup_by_index (ifindex, vrf_id);
1355 if (ifp == NULL)
1356 {
1357 zlog_warn ("INTERFACE_ADDRESS_%s: Cannot find IF %u in VRF %d",
1358 (type == ZEBRA_INTERFACE_ADDRESS_ADD) ? "ADD" : "DEL",
1359 ifindex, vrf_id);
1360 return NULL;
1361 }
1362
1363 /* Fetch flag. */
1364 ifc_flags = stream_getc (s);
1365
1366 /* Fetch interface address. */
1367 d.family = p.family = stream_getc (s);
1368 plen = prefix_blen (&d);
1369
1370 zclient_stream_get_prefix (s, &p);
1371
1372 /* Fetch destination address. */
1373 stream_get (&d.u.prefix, s, plen);
1374
1375 /* N.B. NULL destination pointers are encoded as all zeroes */
1376 dp = memconstant(&d.u.prefix,0,plen) ? NULL : &d;
1377
1378 if (type == ZEBRA_INTERFACE_ADDRESS_ADD)
1379 {
1380 ifc = connected_lookup_prefix_exact (ifp, &p);
1381 if (!ifc)
1382 {
1383 /* N.B. NULL destination pointers are encoded as all zeroes */
1384 ifc = connected_add_by_prefix(ifp, &p, dp);
1385 }
1386 if (ifc)
1387 {
1388 ifc->flags = ifc_flags;
1389 if (ifc->destination)
1390 ifc->destination->prefixlen = ifc->address->prefixlen;
1391 else if (CHECK_FLAG(ifc->flags, ZEBRA_IFA_PEER))
1392 {
1393 /* carp interfaces on OpenBSD with 0.0.0.0/0 as "peer" */
1394 char buf[PREFIX_STRLEN];
1395 zlog_warn("warning: interface %s address %s "
1396 "with peer flag set, but no peer address!",
1397 ifp->name,
1398 prefix2str (ifc->address, buf, sizeof buf));
1399 UNSET_FLAG(ifc->flags, ZEBRA_IFA_PEER);
1400 }
1401 }
1402 }
1403 else
1404 {
1405 assert (type == ZEBRA_INTERFACE_ADDRESS_DELETE);
1406 ifc = connected_delete_by_prefix(ifp, &p);
1407 }
1408
1409 return ifc;
1410 }
1411
1412 /*
1413 * format of message for neighbor connected address is:
1414 * 0
1415 * 0 1 2 3 4 5 6 7
1416 * +-+-+-+-+-+-+-+-+
1417 * | type | ZEBRA_INTERFACE_NBR_ADDRESS_ADD or
1418 * +-+-+-+-+-+-+-+-+ ZEBRA_INTERFACE_NBR_ADDRES_DELETE
1419 * | |
1420 * + +
1421 * | ifindex |
1422 * + +
1423 * | |
1424 * + +
1425 * | |
1426 * +-+-+-+-+-+-+-+-+
1427 * | addr_family |
1428 * +-+-+-+-+-+-+-+-+
1429 * | addr... |
1430 * : :
1431 * | |
1432 * +-+-+-+-+-+-+-+-+
1433 * | addr_len | len of addr.
1434 * +-+-+-+-+-+-+-+-+
1435 */
1436 struct nbr_connected *
1437 zebra_interface_nbr_address_read (int type, struct stream *s, vrf_id_t vrf_id)
1438 {
1439 unsigned int ifindex;
1440 struct interface *ifp;
1441 struct prefix p;
1442 struct nbr_connected *ifc;
1443
1444 /* Get interface index. */
1445 ifindex = stream_getl (s);
1446
1447 /* Lookup index. */
1448 ifp = if_lookup_by_index (ifindex, vrf_id);
1449 if (ifp == NULL)
1450 {
1451 zlog_warn ("INTERFACE_NBR_%s: Cannot find IF %u in VRF %d",
1452 (type == ZEBRA_INTERFACE_NBR_ADDRESS_ADD) ? "ADD" : "DELETE",
1453 ifindex, vrf_id);
1454 return NULL;
1455 }
1456
1457 p.family = stream_getc (s);
1458 stream_get (&p.u.prefix, s, prefix_blen (&p));
1459 p.prefixlen = stream_getc (s);
1460
1461 if (type == ZEBRA_INTERFACE_NBR_ADDRESS_ADD)
1462 {
1463 /* Currently only supporting P2P links, so any new RA source address is
1464 considered as the replacement of the previously learnt Link-Local address. */
1465 if (!(ifc = listnode_head(ifp->nbr_connected)))
1466 {
1467 ifc = nbr_connected_new ();
1468 ifc->address = prefix_new ();
1469 ifc->ifp = ifp;
1470 listnode_add (ifp->nbr_connected, ifc);
1471 }
1472
1473 prefix_copy(ifc->address, &p);
1474 }
1475 else
1476 {
1477 assert (type == ZEBRA_INTERFACE_NBR_ADDRESS_DELETE);
1478
1479 ifc = nbr_connected_check(ifp, &p);
1480 if (ifc)
1481 listnode_delete (ifp->nbr_connected, ifc);
1482 }
1483
1484 return ifc;
1485 }
1486
1487 struct interface *
1488 zebra_interface_vrf_update_read (struct stream *s, vrf_id_t vrf_id,
1489 vrf_id_t *new_vrf_id)
1490 {
1491 unsigned int ifindex;
1492 struct interface *ifp;
1493 vrf_id_t new_id = VRF_DEFAULT;
1494
1495 /* Get interface index. */
1496 ifindex = stream_getl (s);
1497
1498 /* Lookup interface. */
1499 ifp = if_lookup_by_index (ifindex, vrf_id);
1500 if (ifp == NULL)
1501 {
1502 zlog_warn ("INTERFACE_VRF_UPDATE: Cannot find IF %u in VRF %d",
1503 ifindex, vrf_id);
1504 return NULL;
1505 }
1506
1507 /* Fetch new VRF Id. */
1508 new_id = stream_getw (s);
1509
1510 *new_vrf_id = new_id;
1511 return ifp;
1512 }
1513 /**
1514 * Connect to label manager in a syncronous way
1515 *
1516 * It first writes the request to zcient output buffer and then
1517 * immediately reads the answer from the input buffer.
1518 *
1519 * @param zclient Zclient used to connect to label manager (zebra)
1520 * @result Result of response
1521 */
1522 int
1523 lm_label_manager_connect (struct zclient *zclient)
1524 {
1525 int ret;
1526 struct stream *s;
1527 u_char result;
1528 u_int16_t size;
1529 u_char marker;
1530 u_char version;
1531 vrf_id_t vrf_id;
1532 u_int16_t cmd;
1533
1534 zlog_debug ("Connecting to Label Manager");
1535 if (zclient->sock < 0)
1536 return -1;
1537
1538 /* send request */
1539 s = zclient->obuf;
1540 stream_reset (s);
1541 zclient_create_header (s, ZEBRA_LABEL_MANAGER_CONNECT, VRF_DEFAULT);
1542
1543 /* proto */
1544 stream_putc (s, zclient->redist_default);
1545 /* instance */
1546 stream_putw (s, zclient->instance);
1547
1548 /* Put length at the first point of the stream. */
1549 stream_putw_at(s, 0, stream_get_endp(s));
1550
1551 ret = writen (zclient->sock, s->data, stream_get_endp (s));
1552 if (ret < 0)
1553 {
1554 zlog_err ("%s: can't write to zclient->sock", __func__);
1555 close (zclient->sock);
1556 zclient->sock = -1;
1557 return -1;
1558 }
1559 if (ret == 0)
1560 {
1561 zlog_err ("%s: zclient->sock connection closed", __func__);
1562 close (zclient->sock);
1563 zclient->sock = -1;
1564 return -1;
1565 }
1566 zlog_debug ("%s: Label manager connect request (%d bytes) sent", __func__, ret);
1567
1568 /* read response */
1569 s = zclient->ibuf;
1570 stream_reset (s);
1571
1572 ret = zclient_read_header (s, zclient->sock, &size, &marker, &version,
1573 &vrf_id, &cmd);
1574 if (ret != 0 || cmd != ZEBRA_LABEL_MANAGER_CONNECT) {
1575 zlog_err ("%s: Invalid Label Manager Connect Message Reply Header", __func__);
1576 return -1;
1577 }
1578 /* result */
1579 result = stream_getc(s);
1580 zlog_debug ("%s: Label Manager connect response (%d bytes) received, result %u",
1581 __func__, size, result);
1582
1583 return (int)result;
1584 }
1585
1586 /**
1587 * Function to request a label chunk in a syncronous way
1588 *
1589 * It first writes the request to zlcient output buffer and then
1590 * immediately reads the answer from the input buffer.
1591 *
1592 * @param zclient Zclient used to connect to label manager (zebra)
1593 * @param keep Avoid garbage collection
1594 * @param chunk_size Amount of labels requested
1595 * @param start To write first assigned chunk label to
1596 * @param end To write last assigned chunk label to
1597 * @result 0 on success, -1 otherwise
1598 */
1599 int
1600 lm_get_label_chunk (struct zclient *zclient, u_char keep, uint32_t chunk_size,
1601 uint32_t *start, uint32_t *end)
1602 {
1603 int ret;
1604 struct stream *s;
1605 u_int16_t size;
1606 u_char marker;
1607 u_char version;
1608 vrf_id_t vrf_id;
1609 u_int16_t cmd;
1610 u_char response_keep;
1611
1612 zlog_debug ("Getting Label Chunk");
1613 if (zclient->sock < 0)
1614 return -1;
1615
1616 /* send request */
1617 s = zclient->obuf;
1618 stream_reset (s);
1619 zclient_create_header (s, ZEBRA_GET_LABEL_CHUNK, VRF_DEFAULT);
1620 /* keep */
1621 stream_putc (s, keep);
1622 /* chunk size */
1623 stream_putl (s, chunk_size);
1624 /* Put length at the first point of the stream. */
1625 stream_putw_at(s, 0, stream_get_endp(s));
1626
1627 ret = writen (zclient->sock, s->data, stream_get_endp (s));
1628 if (ret < 0)
1629 {
1630 zlog_err ("%s: can't write to zclient->sock", __func__);
1631 close (zclient->sock);
1632 zclient->sock = -1;
1633 return -1;
1634 }
1635 if (ret == 0)
1636 {
1637 zlog_err ("%s: zclient->sock connection closed", __func__);
1638 close (zclient->sock);
1639 zclient->sock = -1;
1640 return -1;
1641 }
1642 zlog_debug ("%s: Label chunk request (%d bytes) sent", __func__, ret);
1643
1644 /* read response */
1645 s = zclient->ibuf;
1646 stream_reset (s);
1647
1648 ret = zclient_read_header (s, zclient->sock, &size, &marker, &version,
1649 &vrf_id, &cmd);
1650 if (ret != 0 || cmd != ZEBRA_GET_LABEL_CHUNK) {
1651 zlog_err ("%s: Invalid Get Label Chunk Message Reply Header", __func__);
1652 return -1;
1653 }
1654 zlog_debug ("%s: Label chunk response (%d bytes) received", __func__, size);
1655 /* keep */
1656 response_keep = stream_getc(s);
1657 /* start and end labels */
1658 *start = stream_getl(s);
1659 *end = stream_getl(s);
1660
1661 /* not owning this response */
1662 if (keep != response_keep) {
1663 zlog_err ("%s: Invalid Label chunk: %u - %u, keeps mismatch %u != %u",
1664 __func__, *start, *end, keep, response_keep);
1665 }
1666 /* sanity */
1667 if (*start > *end
1668 || *start < MPLS_MIN_UNRESERVED_LABEL
1669 || *end > MPLS_MAX_UNRESERVED_LABEL) {
1670 zlog_err ("%s: Invalid Label chunk: %u - %u", __func__,
1671 *start, *end);
1672 return -1;
1673 }
1674
1675 zlog_debug ("Label Chunk assign: %u - %u (%u) ",
1676 *start, *end, response_keep);
1677
1678 return 0;
1679 }
1680
1681 /**
1682 * Function to release a label chunk
1683 *
1684 * @param zclient Zclient used to connect to label manager (zebra)
1685 * @param start First label of chunk
1686 * @param end Last label of chunk
1687 * @result 0 on success, -1 otherwise
1688 */
1689 int
1690 lm_release_label_chunk (struct zclient *zclient, uint32_t start, uint32_t end)
1691 {
1692 int ret;
1693 struct stream *s;
1694
1695 zlog_debug ("Releasing Label Chunk");
1696 if (zclient->sock < 0)
1697 return -1;
1698
1699 /* send request */
1700 s = zclient->obuf;
1701 stream_reset (s);
1702 zclient_create_header (s, ZEBRA_RELEASE_LABEL_CHUNK, VRF_DEFAULT);
1703
1704 /* start */
1705 stream_putl (s, start);
1706 /* end */
1707 stream_putl (s, end);
1708
1709 /* Put length at the first point of the stream. */
1710 stream_putw_at(s, 0, stream_get_endp(s));
1711
1712 ret = writen (zclient->sock, s->data, stream_get_endp (s));
1713 if (ret < 0)
1714 {
1715 zlog_err ("%s: can't write to zclient->sock", __func__);
1716 close (zclient->sock);
1717 zclient->sock = -1;
1718 return -1;
1719 }
1720 if (ret == 0)
1721 {
1722 zlog_err ("%s: zclient->sock connection closed", __func__);
1723 close (zclient->sock);
1724 zclient->sock = -1;
1725 return -1;
1726 }
1727
1728 return 0;
1729 }
1730
1731 /* Zebra client message read function. */
1732 static int
1733 zclient_read (struct thread *thread)
1734 {
1735 size_t already;
1736 uint16_t length, command;
1737 uint8_t marker, version;
1738 vrf_id_t vrf_id;
1739 struct zclient *zclient;
1740
1741 /* Get socket to zebra. */
1742 zclient = THREAD_ARG (thread);
1743 zclient->t_read = NULL;
1744
1745 /* Read zebra header (if we don't have it already). */
1746 if ((already = stream_get_endp(zclient->ibuf)) < ZEBRA_HEADER_SIZE)
1747 {
1748 ssize_t nbyte;
1749 if (((nbyte = stream_read_try(zclient->ibuf, zclient->sock,
1750 ZEBRA_HEADER_SIZE-already)) == 0) ||
1751 (nbyte == -1))
1752 {
1753 if (zclient_debug)
1754 zlog_debug ("zclient connection closed socket [%d].", zclient->sock);
1755 return zclient_failed(zclient);
1756 }
1757 if (nbyte != (ssize_t)(ZEBRA_HEADER_SIZE-already))
1758 {
1759 /* Try again later. */
1760 zclient_event (ZCLIENT_READ, zclient);
1761 return 0;
1762 }
1763 already = ZEBRA_HEADER_SIZE;
1764 }
1765
1766 /* Reset to read from the beginning of the incoming packet. */
1767 stream_set_getp(zclient->ibuf, 0);
1768
1769 /* Fetch header values. */
1770 length = stream_getw (zclient->ibuf);
1771 marker = stream_getc (zclient->ibuf);
1772 version = stream_getc (zclient->ibuf);
1773 vrf_id = stream_getw (zclient->ibuf);
1774 command = stream_getw (zclient->ibuf);
1775
1776 if (marker != ZEBRA_HEADER_MARKER || version != ZSERV_VERSION)
1777 {
1778 zlog_err("%s: socket %d version mismatch, marker %d, version %d",
1779 __func__, zclient->sock, marker, version);
1780 return zclient_failed(zclient);
1781 }
1782
1783 if (length < ZEBRA_HEADER_SIZE)
1784 {
1785 zlog_err("%s: socket %d message length %u is less than %d ",
1786 __func__, zclient->sock, length, ZEBRA_HEADER_SIZE);
1787 return zclient_failed(zclient);
1788 }
1789
1790 /* Length check. */
1791 if (length > STREAM_SIZE(zclient->ibuf))
1792 {
1793 struct stream *ns;
1794 zlog_warn("%s: message size %u exceeds buffer size %lu, expanding...",
1795 __func__, length, (u_long)STREAM_SIZE(zclient->ibuf));
1796 ns = stream_new(length);
1797 stream_copy(ns, zclient->ibuf);
1798 stream_free (zclient->ibuf);
1799 zclient->ibuf = ns;
1800 }
1801
1802 /* Read rest of zebra packet. */
1803 if (already < length)
1804 {
1805 ssize_t nbyte;
1806 if (((nbyte = stream_read_try(zclient->ibuf, zclient->sock,
1807 length-already)) == 0) ||
1808 (nbyte == -1))
1809 {
1810 if (zclient_debug)
1811 zlog_debug("zclient connection closed socket [%d].", zclient->sock);
1812 return zclient_failed(zclient);
1813 }
1814 if (nbyte != (ssize_t)(length-already))
1815 {
1816 /* Try again later. */
1817 zclient_event (ZCLIENT_READ, zclient);
1818 return 0;
1819 }
1820 }
1821
1822 length -= ZEBRA_HEADER_SIZE;
1823
1824 if (zclient_debug)
1825 zlog_debug("zclient 0x%p command 0x%x VRF %u\n", (void *)zclient, command, vrf_id);
1826
1827 switch (command)
1828 {
1829 case ZEBRA_ROUTER_ID_UPDATE:
1830 if (zclient->router_id_update)
1831 (*zclient->router_id_update) (command, zclient, length, vrf_id);
1832 break;
1833 case ZEBRA_VRF_ADD:
1834 zclient_vrf_add (zclient, vrf_id);
1835 break;
1836 case ZEBRA_VRF_DELETE:
1837 zclient_vrf_delete (zclient, vrf_id);
1838 break;
1839 case ZEBRA_INTERFACE_ADD:
1840 if (zclient->interface_add)
1841 (*zclient->interface_add) (command, zclient, length, vrf_id);
1842 break;
1843 case ZEBRA_INTERFACE_DELETE:
1844 if (zclient->interface_delete)
1845 (*zclient->interface_delete) (command, zclient, length, vrf_id);
1846 break;
1847 case ZEBRA_INTERFACE_ADDRESS_ADD:
1848 if (zclient->interface_address_add)
1849 (*zclient->interface_address_add) (command, zclient, length, vrf_id);
1850 break;
1851 case ZEBRA_INTERFACE_ADDRESS_DELETE:
1852 if (zclient->interface_address_delete)
1853 (*zclient->interface_address_delete) (command, zclient, length, vrf_id);
1854 break;
1855 case ZEBRA_INTERFACE_BFD_DEST_UPDATE:
1856 if (zclient->interface_bfd_dest_update)
1857 (*zclient->interface_bfd_dest_update) (command, zclient, length, vrf_id);
1858 break;
1859 case ZEBRA_INTERFACE_NBR_ADDRESS_ADD:
1860 if (zclient->interface_nbr_address_add)
1861 (*zclient->interface_nbr_address_add) (command, zclient, length, vrf_id);
1862 break;
1863 case ZEBRA_INTERFACE_NBR_ADDRESS_DELETE:
1864 if (zclient->interface_nbr_address_delete)
1865 (*zclient->interface_nbr_address_delete) (command, zclient, length, vrf_id);
1866 break;
1867 case ZEBRA_INTERFACE_UP:
1868 if (zclient->interface_up)
1869 (*zclient->interface_up) (command, zclient, length, vrf_id);
1870 break;
1871 case ZEBRA_INTERFACE_DOWN:
1872 if (zclient->interface_down)
1873 (*zclient->interface_down) (command, zclient, length, vrf_id);
1874 break;
1875 case ZEBRA_INTERFACE_VRF_UPDATE:
1876 if (zclient->interface_vrf_update)
1877 (*zclient->interface_vrf_update) (command, zclient, length, vrf_id);
1878 break;
1879 case ZEBRA_NEXTHOP_UPDATE:
1880 if (zclient_debug)
1881 zlog_debug("zclient rcvd nexthop update\n");
1882 if (zclient->nexthop_update)
1883 (*zclient->nexthop_update) (command, zclient, length, vrf_id);
1884 break;
1885 case ZEBRA_IMPORT_CHECK_UPDATE:
1886 if (zclient_debug)
1887 zlog_debug("zclient rcvd import check update\n");
1888 if (zclient->import_check_update)
1889 (*zclient->import_check_update) (command, zclient, length, vrf_id);
1890 break;
1891 case ZEBRA_BFD_DEST_REPLAY:
1892 if (zclient->bfd_dest_replay)
1893 (*zclient->bfd_dest_replay) (command, zclient, length, vrf_id);
1894 break;
1895 case ZEBRA_REDISTRIBUTE_IPV4_ADD:
1896 if (zclient->redistribute_route_ipv4_add)
1897 (*zclient->redistribute_route_ipv4_add) (command, zclient, length, vrf_id);
1898 break;
1899 case ZEBRA_REDISTRIBUTE_IPV4_DEL:
1900 if (zclient->redistribute_route_ipv4_del)
1901 (*zclient->redistribute_route_ipv4_del) (command, zclient, length, vrf_id);
1902 break;
1903 case ZEBRA_REDISTRIBUTE_IPV6_ADD:
1904 if (zclient->redistribute_route_ipv6_add)
1905 (*zclient->redistribute_route_ipv6_add) (command, zclient, length, vrf_id);
1906 break;
1907 case ZEBRA_REDISTRIBUTE_IPV6_DEL:
1908 if (zclient->redistribute_route_ipv6_del)
1909 (*zclient->redistribute_route_ipv6_del) (command, zclient, length, vrf_id);
1910 break;
1911 case ZEBRA_INTERFACE_LINK_PARAMS:
1912 if (zclient->interface_link_params)
1913 (*zclient->interface_link_params) (command, zclient, length);
1914 break;
1915 case ZEBRA_FEC_UPDATE:
1916 if (zclient_debug)
1917 zlog_debug("zclient rcvd fec update\n");
1918 if (zclient->fec_update)
1919 (*zclient->fec_update) (command, zclient, length);
1920 break;
1921 default:
1922 break;
1923 }
1924
1925 if (zclient->sock < 0)
1926 /* Connection was closed during packet processing. */
1927 return -1;
1928
1929 /* Register read thread. */
1930 stream_reset(zclient->ibuf);
1931 zclient_event (ZCLIENT_READ, zclient);
1932
1933 return 0;
1934 }
1935
1936 void
1937 zclient_redistribute (int command, struct zclient *zclient, afi_t afi, int type,
1938 u_short instance, vrf_id_t vrf_id)
1939 {
1940
1941 if (instance) {
1942 if (command == ZEBRA_REDISTRIBUTE_ADD)
1943 {
1944 if (redist_check_instance(&zclient->mi_redist[afi][type], instance))
1945 return;
1946 redist_add_instance(&zclient->mi_redist[afi][type], instance);
1947 }
1948 else
1949 {
1950 if (!redist_check_instance(&zclient->mi_redist[afi][type], instance))
1951 return;
1952 redist_del_instance(&zclient->mi_redist[afi][type], instance);
1953 }
1954
1955 } else {
1956 if (command == ZEBRA_REDISTRIBUTE_ADD)
1957 {
1958 if (vrf_bitmap_check (zclient->redist[afi][type], vrf_id))
1959 return;
1960 vrf_bitmap_set (zclient->redist[afi][type], vrf_id);
1961 }
1962 else
1963 {
1964 if (!vrf_bitmap_check (zclient->redist[afi][type], vrf_id))
1965 return;
1966 vrf_bitmap_unset (zclient->redist[afi][type], vrf_id);
1967 }
1968 }
1969
1970 if (zclient->sock > 0)
1971 zebra_redistribute_send (command, zclient, afi, type, instance, vrf_id);
1972 }
1973
1974
1975 void
1976 zclient_redistribute_default (int command, struct zclient *zclient,
1977 vrf_id_t vrf_id)
1978 {
1979
1980 if (command == ZEBRA_REDISTRIBUTE_DEFAULT_ADD)
1981 {
1982 if (vrf_bitmap_check (zclient->default_information, vrf_id))
1983 return;
1984 vrf_bitmap_set (zclient->default_information, vrf_id);
1985 }
1986 else
1987 {
1988 if (!vrf_bitmap_check (zclient->default_information, vrf_id))
1989 return;
1990 vrf_bitmap_unset (zclient->default_information, vrf_id);
1991 }
1992
1993 if (zclient->sock > 0)
1994 zebra_message_send (zclient, command, vrf_id);
1995 }
1996
1997 static void
1998 zclient_event (enum event event, struct zclient *zclient)
1999 {
2000 switch (event)
2001 {
2002 case ZCLIENT_SCHEDULE:
2003 if (! zclient->t_connect)
2004 zclient->t_connect =
2005 thread_add_event (zclient->master, zclient_connect, zclient, 0);
2006 break;
2007 case ZCLIENT_CONNECT:
2008 if (zclient_debug)
2009 zlog_debug ("zclient connect failures: %d schedule interval is now %d",
2010 zclient->fail, zclient->fail < 3 ? 10 : 60);
2011 if (! zclient->t_connect)
2012 zclient->t_connect =
2013 thread_add_timer (zclient->master, zclient_connect, zclient,
2014 zclient->fail < 3 ? 10 : 60);
2015 break;
2016 case ZCLIENT_READ:
2017 zclient->t_read =
2018 thread_add_read (zclient->master, zclient_read, zclient, zclient->sock);
2019 break;
2020 }
2021 }
2022
2023 const char *zclient_serv_path_get()
2024 {
2025 return zclient_serv_path ? zclient_serv_path : ZEBRA_SERV_PATH;
2026 }
2027
2028 void
2029 zclient_serv_path_set (char *path)
2030 {
2031 struct stat sb;
2032
2033 /* reset */
2034 zclient_serv_path = NULL;
2035
2036 /* test if `path' is socket. don't set it otherwise. */
2037 if (stat(path, &sb) == -1)
2038 {
2039 zlog_warn ("%s: zebra socket `%s' does not exist", __func__, path);
2040 return;
2041 }
2042
2043 if ((sb.st_mode & S_IFMT) != S_IFSOCK)
2044 {
2045 zlog_warn ("%s: `%s' is not unix socket, sir", __func__, path);
2046 return;
2047 }
2048
2049 /* it seems that path is unix socket */
2050 zclient_serv_path = path;
2051 }
2052