blob: 0ce46fefd7fc28491706e4bfbd21305299ae265b [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Zebra's client library.
2 * Copyright (C) 1999 Kunihiro Ishiguro
ajs634f9ea2005-04-11 15:51:40 +00003 * Copyright (C) 2005 Andrew J. Schorr
paul718e3742002-12-13 20:15:29 +00004 *
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"
ajs634f9ea2005-04-11 15:51:40 +000027#include "buffer.h"
paul718e3742002-12-13 20:15:29 +000028#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"
David Lamparter6b0655a2014-06-04 06:53:35 +020035
paul718e3742002-12-13 20:15:29 +000036/* Zebra client events. */
37enum event {ZCLIENT_SCHEDULE, ZCLIENT_READ, ZCLIENT_CONNECT};
38
39/* Prototype for event manager. */
40static void zclient_event (enum event, struct zclient *);
41
ajs634f9ea2005-04-11 15:51:40 +000042extern struct thread_master *master;
43
David Lamparterfd8f6eb2015-03-03 08:57:02 +010044const char *zclient_serv_path = NULL;
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +040045
paul718e3742002-12-13 20:15:29 +000046/* This file local debug flag. */
47int zclient_debug = 0;
David Lamparter6b0655a2014-06-04 06:53:35 +020048
paul718e3742002-12-13 20:15:29 +000049/* Allocate zclient structure. */
50struct zclient *
51zclient_new ()
52{
53 struct zclient *zclient;
Stephen Hemminger393deb92008-08-18 14:13:29 -070054 zclient = XCALLOC (MTYPE_ZCLIENT, sizeof (struct zclient));
paul718e3742002-12-13 20:15:29 +000055
56 zclient->ibuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
57 zclient->obuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
ajs634f9ea2005-04-11 15:51:40 +000058 zclient->wb = buffer_new(0);
paul718e3742002-12-13 20:15:29 +000059
60 return zclient;
61}
62
Chris Caputo228da422009-07-18 05:44:03 +000063/* This function is only called when exiting, because
ajs634f9ea2005-04-11 15:51:40 +000064 many parts of the code do not check for I/O errors, so they could
65 reference an invalid pointer if the structure was ever freed.
ajs634f9ea2005-04-11 15:51:40 +000066
Chris Caputo228da422009-07-18 05:44:03 +000067 Free zclient structure. */
paul718e3742002-12-13 20:15:29 +000068void
69zclient_free (struct zclient *zclient)
70{
ajs634f9ea2005-04-11 15:51:40 +000071 if (zclient->ibuf)
72 stream_free(zclient->ibuf);
73 if (zclient->obuf)
74 stream_free(zclient->obuf);
75 if (zclient->wb)
76 buffer_free(zclient->wb);
77
paul718e3742002-12-13 20:15:29 +000078 XFREE (MTYPE_ZCLIENT, zclient);
79}
80
81/* Initialize zebra client. Argument redist_default is unwanted
82 redistribute route type. */
83void
84zclient_init (struct zclient *zclient, int redist_default)
85{
86 int i;
87
88 /* Enable zebra client connection by default. */
89 zclient->enable = 1;
90
91 /* Set -1 to the default socket value. */
92 zclient->sock = -1;
93
94 /* Clear redistribution flags. */
95 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
Feng Luc99f3482014-10-16 09:52:36 +080096 zclient->redist[i] = vrf_bitmap_init ();
paul718e3742002-12-13 20:15:29 +000097
98 /* Set unwanted redistribute route. bgpd does not need BGP route
99 redistribution. */
100 zclient->redist_default = redist_default;
paul718e3742002-12-13 20:15:29 +0000101
102 /* Set default-information redistribute to zero. */
Feng Luc99f3482014-10-16 09:52:36 +0800103 zclient->default_information = vrf_bitmap_init ();
paul718e3742002-12-13 20:15:29 +0000104
105 /* Schedule first zclient connection. */
106 if (zclient_debug)
ajs8ddca702004-12-07 18:53:52 +0000107 zlog_debug ("zclient start scheduled");
paul718e3742002-12-13 20:15:29 +0000108
109 zclient_event (ZCLIENT_SCHEDULE, zclient);
110}
111
112/* Stop zebra client services. */
113void
114zclient_stop (struct zclient *zclient)
115{
116 if (zclient_debug)
ajs8ddca702004-12-07 18:53:52 +0000117 zlog_debug ("zclient stopped");
paul718e3742002-12-13 20:15:29 +0000118
119 /* Stop threads. */
ajs634f9ea2005-04-11 15:51:40 +0000120 THREAD_OFF(zclient->t_read);
121 THREAD_OFF(zclient->t_connect);
122 THREAD_OFF(zclient->t_write);
123
124 /* Reset streams. */
125 stream_reset(zclient->ibuf);
126 stream_reset(zclient->obuf);
127
128 /* Empty the write buffer. */
129 buffer_reset(zclient->wb);
paul718e3742002-12-13 20:15:29 +0000130
131 /* Close socket. */
132 if (zclient->sock >= 0)
133 {
134 close (zclient->sock);
135 zclient->sock = -1;
136 }
137 zclient->fail = 0;
138}
139
140void
141zclient_reset (struct zclient *zclient)
142{
143 zclient_stop (zclient);
144 zclient_init (zclient, zclient->redist_default);
145}
146
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400147#ifdef HAVE_TCP_ZEBRA
148
paul718e3742002-12-13 20:15:29 +0000149/* Make socket to zebra daemon. Return zebra socket. */
Everton Marques1a9352a2014-09-23 14:33:34 -0300150static int
ajs634f9ea2005-04-11 15:51:40 +0000151zclient_socket(void)
paul718e3742002-12-13 20:15:29 +0000152{
153 int sock;
154 int ret;
155 struct sockaddr_in serv;
156
157 /* We should think about IPv6 connection. */
158 sock = socket (AF_INET, SOCK_STREAM, 0);
159 if (sock < 0)
160 return -1;
161
162 /* Make server socket. */
163 memset (&serv, 0, sizeof (struct sockaddr_in));
164 serv.sin_family = AF_INET;
165 serv.sin_port = htons (ZEBRA_PORT);
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000166#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
paul718e3742002-12-13 20:15:29 +0000167 serv.sin_len = sizeof (struct sockaddr_in);
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000168#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
paul718e3742002-12-13 20:15:29 +0000169 serv.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
170
171 /* Connect to zebra. */
172 ret = connect (sock, (struct sockaddr *) &serv, sizeof (serv));
173 if (ret < 0)
174 {
175 close (sock);
176 return -1;
177 }
178 return sock;
179}
180
Vyacheslav Trushkin3414d032011-11-30 21:03:44 +0400181#else
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400182
paul718e3742002-12-13 20:15:29 +0000183/* For sockaddr_un. */
184#include <sys/un.h>
185
Everton Marques1a9352a2014-09-23 14:33:34 -0300186static int
hasso8c328f12004-10-05 21:01:23 +0000187zclient_socket_un (const char *path)
paul718e3742002-12-13 20:15:29 +0000188{
189 int ret;
190 int sock, len;
191 struct sockaddr_un addr;
192
193 sock = socket (AF_UNIX, SOCK_STREAM, 0);
194 if (sock < 0)
195 return -1;
196
197 /* Make server socket. */
198 memset (&addr, 0, sizeof (struct sockaddr_un));
199 addr.sun_family = AF_UNIX;
200 strncpy (addr.sun_path, path, strlen (path));
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000201#ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
paul718e3742002-12-13 20:15:29 +0000202 len = addr.sun_len = SUN_LEN(&addr);
203#else
204 len = sizeof (addr.sun_family) + strlen (addr.sun_path);
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000205#endif /* HAVE_STRUCT_SOCKADDR_UN_SUN_LEN */
paul718e3742002-12-13 20:15:29 +0000206
207 ret = connect (sock, (struct sockaddr *) &addr, len);
208 if (ret < 0)
209 {
210 close (sock);
211 return -1;
212 }
213 return sock;
214}
215
Vyacheslav Trushkin3414d032011-11-30 21:03:44 +0400216#endif /* HAVE_TCP_ZEBRA */
217
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400218/**
219 * Connect to zebra daemon.
220 * @param zclient a pointer to zclient structure
221 * @return socket fd just to make sure that connection established
222 * @see zclient_init
223 * @see zclient_new
224 */
225int
226zclient_socket_connect (struct zclient *zclient)
227{
228#ifdef HAVE_TCP_ZEBRA
229 zclient->sock = zclient_socket ();
230#else
Everton Marques1f298942014-08-21 15:47:28 -0300231 zclient->sock = zclient_socket_un (zclient_serv_path_get());
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400232#endif
233 return zclient->sock;
234}
235
ajs634f9ea2005-04-11 15:51:40 +0000236static int
237zclient_failed(struct zclient *zclient)
238{
239 zclient->fail++;
240 zclient_stop(zclient);
241 zclient_event(ZCLIENT_CONNECT, zclient);
242 return -1;
243}
244
245static int
246zclient_flush_data(struct thread *thread)
247{
248 struct zclient *zclient = THREAD_ARG(thread);
249
250 zclient->t_write = NULL;
251 if (zclient->sock < 0)
252 return -1;
253 switch (buffer_flush_available(zclient->wb, zclient->sock))
254 {
255 case BUFFER_ERROR:
256 zlog_warn("%s: buffer_flush_available failed on zclient fd %d, closing",
257 __func__, zclient->sock);
258 return zclient_failed(zclient);
259 break;
260 case BUFFER_PENDING:
261 zclient->t_write = thread_add_write(master, zclient_flush_data,
262 zclient, zclient->sock);
263 break;
264 case BUFFER_EMPTY:
265 break;
266 }
267 return 0;
268}
269
paul718e3742002-12-13 20:15:29 +0000270int
ajs634f9ea2005-04-11 15:51:40 +0000271zclient_send_message(struct zclient *zclient)
272{
273 if (zclient->sock < 0)
274 return -1;
275 switch (buffer_write(zclient->wb, zclient->sock, STREAM_DATA(zclient->obuf),
276 stream_get_endp(zclient->obuf)))
277 {
278 case BUFFER_ERROR:
279 zlog_warn("%s: buffer_write failed to zclient fd %d, closing",
280 __func__, zclient->sock);
281 return zclient_failed(zclient);
282 break;
283 case BUFFER_EMPTY:
284 THREAD_OFF(zclient->t_write);
285 break;
286 case BUFFER_PENDING:
287 THREAD_WRITE_ON(master, zclient->t_write,
288 zclient_flush_data, zclient, zclient->sock);
289 break;
290 }
291 return 0;
292}
293
pauld2110862006-01-17 17:43:18 +0000294void
Feng Luc99f3482014-10-16 09:52:36 +0800295zclient_create_header (struct stream *s, uint16_t command, vrf_id_t vrf_id)
paulc1b98002006-01-16 01:54:02 +0000296{
297 /* length placeholder, caller can update */
298 stream_putw (s, ZEBRA_HEADER_SIZE);
299 stream_putc (s, ZEBRA_HEADER_MARKER);
300 stream_putc (s, ZSERV_VERSION);
Feng Luc99f3482014-10-16 09:52:36 +0800301 stream_putw (s, vrf_id);
paulc1b98002006-01-16 01:54:02 +0000302 stream_putw (s, command);
303}
304
Nicolas Dichtel794c4732015-09-16 09:42:36 +0200305int
306zclient_read_header (struct stream *s, int sock, u_int16_t *size, u_char *marker,
307 u_char *version, u_int16_t *vrf_id, u_int16_t *cmd)
308{
309 if (stream_read (s, sock, ZEBRA_HEADER_SIZE) != ZEBRA_HEADER_SIZE)
310 return -1;
311
312 *size = stream_getw (s) - ZEBRA_HEADER_SIZE;
313 *marker = stream_getc (s);
314 *version = stream_getc (s);
315 *vrf_id = stream_getw (s);
316 *cmd = stream_getw (s);
317
Donald Sharpa9d4cb32015-09-17 10:54:25 -0400318 if (*version != ZSERV_VERSION || *marker != ZEBRA_HEADER_MARKER)
319 {
320 zlog_err("%s: socket %d version mismatch, marker %d, version %d",
321 __func__, sock, *marker, *version);
322 return -1;
323 }
324
Nicolas Dichtel794c4732015-09-16 09:42:36 +0200325 if (*size && stream_read (s, sock, *size) != *size)
326 return -1;
327
328 return 0;
329}
330
ajs634f9ea2005-04-11 15:51:40 +0000331/* Send simple Zebra message. */
332static int
Feng Luc99f3482014-10-16 09:52:36 +0800333zebra_message_send (struct zclient *zclient, int command, vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +0000334{
335 struct stream *s;
336
337 /* Get zclient output buffer. */
338 s = zclient->obuf;
339 stream_reset (s);
340
341 /* Send very simple command only Zebra message. */
Feng Luc99f3482014-10-16 09:52:36 +0800342 zclient_create_header (s, command, vrf_id);
paulc1b98002006-01-16 01:54:02 +0000343
ajs634f9ea2005-04-11 15:51:40 +0000344 return zclient_send_message(zclient);
paul718e3742002-12-13 20:15:29 +0000345}
346
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +0400347static int
348zebra_hello_send (struct zclient *zclient)
349{
350 struct stream *s;
351
352 if (zclient->redist_default)
353 {
354 s = zclient->obuf;
355 stream_reset (s);
356
Feng Luc99f3482014-10-16 09:52:36 +0800357 /* The VRF ID in the HELLO message is always 0. */
358 zclient_create_header (s, ZEBRA_HELLO, VRF_DEFAULT);
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +0400359 stream_putc (s, zclient->redist_default);
360 stream_putw_at (s, 0, stream_get_endp (s));
361 return zclient_send_message(zclient);
362 }
363
364 return 0;
365}
366
Feng Luc99f3482014-10-16 09:52:36 +0800367/* Send requests to zebra daemon for the information in a VRF. */
368void
369zclient_send_requests (struct zclient *zclient, vrf_id_t vrf_id)
370{
371 int i;
372
373 /* zclient is disabled. */
374 if (! zclient->enable)
375 return;
376
377 /* If not connected to the zebra yet. */
378 if (zclient->sock < 0)
379 return;
380
381 if (zclient_debug)
382 zlog_debug ("%s: send messages for VRF %u", __func__, vrf_id);
383
384 /* We need router-id information. */
385 zebra_message_send (zclient, ZEBRA_ROUTER_ID_ADD, vrf_id);
386
387 /* We need interface information. */
388 zebra_message_send (zclient, ZEBRA_INTERFACE_ADD, vrf_id);
389
390 /* Set unwanted redistribute route. */
391 vrf_bitmap_set (zclient->redist[zclient->redist_default], vrf_id);
392
393 /* Flush all redistribute request. */
394 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
395 if (i != zclient->redist_default &&
396 vrf_bitmap_check (zclient->redist[i], vrf_id))
397 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient, i, vrf_id);
398
399 /* If default information is needed. */
400 if (vrf_bitmap_check (zclient->default_information, VRF_DEFAULT))
401 zebra_message_send (zclient, ZEBRA_REDISTRIBUTE_DEFAULT_ADD, vrf_id);
402}
403
paul718e3742002-12-13 20:15:29 +0000404/* Make connection to zebra daemon. */
405int
406zclient_start (struct zclient *zclient)
407{
paul718e3742002-12-13 20:15:29 +0000408 if (zclient_debug)
ajs8ddca702004-12-07 18:53:52 +0000409 zlog_debug ("zclient_start is called");
paul718e3742002-12-13 20:15:29 +0000410
411 /* zclient is disabled. */
412 if (! zclient->enable)
413 return 0;
414
415 /* If already connected to the zebra. */
416 if (zclient->sock >= 0)
417 return 0;
418
419 /* Check connect thread. */
420 if (zclient->t_connect)
421 return 0;
422
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400423 if (zclient_socket_connect(zclient) < 0)
paul718e3742002-12-13 20:15:29 +0000424 {
425 if (zclient_debug)
ajs8ddca702004-12-07 18:53:52 +0000426 zlog_debug ("zclient connection fail");
paul718e3742002-12-13 20:15:29 +0000427 zclient->fail++;
428 zclient_event (ZCLIENT_CONNECT, zclient);
429 return -1;
430 }
431
ajs634f9ea2005-04-11 15:51:40 +0000432 if (set_nonblocking(zclient->sock) < 0)
433 zlog_warn("%s: set_nonblocking(%d) failed", __func__, zclient->sock);
434
paul718e3742002-12-13 20:15:29 +0000435 /* Clear fail count. */
436 zclient->fail = 0;
437 if (zclient_debug)
ajs8ddca702004-12-07 18:53:52 +0000438 zlog_debug ("zclient connect success with socket [%d]", zclient->sock);
paul718e3742002-12-13 20:15:29 +0000439
440 /* Create read thread. */
441 zclient_event (ZCLIENT_READ, zclient);
442
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +0400443 zebra_hello_send (zclient);
444
Feng Luc99f3482014-10-16 09:52:36 +0800445 /* Inform the successful connection. */
446 if (zclient->zebra_connected)
447 (*zclient->zebra_connected) (zclient);
paul718e3742002-12-13 20:15:29 +0000448
449 return 0;
450}
451
452/* This function is a wrapper function for calling zclient_start from
453 timer or event thread. */
ajs634f9ea2005-04-11 15:51:40 +0000454static int
paul718e3742002-12-13 20:15:29 +0000455zclient_connect (struct thread *t)
456{
457 struct zclient *zclient;
458
459 zclient = THREAD_ARG (t);
460 zclient->t_connect = NULL;
461
462 if (zclient_debug)
ajs8ddca702004-12-07 18:53:52 +0000463 zlog_debug ("zclient_connect is called");
paul718e3742002-12-13 20:15:29 +0000464
465 return zclient_start (zclient);
466}
David Lamparter6b0655a2014-06-04 06:53:35 +0200467
paul0a589352004-05-08 11:48:26 +0000468 /*
469 * "xdr_encode"-like interface that allows daemon (client) to send
470 * a message to zebra server for a route that needs to be
471 * added/deleted to the kernel. Info about the route is specified
472 * by the caller in a struct zapi_ipv4. zapi_ipv4_read() then writes
473 * the info down the zclient socket using the stream_* functions.
474 *
475 * The corresponding read ("xdr_decode") function on the server
476 * side is zread_ipv4_add()/zread_ipv4_delete().
477 *
478 * 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
479 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
480 * | Length (2) | Command | Route Type |
481 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
482 * | ZEBRA Flags | Message Flags | Prefix length |
483 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
484 * | Destination IPv4 Prefix for route |
485 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
486 * | Nexthop count |
487 * +-+-+-+-+-+-+-+-+
488 *
489 *
490 * A number of IPv4 nexthop(s) or nexthop interface index(es) are then
491 * described, as per the Nexthop count. Each nexthop described as:
492 *
493 * +-+-+-+-+-+-+-+-+
494 * | Nexthop Type | Set to one of ZEBRA_NEXTHOP_*
495 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
496 * | IPv4 Nexthop address or Interface Index number |
497 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
498 *
499 * Alternatively, if the flags field has ZEBRA_FLAG_BLACKHOLE or
500 * ZEBRA_FLAG_REJECT is set then Nexthop count is set to 1, then _no_
501 * nexthop information is provided, and the message describes a prefix
502 * to blackhole or reject route.
503 *
504 * If ZAPI_MESSAGE_DISTANCE is set, the distance value is written as a 1
505 * byte value.
506 *
507 * If ZAPI_MESSAGE_METRIC is set, the metric value is written as an 8
508 * byte value.
509 *
510 * XXX: No attention paid to alignment.
511 */
paul718e3742002-12-13 20:15:29 +0000512int
paul0a589352004-05-08 11:48:26 +0000513zapi_ipv4_route (u_char cmd, struct zclient *zclient, struct prefix_ipv4 *p,
514 struct zapi_ipv4 *api)
paul718e3742002-12-13 20:15:29 +0000515{
516 int i;
517 int psize;
518 struct stream *s;
519
520 /* Reset stream. */
521 s = zclient->obuf;
522 stream_reset (s);
Feng Luc99f3482014-10-16 09:52:36 +0800523
524 zclient_create_header (s, cmd, api->vrf_id);
paulc1b98002006-01-16 01:54:02 +0000525
526 /* Put type and nexthop. */
paul718e3742002-12-13 20:15:29 +0000527 stream_putc (s, api->type);
528 stream_putc (s, api->flags);
529 stream_putc (s, api->message);
G.Balaji5a616c02011-11-26 21:58:42 +0400530 stream_putw (s, api->safi);
paul0a589352004-05-08 11:48:26 +0000531
paul718e3742002-12-13 20:15:29 +0000532 /* Put prefix information. */
533 psize = PSIZE (p->prefixlen);
534 stream_putc (s, p->prefixlen);
paul0a589352004-05-08 11:48:26 +0000535 stream_write (s, (u_char *) & p->prefix, psize);
paul718e3742002-12-13 20:15:29 +0000536
537 /* Nexthop, ifindex, distance and metric information. */
538 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
539 {
paul595db7f2003-05-25 21:35:06 +0000540 if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE))
541 {
542 stream_putc (s, 1);
543 stream_putc (s, ZEBRA_NEXTHOP_BLACKHOLE);
paul0a589352004-05-08 11:48:26 +0000544 /* XXX assert(api->nexthop_num == 0); */
545 /* XXX assert(api->ifindex_num == 0); */
paul595db7f2003-05-25 21:35:06 +0000546 }
547 else
548 stream_putc (s, api->nexthop_num + api->ifindex_num);
paul718e3742002-12-13 20:15:29 +0000549
550 for (i = 0; i < api->nexthop_num; i++)
paul595db7f2003-05-25 21:35:06 +0000551 {
552 stream_putc (s, ZEBRA_NEXTHOP_IPV4);
553 stream_put_in_addr (s, api->nexthop[i]);
554 }
paul718e3742002-12-13 20:15:29 +0000555 for (i = 0; i < api->ifindex_num; i++)
paul595db7f2003-05-25 21:35:06 +0000556 {
557 stream_putc (s, ZEBRA_NEXTHOP_IFINDEX);
558 stream_putl (s, api->ifindex[i]);
559 }
paul718e3742002-12-13 20:15:29 +0000560 }
561
562 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_DISTANCE))
563 stream_putc (s, api->distance);
564 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_METRIC))
565 stream_putl (s, api->metric);
566
567 /* Put length at the first point of the stream. */
568 stream_putw_at (s, 0, stream_get_endp (s));
569
ajs634f9ea2005-04-11 15:51:40 +0000570 return zclient_send_message(zclient);
paul718e3742002-12-13 20:15:29 +0000571}
572
573#ifdef HAVE_IPV6
574int
paul0a589352004-05-08 11:48:26 +0000575zapi_ipv6_route (u_char cmd, struct zclient *zclient, struct prefix_ipv6 *p,
paul718e3742002-12-13 20:15:29 +0000576 struct zapi_ipv6 *api)
577{
578 int i;
579 int psize;
580 struct stream *s;
581
582 /* Reset stream. */
583 s = zclient->obuf;
584 stream_reset (s);
585
Feng Luc99f3482014-10-16 09:52:36 +0800586 zclient_create_header (s, cmd, api->vrf_id);
paul718e3742002-12-13 20:15:29 +0000587
paulc1b98002006-01-16 01:54:02 +0000588 /* Put type and nexthop. */
paul718e3742002-12-13 20:15:29 +0000589 stream_putc (s, api->type);
590 stream_putc (s, api->flags);
591 stream_putc (s, api->message);
G.Balajic7ec1792011-11-26 22:04:05 +0400592 stream_putw (s, api->safi);
paul718e3742002-12-13 20:15:29 +0000593
594 /* Put prefix information. */
595 psize = PSIZE (p->prefixlen);
596 stream_putc (s, p->prefixlen);
597 stream_write (s, (u_char *)&p->prefix, psize);
598
599 /* Nexthop, ifindex, distance and metric information. */
600 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
601 {
602 stream_putc (s, api->nexthop_num + api->ifindex_num);
603
604 for (i = 0; i < api->nexthop_num; i++)
605 {
606 stream_putc (s, ZEBRA_NEXTHOP_IPV6);
607 stream_write (s, (u_char *)api->nexthop[i], 16);
608 }
609 for (i = 0; i < api->ifindex_num; i++)
610 {
611 stream_putc (s, ZEBRA_NEXTHOP_IFINDEX);
612 stream_putl (s, api->ifindex[i]);
613 }
614 }
615
616 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_DISTANCE))
617 stream_putc (s, api->distance);
618 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_METRIC))
619 stream_putl (s, api->metric);
620
621 /* Put length at the first point of the stream. */
622 stream_putw_at (s, 0, stream_get_endp (s));
623
ajs634f9ea2005-04-11 15:51:40 +0000624 return zclient_send_message(zclient);
paul718e3742002-12-13 20:15:29 +0000625}
paul718e3742002-12-13 20:15:29 +0000626#endif /* HAVE_IPV6 */
627
paul0a589352004-05-08 11:48:26 +0000628/*
629 * send a ZEBRA_REDISTRIBUTE_ADD or ZEBRA_REDISTRIBUTE_DELETE
630 * for the route type (ZEBRA_ROUTE_KERNEL etc.). The zebra server will
631 * then set/unset redist[type] in the client handle (a struct zserv) for the
632 * sending client
633 */
paul718e3742002-12-13 20:15:29 +0000634int
Feng Luc99f3482014-10-16 09:52:36 +0800635zebra_redistribute_send (int command, struct zclient *zclient, int type,
636 vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +0000637{
paul718e3742002-12-13 20:15:29 +0000638 struct stream *s;
639
ajs634f9ea2005-04-11 15:51:40 +0000640 s = zclient->obuf;
641 stream_reset(s);
paul718e3742002-12-13 20:15:29 +0000642
Feng Luc99f3482014-10-16 09:52:36 +0800643 zclient_create_header (s, command, vrf_id);
paul718e3742002-12-13 20:15:29 +0000644 stream_putc (s, type);
paulc1b98002006-01-16 01:54:02 +0000645
646 stream_putw_at (s, 0, stream_get_endp (s));
647
ajs634f9ea2005-04-11 15:51:40 +0000648 return zclient_send_message(zclient);
paul718e3742002-12-13 20:15:29 +0000649}
650
hasso18a6dce2004-10-03 18:18:34 +0000651/* Router-id update from zebra daemon. */
652void
653zebra_router_id_update_read (struct stream *s, struct prefix *rid)
654{
655 int plen;
656
657 /* Fetch interface address. */
658 rid->family = stream_getc (s);
659
660 plen = prefix_blen (rid);
661 stream_get (&rid->u.prefix, s, plen);
662 rid->prefixlen = stream_getc (s);
663}
664
paul718e3742002-12-13 20:15:29 +0000665/* Interface addition from zebra daemon. */
paul0a589352004-05-08 11:48:26 +0000666/*
667 * The format of the message sent with type ZEBRA_INTERFACE_ADD or
668 * ZEBRA_INTERFACE_DELETE from zebra to the client is:
669 * 0 1 2 3
670 * 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
671 * +-+-+-+-+-+-+-+-+
672 * | type |
673 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
674 * | ifname |
675 * | |
676 * | |
677 * | |
678 * | |
679 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
680 * | ifindex |
681 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
682 * | if_flags |
paulc77d4542006-01-11 01:59:04 +0000683 * | |
paul0a589352004-05-08 11:48:26 +0000684 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
685 * | metric |
686 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
687 * | ifmtu |
688 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
689 * | ifmtu6 |
690 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
691 * | bandwidth |
692 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
693 * | sockaddr_dl |
694 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
695 */
696
paul718e3742002-12-13 20:15:29 +0000697struct interface *
Feng Luc99f3482014-10-16 09:52:36 +0800698zebra_interface_add_read (struct stream *s, vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +0000699{
700 struct interface *ifp;
paul02ff83c2004-06-11 11:27:03 +0000701 char ifname_tmp[INTERFACE_NAMSIZ];
paul718e3742002-12-13 20:15:29 +0000702
703 /* Read interface name. */
704 stream_get (ifname_tmp, s, INTERFACE_NAMSIZ);
705
ajsa3491982005-04-02 22:50:38 +0000706 /* Lookup/create interface by name. */
Feng Luc99f3482014-10-16 09:52:36 +0800707 ifp = if_get_by_name_len_vrf (ifname_tmp,
708 strnlen (ifname_tmp, INTERFACE_NAMSIZ),
709 vrf_id);
paul718e3742002-12-13 20:15:29 +0000710
Josh Bailey51d4ef82012-03-21 17:13:39 -0700711 zebra_interface_if_set_value (s, ifp);
paul718e3742002-12-13 20:15:29 +0000712
paul718e3742002-12-13 20:15:29 +0000713 return ifp;
714}
715
paul0a589352004-05-08 11:48:26 +0000716/*
717 * Read interface up/down msg (ZEBRA_INTERFACE_UP/ZEBRA_INTERFACE_DOWN)
718 * from zebra server. The format of this message is the same as
719 * that sent for ZEBRA_INTERFACE_ADD/ZEBRA_INTERFACE_DELETE (see
720 * comments for zebra_interface_add_read), except that no sockaddr_dl
721 * is sent at the tail of the message.
722 */
paul718e3742002-12-13 20:15:29 +0000723struct interface *
Feng Luc99f3482014-10-16 09:52:36 +0800724zebra_interface_state_read (struct stream *s, vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +0000725{
726 struct interface *ifp;
paul02ff83c2004-06-11 11:27:03 +0000727 char ifname_tmp[INTERFACE_NAMSIZ];
paul718e3742002-12-13 20:15:29 +0000728
729 /* Read interface name. */
730 stream_get (ifname_tmp, s, INTERFACE_NAMSIZ);
731
732 /* Lookup this by interface index. */
Feng Luc99f3482014-10-16 09:52:36 +0800733 ifp = if_lookup_by_name_len_vrf (ifname_tmp,
734 strnlen (ifname_tmp, INTERFACE_NAMSIZ),
735 vrf_id);
paul718e3742002-12-13 20:15:29 +0000736
737 /* If such interface does not exist, indicate an error */
738 if (! ifp)
739 return NULL;
740
Josh Bailey51d4ef82012-03-21 17:13:39 -0700741 zebra_interface_if_set_value (s, ifp);
paul718e3742002-12-13 20:15:29 +0000742
743 return ifp;
744}
745
paul0a589352004-05-08 11:48:26 +0000746/*
747 * format of message for address additon is:
748 * 0
749 * 0 1 2 3 4 5 6 7
750 * +-+-+-+-+-+-+-+-+
751 * | type | ZEBRA_INTERFACE_ADDRESS_ADD or
752 * +-+-+-+-+-+-+-+-+ ZEBRA_INTERFACE_ADDRES_DELETE
753 * | |
754 * + +
755 * | ifindex |
756 * + +
757 * | |
758 * + +
759 * | |
760 * +-+-+-+-+-+-+-+-+
761 * | ifc_flags | flags for connected address
762 * +-+-+-+-+-+-+-+-+
763 * | addr_family |
764 * +-+-+-+-+-+-+-+-+
765 * | addr... |
766 * : :
767 * | |
768 * +-+-+-+-+-+-+-+-+
769 * | addr_len | len of addr. E.g., addr_len = 4 for ipv4 addrs.
770 * +-+-+-+-+-+-+-+-+
771 * | daddr.. |
772 * : :
773 * | |
774 * +-+-+-+-+-+-+-+-+
775 *
776 */
777
hasso18a6dce2004-10-03 18:18:34 +0000778void
779zebra_interface_if_set_value (struct stream *s, struct interface *ifp)
780{
781 /* Read interface's index. */
782 ifp->ifindex = stream_getl (s);
hasso508ec912004-10-23 14:26:49 +0000783 ifp->status = stream_getc (s);
hasso18a6dce2004-10-03 18:18:34 +0000784
785 /* Read interface's value. */
paulc77d4542006-01-11 01:59:04 +0000786 ifp->flags = stream_getq (s);
hasso18a6dce2004-10-03 18:18:34 +0000787 ifp->metric = stream_getl (s);
788 ifp->mtu = stream_getl (s);
hasso508ec912004-10-23 14:26:49 +0000789 ifp->mtu6 = stream_getl (s);
hasso18a6dce2004-10-03 18:18:34 +0000790 ifp->bandwidth = stream_getl (s);
Josh Bailey51d4ef82012-03-21 17:13:39 -0700791#ifdef HAVE_STRUCT_SOCKADDR_DL
David Lamparterca3ccd82012-09-26 14:52:39 +0200792 stream_get (&ifp->sdl, s, sizeof (ifp->sdl_storage));
Josh Bailey51d4ef82012-03-21 17:13:39 -0700793#else
794 ifp->hw_addr_len = stream_getl (s);
795 if (ifp->hw_addr_len)
796 stream_get (ifp->hw_addr, s, ifp->hw_addr_len);
797#endif /* HAVE_STRUCT_SOCKADDR_DL */
hasso18a6dce2004-10-03 18:18:34 +0000798}
799
hasso3fb9cd62004-10-19 19:44:43 +0000800static int
801memconstant(const void *s, int c, size_t n)
802{
803 const u_char *p = s;
804
805 while (n-- > 0)
806 if (*p++ != c)
807 return 0;
808 return 1;
809}
810
paul718e3742002-12-13 20:15:29 +0000811struct connected *
Feng Luc99f3482014-10-16 09:52:36 +0800812zebra_interface_address_read (int type, struct stream *s, vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +0000813{
814 unsigned int ifindex;
815 struct interface *ifp;
816 struct connected *ifc;
paul0a589352004-05-08 11:48:26 +0000817 struct prefix p, d;
paul718e3742002-12-13 20:15:29 +0000818 int family;
819 int plen;
paul0a589352004-05-08 11:48:26 +0000820 u_char ifc_flags;
821
822 memset (&p, 0, sizeof(p));
823 memset (&d, 0, sizeof(d));
paul718e3742002-12-13 20:15:29 +0000824
825 /* Get interface index. */
826 ifindex = stream_getl (s);
827
828 /* Lookup index. */
Feng Luc99f3482014-10-16 09:52:36 +0800829 ifp = if_lookup_by_index_vrf (ifindex, vrf_id);
paul718e3742002-12-13 20:15:29 +0000830 if (ifp == NULL)
831 {
paul0a589352004-05-08 11:48:26 +0000832 zlog_warn ("zebra_interface_address_read(%s): "
833 "Can't find interface by ifindex: %d ",
834 (type == ZEBRA_INTERFACE_ADDRESS_ADD? "ADD" : "DELETE"),
835 ifindex);
paul718e3742002-12-13 20:15:29 +0000836 return NULL;
837 }
838
839 /* Fetch flag. */
paul0a589352004-05-08 11:48:26 +0000840 ifc_flags = stream_getc (s);
paul718e3742002-12-13 20:15:29 +0000841
842 /* Fetch interface address. */
843 family = p.family = stream_getc (s);
844
paul0a589352004-05-08 11:48:26 +0000845 plen = prefix_blen (&p);
846 stream_get (&p.u.prefix, s, plen);
paul718e3742002-12-13 20:15:29 +0000847 p.prefixlen = stream_getc (s);
848
849 /* Fetch destination address. */
paul0a589352004-05-08 11:48:26 +0000850 stream_get (&d.u.prefix, s, plen);
paul718e3742002-12-13 20:15:29 +0000851 d.family = family;
852
paul0a589352004-05-08 11:48:26 +0000853 if (type == ZEBRA_INTERFACE_ADDRESS_ADD)
854 {
hasso3fb9cd62004-10-19 19:44:43 +0000855 /* N.B. NULL destination pointers are encoded as all zeroes */
856 ifc = connected_add_by_prefix(ifp, &p,(memconstant(&d.u.prefix,0,plen) ?
857 NULL : &d));
paul0a589352004-05-08 11:48:26 +0000858 if (ifc != NULL)
Andrew J. Schorre4529632006-12-12 19:18:21 +0000859 {
860 ifc->flags = ifc_flags;
861 if (ifc->destination)
862 ifc->destination->prefixlen = ifc->address->prefixlen;
David Lamparter90444ca2014-07-01 16:14:05 +0200863 else if (CHECK_FLAG(ifc->flags, ZEBRA_IFA_PEER))
864 {
865 /* carp interfaces on OpenBSD with 0.0.0.0/0 as "peer" */
Timo Teräs41eb9a42015-05-23 11:08:39 +0300866 char buf[PREFIX_STRLEN];
David Lamparter90444ca2014-07-01 16:14:05 +0200867 zlog_warn("warning: interface %s address %s "
868 "with peer flag set, but no peer address!",
Timo Teräs41eb9a42015-05-23 11:08:39 +0300869 ifp->name,
870 prefix2str (ifc->address, buf, sizeof buf));
David Lamparter90444ca2014-07-01 16:14:05 +0200871 UNSET_FLAG(ifc->flags, ZEBRA_IFA_PEER);
872 }
Andrew J. Schorre4529632006-12-12 19:18:21 +0000873 }
paul0a589352004-05-08 11:48:26 +0000874 }
875 else
876 {
877 assert (type == ZEBRA_INTERFACE_ADDRESS_DELETE);
878 ifc = connected_delete_by_prefix(ifp, &p);
879 }
paul718e3742002-12-13 20:15:29 +0000880
881 return ifc;
882}
paul0a589352004-05-08 11:48:26 +0000883
David Lamparter6b0655a2014-06-04 06:53:35 +0200884
paul718e3742002-12-13 20:15:29 +0000885/* Zebra client message read function. */
ajs634f9ea2005-04-11 15:51:40 +0000886static int
paul718e3742002-12-13 20:15:29 +0000887zclient_read (struct thread *thread)
888{
ajs634f9ea2005-04-11 15:51:40 +0000889 size_t already;
paulc1b98002006-01-16 01:54:02 +0000890 uint16_t length, command;
891 uint8_t marker, version;
Feng Luc99f3482014-10-16 09:52:36 +0800892 vrf_id_t vrf_id;
paul718e3742002-12-13 20:15:29 +0000893 struct zclient *zclient;
894
895 /* Get socket to zebra. */
paul718e3742002-12-13 20:15:29 +0000896 zclient = THREAD_ARG (thread);
897 zclient->t_read = NULL;
898
ajs634f9ea2005-04-11 15:51:40 +0000899 /* Read zebra header (if we don't have it already). */
900 if ((already = stream_get_endp(zclient->ibuf)) < ZEBRA_HEADER_SIZE)
paul718e3742002-12-13 20:15:29 +0000901 {
ajs634f9ea2005-04-11 15:51:40 +0000902 ssize_t nbyte;
903 if (((nbyte = stream_read_try(zclient->ibuf, zclient->sock,
904 ZEBRA_HEADER_SIZE-already)) == 0) ||
905 (nbyte == -1))
906 {
907 if (zclient_debug)
908 zlog_debug ("zclient connection closed socket [%d].", zclient->sock);
909 return zclient_failed(zclient);
910 }
911 if (nbyte != (ssize_t)(ZEBRA_HEADER_SIZE-already))
912 {
913 /* Try again later. */
914 zclient_event (ZCLIENT_READ, zclient);
915 return 0;
916 }
917 already = ZEBRA_HEADER_SIZE;
paul718e3742002-12-13 20:15:29 +0000918 }
919
ajs634f9ea2005-04-11 15:51:40 +0000920 /* Reset to read from the beginning of the incoming packet. */
921 stream_set_getp(zclient->ibuf, 0);
paul718e3742002-12-13 20:15:29 +0000922
paulc1b98002006-01-16 01:54:02 +0000923 /* Fetch header values. */
paul718e3742002-12-13 20:15:29 +0000924 length = stream_getw (zclient->ibuf);
paulc1b98002006-01-16 01:54:02 +0000925 marker = stream_getc (zclient->ibuf);
926 version = stream_getc (zclient->ibuf);
Feng Luc99f3482014-10-16 09:52:36 +0800927 vrf_id = stream_getw (zclient->ibuf);
paulc1b98002006-01-16 01:54:02 +0000928 command = stream_getw (zclient->ibuf);
929
930 if (marker != ZEBRA_HEADER_MARKER || version != ZSERV_VERSION)
931 {
932 zlog_err("%s: socket %d version mismatch, marker %d, version %d",
933 __func__, zclient->sock, marker, version);
934 return zclient_failed(zclient);
935 }
936
ajs634f9ea2005-04-11 15:51:40 +0000937 if (length < ZEBRA_HEADER_SIZE)
paul718e3742002-12-13 20:15:29 +0000938 {
ajs634f9ea2005-04-11 15:51:40 +0000939 zlog_err("%s: socket %d message length %u is less than %d ",
940 __func__, zclient->sock, length, ZEBRA_HEADER_SIZE);
941 return zclient_failed(zclient);
paul718e3742002-12-13 20:15:29 +0000942 }
ajs634f9ea2005-04-11 15:51:40 +0000943
944 /* Length check. */
945 if (length > STREAM_SIZE(zclient->ibuf))
946 {
947 struct stream *ns;
948 zlog_warn("%s: message size %u exceeds buffer size %lu, expanding...",
949 __func__, length, (u_long)STREAM_SIZE(zclient->ibuf));
950 ns = stream_new(length);
951 stream_copy(ns, zclient->ibuf);
952 stream_free (zclient->ibuf);
953 zclient->ibuf = ns;
954 }
paul718e3742002-12-13 20:15:29 +0000955
956 /* Read rest of zebra packet. */
ajs634f9ea2005-04-11 15:51:40 +0000957 if (already < length)
958 {
959 ssize_t nbyte;
960 if (((nbyte = stream_read_try(zclient->ibuf, zclient->sock,
961 length-already)) == 0) ||
962 (nbyte == -1))
963 {
964 if (zclient_debug)
965 zlog_debug("zclient connection closed socket [%d].", zclient->sock);
966 return zclient_failed(zclient);
967 }
968 if (nbyte != (ssize_t)(length-already))
969 {
970 /* Try again later. */
971 zclient_event (ZCLIENT_READ, zclient);
972 return 0;
973 }
974 }
975
976 length -= ZEBRA_HEADER_SIZE;
paul718e3742002-12-13 20:15:29 +0000977
paul0a589352004-05-08 11:48:26 +0000978 if (zclient_debug)
Feng Luc99f3482014-10-16 09:52:36 +0800979 zlog_debug("zclient 0x%p command 0x%x VRF %u\n", (void *)zclient, command, vrf_id);
paul0a589352004-05-08 11:48:26 +0000980
paul718e3742002-12-13 20:15:29 +0000981 switch (command)
982 {
hasso18a6dce2004-10-03 18:18:34 +0000983 case ZEBRA_ROUTER_ID_UPDATE:
984 if (zclient->router_id_update)
Feng Luc99f3482014-10-16 09:52:36 +0800985 (*zclient->router_id_update) (command, zclient, length, vrf_id);
hasso18a6dce2004-10-03 18:18:34 +0000986 break;
paul718e3742002-12-13 20:15:29 +0000987 case ZEBRA_INTERFACE_ADD:
988 if (zclient->interface_add)
Feng Luc99f3482014-10-16 09:52:36 +0800989 (*zclient->interface_add) (command, zclient, length, vrf_id);
paul718e3742002-12-13 20:15:29 +0000990 break;
991 case ZEBRA_INTERFACE_DELETE:
992 if (zclient->interface_delete)
Feng Luc99f3482014-10-16 09:52:36 +0800993 (*zclient->interface_delete) (command, zclient, length, vrf_id);
paul718e3742002-12-13 20:15:29 +0000994 break;
995 case ZEBRA_INTERFACE_ADDRESS_ADD:
996 if (zclient->interface_address_add)
Feng Luc99f3482014-10-16 09:52:36 +0800997 (*zclient->interface_address_add) (command, zclient, length, vrf_id);
paul718e3742002-12-13 20:15:29 +0000998 break;
999 case ZEBRA_INTERFACE_ADDRESS_DELETE:
1000 if (zclient->interface_address_delete)
Feng Luc99f3482014-10-16 09:52:36 +08001001 (*zclient->interface_address_delete) (command, zclient, length, vrf_id);
paul718e3742002-12-13 20:15:29 +00001002 break;
1003 case ZEBRA_INTERFACE_UP:
1004 if (zclient->interface_up)
Feng Luc99f3482014-10-16 09:52:36 +08001005 (*zclient->interface_up) (command, zclient, length, vrf_id);
paul718e3742002-12-13 20:15:29 +00001006 break;
1007 case ZEBRA_INTERFACE_DOWN:
1008 if (zclient->interface_down)
Feng Luc99f3482014-10-16 09:52:36 +08001009 (*zclient->interface_down) (command, zclient, length, vrf_id);
paul718e3742002-12-13 20:15:29 +00001010 break;
1011 case ZEBRA_IPV4_ROUTE_ADD:
1012 if (zclient->ipv4_route_add)
Feng Luc99f3482014-10-16 09:52:36 +08001013 (*zclient->ipv4_route_add) (command, zclient, length, vrf_id);
paul718e3742002-12-13 20:15:29 +00001014 break;
1015 case ZEBRA_IPV4_ROUTE_DELETE:
1016 if (zclient->ipv4_route_delete)
Feng Luc99f3482014-10-16 09:52:36 +08001017 (*zclient->ipv4_route_delete) (command, zclient, length, vrf_id);
paul718e3742002-12-13 20:15:29 +00001018 break;
1019 case ZEBRA_IPV6_ROUTE_ADD:
1020 if (zclient->ipv6_route_add)
Feng Luc99f3482014-10-16 09:52:36 +08001021 (*zclient->ipv6_route_add) (command, zclient, length, vrf_id);
paul718e3742002-12-13 20:15:29 +00001022 break;
1023 case ZEBRA_IPV6_ROUTE_DELETE:
1024 if (zclient->ipv6_route_delete)
Feng Luc99f3482014-10-16 09:52:36 +08001025 (*zclient->ipv6_route_delete) (command, zclient, length, vrf_id);
paul718e3742002-12-13 20:15:29 +00001026 break;
1027 default:
1028 break;
1029 }
1030
ajs634f9ea2005-04-11 15:51:40 +00001031 if (zclient->sock < 0)
1032 /* Connection was closed during packet processing. */
1033 return -1;
1034
paul718e3742002-12-13 20:15:29 +00001035 /* Register read thread. */
ajs634f9ea2005-04-11 15:51:40 +00001036 stream_reset(zclient->ibuf);
paul718e3742002-12-13 20:15:29 +00001037 zclient_event (ZCLIENT_READ, zclient);
1038
1039 return 0;
1040}
1041
1042void
Feng Luc99f3482014-10-16 09:52:36 +08001043zclient_redistribute (int command, struct zclient *zclient, int type,
1044 vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +00001045{
paul718e3742002-12-13 20:15:29 +00001046
paul0a589352004-05-08 11:48:26 +00001047 if (command == ZEBRA_REDISTRIBUTE_ADD)
1048 {
Feng Luc99f3482014-10-16 09:52:36 +08001049 if (vrf_bitmap_check (zclient->redist[type], vrf_id))
paul0a589352004-05-08 11:48:26 +00001050 return;
Feng Luc99f3482014-10-16 09:52:36 +08001051 vrf_bitmap_set (zclient->redist[type], vrf_id);
paul0a589352004-05-08 11:48:26 +00001052 }
1053 else
1054 {
Feng Luc99f3482014-10-16 09:52:36 +08001055 if (!vrf_bitmap_check (zclient->redist[type], vrf_id))
paul0a589352004-05-08 11:48:26 +00001056 return;
Feng Luc99f3482014-10-16 09:52:36 +08001057 vrf_bitmap_unset (zclient->redist[type], vrf_id);
paul0a589352004-05-08 11:48:26 +00001058 }
paul718e3742002-12-13 20:15:29 +00001059
1060 if (zclient->sock > 0)
Feng Luc99f3482014-10-16 09:52:36 +08001061 zebra_redistribute_send (command, zclient, type, vrf_id);
paul718e3742002-12-13 20:15:29 +00001062}
1063
paul0a589352004-05-08 11:48:26 +00001064
paul718e3742002-12-13 20:15:29 +00001065void
Feng Luc99f3482014-10-16 09:52:36 +08001066zclient_redistribute_default (int command, struct zclient *zclient,
1067 vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +00001068{
paul718e3742002-12-13 20:15:29 +00001069
paul0a589352004-05-08 11:48:26 +00001070 if (command == ZEBRA_REDISTRIBUTE_DEFAULT_ADD)
1071 {
Feng Luc99f3482014-10-16 09:52:36 +08001072 if (vrf_bitmap_check (zclient->default_information, vrf_id))
paul0a589352004-05-08 11:48:26 +00001073 return;
Feng Luc99f3482014-10-16 09:52:36 +08001074 vrf_bitmap_set (zclient->default_information, vrf_id);
paul0a589352004-05-08 11:48:26 +00001075 }
1076 else
1077 {
Feng Luc99f3482014-10-16 09:52:36 +08001078 if (!vrf_bitmap_check (zclient->default_information, vrf_id))
paul0a589352004-05-08 11:48:26 +00001079 return;
Feng Luc99f3482014-10-16 09:52:36 +08001080 vrf_bitmap_unset (zclient->default_information, vrf_id);
paul0a589352004-05-08 11:48:26 +00001081 }
paul718e3742002-12-13 20:15:29 +00001082
1083 if (zclient->sock > 0)
Feng Luc99f3482014-10-16 09:52:36 +08001084 zebra_message_send (zclient, command, vrf_id);
paul718e3742002-12-13 20:15:29 +00001085}
1086
paul718e3742002-12-13 20:15:29 +00001087static void
1088zclient_event (enum event event, struct zclient *zclient)
1089{
1090 switch (event)
1091 {
1092 case ZCLIENT_SCHEDULE:
1093 if (! zclient->t_connect)
1094 zclient->t_connect =
1095 thread_add_event (master, zclient_connect, zclient, 0);
1096 break;
1097 case ZCLIENT_CONNECT:
1098 if (zclient->fail >= 10)
1099 return;
1100 if (zclient_debug)
ajs8ddca702004-12-07 18:53:52 +00001101 zlog_debug ("zclient connect schedule interval is %d",
paul718e3742002-12-13 20:15:29 +00001102 zclient->fail < 3 ? 10 : 60);
1103 if (! zclient->t_connect)
1104 zclient->t_connect =
1105 thread_add_timer (master, zclient_connect, zclient,
1106 zclient->fail < 3 ? 10 : 60);
1107 break;
1108 case ZCLIENT_READ:
1109 zclient->t_read =
1110 thread_add_read (master, zclient_read, zclient, zclient->sock);
1111 break;
1112 }
1113}
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +04001114
David Lamparterfd8f6eb2015-03-03 08:57:02 +01001115const char *zclient_serv_path_get()
Everton Marques1f298942014-08-21 15:47:28 -03001116{
1117 return zclient_serv_path ? zclient_serv_path : ZEBRA_SERV_PATH;
1118}
1119
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +04001120void
1121zclient_serv_path_set (char *path)
1122{
1123 struct stat sb;
1124
1125 /* reset */
1126 zclient_serv_path = NULL;
1127
1128 /* test if `path' is socket. don't set it otherwise. */
1129 if (stat(path, &sb) == -1)
1130 {
1131 zlog_warn ("%s: zebra socket `%s' does not exist", __func__, path);
1132 return;
1133 }
1134
1135 if ((sb.st_mode & S_IFMT) != S_IFSOCK)
1136 {
1137 zlog_warn ("%s: `%s' is not unix socket, sir", __func__, path);
1138 return;
1139 }
1140
1141 /* it seems that path is unix socket */
1142 zclient_serv_path = path;
1143}
1144