]> git.proxmox.com Git - mirror_frr.git/blame - lib/zclient.c
initd: initd-mi.patch
[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"
6b0655a2 35
718e3744 36/* 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
634f9ea2 42extern struct thread_master *master;
43
b5114685
VT
44char *zclient_serv_path = NULL;
45
718e3744 46/* This file local debug flag. */
47int zclient_debug = 0;
6b0655a2 48
718e3744 49/* Allocate zclient structure. */
50struct zclient *
51zclient_new ()
52{
53 struct zclient *zclient;
393deb9b 54 zclient = XCALLOC (MTYPE_ZCLIENT, sizeof (struct zclient));
718e3744 55
56 zclient->ibuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
57 zclient->obuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
634f9ea2 58 zclient->wb = buffer_new(0);
718e3744 59
60 return zclient;
61}
62
228da428 63/* This function is only called when exiting, because
634f9ea2 64 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.
634f9ea2 66
228da428 67 Free zclient structure. */
718e3744 68void
69zclient_free (struct zclient *zclient)
70{
634f9ea2 71 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
718e3744 78 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++)
96 zclient->redist[i] = 0;
97
98 /* Set unwanted redistribute route. bgpd does not need BGP route
99 redistribution. */
100 zclient->redist_default = redist_default;
101 zclient->redist[redist_default] = 1;
102
103 /* Set default-information redistribute to zero. */
104 zclient->default_information = 0;
105
106 /* Schedule first zclient connection. */
107 if (zclient_debug)
8ddca704 108 zlog_debug ("zclient start scheduled");
718e3744 109
110 zclient_event (ZCLIENT_SCHEDULE, zclient);
111}
112
113/* Stop zebra client services. */
114void
115zclient_stop (struct zclient *zclient)
116{
117 if (zclient_debug)
8ddca704 118 zlog_debug ("zclient stopped");
718e3744 119
120 /* Stop threads. */
634f9ea2 121 THREAD_OFF(zclient->t_read);
122 THREAD_OFF(zclient->t_connect);
123 THREAD_OFF(zclient->t_write);
124
125 /* Reset streams. */
126 stream_reset(zclient->ibuf);
127 stream_reset(zclient->obuf);
128
129 /* Empty the write buffer. */
130 buffer_reset(zclient->wb);
718e3744 131
132 /* Close socket. */
133 if (zclient->sock >= 0)
134 {
135 close (zclient->sock);
136 zclient->sock = -1;
137 }
138 zclient->fail = 0;
139}
140
141void
142zclient_reset (struct zclient *zclient)
143{
144 zclient_stop (zclient);
145 zclient_init (zclient, zclient->redist_default);
146}
147
b5114685
VT
148#ifdef HAVE_TCP_ZEBRA
149
718e3744 150/* Make socket to zebra daemon. Return zebra socket. */
b5114685 151static int
634f9ea2 152zclient_socket(void)
718e3744 153{
154 int sock;
155 int ret;
156 struct sockaddr_in serv;
157
158 /* We should think about IPv6 connection. */
159 sock = socket (AF_INET, SOCK_STREAM, 0);
160 if (sock < 0)
161 return -1;
162
163 /* Make server socket. */
164 memset (&serv, 0, sizeof (struct sockaddr_in));
165 serv.sin_family = AF_INET;
166 serv.sin_port = htons (ZEBRA_PORT);
6f0e3f6e 167#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
718e3744 168 serv.sin_len = sizeof (struct sockaddr_in);
6f0e3f6e 169#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
718e3744 170 serv.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
171
172 /* Connect to zebra. */
173 ret = connect (sock, (struct sockaddr *) &serv, sizeof (serv));
174 if (ret < 0)
175 {
176 close (sock);
177 return -1;
178 }
179 return sock;
180}
181
3414d035 182#else
b5114685 183
718e3744 184/* For sockaddr_un. */
185#include <sys/un.h>
186
b5114685 187static int
8c328f11 188zclient_socket_un (const char *path)
718e3744 189{
190 int ret;
191 int sock, len;
192 struct sockaddr_un addr;
193
194 sock = socket (AF_UNIX, SOCK_STREAM, 0);
195 if (sock < 0)
196 return -1;
197
198 /* Make server socket. */
199 memset (&addr, 0, sizeof (struct sockaddr_un));
200 addr.sun_family = AF_UNIX;
201 strncpy (addr.sun_path, path, strlen (path));
6f0e3f6e 202#ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
718e3744 203 len = addr.sun_len = SUN_LEN(&addr);
204#else
205 len = sizeof (addr.sun_family) + strlen (addr.sun_path);
6f0e3f6e 206#endif /* HAVE_STRUCT_SOCKADDR_UN_SUN_LEN */
718e3744 207
208 ret = connect (sock, (struct sockaddr *) &addr, len);
209 if (ret < 0)
210 {
211 close (sock);
212 return -1;
213 }
214 return sock;
215}
216
3414d035
VT
217#endif /* HAVE_TCP_ZEBRA */
218
b5114685
VT
219/**
220 * Connect to zebra daemon.
221 * @param zclient a pointer to zclient structure
222 * @return socket fd just to make sure that connection established
223 * @see zclient_init
224 * @see zclient_new
225 */
226int
227zclient_socket_connect (struct zclient *zclient)
228{
229#ifdef HAVE_TCP_ZEBRA
230 zclient->sock = zclient_socket ();
231#else
232 zclient->sock = zclient_socket_un (zclient_serv_path ? zclient_serv_path : ZEBRA_SERV_PATH);
233#endif
234 return zclient->sock;
235}
236
634f9ea2 237static int
238zclient_failed(struct zclient *zclient)
239{
240 zclient->fail++;
241 zclient_stop(zclient);
242 zclient_event(ZCLIENT_CONNECT, zclient);
243 return -1;
244}
245
246static int
247zclient_flush_data(struct thread *thread)
248{
249 struct zclient *zclient = THREAD_ARG(thread);
250
251 zclient->t_write = NULL;
252 if (zclient->sock < 0)
253 return -1;
254 switch (buffer_flush_available(zclient->wb, zclient->sock))
255 {
256 case BUFFER_ERROR:
257 zlog_warn("%s: buffer_flush_available failed on zclient fd %d, closing",
258 __func__, zclient->sock);
259 return zclient_failed(zclient);
260 break;
261 case BUFFER_PENDING:
262 zclient->t_write = thread_add_write(master, zclient_flush_data,
263 zclient, zclient->sock);
264 break;
265 case BUFFER_EMPTY:
266 break;
267 }
268 return 0;
269}
270
718e3744 271int
634f9ea2 272zclient_send_message(struct zclient *zclient)
273{
274 if (zclient->sock < 0)
275 return -1;
276 switch (buffer_write(zclient->wb, zclient->sock, STREAM_DATA(zclient->obuf),
277 stream_get_endp(zclient->obuf)))
278 {
279 case BUFFER_ERROR:
280 zlog_warn("%s: buffer_write failed to zclient fd %d, closing",
281 __func__, zclient->sock);
282 return zclient_failed(zclient);
283 break;
284 case BUFFER_EMPTY:
285 THREAD_OFF(zclient->t_write);
286 break;
287 case BUFFER_PENDING:
288 THREAD_WRITE_ON(master, zclient->t_write,
289 zclient_flush_data, zclient, zclient->sock);
290 break;
291 }
292 return 0;
293}
294
d211086a 295void
c1b9800a 296zclient_create_header (struct stream *s, uint16_t command)
297{
298 /* length placeholder, caller can update */
299 stream_putw (s, ZEBRA_HEADER_SIZE);
300 stream_putc (s, ZEBRA_HEADER_MARKER);
301 stream_putc (s, ZSERV_VERSION);
302 stream_putw (s, command);
303}
304
634f9ea2 305/* Send simple Zebra message. */
306static int
718e3744 307zebra_message_send (struct zclient *zclient, int command)
308{
309 struct stream *s;
310
311 /* Get zclient output buffer. */
312 s = zclient->obuf;
313 stream_reset (s);
314
315 /* Send very simple command only Zebra message. */
c1b9800a 316 zclient_create_header (s, command);
317
634f9ea2 318 return zclient_send_message(zclient);
718e3744 319}
320
2ea1ab1c
VT
321static int
322zebra_hello_send (struct zclient *zclient)
323{
324 struct stream *s;
325
326 if (zclient->redist_default)
327 {
328 s = zclient->obuf;
329 stream_reset (s);
330
331 zclient_create_header (s, ZEBRA_HELLO);
332 stream_putc (s, zclient->redist_default);
333 stream_putw_at (s, 0, stream_get_endp (s));
334 return zclient_send_message(zclient);
335 }
336
337 return 0;
338}
339
718e3744 340/* Make connection to zebra daemon. */
341int
342zclient_start (struct zclient *zclient)
343{
344 int i;
345
346 if (zclient_debug)
8ddca704 347 zlog_debug ("zclient_start is called");
718e3744 348
349 /* zclient is disabled. */
350 if (! zclient->enable)
351 return 0;
352
353 /* If already connected to the zebra. */
354 if (zclient->sock >= 0)
355 return 0;
356
357 /* Check connect thread. */
358 if (zclient->t_connect)
359 return 0;
360
b5114685 361 if (zclient_socket_connect(zclient) < 0)
718e3744 362 {
363 if (zclient_debug)
8ddca704 364 zlog_debug ("zclient connection fail");
718e3744 365 zclient->fail++;
366 zclient_event (ZCLIENT_CONNECT, zclient);
367 return -1;
368 }
369
634f9ea2 370 if (set_nonblocking(zclient->sock) < 0)
371 zlog_warn("%s: set_nonblocking(%d) failed", __func__, zclient->sock);
372
718e3744 373 /* Clear fail count. */
374 zclient->fail = 0;
375 if (zclient_debug)
8ddca704 376 zlog_debug ("zclient connect success with socket [%d]", zclient->sock);
718e3744 377
378 /* Create read thread. */
379 zclient_event (ZCLIENT_READ, zclient);
380
2ea1ab1c
VT
381 zebra_hello_send (zclient);
382
18a6dce6 383 /* We need router-id information. */
384 zebra_message_send (zclient, ZEBRA_ROUTER_ID_ADD);
385
08a7a916
DT
386 /* We need interface information. */
387 zebra_message_send (zclient, ZEBRA_INTERFACE_ADD);
388
718e3744 389 /* Flush all redistribute request. */
390 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
391 if (i != zclient->redist_default && zclient->redist[i])
634f9ea2 392 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient, i);
718e3744 393
394 /* If default information is needed. */
395 if (zclient->default_information)
396 zebra_message_send (zclient, ZEBRA_REDISTRIBUTE_DEFAULT_ADD);
397
398 return 0;
399}
400
401/* This function is a wrapper function for calling zclient_start from
402 timer or event thread. */
634f9ea2 403static int
718e3744 404zclient_connect (struct thread *t)
405{
406 struct zclient *zclient;
407
408 zclient = THREAD_ARG (t);
409 zclient->t_connect = NULL;
410
411 if (zclient_debug)
8ddca704 412 zlog_debug ("zclient_connect is called");
718e3744 413
414 return zclient_start (zclient);
415}
6b0655a2 416
0a589359 417 /*
418 * "xdr_encode"-like interface that allows daemon (client) to send
419 * a message to zebra server for a route that needs to be
420 * added/deleted to the kernel. Info about the route is specified
421 * by the caller in a struct zapi_ipv4. zapi_ipv4_read() then writes
422 * the info down the zclient socket using the stream_* functions.
423 *
424 * The corresponding read ("xdr_decode") function on the server
425 * side is zread_ipv4_add()/zread_ipv4_delete().
426 *
427 * 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
428 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
429 * | Length (2) | Command | Route Type |
430 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
431 * | ZEBRA Flags | Message Flags | Prefix length |
432 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
433 * | Destination IPv4 Prefix for route |
434 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
435 * | Nexthop count |
436 * +-+-+-+-+-+-+-+-+
437 *
438 *
439 * A number of IPv4 nexthop(s) or nexthop interface index(es) are then
440 * described, as per the Nexthop count. Each nexthop described as:
441 *
442 * +-+-+-+-+-+-+-+-+
443 * | Nexthop Type | Set to one of ZEBRA_NEXTHOP_*
444 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
445 * | IPv4 Nexthop address or Interface Index number |
446 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
447 *
448 * Alternatively, if the flags field has ZEBRA_FLAG_BLACKHOLE or
449 * ZEBRA_FLAG_REJECT is set then Nexthop count is set to 1, then _no_
450 * nexthop information is provided, and the message describes a prefix
451 * to blackhole or reject route.
452 *
c8a1cb5c
DS
453 * The original struct zapi_ipv4, zapi_ipv4_route() and zread_ipv4_*()
454 * infrastructure was built around the traditional (32-bit "gate OR
455 * ifindex") nexthop data unit. A special encoding can be used to feed
456 * onlink (64-bit "gate AND ifindex") nexthops into zapi_ipv4_route()
457 * using the same zapi_ipv4 structure. This is done by setting zapi_ipv4
458 * fields as follows:
459 * - .message |= ZAPI_MESSAGE_NEXTHOP | ZAPI_MESSAGE_ONLINK
460 * - .nexthop_num == .ifindex_num
461 * - .nexthop and .ifindex are filled with gate and ifindex parts of
462 * each compound nexthop, both in the same order
463 *
464 * zapi_ipv4_route() will produce two nexthop data units for each such
465 * interleaved 64-bit nexthop. On the zserv side of the socket it will be
466 * mapped to a singlle NEXTHOP_TYPE_IPV4_IFINDEX_OL RIB nexthop structure.
467 *
0a589359 468 * If ZAPI_MESSAGE_DISTANCE is set, the distance value is written as a 1
469 * byte value.
470 *
471 * If ZAPI_MESSAGE_METRIC is set, the metric value is written as an 8
472 * byte value.
473 *
0d9551dc
DS
474 * If ZAPI_MESSAGE_TAG is set, the tag value is written as a 2 byte value
475 *
0a589359 476 * XXX: No attention paid to alignment.
477 */
718e3744 478int
0a589359 479zapi_ipv4_route (u_char cmd, struct zclient *zclient, struct prefix_ipv4 *p,
480 struct zapi_ipv4 *api)
718e3744 481{
482 int i;
483 int psize;
484 struct stream *s;
485
486 /* Reset stream. */
487 s = zclient->obuf;
488 stream_reset (s);
c1b9800a 489
490 zclient_create_header (s, cmd);
491
492 /* Put type and nexthop. */
718e3744 493 stream_putc (s, api->type);
494 stream_putc (s, api->flags);
495 stream_putc (s, api->message);
5a616c08 496 stream_putw (s, api->safi);
718e3744 497
718e3744 498 /* Put prefix information. */
499 psize = PSIZE (p->prefixlen);
500 stream_putc (s, p->prefixlen);
0a589359 501 stream_write (s, (u_char *) & p->prefix, psize);
718e3744 502
503 /* Nexthop, ifindex, distance and metric information. */
c8a1cb5c
DS
504 /* ZAPI_MESSAGE_ONLINK implies interleaving */
505 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_ONLINK))
718e3744 506 {
c8a1cb5c
DS
507 /* ZAPI_MESSAGE_NEXTHOP is required for proper receiving */
508 assert (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP));
509 /* 64-bit data units, interleaved between nexthop[] and ifindex[] */
510 assert (api->nexthop_num == api->ifindex_num);
511 stream_putc (s, api->nexthop_num * 2);
512 for (i = 0; i < api->nexthop_num; i++)
513 {
514 stream_putc (s, ZEBRA_NEXTHOP_IPV4_ONLINK);
515 stream_put_in_addr (s, api->nexthop[i]);
516 stream_putc (s, ZEBRA_NEXTHOP_IFINDEX);
517 stream_putl (s, api->ifindex[i]);
518 }
519 }
520 else if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
521 {
522 /* traditional 32-bit data units */
595db7f1 523 if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE))
524 {
525 stream_putc (s, 1);
526 stream_putc (s, ZEBRA_NEXTHOP_BLACKHOLE);
0a589359 527 /* XXX assert(api->nexthop_num == 0); */
528 /* XXX assert(api->ifindex_num == 0); */
595db7f1 529 }
530 else
531 stream_putc (s, api->nexthop_num + api->ifindex_num);
718e3744 532
533 for (i = 0; i < api->nexthop_num; i++)
595db7f1 534 {
535 stream_putc (s, ZEBRA_NEXTHOP_IPV4);
536 stream_put_in_addr (s, api->nexthop[i]);
537 }
718e3744 538 for (i = 0; i < api->ifindex_num; i++)
595db7f1 539 {
540 stream_putc (s, ZEBRA_NEXTHOP_IFINDEX);
541 stream_putl (s, api->ifindex[i]);
542 }
718e3744 543 }
544
545 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_DISTANCE))
546 stream_putc (s, api->distance);
547 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_METRIC))
548 stream_putl (s, api->metric);
0d9551dc
DS
549 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_TAG))
550 stream_putw (s, api->tag);
718e3744 551
552 /* Put length at the first point of the stream. */
553 stream_putw_at (s, 0, stream_get_endp (s));
554
634f9ea2 555 return zclient_send_message(zclient);
718e3744 556}
557
558#ifdef HAVE_IPV6
559int
0a589359 560zapi_ipv6_route (u_char cmd, struct zclient *zclient, struct prefix_ipv6 *p,
718e3744 561 struct zapi_ipv6 *api)
562{
563 int i;
564 int psize;
565 struct stream *s;
566
567 /* Reset stream. */
568 s = zclient->obuf;
569 stream_reset (s);
570
c1b9800a 571 zclient_create_header (s, cmd);
718e3744 572
c1b9800a 573 /* Put type and nexthop. */
718e3744 574 stream_putc (s, api->type);
575 stream_putc (s, api->flags);
576 stream_putc (s, api->message);
c7ec179a 577 stream_putw (s, api->safi);
718e3744 578
579 /* Put prefix information. */
580 psize = PSIZE (p->prefixlen);
581 stream_putc (s, p->prefixlen);
582 stream_write (s, (u_char *)&p->prefix, psize);
583
584 /* Nexthop, ifindex, distance and metric information. */
585 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP))
586 {
c3c0ac83
DS
587 if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE))
588 {
589 stream_putc (s, 1);
590 stream_putc (s, ZEBRA_NEXTHOP_BLACKHOLE);
591 /* XXX assert(api->nexthop_num == 0); */
592 /* XXX assert(api->ifindex_num == 0); */
593 }
594 else
595 stream_putc (s, api->nexthop_num + api->ifindex_num);
718e3744 596
597 for (i = 0; i < api->nexthop_num; i++)
598 {
599 stream_putc (s, ZEBRA_NEXTHOP_IPV6);
600 stream_write (s, (u_char *)api->nexthop[i], 16);
601 }
602 for (i = 0; i < api->ifindex_num; i++)
603 {
604 stream_putc (s, ZEBRA_NEXTHOP_IFINDEX);
605 stream_putl (s, api->ifindex[i]);
606 }
607 }
608
609 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_DISTANCE))
610 stream_putc (s, api->distance);
611 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_METRIC))
612 stream_putl (s, api->metric);
0d9551dc
DS
613 if (CHECK_FLAG (api->message, ZAPI_MESSAGE_TAG))
614 stream_putw (s, api->tag);
718e3744 615
616 /* Put length at the first point of the stream. */
617 stream_putw_at (s, 0, stream_get_endp (s));
618
634f9ea2 619 return zclient_send_message(zclient);
718e3744 620}
718e3744 621#endif /* HAVE_IPV6 */
622
0a589359 623/*
624 * send a ZEBRA_REDISTRIBUTE_ADD or ZEBRA_REDISTRIBUTE_DELETE
625 * for the route type (ZEBRA_ROUTE_KERNEL etc.). The zebra server will
626 * then set/unset redist[type] in the client handle (a struct zserv) for the
627 * sending client
628 */
718e3744 629int
634f9ea2 630zebra_redistribute_send (int command, struct zclient *zclient, int type)
718e3744 631{
718e3744 632 struct stream *s;
633
634f9ea2 634 s = zclient->obuf;
635 stream_reset(s);
718e3744 636
c1b9800a 637 zclient_create_header (s, command);
718e3744 638 stream_putc (s, type);
c1b9800a 639
640 stream_putw_at (s, 0, stream_get_endp (s));
641
634f9ea2 642 return zclient_send_message(zclient);
718e3744 643}
644
18a6dce6 645/* Router-id update from zebra daemon. */
646void
647zebra_router_id_update_read (struct stream *s, struct prefix *rid)
648{
649 int plen;
650
651 /* Fetch interface address. */
652 rid->family = stream_getc (s);
653
654 plen = prefix_blen (rid);
655 stream_get (&rid->u.prefix, s, plen);
656 rid->prefixlen = stream_getc (s);
657}
658
718e3744 659/* Interface addition from zebra daemon. */
0a589359 660/*
661 * The format of the message sent with type ZEBRA_INTERFACE_ADD or
662 * ZEBRA_INTERFACE_DELETE from zebra to the client is:
663 * 0 1 2 3
664 * 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
665 * +-+-+-+-+-+-+-+-+
666 * | type |
667 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
668 * | ifname |
669 * | |
670 * | |
671 * | |
672 * | |
673 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
674 * | ifindex |
675 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
676 * | if_flags |
c77d4546 677 * | |
0a589359 678 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
679 * | metric |
680 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
681 * | ifmtu |
682 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
683 * | ifmtu6 |
684 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
685 * | bandwidth |
686 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
687 * | sockaddr_dl |
688 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
689 */
690
718e3744 691struct interface *
692zebra_interface_add_read (struct stream *s)
693{
694 struct interface *ifp;
02ff83c5 695 char ifname_tmp[INTERFACE_NAMSIZ];
718e3744 696
697 /* Read interface name. */
698 stream_get (ifname_tmp, s, INTERFACE_NAMSIZ);
699
a349198f 700 /* Lookup/create interface by name. */
701 ifp = if_get_by_name_len (ifname_tmp, strnlen(ifname_tmp, INTERFACE_NAMSIZ));
718e3744 702
51d4ef83 703 zebra_interface_if_set_value (s, ifp);
718e3744 704
718e3744 705 return ifp;
706}
707
0a589359 708/*
709 * Read interface up/down msg (ZEBRA_INTERFACE_UP/ZEBRA_INTERFACE_DOWN)
710 * from zebra server. The format of this message is the same as
711 * that sent for ZEBRA_INTERFACE_ADD/ZEBRA_INTERFACE_DELETE (see
712 * comments for zebra_interface_add_read), except that no sockaddr_dl
713 * is sent at the tail of the message.
714 */
718e3744 715struct interface *
716zebra_interface_state_read (struct stream *s)
717{
718 struct interface *ifp;
02ff83c5 719 char ifname_tmp[INTERFACE_NAMSIZ];
718e3744 720
721 /* Read interface name. */
722 stream_get (ifname_tmp, s, INTERFACE_NAMSIZ);
723
724 /* Lookup this by interface index. */
a349198f 725 ifp = if_lookup_by_name_len (ifname_tmp,
726 strnlen(ifname_tmp, INTERFACE_NAMSIZ));
718e3744 727
728 /* If such interface does not exist, indicate an error */
729 if (! ifp)
730 return NULL;
731
51d4ef83 732 zebra_interface_if_set_value (s, ifp);
718e3744 733
734 return ifp;
735}
736
0a589359 737/*
738 * format of message for address additon is:
739 * 0
740 * 0 1 2 3 4 5 6 7
741 * +-+-+-+-+-+-+-+-+
742 * | type | ZEBRA_INTERFACE_ADDRESS_ADD or
743 * +-+-+-+-+-+-+-+-+ ZEBRA_INTERFACE_ADDRES_DELETE
744 * | |
745 * + +
746 * | ifindex |
747 * + +
748 * | |
749 * + +
750 * | |
751 * +-+-+-+-+-+-+-+-+
752 * | ifc_flags | flags for connected address
753 * +-+-+-+-+-+-+-+-+
754 * | addr_family |
755 * +-+-+-+-+-+-+-+-+
756 * | addr... |
757 * : :
758 * | |
759 * +-+-+-+-+-+-+-+-+
760 * | addr_len | len of addr. E.g., addr_len = 4 for ipv4 addrs.
761 * +-+-+-+-+-+-+-+-+
762 * | daddr.. |
763 * : :
764 * | |
765 * +-+-+-+-+-+-+-+-+
766 *
767 */
768
18a6dce6 769void
770zebra_interface_if_set_value (struct stream *s, struct interface *ifp)
771{
772 /* Read interface's index. */
773 ifp->ifindex = stream_getl (s);
508ec910 774 ifp->status = stream_getc (s);
18a6dce6 775
776 /* Read interface's value. */
c77d4546 777 ifp->flags = stream_getq (s);
244c1cdc
DS
778 ifp->ptm_enable = stream_getc (s);
779 ifp->ptm_status = stream_getc (s);
18a6dce6 780 ifp->metric = stream_getl (s);
781 ifp->mtu = stream_getl (s);
508ec910 782 ifp->mtu6 = stream_getl (s);
18a6dce6 783 ifp->bandwidth = stream_getl (s);
51d4ef83 784#ifdef HAVE_STRUCT_SOCKADDR_DL
ca3ccd87 785 stream_get (&ifp->sdl, s, sizeof (ifp->sdl_storage));
51d4ef83
JB
786#else
787 ifp->hw_addr_len = stream_getl (s);
788 if (ifp->hw_addr_len)
789 stream_get (ifp->hw_addr, s, ifp->hw_addr_len);
790#endif /* HAVE_STRUCT_SOCKADDR_DL */
18a6dce6 791}
792
3fb9cd6e 793static int
794memconstant(const void *s, int c, size_t n)
795{
796 const u_char *p = s;
797
798 while (n-- > 0)
799 if (*p++ != c)
800 return 0;
801 return 1;
802}
803
d5a5c8f0
DS
804struct interface*
805zebra_interface_bfd_read (struct stream *s, struct prefix *p)
806{
807 unsigned int ifindex;
808 struct interface *ifp;
809 int plen;
810
811 /* Get interface index. */
812 ifindex = stream_getl (s);
813
814 /* Lookup index. */
815 ifp = if_lookup_by_index (ifindex);
816 if (ifp == NULL)
817 {
818 zlog_warn ("zebra_interface_bfd_read: "
819 "Can't find interface by ifindex: %d ", ifindex);
820 return NULL;
821 }
822
823 /* Fetch interface address. */
824 p->family = stream_getc (s);
825
826 plen = prefix_blen (p);
827 stream_get (&p->u.prefix, s, plen);
828 p->prefixlen = stream_getc (s);
829
830 return ifp;
831}
832
718e3744 833struct connected *
0a589359 834zebra_interface_address_read (int type, struct stream *s)
718e3744 835{
836 unsigned int ifindex;
837 struct interface *ifp;
838 struct connected *ifc;
0a589359 839 struct prefix p, d;
718e3744 840 int family;
841 int plen;
0a589359 842 u_char ifc_flags;
718e3744 843
0a589359 844 memset (&p, 0, sizeof(p));
845 memset (&d, 0, sizeof(d));
718e3744 846
847 /* Get interface index. */
848 ifindex = stream_getl (s);
849
850 /* Lookup index. */
851 ifp = if_lookup_by_index (ifindex);
852 if (ifp == NULL)
853 {
0a589359 854 zlog_warn ("zebra_interface_address_read(%s): "
855 "Can't find interface by ifindex: %d ",
856 (type == ZEBRA_INTERFACE_ADDRESS_ADD? "ADD" : "DELETE"),
857 ifindex);
718e3744 858 return NULL;
859 }
860
861 /* Fetch flag. */
0a589359 862 ifc_flags = stream_getc (s);
718e3744 863
864 /* Fetch interface address. */
865 family = p.family = stream_getc (s);
866
0a589359 867 plen = prefix_blen (&p);
868 stream_get (&p.u.prefix, s, plen);
718e3744 869 p.prefixlen = stream_getc (s);
870
871 /* Fetch destination address. */
0a589359 872 stream_get (&d.u.prefix, s, plen);
718e3744 873 d.family = family;
874
0a589359 875 if (type == ZEBRA_INTERFACE_ADDRESS_ADD)
876 {
3fb9cd6e 877 /* N.B. NULL destination pointers are encoded as all zeroes */
878 ifc = connected_add_by_prefix(ifp, &p,(memconstant(&d.u.prefix,0,plen) ?
879 NULL : &d));
0a589359 880 if (ifc != NULL)
e4529636
AS
881 {
882 ifc->flags = ifc_flags;
883 if (ifc->destination)
884 ifc->destination->prefixlen = ifc->address->prefixlen;
90444ca3
DL
885 else if (CHECK_FLAG(ifc->flags, ZEBRA_IFA_PEER))
886 {
887 /* carp interfaces on OpenBSD with 0.0.0.0/0 as "peer" */
888 char buf[BUFSIZ];
889 prefix2str (ifc->address, buf, sizeof(buf));
890 zlog_warn("warning: interface %s address %s "
891 "with peer flag set, but no peer address!",
892 ifp->name, buf);
893 UNSET_FLAG(ifc->flags, ZEBRA_IFA_PEER);
894 }
e4529636 895 }
0a589359 896 }
897 else
898 {
899 assert (type == ZEBRA_INTERFACE_ADDRESS_DELETE);
900 ifc = connected_delete_by_prefix(ifp, &p);
901 }
718e3744 902
903 return ifc;
904}
0a589359 905
a80beece
DS
906/*
907 * format of message for neighbor connected address is:
908 * 0
909 * 0 1 2 3 4 5 6 7
910 * +-+-+-+-+-+-+-+-+
911 * | type | ZEBRA_INTERFACE_NBR_ADDRESS_ADD or
912 * +-+-+-+-+-+-+-+-+ ZEBRA_INTERFACE_NBR_ADDRES_DELETE
913 * | |
914 * + +
915 * | ifindex |
916 * + +
917 * | |
918 * + +
919 * | |
920 * +-+-+-+-+-+-+-+-+
921 * | addr_family |
922 * +-+-+-+-+-+-+-+-+
923 * | addr... |
924 * : :
925 * | |
926 * +-+-+-+-+-+-+-+-+
927 * | addr_len | len of addr.
928 * +-+-+-+-+-+-+-+-+
929 */
930struct nbr_connected *
931zebra_interface_nbr_address_read (int type, struct stream *s)
932{
933 unsigned int ifindex;
934 struct interface *ifp;
935 struct prefix p;
936 struct nbr_connected *ifc;
937
938 /* Get interface index. */
939 ifindex = stream_getl (s);
940
941 /* Lookup index. */
942 ifp = if_lookup_by_index (ifindex);
943 if (ifp == NULL)
944 {
945 zlog_warn ("zebra_nbr_interface_address_read(%s): "
946 "Can't find interface by ifindex: %d ",
947 (type == ZEBRA_INTERFACE_NBR_ADDRESS_ADD? "ADD" : "DELETE"),
948 ifindex);
949 return NULL;
950 }
951
952 p.family = stream_getc (s);
953 stream_get (&p.u.prefix, s, prefix_blen (&p));
954 p.prefixlen = stream_getc (s);
955
956 if (type == ZEBRA_INTERFACE_NBR_ADDRESS_ADD)
957 {
958 /* Currently only supporting P2P links, so any new RA source address is
959 considered as the replacement of the previously learnt Link-Local address. */
960 if (!(ifc = listnode_head(ifp->nbr_connected)))
961 {
962 ifc = nbr_connected_new ();
963 ifc->address = prefix_new ();
964 ifc->ifp = ifp;
965 listnode_add (ifp->nbr_connected, ifc);
966 }
967
968 prefix_copy(ifc->address, &p);
969 }
970 else
971 {
972 assert (type == ZEBRA_INTERFACE_NBR_ADDRESS_DELETE);
973
974 ifc = nbr_connected_check(ifp, &p);
975 if (ifc)
976 listnode_delete (ifp->nbr_connected, ifc);
977 }
978
979 return ifc;
980}
6b0655a2 981
718e3744 982/* Zebra client message read function. */
634f9ea2 983static int
718e3744 984zclient_read (struct thread *thread)
985{
634f9ea2 986 size_t already;
c1b9800a 987 uint16_t length, command;
988 uint8_t marker, version;
718e3744 989 struct zclient *zclient;
990
991 /* Get socket to zebra. */
718e3744 992 zclient = THREAD_ARG (thread);
993 zclient->t_read = NULL;
994
634f9ea2 995 /* Read zebra header (if we don't have it already). */
996 if ((already = stream_get_endp(zclient->ibuf)) < ZEBRA_HEADER_SIZE)
718e3744 997 {
634f9ea2 998 ssize_t nbyte;
999 if (((nbyte = stream_read_try(zclient->ibuf, zclient->sock,
1000 ZEBRA_HEADER_SIZE-already)) == 0) ||
1001 (nbyte == -1))
1002 {
1003 if (zclient_debug)
1004 zlog_debug ("zclient connection closed socket [%d].", zclient->sock);
1005 return zclient_failed(zclient);
1006 }
1007 if (nbyte != (ssize_t)(ZEBRA_HEADER_SIZE-already))
1008 {
1009 /* Try again later. */
1010 zclient_event (ZCLIENT_READ, zclient);
1011 return 0;
1012 }
1013 already = ZEBRA_HEADER_SIZE;
718e3744 1014 }
1015
634f9ea2 1016 /* Reset to read from the beginning of the incoming packet. */
1017 stream_set_getp(zclient->ibuf, 0);
718e3744 1018
c1b9800a 1019 /* Fetch header values. */
718e3744 1020 length = stream_getw (zclient->ibuf);
c1b9800a 1021 marker = stream_getc (zclient->ibuf);
1022 version = stream_getc (zclient->ibuf);
1023 command = stream_getw (zclient->ibuf);
1024
1025 if (marker != ZEBRA_HEADER_MARKER || version != ZSERV_VERSION)
1026 {
1027 zlog_err("%s: socket %d version mismatch, marker %d, version %d",
1028 __func__, zclient->sock, marker, version);
1029 return zclient_failed(zclient);
1030 }
1031
634f9ea2 1032 if (length < ZEBRA_HEADER_SIZE)
1033 {
1034 zlog_err("%s: socket %d message length %u is less than %d ",
1035 __func__, zclient->sock, length, ZEBRA_HEADER_SIZE);
1036 return zclient_failed(zclient);
1037 }
1038
718e3744 1039 /* Length check. */
634f9ea2 1040 if (length > STREAM_SIZE(zclient->ibuf))
718e3744 1041 {
634f9ea2 1042 struct stream *ns;
1043 zlog_warn("%s: message size %u exceeds buffer size %lu, expanding...",
1044 __func__, length, (u_long)STREAM_SIZE(zclient->ibuf));
1045 ns = stream_new(length);
1046 stream_copy(ns, zclient->ibuf);
718e3744 1047 stream_free (zclient->ibuf);
634f9ea2 1048 zclient->ibuf = ns;
718e3744 1049 }
718e3744 1050
1051 /* Read rest of zebra packet. */
634f9ea2 1052 if (already < length)
1053 {
1054 ssize_t nbyte;
1055 if (((nbyte = stream_read_try(zclient->ibuf, zclient->sock,
1056 length-already)) == 0) ||
1057 (nbyte == -1))
1058 {
1059 if (zclient_debug)
1060 zlog_debug("zclient connection closed socket [%d].", zclient->sock);
1061 return zclient_failed(zclient);
1062 }
1063 if (nbyte != (ssize_t)(length-already))
1064 {
1065 /* Try again later. */
1066 zclient_event (ZCLIENT_READ, zclient);
1067 return 0;
1068 }
1069 }
1070
1071 length -= ZEBRA_HEADER_SIZE;
718e3744 1072
0a589359 1073 if (zclient_debug)
8ddca704 1074 zlog_debug("zclient 0x%p command 0x%x \n", zclient, command);
0a589359 1075
718e3744 1076 switch (command)
1077 {
18a6dce6 1078 case ZEBRA_ROUTER_ID_UPDATE:
1079 if (zclient->router_id_update)
9206f9ec 1080 (*zclient->router_id_update) (command, zclient, length);
18a6dce6 1081 break;
718e3744 1082 case ZEBRA_INTERFACE_ADD:
1083 if (zclient->interface_add)
9206f9ec 1084 (*zclient->interface_add) (command, zclient, length);
718e3744 1085 break;
1086 case ZEBRA_INTERFACE_DELETE:
1087 if (zclient->interface_delete)
9206f9ec 1088 (*zclient->interface_delete) (command, zclient, length);
718e3744 1089 break;
1090 case ZEBRA_INTERFACE_ADDRESS_ADD:
1091 if (zclient->interface_address_add)
9206f9ec 1092 (*zclient->interface_address_add) (command, zclient, length);
718e3744 1093 break;
1094 case ZEBRA_INTERFACE_ADDRESS_DELETE:
1095 if (zclient->interface_address_delete)
9206f9ec 1096 (*zclient->interface_address_delete) (command, zclient, length);
718e3744 1097 break;
d5a5c8f0
DS
1098 case ZEBRA_INTERFACE_BFD_DEST_DOWN:
1099 if (zclient->interface_bfd_dest_down)
1100 (*zclient->interface_bfd_dest_down) (command, zclient, length);
1101 break;
a80beece
DS
1102 case ZEBRA_INTERFACE_NBR_ADDRESS_ADD:
1103 if (zclient->interface_nbr_address_add)
1104 (*zclient->interface_nbr_address_add) (command, zclient, length);
1105 break;
1106 case ZEBRA_INTERFACE_NBR_ADDRESS_DELETE:
1107 if (zclient->interface_nbr_address_delete)
1108 (*zclient->interface_nbr_address_delete) (command, zclient, length);
1109 break;
718e3744 1110 case ZEBRA_INTERFACE_UP:
1111 if (zclient->interface_up)
9206f9ec 1112 (*zclient->interface_up) (command, zclient, length);
718e3744 1113 break;
1114 case ZEBRA_INTERFACE_DOWN:
1115 if (zclient->interface_down)
9206f9ec 1116 (*zclient->interface_down) (command, zclient, length);
718e3744 1117 break;
1118 case ZEBRA_IPV4_ROUTE_ADD:
1119 if (zclient->ipv4_route_add)
9206f9ec 1120 (*zclient->ipv4_route_add) (command, zclient, length);
718e3744 1121 break;
1122 case ZEBRA_IPV4_ROUTE_DELETE:
1123 if (zclient->ipv4_route_delete)
9206f9ec 1124 (*zclient->ipv4_route_delete) (command, zclient, length);
718e3744 1125 break;
1126 case ZEBRA_IPV6_ROUTE_ADD:
1127 if (zclient->ipv6_route_add)
9206f9ec 1128 (*zclient->ipv6_route_add) (command, zclient, length);
718e3744 1129 break;
1130 case ZEBRA_IPV6_ROUTE_DELETE:
1131 if (zclient->ipv6_route_delete)
9206f9ec 1132 (*zclient->ipv6_route_delete) (command, zclient, length);
718e3744 1133 break;
fb018d25
DS
1134 case ZEBRA_NEXTHOP_UPDATE:
1135 if (zclient_debug)
1136 zlog_debug("zclient rcvd nexthop update\n");
1137 if (zclient->nexthop_update)
1138 (*zclient->nexthop_update) (command, zclient, length);
1139 break;
718e3744 1140 default:
1141 break;
1142 }
1143
634f9ea2 1144 if (zclient->sock < 0)
1145 /* Connection was closed during packet processing. */
1146 return -1;
1147
718e3744 1148 /* Register read thread. */
634f9ea2 1149 stream_reset(zclient->ibuf);
718e3744 1150 zclient_event (ZCLIENT_READ, zclient);
1151
1152 return 0;
1153}
1154
1155void
0a589359 1156zclient_redistribute (int command, struct zclient *zclient, int type)
718e3744 1157{
718e3744 1158
0a589359 1159 if (command == ZEBRA_REDISTRIBUTE_ADD)
1160 {
1161 if (zclient->redist[type])
1162 return;
1163 zclient->redist[type] = 1;
1164 }
1165 else
1166 {
1167 if (!zclient->redist[type])
1168 return;
1169 zclient->redist[type] = 0;
1170 }
718e3744 1171
1172 if (zclient->sock > 0)
634f9ea2 1173 zebra_redistribute_send (command, zclient, type);
718e3744 1174}
1175
718e3744 1176
1177void
0a589359 1178zclient_redistribute_default (int command, struct zclient *zclient)
718e3744 1179{
718e3744 1180
0a589359 1181 if (command == ZEBRA_REDISTRIBUTE_DEFAULT_ADD)
1182 {
1183 if (zclient->default_information)
1184 return;
1185 zclient->default_information = 1;
1186 }
1187 else
1188 {
1189 if (!zclient->default_information)
1190 return;
1191 zclient->default_information = 0;
1192 }
718e3744 1193
1194 if (zclient->sock > 0)
0a589359 1195 zebra_message_send (zclient, command);
718e3744 1196}
1197
718e3744 1198static void
1199zclient_event (enum event event, struct zclient *zclient)
1200{
1201 switch (event)
1202 {
1203 case ZCLIENT_SCHEDULE:
1204 if (! zclient->t_connect)
1205 zclient->t_connect =
1206 thread_add_event (master, zclient_connect, zclient, 0);
1207 break;
1208 case ZCLIENT_CONNECT:
1209 if (zclient->fail >= 10)
1210 return;
1211 if (zclient_debug)
8ddca704 1212 zlog_debug ("zclient connect schedule interval is %d",
718e3744 1213 zclient->fail < 3 ? 10 : 60);
1214 if (! zclient->t_connect)
1215 zclient->t_connect =
1216 thread_add_timer (master, zclient_connect, zclient,
1217 zclient->fail < 3 ? 10 : 60);
1218 break;
1219 case ZCLIENT_READ:
1220 zclient->t_read =
1221 thread_add_read (master, zclient_read, zclient, zclient->sock);
1222 break;
1223 }
1224}
b5114685
VT
1225
1226void
1227zclient_serv_path_set (char *path)
1228{
1229 struct stat sb;
1230
1231 /* reset */
1232 zclient_serv_path = NULL;
1233
1234 /* test if `path' is socket. don't set it otherwise. */
1235 if (stat(path, &sb) == -1)
1236 {
1237 zlog_warn ("%s: zebra socket `%s' does not exist", __func__, path);
1238 return;
1239 }
1240
1241 if ((sb.st_mode & S_IFMT) != S_IFSOCK)
1242 {
1243 zlog_warn ("%s: `%s' is not unix socket, sir", __func__, path);
1244 return;
1245 }
1246
1247 /* it seems that path is unix socket */
1248 zclient_serv_path = path;
1249}
1250