blob: e17bb7207bc1f571a29dcba060baf02ef45369a6 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Zebra daemon server routine.
2 * Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
22#include <zebra.h>
23
24#include "prefix.h"
25#include "command.h"
26#include "if.h"
27#include "thread.h"
28#include "stream.h"
29#include "memory.h"
30#include "table.h"
31#include "rib.h"
32#include "network.h"
33#include "sockunion.h"
34#include "log.h"
35#include "zclient.h"
pauledd7c242003-06-04 13:59:38 +000036#include "privs.h"
ajs719e9742005-02-28 20:52:15 +000037#include "network.h"
38#include "buffer.h"
Feng Lu0d0686f2015-05-22 11:40:02 +020039#include "vrf.h"
paul718e3742002-12-13 20:15:29 +000040
41#include "zebra/zserv.h"
hasso18a6dce2004-10-03 18:18:34 +000042#include "zebra/router-id.h"
paul718e3742002-12-13 20:15:29 +000043#include "zebra/redistribute.h"
44#include "zebra/debug.h"
45#include "zebra/ipforward.h"
David Lamparter6b0655a2014-06-04 06:53:35 +020046
paul718e3742002-12-13 20:15:29 +000047/* Event list of zebra. */
48enum event { ZEBRA_SERV, ZEBRA_READ, ZEBRA_WRITE };
49
paulb21b19c2003-06-15 01:28:29 +000050extern struct zebra_t zebrad;
paul718e3742002-12-13 20:15:29 +000051
paulb9df2d22004-05-09 09:09:59 +000052static void zebra_event (enum event event, int sock, struct zserv *client);
paulccf35572003-03-01 11:42:20 +000053
pauledd7c242003-06-04 13:59:38 +000054extern struct zebra_privs_t zserv_privs;
David Lamparter6b0655a2014-06-04 06:53:35 +020055
ajs719e9742005-02-28 20:52:15 +000056static void zebra_client_close (struct zserv *client);
57
58static int
59zserv_delayed_close(struct thread *thread)
paulccf35572003-03-01 11:42:20 +000060{
ajs719e9742005-02-28 20:52:15 +000061 struct zserv *client = THREAD_ARG(thread);
paulccf35572003-03-01 11:42:20 +000062
ajs719e9742005-02-28 20:52:15 +000063 client->t_suicide = NULL;
64 zebra_client_close(client);
paulccf35572003-03-01 11:42:20 +000065 return 0;
66}
67
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +040068/* When client connects, it sends hello message
69 * with promise to send zebra routes of specific type.
70 * Zebra stores a socket fd of the client into
71 * this array. And use it to clean up routes that
72 * client didn't remove for some reasons after closing
73 * connection.
74 */
75static int route_type_oaths[ZEBRA_ROUTE_MAX];
76
ajs719e9742005-02-28 20:52:15 +000077static int
78zserv_flush_data(struct thread *thread)
paulccf35572003-03-01 11:42:20 +000079{
ajs719e9742005-02-28 20:52:15 +000080 struct zserv *client = THREAD_ARG(thread);
paulccf35572003-03-01 11:42:20 +000081
ajs719e9742005-02-28 20:52:15 +000082 client->t_write = NULL;
83 if (client->t_suicide)
84 {
85 zebra_client_close(client);
86 return -1;
87 }
88 switch (buffer_flush_available(client->wb, client->sock))
89 {
90 case BUFFER_ERROR:
91 zlog_warn("%s: buffer_flush_available failed on zserv client fd %d, "
92 "closing", __func__, client->sock);
93 zebra_client_close(client);
94 break;
95 case BUFFER_PENDING:
96 client->t_write = thread_add_write(zebrad.master, zserv_flush_data,
97 client, client->sock);
98 break;
99 case BUFFER_EMPTY:
100 break;
101 }
102 return 0;
paulccf35572003-03-01 11:42:20 +0000103}
104
ajs719e9742005-02-28 20:52:15 +0000105static int
106zebra_server_send_message(struct zserv *client)
paulccf35572003-03-01 11:42:20 +0000107{
ajs719e9742005-02-28 20:52:15 +0000108 if (client->t_suicide)
109 return -1;
110 switch (buffer_write(client->wb, client->sock, STREAM_DATA(client->obuf),
111 stream_get_endp(client->obuf)))
paulccf35572003-03-01 11:42:20 +0000112 {
ajs719e9742005-02-28 20:52:15 +0000113 case BUFFER_ERROR:
114 zlog_warn("%s: buffer_write failed to zserv client fd %d, closing",
115 __func__, client->sock);
116 /* Schedule a delayed close since many of the functions that call this
117 one do not check the return code. They do not allow for the
118 possibility that an I/O error may have caused the client to be
119 deleted. */
120 client->t_suicide = thread_add_event(zebrad.master, zserv_delayed_close,
121 client, 0);
122 return -1;
ajs719e9742005-02-28 20:52:15 +0000123 case BUFFER_EMPTY:
124 THREAD_OFF(client->t_write);
125 break;
126 case BUFFER_PENDING:
127 THREAD_WRITE_ON(zebrad.master, client->t_write,
128 zserv_flush_data, client, client->sock);
129 break;
paulccf35572003-03-01 11:42:20 +0000130 }
paulccf35572003-03-01 11:42:20 +0000131 return 0;
132}
133
paulc1b98002006-01-16 01:54:02 +0000134static void
135zserv_create_header (struct stream *s, uint16_t cmd)
136{
137 /* length placeholder, caller can update */
138 stream_putw (s, ZEBRA_HEADER_SIZE);
139 stream_putc (s, ZEBRA_HEADER_MARKER);
140 stream_putc (s, ZSERV_VERSION);
141 stream_putw (s, cmd);
142}
143
Josh Bailey51d4ef82012-03-21 17:13:39 -0700144static void
145zserv_encode_interface (struct stream *s, struct interface *ifp)
146{
147 /* Interface information. */
148 stream_put (s, ifp->name, INTERFACE_NAMSIZ);
149 stream_putl (s, ifp->ifindex);
150 stream_putc (s, ifp->status);
151 stream_putq (s, ifp->flags);
152 stream_putl (s, ifp->metric);
153 stream_putl (s, ifp->mtu);
154 stream_putl (s, ifp->mtu6);
155 stream_putl (s, ifp->bandwidth);
156#ifdef HAVE_STRUCT_SOCKADDR_DL
David Lamparterca3ccd82012-09-26 14:52:39 +0200157 stream_put (s, &ifp->sdl, sizeof (ifp->sdl_storage));
Josh Bailey51d4ef82012-03-21 17:13:39 -0700158#else
159 stream_putl (s, ifp->hw_addr_len);
160 if (ifp->hw_addr_len)
161 stream_put (s, ifp->hw_addr, ifp->hw_addr_len);
162#endif /* HAVE_STRUCT_SOCKADDR_DL */
163
164 /* Write packet size. */
165 stream_putw_at (s, 0, stream_get_endp (s));
166}
167
paul718e3742002-12-13 20:15:29 +0000168/* Interface is added. Send ZEBRA_INTERFACE_ADD to client. */
paulb9df2d22004-05-09 09:09:59 +0000169/*
170 * This function is called in the following situations:
171 * - in response to a 3-byte ZEBRA_INTERFACE_ADD request
172 * from the client.
173 * - at startup, when zebra figures out the available interfaces
174 * - when an interface is added (where support for
175 * RTM_IFANNOUNCE or AF_NETLINK sockets is available), or when
176 * an interface is marked IFF_UP (i.e., an RTM_IFINFO message is
177 * received)
178 */
paul718e3742002-12-13 20:15:29 +0000179int
180zsend_interface_add (struct zserv *client, struct interface *ifp)
181{
182 struct stream *s;
183
184 /* Check this client need interface information. */
185 if (! client->ifinfo)
ajs719e9742005-02-28 20:52:15 +0000186 return 0;
paul718e3742002-12-13 20:15:29 +0000187
188 s = client->obuf;
189 stream_reset (s);
190
paulc1b98002006-01-16 01:54:02 +0000191 zserv_create_header (s, ZEBRA_INTERFACE_ADD);
Josh Bailey51d4ef82012-03-21 17:13:39 -0700192 zserv_encode_interface (s, ifp);
paul718e3742002-12-13 20:15:29 +0000193
ajs719e9742005-02-28 20:52:15 +0000194 return zebra_server_send_message(client);
paul718e3742002-12-13 20:15:29 +0000195}
196
197/* Interface deletion from zebra daemon. */
198int
199zsend_interface_delete (struct zserv *client, struct interface *ifp)
200{
201 struct stream *s;
202
203 /* Check this client need interface information. */
204 if (! client->ifinfo)
ajs719e9742005-02-28 20:52:15 +0000205 return 0;
paul718e3742002-12-13 20:15:29 +0000206
207 s = client->obuf;
208 stream_reset (s);
paul718e3742002-12-13 20:15:29 +0000209
Josh Bailey51d4ef82012-03-21 17:13:39 -0700210 zserv_create_header (s, ZEBRA_INTERFACE_DELETE);
211 zserv_encode_interface (s, ifp);
paul718e3742002-12-13 20:15:29 +0000212
ajs719e9742005-02-28 20:52:15 +0000213 return zebra_server_send_message (client);
paul718e3742002-12-13 20:15:29 +0000214}
215
paulb9df2d22004-05-09 09:09:59 +0000216/* Interface address is added/deleted. Send ZEBRA_INTERFACE_ADDRESS_ADD or
217 * ZEBRA_INTERFACE_ADDRESS_DELETE to the client.
218 *
219 * A ZEBRA_INTERFACE_ADDRESS_ADD is sent in the following situations:
220 * - in response to a 3-byte ZEBRA_INTERFACE_ADD request
221 * from the client, after the ZEBRA_INTERFACE_ADD has been
222 * sent from zebra to the client
223 * - redistribute new address info to all clients in the following situations
224 * - at startup, when zebra figures out the available interfaces
225 * - when an interface is added (where support for
226 * RTM_IFANNOUNCE or AF_NETLINK sockets is available), or when
227 * an interface is marked IFF_UP (i.e., an RTM_IFINFO message is
228 * received)
229 * - for the vty commands "ip address A.B.C.D/M [<secondary>|<label LINE>]"
230 * and "no bandwidth <1-10000000>", "ipv6 address X:X::X:X/M"
231 * - when an RTM_NEWADDR message is received from the kernel,
232 *
233 * The call tree that triggers ZEBRA_INTERFACE_ADDRESS_DELETE:
234 *
235 * zsend_interface_address(DELETE)
236 * ^
237 * |
238 * zebra_interface_address_delete_update
239 * ^ ^ ^
paul6eb88272005-07-29 14:36:00 +0000240 * | | if_delete_update
241 * | |
paulb9df2d22004-05-09 09:09:59 +0000242 * ip_address_uninstall connected_delete_ipv4
243 * [ipv6_addresss_uninstall] [connected_delete_ipv6]
244 * ^ ^
245 * | |
246 * | RTM_NEWADDR on routing/netlink socket
247 * |
248 * vty commands:
249 * "no ip address A.B.C.D/M [label LINE]"
250 * "no ip address A.B.C.D/M secondary"
251 * ["no ipv6 address X:X::X:X/M"]
252 *
253 */
paul718e3742002-12-13 20:15:29 +0000254int
paulb9df2d22004-05-09 09:09:59 +0000255zsend_interface_address (int cmd, struct zserv *client,
256 struct interface *ifp, struct connected *ifc)
paul718e3742002-12-13 20:15:29 +0000257{
258 int blen;
259 struct stream *s;
260 struct prefix *p;
261
262 /* Check this client need interface information. */
263 if (! client->ifinfo)
ajs719e9742005-02-28 20:52:15 +0000264 return 0;
paul718e3742002-12-13 20:15:29 +0000265
266 s = client->obuf;
267 stream_reset (s);
paulc1b98002006-01-16 01:54:02 +0000268
269 zserv_create_header (s, cmd);
paul718e3742002-12-13 20:15:29 +0000270 stream_putl (s, ifp->ifindex);
271
272 /* Interface address flag. */
273 stream_putc (s, ifc->flags);
274
275 /* Prefix information. */
276 p = ifc->address;
277 stream_putc (s, p->family);
278 blen = prefix_blen (p);
279 stream_put (s, &p->u.prefix, blen);
paulb9df2d22004-05-09 09:09:59 +0000280
281 /*
282 * XXX gnu version does not send prefixlen for ZEBRA_INTERFACE_ADDRESS_DELETE
283 * but zebra_interface_address_delete_read() in the gnu version
284 * expects to find it
285 */
paul718e3742002-12-13 20:15:29 +0000286 stream_putc (s, p->prefixlen);
287
288 /* Destination. */
289 p = ifc->destination;
290 if (p)
291 stream_put (s, &p->u.prefix, blen);
292 else
293 stream_put (s, NULL, blen);
294
295 /* Write packet size. */
296 stream_putw_at (s, 0, stream_get_endp (s));
297
ajs719e9742005-02-28 20:52:15 +0000298 return zebra_server_send_message(client);
paul718e3742002-12-13 20:15:29 +0000299}
300
paulb9df2d22004-05-09 09:09:59 +0000301/*
302 * The cmd passed to zsend_interface_update may be ZEBRA_INTERFACE_UP or
303 * ZEBRA_INTERFACE_DOWN.
304 *
305 * The ZEBRA_INTERFACE_UP message is sent from the zebra server to
306 * the clients in one of 2 situations:
307 * - an if_up is detected e.g., as a result of an RTM_IFINFO message
308 * - a vty command modifying the bandwidth of an interface is received.
309 * The ZEBRA_INTERFACE_DOWN message is sent when an if_down is detected.
310 */
paul718e3742002-12-13 20:15:29 +0000311int
paulb9df2d22004-05-09 09:09:59 +0000312zsend_interface_update (int cmd, struct zserv *client, struct interface *ifp)
paul718e3742002-12-13 20:15:29 +0000313{
314 struct stream *s;
315
316 /* Check this client need interface information. */
317 if (! client->ifinfo)
ajs719e9742005-02-28 20:52:15 +0000318 return 0;
paul718e3742002-12-13 20:15:29 +0000319
320 s = client->obuf;
321 stream_reset (s);
322
paulc1b98002006-01-16 01:54:02 +0000323 zserv_create_header (s, cmd);
Josh Bailey51d4ef82012-03-21 17:13:39 -0700324 zserv_encode_interface (s, ifp);
paul718e3742002-12-13 20:15:29 +0000325
ajs719e9742005-02-28 20:52:15 +0000326 return zebra_server_send_message(client);
paul718e3742002-12-13 20:15:29 +0000327}
328
paulb9df2d22004-05-09 09:09:59 +0000329/*
330 * The zebra server sends the clients a ZEBRA_IPV4_ROUTE_ADD or a
331 * ZEBRA_IPV6_ROUTE_ADD via zsend_route_multipath in the following
332 * situations:
333 * - when the client starts up, and requests default information
334 * by sending a ZEBRA_REDISTRIBUTE_DEFAULT_ADD to the zebra server, in the
335 * - case of rip, ripngd, ospfd and ospf6d, when the client sends a
336 * ZEBRA_REDISTRIBUTE_ADD as a result of the "redistribute" vty cmd,
337 * - when the zebra server redistributes routes after it updates its rib
338 *
339 * The zebra server sends clients a ZEBRA_IPV4_ROUTE_DELETE or a
340 * ZEBRA_IPV6_ROUTE_DELETE via zsend_route_multipath when:
341 * - a "ip route" or "ipv6 route" vty command is issued, a prefix is
342 * - deleted from zebra's rib, and this info
343 * has to be redistributed to the clients
344 *
345 * XXX The ZEBRA_IPV*_ROUTE_ADD message is also sent by the client to the
346 * zebra server when the client wants to tell the zebra server to add a
347 * route to the kernel (zapi_ipv4_add etc. ). Since it's essentially the
348 * same message being sent back and forth, this function and
349 * zapi_ipv{4,6}_{add, delete} should be re-written to avoid code
350 * duplication.
351 */
paul718e3742002-12-13 20:15:29 +0000352int
paulb9df2d22004-05-09 09:09:59 +0000353zsend_route_multipath (int cmd, struct zserv *client, struct prefix *p,
354 struct rib *rib)
paul718e3742002-12-13 20:15:29 +0000355{
356 int psize;
357 struct stream *s;
358 struct nexthop *nexthop;
paul1dcb5172005-05-31 08:38:50 +0000359 unsigned long nhnummark = 0, messmark = 0;
paulb9df2d22004-05-09 09:09:59 +0000360 int nhnum = 0;
paul1dcb5172005-05-31 08:38:50 +0000361 u_char zapi_flags = 0;
paulb9df2d22004-05-09 09:09:59 +0000362
paul718e3742002-12-13 20:15:29 +0000363 s = client->obuf;
364 stream_reset (s);
paulc1b98002006-01-16 01:54:02 +0000365
366 zserv_create_header (s, cmd);
367
368 /* Put type and nexthop. */
paul718e3742002-12-13 20:15:29 +0000369 stream_putc (s, rib->type);
370 stream_putc (s, rib->flags);
paul1dcb5172005-05-31 08:38:50 +0000371
372 /* marker for message flags field */
373 messmark = stream_get_endp (s);
374 stream_putc (s, 0);
paul718e3742002-12-13 20:15:29 +0000375
376 /* Prefix. */
377 psize = PSIZE (p->prefixlen);
378 stream_putc (s, p->prefixlen);
paulb9df2d22004-05-09 09:09:59 +0000379 stream_write (s, (u_char *) & p->u.prefix, psize);
paul718e3742002-12-13 20:15:29 +0000380
paulb9df2d22004-05-09 09:09:59 +0000381 /*
382 * XXX The message format sent by zebra below does not match the format
383 * of the corresponding message expected by the zebra server
384 * itself (e.g., see zread_ipv4_add). The nexthop_num is not set correctly,
385 * (is there a bug on the client side if more than one segment is sent?)
386 * nexthop ZEBRA_NEXTHOP_IPV4 is never set, ZEBRA_NEXTHOP_IFINDEX
387 * is hard-coded.
388 */
paul718e3742002-12-13 20:15:29 +0000389 /* Nexthop */
paul1dcb5172005-05-31 08:38:50 +0000390
paul718e3742002-12-13 20:15:29 +0000391 for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
392 {
Christian Frankefa713d92013-07-05 15:35:37 +0000393 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB)
394 || nexthop_has_fib_child(nexthop))
paulb9df2d22004-05-09 09:09:59 +0000395 {
paul1dcb5172005-05-31 08:38:50 +0000396 SET_FLAG (zapi_flags, ZAPI_MESSAGE_NEXTHOP);
397 SET_FLAG (zapi_flags, ZAPI_MESSAGE_IFINDEX);
398
399 if (nhnummark == 0)
400 {
401 nhnummark = stream_get_endp (s);
402 stream_putc (s, 1); /* placeholder */
403 }
404
paulb9df2d22004-05-09 09:09:59 +0000405 nhnum++;
paul718e3742002-12-13 20:15:29 +0000406
paulb9df2d22004-05-09 09:09:59 +0000407 switch(nexthop->type)
408 {
409 case NEXTHOP_TYPE_IPV4:
410 case NEXTHOP_TYPE_IPV4_IFINDEX:
411 stream_put_in_addr (s, &nexthop->gate.ipv4);
412 break;
413#ifdef HAVE_IPV6
414 case NEXTHOP_TYPE_IPV6:
415 case NEXTHOP_TYPE_IPV6_IFINDEX:
416 case NEXTHOP_TYPE_IPV6_IFNAME:
417 stream_write (s, (u_char *) &nexthop->gate.ipv6, 16);
418 break;
419#endif
420 default:
421 if (cmd == ZEBRA_IPV4_ROUTE_ADD
422 || cmd == ZEBRA_IPV4_ROUTE_DELETE)
423 {
424 struct in_addr empty;
paul44983cf2004-09-22 13:15:58 +0000425 memset (&empty, 0, sizeof (struct in_addr));
paulb9df2d22004-05-09 09:09:59 +0000426 stream_write (s, (u_char *) &empty, IPV4_MAX_BYTELEN);
427 }
428 else
429 {
430 struct in6_addr empty;
431 memset (&empty, 0, sizeof (struct in6_addr));
432 stream_write (s, (u_char *) &empty, IPV6_MAX_BYTELEN);
433 }
434 }
paul718e3742002-12-13 20:15:29 +0000435
paulb9df2d22004-05-09 09:09:59 +0000436 /* Interface index. */
437 stream_putc (s, 1);
438 stream_putl (s, nexthop->ifindex);
paul718e3742002-12-13 20:15:29 +0000439
paulb9df2d22004-05-09 09:09:59 +0000440 break;
441 }
paul718e3742002-12-13 20:15:29 +0000442 }
443
444 /* Metric */
Stephen Hemmingercf8a8312010-08-18 15:56:46 -0700445 if (cmd == ZEBRA_IPV4_ROUTE_ADD || cmd == ZEBRA_IPV6_ROUTE_ADD)
paul1dcb5172005-05-31 08:38:50 +0000446 {
vincentfbf5d032005-09-29 11:25:50 +0000447 SET_FLAG (zapi_flags, ZAPI_MESSAGE_DISTANCE);
448 stream_putc (s, rib->distance);
paul1dcb5172005-05-31 08:38:50 +0000449 SET_FLAG (zapi_flags, ZAPI_MESSAGE_METRIC);
450 stream_putl (s, rib->metric);
451 }
452
453 /* write real message flags value */
454 stream_putc_at (s, messmark, zapi_flags);
455
paulb9df2d22004-05-09 09:09:59 +0000456 /* Write next-hop number */
457 if (nhnummark)
hassoc1eaa442004-10-19 06:26:01 +0000458 stream_putc_at (s, nhnummark, nhnum);
paulb9df2d22004-05-09 09:09:59 +0000459
paul718e3742002-12-13 20:15:29 +0000460 /* Write packet size. */
461 stream_putw_at (s, 0, stream_get_endp (s));
462
ajs719e9742005-02-28 20:52:15 +0000463 return zebra_server_send_message(client);
paul718e3742002-12-13 20:15:29 +0000464}
465
paul718e3742002-12-13 20:15:29 +0000466#ifdef HAVE_IPV6
ajs719e9742005-02-28 20:52:15 +0000467static int
paul718e3742002-12-13 20:15:29 +0000468zsend_ipv6_nexthop_lookup (struct zserv *client, struct in6_addr *addr)
469{
470 struct stream *s;
471 struct rib *rib;
472 unsigned long nump;
473 u_char num;
474 struct nexthop *nexthop;
475
476 /* Lookup nexthop. */
Feng Lu0d0686f2015-05-22 11:40:02 +0200477 rib = rib_match_ipv6 (addr, VRF_DEFAULT);
paul718e3742002-12-13 20:15:29 +0000478
479 /* Get output stream. */
480 s = client->obuf;
481 stream_reset (s);
482
483 /* Fill in result. */
paulc1b98002006-01-16 01:54:02 +0000484 zserv_create_header (s, ZEBRA_IPV6_NEXTHOP_LOOKUP);
paul718e3742002-12-13 20:15:29 +0000485 stream_put (s, &addr, 16);
486
487 if (rib)
488 {
489 stream_putl (s, rib->metric);
490 num = 0;
paul9985f832005-02-09 15:51:56 +0000491 nump = stream_get_endp(s);
paul718e3742002-12-13 20:15:29 +0000492 stream_putc (s, 0);
Christian Frankefa713d92013-07-05 15:35:37 +0000493 /* Only non-recursive routes are elegible to resolve nexthop we
494 * are looking up. Therefore, we will just iterate over the top
495 * chain of nexthops. */
paul718e3742002-12-13 20:15:29 +0000496 for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
497 if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
498 {
499 stream_putc (s, nexthop->type);
500 switch (nexthop->type)
501 {
502 case ZEBRA_NEXTHOP_IPV6:
503 stream_put (s, &nexthop->gate.ipv6, 16);
504 break;
505 case ZEBRA_NEXTHOP_IPV6_IFINDEX:
506 case ZEBRA_NEXTHOP_IPV6_IFNAME:
507 stream_put (s, &nexthop->gate.ipv6, 16);
508 stream_putl (s, nexthop->ifindex);
509 break;
510 case ZEBRA_NEXTHOP_IFINDEX:
511 case ZEBRA_NEXTHOP_IFNAME:
512 stream_putl (s, nexthop->ifindex);
513 break;
hassofa2b17e2004-03-04 17:45:00 +0000514 default:
515 /* do nothing */
516 break;
paul718e3742002-12-13 20:15:29 +0000517 }
518 num++;
519 }
520 stream_putc_at (s, nump, num);
521 }
522 else
523 {
524 stream_putl (s, 0);
525 stream_putc (s, 0);
526 }
527
528 stream_putw_at (s, 0, stream_get_endp (s));
529
ajs719e9742005-02-28 20:52:15 +0000530 return zebra_server_send_message(client);
paul718e3742002-12-13 20:15:29 +0000531}
532#endif /* HAVE_IPV6 */
533
paulb9df2d22004-05-09 09:09:59 +0000534static int
paul718e3742002-12-13 20:15:29 +0000535zsend_ipv4_nexthop_lookup (struct zserv *client, struct in_addr addr)
536{
537 struct stream *s;
538 struct rib *rib;
539 unsigned long nump;
540 u_char num;
541 struct nexthop *nexthop;
542
David Lamparterf598cf72014-11-22 14:44:20 -0800543 /* Lookup nexthop - eBGP excluded */
Feng Lu0d0686f2015-05-22 11:40:02 +0200544 rib = rib_match_ipv4_safi (addr, SAFI_UNICAST, 1, NULL, VRF_DEFAULT);
paul718e3742002-12-13 20:15:29 +0000545
546 /* Get output stream. */
547 s = client->obuf;
548 stream_reset (s);
549
550 /* Fill in result. */
paulc1b98002006-01-16 01:54:02 +0000551 zserv_create_header (s, ZEBRA_IPV4_NEXTHOP_LOOKUP);
paul718e3742002-12-13 20:15:29 +0000552 stream_put_in_addr (s, &addr);
553
554 if (rib)
555 {
Christian Frankebb97e462013-05-25 14:01:35 +0000556 if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
557 zlog_debug("%s: Matching rib entry found.", __func__);
paul718e3742002-12-13 20:15:29 +0000558 stream_putl (s, rib->metric);
559 num = 0;
paul9985f832005-02-09 15:51:56 +0000560 nump = stream_get_endp(s);
paul718e3742002-12-13 20:15:29 +0000561 stream_putc (s, 0);
Christian Frankefa713d92013-07-05 15:35:37 +0000562 /* Only non-recursive routes are elegible to resolve the nexthop we
563 * are looking up. Therefore, we will just iterate over the top
564 * chain of nexthops. */
paul718e3742002-12-13 20:15:29 +0000565 for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
566 if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
567 {
568 stream_putc (s, nexthop->type);
569 switch (nexthop->type)
570 {
571 case ZEBRA_NEXTHOP_IPV4:
572 stream_put_in_addr (s, &nexthop->gate.ipv4);
573 break;
Christian Frankebb97e462013-05-25 14:01:35 +0000574 case ZEBRA_NEXTHOP_IPV4_IFINDEX:
575 stream_put_in_addr (s, &nexthop->gate.ipv4);
576 stream_putl (s, nexthop->ifindex);
577 break;
paul718e3742002-12-13 20:15:29 +0000578 case ZEBRA_NEXTHOP_IFINDEX:
579 case ZEBRA_NEXTHOP_IFNAME:
580 stream_putl (s, nexthop->ifindex);
581 break;
hassofa2b17e2004-03-04 17:45:00 +0000582 default:
583 /* do nothing */
584 break;
paul718e3742002-12-13 20:15:29 +0000585 }
586 num++;
587 }
588 stream_putc_at (s, nump, num);
589 }
590 else
591 {
Christian Frankebb97e462013-05-25 14:01:35 +0000592 if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
593 zlog_debug("%s: No matching rib entry found.", __func__);
paul718e3742002-12-13 20:15:29 +0000594 stream_putl (s, 0);
595 stream_putc (s, 0);
596 }
597
598 stream_putw_at (s, 0, stream_get_endp (s));
599
ajs719e9742005-02-28 20:52:15 +0000600 return zebra_server_send_message(client);
paul718e3742002-12-13 20:15:29 +0000601}
602
Everton Marques4e5275b2014-07-01 15:15:52 -0300603/*
604 Modified version of zsend_ipv4_nexthop_lookup():
605 Query unicast rib if nexthop is not found on mrib.
606 Returns both route metric and protocol distance.
607*/
608static int
David Lamparterbd078122015-01-06 19:53:24 +0100609zsend_ipv4_nexthop_lookup_mrib (struct zserv *client, struct in_addr addr,
610 struct rib *rib)
Everton Marques4e5275b2014-07-01 15:15:52 -0300611{
612 struct stream *s;
Everton Marques4e5275b2014-07-01 15:15:52 -0300613 unsigned long nump;
614 u_char num;
615 struct nexthop *nexthop;
Everton Marques4e5275b2014-07-01 15:15:52 -0300616
617 /* Get output stream. */
618 s = client->obuf;
619 stream_reset (s);
620
621 /* Fill in result. */
622 zserv_create_header (s, ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB);
623 stream_put_in_addr (s, &addr);
624
625 if (rib)
626 {
627 stream_putc (s, rib->distance);
628 stream_putl (s, rib->metric);
629 num = 0;
630 nump = stream_get_endp(s); /* remember position for nexthop_num */
631 stream_putc (s, 0); /* reserve room for nexthop_num */
632 /* Only non-recursive routes are elegible to resolve the nexthop we
633 * are looking up. Therefore, we will just iterate over the top
634 * chain of nexthops. */
635 for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
636 if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
637 {
638 stream_putc (s, nexthop->type);
639 switch (nexthop->type)
640 {
641 case ZEBRA_NEXTHOP_IPV4:
642 stream_put_in_addr (s, &nexthop->gate.ipv4);
643 break;
644 case ZEBRA_NEXTHOP_IPV4_IFINDEX:
645 stream_put_in_addr (s, &nexthop->gate.ipv4);
646 stream_putl (s, nexthop->ifindex);
647 break;
648 case ZEBRA_NEXTHOP_IFINDEX:
649 case ZEBRA_NEXTHOP_IFNAME:
650 stream_putl (s, nexthop->ifindex);
651 break;
652 default:
653 /* do nothing */
654 break;
655 }
656 num++;
657 }
658
659 stream_putc_at (s, nump, num); /* store nexthop_num */
660 }
661 else
662 {
663 stream_putc (s, 0); /* distance */
664 stream_putl (s, 0); /* metric */
665 stream_putc (s, 0); /* nexthop_num */
666 }
667
668 stream_putw_at (s, 0, stream_get_endp (s));
669
670 return zebra_server_send_message(client);
671}
672
paulb9df2d22004-05-09 09:09:59 +0000673static int
paul718e3742002-12-13 20:15:29 +0000674zsend_ipv4_import_lookup (struct zserv *client, struct prefix_ipv4 *p)
675{
676 struct stream *s;
677 struct rib *rib;
678 unsigned long nump;
679 u_char num;
680 struct nexthop *nexthop;
681
682 /* Lookup nexthop. */
Feng Lu0d0686f2015-05-22 11:40:02 +0200683 rib = rib_lookup_ipv4 (p, VRF_DEFAULT);
paul718e3742002-12-13 20:15:29 +0000684
685 /* Get output stream. */
686 s = client->obuf;
687 stream_reset (s);
688
689 /* Fill in result. */
paulc1b98002006-01-16 01:54:02 +0000690 zserv_create_header (s, ZEBRA_IPV4_IMPORT_LOOKUP);
paul718e3742002-12-13 20:15:29 +0000691 stream_put_in_addr (s, &p->prefix);
692
693 if (rib)
694 {
695 stream_putl (s, rib->metric);
696 num = 0;
paul9985f832005-02-09 15:51:56 +0000697 nump = stream_get_endp(s);
paul718e3742002-12-13 20:15:29 +0000698 stream_putc (s, 0);
699 for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next)
Christian Frankefa713d92013-07-05 15:35:37 +0000700 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB)
701 || nexthop_has_fib_child(nexthop))
paul718e3742002-12-13 20:15:29 +0000702 {
703 stream_putc (s, nexthop->type);
704 switch (nexthop->type)
705 {
706 case ZEBRA_NEXTHOP_IPV4:
707 stream_put_in_addr (s, &nexthop->gate.ipv4);
708 break;
Christian Frankea12afd52013-05-25 14:01:36 +0000709 case ZEBRA_NEXTHOP_IPV4_IFINDEX:
710 stream_put_in_addr (s, &nexthop->gate.ipv4);
711 stream_putl (s, nexthop->ifindex);
712 break;
paul718e3742002-12-13 20:15:29 +0000713 case ZEBRA_NEXTHOP_IFINDEX:
714 case ZEBRA_NEXTHOP_IFNAME:
715 stream_putl (s, nexthop->ifindex);
716 break;
hassofa2b17e2004-03-04 17:45:00 +0000717 default:
718 /* do nothing */
719 break;
paul718e3742002-12-13 20:15:29 +0000720 }
721 num++;
722 }
723 stream_putc_at (s, nump, num);
724 }
725 else
726 {
727 stream_putl (s, 0);
728 stream_putc (s, 0);
729 }
730
731 stream_putw_at (s, 0, stream_get_endp (s));
732
ajs719e9742005-02-28 20:52:15 +0000733 return zebra_server_send_message(client);
paul718e3742002-12-13 20:15:29 +0000734}
David Lamparter6b0655a2014-06-04 06:53:35 +0200735
hasso18a6dce2004-10-03 18:18:34 +0000736/* Router-id is updated. Send ZEBRA_ROUTER_ID_ADD to client. */
737int
Feng Luac19a442015-05-22 11:40:07 +0200738zsend_router_id_update (struct zserv *client, struct prefix *p,
739 vrf_id_t vrf_id)
hasso18a6dce2004-10-03 18:18:34 +0000740{
741 struct stream *s;
742 int blen;
743
744 /* Check this client need interface information. */
745 if (!client->ridinfo)
ajs719e9742005-02-28 20:52:15 +0000746 return 0;
hasso18a6dce2004-10-03 18:18:34 +0000747
748 s = client->obuf;
749 stream_reset (s);
750
hasso18a6dce2004-10-03 18:18:34 +0000751 /* Message type. */
paulc1b98002006-01-16 01:54:02 +0000752 zserv_create_header (s, ZEBRA_ROUTER_ID_UPDATE);
hasso18a6dce2004-10-03 18:18:34 +0000753
754 /* Prefix information. */
755 stream_putc (s, p->family);
756 blen = prefix_blen (p);
757 stream_put (s, &p->u.prefix, blen);
758 stream_putc (s, p->prefixlen);
759
760 /* Write packet size. */
761 stream_putw_at (s, 0, stream_get_endp (s));
762
ajs719e9742005-02-28 20:52:15 +0000763 return zebra_server_send_message(client);
hasso18a6dce2004-10-03 18:18:34 +0000764}
David Lamparter6b0655a2014-06-04 06:53:35 +0200765
paul718e3742002-12-13 20:15:29 +0000766/* Register zebra server interface information. Send current all
767 interface and address information. */
ajs719e9742005-02-28 20:52:15 +0000768static int
paul718e3742002-12-13 20:15:29 +0000769zread_interface_add (struct zserv *client, u_short length)
770{
paul1eb8ef22005-04-07 07:30:20 +0000771 struct listnode *ifnode, *ifnnode;
772 struct listnode *cnode, *cnnode;
paul718e3742002-12-13 20:15:29 +0000773 struct interface *ifp;
774 struct connected *c;
775
776 /* Interface information is needed. */
777 client->ifinfo = 1;
778
paul1eb8ef22005-04-07 07:30:20 +0000779 for (ALL_LIST_ELEMENTS (iflist, ifnode, ifnnode, ifp))
paul718e3742002-12-13 20:15:29 +0000780 {
paul718e3742002-12-13 20:15:29 +0000781 /* Skip pseudo interface. */
782 if (! CHECK_FLAG (ifp->status, ZEBRA_INTERFACE_ACTIVE))
783 continue;
784
ajs719e9742005-02-28 20:52:15 +0000785 if (zsend_interface_add (client, ifp) < 0)
786 return -1;
paul718e3742002-12-13 20:15:29 +0000787
paul1eb8ef22005-04-07 07:30:20 +0000788 for (ALL_LIST_ELEMENTS (ifp->connected, cnode, cnnode, c))
paul718e3742002-12-13 20:15:29 +0000789 {
ajs719e9742005-02-28 20:52:15 +0000790 if (CHECK_FLAG (c->conf, ZEBRA_IFC_REAL) &&
791 (zsend_interface_address (ZEBRA_INTERFACE_ADDRESS_ADD, client,
792 ifp, c) < 0))
793 return -1;
paul718e3742002-12-13 20:15:29 +0000794 }
795 }
ajs719e9742005-02-28 20:52:15 +0000796 return 0;
paul718e3742002-12-13 20:15:29 +0000797}
798
799/* Unregister zebra server interface information. */
ajs719e9742005-02-28 20:52:15 +0000800static int
paul718e3742002-12-13 20:15:29 +0000801zread_interface_delete (struct zserv *client, u_short length)
802{
803 client->ifinfo = 0;
ajs719e9742005-02-28 20:52:15 +0000804 return 0;
paul718e3742002-12-13 20:15:29 +0000805}
806
807/* This function support multiple nexthop. */
paulb9df2d22004-05-09 09:09:59 +0000808/*
809 * Parse the ZEBRA_IPV4_ROUTE_ADD sent from client. Update rib and
810 * add kernel route.
811 */
ajs719e9742005-02-28 20:52:15 +0000812static int
paul718e3742002-12-13 20:15:29 +0000813zread_ipv4_add (struct zserv *client, u_short length)
814{
815 int i;
816 struct rib *rib;
817 struct prefix_ipv4 p;
818 u_char message;
819 struct in_addr nexthop;
820 u_char nexthop_num;
821 u_char nexthop_type;
822 struct stream *s;
823 unsigned int ifindex;
824 u_char ifname_len;
G.Balajicddf3912011-11-26 21:59:32 +0400825 safi_t safi;
826
paul718e3742002-12-13 20:15:29 +0000827
828 /* Get input stream. */
829 s = client->ibuf;
830
831 /* Allocate new rib. */
paul4d38fdb2005-04-28 17:35:14 +0000832 rib = XCALLOC (MTYPE_RIB, sizeof (struct rib));
833
paul718e3742002-12-13 20:15:29 +0000834 /* Type, flags, message. */
835 rib->type = stream_getc (s);
836 rib->flags = stream_getc (s);
paulb9df2d22004-05-09 09:09:59 +0000837 message = stream_getc (s);
G.Balajicddf3912011-11-26 21:59:32 +0400838 safi = stream_getw (s);
paul718e3742002-12-13 20:15:29 +0000839 rib->uptime = time (NULL);
840
841 /* IPv4 prefix. */
842 memset (&p, 0, sizeof (struct prefix_ipv4));
843 p.family = AF_INET;
844 p.prefixlen = stream_getc (s);
845 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
846
Feng Lu0d0686f2015-05-22 11:40:02 +0200847 /* VRF ID */
848 rib->vrf_id = VRF_DEFAULT;
849
paul718e3742002-12-13 20:15:29 +0000850 /* Nexthop parse. */
851 if (CHECK_FLAG (message, ZAPI_MESSAGE_NEXTHOP))
852 {
853 nexthop_num = stream_getc (s);
854
855 for (i = 0; i < nexthop_num; i++)
856 {
857 nexthop_type = stream_getc (s);
858
859 switch (nexthop_type)
860 {
861 case ZEBRA_NEXTHOP_IFINDEX:
862 ifindex = stream_getl (s);
863 nexthop_ifindex_add (rib, ifindex);
864 break;
865 case ZEBRA_NEXTHOP_IFNAME:
866 ifname_len = stream_getc (s);
paul9985f832005-02-09 15:51:56 +0000867 stream_forward_getp (s, ifname_len);
paul718e3742002-12-13 20:15:29 +0000868 break;
869 case ZEBRA_NEXTHOP_IPV4:
870 nexthop.s_addr = stream_get_ipv4 (s);
Paul Jakma7514fb72007-05-02 16:05:35 +0000871 nexthop_ipv4_add (rib, &nexthop, NULL);
paul718e3742002-12-13 20:15:29 +0000872 break;
Joakim Tjernlundc963c202012-07-07 17:06:13 +0200873 case ZEBRA_NEXTHOP_IPV4_IFINDEX:
874 nexthop.s_addr = stream_get_ipv4 (s);
875 ifindex = stream_getl (s);
876 nexthop_ipv4_ifindex_add (rib, &nexthop, NULL, ifindex);
877 break;
paul718e3742002-12-13 20:15:29 +0000878 case ZEBRA_NEXTHOP_IPV6:
paul9985f832005-02-09 15:51:56 +0000879 stream_forward_getp (s, IPV6_MAX_BYTELEN);
paul718e3742002-12-13 20:15:29 +0000880 break;
Subbaiah Venkata6902c692012-03-27 19:21:29 -0700881 case ZEBRA_NEXTHOP_BLACKHOLE:
882 nexthop_blackhole_add (rib);
883 break;
884 }
paul718e3742002-12-13 20:15:29 +0000885 }
886 }
887
888 /* Distance. */
889 if (CHECK_FLAG (message, ZAPI_MESSAGE_DISTANCE))
890 rib->distance = stream_getc (s);
891
892 /* Metric. */
893 if (CHECK_FLAG (message, ZAPI_MESSAGE_METRIC))
894 rib->metric = stream_getl (s);
895
Paul Jakma171eee32006-07-27 16:11:02 +0000896 /* Table */
897 rib->table=zebrad.rtm_table_default;
G.Balajicddf3912011-11-26 21:59:32 +0400898 rib_add_ipv4_multipath (&p, rib, safi);
ajs719e9742005-02-28 20:52:15 +0000899 return 0;
paul718e3742002-12-13 20:15:29 +0000900}
901
902/* Zebra server IPv4 prefix delete function. */
ajs719e9742005-02-28 20:52:15 +0000903static int
paul718e3742002-12-13 20:15:29 +0000904zread_ipv4_delete (struct zserv *client, u_short length)
905{
906 int i;
907 struct stream *s;
908 struct zapi_ipv4 api;
Subbaiah Venkata6902c692012-03-27 19:21:29 -0700909 struct in_addr nexthop, *nexthop_p;
paul718e3742002-12-13 20:15:29 +0000910 unsigned long ifindex;
911 struct prefix_ipv4 p;
912 u_char nexthop_num;
913 u_char nexthop_type;
914 u_char ifname_len;
915
916 s = client->ibuf;
917 ifindex = 0;
918 nexthop.s_addr = 0;
Subbaiah Venkata6902c692012-03-27 19:21:29 -0700919 nexthop_p = NULL;
paul718e3742002-12-13 20:15:29 +0000920
921 /* Type, flags, message. */
922 api.type = stream_getc (s);
923 api.flags = stream_getc (s);
924 api.message = stream_getc (s);
G.Balajicddf3912011-11-26 21:59:32 +0400925 api.safi = stream_getw (s);
paul718e3742002-12-13 20:15:29 +0000926
927 /* IPv4 prefix. */
928 memset (&p, 0, sizeof (struct prefix_ipv4));
929 p.family = AF_INET;
930 p.prefixlen = stream_getc (s);
931 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
932
933 /* Nexthop, ifindex, distance, metric. */
934 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
935 {
936 nexthop_num = stream_getc (s);
937
938 for (i = 0; i < nexthop_num; i++)
939 {
940 nexthop_type = stream_getc (s);
941
942 switch (nexthop_type)
943 {
944 case ZEBRA_NEXTHOP_IFINDEX:
945 ifindex = stream_getl (s);
946 break;
947 case ZEBRA_NEXTHOP_IFNAME:
948 ifname_len = stream_getc (s);
paul9985f832005-02-09 15:51:56 +0000949 stream_forward_getp (s, ifname_len);
paul718e3742002-12-13 20:15:29 +0000950 break;
951 case ZEBRA_NEXTHOP_IPV4:
952 nexthop.s_addr = stream_get_ipv4 (s);
Subbaiah Venkata6902c692012-03-27 19:21:29 -0700953 nexthop_p = &nexthop;
paul718e3742002-12-13 20:15:29 +0000954 break;
Joakim Tjernlundc963c202012-07-07 17:06:13 +0200955 case ZEBRA_NEXTHOP_IPV4_IFINDEX:
956 nexthop.s_addr = stream_get_ipv4 (s);
Christian Franke23f5f7c2013-11-27 17:06:14 +0000957 nexthop_p = &nexthop;
Joakim Tjernlundc963c202012-07-07 17:06:13 +0200958 ifindex = stream_getl (s);
959 break;
paul718e3742002-12-13 20:15:29 +0000960 case ZEBRA_NEXTHOP_IPV6:
paul9985f832005-02-09 15:51:56 +0000961 stream_forward_getp (s, IPV6_MAX_BYTELEN);
paul718e3742002-12-13 20:15:29 +0000962 break;
963 }
964 }
965 }
966
967 /* Distance. */
968 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
969 api.distance = stream_getc (s);
970 else
971 api.distance = 0;
972
973 /* Metric. */
974 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
975 api.metric = stream_getl (s);
976 else
977 api.metric = 0;
978
Subbaiah Venkata6902c692012-03-27 19:21:29 -0700979 rib_delete_ipv4 (api.type, api.flags, &p, nexthop_p, ifindex,
Feng Lu0d0686f2015-05-22 11:40:02 +0200980 VRF_DEFAULT, api.safi);
ajs719e9742005-02-28 20:52:15 +0000981 return 0;
paul718e3742002-12-13 20:15:29 +0000982}
983
984/* Nexthop lookup for IPv4. */
ajs719e9742005-02-28 20:52:15 +0000985static int
paul718e3742002-12-13 20:15:29 +0000986zread_ipv4_nexthop_lookup (struct zserv *client, u_short length)
987{
988 struct in_addr addr;
Christian Frankebb97e462013-05-25 14:01:35 +0000989 char buf[BUFSIZ];
paul718e3742002-12-13 20:15:29 +0000990
991 addr.s_addr = stream_get_ipv4 (client->ibuf);
Christian Frankebb97e462013-05-25 14:01:35 +0000992 if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
993 zlog_debug("%s: looking up %s", __func__,
994 inet_ntop (AF_INET, &addr, buf, BUFSIZ));
ajs719e9742005-02-28 20:52:15 +0000995 return zsend_ipv4_nexthop_lookup (client, addr);
paul718e3742002-12-13 20:15:29 +0000996}
997
Everton Marques4e5275b2014-07-01 15:15:52 -0300998/* MRIB Nexthop lookup for IPv4. */
999static int
1000zread_ipv4_nexthop_lookup_mrib (struct zserv *client, u_short length)
1001{
1002 struct in_addr addr;
David Lamparterbd078122015-01-06 19:53:24 +01001003 struct rib *rib;
Everton Marques4e5275b2014-07-01 15:15:52 -03001004
1005 addr.s_addr = stream_get_ipv4 (client->ibuf);
Feng Lu0d0686f2015-05-22 11:40:02 +02001006 rib = rib_match_ipv4_multicast (addr, NULL, VRF_DEFAULT);
David Lamparterbd078122015-01-06 19:53:24 +01001007 return zsend_ipv4_nexthop_lookup_mrib (client, addr, rib);
Everton Marques4e5275b2014-07-01 15:15:52 -03001008}
1009
paul718e3742002-12-13 20:15:29 +00001010/* Nexthop lookup for IPv4. */
ajs719e9742005-02-28 20:52:15 +00001011static int
paul718e3742002-12-13 20:15:29 +00001012zread_ipv4_import_lookup (struct zserv *client, u_short length)
1013{
1014 struct prefix_ipv4 p;
1015
1016 p.family = AF_INET;
1017 p.prefixlen = stream_getc (client->ibuf);
1018 p.prefix.s_addr = stream_get_ipv4 (client->ibuf);
1019
ajs719e9742005-02-28 20:52:15 +00001020 return zsend_ipv4_import_lookup (client, &p);
paul718e3742002-12-13 20:15:29 +00001021}
1022
1023#ifdef HAVE_IPV6
1024/* Zebra server IPv6 prefix add function. */
ajs719e9742005-02-28 20:52:15 +00001025static int
paul718e3742002-12-13 20:15:29 +00001026zread_ipv6_add (struct zserv *client, u_short length)
1027{
1028 int i;
1029 struct stream *s;
1030 struct zapi_ipv6 api;
1031 struct in6_addr nexthop;
1032 unsigned long ifindex;
1033 struct prefix_ipv6 p;
1034
1035 s = client->ibuf;
1036 ifindex = 0;
1037 memset (&nexthop, 0, sizeof (struct in6_addr));
1038
1039 /* Type, flags, message. */
1040 api.type = stream_getc (s);
1041 api.flags = stream_getc (s);
1042 api.message = stream_getc (s);
G.Balajif768f362011-11-26 22:10:39 +04001043 api.safi = stream_getw (s);
paul718e3742002-12-13 20:15:29 +00001044
1045 /* IPv4 prefix. */
1046 memset (&p, 0, sizeof (struct prefix_ipv6));
1047 p.family = AF_INET6;
1048 p.prefixlen = stream_getc (s);
1049 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
1050
1051 /* Nexthop, ifindex, distance, metric. */
1052 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
1053 {
1054 u_char nexthop_type;
1055
1056 api.nexthop_num = stream_getc (s);
1057 for (i = 0; i < api.nexthop_num; i++)
1058 {
1059 nexthop_type = stream_getc (s);
1060
1061 switch (nexthop_type)
1062 {
1063 case ZEBRA_NEXTHOP_IPV6:
1064 stream_get (&nexthop, s, 16);
1065 break;
1066 case ZEBRA_NEXTHOP_IFINDEX:
1067 ifindex = stream_getl (s);
1068 break;
1069 }
1070 }
1071 }
1072
1073 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
1074 api.distance = stream_getc (s);
1075 else
1076 api.distance = 0;
1077
1078 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
1079 api.metric = stream_getl (s);
1080 else
1081 api.metric = 0;
1082
1083 if (IN6_IS_ADDR_UNSPECIFIED (&nexthop))
Feng Lu0d0686f2015-05-22 11:40:02 +02001084 rib_add_ipv6 (api.type, api.flags, &p, NULL, ifindex,
1085 VRF_DEFAULT, zebrad.rtm_table_default, api.metric,
1086 api.distance, api.safi);
paul718e3742002-12-13 20:15:29 +00001087 else
Feng Lu0d0686f2015-05-22 11:40:02 +02001088 rib_add_ipv6 (api.type, api.flags, &p, &nexthop, ifindex,
1089 VRF_DEFAULT, zebrad.rtm_table_default, api.metric,
1090 api.distance, api.safi);
ajs719e9742005-02-28 20:52:15 +00001091 return 0;
paul718e3742002-12-13 20:15:29 +00001092}
1093
1094/* Zebra server IPv6 prefix delete function. */
ajs719e9742005-02-28 20:52:15 +00001095static int
paul718e3742002-12-13 20:15:29 +00001096zread_ipv6_delete (struct zserv *client, u_short length)
1097{
1098 int i;
1099 struct stream *s;
1100 struct zapi_ipv6 api;
1101 struct in6_addr nexthop;
1102 unsigned long ifindex;
1103 struct prefix_ipv6 p;
1104
1105 s = client->ibuf;
1106 ifindex = 0;
1107 memset (&nexthop, 0, sizeof (struct in6_addr));
1108
1109 /* Type, flags, message. */
1110 api.type = stream_getc (s);
1111 api.flags = stream_getc (s);
1112 api.message = stream_getc (s);
G.Balajif768f362011-11-26 22:10:39 +04001113 api.safi = stream_getw (s);
paul718e3742002-12-13 20:15:29 +00001114
1115 /* IPv4 prefix. */
1116 memset (&p, 0, sizeof (struct prefix_ipv6));
1117 p.family = AF_INET6;
1118 p.prefixlen = stream_getc (s);
1119 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
1120
1121 /* Nexthop, ifindex, distance, metric. */
1122 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
1123 {
1124 u_char nexthop_type;
1125
1126 api.nexthop_num = stream_getc (s);
1127 for (i = 0; i < api.nexthop_num; i++)
1128 {
1129 nexthop_type = stream_getc (s);
1130
1131 switch (nexthop_type)
1132 {
1133 case ZEBRA_NEXTHOP_IPV6:
1134 stream_get (&nexthop, s, 16);
1135 break;
1136 case ZEBRA_NEXTHOP_IFINDEX:
1137 ifindex = stream_getl (s);
1138 break;
1139 }
1140 }
1141 }
1142
1143 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
1144 api.distance = stream_getc (s);
1145 else
1146 api.distance = 0;
1147 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
1148 api.metric = stream_getl (s);
1149 else
1150 api.metric = 0;
1151
1152 if (IN6_IS_ADDR_UNSPECIFIED (&nexthop))
Feng Lu0d0686f2015-05-22 11:40:02 +02001153 rib_delete_ipv6 (api.type, api.flags, &p, NULL, ifindex, VRF_DEFAULT,
1154 api.safi);
paul718e3742002-12-13 20:15:29 +00001155 else
Feng Lu0d0686f2015-05-22 11:40:02 +02001156 rib_delete_ipv6 (api.type, api.flags, &p, &nexthop, ifindex, VRF_DEFAULT,
1157 api.safi);
ajs719e9742005-02-28 20:52:15 +00001158 return 0;
paul718e3742002-12-13 20:15:29 +00001159}
1160
ajs719e9742005-02-28 20:52:15 +00001161static int
paul718e3742002-12-13 20:15:29 +00001162zread_ipv6_nexthop_lookup (struct zserv *client, u_short length)
1163{
1164 struct in6_addr addr;
1165 char buf[BUFSIZ];
1166
1167 stream_get (&addr, client->ibuf, 16);
Christian Frankea5207082013-04-11 08:24:29 +00001168 if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
1169 zlog_debug("%s: looking up %s", __func__,
1170 inet_ntop (AF_INET6, &addr, buf, BUFSIZ));
paul718e3742002-12-13 20:15:29 +00001171
ajs719e9742005-02-28 20:52:15 +00001172 return zsend_ipv6_nexthop_lookup (client, &addr);
paul718e3742002-12-13 20:15:29 +00001173}
1174#endif /* HAVE_IPV6 */
1175
hasso18a6dce2004-10-03 18:18:34 +00001176/* Register zebra server router-id information. Send current router-id */
ajs719e9742005-02-28 20:52:15 +00001177static int
hasso18a6dce2004-10-03 18:18:34 +00001178zread_router_id_add (struct zserv *client, u_short length)
1179{
1180 struct prefix p;
1181
1182 /* Router-id information is needed. */
1183 client->ridinfo = 1;
1184
Feng Luac19a442015-05-22 11:40:07 +02001185 router_id_get (&p, VRF_DEFAULT);
hasso18a6dce2004-10-03 18:18:34 +00001186
Feng Luac19a442015-05-22 11:40:07 +02001187 return zsend_router_id_update (client, &p, VRF_DEFAULT);
hasso18a6dce2004-10-03 18:18:34 +00001188}
1189
1190/* Unregister zebra server router-id information. */
ajs719e9742005-02-28 20:52:15 +00001191static int
hasso18a6dce2004-10-03 18:18:34 +00001192zread_router_id_delete (struct zserv *client, u_short length)
1193{
1194 client->ridinfo = 0;
ajs719e9742005-02-28 20:52:15 +00001195 return 0;
hasso18a6dce2004-10-03 18:18:34 +00001196}
1197
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +04001198/* Tie up route-type and client->sock */
1199static void
1200zread_hello (struct zserv *client)
1201{
1202 /* type of protocol (lib/zebra.h) */
1203 u_char proto;
1204 proto = stream_getc (client->ibuf);
1205
1206 /* accept only dynamic routing protocols */
1207 if ((proto < ZEBRA_ROUTE_MAX)
1208 && (proto > ZEBRA_ROUTE_STATIC))
1209 {
1210 zlog_notice ("client %d says hello and bids fair to announce only %s routes",
1211 client->sock, zebra_route_string(proto));
1212
1213 /* if route-type was binded by other client */
1214 if (route_type_oaths[proto])
1215 zlog_warn ("sender of %s routes changed %c->%c",
1216 zebra_route_string(proto), route_type_oaths[proto],
1217 client->sock);
1218
1219 route_type_oaths[proto] = client->sock;
1220 }
1221}
1222
1223/* If client sent routes of specific type, zebra removes it
1224 * and returns number of deleted routes.
1225 */
1226static void
1227zebra_score_rib (int client_sock)
1228{
1229 int i;
1230
1231 for (i = ZEBRA_ROUTE_RIP; i < ZEBRA_ROUTE_MAX; i++)
1232 if (client_sock == route_type_oaths[i])
1233 {
1234 zlog_notice ("client %d disconnected. %lu %s routes removed from the rib",
1235 client_sock, rib_score_proto (i), zebra_route_string (i));
1236 route_type_oaths[i] = 0;
1237 break;
1238 }
1239}
1240
paul718e3742002-12-13 20:15:29 +00001241/* Close zebra client. */
paulb9df2d22004-05-09 09:09:59 +00001242static void
paul718e3742002-12-13 20:15:29 +00001243zebra_client_close (struct zserv *client)
1244{
1245 /* Close file descriptor. */
1246 if (client->sock)
1247 {
1248 close (client->sock);
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +04001249 zebra_score_rib (client->sock);
paul718e3742002-12-13 20:15:29 +00001250 client->sock = -1;
1251 }
1252
1253 /* Free stream buffers. */
1254 if (client->ibuf)
1255 stream_free (client->ibuf);
1256 if (client->obuf)
1257 stream_free (client->obuf);
ajs719e9742005-02-28 20:52:15 +00001258 if (client->wb)
1259 buffer_free(client->wb);
paul718e3742002-12-13 20:15:29 +00001260
1261 /* Release threads. */
1262 if (client->t_read)
1263 thread_cancel (client->t_read);
1264 if (client->t_write)
1265 thread_cancel (client->t_write);
ajs719e9742005-02-28 20:52:15 +00001266 if (client->t_suicide)
1267 thread_cancel (client->t_suicide);
paul718e3742002-12-13 20:15:29 +00001268
1269 /* Free client structure. */
paulb21b19c2003-06-15 01:28:29 +00001270 listnode_delete (zebrad.client_list, client);
paul718e3742002-12-13 20:15:29 +00001271 XFREE (0, client);
1272}
1273
1274/* Make new client. */
paulb9df2d22004-05-09 09:09:59 +00001275static void
paul718e3742002-12-13 20:15:29 +00001276zebra_client_create (int sock)
1277{
1278 struct zserv *client;
1279
1280 client = XCALLOC (0, sizeof (struct zserv));
1281
1282 /* Make client input/output buffer. */
1283 client->sock = sock;
1284 client->ibuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
1285 client->obuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
ajs719e9742005-02-28 20:52:15 +00001286 client->wb = buffer_new(0);
paul718e3742002-12-13 20:15:29 +00001287
1288 /* Set table number. */
paulb21b19c2003-06-15 01:28:29 +00001289 client->rtm_table = zebrad.rtm_table_default;
paul718e3742002-12-13 20:15:29 +00001290
1291 /* Add this client to linked list. */
paulb21b19c2003-06-15 01:28:29 +00001292 listnode_add (zebrad.client_list, client);
paul718e3742002-12-13 20:15:29 +00001293
1294 /* Make new read thread. */
1295 zebra_event (ZEBRA_READ, sock, client);
1296}
1297
1298/* Handler of zebra service request. */
paulb9df2d22004-05-09 09:09:59 +00001299static int
paul718e3742002-12-13 20:15:29 +00001300zebra_client_read (struct thread *thread)
1301{
1302 int sock;
1303 struct zserv *client;
ajs57a14772005-04-10 15:01:56 +00001304 size_t already;
paulc1b98002006-01-16 01:54:02 +00001305 uint16_t length, command;
1306 uint8_t marker, version;
paul718e3742002-12-13 20:15:29 +00001307
1308 /* Get thread data. Reset reading thread because I'm running. */
1309 sock = THREAD_FD (thread);
1310 client = THREAD_ARG (thread);
1311 client->t_read = NULL;
1312
ajs719e9742005-02-28 20:52:15 +00001313 if (client->t_suicide)
paul718e3742002-12-13 20:15:29 +00001314 {
ajs719e9742005-02-28 20:52:15 +00001315 zebra_client_close(client);
paul718e3742002-12-13 20:15:29 +00001316 return -1;
1317 }
ajs719e9742005-02-28 20:52:15 +00001318
1319 /* Read length and command (if we don't have it already). */
ajs57a14772005-04-10 15:01:56 +00001320 if ((already = stream_get_endp(client->ibuf)) < ZEBRA_HEADER_SIZE)
ajs719e9742005-02-28 20:52:15 +00001321 {
ajs57a14772005-04-10 15:01:56 +00001322 ssize_t nbyte;
ajs719e9742005-02-28 20:52:15 +00001323 if (((nbyte = stream_read_try (client->ibuf, sock,
ajs57a14772005-04-10 15:01:56 +00001324 ZEBRA_HEADER_SIZE-already)) == 0) ||
ajs719e9742005-02-28 20:52:15 +00001325 (nbyte == -1))
1326 {
1327 if (IS_ZEBRA_DEBUG_EVENT)
1328 zlog_debug ("connection closed socket [%d]", sock);
1329 zebra_client_close (client);
1330 return -1;
1331 }
ajs57a14772005-04-10 15:01:56 +00001332 if (nbyte != (ssize_t)(ZEBRA_HEADER_SIZE-already))
ajs719e9742005-02-28 20:52:15 +00001333 {
1334 /* Try again later. */
1335 zebra_event (ZEBRA_READ, sock, client);
1336 return 0;
1337 }
ajs57a14772005-04-10 15:01:56 +00001338 already = ZEBRA_HEADER_SIZE;
ajs719e9742005-02-28 20:52:15 +00001339 }
1340
1341 /* Reset to read from the beginning of the incoming packet. */
1342 stream_set_getp(client->ibuf, 0);
1343
paulc1b98002006-01-16 01:54:02 +00001344 /* Fetch header values */
paul718e3742002-12-13 20:15:29 +00001345 length = stream_getw (client->ibuf);
paulc1b98002006-01-16 01:54:02 +00001346 marker = stream_getc (client->ibuf);
1347 version = stream_getc (client->ibuf);
1348 command = stream_getw (client->ibuf);
paul718e3742002-12-13 20:15:29 +00001349
paulc1b98002006-01-16 01:54:02 +00001350 if (marker != ZEBRA_HEADER_MARKER || version != ZSERV_VERSION)
1351 {
1352 zlog_err("%s: socket %d version mismatch, marker %d, version %d",
1353 __func__, sock, marker, version);
1354 zebra_client_close (client);
1355 return -1;
1356 }
ajs719e9742005-02-28 20:52:15 +00001357 if (length < ZEBRA_HEADER_SIZE)
paul718e3742002-12-13 20:15:29 +00001358 {
ajs57a14772005-04-10 15:01:56 +00001359 zlog_warn("%s: socket %d message length %u is less than header size %d",
1360 __func__, sock, length, ZEBRA_HEADER_SIZE);
1361 zebra_client_close (client);
1362 return -1;
1363 }
1364 if (length > STREAM_SIZE(client->ibuf))
1365 {
1366 zlog_warn("%s: socket %d message length %u exceeds buffer size %lu",
1367 __func__, sock, length, (u_long)STREAM_SIZE(client->ibuf));
paul718e3742002-12-13 20:15:29 +00001368 zebra_client_close (client);
1369 return -1;
1370 }
1371
paul718e3742002-12-13 20:15:29 +00001372 /* Read rest of data. */
ajs57a14772005-04-10 15:01:56 +00001373 if (already < length)
paul718e3742002-12-13 20:15:29 +00001374 {
ajs57a14772005-04-10 15:01:56 +00001375 ssize_t nbyte;
1376 if (((nbyte = stream_read_try (client->ibuf, sock,
1377 length-already)) == 0) ||
1378 (nbyte == -1))
paul718e3742002-12-13 20:15:29 +00001379 {
1380 if (IS_ZEBRA_DEBUG_EVENT)
ajsb6178002004-12-07 21:12:56 +00001381 zlog_debug ("connection closed [%d] when reading zebra data", sock);
paul718e3742002-12-13 20:15:29 +00001382 zebra_client_close (client);
1383 return -1;
1384 }
ajs57a14772005-04-10 15:01:56 +00001385 if (nbyte != (ssize_t)(length-already))
ajs719e9742005-02-28 20:52:15 +00001386 {
1387 /* Try again later. */
1388 zebra_event (ZEBRA_READ, sock, client);
1389 return 0;
1390 }
paul718e3742002-12-13 20:15:29 +00001391 }
1392
ajs719e9742005-02-28 20:52:15 +00001393 length -= ZEBRA_HEADER_SIZE;
1394
paul718e3742002-12-13 20:15:29 +00001395 /* Debug packet information. */
1396 if (IS_ZEBRA_DEBUG_EVENT)
ajsb6178002004-12-07 21:12:56 +00001397 zlog_debug ("zebra message comes from socket [%d]", sock);
paul718e3742002-12-13 20:15:29 +00001398
1399 if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
ajsb6178002004-12-07 21:12:56 +00001400 zlog_debug ("zebra message received [%s] %d",
Paul Jakma66859782006-05-15 17:00:37 +00001401 zserv_command_string (command), length);
paul718e3742002-12-13 20:15:29 +00001402
1403 switch (command)
1404 {
hasso18a6dce2004-10-03 18:18:34 +00001405 case ZEBRA_ROUTER_ID_ADD:
1406 zread_router_id_add (client, length);
1407 break;
1408 case ZEBRA_ROUTER_ID_DELETE:
1409 zread_router_id_delete (client, length);
1410 break;
paul718e3742002-12-13 20:15:29 +00001411 case ZEBRA_INTERFACE_ADD:
1412 zread_interface_add (client, length);
1413 break;
1414 case ZEBRA_INTERFACE_DELETE:
1415 zread_interface_delete (client, length);
1416 break;
1417 case ZEBRA_IPV4_ROUTE_ADD:
1418 zread_ipv4_add (client, length);
1419 break;
1420 case ZEBRA_IPV4_ROUTE_DELETE:
1421 zread_ipv4_delete (client, length);
1422 break;
1423#ifdef HAVE_IPV6
1424 case ZEBRA_IPV6_ROUTE_ADD:
1425 zread_ipv6_add (client, length);
1426 break;
1427 case ZEBRA_IPV6_ROUTE_DELETE:
1428 zread_ipv6_delete (client, length);
1429 break;
1430#endif /* HAVE_IPV6 */
1431 case ZEBRA_REDISTRIBUTE_ADD:
1432 zebra_redistribute_add (command, client, length);
1433 break;
1434 case ZEBRA_REDISTRIBUTE_DELETE:
1435 zebra_redistribute_delete (command, client, length);
1436 break;
1437 case ZEBRA_REDISTRIBUTE_DEFAULT_ADD:
1438 zebra_redistribute_default_add (command, client, length);
1439 break;
1440 case ZEBRA_REDISTRIBUTE_DEFAULT_DELETE:
1441 zebra_redistribute_default_delete (command, client, length);
1442 break;
1443 case ZEBRA_IPV4_NEXTHOP_LOOKUP:
1444 zread_ipv4_nexthop_lookup (client, length);
1445 break;
Everton Marques4e5275b2014-07-01 15:15:52 -03001446 case ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB:
1447 zread_ipv4_nexthop_lookup_mrib (client, length);
1448 break;
paul718e3742002-12-13 20:15:29 +00001449#ifdef HAVE_IPV6
1450 case ZEBRA_IPV6_NEXTHOP_LOOKUP:
1451 zread_ipv6_nexthop_lookup (client, length);
1452 break;
1453#endif /* HAVE_IPV6 */
1454 case ZEBRA_IPV4_IMPORT_LOOKUP:
1455 zread_ipv4_import_lookup (client, length);
1456 break;
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +04001457 case ZEBRA_HELLO:
1458 zread_hello (client);
1459 break;
paul718e3742002-12-13 20:15:29 +00001460 default:
1461 zlog_info ("Zebra received unknown command %d", command);
1462 break;
1463 }
1464
ajs719e9742005-02-28 20:52:15 +00001465 if (client->t_suicide)
1466 {
1467 /* No need to wait for thread callback, just kill immediately. */
1468 zebra_client_close(client);
1469 return -1;
1470 }
1471
paul718e3742002-12-13 20:15:29 +00001472 stream_reset (client->ibuf);
1473 zebra_event (ZEBRA_READ, sock, client);
paul718e3742002-12-13 20:15:29 +00001474 return 0;
1475}
1476
paul718e3742002-12-13 20:15:29 +00001477
1478/* Accept code of zebra server socket. */
paulb9df2d22004-05-09 09:09:59 +00001479static int
paul718e3742002-12-13 20:15:29 +00001480zebra_accept (struct thread *thread)
1481{
1482 int accept_sock;
1483 int client_sock;
1484 struct sockaddr_in client;
1485 socklen_t len;
1486
1487 accept_sock = THREAD_FD (thread);
1488
ajs719e9742005-02-28 20:52:15 +00001489 /* Reregister myself. */
1490 zebra_event (ZEBRA_SERV, accept_sock, NULL);
1491
paul718e3742002-12-13 20:15:29 +00001492 len = sizeof (struct sockaddr_in);
1493 client_sock = accept (accept_sock, (struct sockaddr *) &client, &len);
1494
1495 if (client_sock < 0)
1496 {
ajs6099b3b2004-11-20 02:06:59 +00001497 zlog_warn ("Can't accept zebra socket: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001498 return -1;
1499 }
1500
paulccf35572003-03-01 11:42:20 +00001501 /* Make client socket non-blocking. */
ajs719e9742005-02-28 20:52:15 +00001502 set_nonblocking(client_sock);
paul865b8522005-01-05 08:30:35 +00001503
paul718e3742002-12-13 20:15:29 +00001504 /* Create new zebra client. */
1505 zebra_client_create (client_sock);
1506
paul718e3742002-12-13 20:15:29 +00001507 return 0;
1508}
1509
paulb9df2d22004-05-09 09:09:59 +00001510#ifdef HAVE_TCP_ZEBRA
paul718e3742002-12-13 20:15:29 +00001511/* Make zebra's server socket. */
paulb9df2d22004-05-09 09:09:59 +00001512static void
paul718e3742002-12-13 20:15:29 +00001513zebra_serv ()
1514{
1515 int ret;
1516 int accept_sock;
1517 struct sockaddr_in addr;
1518
1519 accept_sock = socket (AF_INET, SOCK_STREAM, 0);
1520
1521 if (accept_sock < 0)
1522 {
paul3d1dc852005-04-05 00:45:23 +00001523 zlog_warn ("Can't create zserv stream socket: %s",
1524 safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001525 zlog_warn ("zebra can't provice full functionality due to above error");
1526 return;
1527 }
1528
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +04001529 memset (&route_type_oaths, 0, sizeof (route_type_oaths));
paul718e3742002-12-13 20:15:29 +00001530 memset (&addr, 0, sizeof (struct sockaddr_in));
1531 addr.sin_family = AF_INET;
1532 addr.sin_port = htons (ZEBRA_PORT);
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001533#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
paul718e3742002-12-13 20:15:29 +00001534 addr.sin_len = sizeof (struct sockaddr_in);
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001535#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
paul718e3742002-12-13 20:15:29 +00001536 addr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
1537
1538 sockopt_reuseaddr (accept_sock);
1539 sockopt_reuseport (accept_sock);
1540
pauledd7c242003-06-04 13:59:38 +00001541 if ( zserv_privs.change(ZPRIVS_RAISE) )
1542 zlog (NULL, LOG_ERR, "Can't raise privileges");
1543
paul718e3742002-12-13 20:15:29 +00001544 ret = bind (accept_sock, (struct sockaddr *)&addr,
1545 sizeof (struct sockaddr_in));
1546 if (ret < 0)
1547 {
paul3d1dc852005-04-05 00:45:23 +00001548 zlog_warn ("Can't bind to stream socket: %s",
1549 safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001550 zlog_warn ("zebra can't provice full functionality due to above error");
1551 close (accept_sock); /* Avoid sd leak. */
1552 return;
1553 }
pauledd7c242003-06-04 13:59:38 +00001554
1555 if ( zserv_privs.change(ZPRIVS_LOWER) )
1556 zlog (NULL, LOG_ERR, "Can't lower privileges");
paul718e3742002-12-13 20:15:29 +00001557
1558 ret = listen (accept_sock, 1);
1559 if (ret < 0)
1560 {
paul3d1dc852005-04-05 00:45:23 +00001561 zlog_warn ("Can't listen to stream socket: %s",
1562 safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001563 zlog_warn ("zebra can't provice full functionality due to above error");
1564 close (accept_sock); /* Avoid sd leak. */
1565 return;
1566 }
1567
1568 zebra_event (ZEBRA_SERV, accept_sock, NULL);
1569}
David Lamparter4b6c3322015-04-21 09:47:57 +02001570#else /* HAVE_TCP_ZEBRA */
paul718e3742002-12-13 20:15:29 +00001571
1572/* For sockaddr_un. */
1573#include <sys/un.h>
1574
1575/* zebra server UNIX domain socket. */
paulb9df2d22004-05-09 09:09:59 +00001576static void
hassofce954f2004-10-07 20:29:24 +00001577zebra_serv_un (const char *path)
paul718e3742002-12-13 20:15:29 +00001578{
1579 int ret;
1580 int sock, len;
1581 struct sockaddr_un serv;
1582 mode_t old_mask;
1583
1584 /* First of all, unlink existing socket */
1585 unlink (path);
1586
1587 /* Set umask */
1588 old_mask = umask (0077);
1589
1590 /* Make UNIX domain socket. */
1591 sock = socket (AF_UNIX, SOCK_STREAM, 0);
1592 if (sock < 0)
1593 {
paul3d1dc852005-04-05 00:45:23 +00001594 zlog_warn ("Can't create zserv unix socket: %s",
1595 safe_strerror (errno));
1596 zlog_warn ("zebra can't provide full functionality due to above error");
paul718e3742002-12-13 20:15:29 +00001597 return;
1598 }
1599
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +04001600 memset (&route_type_oaths, 0, sizeof (route_type_oaths));
1601
paul718e3742002-12-13 20:15:29 +00001602 /* Make server socket. */
1603 memset (&serv, 0, sizeof (struct sockaddr_un));
1604 serv.sun_family = AF_UNIX;
1605 strncpy (serv.sun_path, path, strlen (path));
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001606#ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
paul718e3742002-12-13 20:15:29 +00001607 len = serv.sun_len = SUN_LEN(&serv);
1608#else
1609 len = sizeof (serv.sun_family) + strlen (serv.sun_path);
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001610#endif /* HAVE_STRUCT_SOCKADDR_UN_SUN_LEN */
paul718e3742002-12-13 20:15:29 +00001611
1612 ret = bind (sock, (struct sockaddr *) &serv, len);
1613 if (ret < 0)
1614 {
paul3d1dc852005-04-05 00:45:23 +00001615 zlog_warn ("Can't bind to unix socket %s: %s",
1616 path, safe_strerror (errno));
1617 zlog_warn ("zebra can't provide full functionality due to above error");
paul718e3742002-12-13 20:15:29 +00001618 close (sock);
1619 return;
1620 }
1621
1622 ret = listen (sock, 5);
1623 if (ret < 0)
1624 {
paul3d1dc852005-04-05 00:45:23 +00001625 zlog_warn ("Can't listen to unix socket %s: %s",
1626 path, safe_strerror (errno));
1627 zlog_warn ("zebra can't provide full functionality due to above error");
paul718e3742002-12-13 20:15:29 +00001628 close (sock);
1629 return;
1630 }
1631
1632 umask (old_mask);
1633
1634 zebra_event (ZEBRA_SERV, sock, NULL);
1635}
David Lamparter4b6c3322015-04-21 09:47:57 +02001636#endif /* HAVE_TCP_ZEBRA */
David Lamparter6b0655a2014-06-04 06:53:35 +02001637
paul718e3742002-12-13 20:15:29 +00001638
paulb9df2d22004-05-09 09:09:59 +00001639static void
paul718e3742002-12-13 20:15:29 +00001640zebra_event (enum event event, int sock, struct zserv *client)
1641{
1642 switch (event)
1643 {
1644 case ZEBRA_SERV:
paulb21b19c2003-06-15 01:28:29 +00001645 thread_add_read (zebrad.master, zebra_accept, client, sock);
paul718e3742002-12-13 20:15:29 +00001646 break;
1647 case ZEBRA_READ:
1648 client->t_read =
paulb21b19c2003-06-15 01:28:29 +00001649 thread_add_read (zebrad.master, zebra_client_read, client, sock);
paul718e3742002-12-13 20:15:29 +00001650 break;
1651 case ZEBRA_WRITE:
1652 /**/
1653 break;
1654 }
1655}
David Lamparter6b0655a2014-06-04 06:53:35 +02001656
paul718e3742002-12-13 20:15:29 +00001657/* Display default rtm_table for all clients. */
1658DEFUN (show_table,
1659 show_table_cmd,
1660 "show table",
1661 SHOW_STR
1662 "default routing table to use for all clients\n")
1663{
paulb21b19c2003-06-15 01:28:29 +00001664 vty_out (vty, "table %d%s", zebrad.rtm_table_default,
paul718e3742002-12-13 20:15:29 +00001665 VTY_NEWLINE);
1666 return CMD_SUCCESS;
1667}
1668
1669DEFUN (config_table,
1670 config_table_cmd,
1671 "table TABLENO",
1672 "Configure target kernel routing table\n"
1673 "TABLE integer\n")
1674{
paulb21b19c2003-06-15 01:28:29 +00001675 zebrad.rtm_table_default = strtol (argv[0], (char**)0, 10);
paul718e3742002-12-13 20:15:29 +00001676 return CMD_SUCCESS;
1677}
1678
hasso647e4f12003-05-25 11:43:52 +00001679DEFUN (ip_forwarding,
1680 ip_forwarding_cmd,
1681 "ip forwarding",
1682 IP_STR
1683 "Turn on IP forwarding")
1684{
1685 int ret;
1686
1687 ret = ipforward ();
hassob71f00f2004-10-13 12:20:35 +00001688 if (ret == 0)
1689 ret = ipforward_on ();
hasso647e4f12003-05-25 11:43:52 +00001690
hasso647e4f12003-05-25 11:43:52 +00001691 if (ret == 0)
1692 {
1693 vty_out (vty, "Can't turn on IP forwarding%s", VTY_NEWLINE);
1694 return CMD_WARNING;
1695 }
1696
1697 return CMD_SUCCESS;
1698}
1699
paul718e3742002-12-13 20:15:29 +00001700DEFUN (no_ip_forwarding,
1701 no_ip_forwarding_cmd,
1702 "no ip forwarding",
1703 NO_STR
1704 IP_STR
1705 "Turn off IP forwarding")
1706{
1707 int ret;
1708
1709 ret = ipforward ();
hassob71f00f2004-10-13 12:20:35 +00001710 if (ret != 0)
1711 ret = ipforward_off ();
paul718e3742002-12-13 20:15:29 +00001712
paul718e3742002-12-13 20:15:29 +00001713 if (ret != 0)
1714 {
1715 vty_out (vty, "Can't turn off IP forwarding%s", VTY_NEWLINE);
1716 return CMD_WARNING;
1717 }
1718
1719 return CMD_SUCCESS;
1720}
1721
1722/* This command is for debugging purpose. */
1723DEFUN (show_zebra_client,
1724 show_zebra_client_cmd,
1725 "show zebra client",
1726 SHOW_STR
1727 "Zebra information"
1728 "Client information")
1729{
hasso52dc7ee2004-09-23 19:18:23 +00001730 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001731 struct zserv *client;
1732
paul1eb8ef22005-04-07 07:30:20 +00001733 for (ALL_LIST_ELEMENTS_RO (zebrad.client_list, node, client))
1734 vty_out (vty, "Client fd %d%s", client->sock, VTY_NEWLINE);
1735
paul718e3742002-12-13 20:15:29 +00001736 return CMD_SUCCESS;
1737}
1738
1739/* Table configuration write function. */
paulb9df2d22004-05-09 09:09:59 +00001740static int
paul718e3742002-12-13 20:15:29 +00001741config_write_table (struct vty *vty)
1742{
paulb21b19c2003-06-15 01:28:29 +00001743 if (zebrad.rtm_table_default)
1744 vty_out (vty, "table %d%s", zebrad.rtm_table_default,
paul718e3742002-12-13 20:15:29 +00001745 VTY_NEWLINE);
1746 return 0;
1747}
1748
1749/* table node for routing tables. */
Stephen Hemminger7fc626d2008-12-01 11:10:34 -08001750static struct cmd_node table_node =
paul718e3742002-12-13 20:15:29 +00001751{
1752 TABLE_NODE,
1753 "", /* This node has no interface. */
1754 1
1755};
David Lamparter6b0655a2014-06-04 06:53:35 +02001756
paul718e3742002-12-13 20:15:29 +00001757/* Only display ip forwarding is enabled or not. */
1758DEFUN (show_ip_forwarding,
1759 show_ip_forwarding_cmd,
1760 "show ip forwarding",
1761 SHOW_STR
1762 IP_STR
1763 "IP forwarding status\n")
1764{
1765 int ret;
1766
1767 ret = ipforward ();
1768
1769 if (ret == 0)
1770 vty_out (vty, "IP forwarding is off%s", VTY_NEWLINE);
1771 else
1772 vty_out (vty, "IP forwarding is on%s", VTY_NEWLINE);
1773 return CMD_SUCCESS;
1774}
1775
1776#ifdef HAVE_IPV6
1777/* Only display ipv6 forwarding is enabled or not. */
1778DEFUN (show_ipv6_forwarding,
1779 show_ipv6_forwarding_cmd,
1780 "show ipv6 forwarding",
1781 SHOW_STR
1782 "IPv6 information\n"
1783 "Forwarding status\n")
1784{
1785 int ret;
1786
1787 ret = ipforward_ipv6 ();
1788
1789 switch (ret)
1790 {
1791 case -1:
1792 vty_out (vty, "ipv6 forwarding is unknown%s", VTY_NEWLINE);
1793 break;
1794 case 0:
1795 vty_out (vty, "ipv6 forwarding is %s%s", "off", VTY_NEWLINE);
1796 break;
1797 case 1:
1798 vty_out (vty, "ipv6 forwarding is %s%s", "on", VTY_NEWLINE);
1799 break;
1800 default:
1801 vty_out (vty, "ipv6 forwarding is %s%s", "off", VTY_NEWLINE);
1802 break;
1803 }
1804 return CMD_SUCCESS;
1805}
1806
hasso55906722004-02-11 22:42:16 +00001807DEFUN (ipv6_forwarding,
1808 ipv6_forwarding_cmd,
1809 "ipv6 forwarding",
1810 IPV6_STR
1811 "Turn on IPv6 forwarding")
1812{
1813 int ret;
1814
hasso41d3fc92004-04-06 11:59:00 +00001815 ret = ipforward_ipv6 ();
hassob71f00f2004-10-13 12:20:35 +00001816 if (ret == 0)
1817 ret = ipforward_ipv6_on ();
hasso41d3fc92004-04-06 11:59:00 +00001818
hasso41d3fc92004-04-06 11:59:00 +00001819 if (ret == 0)
1820 {
hasso55906722004-02-11 22:42:16 +00001821 vty_out (vty, "Can't turn on IPv6 forwarding%s", VTY_NEWLINE);
1822 return CMD_WARNING;
1823 }
1824
1825 return CMD_SUCCESS;
1826}
1827
paul718e3742002-12-13 20:15:29 +00001828DEFUN (no_ipv6_forwarding,
1829 no_ipv6_forwarding_cmd,
1830 "no ipv6 forwarding",
1831 NO_STR
hasso55906722004-02-11 22:42:16 +00001832 IPV6_STR
1833 "Turn off IPv6 forwarding")
paul718e3742002-12-13 20:15:29 +00001834{
1835 int ret;
1836
hasso41d3fc92004-04-06 11:59:00 +00001837 ret = ipforward_ipv6 ();
hassob71f00f2004-10-13 12:20:35 +00001838 if (ret != 0)
1839 ret = ipforward_ipv6_off ();
hasso41d3fc92004-04-06 11:59:00 +00001840
paul718e3742002-12-13 20:15:29 +00001841 if (ret != 0)
1842 {
1843 vty_out (vty, "Can't turn off IPv6 forwarding%s", VTY_NEWLINE);
1844 return CMD_WARNING;
1845 }
1846
1847 return CMD_SUCCESS;
1848}
1849
1850#endif /* HAVE_IPV6 */
1851
1852/* IPForwarding configuration write function. */
ajs719e9742005-02-28 20:52:15 +00001853static int
paul718e3742002-12-13 20:15:29 +00001854config_write_forwarding (struct vty *vty)
1855{
hasso18a6dce2004-10-03 18:18:34 +00001856 /* FIXME: Find better place for that. */
1857 router_id_write (vty);
1858
paul3e0b3a52004-08-23 18:58:32 +00001859 if (ipforward ())
1860 vty_out (vty, "ip forwarding%s", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00001861#ifdef HAVE_IPV6
paul3e0b3a52004-08-23 18:58:32 +00001862 if (ipforward_ipv6 ())
1863 vty_out (vty, "ipv6 forwarding%s", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00001864#endif /* HAVE_IPV6 */
1865 vty_out (vty, "!%s", VTY_NEWLINE);
1866 return 0;
1867}
1868
1869/* table node for routing tables. */
Stephen Hemminger7fc626d2008-12-01 11:10:34 -08001870static struct cmd_node forwarding_node =
paul718e3742002-12-13 20:15:29 +00001871{
1872 FORWARDING_NODE,
1873 "", /* This node has no interface. */
1874 1
1875};
1876
David Lamparter6b0655a2014-06-04 06:53:35 +02001877
paul718e3742002-12-13 20:15:29 +00001878/* Initialisation of zebra and installation of commands. */
1879void
paula1ac18c2005-06-28 17:17:12 +00001880zebra_init (void)
paul718e3742002-12-13 20:15:29 +00001881{
1882 /* Client list init. */
paulb21b19c2003-06-15 01:28:29 +00001883 zebrad.client_list = list_new ();
paul718e3742002-12-13 20:15:29 +00001884
paul718e3742002-12-13 20:15:29 +00001885 /* Install configuration write function. */
1886 install_node (&table_node, config_write_table);
1887 install_node (&forwarding_node, config_write_forwarding);
1888
1889 install_element (VIEW_NODE, &show_ip_forwarding_cmd);
1890 install_element (ENABLE_NODE, &show_ip_forwarding_cmd);
hasso647e4f12003-05-25 11:43:52 +00001891 install_element (CONFIG_NODE, &ip_forwarding_cmd);
paul718e3742002-12-13 20:15:29 +00001892 install_element (CONFIG_NODE, &no_ip_forwarding_cmd);
1893 install_element (ENABLE_NODE, &show_zebra_client_cmd);
1894
1895#ifdef HAVE_NETLINK
1896 install_element (VIEW_NODE, &show_table_cmd);
1897 install_element (ENABLE_NODE, &show_table_cmd);
1898 install_element (CONFIG_NODE, &config_table_cmd);
1899#endif /* HAVE_NETLINK */
1900
1901#ifdef HAVE_IPV6
1902 install_element (VIEW_NODE, &show_ipv6_forwarding_cmd);
1903 install_element (ENABLE_NODE, &show_ipv6_forwarding_cmd);
hasso55906722004-02-11 22:42:16 +00001904 install_element (CONFIG_NODE, &ipv6_forwarding_cmd);
paul718e3742002-12-13 20:15:29 +00001905 install_element (CONFIG_NODE, &no_ipv6_forwarding_cmd);
1906#endif /* HAVE_IPV6 */
Paul Jakma7514fb72007-05-02 16:05:35 +00001907
1908 /* Route-map */
1909 zebra_route_map_init ();
paul718e3742002-12-13 20:15:29 +00001910}
Denis Ovsienko97be79f2009-07-24 20:45:31 +04001911
1912/* Make zebra server socket, wiping any existing one (see bug #403). */
1913void
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +04001914zebra_zserv_socket_init (char *path)
Denis Ovsienko97be79f2009-07-24 20:45:31 +04001915{
1916#ifdef HAVE_TCP_ZEBRA
1917 zebra_serv ();
1918#else
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +04001919 zebra_serv_un (path ? path : ZEBRA_SERV_PATH);
Denis Ovsienko97be79f2009-07-24 20:45:31 +04001920#endif /* HAVE_TCP_ZEBRA */
1921}