]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zapi_msg.c
doc, lib, zebra: Remove deprecated encode and decode functionality
[mirror_frr.git] / zebra / zapi_msg.c
1 /*
2 * Zebra API message creation & consumption.
3 * Portions:
4 * Copyright (C) 1997-1999 Kunihiro Ishiguro
5 * Copyright (C) 2015-2018 Cumulus Networks, Inc.
6 * et al.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; see the file COPYING; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #include <zebra.h>
24 #include <libgen.h>
25
26 #include "lib/prefix.h"
27 #include "lib/command.h"
28 #include "lib/if.h"
29 #include "lib/thread.h"
30 #include "lib/stream.h"
31 #include "lib/memory.h"
32 #include "lib/table.h"
33 #include "lib/network.h"
34 #include "lib/sockunion.h"
35 #include "lib/log.h"
36 #include "lib/zclient.h"
37 #include "lib/privs.h"
38 #include "lib/network.h"
39 #include "lib/buffer.h"
40 #include "lib/nexthop.h"
41 #include "lib/vrf.h"
42 #include "lib/libfrr.h"
43 #include "lib/sockopt.h"
44
45 #include "zebra/rib.h"
46 #include "zebra/zebra_memory.h"
47 #include "zebra/zebra_ns.h"
48 #include "zebra/zebra_vrf.h"
49 #include "zebra/router-id.h"
50 #include "zebra/redistribute.h"
51 #include "zebra/debug.h"
52 #include "zebra/zebra_rnh.h"
53 #include "zebra/rt_netlink.h"
54 #include "zebra/interface.h"
55 #include "zebra/zebra_ptm.h"
56 #include "zebra/rtadv.h"
57 #include "zebra/zebra_mpls.h"
58 #include "zebra/zebra_mroute.h"
59 #include "zebra/label_manager.h"
60 #include "zebra/zebra_vxlan.h"
61 #include "zebra/rt.h"
62 #include "zebra/zebra_pbr.h"
63 #include "zebra/table_manager.h"
64 #include "zebra/zapi_msg.h"
65
66 /* Encoding helpers -------------------------------------------------------- */
67
68 static void zserv_encode_interface(struct stream *s, struct interface *ifp)
69 {
70 /* Interface information. */
71 stream_put(s, ifp->name, INTERFACE_NAMSIZ);
72 stream_putl(s, ifp->ifindex);
73 stream_putc(s, ifp->status);
74 stream_putq(s, ifp->flags);
75 stream_putc(s, ifp->ptm_enable);
76 stream_putc(s, ifp->ptm_status);
77 stream_putl(s, ifp->metric);
78 stream_putl(s, ifp->speed);
79 stream_putl(s, ifp->mtu);
80 stream_putl(s, ifp->mtu6);
81 stream_putl(s, ifp->bandwidth);
82 stream_putl(s, ifp->ll_type);
83 stream_putl(s, ifp->hw_addr_len);
84 if (ifp->hw_addr_len)
85 stream_put(s, ifp->hw_addr, ifp->hw_addr_len);
86
87 /* Then, Traffic Engineering parameters if any */
88 if (HAS_LINK_PARAMS(ifp) && IS_LINK_PARAMS_SET(ifp->link_params)) {
89 stream_putc(s, 1);
90 zebra_interface_link_params_write(s, ifp);
91 } else
92 stream_putc(s, 0);
93
94 /* Write packet size. */
95 stream_putw_at(s, 0, stream_get_endp(s));
96 }
97
98 static void zserv_encode_vrf(struct stream *s, struct zebra_vrf *zvrf)
99 {
100 struct vrf_data data;
101 const char *netns_name = zvrf_ns_name(zvrf);
102
103 data.l.table_id = zvrf->table_id;
104
105 if (netns_name)
106 strlcpy(data.l.netns_name, basename((char *)netns_name),
107 NS_NAMSIZ);
108 else
109 memset(data.l.netns_name, 0, NS_NAMSIZ);
110 /* Pass the tableid and the netns NAME */
111 stream_put(s, &data, sizeof(struct vrf_data));
112 /* Interface information. */
113 stream_put(s, zvrf_name(zvrf), VRF_NAMSIZ);
114 /* Write packet size. */
115 stream_putw_at(s, 0, stream_get_endp(s));
116 }
117
118 static int zserv_encode_nexthop(struct stream *s, struct nexthop *nexthop)
119 {
120 stream_putc(s, nexthop->type);
121 switch (nexthop->type) {
122 case NEXTHOP_TYPE_IPV4:
123 case NEXTHOP_TYPE_IPV4_IFINDEX:
124 stream_put_in_addr(s, &nexthop->gate.ipv4);
125 stream_putl(s, nexthop->ifindex);
126 break;
127 case NEXTHOP_TYPE_IPV6:
128 stream_put(s, &nexthop->gate.ipv6, 16);
129 break;
130 case NEXTHOP_TYPE_IPV6_IFINDEX:
131 stream_put(s, &nexthop->gate.ipv6, 16);
132 stream_putl(s, nexthop->ifindex);
133 break;
134 case NEXTHOP_TYPE_IFINDEX:
135 stream_putl(s, nexthop->ifindex);
136 break;
137 default:
138 /* do nothing */
139 break;
140 }
141 return 1;
142 }
143
144 /* Send handlers ----------------------------------------------------------- */
145
146 /* Interface is added. Send ZEBRA_INTERFACE_ADD to client. */
147 /*
148 * This function is called in the following situations:
149 * - in response to a 3-byte ZEBRA_INTERFACE_ADD request
150 * from the client.
151 * - at startup, when zebra figures out the available interfaces
152 * - when an interface is added (where support for
153 * RTM_IFANNOUNCE or AF_NETLINK sockets is available), or when
154 * an interface is marked IFF_UP (i.e., an RTM_IFINFO message is
155 * received)
156 */
157 int zsend_interface_add(struct zserv *client, struct interface *ifp)
158 {
159 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
160
161 zclient_create_header(s, ZEBRA_INTERFACE_ADD, ifp->vrf_id);
162 zserv_encode_interface(s, ifp);
163
164 client->ifadd_cnt++;
165 return zserv_send_message(client, s);
166 }
167
168 /* Interface deletion from zebra daemon. */
169 int zsend_interface_delete(struct zserv *client, struct interface *ifp)
170 {
171 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
172
173 zclient_create_header(s, ZEBRA_INTERFACE_DELETE, ifp->vrf_id);
174 zserv_encode_interface(s, ifp);
175
176 client->ifdel_cnt++;
177 return zserv_send_message(client, s);
178 }
179
180 int zsend_vrf_add(struct zserv *client, struct zebra_vrf *zvrf)
181 {
182 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
183
184 zclient_create_header(s, ZEBRA_VRF_ADD, zvrf_id(zvrf));
185 zserv_encode_vrf(s, zvrf);
186
187 client->vrfadd_cnt++;
188 return zserv_send_message(client, s);
189 }
190
191 /* VRF deletion from zebra daemon. */
192 int zsend_vrf_delete(struct zserv *client, struct zebra_vrf *zvrf)
193
194 {
195 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
196
197 zclient_create_header(s, ZEBRA_VRF_DELETE, zvrf_id(zvrf));
198 zserv_encode_vrf(s, zvrf);
199
200 client->vrfdel_cnt++;
201 return zserv_send_message(client, s);
202 }
203
204 int zsend_interface_link_params(struct zserv *client, struct interface *ifp)
205 {
206 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
207
208 /* Check this client need interface information. */
209 if (!client->ifinfo) {
210 stream_free(s);
211 return 0;
212 }
213
214 if (!ifp->link_params) {
215 stream_free(s);
216 return 0;
217 }
218
219 zclient_create_header(s, ZEBRA_INTERFACE_LINK_PARAMS, ifp->vrf_id);
220
221 /* Add Interface Index */
222 stream_putl(s, ifp->ifindex);
223
224 /* Then TE Link Parameters */
225 if (zebra_interface_link_params_write(s, ifp) == 0) {
226 stream_free(s);
227 return 0;
228 }
229
230 /* Write packet size. */
231 stream_putw_at(s, 0, stream_get_endp(s));
232
233 return zserv_send_message(client, s);
234 }
235
236 /* Interface address is added/deleted. Send ZEBRA_INTERFACE_ADDRESS_ADD or
237 * ZEBRA_INTERFACE_ADDRESS_DELETE to the client.
238 *
239 * A ZEBRA_INTERFACE_ADDRESS_ADD is sent in the following situations:
240 * - in response to a 3-byte ZEBRA_INTERFACE_ADD request
241 * from the client, after the ZEBRA_INTERFACE_ADD has been
242 * sent from zebra to the client
243 * - redistribute new address info to all clients in the following situations
244 * - at startup, when zebra figures out the available interfaces
245 * - when an interface is added (where support for
246 * RTM_IFANNOUNCE or AF_NETLINK sockets is available), or when
247 * an interface is marked IFF_UP (i.e., an RTM_IFINFO message is
248 * received)
249 * - for the vty commands "ip address A.B.C.D/M [<secondary>|<label LINE>]"
250 * and "no bandwidth <1-10000000>", "ipv6 address X:X::X:X/M"
251 * - when an RTM_NEWADDR message is received from the kernel,
252 *
253 * The call tree that triggers ZEBRA_INTERFACE_ADDRESS_DELETE:
254 *
255 * zsend_interface_address(DELETE)
256 * ^
257 * |
258 * zebra_interface_address_delete_update
259 * ^ ^ ^
260 * | | if_delete_update
261 * | |
262 * ip_address_uninstall connected_delete_ipv4
263 * [ipv6_addresss_uninstall] [connected_delete_ipv6]
264 * ^ ^
265 * | |
266 * | RTM_NEWADDR on routing/netlink socket
267 * |
268 * vty commands:
269 * "no ip address A.B.C.D/M [label LINE]"
270 * "no ip address A.B.C.D/M secondary"
271 * ["no ipv6 address X:X::X:X/M"]
272 *
273 */
274 int zsend_interface_address(int cmd, struct zserv *client,
275 struct interface *ifp, struct connected *ifc)
276 {
277 int blen;
278 struct prefix *p;
279 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
280
281 zclient_create_header(s, cmd, ifp->vrf_id);
282 stream_putl(s, ifp->ifindex);
283
284 /* Interface address flag. */
285 stream_putc(s, ifc->flags);
286
287 /* Prefix information. */
288 p = ifc->address;
289 stream_putc(s, p->family);
290 blen = prefix_blen(p);
291 stream_put(s, &p->u.prefix, blen);
292
293 /*
294 * XXX gnu version does not send prefixlen for
295 * ZEBRA_INTERFACE_ADDRESS_DELETE
296 * but zebra_interface_address_delete_read() in the gnu version
297 * expects to find it
298 */
299 stream_putc(s, p->prefixlen);
300
301 /* Destination. */
302 p = ifc->destination;
303 if (p)
304 stream_put(s, &p->u.prefix, blen);
305 else
306 stream_put(s, NULL, blen);
307
308 /* Write packet size. */
309 stream_putw_at(s, 0, stream_get_endp(s));
310
311 client->connected_rt_add_cnt++;
312 return zserv_send_message(client, s);
313 }
314
315 static int zsend_interface_nbr_address(int cmd, struct zserv *client,
316 struct interface *ifp,
317 struct nbr_connected *ifc)
318 {
319 int blen;
320 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
321 struct prefix *p;
322
323 zclient_create_header(s, cmd, ifp->vrf_id);
324 stream_putl(s, ifp->ifindex);
325
326 /* Prefix information. */
327 p = ifc->address;
328 stream_putc(s, p->family);
329 blen = prefix_blen(p);
330 stream_put(s, &p->u.prefix, blen);
331
332 /*
333 * XXX gnu version does not send prefixlen for
334 * ZEBRA_INTERFACE_ADDRESS_DELETE
335 * but zebra_interface_address_delete_read() in the gnu version
336 * expects to find it
337 */
338 stream_putc(s, p->prefixlen);
339
340 /* Write packet size. */
341 stream_putw_at(s, 0, stream_get_endp(s));
342
343 return zserv_send_message(client, s);
344 }
345
346 /* Interface address addition. */
347 static void zebra_interface_nbr_address_add_update(struct interface *ifp,
348 struct nbr_connected *ifc)
349 {
350 struct listnode *node, *nnode;
351 struct zserv *client;
352 struct prefix *p;
353
354 if (IS_ZEBRA_DEBUG_EVENT) {
355 char buf[INET6_ADDRSTRLEN];
356
357 p = ifc->address;
358 zlog_debug(
359 "MESSAGE: ZEBRA_INTERFACE_NBR_ADDRESS_ADD %s/%d on %s",
360 inet_ntop(p->family, &p->u.prefix, buf,
361 INET6_ADDRSTRLEN),
362 p->prefixlen, ifc->ifp->name);
363 }
364
365 for (ALL_LIST_ELEMENTS(zebrad.client_list, node, nnode, client))
366 zsend_interface_nbr_address(ZEBRA_INTERFACE_NBR_ADDRESS_ADD,
367 client, ifp, ifc);
368 }
369
370 /* Interface address deletion. */
371 static void zebra_interface_nbr_address_delete_update(struct interface *ifp,
372 struct nbr_connected *ifc)
373 {
374 struct listnode *node, *nnode;
375 struct zserv *client;
376 struct prefix *p;
377
378 if (IS_ZEBRA_DEBUG_EVENT) {
379 char buf[INET6_ADDRSTRLEN];
380
381 p = ifc->address;
382 zlog_debug(
383 "MESSAGE: ZEBRA_INTERFACE_NBR_ADDRESS_DELETE %s/%d on %s",
384 inet_ntop(p->family, &p->u.prefix, buf,
385 INET6_ADDRSTRLEN),
386 p->prefixlen, ifc->ifp->name);
387 }
388
389 for (ALL_LIST_ELEMENTS(zebrad.client_list, node, nnode, client))
390 zsend_interface_nbr_address(ZEBRA_INTERFACE_NBR_ADDRESS_DELETE,
391 client, ifp, ifc);
392 }
393
394 /* Send addresses on interface to client */
395 int zsend_interface_addresses(struct zserv *client, struct interface *ifp)
396 {
397 struct listnode *cnode, *cnnode;
398 struct connected *c;
399 struct nbr_connected *nc;
400
401 /* Send interface addresses. */
402 for (ALL_LIST_ELEMENTS(ifp->connected, cnode, cnnode, c)) {
403 if (!CHECK_FLAG(c->conf, ZEBRA_IFC_REAL))
404 continue;
405
406 if (zsend_interface_address(ZEBRA_INTERFACE_ADDRESS_ADD, client,
407 ifp, c)
408 < 0)
409 return -1;
410 }
411
412 /* Send interface neighbors. */
413 for (ALL_LIST_ELEMENTS(ifp->nbr_connected, cnode, cnnode, nc)) {
414 if (zsend_interface_nbr_address(ZEBRA_INTERFACE_NBR_ADDRESS_ADD,
415 client, ifp, nc)
416 < 0)
417 return -1;
418 }
419
420 return 0;
421 }
422
423 /* Notify client about interface moving from one VRF to another.
424 * Whether client is interested in old and new VRF is checked by caller.
425 */
426 int zsend_interface_vrf_update(struct zserv *client, struct interface *ifp,
427 vrf_id_t vrf_id)
428 {
429 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
430
431 zclient_create_header(s, ZEBRA_INTERFACE_VRF_UPDATE, ifp->vrf_id);
432
433 /* Fill in the ifIndex of the interface and its new VRF (id) */
434 stream_putl(s, ifp->ifindex);
435 stream_putl(s, vrf_id);
436
437 /* Write packet size. */
438 stream_putw_at(s, 0, stream_get_endp(s));
439
440 client->if_vrfchg_cnt++;
441 return zserv_send_message(client, s);
442 }
443
444 /* Add new nbr connected IPv6 address */
445 void nbr_connected_add_ipv6(struct interface *ifp, struct in6_addr *address)
446 {
447 struct nbr_connected *ifc;
448 struct prefix p;
449
450 p.family = AF_INET6;
451 IPV6_ADDR_COPY(&p.u.prefix6, address);
452 p.prefixlen = IPV6_MAX_PREFIXLEN;
453
454 ifc = listnode_head(ifp->nbr_connected);
455 if (!ifc) {
456 /* new addition */
457 ifc = nbr_connected_new();
458 ifc->address = prefix_new();
459 ifc->ifp = ifp;
460 listnode_add(ifp->nbr_connected, ifc);
461 }
462
463 prefix_copy(ifc->address, &p);
464
465 zebra_interface_nbr_address_add_update(ifp, ifc);
466
467 if_nbr_ipv6ll_to_ipv4ll_neigh_update(ifp, address, 1);
468 }
469
470 void nbr_connected_delete_ipv6(struct interface *ifp, struct in6_addr *address)
471 {
472 struct nbr_connected *ifc;
473 struct prefix p;
474
475 p.family = AF_INET6;
476 IPV6_ADDR_COPY(&p.u.prefix6, address);
477 p.prefixlen = IPV6_MAX_PREFIXLEN;
478
479 ifc = nbr_connected_check(ifp, &p);
480 if (!ifc)
481 return;
482
483 listnode_delete(ifp->nbr_connected, ifc);
484
485 zebra_interface_nbr_address_delete_update(ifp, ifc);
486
487 if_nbr_ipv6ll_to_ipv4ll_neigh_update(ifp, address, 0);
488
489 nbr_connected_free(ifc);
490 }
491
492 /*
493 * The cmd passed to zsend_interface_update may be ZEBRA_INTERFACE_UP or
494 * ZEBRA_INTERFACE_DOWN.
495 *
496 * The ZEBRA_INTERFACE_UP message is sent from the zebra server to
497 * the clients in one of 2 situations:
498 * - an if_up is detected e.g., as a result of an RTM_IFINFO message
499 * - a vty command modifying the bandwidth of an interface is received.
500 * The ZEBRA_INTERFACE_DOWN message is sent when an if_down is detected.
501 */
502 int zsend_interface_update(int cmd, struct zserv *client, struct interface *ifp)
503 {
504 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
505
506 zclient_create_header(s, cmd, ifp->vrf_id);
507 zserv_encode_interface(s, ifp);
508
509 if (cmd == ZEBRA_INTERFACE_UP)
510 client->ifup_cnt++;
511 else
512 client->ifdown_cnt++;
513
514 return zserv_send_message(client, s);
515 }
516
517 int zsend_redistribute_route(int cmd, struct zserv *client,
518 const struct prefix *p,
519 const struct prefix *src_p, struct route_entry *re)
520 {
521 struct zapi_route api;
522 struct zapi_nexthop *api_nh;
523 struct nexthop *nexthop;
524 int count = 0;
525 afi_t afi;
526
527 memset(&api, 0, sizeof(api));
528 api.vrf_id = re->vrf_id;
529 api.type = re->type;
530 api.instance = re->instance;
531 api.flags = re->flags;
532
533 afi = family2afi(p->family);
534 switch (afi) {
535 case AFI_IP:
536 if (cmd == ZEBRA_REDISTRIBUTE_ROUTE_ADD)
537 client->redist_v4_add_cnt++;
538 else
539 client->redist_v4_del_cnt++;
540 break;
541 case AFI_IP6:
542 if (cmd == ZEBRA_REDISTRIBUTE_ROUTE_ADD)
543 client->redist_v6_add_cnt++;
544 else
545 client->redist_v6_del_cnt++;
546 break;
547 default:
548 break;
549 }
550
551 /* Prefix. */
552 api.prefix = *p;
553 if (src_p) {
554 SET_FLAG(api.message, ZAPI_MESSAGE_SRCPFX);
555 memcpy(&api.src_prefix, src_p, sizeof(api.src_prefix));
556 }
557
558 /* Nexthops. */
559 if (re->nexthop_active_num) {
560 SET_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP);
561 api.nexthop_num = re->nexthop_active_num;
562 }
563 for (nexthop = re->ng.nexthop; nexthop; nexthop = nexthop->next) {
564 if (!CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE))
565 continue;
566
567 api_nh = &api.nexthops[count];
568 api_nh->vrf_id = nexthop->vrf_id;
569 api_nh->type = nexthop->type;
570 switch (nexthop->type) {
571 case NEXTHOP_TYPE_BLACKHOLE:
572 api_nh->bh_type = nexthop->bh_type;
573 break;
574 case NEXTHOP_TYPE_IPV4:
575 api_nh->gate.ipv4 = nexthop->gate.ipv4;
576 break;
577 case NEXTHOP_TYPE_IPV4_IFINDEX:
578 api_nh->gate.ipv4 = nexthop->gate.ipv4;
579 api_nh->ifindex = nexthop->ifindex;
580 break;
581 case NEXTHOP_TYPE_IFINDEX:
582 api_nh->ifindex = nexthop->ifindex;
583 break;
584 case NEXTHOP_TYPE_IPV6:
585 api_nh->gate.ipv6 = nexthop->gate.ipv6;
586 break;
587 case NEXTHOP_TYPE_IPV6_IFINDEX:
588 api_nh->gate.ipv6 = nexthop->gate.ipv6;
589 api_nh->ifindex = nexthop->ifindex;
590 }
591 count++;
592 }
593
594 /* Attributes. */
595 SET_FLAG(api.message, ZAPI_MESSAGE_DISTANCE);
596 api.distance = re->distance;
597 SET_FLAG(api.message, ZAPI_MESSAGE_METRIC);
598 api.metric = re->metric;
599 if (re->tag) {
600 SET_FLAG(api.message, ZAPI_MESSAGE_TAG);
601 api.tag = re->tag;
602 }
603 SET_FLAG(api.message, ZAPI_MESSAGE_MTU);
604 api.mtu = re->mtu;
605
606 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
607
608 /* Encode route and send. */
609 if (zapi_route_encode(cmd, s, &api) < 0) {
610 stream_free(s);
611 return -1;
612 }
613
614 if (IS_ZEBRA_DEBUG_SEND) {
615 char buf_prefix[PREFIX_STRLEN];
616
617 prefix2str(&api.prefix, buf_prefix, sizeof(buf_prefix));
618
619 zlog_debug("%s: %s to client %s: type %s, vrf_id %d, p %s",
620 __func__, zserv_command_string(cmd),
621 zebra_route_string(client->proto),
622 zebra_route_string(api.type), api.vrf_id,
623 buf_prefix);
624 }
625 return zserv_send_message(client, s);
626 }
627
628 /*
629 * Modified version of zsend_ipv4_nexthop_lookup(): Query unicast rib if
630 * nexthop is not found on mrib. Returns both route metric and protocol
631 * distance.
632 */
633 static int zsend_ipv4_nexthop_lookup_mrib(struct zserv *client,
634 struct in_addr addr,
635 struct route_entry *re,
636 struct zebra_vrf *zvrf)
637 {
638 struct stream *s;
639 unsigned long nump;
640 uint8_t num;
641 struct nexthop *nexthop;
642
643 /* Get output stream. */
644 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
645 stream_reset(s);
646
647 /* Fill in result. */
648 zclient_create_header(s, ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB, zvrf_id(zvrf));
649 stream_put_in_addr(s, &addr);
650
651 if (re) {
652 stream_putc(s, re->distance);
653 stream_putl(s, re->metric);
654 num = 0;
655 /* remember position for nexthop_num */
656 nump = stream_get_endp(s);
657 /* reserve room for nexthop_num */
658 stream_putc(s, 0);
659 /*
660 * Only non-recursive routes are elegible to resolve the
661 * nexthop we are looking up. Therefore, we will just iterate
662 * over the top chain of nexthops.
663 */
664 for (nexthop = re->ng.nexthop; nexthop; nexthop = nexthop->next)
665 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE))
666 num += zserv_encode_nexthop(s, nexthop);
667
668 /* store nexthop_num */
669 stream_putc_at(s, nump, num);
670 } else {
671 stream_putc(s, 0); /* distance */
672 stream_putl(s, 0); /* metric */
673 stream_putc(s, 0); /* nexthop_num */
674 }
675
676 stream_putw_at(s, 0, stream_get_endp(s));
677
678 return zserv_send_message(client, s);
679 }
680
681 /*
682 * Common utility send route notification, called from a path using a
683 * route_entry and from a path using a dataplane context.
684 */
685 static int route_notify_internal(const struct prefix *p, int type,
686 uint16_t instance, vrf_id_t vrf_id,
687 uint32_t table_id,
688 enum zapi_route_notify_owner note)
689 {
690 struct zserv *client;
691 struct stream *s;
692 uint8_t blen;
693
694 client = zserv_find_client(type, instance);
695 if (!client || !client->notify_owner) {
696 if (IS_ZEBRA_DEBUG_PACKET) {
697 char buff[PREFIX_STRLEN];
698
699 zlog_debug(
700 "Not Notifying Owner: %u about prefix %s(%u) %d vrf: %u",
701 type, prefix2str(p, buff, sizeof(buff)),
702 table_id, note, vrf_id);
703 }
704 return 0;
705 }
706
707 if (IS_ZEBRA_DEBUG_PACKET) {
708 char buff[PREFIX_STRLEN];
709
710 zlog_debug("Notifying Owner: %u about prefix %s(%u) %d vrf: %u",
711 type, prefix2str(p, buff, sizeof(buff)),
712 table_id, note, vrf_id);
713 }
714
715 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
716 stream_reset(s);
717
718 zclient_create_header(s, ZEBRA_ROUTE_NOTIFY_OWNER, vrf_id);
719
720 stream_put(s, &note, sizeof(note));
721
722 stream_putc(s, p->family);
723
724 blen = prefix_blen(p);
725 stream_putc(s, p->prefixlen);
726 stream_put(s, &p->u.prefix, blen);
727
728 stream_putl(s, table_id);
729
730 stream_putw_at(s, 0, stream_get_endp(s));
731
732 return zserv_send_message(client, s);
733 }
734
735 int zsend_route_notify_owner(struct route_entry *re, const struct prefix *p,
736 enum zapi_route_notify_owner note)
737 {
738 return (route_notify_internal(p, re->type, re->instance, re->vrf_id,
739 re->table, note));
740 }
741
742 void zsend_rule_notify_owner(struct zebra_pbr_rule *rule,
743 enum zapi_rule_notify_owner note)
744 {
745 struct listnode *node;
746 struct zserv *client;
747 struct stream *s;
748
749 if (IS_ZEBRA_DEBUG_PACKET)
750 zlog_debug("%s: Notifying %u", __PRETTY_FUNCTION__,
751 rule->rule.unique);
752
753 for (ALL_LIST_ELEMENTS_RO(zebrad.client_list, node, client)) {
754 if (rule->sock == client->sock)
755 break;
756 }
757
758 if (!client)
759 return;
760
761 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
762
763 zclient_create_header(s, ZEBRA_RULE_NOTIFY_OWNER, VRF_DEFAULT);
764 stream_put(s, &note, sizeof(note));
765 stream_putl(s, rule->rule.seq);
766 stream_putl(s, rule->rule.priority);
767 stream_putl(s, rule->rule.unique);
768 if (rule->ifp)
769 stream_putl(s, rule->ifp->ifindex);
770 else
771 stream_putl(s, 0);
772
773 stream_putw_at(s, 0, stream_get_endp(s));
774
775 zserv_send_message(client, s);
776 }
777
778 void zsend_ipset_notify_owner(struct zebra_pbr_ipset *ipset,
779 enum zapi_ipset_notify_owner note)
780 {
781 struct listnode *node;
782 struct zserv *client;
783 struct stream *s;
784
785 if (IS_ZEBRA_DEBUG_PACKET)
786 zlog_debug("%s: Notifying %u", __PRETTY_FUNCTION__,
787 ipset->unique);
788
789 for (ALL_LIST_ELEMENTS_RO(zebrad.client_list, node, client)) {
790 if (ipset->sock == client->sock)
791 break;
792 }
793
794 if (!client)
795 return;
796
797 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
798
799 zclient_create_header(s, ZEBRA_IPSET_NOTIFY_OWNER, VRF_DEFAULT);
800 stream_put(s, &note, sizeof(note));
801 stream_putl(s, ipset->unique);
802 stream_put(s, ipset->ipset_name, ZEBRA_IPSET_NAME_SIZE);
803 stream_putw_at(s, 0, stream_get_endp(s));
804
805 zserv_send_message(client, s);
806 }
807
808 void zsend_ipset_entry_notify_owner(struct zebra_pbr_ipset_entry *ipset,
809 enum zapi_ipset_entry_notify_owner note)
810 {
811 struct listnode *node;
812 struct zserv *client;
813 struct stream *s;
814
815 if (IS_ZEBRA_DEBUG_PACKET)
816 zlog_debug("%s: Notifying %u", __PRETTY_FUNCTION__,
817 ipset->unique);
818
819 for (ALL_LIST_ELEMENTS_RO(zebrad.client_list, node, client)) {
820 if (ipset->sock == client->sock)
821 break;
822 }
823
824 if (!client)
825 return;
826
827 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
828
829 zclient_create_header(s, ZEBRA_IPSET_ENTRY_NOTIFY_OWNER, VRF_DEFAULT);
830 stream_put(s, &note, sizeof(note));
831 stream_putl(s, ipset->unique);
832 stream_put(s, ipset->backpointer->ipset_name, ZEBRA_IPSET_NAME_SIZE);
833 stream_putw_at(s, 0, stream_get_endp(s));
834
835 zserv_send_message(client, s);
836 }
837
838 void zsend_iptable_notify_owner(struct zebra_pbr_iptable *iptable,
839 enum zapi_iptable_notify_owner note)
840 {
841 struct listnode *node;
842 struct zserv *client;
843 struct stream *s;
844
845 if (IS_ZEBRA_DEBUG_PACKET)
846 zlog_debug("%s: Notifying %u", __PRETTY_FUNCTION__,
847 iptable->unique);
848
849 for (ALL_LIST_ELEMENTS_RO(zebrad.client_list, node, client)) {
850 if (iptable->sock == client->sock)
851 break;
852 }
853
854 if (!client)
855 return;
856
857 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
858
859 zclient_create_header(s, ZEBRA_IPTABLE_NOTIFY_OWNER, VRF_DEFAULT);
860 stream_put(s, &note, sizeof(note));
861 stream_putl(s, iptable->unique);
862 stream_putw_at(s, 0, stream_get_endp(s));
863
864 zserv_send_message(client, s);
865 }
866
867 /* Router-id is updated. Send ZEBRA_ROUTER_ID_ADD to client. */
868 int zsend_router_id_update(struct zserv *client, struct prefix *p,
869 vrf_id_t vrf_id)
870 {
871 int blen;
872
873 /* Check this client need interface information. */
874 if (!vrf_bitmap_check(client->ridinfo, vrf_id))
875 return 0;
876
877 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
878
879 /* Message type. */
880 zclient_create_header(s, ZEBRA_ROUTER_ID_UPDATE, vrf_id);
881
882 /* Prefix information. */
883 stream_putc(s, p->family);
884 blen = prefix_blen(p);
885 stream_put(s, &p->u.prefix, blen);
886 stream_putc(s, p->prefixlen);
887
888 /* Write packet size. */
889 stream_putw_at(s, 0, stream_get_endp(s));
890
891 return zserv_send_message(client, s);
892 }
893
894 /*
895 * Function used by Zebra to send a PW status update to LDP daemon
896 */
897 int zsend_pw_update(struct zserv *client, struct zebra_pw *pw)
898 {
899 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
900
901 zclient_create_header(s, ZEBRA_PW_STATUS_UPDATE, pw->vrf_id);
902 stream_write(s, pw->ifname, IF_NAMESIZE);
903 stream_putl(s, pw->ifindex);
904 stream_putl(s, pw->status);
905
906 /* Put length at the first point of the stream. */
907 stream_putw_at(s, 0, stream_get_endp(s));
908
909 return zserv_send_message(client, s);
910 }
911
912 /* Send response to a get label chunk request to client */
913 static int zsend_assign_label_chunk_response(struct zserv *client,
914 vrf_id_t vrf_id,
915 struct label_manager_chunk *lmc)
916 {
917 int ret;
918 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
919
920 zclient_create_header(s, ZEBRA_GET_LABEL_CHUNK, vrf_id);
921
922 if (lmc) {
923 /* proto */
924 stream_putc(s, lmc->proto);
925 /* instance */
926 stream_putw(s, lmc->instance);
927 /* keep */
928 stream_putc(s, lmc->keep);
929 /* start and end labels */
930 stream_putl(s, lmc->start);
931 stream_putl(s, lmc->end);
932 }
933
934 /* Write packet size. */
935 stream_putw_at(s, 0, stream_get_endp(s));
936
937 ret = writen(client->sock, s->data, stream_get_endp(s));
938 stream_free(s);
939 return ret;
940 }
941
942 /* Send response to a label manager connect request to client */
943 static int zsend_label_manager_connect_response(struct zserv *client,
944 vrf_id_t vrf_id,
945 unsigned short result)
946 {
947 int ret;
948 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
949
950 zclient_create_header(s, ZEBRA_LABEL_MANAGER_CONNECT, vrf_id);
951
952 /* proto */
953 stream_putc(s, client->proto);
954
955 /* instance */
956 stream_putw(s, client->instance);
957
958 /* result */
959 stream_putc(s, result);
960
961 /* Write packet size. */
962 stream_putw_at(s, 0, stream_get_endp(s));
963
964 ret = writen(client->sock, s->data, stream_get_endp(s));
965 stream_free(s);
966
967 return ret;
968 }
969
970 /* Send response to a get table chunk request to client */
971 static int zsend_assign_table_chunk_response(struct zserv *client,
972 vrf_id_t vrf_id,
973 struct table_manager_chunk *tmc)
974 {
975 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
976
977 zclient_create_header(s, ZEBRA_GET_TABLE_CHUNK, vrf_id);
978
979 if (tmc) {
980 /* start and end labels */
981 stream_putl(s, tmc->start);
982 stream_putl(s, tmc->end);
983 }
984
985 /* Write packet size. */
986 stream_putw_at(s, 0, stream_get_endp(s));
987
988 return zserv_send_message(client, s);
989 }
990
991 static int zsend_table_manager_connect_response(struct zserv *client,
992 vrf_id_t vrf_id,
993 uint16_t result)
994 {
995 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
996
997 zclient_create_header(s, ZEBRA_TABLE_MANAGER_CONNECT, vrf_id);
998
999 /* result */
1000 stream_putc(s, result);
1001
1002 stream_putw_at(s, 0, stream_get_endp(s));
1003
1004 return zserv_send_message(client, s);
1005 }
1006
1007 /* Inbound message handling ------------------------------------------------ */
1008
1009 int cmd2type[] = {
1010 [ZEBRA_NEXTHOP_REGISTER] = RNH_NEXTHOP_TYPE,
1011 [ZEBRA_NEXTHOP_UNREGISTER] = RNH_NEXTHOP_TYPE,
1012 [ZEBRA_IMPORT_ROUTE_REGISTER] = RNH_IMPORT_CHECK_TYPE,
1013 [ZEBRA_IMPORT_ROUTE_UNREGISTER] = RNH_IMPORT_CHECK_TYPE,
1014 };
1015
1016 /* Nexthop register */
1017 static void zread_rnh_register(ZAPI_HANDLER_ARGS)
1018 {
1019 struct rnh *rnh;
1020 struct stream *s;
1021 struct prefix p;
1022 unsigned short l = 0;
1023 uint8_t flags = 0;
1024 uint16_t type = cmd2type[hdr->command];
1025
1026 if (IS_ZEBRA_DEBUG_NHT)
1027 zlog_debug(
1028 "rnh_register msg from client %s: hdr->length=%d, type=%s vrf=%u\n",
1029 zebra_route_string(client->proto), hdr->length,
1030 (type == RNH_NEXTHOP_TYPE) ? "nexthop" : "route",
1031 zvrf->vrf->vrf_id);
1032
1033 s = msg;
1034
1035 client->nh_reg_time = monotime(NULL);
1036
1037 while (l < hdr->length) {
1038 STREAM_GETC(s, flags);
1039 STREAM_GETW(s, p.family);
1040 STREAM_GETC(s, p.prefixlen);
1041 l += 4;
1042 if (p.family == AF_INET) {
1043 if (p.prefixlen > IPV4_MAX_BITLEN) {
1044 zlog_warn(
1045 "%s: Specified prefix hdr->length %d is too large for a v4 address",
1046 __PRETTY_FUNCTION__, p.prefixlen);
1047 return;
1048 }
1049 STREAM_GET(&p.u.prefix4.s_addr, s, IPV4_MAX_BYTELEN);
1050 l += IPV4_MAX_BYTELEN;
1051 } else if (p.family == AF_INET6) {
1052 if (p.prefixlen > IPV6_MAX_BITLEN) {
1053 zlog_warn(
1054 "%s: Specified prefix hdr->length %d is to large for a v6 address",
1055 __PRETTY_FUNCTION__, p.prefixlen);
1056 return;
1057 }
1058 STREAM_GET(&p.u.prefix6, s, IPV6_MAX_BYTELEN);
1059 l += IPV6_MAX_BYTELEN;
1060 } else {
1061 flog_err(
1062 ZEBRA_ERR_UNKNOWN_FAMILY,
1063 "rnh_register: Received unknown family type %d\n",
1064 p.family);
1065 return;
1066 }
1067 rnh = zebra_add_rnh(&p, zvrf_id(zvrf), type);
1068 if (type == RNH_NEXTHOP_TYPE) {
1069 if (flags
1070 && !CHECK_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED))
1071 SET_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED);
1072 else if (!flags
1073 && CHECK_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED))
1074 UNSET_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED);
1075 } else if (type == RNH_IMPORT_CHECK_TYPE) {
1076 if (flags
1077 && !CHECK_FLAG(rnh->flags, ZEBRA_NHT_EXACT_MATCH))
1078 SET_FLAG(rnh->flags, ZEBRA_NHT_EXACT_MATCH);
1079 else if (!flags
1080 && CHECK_FLAG(rnh->flags,
1081 ZEBRA_NHT_EXACT_MATCH))
1082 UNSET_FLAG(rnh->flags, ZEBRA_NHT_EXACT_MATCH);
1083 }
1084
1085 zebra_add_rnh_client(rnh, client, type, zvrf_id(zvrf));
1086 /* Anything not AF_INET/INET6 has been filtered out above */
1087 zebra_evaluate_rnh(zvrf_id(zvrf), p.family, 1, type, &p);
1088 }
1089
1090 stream_failure:
1091 return;
1092 }
1093
1094 /* Nexthop register */
1095 static void zread_rnh_unregister(ZAPI_HANDLER_ARGS)
1096 {
1097 struct rnh *rnh;
1098 struct stream *s;
1099 struct prefix p;
1100 unsigned short l = 0;
1101 uint16_t type = cmd2type[hdr->command];
1102
1103 if (IS_ZEBRA_DEBUG_NHT)
1104 zlog_debug(
1105 "rnh_unregister msg from client %s: hdr->length=%d vrf: %u\n",
1106 zebra_route_string(client->proto), hdr->length,
1107 zvrf->vrf->vrf_id);
1108
1109 s = msg;
1110
1111 while (l < hdr->length) {
1112 uint8_t flags;
1113
1114 STREAM_GETC(s, flags);
1115 if (flags != 0)
1116 goto stream_failure;
1117
1118 STREAM_GETW(s, p.family);
1119 STREAM_GETC(s, p.prefixlen);
1120 l += 4;
1121 if (p.family == AF_INET) {
1122 if (p.prefixlen > IPV4_MAX_BITLEN) {
1123 zlog_warn(
1124 "%s: Specified prefix hdr->length %d is to large for a v4 address",
1125 __PRETTY_FUNCTION__, p.prefixlen);
1126 return;
1127 }
1128 STREAM_GET(&p.u.prefix4.s_addr, s, IPV4_MAX_BYTELEN);
1129 l += IPV4_MAX_BYTELEN;
1130 } else if (p.family == AF_INET6) {
1131 if (p.prefixlen > IPV6_MAX_BITLEN) {
1132 zlog_warn(
1133 "%s: Specified prefix hdr->length %d is to large for a v6 address",
1134 __PRETTY_FUNCTION__, p.prefixlen);
1135 return;
1136 }
1137 STREAM_GET(&p.u.prefix6, s, IPV6_MAX_BYTELEN);
1138 l += IPV6_MAX_BYTELEN;
1139 } else {
1140 flog_err(
1141 ZEBRA_ERR_UNKNOWN_FAMILY,
1142 "rnh_register: Received unknown family type %d\n",
1143 p.family);
1144 return;
1145 }
1146 rnh = zebra_lookup_rnh(&p, zvrf_id(zvrf), type);
1147 if (rnh) {
1148 client->nh_dereg_time = monotime(NULL);
1149 zebra_remove_rnh_client(rnh, client, type);
1150 }
1151 }
1152 stream_failure:
1153 return;
1154 }
1155
1156 #define ZEBRA_MIN_FEC_LENGTH 5
1157
1158 /* FEC register */
1159 static void zread_fec_register(ZAPI_HANDLER_ARGS)
1160 {
1161 struct stream *s;
1162 unsigned short l = 0;
1163 struct prefix p;
1164 uint16_t flags;
1165 uint32_t label_index = MPLS_INVALID_LABEL_INDEX;
1166
1167 s = msg;
1168 zvrf = vrf_info_lookup(VRF_DEFAULT);
1169 if (!zvrf)
1170 return;
1171
1172 /*
1173 * The minimum amount of data that can be sent for one fec
1174 * registration
1175 */
1176 if (hdr->length < ZEBRA_MIN_FEC_LENGTH) {
1177 flog_err(
1178 ZEBRA_ERR_IRDP_LEN_MISMATCH,
1179 "fec_register: Received a fec register of hdr->length %d, it is of insufficient size to properly decode",
1180 hdr->length);
1181 return;
1182 }
1183
1184 while (l < hdr->length) {
1185 STREAM_GETW(s, flags);
1186 memset(&p, 0, sizeof(p));
1187 STREAM_GETW(s, p.family);
1188 if (p.family != AF_INET && p.family != AF_INET6) {
1189 flog_err(
1190 ZEBRA_ERR_UNKNOWN_FAMILY,
1191 "fec_register: Received unknown family type %d\n",
1192 p.family);
1193 return;
1194 }
1195 STREAM_GETC(s, p.prefixlen);
1196 if ((p.family == AF_INET && p.prefixlen > IPV4_MAX_BITLEN)
1197 || (p.family == AF_INET6
1198 && p.prefixlen > IPV6_MAX_BITLEN)) {
1199 zlog_warn(
1200 "%s: Specified prefix hdr->length: %d is to long for %d",
1201 __PRETTY_FUNCTION__, p.prefixlen, p.family);
1202 return;
1203 }
1204 l += 5;
1205 STREAM_GET(&p.u.prefix, s, PSIZE(p.prefixlen));
1206 l += PSIZE(p.prefixlen);
1207 if (flags & ZEBRA_FEC_REGISTER_LABEL_INDEX) {
1208 STREAM_GETL(s, label_index);
1209 l += 4;
1210 } else
1211 label_index = MPLS_INVALID_LABEL_INDEX;
1212 zebra_mpls_fec_register(zvrf, &p, label_index, client);
1213 }
1214
1215 stream_failure:
1216 return;
1217 }
1218
1219 /* FEC unregister */
1220 static void zread_fec_unregister(ZAPI_HANDLER_ARGS)
1221 {
1222 struct stream *s;
1223 unsigned short l = 0;
1224 struct prefix p;
1225 uint16_t flags;
1226
1227 s = msg;
1228 zvrf = vrf_info_lookup(VRF_DEFAULT);
1229 if (!zvrf)
1230 return;
1231
1232 /*
1233 * The minimum amount of data that can be sent for one
1234 * fec unregistration
1235 */
1236 if (hdr->length < ZEBRA_MIN_FEC_LENGTH) {
1237 flog_err(
1238 ZEBRA_ERR_IRDP_LEN_MISMATCH,
1239 "fec_unregister: Received a fec unregister of hdr->length %d, it is of insufficient size to properly decode",
1240 hdr->length);
1241 return;
1242 }
1243
1244 while (l < hdr->length) {
1245 STREAM_GETW(s, flags);
1246 if (flags != 0)
1247 goto stream_failure;
1248
1249 memset(&p, 0, sizeof(p));
1250 STREAM_GETW(s, p.family);
1251 if (p.family != AF_INET && p.family != AF_INET6) {
1252 flog_err(
1253 ZEBRA_ERR_UNKNOWN_FAMILY,
1254 "fec_unregister: Received unknown family type %d\n",
1255 p.family);
1256 return;
1257 }
1258 STREAM_GETC(s, p.prefixlen);
1259 if ((p.family == AF_INET && p.prefixlen > IPV4_MAX_BITLEN)
1260 || (p.family == AF_INET6
1261 && p.prefixlen > IPV6_MAX_BITLEN)) {
1262 zlog_warn(
1263 "%s: Received prefix hdr->length %d which is greater than %d can support",
1264 __PRETTY_FUNCTION__, p.prefixlen, p.family);
1265 return;
1266 }
1267 l += 5;
1268 STREAM_GET(&p.u.prefix, s, PSIZE(p.prefixlen));
1269 l += PSIZE(p.prefixlen);
1270 zebra_mpls_fec_unregister(zvrf, &p, client);
1271 }
1272
1273 stream_failure:
1274 return;
1275 }
1276
1277
1278 /*
1279 * Register zebra server interface information.
1280 * Send current all interface and address information.
1281 */
1282 static void zread_interface_add(ZAPI_HANDLER_ARGS)
1283 {
1284 struct vrf *vrf;
1285 struct interface *ifp;
1286
1287 /* Interface information is needed. */
1288 vrf_bitmap_set(client->ifinfo, zvrf_id(zvrf));
1289
1290 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
1291 FOR_ALL_INTERFACES (vrf, ifp) {
1292 /* Skip pseudo interface. */
1293 if (!CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_ACTIVE))
1294 continue;
1295
1296 zsend_interface_add(client, ifp);
1297 zsend_interface_addresses(client, ifp);
1298 }
1299 }
1300 }
1301
1302 /* Unregister zebra server interface information. */
1303 static void zread_interface_delete(ZAPI_HANDLER_ARGS)
1304 {
1305 vrf_bitmap_unset(client->ifinfo, zvrf_id(zvrf));
1306 }
1307
1308 void zserv_nexthop_num_warn(const char *caller, const struct prefix *p,
1309 const unsigned int nexthop_num)
1310 {
1311 if (nexthop_num > multipath_num) {
1312 char buff[PREFIX2STR_BUFFER];
1313
1314 prefix2str(p, buff, sizeof(buff));
1315 zlog_warn(
1316 "%s: Prefix %s has %d nexthops, but we can only use the first %d",
1317 caller, buff, nexthop_num, multipath_num);
1318 }
1319 }
1320
1321 static void zread_route_add(ZAPI_HANDLER_ARGS)
1322 {
1323 struct stream *s;
1324 struct zapi_route api;
1325 struct zapi_nexthop *api_nh;
1326 afi_t afi;
1327 struct prefix_ipv6 *src_p = NULL;
1328 struct route_entry *re;
1329 struct nexthop *nexthop = NULL;
1330 int i, ret;
1331 vrf_id_t vrf_id = 0;
1332 struct ipaddr vtep_ip;
1333
1334 s = msg;
1335 if (zapi_route_decode(s, &api) < 0) {
1336 if (IS_ZEBRA_DEBUG_RECV)
1337 zlog_debug("%s: Unable to decode zapi_route sent",
1338 __PRETTY_FUNCTION__);
1339 return;
1340 }
1341
1342 if (IS_ZEBRA_DEBUG_RECV) {
1343 char buf_prefix[PREFIX_STRLEN];
1344
1345 prefix2str(&api.prefix, buf_prefix, sizeof(buf_prefix));
1346 zlog_debug("%s: p=%s, ZAPI_MESSAGE_LABEL: %sset, flags=0x%x",
1347 __func__, buf_prefix,
1348 (CHECK_FLAG(api.message, ZAPI_MESSAGE_LABEL) ? ""
1349 : "un"),
1350 api.flags);
1351 }
1352
1353 /* Allocate new route. */
1354 vrf_id = zvrf_id(zvrf);
1355 re = XCALLOC(MTYPE_RE, sizeof(struct route_entry));
1356 re->type = api.type;
1357 re->instance = api.instance;
1358 re->flags = api.flags;
1359 re->uptime = time(NULL);
1360 re->vrf_id = vrf_id;
1361 if (api.tableid && vrf_id == VRF_DEFAULT)
1362 re->table = api.tableid;
1363 else
1364 re->table = zvrf->table_id;
1365
1366 /*
1367 * TBD should _all_ of the nexthop add operations use
1368 * api_nh->vrf_id instead of re->vrf_id ? I only changed
1369 * for cases NEXTHOP_TYPE_IPV4 and NEXTHOP_TYPE_IPV6.
1370 */
1371 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP))
1372 for (i = 0; i < api.nexthop_num; i++) {
1373 api_nh = &api.nexthops[i];
1374 ifindex_t ifindex = 0;
1375
1376 if (IS_ZEBRA_DEBUG_RECV)
1377 zlog_debug("nh type %d", api_nh->type);
1378
1379 switch (api_nh->type) {
1380 case NEXTHOP_TYPE_IFINDEX:
1381 nexthop = route_entry_nexthop_ifindex_add(
1382 re, api_nh->ifindex, api_nh->vrf_id);
1383 break;
1384 case NEXTHOP_TYPE_IPV4:
1385 if (IS_ZEBRA_DEBUG_RECV) {
1386 char nhbuf[INET6_ADDRSTRLEN] = {0};
1387
1388 inet_ntop(AF_INET, &api_nh->gate.ipv4,
1389 nhbuf, INET6_ADDRSTRLEN);
1390 zlog_debug("%s: nh=%s, vrf_id=%d",
1391 __func__, nhbuf,
1392 api_nh->vrf_id);
1393 }
1394 nexthop = route_entry_nexthop_ipv4_add(
1395 re, &api_nh->gate.ipv4, NULL,
1396 api_nh->vrf_id);
1397 break;
1398 case NEXTHOP_TYPE_IPV4_IFINDEX:
1399
1400 memset(&vtep_ip, 0, sizeof(struct ipaddr));
1401 if (CHECK_FLAG(api.flags,
1402 ZEBRA_FLAG_EVPN_ROUTE)) {
1403 ifindex = get_l3vni_svi_ifindex(vrf_id);
1404 } else {
1405 ifindex = api_nh->ifindex;
1406 }
1407
1408 if (IS_ZEBRA_DEBUG_RECV) {
1409 char nhbuf[INET6_ADDRSTRLEN] = {0};
1410
1411 inet_ntop(AF_INET, &api_nh->gate.ipv4,
1412 nhbuf, INET6_ADDRSTRLEN);
1413 zlog_debug(
1414 "%s: nh=%s, vrf_id=%d (re->vrf_id=%d), ifindex=%d",
1415 __func__, nhbuf, api_nh->vrf_id,
1416 re->vrf_id, ifindex);
1417 }
1418 nexthop = route_entry_nexthop_ipv4_ifindex_add(
1419 re, &api_nh->gate.ipv4, NULL, ifindex,
1420 api_nh->vrf_id);
1421
1422 /* if this an EVPN route entry,
1423 * program the nh as neigh
1424 */
1425 if (CHECK_FLAG(api.flags,
1426 ZEBRA_FLAG_EVPN_ROUTE)) {
1427 SET_FLAG(nexthop->flags,
1428 NEXTHOP_FLAG_EVPN_RVTEP);
1429 vtep_ip.ipa_type = IPADDR_V4;
1430 memcpy(&(vtep_ip.ipaddr_v4),
1431 &(api_nh->gate.ipv4),
1432 sizeof(struct in_addr));
1433 zebra_vxlan_evpn_vrf_route_add(
1434 vrf_id, &api_nh->rmac, &vtep_ip,
1435 &api.prefix);
1436 }
1437 break;
1438 case NEXTHOP_TYPE_IPV6:
1439 nexthop = route_entry_nexthop_ipv6_add(
1440 re, &api_nh->gate.ipv6, api_nh->vrf_id);
1441 break;
1442 case NEXTHOP_TYPE_IPV6_IFINDEX:
1443 memset(&vtep_ip, 0, sizeof(struct ipaddr));
1444 if (CHECK_FLAG(api.flags,
1445 ZEBRA_FLAG_EVPN_ROUTE)) {
1446 ifindex = get_l3vni_svi_ifindex(vrf_id);
1447 } else {
1448 ifindex = api_nh->ifindex;
1449 }
1450
1451 nexthop = route_entry_nexthop_ipv6_ifindex_add(
1452 re, &api_nh->gate.ipv6, ifindex,
1453 api_nh->vrf_id);
1454
1455 /* if this an EVPN route entry,
1456 * program the nh as neigh
1457 */
1458 if (CHECK_FLAG(api.flags,
1459 ZEBRA_FLAG_EVPN_ROUTE)) {
1460 SET_FLAG(nexthop->flags,
1461 NEXTHOP_FLAG_EVPN_RVTEP);
1462 vtep_ip.ipa_type = IPADDR_V6;
1463 memcpy(&vtep_ip.ipaddr_v6,
1464 &(api_nh->gate.ipv6),
1465 sizeof(struct in6_addr));
1466 zebra_vxlan_evpn_vrf_route_add(
1467 vrf_id, &api_nh->rmac, &vtep_ip,
1468 &api.prefix);
1469 }
1470 break;
1471 case NEXTHOP_TYPE_BLACKHOLE:
1472 nexthop = route_entry_nexthop_blackhole_add(
1473 re, api_nh->bh_type);
1474 break;
1475 }
1476
1477 if (!nexthop) {
1478 zlog_warn(
1479 "%s: Nexthops Specified: %d but we failed to properly create one",
1480 __PRETTY_FUNCTION__, api.nexthop_num);
1481 nexthops_free(re->ng.nexthop);
1482 XFREE(MTYPE_RE, re);
1483 return;
1484 }
1485 /* MPLS labels for BGP-LU or Segment Routing */
1486 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_LABEL)
1487 && api_nh->type != NEXTHOP_TYPE_IFINDEX
1488 && api_nh->type != NEXTHOP_TYPE_BLACKHOLE) {
1489 enum lsp_types_t label_type;
1490
1491 label_type =
1492 lsp_type_from_re_type(client->proto);
1493
1494 if (IS_ZEBRA_DEBUG_RECV) {
1495 zlog_debug(
1496 "%s: adding %d labels of type %d (1st=%u)",
1497 __func__, api_nh->label_num,
1498 label_type, api_nh->labels[0]);
1499 }
1500
1501 nexthop_add_labels(nexthop, label_type,
1502 api_nh->label_num,
1503 &api_nh->labels[0]);
1504 }
1505 }
1506
1507 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_DISTANCE))
1508 re->distance = api.distance;
1509 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_METRIC))
1510 re->metric = api.metric;
1511 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_TAG))
1512 re->tag = api.tag;
1513 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_MTU))
1514 re->mtu = api.mtu;
1515
1516 afi = family2afi(api.prefix.family);
1517 if (afi != AFI_IP6 && CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX)) {
1518 zlog_warn("%s: Received SRC Prefix but afi is not v6",
1519 __PRETTY_FUNCTION__);
1520 nexthops_free(re->ng.nexthop);
1521 XFREE(MTYPE_RE, re);
1522 return;
1523 }
1524 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX))
1525 src_p = &api.src_prefix;
1526
1527 ret = rib_add_multipath(afi, api.safi, &api.prefix, src_p, re);
1528
1529 /* Stats */
1530 switch (api.prefix.family) {
1531 case AF_INET:
1532 if (ret > 0)
1533 client->v4_route_add_cnt++;
1534 else if (ret < 0)
1535 client->v4_route_upd8_cnt++;
1536 break;
1537 case AF_INET6:
1538 if (ret > 0)
1539 client->v6_route_add_cnt++;
1540 else if (ret < 0)
1541 client->v6_route_upd8_cnt++;
1542 break;
1543 }
1544 }
1545
1546 static void zread_route_del(ZAPI_HANDLER_ARGS)
1547 {
1548 struct stream *s;
1549 struct zapi_route api;
1550 afi_t afi;
1551 struct prefix_ipv6 *src_p = NULL;
1552 uint32_t table_id;
1553
1554 s = msg;
1555 if (zapi_route_decode(s, &api) < 0)
1556 return;
1557
1558 afi = family2afi(api.prefix.family);
1559 if (afi != AFI_IP6 && CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX)) {
1560 zlog_warn("%s: Received a src prefix while afi is not v6",
1561 __PRETTY_FUNCTION__);
1562 return;
1563 }
1564 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX))
1565 src_p = &api.src_prefix;
1566
1567 if (api.vrf_id == VRF_DEFAULT && api.tableid != 0)
1568 table_id = api.tableid;
1569 else
1570 table_id = zvrf->table_id;
1571
1572 rib_delete(afi, api.safi, zvrf_id(zvrf), api.type, api.instance,
1573 api.flags, &api.prefix, src_p, NULL, table_id, api.metric,
1574 api.distance, false);
1575
1576 /* Stats */
1577 switch (api.prefix.family) {
1578 case AF_INET:
1579 client->v4_route_del_cnt++;
1580 break;
1581 case AF_INET6:
1582 client->v6_route_del_cnt++;
1583 break;
1584 }
1585 }
1586
1587 /* MRIB Nexthop lookup for IPv4. */
1588 static void zread_ipv4_nexthop_lookup_mrib(ZAPI_HANDLER_ARGS)
1589 {
1590 struct in_addr addr;
1591 struct route_entry *re;
1592
1593 STREAM_GET(&addr.s_addr, msg, IPV4_MAX_BYTELEN);
1594 re = rib_match_ipv4_multicast(zvrf_id(zvrf), addr, NULL);
1595 zsend_ipv4_nexthop_lookup_mrib(client, addr, re, zvrf);
1596
1597 stream_failure:
1598 return;
1599 }
1600
1601 /* Register zebra server router-id information. Send current router-id */
1602 static void zread_router_id_add(ZAPI_HANDLER_ARGS)
1603 {
1604 struct prefix p;
1605
1606 /* Router-id information is needed. */
1607 vrf_bitmap_set(client->ridinfo, zvrf_id(zvrf));
1608
1609 router_id_get(&p, zvrf_id(zvrf));
1610
1611 zsend_router_id_update(client, &p, zvrf_id(zvrf));
1612 }
1613
1614 /* Unregister zebra server router-id information. */
1615 static void zread_router_id_delete(ZAPI_HANDLER_ARGS)
1616 {
1617 vrf_bitmap_unset(client->ridinfo, zvrf_id(zvrf));
1618 }
1619
1620 static void zsend_capabilities(struct zserv *client, struct zebra_vrf *zvrf)
1621 {
1622 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
1623
1624 zclient_create_header(s, ZEBRA_CAPABILITIES, zvrf->vrf->vrf_id);
1625 stream_putc(s, mpls_enabled);
1626 stream_putl(s, multipath_num);
1627
1628 stream_putw_at(s, 0, stream_get_endp(s));
1629 zserv_send_message(client, s);
1630 }
1631
1632 /* Tie up route-type and client->sock */
1633 static void zread_hello(ZAPI_HANDLER_ARGS)
1634 {
1635 /* type of protocol (lib/zebra.h) */
1636 uint8_t proto;
1637 unsigned short instance;
1638 uint8_t notify;
1639
1640 STREAM_GETC(msg, proto);
1641 STREAM_GETW(msg, instance);
1642 STREAM_GETC(msg, notify);
1643 if (notify)
1644 client->notify_owner = true;
1645
1646 /* accept only dynamic routing protocols */
1647 if ((proto < ZEBRA_ROUTE_MAX) && (proto > ZEBRA_ROUTE_CONNECT)) {
1648 zlog_notice(
1649 "client %d says hello and bids fair to announce only %s routes vrf=%u",
1650 client->sock, zebra_route_string(proto),
1651 zvrf->vrf->vrf_id);
1652 if (instance)
1653 zlog_notice("client protocol instance %d", instance);
1654
1655 client->proto = proto;
1656 client->instance = instance;
1657 }
1658
1659 zsend_capabilities(client, zvrf);
1660 stream_failure:
1661 return;
1662 }
1663
1664 /* Unregister all information in a VRF. */
1665 static void zread_vrf_unregister(ZAPI_HANDLER_ARGS)
1666 {
1667 int i;
1668 afi_t afi;
1669
1670 for (afi = AFI_IP; afi < AFI_MAX; afi++)
1671 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
1672 vrf_bitmap_unset(client->redist[afi][i], zvrf_id(zvrf));
1673 vrf_bitmap_unset(client->redist_default, zvrf_id(zvrf));
1674 vrf_bitmap_unset(client->ifinfo, zvrf_id(zvrf));
1675 vrf_bitmap_unset(client->ridinfo, zvrf_id(zvrf));
1676 }
1677
1678 static void zread_mpls_labels(ZAPI_HANDLER_ARGS)
1679 {
1680 struct stream *s;
1681 enum lsp_types_t type;
1682 struct prefix prefix;
1683 enum nexthop_types_t gtype;
1684 union g_addr gate;
1685 ifindex_t ifindex;
1686 mpls_label_t in_label, out_label;
1687 uint8_t distance;
1688
1689 /* Get input stream. */
1690 s = msg;
1691
1692 /* Get data. */
1693 STREAM_GETC(s, type);
1694 STREAM_GETL(s, prefix.family);
1695 switch (prefix.family) {
1696 case AF_INET:
1697 STREAM_GET(&prefix.u.prefix4.s_addr, s, IPV4_MAX_BYTELEN);
1698 STREAM_GETC(s, prefix.prefixlen);
1699 if (prefix.prefixlen > IPV4_MAX_BITLEN) {
1700 zlog_warn(
1701 "%s: Specified prefix length %d is greater than a v4 address can support",
1702 __PRETTY_FUNCTION__, prefix.prefixlen);
1703 return;
1704 }
1705 STREAM_GET(&gate.ipv4.s_addr, s, IPV4_MAX_BYTELEN);
1706 break;
1707 case AF_INET6:
1708 STREAM_GET(&prefix.u.prefix6, s, 16);
1709 STREAM_GETC(s, prefix.prefixlen);
1710 if (prefix.prefixlen > IPV6_MAX_BITLEN) {
1711 zlog_warn(
1712 "%s: Specified prefix length %d is greater than a v6 address can support",
1713 __PRETTY_FUNCTION__, prefix.prefixlen);
1714 return;
1715 }
1716 STREAM_GET(&gate.ipv6, s, 16);
1717 break;
1718 default:
1719 zlog_warn("%s: Specified AF %d is not supported for this call",
1720 __PRETTY_FUNCTION__, prefix.family);
1721 return;
1722 }
1723 STREAM_GETL(s, ifindex);
1724 STREAM_GETC(s, distance);
1725 STREAM_GETL(s, in_label);
1726 STREAM_GETL(s, out_label);
1727
1728 switch (prefix.family) {
1729 case AF_INET:
1730 if (ifindex)
1731 gtype = NEXTHOP_TYPE_IPV4_IFINDEX;
1732 else
1733 gtype = NEXTHOP_TYPE_IPV4;
1734 break;
1735 case AF_INET6:
1736 if (ifindex)
1737 gtype = NEXTHOP_TYPE_IPV6_IFINDEX;
1738 else
1739 gtype = NEXTHOP_TYPE_IPV6;
1740 break;
1741 default:
1742 return;
1743 }
1744
1745 if (!mpls_enabled)
1746 return;
1747
1748 if (hdr->command == ZEBRA_MPLS_LABELS_ADD) {
1749 mpls_lsp_install(zvrf, type, in_label, out_label, gtype, &gate,
1750 ifindex);
1751 mpls_ftn_update(1, zvrf, type, &prefix, gtype, &gate, ifindex,
1752 distance, out_label);
1753 } else if (hdr->command == ZEBRA_MPLS_LABELS_DELETE) {
1754 mpls_lsp_uninstall(zvrf, type, in_label, gtype, &gate, ifindex);
1755 mpls_ftn_update(0, zvrf, type, &prefix, gtype, &gate, ifindex,
1756 distance, out_label);
1757 }
1758 stream_failure:
1759 return;
1760 }
1761
1762 /* Send response to a table manager connect request to client */
1763 static void zread_table_manager_connect(struct zserv *client,
1764 struct stream *msg, vrf_id_t vrf_id)
1765 {
1766 struct stream *s;
1767 uint8_t proto;
1768 uint16_t instance;
1769
1770 s = msg;
1771
1772 /* Get data. */
1773 STREAM_GETC(s, proto);
1774 STREAM_GETW(s, instance);
1775
1776 /* accept only dynamic routing protocols */
1777 if ((proto >= ZEBRA_ROUTE_MAX) || (proto <= ZEBRA_ROUTE_STATIC)) {
1778 flog_err(ZEBRA_ERR_TM_WRONG_PROTO,
1779 "client %d has wrong protocol %s", client->sock,
1780 zebra_route_string(proto));
1781 zsend_table_manager_connect_response(client, vrf_id, 1);
1782 return;
1783 }
1784 zlog_notice("client %d with vrf %u instance %u connected as %s",
1785 client->sock, vrf_id, instance, zebra_route_string(proto));
1786 client->proto = proto;
1787 client->instance = instance;
1788
1789 /*
1790 * Release previous labels of same protocol and instance.
1791 * This is done in case it restarted from an unexpected shutdown.
1792 */
1793 release_daemon_table_chunks(client);
1794
1795 zsend_table_manager_connect_response(client, vrf_id, 0);
1796
1797 stream_failure:
1798 return;
1799 }
1800
1801 static void zread_label_manager_connect(struct zserv *client,
1802 struct stream *msg, vrf_id_t vrf_id)
1803 {
1804 struct stream *s;
1805 /* type of protocol (lib/zebra.h) */
1806 uint8_t proto;
1807 unsigned short instance;
1808
1809 /* Get input stream. */
1810 s = msg;
1811
1812 /* Get data. */
1813 STREAM_GETC(s, proto);
1814 STREAM_GETW(s, instance);
1815
1816 /* accept only dynamic routing protocols */
1817 if ((proto >= ZEBRA_ROUTE_MAX) || (proto <= ZEBRA_ROUTE_STATIC)) {
1818 flog_err(ZEBRA_ERR_TM_WRONG_PROTO,
1819 "client %d has wrong protocol %s", client->sock,
1820 zebra_route_string(proto));
1821 zsend_label_manager_connect_response(client, vrf_id, 1);
1822 return;
1823 }
1824 zlog_notice("client %d with vrf %u instance %u connected as %s",
1825 client->sock, vrf_id, instance, zebra_route_string(proto));
1826 client->proto = proto;
1827 client->instance = instance;
1828
1829 /*
1830 * Release previous labels of same protocol and instance.
1831 * This is done in case it restarted from an unexpected shutdown.
1832 */
1833 release_daemon_label_chunks(client);
1834
1835 zlog_debug(
1836 " Label Manager client connected: sock %d, proto %s, vrf %u instance %u",
1837 client->sock, zebra_route_string(proto), vrf_id, instance);
1838 /* send response back */
1839 zsend_label_manager_connect_response(client, vrf_id, 0);
1840
1841 stream_failure:
1842 return;
1843 }
1844 static int msg_client_id_mismatch(const char *op, struct zserv *client,
1845 uint8_t proto, unsigned int instance)
1846 {
1847 if (proto != client->proto) {
1848 flog_err(ZEBRA_ERR_PROTO_OR_INSTANCE_MISMATCH,
1849 "%s: msg vs client proto mismatch, client=%u msg=%u",
1850 op, client->proto, proto);
1851 /* TODO: fail when BGP sets proto and instance */
1852 /* return 1; */
1853 }
1854
1855 if (instance != client->instance) {
1856 flog_err(
1857 ZEBRA_ERR_PROTO_OR_INSTANCE_MISMATCH,
1858 "%s: msg vs client instance mismatch, client=%u msg=%u",
1859 op, client->instance, instance);
1860 /* TODO: fail when BGP sets proto and instance */
1861 /* return 1; */
1862 }
1863
1864 return 0;
1865 }
1866
1867 static void zread_get_label_chunk(struct zserv *client, struct stream *msg,
1868 vrf_id_t vrf_id)
1869 {
1870 struct stream *s;
1871 uint8_t keep;
1872 uint32_t size;
1873 struct label_manager_chunk *lmc;
1874 uint8_t proto;
1875 unsigned short instance;
1876
1877 /* Get input stream. */
1878 s = msg;
1879
1880 /* Get data. */
1881 STREAM_GETC(s, proto);
1882 STREAM_GETW(s, instance);
1883 STREAM_GETC(s, keep);
1884 STREAM_GETL(s, size);
1885
1886 /* detect client vs message (proto,instance) mismatch */
1887 if (msg_client_id_mismatch("Get-label-chunk", client, proto, instance))
1888 return;
1889
1890 lmc = assign_label_chunk(client->proto, client->instance, keep, size);
1891 if (!lmc)
1892 flog_err(
1893 ZEBRA_ERR_LM_CANNOT_ASSIGN_CHUNK,
1894 "Unable to assign Label Chunk of size %u to %s instance %u",
1895 size, zebra_route_string(client->proto),
1896 client->instance);
1897 else
1898 zlog_debug("Assigned Label Chunk %u - %u to %s instance %u",
1899 lmc->start, lmc->end,
1900 zebra_route_string(client->proto), client->instance);
1901 /* send response back */
1902 zsend_assign_label_chunk_response(client, vrf_id, lmc);
1903
1904 stream_failure:
1905 return;
1906 }
1907
1908 static void zread_release_label_chunk(struct zserv *client, struct stream *msg)
1909 {
1910 struct stream *s;
1911 uint32_t start, end;
1912 uint8_t proto;
1913 unsigned short instance;
1914
1915 /* Get input stream. */
1916 s = msg;
1917
1918 /* Get data. */
1919 STREAM_GETC(s, proto);
1920 STREAM_GETW(s, instance);
1921 STREAM_GETL(s, start);
1922 STREAM_GETL(s, end);
1923
1924 /* detect client vs message (proto,instance) mismatch */
1925 if (msg_client_id_mismatch("Release-label-chunk", client, proto,
1926 instance))
1927 return;
1928
1929 release_label_chunk(client->proto, client->instance, start, end);
1930
1931 stream_failure:
1932 return;
1933 }
1934 static void zread_label_manager_request(ZAPI_HANDLER_ARGS)
1935 {
1936 /* to avoid sending other messages like ZERBA_INTERFACE_UP */
1937 if (hdr->command == ZEBRA_LABEL_MANAGER_CONNECT)
1938 client->is_synchronous = 1;
1939
1940 /* external label manager */
1941 if (lm_is_external)
1942 zread_relay_label_manager_request(hdr->command, client, msg,
1943 zvrf_id(zvrf));
1944 /* this is a label manager */
1945 else {
1946 if (hdr->command == ZEBRA_LABEL_MANAGER_CONNECT)
1947 zread_label_manager_connect(client, msg, zvrf_id(zvrf));
1948 else {
1949 /* Sanity: don't allow 'unidentified' requests */
1950 if (!client->proto) {
1951 flog_err(
1952 ZEBRA_ERR_LM_ALIENS,
1953 "Got label request from an unidentified client");
1954 return;
1955 }
1956 if (hdr->command == ZEBRA_GET_LABEL_CHUNK)
1957 zread_get_label_chunk(client, msg,
1958 zvrf_id(zvrf));
1959 else if (hdr->command == ZEBRA_RELEASE_LABEL_CHUNK)
1960 zread_release_label_chunk(client, msg);
1961 }
1962 }
1963 }
1964
1965 static void zread_get_table_chunk(struct zserv *client, struct stream *msg,
1966 vrf_id_t vrf_id)
1967 {
1968 struct stream *s;
1969 uint32_t size;
1970 struct table_manager_chunk *tmc;
1971
1972 /* Get input stream. */
1973 s = msg;
1974
1975 /* Get data. */
1976 STREAM_GETL(s, size);
1977
1978 tmc = assign_table_chunk(client->proto, client->instance, size);
1979 if (!tmc)
1980 flog_err(ZEBRA_ERR_TM_CANNOT_ASSIGN_CHUNK,
1981 "%s: Unable to assign Table Chunk of size %u",
1982 __func__, size);
1983 else
1984 zlog_debug("Assigned Table Chunk %u - %u", tmc->start,
1985 tmc->end);
1986 /* send response back */
1987 zsend_assign_table_chunk_response(client, vrf_id, tmc);
1988
1989 stream_failure:
1990 return;
1991 }
1992
1993 static void zread_release_table_chunk(struct zserv *client, struct stream *msg)
1994 {
1995 struct stream *s;
1996 uint32_t start, end;
1997
1998 /* Get input stream. */
1999 s = msg;
2000
2001 /* Get data. */
2002 STREAM_GETL(s, start);
2003 STREAM_GETL(s, end);
2004
2005 release_table_chunk(client->proto, client->instance, start, end);
2006
2007 stream_failure:
2008 return;
2009 }
2010
2011 static void zread_table_manager_request(ZAPI_HANDLER_ARGS)
2012 {
2013 /* to avoid sending other messages like ZERBA_INTERFACE_UP */
2014 if (hdr->command == ZEBRA_TABLE_MANAGER_CONNECT)
2015 zread_table_manager_connect(client, msg, zvrf_id(zvrf));
2016 else {
2017 /* Sanity: don't allow 'unidentified' requests */
2018 if (!client->proto) {
2019 flog_err(
2020 ZEBRA_ERR_TM_ALIENS,
2021 "Got table request from an unidentified client");
2022 return;
2023 }
2024 if (hdr->command == ZEBRA_GET_TABLE_CHUNK)
2025 zread_get_table_chunk(client, msg, zvrf_id(zvrf));
2026 else if (hdr->command == ZEBRA_RELEASE_TABLE_CHUNK)
2027 zread_release_table_chunk(client, msg);
2028 }
2029 }
2030
2031 static void zread_pseudowire(ZAPI_HANDLER_ARGS)
2032 {
2033 struct stream *s;
2034 char ifname[IF_NAMESIZE];
2035 ifindex_t ifindex;
2036 int type;
2037 int af;
2038 union g_addr nexthop;
2039 uint32_t local_label;
2040 uint32_t remote_label;
2041 uint8_t flags;
2042 union pw_protocol_fields data;
2043 uint8_t protocol;
2044 struct zebra_pw *pw;
2045
2046 /* Get input stream. */
2047 s = msg;
2048
2049 /* Get data. */
2050 STREAM_GET(ifname, s, IF_NAMESIZE);
2051 STREAM_GETL(s, ifindex);
2052 STREAM_GETL(s, type);
2053 STREAM_GETL(s, af);
2054 switch (af) {
2055 case AF_INET:
2056 STREAM_GET(&nexthop.ipv4.s_addr, s, IPV4_MAX_BYTELEN);
2057 break;
2058 case AF_INET6:
2059 STREAM_GET(&nexthop.ipv6, s, 16);
2060 break;
2061 default:
2062 return;
2063 }
2064 STREAM_GETL(s, local_label);
2065 STREAM_GETL(s, remote_label);
2066 STREAM_GETC(s, flags);
2067 STREAM_GET(&data, s, sizeof(data));
2068 protocol = client->proto;
2069
2070 pw = zebra_pw_find(zvrf, ifname);
2071 switch (hdr->command) {
2072 case ZEBRA_PW_ADD:
2073 if (pw) {
2074 zlog_warn("%s: pseudowire %s already exists [%s]",
2075 __func__, ifname,
2076 zserv_command_string(hdr->command));
2077 return;
2078 }
2079
2080 zebra_pw_add(zvrf, ifname, protocol, client);
2081 break;
2082 case ZEBRA_PW_DELETE:
2083 if (!pw) {
2084 zlog_warn("%s: pseudowire %s not found [%s]", __func__,
2085 ifname, zserv_command_string(hdr->command));
2086 return;
2087 }
2088
2089 zebra_pw_del(zvrf, pw);
2090 break;
2091 case ZEBRA_PW_SET:
2092 case ZEBRA_PW_UNSET:
2093 if (!pw) {
2094 zlog_warn("%s: pseudowire %s not found [%s]", __func__,
2095 ifname, zserv_command_string(hdr->command));
2096 return;
2097 }
2098
2099 switch (hdr->command) {
2100 case ZEBRA_PW_SET:
2101 pw->enabled = 1;
2102 break;
2103 case ZEBRA_PW_UNSET:
2104 pw->enabled = 0;
2105 break;
2106 }
2107
2108 zebra_pw_change(pw, ifindex, type, af, &nexthop, local_label,
2109 remote_label, flags, &data);
2110 break;
2111 }
2112
2113 stream_failure:
2114 return;
2115 }
2116
2117 static void zread_interface_set_master(ZAPI_HANDLER_ARGS)
2118 {
2119 struct interface *master;
2120 struct interface *slave;
2121 struct stream *s = msg;
2122 int ifindex;
2123 vrf_id_t vrf_id;
2124
2125 STREAM_GETL(s, vrf_id);
2126 STREAM_GETL(s, ifindex);
2127 master = if_lookup_by_index(ifindex, vrf_id);
2128
2129 STREAM_GETL(s, vrf_id);
2130 STREAM_GETL(s, ifindex);
2131 slave = if_lookup_by_index(ifindex, vrf_id);
2132
2133 if (!master || !slave)
2134 return;
2135
2136 kernel_interface_set_master(master, slave);
2137
2138 stream_failure:
2139 return;
2140 }
2141
2142
2143 static void zread_vrf_label(ZAPI_HANDLER_ARGS)
2144 {
2145 struct interface *ifp;
2146 mpls_label_t nlabel;
2147 afi_t afi;
2148 struct stream *s;
2149 struct zebra_vrf *def_zvrf;
2150 enum lsp_types_t ltype;
2151
2152 s = msg;
2153 STREAM_GETL(s, nlabel);
2154 STREAM_GETC(s, afi);
2155 if (nlabel == zvrf->label[afi]) {
2156 /*
2157 * Nothing to do here move along
2158 */
2159 return;
2160 }
2161
2162 STREAM_GETC(s, ltype);
2163
2164 if (zvrf->vrf->vrf_id != VRF_DEFAULT)
2165 ifp = if_lookup_by_name(zvrf->vrf->name, zvrf->vrf->vrf_id);
2166 else
2167 ifp = if_lookup_by_name("lo", VRF_DEFAULT);
2168
2169 if (!ifp) {
2170 zlog_debug("Unable to find specified Interface for %s",
2171 zvrf->vrf->name);
2172 return;
2173 }
2174
2175 def_zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT);
2176
2177 if (zvrf->label[afi] != MPLS_LABEL_NONE) {
2178 afi_t scrubber;
2179 bool really_remove;
2180
2181 really_remove = true;
2182 for (scrubber = AFI_IP; scrubber < AFI_MAX; scrubber++) {
2183 if (scrubber == afi)
2184 continue;
2185
2186 if (zvrf->label[scrubber] == MPLS_LABEL_NONE)
2187 continue;
2188
2189 if (zvrf->label[afi] == zvrf->label[scrubber]) {
2190 really_remove = false;
2191 break;
2192 }
2193 }
2194
2195 if (really_remove)
2196 mpls_lsp_uninstall(def_zvrf, ltype, zvrf->label[afi],
2197 NEXTHOP_TYPE_IFINDEX, NULL,
2198 ifp->ifindex);
2199 }
2200
2201 if (nlabel != MPLS_LABEL_NONE)
2202 mpls_lsp_install(def_zvrf, ltype, nlabel,
2203 MPLS_LABEL_IMPLICIT_NULL, NEXTHOP_TYPE_IFINDEX,
2204 NULL, ifp->ifindex);
2205
2206 zvrf->label[afi] = nlabel;
2207 stream_failure:
2208 return;
2209 }
2210
2211 static inline void zread_rule(ZAPI_HANDLER_ARGS)
2212 {
2213 struct zebra_pbr_rule zpr;
2214 struct stream *s;
2215 uint32_t total, i;
2216 ifindex_t ifindex;
2217
2218 s = msg;
2219 STREAM_GETL(s, total);
2220
2221 for (i = 0; i < total; i++) {
2222 memset(&zpr, 0, sizeof(zpr));
2223
2224 zpr.sock = client->sock;
2225 zpr.rule.vrf_id = hdr->vrf_id;
2226 STREAM_GETL(s, zpr.rule.seq);
2227 STREAM_GETL(s, zpr.rule.priority);
2228 STREAM_GETL(s, zpr.rule.unique);
2229 STREAM_GETC(s, zpr.rule.filter.src_ip.family);
2230 STREAM_GETC(s, zpr.rule.filter.src_ip.prefixlen);
2231 STREAM_GET(&zpr.rule.filter.src_ip.u.prefix, s,
2232 prefix_blen(&zpr.rule.filter.src_ip));
2233 STREAM_GETW(s, zpr.rule.filter.src_port);
2234 STREAM_GETC(s, zpr.rule.filter.dst_ip.family);
2235 STREAM_GETC(s, zpr.rule.filter.dst_ip.prefixlen);
2236 STREAM_GET(&zpr.rule.filter.dst_ip.u.prefix, s,
2237 prefix_blen(&zpr.rule.filter.dst_ip));
2238 STREAM_GETW(s, zpr.rule.filter.dst_port);
2239 STREAM_GETL(s, zpr.rule.filter.fwmark);
2240 STREAM_GETL(s, zpr.rule.action.table);
2241 STREAM_GETL(s, ifindex);
2242
2243 if (ifindex) {
2244 zpr.ifp = if_lookup_by_index_per_ns(
2245 zvrf->zns,
2246 ifindex);
2247 if (!zpr.ifp) {
2248 zlog_debug("Failed to lookup ifindex: %u",
2249 ifindex);
2250 return;
2251 }
2252 }
2253
2254 if (!is_default_prefix(&zpr.rule.filter.src_ip))
2255 zpr.rule.filter.filter_bm |= PBR_FILTER_SRC_IP;
2256
2257 if (!is_default_prefix(&zpr.rule.filter.dst_ip))
2258 zpr.rule.filter.filter_bm |= PBR_FILTER_DST_IP;
2259
2260 if (zpr.rule.filter.src_port)
2261 zpr.rule.filter.filter_bm |= PBR_FILTER_SRC_PORT;
2262
2263 if (zpr.rule.filter.dst_port)
2264 zpr.rule.filter.filter_bm |= PBR_FILTER_DST_PORT;
2265
2266 if (zpr.rule.filter.fwmark)
2267 zpr.rule.filter.filter_bm |= PBR_FILTER_FWMARK;
2268
2269 if (hdr->command == ZEBRA_RULE_ADD)
2270 zebra_pbr_add_rule(zvrf->zns, &zpr);
2271 else
2272 zebra_pbr_del_rule(zvrf->zns, &zpr);
2273 }
2274
2275 stream_failure:
2276 return;
2277 }
2278
2279 static inline void zread_ipset(ZAPI_HANDLER_ARGS)
2280 {
2281 struct zebra_pbr_ipset zpi;
2282 struct stream *s;
2283 uint32_t total, i;
2284
2285 s = msg;
2286 STREAM_GETL(s, total);
2287
2288 for (i = 0; i < total; i++) {
2289 memset(&zpi, 0, sizeof(zpi));
2290
2291 zpi.sock = client->sock;
2292 zpi.vrf_id = zvrf->vrf->vrf_id;
2293 STREAM_GETL(s, zpi.unique);
2294 STREAM_GETL(s, zpi.type);
2295 STREAM_GET(&zpi.ipset_name, s, ZEBRA_IPSET_NAME_SIZE);
2296
2297 if (hdr->command == ZEBRA_IPSET_CREATE)
2298 zebra_pbr_create_ipset(zvrf->zns, &zpi);
2299 else
2300 zebra_pbr_destroy_ipset(zvrf->zns, &zpi);
2301 }
2302
2303 stream_failure:
2304 return;
2305 }
2306
2307 static inline void zread_ipset_entry(ZAPI_HANDLER_ARGS)
2308 {
2309 struct zebra_pbr_ipset_entry zpi;
2310 struct zebra_pbr_ipset ipset;
2311 struct stream *s;
2312 uint32_t total, i;
2313
2314 s = msg;
2315 STREAM_GETL(s, total);
2316
2317 for (i = 0; i < total; i++) {
2318 memset(&zpi, 0, sizeof(zpi));
2319 memset(&ipset, 0, sizeof(ipset));
2320
2321 zpi.sock = client->sock;
2322 STREAM_GETL(s, zpi.unique);
2323 STREAM_GET(&ipset.ipset_name, s, ZEBRA_IPSET_NAME_SIZE);
2324 STREAM_GETC(s, zpi.src.family);
2325 STREAM_GETC(s, zpi.src.prefixlen);
2326 STREAM_GET(&zpi.src.u.prefix, s, prefix_blen(&zpi.src));
2327 STREAM_GETC(s, zpi.dst.family);
2328 STREAM_GETC(s, zpi.dst.prefixlen);
2329 STREAM_GET(&zpi.dst.u.prefix, s, prefix_blen(&zpi.dst));
2330
2331 STREAM_GETW(s, zpi.src_port_min);
2332 STREAM_GETW(s, zpi.src_port_max);
2333 STREAM_GETW(s, zpi.dst_port_min);
2334 STREAM_GETW(s, zpi.dst_port_max);
2335 STREAM_GETC(s, zpi.proto);
2336 if (!is_default_prefix(&zpi.src))
2337 zpi.filter_bm |= PBR_FILTER_SRC_IP;
2338
2339 if (!is_default_prefix(&zpi.dst))
2340 zpi.filter_bm |= PBR_FILTER_DST_IP;
2341 if (zpi.dst_port_min != 0 || zpi.proto == IPPROTO_ICMP)
2342 zpi.filter_bm |= PBR_FILTER_DST_PORT;
2343 if (zpi.src_port_min != 0 || zpi.proto == IPPROTO_ICMP)
2344 zpi.filter_bm |= PBR_FILTER_SRC_PORT;
2345 if (zpi.dst_port_max != 0)
2346 zpi.filter_bm |= PBR_FILTER_DST_PORT_RANGE;
2347 if (zpi.src_port_max != 0)
2348 zpi.filter_bm |= PBR_FILTER_SRC_PORT_RANGE;
2349 if (zpi.proto != 0)
2350 zpi.filter_bm |= PBR_FILTER_PROTO;
2351
2352 /* calculate backpointer */
2353 zpi.backpointer = zebra_pbr_lookup_ipset_pername(
2354 zvrf->zns, ipset.ipset_name);
2355 if (hdr->command == ZEBRA_IPSET_ENTRY_ADD)
2356 zebra_pbr_add_ipset_entry(zvrf->zns, &zpi);
2357 else
2358 zebra_pbr_del_ipset_entry(zvrf->zns, &zpi);
2359 }
2360
2361 stream_failure:
2362 return;
2363 }
2364
2365 static inline void zread_iptable(ZAPI_HANDLER_ARGS)
2366 {
2367 struct zebra_pbr_iptable zpi;
2368 struct stream *s;
2369
2370 s = msg;
2371
2372 memset(&zpi, 0, sizeof(zpi));
2373
2374 zpi.interface_name_list = list_new();
2375 zpi.sock = client->sock;
2376 zpi.vrf_id = zvrf->vrf->vrf_id;
2377 STREAM_GETL(s, zpi.unique);
2378 STREAM_GETL(s, zpi.type);
2379 STREAM_GETL(s, zpi.filter_bm);
2380 STREAM_GETL(s, zpi.action);
2381 STREAM_GETL(s, zpi.fwmark);
2382 STREAM_GET(&zpi.ipset_name, s, ZEBRA_IPSET_NAME_SIZE);
2383 STREAM_GETW(s, zpi.pkt_len_min);
2384 STREAM_GETW(s, zpi.pkt_len_max);
2385 STREAM_GETW(s, zpi.tcp_flags);
2386 STREAM_GETW(s, zpi.tcp_mask_flags);
2387 STREAM_GETC(s, zpi.dscp_value);
2388 STREAM_GETC(s, zpi.fragment);
2389 STREAM_GETL(s, zpi.nb_interface);
2390 zebra_pbr_iptable_update_interfacelist(s, &zpi);
2391
2392 if (hdr->command == ZEBRA_IPTABLE_ADD)
2393 zebra_pbr_add_iptable(zvrf->zns, &zpi);
2394 else
2395 zebra_pbr_del_iptable(zvrf->zns, &zpi);
2396 stream_failure:
2397 return;
2398 }
2399
2400 void (*zserv_handlers[])(ZAPI_HANDLER_ARGS) = {
2401 [ZEBRA_ROUTER_ID_ADD] = zread_router_id_add,
2402 [ZEBRA_ROUTER_ID_DELETE] = zread_router_id_delete,
2403 [ZEBRA_INTERFACE_ADD] = zread_interface_add,
2404 [ZEBRA_INTERFACE_DELETE] = zread_interface_delete,
2405 [ZEBRA_ROUTE_ADD] = zread_route_add,
2406 [ZEBRA_ROUTE_DELETE] = zread_route_del,
2407 [ZEBRA_REDISTRIBUTE_ADD] = zebra_redistribute_add,
2408 [ZEBRA_REDISTRIBUTE_DELETE] = zebra_redistribute_delete,
2409 [ZEBRA_REDISTRIBUTE_DEFAULT_ADD] = zebra_redistribute_default_add,
2410 [ZEBRA_REDISTRIBUTE_DEFAULT_DELETE] = zebra_redistribute_default_delete,
2411 [ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB] = zread_ipv4_nexthop_lookup_mrib,
2412 [ZEBRA_HELLO] = zread_hello,
2413 [ZEBRA_NEXTHOP_REGISTER] = zread_rnh_register,
2414 [ZEBRA_NEXTHOP_UNREGISTER] = zread_rnh_unregister,
2415 [ZEBRA_IMPORT_ROUTE_REGISTER] = zread_rnh_register,
2416 [ZEBRA_IMPORT_ROUTE_UNREGISTER] = zread_rnh_unregister,
2417 [ZEBRA_BFD_DEST_UPDATE] = zebra_ptm_bfd_dst_register,
2418 [ZEBRA_BFD_DEST_REGISTER] = zebra_ptm_bfd_dst_register,
2419 [ZEBRA_BFD_DEST_DEREGISTER] = zebra_ptm_bfd_dst_deregister,
2420 #if HAVE_BFDD > 0
2421 [ZEBRA_BFD_DEST_REPLAY] = zebra_ptm_bfd_dst_replay,
2422 #endif /* HAVE_BFDD */
2423 [ZEBRA_VRF_UNREGISTER] = zread_vrf_unregister,
2424 [ZEBRA_VRF_LABEL] = zread_vrf_label,
2425 [ZEBRA_BFD_CLIENT_REGISTER] = zebra_ptm_bfd_client_register,
2426 #if defined(HAVE_RTADV)
2427 [ZEBRA_INTERFACE_ENABLE_RADV] = zebra_interface_radv_enable,
2428 [ZEBRA_INTERFACE_DISABLE_RADV] = zebra_interface_radv_disable,
2429 #else
2430 [ZEBRA_INTERFACE_ENABLE_RADV] = NULL,
2431 [ZEBRA_INTERFACE_DISABLE_RADV] = NULL,
2432 #endif
2433 [ZEBRA_MPLS_LABELS_ADD] = zread_mpls_labels,
2434 [ZEBRA_MPLS_LABELS_DELETE] = zread_mpls_labels,
2435 [ZEBRA_IPMR_ROUTE_STATS] = zebra_ipmr_route_stats,
2436 [ZEBRA_LABEL_MANAGER_CONNECT] = zread_label_manager_request,
2437 [ZEBRA_GET_LABEL_CHUNK] = zread_label_manager_request,
2438 [ZEBRA_RELEASE_LABEL_CHUNK] = zread_label_manager_request,
2439 [ZEBRA_FEC_REGISTER] = zread_fec_register,
2440 [ZEBRA_FEC_UNREGISTER] = zread_fec_unregister,
2441 [ZEBRA_ADVERTISE_DEFAULT_GW] = zebra_vxlan_advertise_gw_macip,
2442 [ZEBRA_ADVERTISE_SUBNET] = zebra_vxlan_advertise_subnet,
2443 [ZEBRA_ADVERTISE_ALL_VNI] = zebra_vxlan_advertise_all_vni,
2444 [ZEBRA_REMOTE_VTEP_ADD] = zebra_vxlan_remote_vtep_add,
2445 [ZEBRA_REMOTE_VTEP_DEL] = zebra_vxlan_remote_vtep_del,
2446 [ZEBRA_REMOTE_MACIP_ADD] = zebra_vxlan_remote_macip_add,
2447 [ZEBRA_REMOTE_MACIP_DEL] = zebra_vxlan_remote_macip_del,
2448 [ZEBRA_INTERFACE_SET_MASTER] = zread_interface_set_master,
2449 [ZEBRA_PW_ADD] = zread_pseudowire,
2450 [ZEBRA_PW_DELETE] = zread_pseudowire,
2451 [ZEBRA_PW_SET] = zread_pseudowire,
2452 [ZEBRA_PW_UNSET] = zread_pseudowire,
2453 [ZEBRA_RULE_ADD] = zread_rule,
2454 [ZEBRA_RULE_DELETE] = zread_rule,
2455 [ZEBRA_TABLE_MANAGER_CONNECT] = zread_table_manager_request,
2456 [ZEBRA_GET_TABLE_CHUNK] = zread_table_manager_request,
2457 [ZEBRA_RELEASE_TABLE_CHUNK] = zread_table_manager_request,
2458 [ZEBRA_IPSET_CREATE] = zread_ipset,
2459 [ZEBRA_IPSET_DESTROY] = zread_ipset,
2460 [ZEBRA_IPSET_ENTRY_ADD] = zread_ipset_entry,
2461 [ZEBRA_IPSET_ENTRY_DELETE] = zread_ipset_entry,
2462 [ZEBRA_IPTABLE_ADD] = zread_iptable,
2463 [ZEBRA_IPTABLE_DELETE] = zread_iptable,
2464 };
2465
2466 #if defined(HANDLE_ZAPI_FUZZING)
2467 extern struct zebra_privs_t zserv_privs;
2468
2469 static void zserv_write_incoming(struct stream *orig, uint16_t command)
2470 {
2471 char fname[MAXPATHLEN];
2472 struct stream *copy;
2473 int fd = -1;
2474
2475 copy = stream_dup(orig);
2476 stream_set_getp(copy, 0);
2477
2478 snprintf(fname, MAXPATHLEN, "%s/%u", DAEMON_VTY_DIR, command);
2479
2480 frr_elevate_privs(&zserv_privs) {
2481 fd = open(fname, O_CREAT | O_WRONLY | O_EXCL, 0644);
2482 }
2483 stream_flush(copy, fd);
2484 close(fd);
2485 stream_free(copy);
2486 }
2487 #endif
2488
2489 void zserv_handle_commands(struct zserv *client, struct stream *msg)
2490 {
2491 struct zmsghdr hdr;
2492 struct zebra_vrf *zvrf;
2493
2494 zapi_parse_header(msg, &hdr);
2495
2496 #if defined(HANDLE_ZAPI_FUZZING)
2497 zserv_write_incoming(msg, hdr.command);
2498 #endif
2499
2500 hdr.length -= ZEBRA_HEADER_SIZE;
2501
2502 /* lookup vrf */
2503 zvrf = zebra_vrf_lookup_by_id(hdr.vrf_id);
2504 if (!zvrf) {
2505 if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
2506 zlog_warn("ZAPI message specifies unknown VRF: %d",
2507 hdr.vrf_id);
2508 return;
2509 }
2510
2511 if (hdr.command >= array_size(zserv_handlers)
2512 || zserv_handlers[hdr.command] == NULL)
2513 zlog_info("Zebra received unknown command %d", hdr.command);
2514 else
2515 zserv_handlers[hdr.command](client, &hdr, msg, zvrf);
2516 }