]> git.proxmox.com Git - mirror_frr.git/blame - lib/zclient.c
bgpd: update debugs enance
[mirror_frr.git] / lib / zclient.c
CommitLineData
718e3744 1/* Zebra's client library.
2 * Copyright (C) 1999 Kunihiro Ishiguro
634f9ea2 3 * Copyright (C) 2005 Andrew J. Schorr
718e3744 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"
634f9ea2 27#include "buffer.h"
718e3744 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"
5b30316e 35#include "nexthop.h"
fea12efb 36#include "mpls.h"
6b0655a2 37
4a1ab8e4 38DEFINE_MTYPE_STATIC(LIB, ZCLIENT, "Zclient")
14878121 39DEFINE_MTYPE_STATIC(LIB, REDIST_INST, "Redistribution instance IDs")
4a1ab8e4 40
718e3744 41/* Zebra client events. */
42enum event {ZCLIENT_SCHEDULE, ZCLIENT_READ, ZCLIENT_CONNECT};
43
44/* Prototype for event manager. */
45static void zclient_event (enum event, struct zclient *);
46
744f4685 47const char *zclient_serv_path = NULL;
b5114685 48
718e3744 49/* This file local debug flag. */
50int zclient_debug = 0;
6b0655a2 51
718e3744 52/* Allocate zclient structure. */
53struct zclient *
4140ca4d 54zclient_new (struct thread_master *master)
718e3744 55{
56 struct zclient *zclient;
393deb9b 57 zclient = XCALLOC (MTYPE_ZCLIENT, sizeof (struct zclient));
718e3744 58
59 zclient->ibuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
60 zclient->obuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
634f9ea2 61 zclient->wb = buffer_new(0);
4140ca4d 62 zclient->master = master;
718e3744 63
64 return zclient;
65}
66
228da428 67/* This function is only called when exiting, because
634f9ea2 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.
634f9ea2 70
228da428 71 Free zclient structure. */
718e3744 72void
73zclient_free (struct zclient *zclient)
74{
634f9ea2 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
718e3744 82 XFREE (MTYPE_ZCLIENT, zclient);
83}
84
43e7c3b4 85u_short *
7c8ff89e
DS
86redist_check_instance (struct redist_proto *red, u_short instance)
87{
88 struct listnode *node;
89 u_short *id;
90
91 if (!red->instances)
43e7c3b4 92 return NULL;
7c8ff89e
DS
93
94 for (ALL_LIST_ELEMENTS_RO (red->instances, node, id))
95 if (*id == instance)
43e7c3b4 96 return id;
7c8ff89e 97
43e7c3b4 98 return NULL;
7c8ff89e
DS
99}
100
101void
102redist_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
14878121 111 in = XMALLOC (MTYPE_REDIST_INST, sizeof(u_short));
7c8ff89e
DS
112 *in = instance;
113 listnode_add (red->instances, in);
114}
115
116void
117redist_del_instance (struct redist_proto *red, u_short instance)
118{
43e7c3b4 119 u_short *id;
7c8ff89e 120
43e7c3b4
RW
121 id = redist_check_instance (red, instance);
122 if (! id)
24873f0c 123 return;
7c8ff89e 124
43e7c3b4 125 listnode_delete(red->instances, id);
14878121 126 XFREE (MTYPE_REDIST_INST, id);
43e7c3b4 127 if (!red->instances->count)
7c8ff89e 128 {
43e7c3b4
RW
129 red->enabled = 0;
130 list_free(red->instances);
131 red->instances = NULL;
7c8ff89e
DS
132 }
133}
134
718e3744 135/* Stop zebra client services. */
136void
137zclient_stop (struct zclient *zclient)
138{
615d4265
DL
139 afi_t afi;
140 int i;
141
718e3744 142 if (zclient_debug)
8ddca704 143 zlog_debug ("zclient stopped");
718e3744 144
145 /* Stop threads. */
634f9ea2 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);
718e3744 156
157 /* Close socket. */
158 if (zclient->sock >= 0)
159 {
160 close (zclient->sock);
161 zclient->sock = -1;
162 }
163 zclient->fail = 0;
615d4265
DL
164
165 for (afi = AFI_IP; afi < AFI_MAX; afi++)
41246cb6
DS
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
615d4265
DL
176 vrf_bitmap_free(zclient->default_information);
177 zclient->default_information = VRF_BITMAP_NULL;
718e3744 178}
179
180void
181zclient_reset (struct zclient *zclient)
182{
7076bb2f 183 afi_t afi;
3d68677e 184
718e3744 185 zclient_stop (zclient);
3d68677e
DS
186
187 for (afi = AFI_IP; afi < AFI_MAX; afi++)
7076bb2f 188 redist_del_instance (&zclient->mi_redist[afi][zclient->redist_default], zclient->instance);
3d68677e 189
7c8ff89e 190 zclient_init (zclient, zclient->redist_default, zclient->instance);
718e3744 191}
192
b5114685
VT
193#ifdef HAVE_TCP_ZEBRA
194
718e3744 195/* Make socket to zebra daemon. Return zebra socket. */
b5114685 196static int
634f9ea2 197zclient_socket(void)
718e3744 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);
6f0e3f6e 212#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
718e3744 213 serv.sin_len = sizeof (struct sockaddr_in);
6f0e3f6e 214#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
718e3744 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 {
b0e67bb0
DS
221 if (zclient_debug)
222 zlog_warn ("%s connect failure: %d(%s)", __PRETTY_FUNCTION__,
223 errno, safe_strerror (errno));
718e3744 224 close (sock);
225 return -1;
226 }
227 return sock;
228}
229
3414d035 230#else
b5114685 231
718e3744 232/* For sockaddr_un. */
233#include <sys/un.h>
234
1b91e000 235static int
8c328f11 236zclient_socket_un (const char *path)
718e3744 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));
6f0e3f6e 250#ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
718e3744 251 len = addr.sun_len = SUN_LEN(&addr);
252#else
253 len = sizeof (addr.sun_family) + strlen (addr.sun_path);
6f0e3f6e 254#endif /* HAVE_STRUCT_SOCKADDR_UN_SUN_LEN */
718e3744 255
256 ret = connect (sock, (struct sockaddr *) &addr, len);
257 if (ret < 0)
258 {
b0e67bb0
DS
259 if (zclient_debug)
260 zlog_warn ("%s connect failure: %d(%s)", __PRETTY_FUNCTION__,
261 errno, safe_strerror (errno));
718e3744 262 close (sock);
263 return -1;
264 }
265 return sock;
266}
267
3414d035
VT
268#endif /* HAVE_TCP_ZEBRA */
269
b5114685
VT
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 */
277int
278zclient_socket_connect (struct zclient *zclient)
279{
280#ifdef HAVE_TCP_ZEBRA
281 zclient->sock = zclient_socket ();
282#else
12e41d03 283 zclient->sock = zclient_socket_un (zclient_serv_path_get());
b5114685
VT
284#endif
285 return zclient->sock;
286}
287
634f9ea2 288static int
289zclient_failed(struct zclient *zclient)
290{
291 zclient->fail++;
292 zclient_stop(zclient);
293 zclient_event(ZCLIENT_CONNECT, zclient);
294 return -1;
295}
296
297static int
298zclient_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:
4140ca4d 313 zclient->t_write = thread_add_write(zclient->master, zclient_flush_data,
634f9ea2 314 zclient, zclient->sock);
315 break;
316 case BUFFER_EMPTY:
317 break;
318 }
319 return 0;
320}
321
718e3744 322int
634f9ea2 323zclient_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:
4140ca4d 339 THREAD_WRITE_ON(zclient->master, zclient->t_write,
634f9ea2 340 zclient_flush_data, zclient, zclient->sock);
341 break;
342 }
343 return 0;
344}
345
d211086a 346void
7076bb2f 347zclient_create_header (struct stream *s, uint16_t command, vrf_id_t vrf_id)
c1b9800a 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);
7076bb2f 353 stream_putw (s, vrf_id);
c1b9800a 354 stream_putw (s, command);
355}
356
55119089
ND
357int
358zclient_read_header (struct stream *s, int sock, u_int16_t *size, u_char *marker,
e7a2870b 359 u_char *version, vrf_id_t *vrf_id, u_int16_t *cmd)
55119089
ND
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
195dd232
DS
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
55119089
ND
377 if (*size && stream_read (s, sock, *size) != *size)
378 return -1;
379
380 return 0;
381}
382
634f9ea2 383/* Send simple Zebra message. */
384static int
7076bb2f 385zebra_message_send (struct zclient *zclient, int command, vrf_id_t vrf_id)
718e3744 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. */
7076bb2f 394 zclient_create_header (s, command, vrf_id);
c1b9800a 395
634f9ea2 396 return zclient_send_message(zclient);
718e3744 397}
398
2ea1ab1c
VT
399static int
400zebra_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
7076bb2f
FL
409 /* The VRF ID in the HELLO message is always 0. */
410 zclient_create_header (s, ZEBRA_HELLO, VRF_DEFAULT);
2ea1ab1c 411 stream_putc (s, zclient->redist_default);
7c8ff89e 412 stream_putw (s, zclient->instance);
2ea1ab1c
VT
413 stream_putw_at (s, 0, stream_get_endp (s));
414 return zclient_send_message(zclient);
415 }
416
417 return 0;
418}
419
0e5223e7 420/* Send register requests to zebra daemon for the information in a VRF. */
7076bb2f 421void
0e5223e7 422zclient_send_reg_requests (struct zclient *zclient, vrf_id_t vrf_id)
7076bb2f
FL
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)
0e5223e7 436 zlog_debug ("%s: send register messages for VRF %u", __func__, vrf_id);
7076bb2f
FL
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
0e5223e7 475/* Send unregister requests to zebra daemon for the information in a VRF. */
476void
477zclient_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
4a04e5f7 530/* Send request to zebra daemon to start or stop RA. */
531void
532zclient_send_interface_radv_req (struct zclient *zclient, vrf_id_t vrf_id,
5c81b96a 533 struct interface *ifp, int enable, int ra_interval)
4a04e5f7 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);
5c81b96a 555 stream_putl (s, ra_interval);
4a04e5f7 556
557 stream_putw_at (s, 0, stream_get_endp (s));
558
559 zclient_send_message(zclient);
560}
561
718e3744 562/* Make connection to zebra daemon. */
563int
564zclient_start (struct zclient *zclient)
565{
7076bb2f
FL
566 if (zclient_debug)
567 zlog_info ("zclient_start is called");
568
569 /* zclient is disabled. */
570 if (! zclient->enable)
571 return 0;
718e3744 572
718e3744 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
b0e67bb0 581 if (zclient_socket_connect(zclient) < 0)
7076bb2f
FL
582 {
583 if (zclient_debug)
584 zlog_debug ("zclient connection fail");
585 zclient->fail++;
586 zclient_event (ZCLIENT_CONNECT, zclient);
587 return -1;
588 }
718e3744 589
7076bb2f
FL
590 if (set_nonblocking(zclient->sock) < 0)
591 zlog_warn("%s: set_nonblocking(%d) failed", __func__, zclient->sock);
718e3744 592
7076bb2f
FL
593 /* Clear fail count. */
594 zclient->fail = 0;
595 if (zclient_debug)
596 zlog_debug ("zclient connect success with socket [%d]", zclient->sock);
718e3744 597
7076bb2f
FL
598 /* Create read thread. */
599 zclient_event (ZCLIENT_READ, zclient);
718e3744 600
7076bb2f 601 zebra_hello_send (zclient);
718e3744 602
7076bb2f
FL
603 /* Inform the successful connection. */
604 if (zclient->zebra_connected)
605 (*zclient->zebra_connected) (zclient);
718e3744 606
7076bb2f 607 return 0;
718e3744 608}
6b0655a2 609
078430f6
DS
610/* Initialize zebra client. Argument redist_default is unwanted
611 redistribute route type. */
612void
613zclient_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++)
7076bb2f 626 zclient->redist[afi][i] = vrf_bitmap_init();
078430f6
DS
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++)
7076bb2f 634 redist_add_instance (&zclient->mi_redist[afi][redist_default], instance);
078430f6
DS
635
636 /* Set default-information redistribute to zero. */
7076bb2f 637 zclient->default_information = vrf_bitmap_init ();;
078430f6
DS
638
639 if (zclient_debug)
640 zlog_debug ("zclient_start is called");
641
7076bb2f
FL
642 zclient_event (ZCLIENT_SCHEDULE, zclient);
643}
078430f6 644
7076bb2f
FL
645/* This function is a wrapper function for calling zclient_start from
646 timer or event thread. */
647static int
648zclient_connect (struct thread *t)
649{
650 struct zclient *zclient;
078430f6 651
7076bb2f
FL
652 zclient = THREAD_ARG (t);
653 zclient->t_connect = NULL;
078430f6 654
078430f6 655 if (zclient_debug)
7076bb2f 656 zlog_debug ("zclient_connect is called");
078430f6 657
7076bb2f 658 return zclient_start (zclient);
078430f6
DS
659}
660
0a589359 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 *
c8a1cb5c
DS
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 *
0a589359 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 *
dc9ffce8 718 * If ZAPI_MESSAGE_TAG is set, the tag value is written as a 4 byte value
0d9551dc 719 *
c50ca33a
TT
720 * If ZAPI_MESSAGE_MTU is set, the mtu value is written as a 4 byte value
721 *
0a589359 722 * XXX: No attention paid to alignment.
723 */
718e3744 724int
0a589359 725zapi_ipv4_route (u_char cmd, struct zclient *zclient, struct prefix_ipv4 *p,
726 struct zapi_ipv4 *api)
718e3744 727{
728 int i;
729 int psize;
730 struct stream *s;
731
732 /* Reset stream. */
733 s = zclient->obuf;
734 stream_reset (s);
7076bb2f
FL
735
736 zclient_create_header (s, cmd, api->vrf_id);
c1b9800a 737
738 /* Put type and nexthop. */
718e3744 739 stream_putc (s, api->type);
7c8ff89e 740 stream_putw (s, api->instance);
0fc452dc 741 stream_putl (s, api->flags);
718e3744 742 stream_putc (s, api->message);
5a616c08 743 stream_putw (s, api->safi);
718e3744 744
718e3744 745 /* Put prefix information. */
746 psize = PSIZE (p->prefixlen);
747 stream_putc (s, p->prefixlen);
0a589359 748 stream_write (s, (u_char *) & p->prefix, psize);
718e3744 749
750 /* Nexthop, ifindex, distance and metric information. */
d44ca835 751 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
c8a1cb5c
DS
752 {
753 /* traditional 32-bit data units */
595db7f1 754 if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE))
755 {
756 stream_putc (s, 1);
5b30316e 757 stream_putc (s, NEXTHOP_TYPE_BLACKHOLE);
0a589359 758 /* XXX assert(api->nexthop_num == 0); */
759 /* XXX assert(api->ifindex_num == 0); */
595db7f1 760 }
761 else
762 stream_putc (s, api->nexthop_num + api->ifindex_num);
718e3744 763
764 for (i = 0; i < api->nexthop_num; i++)
595db7f1 765 {
5b30316e 766 stream_putc (s, NEXTHOP_TYPE_IPV4);
595db7f1 767 stream_put_in_addr (s, api->nexthop[i]);
768 }
718e3744 769 for (i = 0; i < api->ifindex_num; i++)
595db7f1 770 {
5b30316e 771 stream_putc (s, NEXTHOP_TYPE_IFINDEX);
595db7f1 772 stream_putl (s, api->ifindex[i]);
773 }
718e3744 774 }
775
776 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_DISTANCE))
777 stream_putc (s, api->distance);
778 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_METRIC))
779 stream_putl (s, api->metric);
0d9551dc 780 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_TAG))
dc9ffce8 781 stream_putl (s, api->tag);
c50ca33a
TT
782 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_MTU))
783 stream_putl (s, api->mtu);
718e3744 784
785 /* Put length at the first point of the stream. */
786 stream_putw_at (s, 0, stream_get_endp (s));
787
634f9ea2 788 return zclient_send_message(zclient);
718e3744 789}
790
8a92a8a0
DS
791int
792zapi_ipv4_route_ipv6_nexthop (u_char cmd, struct zclient *zclient,
793 struct prefix_ipv4 *p, struct zapi_ipv6 *api)
794{
795 int i;
796 int psize;
797 struct stream *s;
798
799 /* Reset stream. */
800 s = zclient->obuf;
801 stream_reset (s);
802
7076bb2f 803 zclient_create_header (s, cmd, api->vrf_id);
8a92a8a0
DS
804
805 /* Put type and nexthop. */
806 stream_putc (s, api->type);
807 stream_putw (s, api->instance);
0fc452dc 808 stream_putl (s, api->flags);
8a92a8a0
DS
809 stream_putc (s, api->message);
810 stream_putw (s, api->safi);
811
812 /* Put prefix information. */
813 psize = PSIZE (p->prefixlen);
814 stream_putc (s, p->prefixlen);
815 stream_write (s, (u_char *) & p->prefix, psize);
816
817 /* Nexthop, ifindex, distance and metric information. */
818 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
819 {
820 if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE))
821 {
822 stream_putc (s, 1);
5b30316e 823 stream_putc (s, NEXTHOP_TYPE_BLACKHOLE);
8a92a8a0
DS
824 /* XXX assert(api->nexthop_num == 0); */
825 /* XXX assert(api->ifindex_num == 0); */
826 }
827 else
828 stream_putc (s, api->nexthop_num + api->ifindex_num);
829
830 for (i = 0; i < api->nexthop_num; i++)
831 {
5b30316e 832 stream_putc (s, NEXTHOP_TYPE_IPV6);
8a92a8a0
DS
833 stream_write (s, (u_char *)api->nexthop[i], 16);
834 }
835 for (i = 0; i < api->ifindex_num; i++)
836 {
5b30316e 837 stream_putc (s, NEXTHOP_TYPE_IFINDEX);
8a92a8a0
DS
838 stream_putl (s, api->ifindex[i]);
839 }
840 }
841
842 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_DISTANCE))
843 stream_putc (s, api->distance);
844 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_METRIC))
845 stream_putl (s, api->metric);
846 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_TAG))
dc9ffce8 847 stream_putl (s, api->tag);
c50ca33a
TT
848 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_MTU))
849 stream_putl (s, api->mtu);
8a92a8a0
DS
850
851 /* Put length at the first point of the stream. */
852 stream_putw_at (s, 0, stream_get_endp (s));
853
854 return zclient_send_message(zclient);
855}
856
718e3744 857int
0a589359 858zapi_ipv6_route (u_char cmd, struct zclient *zclient, struct prefix_ipv6 *p,
d75f3b00 859 struct prefix_ipv6 *src_p, struct zapi_ipv6 *api)
718e3744 860{
861 int i;
862 int psize;
863 struct stream *s;
864
d75f3b00
DL
865 /* either we have !SRCPFX && src_p == NULL, or SRCPFX && src_p != NULL */
866 assert (!(api->message & ZAPI_MESSAGE_SRCPFX) == !src_p);
867
718e3744 868 /* Reset stream. */
869 s = zclient->obuf;
870 stream_reset (s);
871
7076bb2f 872 zclient_create_header (s, cmd, api->vrf_id);
718e3744 873
c1b9800a 874 /* Put type and nexthop. */
718e3744 875 stream_putc (s, api->type);
7c8ff89e 876 stream_putw (s, api->instance);
0fc452dc 877 stream_putl (s, api->flags);
718e3744 878 stream_putc (s, api->message);
c7ec179a 879 stream_putw (s, api->safi);
718e3744 880
881 /* Put prefix information. */
882 psize = PSIZE (p->prefixlen);
883 stream_putc (s, p->prefixlen);
884 stream_write (s, (u_char *)&p->prefix, psize);
885
d75f3b00
DL
886 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_SRCPFX))
887 {
888 psize = PSIZE (src_p->prefixlen);
889 stream_putc (s, src_p->prefixlen);
890 stream_write (s, (u_char *)&src_p->prefix, psize);
891 }
892
718e3744 893 /* Nexthop, ifindex, distance and metric information. */
894 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
895 {
c3c0ac83
DS
896 if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE))
897 {
898 stream_putc (s, 1);
5b30316e 899 stream_putc (s, NEXTHOP_TYPE_BLACKHOLE);
c3c0ac83
DS
900 /* XXX assert(api->nexthop_num == 0); */
901 /* XXX assert(api->ifindex_num == 0); */
902 }
903 else
904 stream_putc (s, api->nexthop_num + api->ifindex_num);
718e3744 905
906 for (i = 0; i < api->nexthop_num; i++)
907 {
5b30316e 908 stream_putc (s, NEXTHOP_TYPE_IPV6);
718e3744 909 stream_write (s, (u_char *)api->nexthop[i], 16);
910 }
911 for (i = 0; i < api->ifindex_num; i++)
912 {
5b30316e 913 stream_putc (s, NEXTHOP_TYPE_IFINDEX);
718e3744 914 stream_putl (s, api->ifindex[i]);
915 }
916 }
917
918 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_DISTANCE))
919 stream_putc (s, api->distance);
920 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_METRIC))
921 stream_putl (s, api->metric);
0d9551dc 922 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_TAG))
dc9ffce8 923 stream_putl (s, api->tag);
c50ca33a
TT
924 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_MTU))
925 stream_putl (s, api->mtu);
718e3744 926
927 /* Put length at the first point of the stream. */
928 stream_putw_at (s, 0, stream_get_endp (s));
929
634f9ea2 930 return zclient_send_message(zclient);
718e3744 931}
718e3744 932
0a589359 933/*
934 * send a ZEBRA_REDISTRIBUTE_ADD or ZEBRA_REDISTRIBUTE_DELETE
935 * for the route type (ZEBRA_ROUTE_KERNEL etc.). The zebra server will
936 * then set/unset redist[type] in the client handle (a struct zserv) for the
937 * sending client
938 */
718e3744 939int
8bb0831e 940zebra_redistribute_send (int command, struct zclient *zclient, afi_t afi, int type,
7076bb2f 941 u_short instance, vrf_id_t vrf_id)
718e3744 942{
718e3744 943 struct stream *s;
944
634f9ea2 945 s = zclient->obuf;
946 stream_reset(s);
718e3744 947
7076bb2f 948 zclient_create_header (s, command, vrf_id);
8bb0831e 949 stream_putc (s, afi);
718e3744 950 stream_putc (s, type);
7c8ff89e 951 stream_putw (s, instance);
c1b9800a 952
953 stream_putw_at (s, 0, stream_get_endp (s));
954
634f9ea2 955 return zclient_send_message(zclient);
718e3744 956}
957
d9178828
PJ
958/* Get prefix in ZServ format; family should be filled in on prefix */
959static void
960zclient_stream_get_prefix (struct stream *s, struct prefix *p)
961{
962 size_t plen = prefix_blen (p);
963 u_char c;
964 p->prefixlen = 0;
965
966 if (plen == 0)
967 return;
968
969 stream_get (&p->u.prefix, s, plen);
970 c = stream_getc(s);
971 p->prefixlen = MIN(plen * 8, c);
972}
973
18a6dce6 974/* Router-id update from zebra daemon. */
975void
976zebra_router_id_update_read (struct stream *s, struct prefix *rid)
977{
18a6dce6 978 /* Fetch interface address. */
979 rid->family = stream_getc (s);
d9178828
PJ
980
981 zclient_stream_get_prefix (s, rid);
18a6dce6 982}
983
718e3744 984/* Interface addition from zebra daemon. */
0a589359 985/*
986 * The format of the message sent with type ZEBRA_INTERFACE_ADD or
987 * ZEBRA_INTERFACE_DELETE from zebra to the client is:
988 * 0 1 2 3
989 * 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
0a589359 990 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
991 * | ifname |
992 * | |
993 * | |
994 * | |
995 * | |
996 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
16f1b9ee
OD
997 * | ifindex |
998 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
999 * | status |
0a589359 1000 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
16f1b9ee 1001 * | if_flags |
c77d4546 1002 * | |
0a589359 1003 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
16f1b9ee
OD
1004 * | metric |
1005 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2d7f0d76
DS
1006 * | speed |
1007 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
16f1b9ee
OD
1008 * | ifmtu |
1009 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1010 * | ifmtu6 |
1011 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1012 * | bandwidth |
1013 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1014 * | Link Layer Type |
0a589359 1015 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
16f1b9ee 1016 * | Harware Address Length |
0a589359 1017 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
16f1b9ee
OD
1018 * | Hardware Address if HW lenght different from 0 |
1019 * | ... max INTERFACE_HWADDR_MAX |
0a589359 1020 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
16f1b9ee 1021 * | Link_params? | Whether a link-params follows: 1 or 0.
0a589359 1022 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
16f1b9ee
OD
1023 * | Link_params 0 or 1 INTERFACE_LINK_PARAMS_SIZE sized |
1024 * | .... (struct if_link_params). |
0a589359 1025 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1026 */
1027
2fcc254e 1028static void
ebe32f70 1029zclient_vrf_add (struct zclient *zclient, vrf_id_t vrf_id)
1892f15e
DS
1030{
1031 struct vrf *vrf;
1032 char vrfname_tmp[VRF_NAMSIZ];
1033
1034 /* Read interface name. */
ebe32f70 1035 stream_get (vrfname_tmp, zclient->ibuf, VRF_NAMSIZ);
1892f15e
DS
1036
1037 /* Lookup/create vrf by vrf_id. */
1038 vrf = vrf_get (vrf_id, vrfname_tmp);
1039
2fcc254e 1040 vrf_enable (vrf);
1892f15e
DS
1041}
1042
2fcc254e 1043static void
ebe32f70 1044zclient_vrf_delete (struct zclient *zclient, vrf_id_t vrf_id)
1892f15e
DS
1045{
1046 struct vrf *vrf;
1047
1048 /* Lookup vrf by vrf_id. */
5f3d1bdf 1049 vrf = vrf_lookup_by_id (vrf_id);
1892f15e 1050
beef1990
DS
1051 /*
1052 * If a routing protocol doesn't know about a
1053 * vrf that is about to be deleted. There is
1054 * no point in attempting to delete it.
1055 */
1056 if (!vrf)
1057 return;
1058
2fcc254e 1059 vrf_delete (vrf);
1892f15e
DS
1060}
1061
718e3744 1062struct interface *
7076bb2f 1063zebra_interface_add_read (struct stream *s, vrf_id_t vrf_id)
718e3744 1064{
1065 struct interface *ifp;
02ff83c5 1066 char ifname_tmp[INTERFACE_NAMSIZ];
718e3744 1067
1068 /* Read interface name. */
1069 stream_get (ifname_tmp, s, INTERFACE_NAMSIZ);
1070
a349198f 1071 /* Lookup/create interface by name. */
07a112a1
DS
1072 ifp = if_get_by_name_len (ifname_tmp,
1073 strnlen (ifname_tmp, INTERFACE_NAMSIZ),
1074 vrf_id, 0);
718e3744 1075
51d4ef83 1076 zebra_interface_if_set_value (s, ifp);
718e3744 1077
718e3744 1078 return ifp;
1079}
1080
0a589359 1081/*
1082 * Read interface up/down msg (ZEBRA_INTERFACE_UP/ZEBRA_INTERFACE_DOWN)
1083 * from zebra server. The format of this message is the same as
1084 * that sent for ZEBRA_INTERFACE_ADD/ZEBRA_INTERFACE_DELETE (see
1085 * comments for zebra_interface_add_read), except that no sockaddr_dl
1086 * is sent at the tail of the message.
1087 */
718e3744 1088struct interface *
7076bb2f 1089zebra_interface_state_read (struct stream *s, vrf_id_t vrf_id)
718e3744 1090{
1091 struct interface *ifp;
02ff83c5 1092 char ifname_tmp[INTERFACE_NAMSIZ];
718e3744 1093
1094 /* Read interface name. */
1095 stream_get (ifname_tmp, s, INTERFACE_NAMSIZ);
1096
1097 /* Lookup this by interface index. */
fa787f91
DS
1098 ifp = if_lookup_by_name_len (ifname_tmp,
1099 strnlen (ifname_tmp, INTERFACE_NAMSIZ),
1100 vrf_id);
b4dd5eaa 1101 if (ifp == NULL)
1102 {
1103 zlog_warn ("INTERFACE_STATE: Cannot find IF %s in VRF %d",
1104 ifname_tmp, vrf_id);
1105 return NULL;
1106 }
718e3744 1107
51d4ef83 1108 zebra_interface_if_set_value (s, ifp);
718e3744 1109
1110 return ifp;
1111}
1112
16f1b9ee
OD
1113static void
1114link_params_set_value(struct stream *s, struct if_link_params *iflp)
1115{
1116
1117 if (iflp == NULL)
1118 return;
1119
1120 iflp->lp_status = stream_getl (s);
1121 iflp->te_metric = stream_getl (s);
1122 iflp->max_bw = stream_getf (s);
1123 iflp->max_rsv_bw = stream_getf (s);
1124 uint32_t bwclassnum = stream_getl (s);
1125 {
1126 unsigned int i;
1127 for (i = 0; i < bwclassnum && i < MAX_CLASS_TYPE; i++)
1128 iflp->unrsv_bw[i] = stream_getf (s);
1129 if (i < bwclassnum)
1130 zlog_err ("%s: received %d > %d (MAX_CLASS_TYPE) bw entries"
1131 " - outdated library?",
1132 __func__, bwclassnum, MAX_CLASS_TYPE);
1133 }
1134 iflp->admin_grp = stream_getl (s);
1135 iflp->rmt_as = stream_getl (s);
1136 iflp->rmt_ip.s_addr = stream_get_ipv4 (s);
1137
1138 iflp->av_delay = stream_getl (s);
1139 iflp->min_delay = stream_getl (s);
1140 iflp->max_delay = stream_getl (s);
1141 iflp->delay_var = stream_getl (s);
1142
1143 iflp->pkt_loss = stream_getf (s);
1144 iflp->res_bw = stream_getf (s);
1145 iflp->ava_bw = stream_getf (s);
1146 iflp->use_bw = stream_getf (s);
1147}
1148
1149struct interface *
1150zebra_interface_link_params_read (struct stream *s)
1151{
1152 struct if_link_params *iflp;
c28e5b2a
DS
1153 ifindex_t ifindex;
1154
1155 assert (s);
1156
1157 ifindex = stream_getl (s);
16f1b9ee 1158
7e2b7603 1159 struct interface *ifp = if_lookup_by_index (ifindex, VRF_DEFAULT);
16f1b9ee 1160
c28e5b2a 1161 if (ifp == NULL)
16f1b9ee
OD
1162 {
1163 zlog_err ("%s: unknown ifindex %u, shouldn't happen",
1164 __func__, ifindex);
1165 return NULL;
1166 }
1167
1168 if ((iflp = if_link_params_get (ifp)) == NULL)
1169 return NULL;
1170
1171 link_params_set_value(s, iflp);
1172
1173 return ifp;
1174}
1175
1176void
1177zebra_interface_if_set_value (struct stream *s, struct interface *ifp)
1178{
1179 u_char link_params_status = 0;
1180
1181 /* Read interface's index. */
1182 ifp->ifindex = stream_getl (s);
1183 ifp->status = stream_getc (s);
1184
1185 /* Read interface's value. */
1186 ifp->flags = stream_getq (s);
1187 ifp->ptm_enable = stream_getc (s);
1188 ifp->ptm_status = stream_getc (s);
1189 ifp->metric = stream_getl (s);
2d7f0d76 1190 ifp->speed = stream_getl (s);
16f1b9ee
OD
1191 ifp->mtu = stream_getl (s);
1192 ifp->mtu6 = stream_getl (s);
1193 ifp->bandwidth = stream_getl (s);
1194 ifp->ll_type = stream_getl (s);
1195 ifp->hw_addr_len = stream_getl (s);
1196 if (ifp->hw_addr_len)
1197 stream_get (ifp->hw_addr, s, MIN(ifp->hw_addr_len, INTERFACE_HWADDR_MAX));
1198
1199 /* Read Traffic Engineering status */
1200 link_params_status = stream_getc (s);
1201 /* Then, Traffic Engineering parameters if any */
1202 if (link_params_status)
1203 {
1204 struct if_link_params *iflp = if_link_params_get (ifp);
1205 link_params_set_value(s, iflp);
1206 }
1207}
1208
1209size_t
1210zebra_interface_link_params_write (struct stream *s, struct interface *ifp)
1211{
1212 size_t w;
1213 struct if_link_params *iflp;
1214 int i;
1215
1216 if (s == NULL || ifp == NULL || ifp->link_params == NULL)
1217 return 0;
1218
1219 iflp = ifp->link_params;
1220 w = 0;
1221
1222 w += stream_putl (s, iflp->lp_status);
1223
1224 w += stream_putl (s, iflp->te_metric);
1225 w += stream_putf (s, iflp->max_bw);
1226 w += stream_putf (s, iflp->max_rsv_bw);
1227
1228 w += stream_putl (s, MAX_CLASS_TYPE);
1229 for (i = 0; i < MAX_CLASS_TYPE; i++)
1230 w += stream_putf (s, iflp->unrsv_bw[i]);
1231
1232 w += stream_putl (s, iflp->admin_grp);
1233 w += stream_putl (s, iflp->rmt_as);
1234 w += stream_put_in_addr (s, &iflp->rmt_ip);
1235
1236 w += stream_putl (s, iflp->av_delay);
1237 w += stream_putl (s, iflp->min_delay);
1238 w += stream_putl (s, iflp->max_delay);
1239 w += stream_putl (s, iflp->delay_var);
1240
1241 w += stream_putf (s, iflp->pkt_loss);
1242 w += stream_putf (s, iflp->res_bw);
1243 w += stream_putf (s, iflp->ava_bw);
1244 w += stream_putf (s, iflp->use_bw);
1245
1246 return w;
1247}
1248
1249/*
0a589359 1250 * format of message for address additon is:
1251 * 0
1252 * 0 1 2 3 4 5 6 7
1253 * +-+-+-+-+-+-+-+-+
1254 * | type | ZEBRA_INTERFACE_ADDRESS_ADD or
1255 * +-+-+-+-+-+-+-+-+ ZEBRA_INTERFACE_ADDRES_DELETE
1256 * | |
1257 * + +
1258 * | ifindex |
1259 * + +
1260 * | |
1261 * + +
1262 * | |
1263 * +-+-+-+-+-+-+-+-+
1264 * | ifc_flags | flags for connected address
1265 * +-+-+-+-+-+-+-+-+
1266 * | addr_family |
1267 * +-+-+-+-+-+-+-+-+
1268 * | addr... |
1269 * : :
1270 * | |
1271 * +-+-+-+-+-+-+-+-+
1272 * | addr_len | len of addr. E.g., addr_len = 4 for ipv4 addrs.
1273 * +-+-+-+-+-+-+-+-+
1274 * | daddr.. |
1275 * : :
1276 * | |
1277 * +-+-+-+-+-+-+-+-+
0a589359 1278 */
1279
3fb9cd6e 1280static int
1281memconstant(const void *s, int c, size_t n)
1282{
1283 const u_char *p = s;
1284
1285 while (n-- > 0)
1286 if (*p++ != c)
1287 return 0;
1288 return 1;
1289}
1290
d5a5c8f0 1291
718e3744 1292struct connected *
7076bb2f 1293zebra_interface_address_read (int type, struct stream *s, vrf_id_t vrf_id)
718e3744 1294{
b892f1dd 1295 ifindex_t ifindex;
718e3744 1296 struct interface *ifp;
1297 struct connected *ifc;
d9178828 1298 struct prefix p, d, *dp;
718e3744 1299 int plen;
0a589359 1300 u_char ifc_flags;
718e3744 1301
0a589359 1302 memset (&p, 0, sizeof(p));
1303 memset (&d, 0, sizeof(d));
718e3744 1304
1305 /* Get interface index. */
1306 ifindex = stream_getl (s);
1307
1308 /* Lookup index. */
7e2b7603 1309 ifp = if_lookup_by_index (ifindex, vrf_id);
718e3744 1310 if (ifp == NULL)
1311 {
b4dd5eaa 1312 zlog_warn ("INTERFACE_ADDRESS_%s: Cannot find IF %u in VRF %d",
1313 (type == ZEBRA_INTERFACE_ADDRESS_ADD) ? "ADD" : "DEL",
1314 ifindex, vrf_id);
718e3744 1315 return NULL;
1316 }
1317
1318 /* Fetch flag. */
0a589359 1319 ifc_flags = stream_getc (s);
718e3744 1320
1321 /* Fetch interface address. */
d9178828
PJ
1322 d.family = p.family = stream_getc (s);
1323 plen = prefix_blen (&d);
1324
1325 zclient_stream_get_prefix (s, &p);
718e3744 1326
1327 /* Fetch destination address. */
0a589359 1328 stream_get (&d.u.prefix, s, plen);
d9178828
PJ
1329
1330 /* N.B. NULL destination pointers are encoded as all zeroes */
1331 dp = memconstant(&d.u.prefix,0,plen) ? NULL : &d;
1332
0a589359 1333 if (type == ZEBRA_INTERFACE_ADDRESS_ADD)
1334 {
38485402
DS
1335 ifc = connected_lookup_prefix_exact (ifp, &p);
1336 if (!ifc)
1337 {
1338 /* N.B. NULL destination pointers are encoded as all zeroes */
d9178828 1339 ifc = connected_add_by_prefix(ifp, &p, dp);
38485402
DS
1340 }
1341 if (ifc)
e4529636
AS
1342 {
1343 ifc->flags = ifc_flags;
1344 if (ifc->destination)
1345 ifc->destination->prefixlen = ifc->address->prefixlen;
90444ca3
DL
1346 else if (CHECK_FLAG(ifc->flags, ZEBRA_IFA_PEER))
1347 {
1348 /* carp interfaces on OpenBSD with 0.0.0.0/0 as "peer" */
855110bb 1349 char buf[PREFIX_STRLEN];
90444ca3
DL
1350 zlog_warn("warning: interface %s address %s "
1351 "with peer flag set, but no peer address!",
855110bb
TT
1352 ifp->name,
1353 prefix2str (ifc->address, buf, sizeof buf));
90444ca3
DL
1354 UNSET_FLAG(ifc->flags, ZEBRA_IFA_PEER);
1355 }
e4529636 1356 }
0a589359 1357 }
1358 else
1359 {
1360 assert (type == ZEBRA_INTERFACE_ADDRESS_DELETE);
1361 ifc = connected_delete_by_prefix(ifp, &p);
1362 }
718e3744 1363
1364 return ifc;
1365}
0a589359 1366
a80beece
DS
1367/*
1368 * format of message for neighbor connected address is:
1369 * 0
1370 * 0 1 2 3 4 5 6 7
1371 * +-+-+-+-+-+-+-+-+
1372 * | type | ZEBRA_INTERFACE_NBR_ADDRESS_ADD or
1373 * +-+-+-+-+-+-+-+-+ ZEBRA_INTERFACE_NBR_ADDRES_DELETE
1374 * | |
1375 * + +
1376 * | ifindex |
1377 * + +
1378 * | |
1379 * + +
1380 * | |
1381 * +-+-+-+-+-+-+-+-+
1382 * | addr_family |
1383 * +-+-+-+-+-+-+-+-+
1384 * | addr... |
1385 * : :
1386 * | |
1387 * +-+-+-+-+-+-+-+-+
1388 * | addr_len | len of addr.
1389 * +-+-+-+-+-+-+-+-+
1390 */
1391struct nbr_connected *
7076bb2f 1392zebra_interface_nbr_address_read (int type, struct stream *s, vrf_id_t vrf_id)
a80beece
DS
1393{
1394 unsigned int ifindex;
1395 struct interface *ifp;
1396 struct prefix p;
1397 struct nbr_connected *ifc;
1398
1399 /* Get interface index. */
1400 ifindex = stream_getl (s);
1401
1402 /* Lookup index. */
7e2b7603 1403 ifp = if_lookup_by_index (ifindex, vrf_id);
a80beece
DS
1404 if (ifp == NULL)
1405 {
f1aa3df6 1406 zlog_warn ("INTERFACE_NBR_%s: Cannot find IF %u in VRF %d",
1407 (type == ZEBRA_INTERFACE_NBR_ADDRESS_ADD) ? "ADD" : "DELETE",
1408 ifindex, vrf_id);
a80beece
DS
1409 return NULL;
1410 }
1411
1412 p.family = stream_getc (s);
1413 stream_get (&p.u.prefix, s, prefix_blen (&p));
1414 p.prefixlen = stream_getc (s);
1415
1416 if (type == ZEBRA_INTERFACE_NBR_ADDRESS_ADD)
1417 {
1418 /* Currently only supporting P2P links, so any new RA source address is
1419 considered as the replacement of the previously learnt Link-Local address. */
1420 if (!(ifc = listnode_head(ifp->nbr_connected)))
1421 {
1422 ifc = nbr_connected_new ();
1423 ifc->address = prefix_new ();
1424 ifc->ifp = ifp;
1425 listnode_add (ifp->nbr_connected, ifc);
1426 }
1427
1428 prefix_copy(ifc->address, &p);
1429 }
1430 else
1431 {
1432 assert (type == ZEBRA_INTERFACE_NBR_ADDRESS_DELETE);
1433
1434 ifc = nbr_connected_check(ifp, &p);
1435 if (ifc)
1436 listnode_delete (ifp->nbr_connected, ifc);
1437 }
1438
1439 return ifc;
1440}
6b0655a2 1441
c8e264b6 1442struct interface *
1443zebra_interface_vrf_update_read (struct stream *s, vrf_id_t vrf_id,
1444 vrf_id_t *new_vrf_id)
1445{
1446 unsigned int ifindex;
1447 struct interface *ifp;
1448 vrf_id_t new_id = VRF_DEFAULT;
1449
1450 /* Get interface index. */
1451 ifindex = stream_getl (s);
1452
1453 /* Lookup interface. */
7e2b7603 1454 ifp = if_lookup_by_index (ifindex, vrf_id);
c8e264b6 1455 if (ifp == NULL)
1456 {
1457 zlog_warn ("INTERFACE_VRF_UPDATE: Cannot find IF %u in VRF %d",
1458 ifindex, vrf_id);
1459 return NULL;
1460 }
1461
1462 /* Fetch new VRF Id. */
1463 new_id = stream_getw (s);
1464
1465 *new_vrf_id = new_id;
1466 return ifp;
1467}
fea12efb 1468/**
1469 * Connect to label manager in a syncronous way
1470 *
1471 * It first writes the request to zcient output buffer and then
1472 * immediately reads the answer from the input buffer.
1473 *
1474 * @param zclient Zclient used to connect to label manager (zebra)
1475 * @result Result of response
1476 */
1477int
1478lm_label_manager_connect (struct zclient *zclient)
1479{
1480 int ret;
1481 struct stream *s;
1482 u_char result;
1483 u_int16_t size;
1484 u_char marker;
1485 u_char version;
1486 vrf_id_t vrf_id;
1487 u_int16_t cmd;
1488
1489 zlog_debug ("Connecting to Label Manager");
1490 if (zclient->sock < 0)
1491 return -1;
1492
1493 /* send request */
1494 s = zclient->obuf;
1495 stream_reset (s);
1496 zclient_create_header (s, ZEBRA_LABEL_MANAGER_CONNECT, VRF_DEFAULT);
1497
1498 /* proto */
1499 stream_putc (s, zclient->redist_default);
1500 /* instance */
1501 stream_putw (s, zclient->instance);
1502
1503 /* Put length at the first point of the stream. */
1504 stream_putw_at(s, 0, stream_get_endp(s));
1505
1506 ret = writen (zclient->sock, s->data, stream_get_endp (s));
1507 if (ret < 0)
1508 {
1509 zlog_err ("%s: can't write to zclient->sock", __func__);
1510 close (zclient->sock);
1511 zclient->sock = -1;
1512 return -1;
1513 }
1514 if (ret == 0)
1515 {
1516 zlog_err ("%s: zclient->sock connection closed", __func__);
1517 close (zclient->sock);
1518 zclient->sock = -1;
1519 return -1;
1520 }
1521 zlog_debug ("%s: Label manager connect request (%d bytes) sent", __func__, ret);
1522
1523 /* read response */
1524 s = zclient->ibuf;
1525 stream_reset (s);
1526
1527 ret = zclient_read_header (s, zclient->sock, &size, &marker, &version,
1528 &vrf_id, &cmd);
1529 if (ret != 0 || cmd != ZEBRA_LABEL_MANAGER_CONNECT) {
1530 zlog_err ("%s: Invalid Label Manager Connect Message Reply Header", __func__);
1531 return -1;
1532 }
1533 /* result */
1534 result = stream_getc(s);
1535 zlog_debug ("%s: Label Manager connect response (%d bytes) received, result %u",
1536 __func__, size, result);
1537
1538 return (int)result;
1539}
1540
1541/**
1542 * Function to request a label chunk in a syncronous way
1543 *
1544 * It first writes the request to zlcient output buffer and then
1545 * immediately reads the answer from the input buffer.
1546 *
1547 * @param zclient Zclient used to connect to label manager (zebra)
1548 * @param keep Avoid garbage collection
1549 * @param chunk_size Amount of labels requested
1550 * @param start To write first assigned chunk label to
1551 * @param end To write last assigned chunk label to
1552 * @result 0 on success, -1 otherwise
1553 */
1554int
1555lm_get_label_chunk (struct zclient *zclient, u_char keep, uint32_t chunk_size,
1556 uint32_t *start, uint32_t *end)
1557{
1558 int ret;
1559 struct stream *s;
1560 u_int16_t size;
1561 u_char marker;
1562 u_char version;
1563 vrf_id_t vrf_id;
1564 u_int16_t cmd;
1565 u_char response_keep;
1566
1567 zlog_debug ("Getting Label Chunk");
1568 if (zclient->sock < 0)
1569 return -1;
1570
1571 /* send request */
1572 s = zclient->obuf;
1573 stream_reset (s);
1574 zclient_create_header (s, ZEBRA_GET_LABEL_CHUNK, VRF_DEFAULT);
1575 /* keep */
1576 stream_putc (s, keep);
1577 /* chunk size */
1578 stream_putl (s, chunk_size);
1579 /* Put length at the first point of the stream. */
1580 stream_putw_at(s, 0, stream_get_endp(s));
1581
1582 ret = writen (zclient->sock, s->data, stream_get_endp (s));
1583 if (ret < 0)
1584 {
1585 zlog_err ("%s: can't write to zclient->sock", __func__);
1586 close (zclient->sock);
1587 zclient->sock = -1;
1588 return -1;
1589 }
1590 if (ret == 0)
1591 {
1592 zlog_err ("%s: zclient->sock connection closed", __func__);
1593 close (zclient->sock);
1594 zclient->sock = -1;
1595 return -1;
1596 }
1597 zlog_debug ("%s: Label chunk request (%d bytes) sent", __func__, ret);
1598
1599 /* read response */
1600 s = zclient->ibuf;
1601 stream_reset (s);
1602
1603 ret = zclient_read_header (s, zclient->sock, &size, &marker, &version,
1604 &vrf_id, &cmd);
1605 if (ret != 0 || cmd != ZEBRA_GET_LABEL_CHUNK) {
1606 zlog_err ("%s: Invalid Get Label Chunk Message Reply Header", __func__);
1607 return -1;
1608 }
1609 zlog_debug ("%s: Label chunk response (%d bytes) received", __func__, size);
1610 /* keep */
1611 response_keep = stream_getc(s);
1612 /* start and end labels */
1613 *start = stream_getl(s);
1614 *end = stream_getl(s);
1615
1616 /* not owning this response */
1617 if (keep != response_keep) {
1618 zlog_err ("%s: Invalid Label chunk: %u - %u, keeps mismatch %u != %u",
1619 __func__, *start, *end, keep, response_keep);
1620 }
1621 /* sanity */
1622 if (*start > *end
1623 || *start < MPLS_MIN_UNRESERVED_LABEL
1624 || *end > MPLS_MAX_UNRESERVED_LABEL) {
1625 zlog_err ("%s: Invalid Label chunk: %u - %u", __func__,
1626 *start, *end);
1627 return -1;
1628 }
1629
1630 zlog_debug ("Label Chunk assign: %u - %u (%u) ",
1631 *start, *end, response_keep);
1632
1633 return 0;
1634}
1635
1636/**
1637 * Function to release a label chunk
1638 *
1639 * @param zclient Zclient used to connect to label manager (zebra)
1640 * @param start First label of chunk
1641 * @param end Last label of chunk
1642 * @result 0 on success, -1 otherwise
1643 */
1644int
1645lm_release_label_chunk (struct zclient *zclient, uint32_t start, uint32_t end)
1646{
1647 int ret;
1648 struct stream *s;
1649
1650 zlog_debug ("Releasing Label Chunk");
1651 if (zclient->sock < 0)
1652 return -1;
1653
1654 /* send request */
1655 s = zclient->obuf;
1656 stream_reset (s);
1657 zclient_create_header (s, ZEBRA_RELEASE_LABEL_CHUNK, VRF_DEFAULT);
1658
1659 /* start */
1660 stream_putl (s, start);
1661 /* end */
1662 stream_putl (s, end);
1663
1664 /* Put length at the first point of the stream. */
1665 stream_putw_at(s, 0, stream_get_endp(s));
1666
1667 ret = writen (zclient->sock, s->data, stream_get_endp (s));
1668 if (ret < 0)
1669 {
1670 zlog_err ("%s: can't write to zclient->sock", __func__);
1671 close (zclient->sock);
1672 zclient->sock = -1;
1673 return -1;
1674 }
1675 if (ret == 0)
1676 {
1677 zlog_err ("%s: zclient->sock connection closed", __func__);
1678 close (zclient->sock);
1679 zclient->sock = -1;
1680 return -1;
1681 }
1682
1683 return 0;
1684}
c8e264b6 1685
718e3744 1686/* Zebra client message read function. */
634f9ea2 1687static int
718e3744 1688zclient_read (struct thread *thread)
1689{
634f9ea2 1690 size_t already;
c1b9800a 1691 uint16_t length, command;
1692 uint8_t marker, version;
7076bb2f 1693 vrf_id_t vrf_id;
718e3744 1694 struct zclient *zclient;
1695
1696 /* Get socket to zebra. */
718e3744 1697 zclient = THREAD_ARG (thread);
1698 zclient->t_read = NULL;
1699
634f9ea2 1700 /* Read zebra header (if we don't have it already). */
1701 if ((already = stream_get_endp(zclient->ibuf)) < ZEBRA_HEADER_SIZE)
718e3744 1702 {
634f9ea2 1703 ssize_t nbyte;
1704 if (((nbyte = stream_read_try(zclient->ibuf, zclient->sock,
1705 ZEBRA_HEADER_SIZE-already)) == 0) ||
1706 (nbyte == -1))
1707 {
1708 if (zclient_debug)
1709 zlog_debug ("zclient connection closed socket [%d].", zclient->sock);
1710 return zclient_failed(zclient);
1711 }
1712 if (nbyte != (ssize_t)(ZEBRA_HEADER_SIZE-already))
1713 {
1714 /* Try again later. */
1715 zclient_event (ZCLIENT_READ, zclient);
1716 return 0;
1717 }
1718 already = ZEBRA_HEADER_SIZE;
718e3744 1719 }
1720
634f9ea2 1721 /* Reset to read from the beginning of the incoming packet. */
1722 stream_set_getp(zclient->ibuf, 0);
718e3744 1723
c1b9800a 1724 /* Fetch header values. */
718e3744 1725 length = stream_getw (zclient->ibuf);
c1b9800a 1726 marker = stream_getc (zclient->ibuf);
1727 version = stream_getc (zclient->ibuf);
7076bb2f 1728 vrf_id = stream_getw (zclient->ibuf);
c1b9800a 1729 command = stream_getw (zclient->ibuf);
1730
1731 if (marker != ZEBRA_HEADER_MARKER || version != ZSERV_VERSION)
1732 {
1733 zlog_err("%s: socket %d version mismatch, marker %d, version %d",
1734 __func__, zclient->sock, marker, version);
1735 return zclient_failed(zclient);
1736 }
1737
634f9ea2 1738 if (length < ZEBRA_HEADER_SIZE)
1739 {
1740 zlog_err("%s: socket %d message length %u is less than %d ",
1741 __func__, zclient->sock, length, ZEBRA_HEADER_SIZE);
1742 return zclient_failed(zclient);
1743 }
1744
718e3744 1745 /* Length check. */
634f9ea2 1746 if (length > STREAM_SIZE(zclient->ibuf))
718e3744 1747 {
634f9ea2 1748 struct stream *ns;
1749 zlog_warn("%s: message size %u exceeds buffer size %lu, expanding...",
1750 __func__, length, (u_long)STREAM_SIZE(zclient->ibuf));
1751 ns = stream_new(length);
1752 stream_copy(ns, zclient->ibuf);
718e3744 1753 stream_free (zclient->ibuf);
634f9ea2 1754 zclient->ibuf = ns;
718e3744 1755 }
718e3744 1756
1757 /* Read rest of zebra packet. */
634f9ea2 1758 if (already < length)
1759 {
1760 ssize_t nbyte;
1761 if (((nbyte = stream_read_try(zclient->ibuf, zclient->sock,
1762 length-already)) == 0) ||
1763 (nbyte == -1))
1764 {
1765 if (zclient_debug)
1766 zlog_debug("zclient connection closed socket [%d].", zclient->sock);
1767 return zclient_failed(zclient);
1768 }
1769 if (nbyte != (ssize_t)(length-already))
1770 {
1771 /* Try again later. */
1772 zclient_event (ZCLIENT_READ, zclient);
1773 return 0;
1774 }
1775 }
1776
1777 length -= ZEBRA_HEADER_SIZE;
718e3744 1778
0a589359 1779 if (zclient_debug)
7076bb2f 1780 zlog_debug("zclient 0x%p command 0x%x VRF %u\n", (void *)zclient, command, vrf_id);
0a589359 1781
718e3744 1782 switch (command)
1783 {
18a6dce6 1784 case ZEBRA_ROUTER_ID_UPDATE:
1785 if (zclient->router_id_update)
7076bb2f 1786 (*zclient->router_id_update) (command, zclient, length, vrf_id);
18a6dce6 1787 break;
1892f15e 1788 case ZEBRA_VRF_ADD:
ebe32f70 1789 zclient_vrf_add (zclient, vrf_id);
1892f15e
DS
1790 break;
1791 case ZEBRA_VRF_DELETE:
ebe32f70 1792 zclient_vrf_delete (zclient, vrf_id);
1892f15e 1793 break;
718e3744 1794 case ZEBRA_INTERFACE_ADD:
1795 if (zclient->interface_add)
7076bb2f 1796 (*zclient->interface_add) (command, zclient, length, vrf_id);
718e3744 1797 break;
1798 case ZEBRA_INTERFACE_DELETE:
1799 if (zclient->interface_delete)
7076bb2f 1800 (*zclient->interface_delete) (command, zclient, length, vrf_id);
718e3744 1801 break;
1802 case ZEBRA_INTERFACE_ADDRESS_ADD:
1803 if (zclient->interface_address_add)
7076bb2f 1804 (*zclient->interface_address_add) (command, zclient, length, vrf_id);
718e3744 1805 break;
1806 case ZEBRA_INTERFACE_ADDRESS_DELETE:
1807 if (zclient->interface_address_delete)
7076bb2f 1808 (*zclient->interface_address_delete) (command, zclient, length, vrf_id);
718e3744 1809 break;
68fe91d6 1810 case ZEBRA_INTERFACE_BFD_DEST_UPDATE:
1811 if (zclient->interface_bfd_dest_update)
7076bb2f 1812 (*zclient->interface_bfd_dest_update) (command, zclient, length, vrf_id);
d5a5c8f0 1813 break;
a80beece
DS
1814 case ZEBRA_INTERFACE_NBR_ADDRESS_ADD:
1815 if (zclient->interface_nbr_address_add)
7076bb2f 1816 (*zclient->interface_nbr_address_add) (command, zclient, length, vrf_id);
a80beece
DS
1817 break;
1818 case ZEBRA_INTERFACE_NBR_ADDRESS_DELETE:
1819 if (zclient->interface_nbr_address_delete)
7076bb2f 1820 (*zclient->interface_nbr_address_delete) (command, zclient, length, vrf_id);
a80beece 1821 break;
718e3744 1822 case ZEBRA_INTERFACE_UP:
1823 if (zclient->interface_up)
7076bb2f 1824 (*zclient->interface_up) (command, zclient, length, vrf_id);
718e3744 1825 break;
1826 case ZEBRA_INTERFACE_DOWN:
1827 if (zclient->interface_down)
7076bb2f 1828 (*zclient->interface_down) (command, zclient, length, vrf_id);
c8e264b6 1829 break;
1830 case ZEBRA_INTERFACE_VRF_UPDATE:
1831 if (zclient->interface_vrf_update)
1832 (*zclient->interface_vrf_update) (command, zclient, length, vrf_id);
718e3744 1833 break;
fb018d25
DS
1834 case ZEBRA_NEXTHOP_UPDATE:
1835 if (zclient_debug)
1836 zlog_debug("zclient rcvd nexthop update\n");
1837 if (zclient->nexthop_update)
7076bb2f 1838 (*zclient->nexthop_update) (command, zclient, length, vrf_id);
fb018d25 1839 break;
078430f6
DS
1840 case ZEBRA_IMPORT_CHECK_UPDATE:
1841 if (zclient_debug)
1842 zlog_debug("zclient rcvd import check update\n");
1843 if (zclient->import_check_update)
7076bb2f 1844 (*zclient->import_check_update) (command, zclient, length, vrf_id);
078430f6 1845 break;
c43ed2e4
DS
1846 case ZEBRA_BFD_DEST_REPLAY:
1847 if (zclient->bfd_dest_replay)
7076bb2f 1848 (*zclient->bfd_dest_replay) (command, zclient, length, vrf_id);
c43ed2e4 1849 break;
5048fe14 1850 case ZEBRA_REDISTRIBUTE_IPV4_ADD:
1851 if (zclient->redistribute_route_ipv4_add)
7076bb2f 1852 (*zclient->redistribute_route_ipv4_add) (command, zclient, length, vrf_id);
5048fe14 1853 break;
1854 case ZEBRA_REDISTRIBUTE_IPV4_DEL:
1855 if (zclient->redistribute_route_ipv4_del)
7076bb2f 1856 (*zclient->redistribute_route_ipv4_del) (command, zclient, length, vrf_id);
5048fe14 1857 break;
1858 case ZEBRA_REDISTRIBUTE_IPV6_ADD:
1859 if (zclient->redistribute_route_ipv6_add)
7076bb2f 1860 (*zclient->redistribute_route_ipv6_add) (command, zclient, length, vrf_id);
5048fe14 1861 break;
1862 case ZEBRA_REDISTRIBUTE_IPV6_DEL:
1863 if (zclient->redistribute_route_ipv6_del)
7076bb2f 1864 (*zclient->redistribute_route_ipv6_del) (command, zclient, length, vrf_id);
5cd459e8 1865 break;
16f1b9ee
OD
1866 case ZEBRA_INTERFACE_LINK_PARAMS:
1867 if (zclient->interface_link_params)
1868 (*zclient->interface_link_params) (command, zclient, length);
5048fe14 1869 break;
5aba114a
DS
1870 case ZEBRA_FEC_UPDATE:
1871 if (zclient_debug)
1872 zlog_debug("zclient rcvd fec update\n");
1873 if (zclient->fec_update)
1874 (*zclient->fec_update) (command, zclient, length);
1875 break;
718e3744 1876 default:
1877 break;
1878 }
1879
634f9ea2 1880 if (zclient->sock < 0)
1881 /* Connection was closed during packet processing. */
1882 return -1;
1883
718e3744 1884 /* Register read thread. */
634f9ea2 1885 stream_reset(zclient->ibuf);
718e3744 1886 zclient_event (ZCLIENT_READ, zclient);
1887
1888 return 0;
1889}
1890
1891void
8bb0831e 1892zclient_redistribute (int command, struct zclient *zclient, afi_t afi, int type,
7076bb2f 1893 u_short instance, vrf_id_t vrf_id)
718e3744 1894{
718e3744 1895
7076bb2f
FL
1896 if (instance) {
1897 if (command == ZEBRA_REDISTRIBUTE_ADD)
1898 {
1899 if (redist_check_instance(&zclient->mi_redist[afi][type], instance))
1900 return;
1901 redist_add_instance(&zclient->mi_redist[afi][type], instance);
1902 }
1903 else
1904 {
1905 if (!redist_check_instance(&zclient->mi_redist[afi][type], instance))
1906 return;
1907 redist_del_instance(&zclient->mi_redist[afi][type], instance);
1908 }
1909
1910 } else {
1911 if (command == ZEBRA_REDISTRIBUTE_ADD)
1912 {
1913 if (vrf_bitmap_check (zclient->redist[afi][type], vrf_id))
1914 return;
1915 vrf_bitmap_set (zclient->redist[afi][type], vrf_id);
1916 }
1917 else
1918 {
1919 if (!vrf_bitmap_check (zclient->redist[afi][type], vrf_id))
1920 return;
1921 vrf_bitmap_unset (zclient->redist[afi][type], vrf_id);
1922 }
1923 }
718e3744 1924
1925 if (zclient->sock > 0)
7076bb2f 1926 zebra_redistribute_send (command, zclient, afi, type, instance, vrf_id);
718e3744 1927}
1928
718e3744 1929
1930void
7076bb2f
FL
1931zclient_redistribute_default (int command, struct zclient *zclient,
1932 vrf_id_t vrf_id)
718e3744 1933{
718e3744 1934
0a589359 1935 if (command == ZEBRA_REDISTRIBUTE_DEFAULT_ADD)
1936 {
7076bb2f 1937 if (vrf_bitmap_check (zclient->default_information, vrf_id))
0a589359 1938 return;
7076bb2f 1939 vrf_bitmap_set (zclient->default_information, vrf_id);
0a589359 1940 }
1941 else
1942 {
7076bb2f 1943 if (!vrf_bitmap_check (zclient->default_information, vrf_id))
0a589359 1944 return;
7076bb2f 1945 vrf_bitmap_unset (zclient->default_information, vrf_id);
0a589359 1946 }
718e3744 1947
1948 if (zclient->sock > 0)
7076bb2f 1949 zebra_message_send (zclient, command, vrf_id);
718e3744 1950}
1951
718e3744 1952static void
1953zclient_event (enum event event, struct zclient *zclient)
1954{
1955 switch (event)
1956 {
1957 case ZCLIENT_SCHEDULE:
1958 if (! zclient->t_connect)
1959 zclient->t_connect =
4140ca4d 1960 thread_add_event (zclient->master, zclient_connect, zclient, 0);
718e3744 1961 break;
1962 case ZCLIENT_CONNECT:
718e3744 1963 if (zclient_debug)
b0e67bb0
DS
1964 zlog_debug ("zclient connect failures: %d schedule interval is now %d",
1965 zclient->fail, zclient->fail < 3 ? 10 : 60);
718e3744 1966 if (! zclient->t_connect)
1967 zclient->t_connect =
4140ca4d 1968 thread_add_timer (zclient->master, zclient_connect, zclient,
718e3744 1969 zclient->fail < 3 ? 10 : 60);
1970 break;
1971 case ZCLIENT_READ:
1972 zclient->t_read =
4140ca4d 1973 thread_add_read (zclient->master, zclient_read, zclient, zclient->sock);
718e3744 1974 break;
1975 }
1976}
b5114685 1977
744f4685 1978const char *zclient_serv_path_get()
12e41d03
DL
1979{
1980 return zclient_serv_path ? zclient_serv_path : ZEBRA_SERV_PATH;
1981}
1982
b5114685
VT
1983void
1984zclient_serv_path_set (char *path)
1985{
1986 struct stat sb;
1987
1988 /* reset */
1989 zclient_serv_path = NULL;
1990
1991 /* test if `path' is socket. don't set it otherwise. */
1992 if (stat(path, &sb) == -1)
1993 {
1994 zlog_warn ("%s: zebra socket `%s' does not exist", __func__, path);
1995 return;
1996 }
1997
1998 if ((sb.st_mode & S_IFMT) != S_IFSOCK)
1999 {
2000 zlog_warn ("%s: `%s' is not unix socket, sir", __func__, path);
2001 return;
2002 }
2003
2004 /* it seems that path is unix socket */
2005 zclient_serv_path = path;
2006}
2007