]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zapi_msg.c
Merge pull request #10380 from ton31337/feature/show_graceful_restart_timer_per_prefix
[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/stream.h"
28 #include "lib/memory.h"
29 #include "lib/table.h"
30 #include "lib/network.h"
31 #include "lib/log.h"
32 #include "lib/zclient.h"
33 #include "lib/privs.h"
34 #include "lib/nexthop.h"
35 #include "lib/vrf.h"
36 #include "lib/libfrr.h"
37 #include "lib/lib_errors.h"
38
39 #include "zebra/zebra_router.h"
40 #include "zebra/rib.h"
41 #include "zebra/zebra_ns.h"
42 #include "zebra/zebra_vrf.h"
43 #include "zebra/router-id.h"
44 #include "zebra/redistribute.h"
45 #include "zebra/debug.h"
46 #include "zebra/zebra_rnh.h"
47 #include "zebra/interface.h"
48 #include "zebra/zebra_ptm.h"
49 #include "zebra/rtadv.h"
50 #include "zebra/zebra_mpls.h"
51 #include "zebra/zebra_mroute.h"
52 #include "zebra/zebra_vxlan.h"
53 #include "zebra/zebra_evpn_mh.h"
54 #include "zebra/rt.h"
55 #include "zebra/zebra_pbr.h"
56 #include "zebra/table_manager.h"
57 #include "zebra/zapi_msg.h"
58 #include "zebra/zebra_errors.h"
59 #include "zebra/zebra_mlag.h"
60 #include "zebra/connected.h"
61 #include "zebra/zebra_opaque.h"
62 #include "zebra/zebra_srte.h"
63 #include "zebra/zebra_srv6.h"
64
65 DEFINE_MTYPE_STATIC(ZEBRA, OPAQUE, "Opaque Data");
66
67 static int zapi_nhg_decode(struct stream *s, int cmd, struct zapi_nhg *api_nhg);
68
69 /* Encoding helpers -------------------------------------------------------- */
70
71 static void zserv_encode_interface(struct stream *s, struct interface *ifp)
72 {
73 /* Interface information. */
74 struct zebra_if *zif = ifp->info;
75
76 stream_put(s, ifp->name, INTERFACE_NAMSIZ);
77 stream_putl(s, ifp->ifindex);
78 stream_putc(s, ifp->status);
79 stream_putq(s, ifp->flags);
80 stream_putc(s, ifp->ptm_enable);
81 stream_putc(s, ifp->ptm_status);
82 stream_putl(s, ifp->metric);
83 stream_putl(s, ifp->speed);
84 stream_putl(s, ifp->mtu);
85 stream_putl(s, ifp->mtu6);
86 stream_putl(s, ifp->bandwidth);
87 stream_putl(s, zif->link_ifindex);
88 stream_putl(s, ifp->ll_type);
89 stream_putl(s, ifp->hw_addr_len);
90 if (ifp->hw_addr_len)
91 stream_put(s, ifp->hw_addr, ifp->hw_addr_len);
92
93 /* Then, Traffic Engineering parameters if any */
94 if (HAS_LINK_PARAMS(ifp) && IS_LINK_PARAMS_SET(ifp->link_params)) {
95 stream_putc(s, 1);
96 zebra_interface_link_params_write(s, ifp);
97 } else
98 stream_putc(s, 0);
99
100 /* Write packet size. */
101 stream_putw_at(s, 0, stream_get_endp(s));
102 }
103
104 static void zserv_encode_vrf(struct stream *s, struct zebra_vrf *zvrf)
105 {
106 struct vrf_data data;
107 const char *netns_name = zvrf_ns_name(zvrf);
108
109 memset(&data, 0, sizeof(data));
110 data.l.table_id = zvrf->table_id;
111
112 if (netns_name)
113 strlcpy(data.l.netns_name, basename((char *)netns_name),
114 NS_NAMSIZ);
115 else
116 memset(data.l.netns_name, 0, NS_NAMSIZ);
117 /* Pass the tableid and the netns NAME */
118 stream_put(s, &data, sizeof(struct vrf_data));
119 /* Interface information. */
120 stream_put(s, zvrf_name(zvrf), VRF_NAMSIZ);
121 /* Write packet size. */
122 stream_putw_at(s, 0, stream_get_endp(s));
123 }
124
125 static int zserv_encode_nexthop(struct stream *s, struct nexthop *nexthop)
126 {
127 stream_putl(s, nexthop->vrf_id);
128 stream_putc(s, nexthop->type);
129 switch (nexthop->type) {
130 case NEXTHOP_TYPE_IPV4:
131 case NEXTHOP_TYPE_IPV4_IFINDEX:
132 stream_put_in_addr(s, &nexthop->gate.ipv4);
133 stream_putl(s, nexthop->ifindex);
134 break;
135 case NEXTHOP_TYPE_IPV6:
136 stream_put(s, &nexthop->gate.ipv6, 16);
137 break;
138 case NEXTHOP_TYPE_IPV6_IFINDEX:
139 stream_put(s, &nexthop->gate.ipv6, 16);
140 stream_putl(s, nexthop->ifindex);
141 break;
142 case NEXTHOP_TYPE_IFINDEX:
143 stream_putl(s, nexthop->ifindex);
144 break;
145 default:
146 /* do nothing */
147 break;
148 }
149 return 1;
150 }
151
152 /*
153 * Zebra error addition adds error type.
154 *
155 *
156 * 0 1
157 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6
158 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
159 * | enum zebra_error_types |
160 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
161 *
162 */
163 static void zserv_encode_error(struct stream *s, enum zebra_error_types error)
164 {
165 stream_put(s, &error, sizeof(error));
166
167 /* Write packet size. */
168 stream_putw_at(s, 0, stream_get_endp(s));
169 }
170
171 /* Send handlers ----------------------------------------------------------- */
172
173 /* Interface is added. Send ZEBRA_INTERFACE_ADD to client. */
174 /*
175 * This function is called in the following situations:
176 * - in response to a 3-byte ZEBRA_INTERFACE_ADD request
177 * from the client.
178 * - at startup, when zebra figures out the available interfaces
179 * - when an interface is added (where support for
180 * RTM_IFANNOUNCE or AF_NETLINK sockets is available), or when
181 * an interface is marked IFF_UP (i.e., an RTM_IFINFO message is
182 * received)
183 */
184 int zsend_interface_add(struct zserv *client, struct interface *ifp)
185 {
186 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
187
188 zclient_create_header(s, ZEBRA_INTERFACE_ADD, ifp->vrf->vrf_id);
189 zserv_encode_interface(s, ifp);
190
191 client->ifadd_cnt++;
192 return zserv_send_message(client, s);
193 }
194
195 /* Interface deletion from zebra daemon. */
196 int zsend_interface_delete(struct zserv *client, struct interface *ifp)
197 {
198 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
199
200 zclient_create_header(s, ZEBRA_INTERFACE_DELETE, ifp->vrf->vrf_id);
201 zserv_encode_interface(s, ifp);
202
203 client->ifdel_cnt++;
204 return zserv_send_message(client, s);
205 }
206
207 int zsend_vrf_add(struct zserv *client, struct zebra_vrf *zvrf)
208 {
209 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
210
211 zclient_create_header(s, ZEBRA_VRF_ADD, zvrf_id(zvrf));
212 zserv_encode_vrf(s, zvrf);
213
214 client->vrfadd_cnt++;
215 return zserv_send_message(client, s);
216 }
217
218 /* VRF deletion from zebra daemon. */
219 int zsend_vrf_delete(struct zserv *client, struct zebra_vrf *zvrf)
220
221 {
222 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
223
224 zclient_create_header(s, ZEBRA_VRF_DELETE, zvrf_id(zvrf));
225 zserv_encode_vrf(s, zvrf);
226
227 client->vrfdel_cnt++;
228 return zserv_send_message(client, s);
229 }
230
231 int zsend_interface_link_params(struct zserv *client, struct interface *ifp)
232 {
233 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
234
235 if (!ifp->link_params) {
236 stream_free(s);
237 return 0;
238 }
239
240 zclient_create_header(s, ZEBRA_INTERFACE_LINK_PARAMS, ifp->vrf->vrf_id);
241
242 /* Add Interface Index */
243 stream_putl(s, ifp->ifindex);
244
245 /* Then TE Link Parameters */
246 if (zebra_interface_link_params_write(s, ifp) == 0) {
247 stream_free(s);
248 return 0;
249 }
250
251 /* Write packet size. */
252 stream_putw_at(s, 0, stream_get_endp(s));
253
254 return zserv_send_message(client, s);
255 }
256
257 /* Interface address is added/deleted. Send ZEBRA_INTERFACE_ADDRESS_ADD or
258 * ZEBRA_INTERFACE_ADDRESS_DELETE to the client.
259 *
260 * A ZEBRA_INTERFACE_ADDRESS_ADD is sent in the following situations:
261 * - in response to a 3-byte ZEBRA_INTERFACE_ADD request
262 * from the client, after the ZEBRA_INTERFACE_ADD has been
263 * sent from zebra to the client
264 * - redistribute new address info to all clients in the following situations
265 * - at startup, when zebra figures out the available interfaces
266 * - when an interface is added (where support for
267 * RTM_IFANNOUNCE or AF_NETLINK sockets is available), or when
268 * an interface is marked IFF_UP (i.e., an RTM_IFINFO message is
269 * received)
270 * - for the vty commands "ip address A.B.C.D/M [<label LINE>]"
271 * and "no bandwidth <1-10000000>", "ipv6 address X:X::X:X/M"
272 * - when an RTM_NEWADDR message is received from the kernel,
273 *
274 * The call tree that triggers ZEBRA_INTERFACE_ADDRESS_DELETE:
275 *
276 * zsend_interface_address(DELETE)
277 * ^
278 * |
279 * zebra_interface_address_delete_update
280 * ^ ^ ^
281 * | | if_delete_update
282 * | |
283 * ip_address_uninstall connected_delete_ipv4
284 * [ipv6_addresss_uninstall] [connected_delete_ipv6]
285 * ^ ^
286 * | |
287 * | RTM_NEWADDR on routing/netlink socket
288 * |
289 * vty commands:
290 * "no ip address A.B.C.D/M [label LINE]"
291 * "no ip address A.B.C.D/M"
292 * ["no ipv6 address X:X::X:X/M"]
293 *
294 */
295 int zsend_interface_address(int cmd, struct zserv *client,
296 struct interface *ifp, struct connected *ifc)
297 {
298 int blen;
299 struct prefix *p;
300 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
301
302 zclient_create_header(s, cmd, ifp->vrf->vrf_id);
303 stream_putl(s, ifp->ifindex);
304
305 /* Interface address flag. */
306 stream_putc(s, ifc->flags);
307
308 /* Prefix information. */
309 p = ifc->address;
310 stream_putc(s, p->family);
311 blen = prefix_blen(p);
312 stream_put(s, &p->u.prefix, blen);
313
314 /*
315 * XXX gnu version does not send prefixlen for
316 * ZEBRA_INTERFACE_ADDRESS_DELETE
317 * but zebra_interface_address_delete_read() in the gnu version
318 * expects to find it
319 */
320 stream_putc(s, p->prefixlen);
321
322 /* Destination. */
323 p = ifc->destination;
324 if (p)
325 stream_put(s, &p->u.prefix, blen);
326 else
327 stream_put(s, NULL, blen);
328
329 /* Write packet size. */
330 stream_putw_at(s, 0, stream_get_endp(s));
331
332 client->connected_rt_add_cnt++;
333 return zserv_send_message(client, s);
334 }
335
336 static int zsend_interface_nbr_address(int cmd, struct zserv *client,
337 struct interface *ifp,
338 struct nbr_connected *ifc)
339 {
340 int blen;
341 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
342 struct prefix *p;
343
344 zclient_create_header(s, cmd, ifp->vrf->vrf_id);
345 stream_putl(s, ifp->ifindex);
346
347 /* Prefix information. */
348 p = ifc->address;
349 stream_putc(s, p->family);
350 blen = prefix_blen(p);
351 stream_put(s, &p->u.prefix, blen);
352
353 /*
354 * XXX gnu version does not send prefixlen for
355 * ZEBRA_INTERFACE_ADDRESS_DELETE
356 * but zebra_interface_address_delete_read() in the gnu version
357 * expects to find it
358 */
359 stream_putc(s, p->prefixlen);
360
361 /* Write packet size. */
362 stream_putw_at(s, 0, stream_get_endp(s));
363
364 return zserv_send_message(client, s);
365 }
366
367 /* Interface address addition. */
368 static void zebra_interface_nbr_address_add_update(struct interface *ifp,
369 struct nbr_connected *ifc)
370 {
371 struct listnode *node, *nnode;
372 struct zserv *client;
373 struct prefix *p;
374
375 if (IS_ZEBRA_DEBUG_EVENT) {
376 char buf[INET6_ADDRSTRLEN];
377
378 p = ifc->address;
379 zlog_debug(
380 "MESSAGE: ZEBRA_INTERFACE_NBR_ADDRESS_ADD %s/%d on %s",
381 inet_ntop(p->family, &p->u.prefix, buf,
382 INET6_ADDRSTRLEN),
383 p->prefixlen, ifc->ifp->name);
384 }
385
386 for (ALL_LIST_ELEMENTS(zrouter.client_list, node, nnode, client)) {
387 /* Do not send unsolicited messages to synchronous clients. */
388 if (client->synchronous)
389 continue;
390
391 zsend_interface_nbr_address(ZEBRA_INTERFACE_NBR_ADDRESS_ADD,
392 client, ifp, ifc);
393 }
394 }
395
396 /* Interface address deletion. */
397 static void zebra_interface_nbr_address_delete_update(struct interface *ifp,
398 struct nbr_connected *ifc)
399 {
400 struct listnode *node, *nnode;
401 struct zserv *client;
402 struct prefix *p;
403
404 if (IS_ZEBRA_DEBUG_EVENT) {
405 char buf[INET6_ADDRSTRLEN];
406
407 p = ifc->address;
408 zlog_debug(
409 "MESSAGE: ZEBRA_INTERFACE_NBR_ADDRESS_DELETE %s/%d on %s",
410 inet_ntop(p->family, &p->u.prefix, buf,
411 INET6_ADDRSTRLEN),
412 p->prefixlen, ifc->ifp->name);
413 }
414
415 for (ALL_LIST_ELEMENTS(zrouter.client_list, node, nnode, client)) {
416 /* Do not send unsolicited messages to synchronous clients. */
417 if (client->synchronous)
418 continue;
419
420 zsend_interface_nbr_address(ZEBRA_INTERFACE_NBR_ADDRESS_DELETE,
421 client, ifp, ifc);
422 }
423 }
424
425 /* Send addresses on interface to client */
426 int zsend_interface_addresses(struct zserv *client, struct interface *ifp)
427 {
428 struct listnode *cnode, *cnnode;
429 struct connected *c;
430 struct nbr_connected *nc;
431
432 /* Send interface addresses. */
433 for (ALL_LIST_ELEMENTS(ifp->connected, cnode, cnnode, c)) {
434 if (!CHECK_FLAG(c->conf, ZEBRA_IFC_REAL))
435 continue;
436
437 if (zsend_interface_address(ZEBRA_INTERFACE_ADDRESS_ADD, client,
438 ifp, c)
439 < 0)
440 return -1;
441 }
442
443 /* Send interface neighbors. */
444 for (ALL_LIST_ELEMENTS(ifp->nbr_connected, cnode, cnnode, nc)) {
445 if (zsend_interface_nbr_address(ZEBRA_INTERFACE_NBR_ADDRESS_ADD,
446 client, ifp, nc)
447 < 0)
448 return -1;
449 }
450
451 return 0;
452 }
453
454 /* Notify client about interface moving from one VRF to another.
455 * Whether client is interested in old and new VRF is checked by caller.
456 */
457 int zsend_interface_vrf_update(struct zserv *client, struct interface *ifp,
458 vrf_id_t vrf_id)
459 {
460 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
461
462 zclient_create_header(s, ZEBRA_INTERFACE_VRF_UPDATE, ifp->vrf->vrf_id);
463
464 /* Fill in the name of the interface and its new VRF (id) */
465 stream_put(s, ifp->name, INTERFACE_NAMSIZ);
466 stream_putl(s, vrf_id);
467
468 /* Write packet size. */
469 stream_putw_at(s, 0, stream_get_endp(s));
470
471 client->if_vrfchg_cnt++;
472 return zserv_send_message(client, s);
473 }
474
475 /* Add new nbr connected IPv6 address */
476 void nbr_connected_add_ipv6(struct interface *ifp, struct in6_addr *address)
477 {
478 struct nbr_connected *ifc;
479 struct prefix p;
480
481 p.family = AF_INET6;
482 IPV6_ADDR_COPY(&p.u.prefix6, address);
483 p.prefixlen = IPV6_MAX_BITLEN;
484
485 ifc = listnode_head(ifp->nbr_connected);
486 if (!ifc) {
487 /* new addition */
488 ifc = nbr_connected_new();
489 ifc->address = prefix_new();
490 ifc->ifp = ifp;
491 listnode_add(ifp->nbr_connected, ifc);
492 }
493
494 prefix_copy(ifc->address, &p);
495
496 zebra_interface_nbr_address_add_update(ifp, ifc);
497
498 if_nbr_ipv6ll_to_ipv4ll_neigh_update(ifp, address, 1);
499 }
500
501 void nbr_connected_delete_ipv6(struct interface *ifp, struct in6_addr *address)
502 {
503 struct nbr_connected *ifc;
504 struct prefix p;
505
506 p.family = AF_INET6;
507 IPV6_ADDR_COPY(&p.u.prefix6, address);
508 p.prefixlen = IPV6_MAX_BITLEN;
509
510 ifc = nbr_connected_check(ifp, &p);
511 if (!ifc)
512 return;
513
514 listnode_delete(ifp->nbr_connected, ifc);
515
516 zebra_interface_nbr_address_delete_update(ifp, ifc);
517
518 if_nbr_ipv6ll_to_ipv4ll_neigh_update(ifp, address, 0);
519
520 nbr_connected_free(ifc);
521 }
522
523 /*
524 * The cmd passed to zsend_interface_update may be ZEBRA_INTERFACE_UP or
525 * ZEBRA_INTERFACE_DOWN.
526 *
527 * The ZEBRA_INTERFACE_UP message is sent from the zebra server to
528 * the clients in one of 2 situations:
529 * - an if_up is detected e.g., as a result of an RTM_IFINFO message
530 * - a vty command modifying the bandwidth of an interface is received.
531 * The ZEBRA_INTERFACE_DOWN message is sent when an if_down is detected.
532 */
533 int zsend_interface_update(int cmd, struct zserv *client, struct interface *ifp)
534 {
535 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
536
537 zclient_create_header(s, cmd, ifp->vrf->vrf_id);
538 zserv_encode_interface(s, ifp);
539
540 if (cmd == ZEBRA_INTERFACE_UP)
541 client->ifup_cnt++;
542 else
543 client->ifdown_cnt++;
544
545 return zserv_send_message(client, s);
546 }
547
548 int zsend_redistribute_route(int cmd, struct zserv *client,
549 const struct route_node *rn,
550 const struct route_entry *re)
551 {
552 struct zapi_route api;
553 struct zapi_nexthop *api_nh;
554 struct nexthop *nexthop;
555 const struct prefix *p, *src_p;
556 uint8_t count = 0;
557 afi_t afi;
558 size_t stream_size =
559 MAX(ZEBRA_MAX_PACKET_SIZ, sizeof(struct zapi_route));
560
561 srcdest_rnode_prefixes(rn, &p, &src_p);
562 memset(&api, 0, sizeof(api));
563 api.vrf_id = re->vrf_id;
564 api.type = re->type;
565 api.safi = SAFI_UNICAST;
566 api.instance = re->instance;
567 api.flags = re->flags;
568
569 afi = family2afi(p->family);
570 switch (afi) {
571 case AFI_IP:
572 if (cmd == ZEBRA_REDISTRIBUTE_ROUTE_ADD)
573 client->redist_v4_add_cnt++;
574 else
575 client->redist_v4_del_cnt++;
576 break;
577 case AFI_IP6:
578 if (cmd == ZEBRA_REDISTRIBUTE_ROUTE_ADD)
579 client->redist_v6_add_cnt++;
580 else
581 client->redist_v6_del_cnt++;
582 break;
583 default:
584 break;
585 }
586
587 /* Prefix. */
588 api.prefix = *p;
589 if (src_p) {
590 SET_FLAG(api.message, ZAPI_MESSAGE_SRCPFX);
591 memcpy(&api.src_prefix, src_p, sizeof(api.src_prefix));
592 }
593
594 for (nexthop = re->nhe->nhg.nexthop;
595 nexthop; nexthop = nexthop->next) {
596 if (!CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE))
597 continue;
598
599 api_nh = &api.nexthops[count];
600 api_nh->vrf_id = nexthop->vrf_id;
601 api_nh->type = nexthop->type;
602 api_nh->weight = nexthop->weight;
603 switch (nexthop->type) {
604 case NEXTHOP_TYPE_BLACKHOLE:
605 api_nh->bh_type = nexthop->bh_type;
606 break;
607 case NEXTHOP_TYPE_IPV4:
608 case NEXTHOP_TYPE_IPV4_IFINDEX:
609 api_nh->gate.ipv4 = nexthop->gate.ipv4;
610 api_nh->ifindex = nexthop->ifindex;
611 break;
612 case NEXTHOP_TYPE_IFINDEX:
613 api_nh->ifindex = nexthop->ifindex;
614 break;
615 case NEXTHOP_TYPE_IPV6:
616 case NEXTHOP_TYPE_IPV6_IFINDEX:
617 api_nh->gate.ipv6 = nexthop->gate.ipv6;
618 api_nh->ifindex = nexthop->ifindex;
619 }
620 count++;
621 }
622
623 /* Nexthops. */
624 if (count) {
625 SET_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP);
626 api.nexthop_num = count;
627 }
628
629 /* Attributes. */
630 SET_FLAG(api.message, ZAPI_MESSAGE_DISTANCE);
631 api.distance = re->distance;
632 SET_FLAG(api.message, ZAPI_MESSAGE_METRIC);
633 api.metric = re->metric;
634 if (re->tag) {
635 SET_FLAG(api.message, ZAPI_MESSAGE_TAG);
636 api.tag = re->tag;
637 }
638 SET_FLAG(api.message, ZAPI_MESSAGE_MTU);
639 api.mtu = re->mtu;
640
641 struct stream *s = stream_new(stream_size);
642
643 /* Encode route and send. */
644 if (zapi_route_encode(cmd, s, &api) < 0) {
645 stream_free(s);
646 return -1;
647 }
648
649 if (IS_ZEBRA_DEBUG_SEND)
650 zlog_debug("%s: %s to client %s: type %s, vrf_id %d, p %pFX",
651 __func__, zserv_command_string(cmd),
652 zebra_route_string(client->proto),
653 zebra_route_string(api.type), api.vrf_id,
654 &api.prefix);
655 return zserv_send_message(client, s);
656 }
657
658 /*
659 * Modified version of zsend_ipv4_nexthop_lookup(): Query unicast rib if
660 * nexthop is not found on mrib. Returns both route metric and protocol
661 * distance.
662 */
663 static int zsend_ipv4_nexthop_lookup_mrib(struct zserv *client,
664 struct in_addr addr,
665 struct route_entry *re,
666 struct zebra_vrf *zvrf)
667 {
668 struct stream *s;
669 unsigned long nump;
670 uint8_t num;
671 struct nexthop *nexthop;
672
673 /* Get output stream. */
674 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
675 stream_reset(s);
676
677 /* Fill in result. */
678 zclient_create_header(s, ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB, zvrf_id(zvrf));
679 stream_put_in_addr(s, &addr);
680
681 if (re) {
682 struct nexthop_group *nhg;
683
684 stream_putc(s, re->distance);
685 stream_putl(s, re->metric);
686 num = 0;
687 /* remember position for nexthop_num */
688 nump = stream_get_endp(s);
689 /* reserve room for nexthop_num */
690 stream_putc(s, 0);
691 nhg = rib_get_fib_nhg(re);
692 for (ALL_NEXTHOPS_PTR(nhg, nexthop)) {
693 if (rnh_nexthop_valid(re, nexthop))
694 num += zserv_encode_nexthop(s, nexthop);
695 }
696
697 /* store nexthop_num */
698 stream_putc_at(s, nump, num);
699 } else {
700 stream_putc(s, 0); /* distance */
701 stream_putl(s, 0); /* metric */
702 stream_putc(s, 0); /* nexthop_num */
703 }
704
705 stream_putw_at(s, 0, stream_get_endp(s));
706
707 return zserv_send_message(client, s);
708 }
709
710 int zsend_nhg_notify(uint16_t type, uint16_t instance, uint32_t session_id,
711 uint32_t id, enum zapi_nhg_notify_owner note)
712 {
713 struct zserv *client;
714 struct stream *s;
715
716 client = zserv_find_client_session(type, instance, session_id);
717 if (!client) {
718 if (IS_ZEBRA_DEBUG_PACKET) {
719 zlog_debug("Not Notifying Owner: %u(%u) about %u(%d)",
720 type, instance, id, note);
721 }
722 return 0;
723 }
724
725 if (IS_ZEBRA_DEBUG_SEND)
726 zlog_debug("%s: type %d, id %d, note %s",
727 __func__, type, id, zapi_nhg_notify_owner2str(note));
728
729 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
730 stream_reset(s);
731
732 zclient_create_header(s, ZEBRA_NHG_NOTIFY_OWNER, VRF_DEFAULT);
733
734 stream_put(s, &note, sizeof(note));
735 stream_putl(s, id);
736
737 stream_putw_at(s, 0, stream_get_endp(s));
738
739 return zserv_send_message(client, s);
740 }
741
742 /*
743 * Common utility send route notification, called from a path using a
744 * route_entry and from a path using a dataplane context.
745 */
746 static int route_notify_internal(const struct route_node *rn, int type,
747 uint16_t instance, vrf_id_t vrf_id,
748 uint32_t table_id,
749 enum zapi_route_notify_owner note, afi_t afi,
750 safi_t safi)
751 {
752 struct zserv *client;
753 struct stream *s;
754 uint8_t blen;
755
756 client = zserv_find_client(type, instance);
757 if (!client || !client->notify_owner) {
758 if (IS_ZEBRA_DEBUG_PACKET)
759 zlog_debug(
760 "Not Notifying Owner: %s about prefix %pRN(%u) %d vrf: %u",
761 zebra_route_string(type), rn, table_id, note,
762 vrf_id);
763 return 0;
764 }
765
766 if (IS_ZEBRA_DEBUG_PACKET)
767 zlog_debug(
768 "Notifying Owner: %s about prefix %pRN(%u) %d vrf: %u",
769 zebra_route_string(type), rn, table_id, note, vrf_id);
770
771 /* We're just allocating a small-ish buffer here, since we only
772 * encode a small amount of data.
773 */
774 s = stream_new(ZEBRA_SMALL_PACKET_SIZE);
775
776 stream_reset(s);
777
778 zclient_create_header(s, ZEBRA_ROUTE_NOTIFY_OWNER, vrf_id);
779
780 stream_put(s, &note, sizeof(note));
781
782 stream_putc(s, rn->p.family);
783
784 blen = prefix_blen(&rn->p);
785 stream_putc(s, rn->p.prefixlen);
786 stream_put(s, &rn->p.u.prefix, blen);
787
788 stream_putl(s, table_id);
789
790 /* Encode AFI, SAFI in the message */
791 stream_putc(s, afi);
792 stream_putc(s, safi);
793
794 stream_putw_at(s, 0, stream_get_endp(s));
795
796 return zserv_send_message(client, s);
797 }
798
799 int zsend_route_notify_owner(const struct route_node *rn,
800 struct route_entry *re,
801 enum zapi_route_notify_owner note, afi_t afi,
802 safi_t safi)
803 {
804 return (route_notify_internal(rn, re->type, re->instance, re->vrf_id,
805 re->table, note, afi, safi));
806 }
807
808 /*
809 * Route-owner notification using info from dataplane update context.
810 */
811 int zsend_route_notify_owner_ctx(const struct zebra_dplane_ctx *ctx,
812 enum zapi_route_notify_owner note)
813 {
814 return (route_notify_internal(
815 rib_find_rn_from_ctx(ctx), dplane_ctx_get_type(ctx),
816 dplane_ctx_get_instance(ctx), dplane_ctx_get_vrf(ctx),
817 dplane_ctx_get_table(ctx), note, dplane_ctx_get_afi(ctx),
818 dplane_ctx_get_safi(ctx)));
819 }
820
821 static void zread_route_notify_request(ZAPI_HANDLER_ARGS)
822 {
823 uint8_t notify;
824
825 STREAM_GETC(msg, notify);
826 client->notify_owner = notify;
827 stream_failure:
828 return;
829 }
830
831 void zsend_rule_notify_owner(const struct zebra_dplane_ctx *ctx,
832 enum zapi_rule_notify_owner note)
833 {
834 struct listnode *node;
835 struct zserv *client;
836 struct stream *s;
837
838 if (IS_ZEBRA_DEBUG_PACKET)
839 zlog_debug("%s: Notifying %u", __func__,
840 dplane_ctx_rule_get_unique(ctx));
841
842 for (ALL_LIST_ELEMENTS_RO(zrouter.client_list, node, client)) {
843 if (dplane_ctx_rule_get_sock(ctx) == client->sock)
844 break;
845 }
846
847 if (!client)
848 return;
849
850 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
851
852 zclient_create_header(s, ZEBRA_RULE_NOTIFY_OWNER, VRF_DEFAULT);
853 stream_put(s, &note, sizeof(note));
854 stream_putl(s, dplane_ctx_rule_get_seq(ctx));
855 stream_putl(s, dplane_ctx_rule_get_priority(ctx));
856 stream_putl(s, dplane_ctx_rule_get_unique(ctx));
857 stream_put(s, dplane_ctx_rule_get_ifname(ctx), INTERFACE_NAMSIZ);
858
859 stream_putw_at(s, 0, stream_get_endp(s));
860
861 zserv_send_message(client, s);
862 }
863
864 void zsend_iptable_notify_owner(const struct zebra_dplane_ctx *ctx,
865 enum zapi_iptable_notify_owner note)
866 {
867 struct listnode *node;
868 struct zserv *client;
869 struct stream *s;
870 struct zebra_pbr_iptable ipt;
871 uint16_t cmd = ZEBRA_IPTABLE_NOTIFY_OWNER;
872
873 dplane_ctx_get_pbr_iptable(ctx, &ipt);
874
875 if (IS_ZEBRA_DEBUG_PACKET)
876 zlog_debug("%s: Notifying %s id %u note %u", __func__,
877 zserv_command_string(cmd), ipt.unique, note);
878
879 for (ALL_LIST_ELEMENTS_RO(zrouter.client_list, node, client)) {
880 if (ipt.sock == client->sock)
881 break;
882 }
883
884 if (!client)
885 return;
886
887 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
888
889 zclient_create_header(s, cmd, VRF_DEFAULT);
890 stream_putw(s, note);
891 stream_putl(s, ipt.unique);
892 stream_put(s, ipt.ipset_name, ZEBRA_IPSET_NAME_SIZE);
893 stream_putw_at(s, 0, stream_get_endp(s));
894
895 zserv_send_message(client, s);
896 }
897
898 void zsend_ipset_notify_owner(const struct zebra_dplane_ctx *ctx,
899 enum zapi_ipset_notify_owner note)
900 {
901 struct listnode *node;
902 struct zserv *client;
903 struct stream *s;
904 struct zebra_pbr_ipset ipset;
905 uint16_t cmd = ZEBRA_IPSET_NOTIFY_OWNER;
906
907 dplane_ctx_get_pbr_ipset(ctx, &ipset);
908
909 if (IS_ZEBRA_DEBUG_PACKET)
910 zlog_debug("%s: Notifying %s id %u note %u", __func__,
911 zserv_command_string(cmd), ipset.unique, note);
912
913 for (ALL_LIST_ELEMENTS_RO(zrouter.client_list, node, client)) {
914 if (ipset.sock == client->sock)
915 break;
916 }
917
918 if (!client)
919 return;
920
921 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
922
923 zclient_create_header(s, cmd, VRF_DEFAULT);
924 stream_putw(s, note);
925 stream_putl(s, ipset.unique);
926 stream_put(s, ipset.ipset_name, ZEBRA_IPSET_NAME_SIZE);
927 stream_putw_at(s, 0, stream_get_endp(s));
928
929 zserv_send_message(client, s);
930 }
931
932 void zsend_ipset_entry_notify_owner(const struct zebra_dplane_ctx *ctx,
933 enum zapi_ipset_entry_notify_owner note)
934 {
935 struct listnode *node;
936 struct zserv *client;
937 struct stream *s;
938 struct zebra_pbr_ipset_entry ipent;
939 struct zebra_pbr_ipset ipset;
940 uint16_t cmd = ZEBRA_IPSET_ENTRY_NOTIFY_OWNER;
941
942 dplane_ctx_get_pbr_ipset_entry(ctx, &ipent);
943 dplane_ctx_get_pbr_ipset(ctx, &ipset);
944
945 if (IS_ZEBRA_DEBUG_PACKET)
946 zlog_debug("%s: Notifying %s id %u note %u", __func__,
947 zserv_command_string(cmd), ipent.unique, note);
948
949 for (ALL_LIST_ELEMENTS_RO(zrouter.client_list, node, client)) {
950 if (ipent.sock == client->sock)
951 break;
952 }
953
954 if (!client)
955 return;
956
957 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
958
959 zclient_create_header(s, cmd, VRF_DEFAULT);
960 stream_putw(s, note);
961 stream_putl(s, ipent.unique);
962 stream_put(s, ipset.ipset_name, ZEBRA_IPSET_NAME_SIZE);
963 stream_putw_at(s, 0, stream_get_endp(s));
964
965 zserv_send_message(client, s);
966 }
967
968 void zsend_nhrp_neighbor_notify(int cmd, struct interface *ifp,
969 struct ipaddr *ipaddr, int ndm_state,
970 union sockunion *link_layer_ipv4)
971 {
972 struct stream *s;
973 struct listnode *node, *nnode;
974 struct zserv *client;
975 afi_t afi;
976 union sockunion ip;
977
978 if (IS_ZEBRA_DEBUG_PACKET)
979 zlog_debug("%s: Notifying Neighbor entry (%u)", __func__, cmd);
980
981 sockunion_family(&ip) = ipaddr_family(ipaddr);
982 afi = family2afi(sockunion_family(&ip));
983 memcpy((char *)sockunion_get_addr(&ip), &ipaddr->ip.addr,
984 family2addrsize(sockunion_family(&ip)));
985
986 for (ALL_LIST_ELEMENTS(zrouter.client_list, node, nnode, client)) {
987 if (!vrf_bitmap_check(client->nhrp_neighinfo[afi],
988 ifp->vrf->vrf_id))
989 continue;
990
991 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
992 zclient_neigh_ip_encode(s, cmd, &ip, link_layer_ipv4, ifp,
993 ndm_state);
994 stream_putw_at(s, 0, stream_get_endp(s));
995 zserv_send_message(client, s);
996 }
997 }
998
999
1000 /* Router-id is updated. Send ZEBRA_ROUTER_ID_UPDATE to client. */
1001 int zsend_router_id_update(struct zserv *client, afi_t afi, struct prefix *p,
1002 vrf_id_t vrf_id)
1003 {
1004 int blen;
1005 struct stream *s;
1006
1007 /* Check this client need interface information. */
1008 if (!vrf_bitmap_check(client->ridinfo[afi], vrf_id))
1009 return 0;
1010
1011 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
1012
1013 /* Message type. */
1014 zclient_create_header(s, ZEBRA_ROUTER_ID_UPDATE, vrf_id);
1015
1016 /* Prefix information. */
1017 stream_putc(s, p->family);
1018 blen = prefix_blen(p);
1019 stream_put(s, &p->u.prefix, blen);
1020 stream_putc(s, p->prefixlen);
1021
1022 /* Write packet size. */
1023 stream_putw_at(s, 0, stream_get_endp(s));
1024
1025 return zserv_send_message(client, s);
1026 }
1027
1028 /*
1029 * Function used by Zebra to send a PW status update to LDP daemon
1030 */
1031 int zsend_pw_update(struct zserv *client, struct zebra_pw *pw)
1032 {
1033 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
1034
1035 zclient_create_header(s, ZEBRA_PW_STATUS_UPDATE, pw->vrf_id);
1036 stream_write(s, pw->ifname, IF_NAMESIZE);
1037 stream_putl(s, pw->ifindex);
1038 stream_putl(s, pw->status);
1039
1040 /* Put length at the first point of the stream. */
1041 stream_putw_at(s, 0, stream_get_endp(s));
1042
1043 return zserv_send_message(client, s);
1044 }
1045
1046 /* Send response to a get label chunk request to client */
1047 int zsend_assign_label_chunk_response(struct zserv *client, vrf_id_t vrf_id,
1048 struct label_manager_chunk *lmc)
1049 {
1050 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
1051
1052 zclient_create_header(s, ZEBRA_GET_LABEL_CHUNK, vrf_id);
1053 /* proto */
1054 stream_putc(s, client->proto);
1055 /* instance */
1056 stream_putw(s, client->instance);
1057
1058 if (lmc) {
1059 /* keep */
1060 stream_putc(s, lmc->keep);
1061 /* start and end labels */
1062 stream_putl(s, lmc->start);
1063 stream_putl(s, lmc->end);
1064 }
1065
1066 /* Write packet size. */
1067 stream_putw_at(s, 0, stream_get_endp(s));
1068
1069 return zserv_send_message(client, s);
1070 }
1071
1072 /* Send response to a label manager connect request to client */
1073 int zsend_label_manager_connect_response(struct zserv *client, vrf_id_t vrf_id,
1074 unsigned short result)
1075 {
1076 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
1077
1078 zclient_create_header(s, ZEBRA_LABEL_MANAGER_CONNECT, vrf_id);
1079
1080 /* proto */
1081 stream_putc(s, client->proto);
1082
1083 /* instance */
1084 stream_putw(s, client->instance);
1085
1086 /* result */
1087 stream_putc(s, result);
1088
1089 /* Write packet size. */
1090 stream_putw_at(s, 0, stream_get_endp(s));
1091
1092 return zserv_send_message(client, s);
1093 }
1094
1095 /* Send response to a get table chunk request to client */
1096 static int zsend_assign_table_chunk_response(struct zserv *client,
1097 vrf_id_t vrf_id,
1098 struct table_manager_chunk *tmc)
1099 {
1100 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
1101
1102 zclient_create_header(s, ZEBRA_GET_TABLE_CHUNK, vrf_id);
1103
1104 if (tmc) {
1105 /* start and end labels */
1106 stream_putl(s, tmc->start);
1107 stream_putl(s, tmc->end);
1108 }
1109
1110 /* Write packet size. */
1111 stream_putw_at(s, 0, stream_get_endp(s));
1112
1113 return zserv_send_message(client, s);
1114 }
1115
1116 static int zsend_table_manager_connect_response(struct zserv *client,
1117 vrf_id_t vrf_id,
1118 uint16_t result)
1119 {
1120 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
1121
1122 zclient_create_header(s, ZEBRA_TABLE_MANAGER_CONNECT, vrf_id);
1123
1124 /* result */
1125 stream_putc(s, result);
1126
1127 stream_putw_at(s, 0, stream_get_endp(s));
1128
1129 return zserv_send_message(client, s);
1130 }
1131
1132 /* SRv6 locator add notification from zebra daemon. */
1133 int zsend_zebra_srv6_locator_add(struct zserv *client, struct srv6_locator *loc)
1134 {
1135 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
1136
1137 zclient_create_header(s, ZEBRA_SRV6_LOCATOR_ADD, VRF_DEFAULT);
1138 zapi_srv6_locator_encode(s, loc);
1139 stream_putw_at(s, 0, stream_get_endp(s));
1140
1141 return zserv_send_message(client, s);
1142 }
1143
1144 /* SRv6 locator delete notification from zebra daemon. */
1145 int zsend_zebra_srv6_locator_delete(struct zserv *client,
1146 struct srv6_locator *loc)
1147 {
1148 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
1149
1150 zclient_create_header(s, ZEBRA_SRV6_LOCATOR_DELETE, VRF_DEFAULT);
1151 zapi_srv6_locator_encode(s, loc);
1152 stream_putw_at(s, 0, stream_get_endp(s));
1153
1154 return zserv_send_message(client, s);
1155 }
1156
1157 /* Inbound message handling ------------------------------------------------ */
1158
1159 /* Nexthop register */
1160 static void zread_rnh_register(ZAPI_HANDLER_ARGS)
1161 {
1162 struct rnh *rnh;
1163 struct stream *s;
1164 struct prefix p;
1165 unsigned short l = 0;
1166 uint8_t connected = 0;
1167 uint8_t resolve_via_default;
1168 bool exist;
1169 bool flag_changed = false;
1170 uint8_t orig_flags;
1171 safi_t safi;
1172
1173 if (IS_ZEBRA_DEBUG_NHT)
1174 zlog_debug(
1175 "rnh_register msg from client %s: hdr->length=%d vrf=%u",
1176 zebra_route_string(client->proto), hdr->length,
1177 zvrf->vrf->vrf_id);
1178
1179 s = msg;
1180
1181 if (!client->nh_reg_time)
1182 client->nh_reg_time = monotime(NULL);
1183
1184 while (l < hdr->length) {
1185 STREAM_GETC(s, connected);
1186 STREAM_GETC(s, resolve_via_default);
1187 STREAM_GETW(s, safi);
1188 STREAM_GETW(s, p.family);
1189 STREAM_GETC(s, p.prefixlen);
1190 l += 7;
1191 if (p.family == AF_INET) {
1192 client->v4_nh_watch_add_cnt++;
1193 if (p.prefixlen > IPV4_MAX_BITLEN) {
1194 zlog_debug(
1195 "%s: Specified prefix hdr->length %d is too large for a v4 address",
1196 __func__, p.prefixlen);
1197 return;
1198 }
1199 STREAM_GET(&p.u.prefix4.s_addr, s, IPV4_MAX_BYTELEN);
1200 l += IPV4_MAX_BYTELEN;
1201 } else if (p.family == AF_INET6) {
1202 client->v6_nh_watch_add_cnt++;
1203 if (p.prefixlen > IPV6_MAX_BITLEN) {
1204 zlog_debug(
1205 "%s: Specified prefix hdr->length %d is to large for a v6 address",
1206 __func__, p.prefixlen);
1207 return;
1208 }
1209 STREAM_GET(&p.u.prefix6, s, IPV6_MAX_BYTELEN);
1210 l += IPV6_MAX_BYTELEN;
1211 } else {
1212 flog_err(
1213 EC_ZEBRA_UNKNOWN_FAMILY,
1214 "rnh_register: Received unknown family type %d",
1215 p.family);
1216 return;
1217 }
1218 rnh = zebra_add_rnh(&p, zvrf_id(zvrf), &exist);
1219 if (!rnh)
1220 return;
1221
1222 orig_flags = rnh->flags;
1223 if (connected && !CHECK_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED))
1224 SET_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED);
1225 else if (!connected
1226 && CHECK_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED))
1227 UNSET_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED);
1228
1229 if (resolve_via_default)
1230 SET_FLAG(rnh->flags, ZEBRA_NHT_RESOLVE_VIA_DEFAULT);
1231
1232 if (orig_flags != rnh->flags)
1233 flag_changed = true;
1234
1235 /* Anything not AF_INET/INET6 has been filtered out above */
1236 if (!exist || flag_changed)
1237 zebra_evaluate_rnh(zvrf, family2afi(p.family), 1, &p,
1238 safi);
1239
1240 zebra_add_rnh_client(rnh, client, zvrf_id(zvrf));
1241 }
1242
1243 stream_failure:
1244 return;
1245 }
1246
1247 /* Nexthop register */
1248 static void zread_rnh_unregister(ZAPI_HANDLER_ARGS)
1249 {
1250 struct rnh *rnh;
1251 struct stream *s;
1252 struct prefix p;
1253 unsigned short l = 0;
1254 safi_t safi;
1255
1256 if (IS_ZEBRA_DEBUG_NHT)
1257 zlog_debug(
1258 "rnh_unregister msg from client %s: hdr->length=%d vrf: %u",
1259 zebra_route_string(client->proto), hdr->length,
1260 zvrf->vrf->vrf_id);
1261
1262 s = msg;
1263
1264 while (l < hdr->length) {
1265 uint8_t ignore;
1266
1267 STREAM_GETC(s, ignore);
1268 if (ignore != 0)
1269 goto stream_failure;
1270 STREAM_GETC(s, ignore);
1271 if (ignore != 0)
1272 goto stream_failure;
1273
1274 STREAM_GETW(s, safi);
1275 STREAM_GETW(s, p.family);
1276 STREAM_GETC(s, p.prefixlen);
1277 l += 7;
1278 if (p.family == AF_INET) {
1279 client->v4_nh_watch_rem_cnt++;
1280 if (p.prefixlen > IPV4_MAX_BITLEN) {
1281 zlog_debug(
1282 "%s: Specified prefix hdr->length %d is to large for a v4 address",
1283 __func__, p.prefixlen);
1284 return;
1285 }
1286 STREAM_GET(&p.u.prefix4.s_addr, s, IPV4_MAX_BYTELEN);
1287 l += IPV4_MAX_BYTELEN;
1288 } else if (p.family == AF_INET6) {
1289 client->v6_nh_watch_rem_cnt++;
1290 if (p.prefixlen > IPV6_MAX_BITLEN) {
1291 zlog_debug(
1292 "%s: Specified prefix hdr->length %d is to large for a v6 address",
1293 __func__, p.prefixlen);
1294 return;
1295 }
1296 STREAM_GET(&p.u.prefix6, s, IPV6_MAX_BYTELEN);
1297 l += IPV6_MAX_BYTELEN;
1298 } else {
1299 flog_err(
1300 EC_ZEBRA_UNKNOWN_FAMILY,
1301 "rnh_register: Received unknown family type %d",
1302 p.family);
1303 return;
1304 }
1305 rnh = zebra_lookup_rnh(&p, zvrf_id(zvrf), safi);
1306 if (rnh) {
1307 client->nh_dereg_time = monotime(NULL);
1308 zebra_remove_rnh_client(rnh, client);
1309 }
1310 }
1311 stream_failure:
1312 return;
1313 }
1314
1315 #define ZEBRA_MIN_FEC_LENGTH 5
1316
1317 /* FEC register */
1318 static void zread_fec_register(ZAPI_HANDLER_ARGS)
1319 {
1320 struct stream *s;
1321 unsigned short l = 0;
1322 struct prefix p;
1323 uint16_t flags;
1324 uint32_t label = MPLS_INVALID_LABEL;
1325 uint32_t label_index = MPLS_INVALID_LABEL_INDEX;
1326
1327 s = msg;
1328 zvrf = vrf_info_lookup(VRF_DEFAULT);
1329 if (!zvrf)
1330 return;
1331
1332 /*
1333 * The minimum amount of data that can be sent for one fec
1334 * registration
1335 */
1336 if (hdr->length < ZEBRA_MIN_FEC_LENGTH) {
1337 flog_err(
1338 EC_ZEBRA_IRDP_LEN_MISMATCH,
1339 "fec_register: Received a fec register of hdr->length %d, it is of insufficient size to properly decode",
1340 hdr->length);
1341 return;
1342 }
1343
1344 while (l < hdr->length) {
1345 STREAM_GETW(s, flags);
1346 memset(&p, 0, sizeof(p));
1347 STREAM_GETW(s, p.family);
1348 if (p.family != AF_INET && p.family != AF_INET6) {
1349 flog_err(
1350 EC_ZEBRA_UNKNOWN_FAMILY,
1351 "fec_register: Received unknown family type %d",
1352 p.family);
1353 return;
1354 }
1355 STREAM_GETC(s, p.prefixlen);
1356 if ((p.family == AF_INET && p.prefixlen > IPV4_MAX_BITLEN)
1357 || (p.family == AF_INET6
1358 && p.prefixlen > IPV6_MAX_BITLEN)) {
1359 zlog_debug(
1360 "%s: Specified prefix hdr->length: %d is to long for %d",
1361 __func__, p.prefixlen, p.family);
1362 return;
1363 }
1364 l += 5;
1365 STREAM_GET(&p.u.prefix, s, PSIZE(p.prefixlen));
1366 l += PSIZE(p.prefixlen);
1367 if (flags & ZEBRA_FEC_REGISTER_LABEL) {
1368 STREAM_GETL(s, label);
1369 l += 4;
1370 } else if (flags & ZEBRA_FEC_REGISTER_LABEL_INDEX) {
1371 STREAM_GETL(s, label_index);
1372 l += 4;
1373 }
1374
1375 zebra_mpls_fec_register(zvrf, &p, label, label_index, client);
1376 }
1377
1378 stream_failure:
1379 return;
1380 }
1381
1382 /* FEC unregister */
1383 static void zread_fec_unregister(ZAPI_HANDLER_ARGS)
1384 {
1385 struct stream *s;
1386 unsigned short l = 0;
1387 struct prefix p;
1388 uint16_t flags;
1389
1390 s = msg;
1391 zvrf = vrf_info_lookup(VRF_DEFAULT);
1392 if (!zvrf)
1393 return;
1394
1395 /*
1396 * The minimum amount of data that can be sent for one
1397 * fec unregistration
1398 */
1399 if (hdr->length < ZEBRA_MIN_FEC_LENGTH) {
1400 flog_err(
1401 EC_ZEBRA_IRDP_LEN_MISMATCH,
1402 "fec_unregister: Received a fec unregister of hdr->length %d, it is of insufficient size to properly decode",
1403 hdr->length);
1404 return;
1405 }
1406
1407 while (l < hdr->length) {
1408 STREAM_GETW(s, flags);
1409 if (flags != 0)
1410 goto stream_failure;
1411
1412 memset(&p, 0, sizeof(p));
1413 STREAM_GETW(s, p.family);
1414 if (p.family != AF_INET && p.family != AF_INET6) {
1415 flog_err(
1416 EC_ZEBRA_UNKNOWN_FAMILY,
1417 "fec_unregister: Received unknown family type %d",
1418 p.family);
1419 return;
1420 }
1421 STREAM_GETC(s, p.prefixlen);
1422 if ((p.family == AF_INET && p.prefixlen > IPV4_MAX_BITLEN)
1423 || (p.family == AF_INET6
1424 && p.prefixlen > IPV6_MAX_BITLEN)) {
1425 zlog_debug(
1426 "%s: Received prefix hdr->length %d which is greater than %d can support",
1427 __func__, p.prefixlen, p.family);
1428 return;
1429 }
1430 l += 5;
1431 STREAM_GET(&p.u.prefix, s, PSIZE(p.prefixlen));
1432 l += PSIZE(p.prefixlen);
1433 zebra_mpls_fec_unregister(zvrf, &p, client);
1434 }
1435
1436 stream_failure:
1437 return;
1438 }
1439
1440
1441 /*
1442 * Register zebra server interface information.
1443 * Send current all interface and address information.
1444 */
1445 static void zread_interface_add(ZAPI_HANDLER_ARGS)
1446 {
1447 struct vrf *vrf;
1448 struct interface *ifp;
1449
1450 vrf_id_t vrf_id = zvrf_id(zvrf);
1451 if (vrf_id != VRF_DEFAULT && vrf_id != VRF_UNKNOWN) {
1452 FOR_ALL_INTERFACES (zvrf->vrf, ifp) {
1453 /* Skip pseudo interface. */
1454 if (!CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_ACTIVE))
1455 continue;
1456
1457 zsend_interface_add(client, ifp);
1458 zsend_interface_link_params(client, ifp);
1459 zsend_interface_addresses(client, ifp);
1460 }
1461 return;
1462 }
1463
1464 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
1465 FOR_ALL_INTERFACES (vrf, ifp) {
1466 /* Skip pseudo interface. */
1467 if (!CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_ACTIVE))
1468 continue;
1469
1470 zsend_interface_add(client, ifp);
1471 zsend_interface_link_params(client, ifp);
1472 zsend_interface_addresses(client, ifp);
1473 }
1474 }
1475 }
1476
1477 /* Unregister zebra server interface information. */
1478 static void zread_interface_delete(ZAPI_HANDLER_ARGS)
1479 {
1480 }
1481
1482 /*
1483 * Handle message requesting interface be set up or down.
1484 */
1485 static void zread_interface_set_protodown(ZAPI_HANDLER_ARGS)
1486 {
1487 ifindex_t ifindex;
1488 struct interface *ifp;
1489 char down;
1490
1491 STREAM_GETL(msg, ifindex);
1492 STREAM_GETC(msg, down);
1493
1494 /* set ifdown */
1495 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(NS_DEFAULT), ifindex);
1496
1497 if (ifp) {
1498 zlog_info("Setting interface %s (%u): protodown %s", ifp->name,
1499 ifindex, down ? "on" : "off");
1500 zebra_if_set_protodown(ifp, down);
1501 } else {
1502 zlog_warn(
1503 "Cannot set protodown %s for interface %u; does not exist",
1504 down ? "on" : "off", ifindex);
1505 }
1506
1507
1508 stream_failure:
1509 return;
1510 }
1511
1512 bool zserv_nexthop_num_warn(const char *caller, const struct prefix *p,
1513 const unsigned int nexthop_num)
1514 {
1515 if (nexthop_num > zrouter.multipath_num) {
1516 char buff[PREFIX2STR_BUFFER];
1517
1518 if (p)
1519 prefix2str(p, buff, sizeof(buff));
1520
1521 flog_warn(
1522 EC_ZEBRA_MORE_NH_THAN_MULTIPATH,
1523 "%s: Prefix %s has %d nexthops, but we can only use the first %d",
1524 caller, (p ? buff : "(NULL)"), nexthop_num,
1525 zrouter.multipath_num);
1526 return true;
1527 }
1528
1529 return false;
1530 }
1531
1532 /*
1533 * Create a new nexthop based on a zapi nexthop.
1534 */
1535 static struct nexthop *nexthop_from_zapi(const struct zapi_nexthop *api_nh,
1536 uint32_t flags, struct prefix *p,
1537 uint16_t backup_nexthop_num)
1538 {
1539 struct nexthop *nexthop = NULL;
1540 struct ipaddr vtep_ip;
1541 struct interface *ifp;
1542 int i;
1543 char nhbuf[INET6_ADDRSTRLEN] = "";
1544
1545 switch (api_nh->type) {
1546 case NEXTHOP_TYPE_IFINDEX:
1547 nexthop = nexthop_from_ifindex(api_nh->ifindex, api_nh->vrf_id);
1548 break;
1549 case NEXTHOP_TYPE_IPV4:
1550 if (IS_ZEBRA_DEBUG_RECV) {
1551 inet_ntop(AF_INET, &api_nh->gate.ipv4, nhbuf,
1552 sizeof(nhbuf));
1553 zlog_debug("%s: nh=%s, vrf_id=%d", __func__,
1554 nhbuf, api_nh->vrf_id);
1555 }
1556 nexthop = nexthop_from_ipv4(&api_nh->gate.ipv4, NULL,
1557 api_nh->vrf_id);
1558 break;
1559 case NEXTHOP_TYPE_IPV4_IFINDEX:
1560 if (IS_ZEBRA_DEBUG_RECV) {
1561 inet_ntop(AF_INET, &api_nh->gate.ipv4, nhbuf,
1562 sizeof(nhbuf));
1563 zlog_debug("%s: nh=%s, vrf_id=%d, ifindex=%d",
1564 __func__, nhbuf, api_nh->vrf_id,
1565 api_nh->ifindex);
1566 }
1567
1568 nexthop = nexthop_from_ipv4_ifindex(
1569 &api_nh->gate.ipv4, NULL, api_nh->ifindex,
1570 api_nh->vrf_id);
1571
1572 /* Special handling for IPv4 routes sourced from EVPN:
1573 * the nexthop and associated MAC need to be installed.
1574 */
1575 if (CHECK_FLAG(flags, ZEBRA_FLAG_EVPN_ROUTE)) {
1576 memset(&vtep_ip, 0, sizeof(struct ipaddr));
1577 vtep_ip.ipa_type = IPADDR_V4;
1578 memcpy(&(vtep_ip.ipaddr_v4), &(api_nh->gate.ipv4),
1579 sizeof(struct in_addr));
1580 zebra_vxlan_evpn_vrf_route_add(
1581 api_nh->vrf_id, &api_nh->rmac, &vtep_ip, p);
1582 }
1583 break;
1584 case NEXTHOP_TYPE_IPV6:
1585 if (IS_ZEBRA_DEBUG_RECV) {
1586 inet_ntop(AF_INET6, &api_nh->gate.ipv6, nhbuf,
1587 sizeof(nhbuf));
1588 zlog_debug("%s: nh=%s, vrf_id=%d", __func__,
1589 nhbuf, api_nh->vrf_id);
1590 }
1591 nexthop = nexthop_from_ipv6(&api_nh->gate.ipv6, api_nh->vrf_id);
1592 break;
1593 case NEXTHOP_TYPE_IPV6_IFINDEX:
1594 if (IS_ZEBRA_DEBUG_RECV) {
1595 inet_ntop(AF_INET6, &api_nh->gate.ipv6, nhbuf,
1596 sizeof(nhbuf));
1597 zlog_debug("%s: nh=%s, vrf_id=%d, ifindex=%d",
1598 __func__, nhbuf, api_nh->vrf_id,
1599 api_nh->ifindex);
1600 }
1601 nexthop = nexthop_from_ipv6_ifindex(&api_nh->gate.ipv6,
1602 api_nh->ifindex,
1603 api_nh->vrf_id);
1604
1605 /* Special handling for IPv6 routes sourced from EVPN:
1606 * the nexthop and associated MAC need to be installed.
1607 */
1608 if (CHECK_FLAG(flags, ZEBRA_FLAG_EVPN_ROUTE)) {
1609 memset(&vtep_ip, 0, sizeof(struct ipaddr));
1610 vtep_ip.ipa_type = IPADDR_V6;
1611 memcpy(&vtep_ip.ipaddr_v6, &(api_nh->gate.ipv6),
1612 sizeof(struct in6_addr));
1613 zebra_vxlan_evpn_vrf_route_add(
1614 api_nh->vrf_id, &api_nh->rmac, &vtep_ip, p);
1615 }
1616 break;
1617 case NEXTHOP_TYPE_BLACKHOLE:
1618 if (IS_ZEBRA_DEBUG_RECV)
1619 zlog_debug("%s: nh blackhole %d",
1620 __func__, api_nh->bh_type);
1621
1622 nexthop =
1623 nexthop_from_blackhole(api_nh->bh_type, api_nh->vrf_id);
1624 break;
1625 }
1626
1627 /* Return early if we couldn't process the zapi nexthop */
1628 if (nexthop == NULL) {
1629 goto done;
1630 }
1631
1632 /* Mark nexthop as onlink either if client has explicitly told us
1633 * to or if the nexthop is on an 'unnumbered' interface.
1634 */
1635 if (CHECK_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_ONLINK))
1636 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_ONLINK);
1637 else if (api_nh->type == NEXTHOP_TYPE_IPV4_IFINDEX) {
1638 ifp = if_lookup_by_index(api_nh->ifindex, api_nh->vrf_id);
1639 if (ifp && connected_is_unnumbered(ifp))
1640 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_ONLINK);
1641 }
1642
1643 if (CHECK_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_WEIGHT))
1644 nexthop->weight = api_nh->weight;
1645
1646 if (CHECK_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_HAS_BACKUP)) {
1647 /* Validate count */
1648 if (api_nh->backup_num > NEXTHOP_MAX_BACKUPS) {
1649 if (IS_ZEBRA_DEBUG_RECV || IS_ZEBRA_DEBUG_EVENT)
1650 zlog_debug("%s: invalid backup nh count %d",
1651 __func__, api_nh->backup_num);
1652 nexthop_free(nexthop);
1653 nexthop = NULL;
1654 goto done;
1655 }
1656
1657 /* Copy backup info */
1658 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_HAS_BACKUP);
1659 nexthop->backup_num = api_nh->backup_num;
1660
1661 for (i = 0; i < api_nh->backup_num; i++) {
1662 /* Validate backup index */
1663 if (api_nh->backup_idx[i] < backup_nexthop_num) {
1664 nexthop->backup_idx[i] = api_nh->backup_idx[i];
1665 } else {
1666 if (IS_ZEBRA_DEBUG_RECV || IS_ZEBRA_DEBUG_EVENT)
1667 zlog_debug("%s: invalid backup nh idx %d",
1668 __func__,
1669 api_nh->backup_idx[i]);
1670 nexthop_free(nexthop);
1671 nexthop = NULL;
1672 goto done;
1673 }
1674 }
1675 }
1676
1677 done:
1678 return nexthop;
1679 }
1680
1681 static bool zapi_read_nexthops(struct zserv *client, struct prefix *p,
1682 struct zapi_nexthop *nhops, uint32_t flags,
1683 uint32_t message, uint16_t nexthop_num,
1684 uint16_t backup_nh_num,
1685 struct nexthop_group **png,
1686 struct nhg_backup_info **pbnhg)
1687 {
1688 struct nexthop_group *ng = NULL;
1689 struct nhg_backup_info *bnhg = NULL;
1690 uint16_t i;
1691 struct nexthop *last_nh = NULL;
1692
1693 assert(!(png && pbnhg));
1694
1695 if (png)
1696 ng = nexthop_group_new();
1697
1698 if (pbnhg && backup_nh_num > 0) {
1699 if (IS_ZEBRA_DEBUG_RECV)
1700 zlog_debug("%s: adding %d backup nexthops", __func__,
1701 backup_nh_num);
1702
1703 bnhg = zebra_nhg_backup_alloc();
1704 }
1705
1706 /*
1707 * TBD should _all_ of the nexthop add operations use
1708 * api_nh->vrf_id instead of re->vrf_id ? I only changed
1709 * for cases NEXTHOP_TYPE_IPV4 and NEXTHOP_TYPE_IPV6.
1710 */
1711 for (i = 0; i < nexthop_num; i++) {
1712 struct nexthop *nexthop;
1713 enum lsp_types_t label_type;
1714 char nhbuf[NEXTHOP_STRLEN];
1715 char labelbuf[MPLS_LABEL_STRLEN];
1716 struct zapi_nexthop *api_nh = &nhops[i];
1717
1718 /* Convert zapi nexthop */
1719 nexthop = nexthop_from_zapi(api_nh, flags, p, backup_nh_num);
1720 if (!nexthop) {
1721 flog_warn(
1722 EC_ZEBRA_NEXTHOP_CREATION_FAILED,
1723 "%s: Nexthops Specified: %u(%u) but we failed to properly create one",
1724 __func__, nexthop_num, i);
1725 if (ng)
1726 nexthop_group_delete(&ng);
1727 if (bnhg)
1728 zebra_nhg_backup_free(&bnhg);
1729 return false;
1730 }
1731
1732 if (bnhg
1733 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_HAS_BACKUP)) {
1734 if (IS_ZEBRA_DEBUG_RECV) {
1735 nexthop2str(nexthop, nhbuf, sizeof(nhbuf));
1736 zlog_debug("%s: backup nh %s with BACKUP flag!",
1737 __func__, nhbuf);
1738 }
1739 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_HAS_BACKUP);
1740 nexthop->backup_num = 0;
1741 }
1742
1743 if (CHECK_FLAG(message, ZAPI_MESSAGE_SRTE)) {
1744 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_SRTE);
1745 nexthop->srte_color = api_nh->srte_color;
1746 }
1747
1748 /* MPLS labels for BGP-LU or Segment Routing */
1749 if (CHECK_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_LABEL)
1750 && api_nh->type != NEXTHOP_TYPE_IFINDEX
1751 && api_nh->type != NEXTHOP_TYPE_BLACKHOLE
1752 && api_nh->label_num > 0) {
1753
1754 label_type = lsp_type_from_re_type(client->proto);
1755 nexthop_add_labels(nexthop, label_type,
1756 api_nh->label_num,
1757 &api_nh->labels[0]);
1758 }
1759
1760 if (CHECK_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_SEG6LOCAL)
1761 && api_nh->type != NEXTHOP_TYPE_BLACKHOLE) {
1762 if (IS_ZEBRA_DEBUG_RECV)
1763 zlog_debug("%s: adding seg6local action %s",
1764 __func__,
1765 seg6local_action2str(
1766 api_nh->seg6local_action));
1767
1768 nexthop_add_srv6_seg6local(nexthop,
1769 api_nh->seg6local_action,
1770 &api_nh->seg6local_ctx);
1771 }
1772
1773 if (CHECK_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_SEG6)
1774 && api_nh->type != NEXTHOP_TYPE_BLACKHOLE) {
1775 if (IS_ZEBRA_DEBUG_RECV)
1776 zlog_debug("%s: adding seg6", __func__);
1777
1778 nexthop_add_srv6_seg6(nexthop, &api_nh->seg6_segs);
1779 }
1780
1781 if (IS_ZEBRA_DEBUG_RECV) {
1782 labelbuf[0] = '\0';
1783 nhbuf[0] = '\0';
1784
1785 nexthop2str(nexthop, nhbuf, sizeof(nhbuf));
1786
1787 if (nexthop->nh_label &&
1788 nexthop->nh_label->num_labels > 0) {
1789 mpls_label2str(nexthop->nh_label->num_labels,
1790 nexthop->nh_label->label,
1791 labelbuf, sizeof(labelbuf),
1792 false);
1793 }
1794
1795 zlog_debug("%s: nh=%s, vrf_id=%d %s",
1796 __func__, nhbuf, api_nh->vrf_id, labelbuf);
1797 }
1798
1799 if (ng) {
1800 /* Add new nexthop to temporary list. This list is
1801 * canonicalized - sorted - so that it can be hashed
1802 * later in route processing. We expect that the sender
1803 * has sent the list sorted, and the zapi client api
1804 * attempts to enforce that, so this should be
1805 * inexpensive - but it is necessary to support shared
1806 * nexthop-groups.
1807 */
1808 nexthop_group_add_sorted(ng, nexthop);
1809 }
1810 if (bnhg) {
1811 /* Note that the order of the backup nexthops is
1812 * significant, so we don't sort this list as we do the
1813 * primary nexthops, we just append.
1814 */
1815 if (last_nh)
1816 NEXTHOP_APPEND(last_nh, nexthop);
1817 else
1818 bnhg->nhe->nhg.nexthop = nexthop;
1819
1820 last_nh = nexthop;
1821 }
1822 }
1823
1824
1825 /* succesfully read, set caller pointers now */
1826 if (png)
1827 *png = ng;
1828
1829 if (pbnhg)
1830 *pbnhg = bnhg;
1831
1832 return true;
1833 }
1834
1835 static int zapi_nhg_decode(struct stream *s, int cmd, struct zapi_nhg *api_nhg)
1836 {
1837 uint16_t i;
1838 struct zapi_nexthop *znh;
1839
1840 STREAM_GETW(s, api_nhg->proto);
1841 STREAM_GETL(s, api_nhg->id);
1842
1843 if (cmd == ZEBRA_NHG_DEL)
1844 goto done;
1845
1846 /* Nexthops */
1847 STREAM_GETW(s, api_nhg->nexthop_num);
1848
1849 if (zserv_nexthop_num_warn(__func__, NULL, api_nhg->nexthop_num))
1850 return -1;
1851
1852 if (api_nhg->nexthop_num <= 0) {
1853 flog_warn(EC_ZEBRA_NEXTHOP_CREATION_FAILED,
1854 "%s: No nexthops sent", __func__);
1855 return -1;
1856 }
1857
1858 for (i = 0; i < api_nhg->nexthop_num; i++) {
1859 znh = &((api_nhg->nexthops)[i]);
1860
1861 if (zapi_nexthop_decode(s, znh, 0, 0) != 0) {
1862 flog_warn(EC_ZEBRA_NEXTHOP_CREATION_FAILED,
1863 "%s: Nexthop creation failed", __func__);
1864 return -1;
1865 }
1866 }
1867
1868 /* Backup Nexthops */
1869 STREAM_GETW(s, api_nhg->backup_nexthop_num);
1870
1871 if (zserv_nexthop_num_warn(__func__, NULL, api_nhg->backup_nexthop_num))
1872 return -1;
1873
1874 for (i = 0; i < api_nhg->backup_nexthop_num; i++) {
1875 znh = &((api_nhg->backup_nexthops)[i]);
1876
1877 if (zapi_nexthop_decode(s, znh, 0, 0) != 0) {
1878 flog_warn(EC_ZEBRA_NEXTHOP_CREATION_FAILED,
1879 "%s: Backup Nexthop creation failed",
1880 __func__);
1881 return -1;
1882 }
1883 }
1884
1885 done:
1886 return 0;
1887
1888 stream_failure:
1889 flog_warn(
1890 EC_ZEBRA_NEXTHOP_CREATION_FAILED,
1891 "%s: Nexthop Group decode failed with some sort of stream read failure",
1892 __func__);
1893 return -1;
1894 }
1895
1896 static void zread_nhg_del(ZAPI_HANDLER_ARGS)
1897 {
1898 struct stream *s;
1899 struct zapi_nhg api_nhg = {};
1900 struct nhg_hash_entry *nhe;
1901
1902 s = msg;
1903 if (zapi_nhg_decode(s, hdr->command, &api_nhg) < 0) {
1904 if (IS_ZEBRA_DEBUG_RECV)
1905 zlog_debug("%s: Unable to decode zapi_nhg sent",
1906 __func__);
1907 return;
1908 }
1909
1910 /*
1911 * Delete the received nhg id
1912 */
1913 nhe = zebra_nhg_proto_del(api_nhg.id, api_nhg.proto);
1914
1915 if (nhe) {
1916 zebra_nhg_decrement_ref(nhe);
1917 zsend_nhg_notify(api_nhg.proto, client->instance,
1918 client->session_id, api_nhg.id,
1919 ZAPI_NHG_REMOVED);
1920 } else
1921 zsend_nhg_notify(api_nhg.proto, client->instance,
1922 client->session_id, api_nhg.id,
1923 ZAPI_NHG_REMOVE_FAIL);
1924 }
1925
1926 static void zread_nhg_add(ZAPI_HANDLER_ARGS)
1927 {
1928 struct stream *s;
1929 struct zapi_nhg api_nhg = {};
1930 struct nexthop_group *nhg = NULL;
1931 struct nhg_backup_info *bnhg = NULL;
1932 struct nhg_hash_entry *nhe;
1933
1934 s = msg;
1935 if (zapi_nhg_decode(s, hdr->command, &api_nhg) < 0) {
1936 if (IS_ZEBRA_DEBUG_RECV)
1937 zlog_debug("%s: Unable to decode zapi_nhg sent",
1938 __func__);
1939 return;
1940 }
1941
1942 if ((!zapi_read_nexthops(client, NULL, api_nhg.nexthops, 0, 0,
1943 api_nhg.nexthop_num,
1944 api_nhg.backup_nexthop_num, &nhg, NULL))
1945 || (!zapi_read_nexthops(client, NULL, api_nhg.backup_nexthops, 0, 0,
1946 api_nhg.backup_nexthop_num,
1947 api_nhg.backup_nexthop_num, NULL, &bnhg))) {
1948
1949 flog_warn(EC_ZEBRA_NEXTHOP_CREATION_FAILED,
1950 "%s: Nexthop Group Creation failed", __func__);
1951
1952 /* Free any local allocations */
1953 nexthop_group_delete(&nhg);
1954 zebra_nhg_backup_free(&bnhg);
1955
1956 return;
1957 }
1958
1959 /* Create a temporary nhe */
1960 nhe = zebra_nhg_alloc();
1961 nhe->id = api_nhg.id;
1962 nhe->type = api_nhg.proto;
1963 nhe->zapi_instance = client->instance;
1964 nhe->zapi_session = client->session_id;
1965
1966 /* Take over the list(s) of nexthops */
1967 nhe->nhg.nexthop = nhg->nexthop;
1968 nhg->nexthop = NULL;
1969
1970 if (bnhg) {
1971 nhe->backup_info = bnhg;
1972 bnhg = NULL;
1973 }
1974
1975 /*
1976 * TODO:
1977 * Assume fully resolved for now and install.
1978 * Resolution is going to need some more work.
1979 */
1980
1981 /* Enqueue to workqueue for processing */
1982 rib_queue_nhe_add(nhe);
1983
1984 /* Free any local allocations */
1985 nexthop_group_delete(&nhg);
1986 zebra_nhg_backup_free(&bnhg);
1987
1988 }
1989
1990 static void zread_route_add(ZAPI_HANDLER_ARGS)
1991 {
1992 struct stream *s;
1993 struct zapi_route api;
1994 afi_t afi;
1995 struct prefix_ipv6 *src_p = NULL;
1996 struct route_entry *re;
1997 struct nexthop_group *ng = NULL;
1998 struct nhg_backup_info *bnhg = NULL;
1999 int ret;
2000 vrf_id_t vrf_id;
2001 struct nhg_hash_entry nhe;
2002
2003 s = msg;
2004 if (zapi_route_decode(s, &api) < 0) {
2005 if (IS_ZEBRA_DEBUG_RECV)
2006 zlog_debug("%s: Unable to decode zapi_route sent",
2007 __func__);
2008 return;
2009 }
2010
2011 vrf_id = zvrf_id(zvrf);
2012
2013 if (IS_ZEBRA_DEBUG_RECV)
2014 zlog_debug("%s: p=(%u:%u)%pFX, msg flags=0x%x, flags=0x%x",
2015 __func__, vrf_id, api.tableid, &api.prefix,
2016 (int)api.message, api.flags);
2017
2018 /* Allocate new route. */
2019 re = XCALLOC(MTYPE_RE, sizeof(struct route_entry));
2020 re->type = api.type;
2021 re->instance = api.instance;
2022 re->flags = api.flags;
2023 re->uptime = monotime(NULL);
2024 re->vrf_id = vrf_id;
2025
2026 if (api.tableid)
2027 re->table = api.tableid;
2028 else
2029 re->table = zvrf->table_id;
2030
2031 if (!CHECK_FLAG(api.message, ZAPI_MESSAGE_NHG)
2032 && (!CHECK_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP)
2033 || api.nexthop_num == 0)) {
2034 flog_warn(
2035 EC_ZEBRA_RX_ROUTE_NO_NEXTHOPS,
2036 "%s: received a route without nexthops for prefix %pFX from client %s",
2037 __func__, &api.prefix,
2038 zebra_route_string(client->proto));
2039
2040 XFREE(MTYPE_RE, re);
2041 return;
2042 }
2043
2044 /* Report misuse of the backup flag */
2045 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_BACKUP_NEXTHOPS)
2046 && api.backup_nexthop_num == 0) {
2047 if (IS_ZEBRA_DEBUG_RECV || IS_ZEBRA_DEBUG_EVENT)
2048 zlog_debug(
2049 "%s: client %s: BACKUP flag set but no backup nexthops, prefix %pFX",
2050 __func__, zebra_route_string(client->proto),
2051 &api.prefix);
2052 }
2053
2054 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_NHG))
2055 re->nhe_id = api.nhgid;
2056
2057 if (!re->nhe_id
2058 && (!zapi_read_nexthops(client, &api.prefix, api.nexthops,
2059 api.flags, api.message, api.nexthop_num,
2060 api.backup_nexthop_num, &ng, NULL)
2061 || !zapi_read_nexthops(client, &api.prefix, api.backup_nexthops,
2062 api.flags, api.message,
2063 api.backup_nexthop_num,
2064 api.backup_nexthop_num, NULL, &bnhg))) {
2065
2066 nexthop_group_delete(&ng);
2067 zebra_nhg_backup_free(&bnhg);
2068 XFREE(MTYPE_RE, re);
2069 return;
2070 }
2071
2072 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_DISTANCE))
2073 re->distance = api.distance;
2074 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_METRIC))
2075 re->metric = api.metric;
2076 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_TAG))
2077 re->tag = api.tag;
2078 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_MTU))
2079 re->mtu = api.mtu;
2080
2081 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_OPAQUE)) {
2082 re->opaque = XMALLOC(MTYPE_OPAQUE,
2083 sizeof(struct opaque) + api.opaque.length);
2084 re->opaque->length = api.opaque.length;
2085 memcpy(re->opaque->data, api.opaque.data, re->opaque->length);
2086 }
2087
2088 afi = family2afi(api.prefix.family);
2089 if (afi != AFI_IP6 && CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX)) {
2090 flog_warn(EC_ZEBRA_RX_SRCDEST_WRONG_AFI,
2091 "%s: Received SRC Prefix but afi is not v6",
2092 __func__);
2093 nexthop_group_delete(&ng);
2094 zebra_nhg_backup_free(&bnhg);
2095 XFREE(MTYPE_OPAQUE, re->opaque);
2096 XFREE(MTYPE_RE, re);
2097 return;
2098 }
2099 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX))
2100 src_p = &api.src_prefix;
2101
2102 if (api.safi != SAFI_UNICAST && api.safi != SAFI_MULTICAST) {
2103 flog_warn(EC_LIB_ZAPI_MISSMATCH,
2104 "%s: Received safi: %d but we can only accept UNICAST or MULTICAST",
2105 __func__, api.safi);
2106 nexthop_group_delete(&ng);
2107 zebra_nhg_backup_free(&bnhg);
2108 XFREE(MTYPE_OPAQUE, re->opaque);
2109 XFREE(MTYPE_RE, re);
2110 return;
2111 }
2112
2113 /*
2114 * If we have an ID, this proto owns the NHG it sent along with the
2115 * route, so we just send the ID into rib code with it.
2116 *
2117 * Havent figured out how to handle backup NHs with this yet, so lets
2118 * keep that separate.
2119 * Include backup info with the route. We use a temporary nhe here;
2120 * if this is a new/unknown nhe, a new copy will be allocated
2121 * and stored.
2122 */
2123 if (!re->nhe_id) {
2124 zebra_nhe_init(&nhe, afi, ng->nexthop);
2125 nhe.nhg.nexthop = ng->nexthop;
2126 nhe.backup_info = bnhg;
2127 }
2128 ret = rib_add_multipath_nhe(afi, api.safi, &api.prefix, src_p,
2129 re, &nhe);
2130
2131 /*
2132 * rib_add_multipath_nhe only fails in a couple spots
2133 * and in those spots we have not freed memory
2134 */
2135 if (ret == -1) {
2136 client->error_cnt++;
2137 XFREE(MTYPE_OPAQUE, re->opaque);
2138 XFREE(MTYPE_RE, re);
2139 }
2140
2141 /* At this point, these allocations are not needed: 're' has been
2142 * retained or freed, and if 're' still exists, it is using
2143 * a reference to a shared group object.
2144 */
2145 nexthop_group_delete(&ng);
2146 if (bnhg)
2147 zebra_nhg_backup_free(&bnhg);
2148
2149 /* Stats */
2150 switch (api.prefix.family) {
2151 case AF_INET:
2152 if (ret == 0)
2153 client->v4_route_add_cnt++;
2154 else if (ret == 1)
2155 client->v4_route_upd8_cnt++;
2156 break;
2157 case AF_INET6:
2158 if (ret == 0)
2159 client->v6_route_add_cnt++;
2160 else if (ret == 1)
2161 client->v6_route_upd8_cnt++;
2162 break;
2163 }
2164 }
2165
2166 void zapi_opaque_free(struct opaque *opaque)
2167 {
2168 XFREE(MTYPE_OPAQUE, opaque);
2169 }
2170
2171 static void zread_route_del(ZAPI_HANDLER_ARGS)
2172 {
2173 struct stream *s;
2174 struct zapi_route api;
2175 afi_t afi;
2176 struct prefix_ipv6 *src_p = NULL;
2177 uint32_t table_id;
2178
2179 s = msg;
2180 if (zapi_route_decode(s, &api) < 0)
2181 return;
2182
2183 afi = family2afi(api.prefix.family);
2184 if (afi != AFI_IP6 && CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX)) {
2185 flog_warn(EC_ZEBRA_RX_SRCDEST_WRONG_AFI,
2186 "%s: Received a src prefix while afi is not v6",
2187 __func__);
2188 return;
2189 }
2190 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX))
2191 src_p = &api.src_prefix;
2192
2193 if (api.tableid)
2194 table_id = api.tableid;
2195 else
2196 table_id = zvrf->table_id;
2197
2198 if (IS_ZEBRA_DEBUG_RECV)
2199 zlog_debug("%s: p=(%u:%u)%pFX, msg flags=0x%x, flags=0x%x",
2200 __func__, zvrf_id(zvrf), table_id, &api.prefix,
2201 (int)api.message, api.flags);
2202
2203 rib_delete(afi, api.safi, zvrf_id(zvrf), api.type, api.instance,
2204 api.flags, &api.prefix, src_p, NULL, 0, table_id, api.metric,
2205 api.distance, false);
2206
2207 /* Stats */
2208 switch (api.prefix.family) {
2209 case AF_INET:
2210 client->v4_route_del_cnt++;
2211 break;
2212 case AF_INET6:
2213 client->v6_route_del_cnt++;
2214 break;
2215 }
2216 }
2217
2218 /* MRIB Nexthop lookup for IPv4. */
2219 static void zread_ipv4_nexthop_lookup_mrib(ZAPI_HANDLER_ARGS)
2220 {
2221 struct in_addr addr;
2222 struct route_entry *re;
2223
2224 STREAM_GET(&addr.s_addr, msg, IPV4_MAX_BYTELEN);
2225 re = rib_match_ipv4_multicast(zvrf_id(zvrf), addr, NULL);
2226 zsend_ipv4_nexthop_lookup_mrib(client, addr, re, zvrf);
2227
2228 stream_failure:
2229 return;
2230 }
2231
2232 /* Register zebra server router-id information. Send current router-id */
2233 static void zread_router_id_add(ZAPI_HANDLER_ARGS)
2234 {
2235 afi_t afi;
2236 struct prefix p;
2237 struct prefix zero;
2238
2239 STREAM_GETW(msg, afi);
2240
2241 if (afi <= AFI_UNSPEC || afi >= AFI_MAX) {
2242 zlog_warn(
2243 "Invalid AFI %u while registering for router ID notifications",
2244 afi);
2245 goto stream_failure;
2246 }
2247
2248 /* Router-id information is needed. */
2249 vrf_bitmap_set(client->ridinfo[afi], zvrf_id(zvrf));
2250
2251 router_id_get(afi, &p, zvrf);
2252
2253 /*
2254 * If we have not officially setup a router-id let's not
2255 * tell the upper level protocol about it yet.
2256 */
2257 memset(&zero, 0, sizeof(zero));
2258 if ((p.family == AF_INET && p.u.prefix4.s_addr == INADDR_ANY)
2259 || (p.family == AF_INET6
2260 && memcmp(&p.u.prefix6, &zero.u.prefix6,
2261 sizeof(struct in6_addr))
2262 == 0))
2263 return;
2264
2265 zsend_router_id_update(client, afi, &p, zvrf_id(zvrf));
2266
2267 stream_failure:
2268 return;
2269 }
2270
2271 /* Unregister zebra server router-id information. */
2272 static void zread_router_id_delete(ZAPI_HANDLER_ARGS)
2273 {
2274 afi_t afi;
2275
2276 STREAM_GETW(msg, afi);
2277
2278 if (afi <= AFI_UNSPEC || afi >= AFI_MAX) {
2279 zlog_warn(
2280 "Invalid AFI %u while unregistering from router ID notifications",
2281 afi);
2282 goto stream_failure;
2283 }
2284
2285 vrf_bitmap_unset(client->ridinfo[afi], zvrf_id(zvrf));
2286
2287 stream_failure:
2288 return;
2289 }
2290
2291 static void zsend_capabilities(struct zserv *client, struct zebra_vrf *zvrf)
2292 {
2293 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
2294
2295 zclient_create_header(s, ZEBRA_CAPABILITIES, zvrf->vrf->vrf_id);
2296 stream_putl(s, vrf_get_backend());
2297 stream_putc(s, mpls_enabled);
2298 stream_putl(s, zrouter.multipath_num);
2299 stream_putc(s, zebra_mlag_get_role());
2300
2301 stream_putw_at(s, 0, stream_get_endp(s));
2302 zserv_send_message(client, s);
2303 }
2304
2305 void zsend_capabilities_all_clients(void)
2306 {
2307 struct listnode *node, *nnode;
2308 struct zebra_vrf *zvrf;
2309 struct zserv *client;
2310
2311 zvrf = vrf_info_lookup(VRF_DEFAULT);
2312 for (ALL_LIST_ELEMENTS(zrouter.client_list, node, nnode, client)) {
2313 /* Do not send unsolicited messages to synchronous clients. */
2314 if (client->synchronous)
2315 continue;
2316
2317 zsend_capabilities(client, zvrf);
2318 }
2319 }
2320
2321 /* Tie up route-type and client->sock */
2322 static void zread_hello(ZAPI_HANDLER_ARGS)
2323 {
2324 /* type of protocol (lib/zebra.h) */
2325 uint8_t proto;
2326 unsigned short instance;
2327 uint8_t notify;
2328 uint8_t synchronous;
2329 uint32_t session_id;
2330
2331 STREAM_GETC(msg, proto);
2332 STREAM_GETW(msg, instance);
2333 STREAM_GETL(msg, session_id);
2334 STREAM_GETC(msg, notify);
2335 STREAM_GETC(msg, synchronous);
2336 if (notify)
2337 client->notify_owner = true;
2338
2339 if (synchronous)
2340 client->synchronous = true;
2341
2342 /* accept only dynamic routing protocols */
2343 if ((proto < ZEBRA_ROUTE_MAX) && (proto > ZEBRA_ROUTE_CONNECT)) {
2344 zlog_notice(
2345 "client %d says hello and bids fair to announce only %s routes vrf=%u",
2346 client->sock, zebra_route_string(proto),
2347 zvrf->vrf->vrf_id);
2348 if (instance)
2349 zlog_notice("client protocol instance %d", instance);
2350
2351 client->proto = proto;
2352 client->instance = instance;
2353 client->session_id = session_id;
2354
2355 /* Graceful restart processing for client connect */
2356 zebra_gr_client_reconnect(client);
2357 }
2358
2359 if (!client->synchronous) {
2360 zsend_capabilities(client, zvrf);
2361 zebra_vrf_update_all(client);
2362 }
2363 stream_failure:
2364 return;
2365 }
2366
2367 /* Unregister all information in a VRF. */
2368 static void zread_vrf_unregister(ZAPI_HANDLER_ARGS)
2369 {
2370 int i;
2371 afi_t afi;
2372
2373 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
2374 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
2375 vrf_bitmap_unset(client->redist[afi][i], zvrf_id(zvrf));
2376 vrf_bitmap_unset(client->redist_default[afi], zvrf_id(zvrf));
2377 vrf_bitmap_unset(client->ridinfo[afi], zvrf_id(zvrf));
2378 vrf_bitmap_unset(client->nhrp_neighinfo[afi], zvrf_id(zvrf));
2379 }
2380 }
2381
2382 /*
2383 * Validate incoming zapi mpls lsp / labels message
2384 */
2385 static int zapi_labels_validate(const struct zapi_labels *zl)
2386 {
2387 int ret = -1;
2388 int i, j, idx;
2389 uint32_t bits[8];
2390 uint32_t ival;
2391 const struct zapi_nexthop *znh;
2392
2393 /* Validate backup info: no duplicates for a single primary */
2394 if (zl->backup_nexthop_num == 0) {
2395 ret = 0;
2396 goto done;
2397 }
2398
2399 for (j = 0; j < zl->nexthop_num; j++) {
2400 znh = &zl->nexthops[j];
2401
2402 memset(bits, 0, sizeof(bits));
2403
2404 for (i = 0; i < znh->backup_num; i++) {
2405 idx = znh->backup_idx[i] / 32;
2406
2407 ival = 1 << znh->backup_idx[i] % 32;
2408
2409 /* Check whether value is already used */
2410 if (ival & bits[idx]) {
2411 /* Fail */
2412
2413 if (IS_ZEBRA_DEBUG_RECV)
2414 zlog_debug("%s: invalid zapi mpls message: duplicate backup nexthop index %d",
2415 __func__,
2416 znh->backup_idx[i]);
2417 goto done;
2418 }
2419
2420 /* Mark index value */
2421 bits[idx] |= ival;
2422 }
2423 }
2424
2425 ret = 0;
2426
2427 done:
2428
2429 return ret;
2430 }
2431
2432 /*
2433 * Handle request to create an MPLS LSP.
2434 *
2435 * A single message can fully specify an LSP with multiple nexthops.
2436 *
2437 * When the optional ZAPI_LABELS_FTN flag is set, the specified FEC (route) is
2438 * updated to use the received label(s).
2439 */
2440 static void zread_mpls_labels_add(ZAPI_HANDLER_ARGS)
2441 {
2442 struct stream *s;
2443 struct zapi_labels zl;
2444 int ret;
2445
2446 /* Get input stream. */
2447 s = msg;
2448 if (zapi_labels_decode(s, &zl) < 0) {
2449 if (IS_ZEBRA_DEBUG_RECV)
2450 zlog_debug("%s: Unable to decode zapi_labels sent",
2451 __func__);
2452 return;
2453 }
2454
2455 if (!mpls_enabled)
2456 return;
2457
2458 /* Validate; will debug on failure */
2459 if (zapi_labels_validate(&zl) < 0)
2460 return;
2461
2462 ret = mpls_zapi_labels_process(true, zvrf, &zl);
2463 if (ret < 0) {
2464 if (IS_ZEBRA_DEBUG_RECV)
2465 zlog_debug("%s: Error processing zapi request",
2466 __func__);
2467 }
2468 }
2469
2470 /*
2471 * Handle request to delete an MPLS LSP.
2472 *
2473 * An LSP is identified by its type and local label. When the received message
2474 * doesn't contain any nexthop, the whole LSP is deleted. Otherwise, only the
2475 * listed LSP nexthops (aka NHLFEs) are deleted.
2476 *
2477 * When the optional ZAPI_LABELS_FTN flag is set, the labels of the specified
2478 * FEC (route) nexthops are deleted.
2479 */
2480 static void zread_mpls_labels_delete(ZAPI_HANDLER_ARGS)
2481 {
2482 struct stream *s;
2483 struct zapi_labels zl;
2484 int ret;
2485
2486 /* Get input stream. */
2487 s = msg;
2488 if (zapi_labels_decode(s, &zl) < 0) {
2489 if (IS_ZEBRA_DEBUG_RECV)
2490 zlog_debug("%s: Unable to decode zapi_labels sent",
2491 __func__);
2492 return;
2493 }
2494
2495 if (!mpls_enabled)
2496 return;
2497
2498 if (zl.nexthop_num > 0) {
2499 ret = mpls_zapi_labels_process(false /*delete*/, zvrf, &zl);
2500 if (ret < 0) {
2501 if (IS_ZEBRA_DEBUG_RECV)
2502 zlog_debug("%s: Error processing zapi request",
2503 __func__);
2504 }
2505 } else {
2506 mpls_lsp_uninstall_all_vrf(zvrf, zl.type, zl.local_label);
2507
2508 if (CHECK_FLAG(zl.message, ZAPI_LABELS_FTN))
2509 mpls_ftn_uninstall(zvrf, zl.type, &zl.route.prefix,
2510 zl.route.type, zl.route.instance);
2511 }
2512 }
2513
2514 /*
2515 * Handle request to add an MPLS LSP or change an existing one.
2516 *
2517 * A single message can fully specify an LSP with multiple nexthops.
2518 *
2519 * When the optional ZAPI_LABELS_FTN flag is set, the specified FEC (route) is
2520 * updated to use the received label(s).
2521 *
2522 * NOTE: zebra will use route replace semantics (make-before-break) to update
2523 * the LSP in the forwarding plane if that's supported by the underlying
2524 * platform.
2525 */
2526 static void zread_mpls_labels_replace(ZAPI_HANDLER_ARGS)
2527 {
2528 struct stream *s;
2529 struct zapi_labels zl;
2530
2531 /* Get input stream. */
2532 s = msg;
2533 if (zapi_labels_decode(s, &zl) < 0) {
2534 if (IS_ZEBRA_DEBUG_RECV)
2535 zlog_debug("%s: Unable to decode zapi_labels sent",
2536 __func__);
2537 return;
2538 }
2539
2540 if (!mpls_enabled)
2541 return;
2542
2543 /* Validate; will debug on failure */
2544 if (zapi_labels_validate(&zl) < 0)
2545 return;
2546
2547 /* This removes everything, then re-adds from the client's
2548 * zapi message. Since the LSP will be processed later, on this
2549 * this same pthread, all of the changes will 'appear' at once.
2550 */
2551 mpls_lsp_uninstall_all_vrf(zvrf, zl.type, zl.local_label);
2552 if (CHECK_FLAG(zl.message, ZAPI_LABELS_FTN))
2553 mpls_ftn_uninstall(zvrf, zl.type, &zl.route.prefix,
2554 zl.route.type, zl.route.instance);
2555
2556 mpls_zapi_labels_process(true, zvrf, &zl);
2557 }
2558
2559 static void zread_sr_policy_set(ZAPI_HANDLER_ARGS)
2560 {
2561 struct stream *s;
2562 struct zapi_sr_policy zp;
2563 struct zapi_srte_tunnel *zt;
2564 struct zebra_sr_policy *policy;
2565
2566 /* Get input stream. */
2567 s = msg;
2568 if (zapi_sr_policy_decode(s, &zp) < 0) {
2569 if (IS_ZEBRA_DEBUG_RECV)
2570 zlog_debug("%s: Unable to decode zapi_sr_policy sent",
2571 __func__);
2572 return;
2573 }
2574 zt = &zp.segment_list;
2575 if (zt->label_num < 1) {
2576 if (IS_ZEBRA_DEBUG_RECV)
2577 zlog_debug(
2578 "%s: SR-TE tunnel must contain at least one label",
2579 __func__);
2580 return;
2581 }
2582
2583 if (!mpls_enabled)
2584 return;
2585
2586 policy = zebra_sr_policy_find(zp.color, &zp.endpoint);
2587 if (!policy)
2588 policy = zebra_sr_policy_add(zp.color, &zp.endpoint, zp.name);
2589 /* TODO: per-VRF list of SR-TE policies. */
2590 policy->zvrf = zvrf;
2591
2592 zebra_sr_policy_validate(policy, &zp.segment_list);
2593 }
2594
2595 static void zread_sr_policy_delete(ZAPI_HANDLER_ARGS)
2596 {
2597 struct stream *s;
2598 struct zapi_sr_policy zp;
2599 struct zebra_sr_policy *policy;
2600
2601 /* Get input stream. */
2602 s = msg;
2603 if (zapi_sr_policy_decode(s, &zp) < 0) {
2604 if (IS_ZEBRA_DEBUG_RECV)
2605 zlog_debug("%s: Unable to decode zapi_sr_policy sent",
2606 __func__);
2607 return;
2608 }
2609
2610 if (!mpls_enabled)
2611 return;
2612
2613 policy = zebra_sr_policy_find(zp.color, &zp.endpoint);
2614 if (!policy) {
2615 if (IS_ZEBRA_DEBUG_RECV)
2616 zlog_debug("%s: Unable to find SR-TE policy", __func__);
2617 return;
2618 }
2619
2620 zebra_sr_policy_del(policy);
2621 }
2622
2623 int zsend_sr_policy_notify_status(uint32_t color, struct ipaddr *endpoint,
2624 char *name, int status)
2625 {
2626 struct zserv *client;
2627 struct stream *s;
2628
2629 client = zserv_find_client(ZEBRA_ROUTE_SRTE, 0);
2630 if (!client) {
2631 if (IS_ZEBRA_DEBUG_PACKET)
2632 zlog_debug(
2633 "Not notifying pathd about policy %s"
2634 " status change to %d",
2635 name, status);
2636 return 0;
2637 }
2638
2639 if (IS_ZEBRA_DEBUG_PACKET)
2640 zlog_debug(
2641 "Notifying pathd about policy %s status change"
2642 " to %d",
2643 name, status);
2644
2645 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
2646 stream_reset(s);
2647
2648 zclient_create_header(s, ZEBRA_SR_POLICY_NOTIFY_STATUS, VRF_DEFAULT);
2649 stream_putl(s, color);
2650 stream_put_ipaddr(s, endpoint);
2651 stream_write(s, name, SRTE_POLICY_NAME_MAX_LENGTH);
2652 stream_putl(s, status);
2653
2654 stream_putw_at(s, 0, stream_get_endp(s));
2655
2656 return zserv_send_message(client, s);
2657 }
2658
2659 /* Send client close notify to client */
2660 int zsend_client_close_notify(struct zserv *client, struct zserv *closed_client)
2661 {
2662 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
2663
2664 zclient_create_header(s, ZEBRA_CLIENT_CLOSE_NOTIFY, VRF_DEFAULT);
2665
2666 stream_putc(s, closed_client->proto);
2667 stream_putw(s, closed_client->instance);
2668 stream_putl(s, closed_client->session_id);
2669
2670 stream_putw_at(s, 0, stream_get_endp(s));
2671
2672 return zserv_send_message(client, s);
2673 }
2674
2675 int zsend_srv6_manager_get_locator_chunk_response(struct zserv *client,
2676 vrf_id_t vrf_id,
2677 struct srv6_locator *loc)
2678 {
2679 struct srv6_locator_chunk chunk = {};
2680 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
2681
2682 strlcpy(chunk.locator_name, loc->name, sizeof(chunk.locator_name));
2683 chunk.prefix = loc->prefix;
2684 chunk.block_bits_length = loc->block_bits_length;
2685 chunk.node_bits_length = loc->node_bits_length;
2686 chunk.function_bits_length = loc->function_bits_length;
2687 chunk.argument_bits_length = loc->argument_bits_length;
2688 chunk.keep = 0;
2689 chunk.proto = client->proto;
2690 chunk.instance = client->instance;
2691
2692 zclient_create_header(s, ZEBRA_SRV6_MANAGER_GET_LOCATOR_CHUNK, vrf_id);
2693 zapi_srv6_locator_chunk_encode(s, &chunk);
2694 stream_putw_at(s, 0, stream_get_endp(s));
2695 return zserv_send_message(client, s);
2696 }
2697
2698 /* Send response to a table manager connect request to client */
2699 static void zread_table_manager_connect(struct zserv *client,
2700 struct stream *msg, vrf_id_t vrf_id)
2701 {
2702 struct stream *s;
2703 uint8_t proto;
2704 uint16_t instance;
2705 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
2706
2707 s = msg;
2708
2709 /* Get data. */
2710 STREAM_GETC(s, proto);
2711 STREAM_GETW(s, instance);
2712
2713 /* accept only dynamic routing protocols */
2714 if ((proto >= ZEBRA_ROUTE_MAX) || (proto <= ZEBRA_ROUTE_STATIC)) {
2715 flog_err(EC_ZEBRA_TM_WRONG_PROTO,
2716 "client %d has wrong protocol %s", client->sock,
2717 zebra_route_string(proto));
2718 zsend_table_manager_connect_response(client, vrf_id, 1);
2719 return;
2720 }
2721 zlog_notice("client %d with vrf %s(%u) instance %u connected as %s",
2722 client->sock, VRF_LOGNAME(vrf), vrf_id, instance,
2723 zebra_route_string(proto));
2724 client->proto = proto;
2725 client->instance = instance;
2726
2727 /*
2728 * Release previous labels of same protocol and instance.
2729 * This is done in case it restarted from an unexpected shutdown.
2730 */
2731 release_daemon_table_chunks(client);
2732
2733 zsend_table_manager_connect_response(client, vrf_id, 0);
2734
2735 stream_failure:
2736 return;
2737 }
2738
2739 static void zread_label_manager_connect(struct zserv *client,
2740 struct stream *msg, vrf_id_t vrf_id)
2741 {
2742 struct stream *s;
2743 /* type of protocol (lib/zebra.h) */
2744 uint8_t proto;
2745 unsigned short instance;
2746
2747 /* Get input stream. */
2748 s = msg;
2749
2750 /* Get data. */
2751 STREAM_GETC(s, proto);
2752 STREAM_GETW(s, instance);
2753
2754 /* accept only dynamic routing protocols */
2755 if ((proto >= ZEBRA_ROUTE_MAX) || (proto <= ZEBRA_ROUTE_STATIC)) {
2756 flog_err(EC_ZEBRA_TM_WRONG_PROTO,
2757 "client %d has wrong protocol %s", client->sock,
2758 zebra_route_string(proto));
2759 zsend_label_manager_connect_response(client, vrf_id, 1);
2760 return;
2761 }
2762
2763 /* recall proto and instance in this socket */
2764 client->proto = proto;
2765 client->instance = instance;
2766
2767 /* call hook for connection using wrapper */
2768 lm_client_connect_call(client, vrf_id);
2769
2770 stream_failure:
2771 return;
2772 }
2773
2774 static void zread_get_label_chunk(struct zserv *client, struct stream *msg,
2775 vrf_id_t vrf_id)
2776 {
2777 struct stream *s;
2778 uint8_t keep;
2779 uint32_t size, base;
2780 struct label_manager_chunk *lmc = NULL;
2781 uint8_t proto;
2782 unsigned short instance;
2783
2784 /* Get input stream. */
2785 s = msg;
2786
2787 /* Get data. */
2788 STREAM_GETC(s, proto);
2789 STREAM_GETW(s, instance);
2790 STREAM_GETC(s, keep);
2791 STREAM_GETL(s, size);
2792 STREAM_GETL(s, base);
2793
2794 assert(proto == client->proto && instance == client->instance);
2795
2796 /* call hook to get a chunk using wrapper */
2797 lm_get_chunk_call(&lmc, client, keep, size, base, vrf_id);
2798
2799 stream_failure:
2800 return;
2801 }
2802
2803 static void zread_release_label_chunk(struct zserv *client, struct stream *msg)
2804 {
2805 struct stream *s;
2806 uint32_t start, end;
2807 uint8_t proto;
2808 unsigned short instance;
2809
2810 /* Get input stream. */
2811 s = msg;
2812
2813 /* Get data. */
2814 STREAM_GETC(s, proto);
2815 STREAM_GETW(s, instance);
2816 STREAM_GETL(s, start);
2817 STREAM_GETL(s, end);
2818
2819 assert(proto == client->proto && instance == client->instance);
2820
2821 /* call hook to release a chunk using wrapper */
2822 lm_release_chunk_call(client, start, end);
2823
2824 stream_failure:
2825 return;
2826 }
2827
2828 static void zread_label_manager_request(ZAPI_HANDLER_ARGS)
2829 {
2830 if (hdr->command == ZEBRA_LABEL_MANAGER_CONNECT
2831 || hdr->command == ZEBRA_LABEL_MANAGER_CONNECT_ASYNC)
2832 zread_label_manager_connect(client, msg, zvrf_id(zvrf));
2833 else {
2834 if (hdr->command == ZEBRA_GET_LABEL_CHUNK)
2835 zread_get_label_chunk(client, msg, zvrf_id(zvrf));
2836 else if (hdr->command == ZEBRA_RELEASE_LABEL_CHUNK)
2837 zread_release_label_chunk(client, msg);
2838 }
2839 }
2840
2841 static void zread_get_table_chunk(struct zserv *client, struct stream *msg,
2842 struct zebra_vrf *zvrf)
2843 {
2844 struct stream *s;
2845 uint32_t size;
2846 struct table_manager_chunk *tmc;
2847
2848 /* Get input stream. */
2849 s = msg;
2850
2851 /* Get data. */
2852 STREAM_GETL(s, size);
2853
2854 tmc = assign_table_chunk(client->proto, client->instance, size, zvrf);
2855 if (!tmc)
2856 flog_err(EC_ZEBRA_TM_CANNOT_ASSIGN_CHUNK,
2857 "%s: Unable to assign Table Chunk of size %u",
2858 __func__, size);
2859 else
2860 zlog_debug("Assigned Table Chunk %u - %u", tmc->start,
2861 tmc->end);
2862 /* send response back */
2863 zsend_assign_table_chunk_response(client, zvrf_id(zvrf), tmc);
2864
2865 stream_failure:
2866 return;
2867 }
2868
2869 static void zread_release_table_chunk(struct zserv *client, struct stream *msg,
2870 struct zebra_vrf *zvrf)
2871 {
2872 struct stream *s;
2873 uint32_t start, end;
2874
2875 /* Get input stream. */
2876 s = msg;
2877
2878 /* Get data. */
2879 STREAM_GETL(s, start);
2880 STREAM_GETL(s, end);
2881
2882 release_table_chunk(client->proto, client->instance, start, end, zvrf);
2883
2884 stream_failure:
2885 return;
2886 }
2887
2888 static void zread_table_manager_request(ZAPI_HANDLER_ARGS)
2889 {
2890 /* to avoid sending other messages like ZEBRA_INTERFACE_UP */
2891 if (hdr->command == ZEBRA_TABLE_MANAGER_CONNECT)
2892 zread_table_manager_connect(client, msg, zvrf_id(zvrf));
2893 else {
2894 /* Sanity: don't allow 'unidentified' requests */
2895 if (!client->proto) {
2896 flog_err(
2897 EC_ZEBRA_TM_ALIENS,
2898 "Got SRv6 request from an unidentified client");
2899 return;
2900 }
2901 if (hdr->command == ZEBRA_GET_TABLE_CHUNK)
2902 zread_get_table_chunk(client, msg, zvrf);
2903 else if (hdr->command == ZEBRA_RELEASE_TABLE_CHUNK)
2904 zread_release_table_chunk(client, msg, zvrf);
2905 }
2906 }
2907
2908 static void zread_srv6_manager_get_locator_chunk(struct zserv *client,
2909 struct stream *msg,
2910 vrf_id_t vrf_id)
2911 {
2912 struct stream *s = msg;
2913 uint16_t len;
2914 char locator_name[SRV6_LOCNAME_SIZE] = {0};
2915
2916 /* Get data. */
2917 STREAM_GETW(s, len);
2918 STREAM_GET(locator_name, s, len);
2919
2920 /* call hook to get a chunk using wrapper */
2921 struct srv6_locator *loc = NULL;
2922 srv6_manager_get_locator_chunk_call(&loc, client, locator_name, vrf_id);
2923
2924 stream_failure:
2925 return;
2926 }
2927
2928 static void zread_srv6_manager_release_locator_chunk(struct zserv *client,
2929 struct stream *msg,
2930 vrf_id_t vrf_id)
2931 {
2932 struct stream *s = msg;
2933 uint16_t len;
2934 char locator_name[SRV6_LOCNAME_SIZE] = {0};
2935
2936 /* Get data. */
2937 STREAM_GETW(s, len);
2938 STREAM_GET(locator_name, s, len);
2939
2940 /* call hook to release a chunk using wrapper */
2941 srv6_manager_release_locator_chunk_call(client, locator_name, vrf_id);
2942
2943 stream_failure:
2944 return;
2945 }
2946
2947 static void zread_srv6_manager_request(ZAPI_HANDLER_ARGS)
2948 {
2949 switch (hdr->command) {
2950 case ZEBRA_SRV6_MANAGER_GET_LOCATOR_CHUNK:
2951 zread_srv6_manager_get_locator_chunk(client, msg,
2952 zvrf_id(zvrf));
2953 break;
2954 case ZEBRA_SRV6_MANAGER_RELEASE_LOCATOR_CHUNK:
2955 zread_srv6_manager_release_locator_chunk(client, msg,
2956 zvrf_id(zvrf));
2957 break;
2958 default:
2959 zlog_err("%s: unknown SRv6 Manager command", __func__);
2960 break;
2961 }
2962 }
2963
2964 static void zread_pseudowire(ZAPI_HANDLER_ARGS)
2965 {
2966 struct stream *s;
2967 char ifname[IF_NAMESIZE];
2968 ifindex_t ifindex;
2969 int type;
2970 int af;
2971 union g_addr nexthop;
2972 uint32_t local_label;
2973 uint32_t remote_label;
2974 uint8_t flags;
2975 union pw_protocol_fields data;
2976 uint8_t protocol;
2977 struct zebra_pw *pw;
2978
2979 /* Get input stream. */
2980 s = msg;
2981
2982 /* Get data. */
2983 STREAM_GET(ifname, s, IF_NAMESIZE);
2984 ifname[IF_NAMESIZE - 1] = '\0';
2985 STREAM_GETL(s, ifindex);
2986 STREAM_GETL(s, type);
2987 STREAM_GETL(s, af);
2988 switch (af) {
2989 case AF_INET:
2990 STREAM_GET(&nexthop.ipv4.s_addr, s, IPV4_MAX_BYTELEN);
2991 break;
2992 case AF_INET6:
2993 STREAM_GET(&nexthop.ipv6, s, 16);
2994 break;
2995 default:
2996 return;
2997 }
2998 STREAM_GETL(s, local_label);
2999 STREAM_GETL(s, remote_label);
3000 STREAM_GETC(s, flags);
3001 STREAM_GET(&data, s, sizeof(data));
3002 protocol = client->proto;
3003
3004 pw = zebra_pw_find(zvrf, ifname);
3005 switch (hdr->command) {
3006 case ZEBRA_PW_ADD:
3007 if (pw) {
3008 flog_warn(EC_ZEBRA_PSEUDOWIRE_EXISTS,
3009 "%s: pseudowire %s already exists [%s]",
3010 __func__, ifname,
3011 zserv_command_string(hdr->command));
3012 return;
3013 }
3014
3015 zebra_pw_add(zvrf, ifname, protocol, client);
3016 break;
3017 case ZEBRA_PW_DELETE:
3018 if (!pw) {
3019 flog_warn(EC_ZEBRA_PSEUDOWIRE_NONEXISTENT,
3020 "%s: pseudowire %s not found [%s]", __func__,
3021 ifname, zserv_command_string(hdr->command));
3022 return;
3023 }
3024
3025 zebra_pw_del(zvrf, pw);
3026 break;
3027 case ZEBRA_PW_SET:
3028 case ZEBRA_PW_UNSET:
3029 if (!pw) {
3030 flog_warn(EC_ZEBRA_PSEUDOWIRE_NONEXISTENT,
3031 "%s: pseudowire %s not found [%s]", __func__,
3032 ifname, zserv_command_string(hdr->command));
3033 return;
3034 }
3035
3036 switch (hdr->command) {
3037 case ZEBRA_PW_SET:
3038 pw->enabled = 1;
3039 break;
3040 case ZEBRA_PW_UNSET:
3041 pw->enabled = 0;
3042 break;
3043 }
3044
3045 zebra_pw_change(pw, ifindex, type, af, &nexthop, local_label,
3046 remote_label, flags, &data);
3047 break;
3048 }
3049
3050 stream_failure:
3051 return;
3052 }
3053
3054 static void zread_interface_set_master(ZAPI_HANDLER_ARGS)
3055 {
3056 struct interface *master;
3057 struct interface *slave;
3058 struct stream *s = msg;
3059 int ifindex;
3060 vrf_id_t vrf_id;
3061
3062 STREAM_GETL(s, vrf_id);
3063 STREAM_GETL(s, ifindex);
3064 master = if_lookup_by_index(ifindex, vrf_id);
3065
3066 STREAM_GETL(s, vrf_id);
3067 STREAM_GETL(s, ifindex);
3068 slave = if_lookup_by_index(ifindex, vrf_id);
3069
3070 if (!master || !slave)
3071 return;
3072
3073 kernel_interface_set_master(master, slave);
3074
3075 stream_failure:
3076 return;
3077 }
3078
3079
3080 static void zread_vrf_label(ZAPI_HANDLER_ARGS)
3081 {
3082 struct interface *ifp;
3083 mpls_label_t nlabel;
3084 afi_t afi;
3085 struct stream *s;
3086 struct zebra_vrf *def_zvrf;
3087 enum lsp_types_t ltype;
3088
3089 s = msg;
3090 STREAM_GETL(s, nlabel);
3091 STREAM_GETC(s, afi);
3092
3093 if (!(IS_VALID_AFI(afi))) {
3094 zlog_warn("Invalid AFI for VRF label: %u", afi);
3095 return;
3096 }
3097
3098 if (nlabel == zvrf->label[afi]) {
3099 /*
3100 * Nothing to do here move along
3101 */
3102 return;
3103 }
3104
3105 STREAM_GETC(s, ltype);
3106
3107 if (zvrf->vrf->vrf_id != VRF_DEFAULT)
3108 ifp = if_lookup_by_name(zvrf->vrf->name, zvrf->vrf->vrf_id);
3109 else
3110 ifp = if_lookup_by_name("lo", VRF_DEFAULT);
3111
3112 if (!ifp) {
3113 zlog_debug("Unable to find specified Interface for %s",
3114 zvrf->vrf->name);
3115 return;
3116 }
3117
3118 def_zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT);
3119
3120 if (zvrf->label[afi] != MPLS_LABEL_NONE) {
3121 afi_t scrubber;
3122 bool really_remove;
3123
3124 really_remove = true;
3125 for (scrubber = AFI_IP; scrubber < AFI_MAX; scrubber++) {
3126 if (scrubber == afi)
3127 continue;
3128
3129 if (zvrf->label[scrubber] == MPLS_LABEL_NONE)
3130 continue;
3131
3132 if (zvrf->label[afi] == zvrf->label[scrubber]) {
3133 really_remove = false;
3134 break;
3135 }
3136 }
3137
3138 if (really_remove)
3139 mpls_lsp_uninstall(def_zvrf, ltype, zvrf->label[afi],
3140 NEXTHOP_TYPE_IFINDEX, NULL,
3141 ifp->ifindex, false /*backup*/);
3142 }
3143
3144 if (nlabel != MPLS_LABEL_NONE) {
3145 mpls_label_t out_label = MPLS_LABEL_IMPLICIT_NULL;
3146 mpls_lsp_install(def_zvrf, ltype, nlabel, 1, &out_label,
3147 NEXTHOP_TYPE_IFINDEX, NULL, ifp->ifindex);
3148 }
3149
3150 zvrf->label[afi] = nlabel;
3151 zvrf->label_proto[afi] = client->proto;
3152
3153 stream_failure:
3154 return;
3155 }
3156
3157 static inline void zread_rule(ZAPI_HANDLER_ARGS)
3158 {
3159 struct zebra_pbr_rule zpr;
3160 struct stream *s;
3161 uint32_t total, i;
3162 char ifname[INTERFACE_NAMSIZ + 1] = {};
3163
3164 s = msg;
3165 STREAM_GETL(s, total);
3166
3167 for (i = 0; i < total; i++) {
3168 memset(&zpr, 0, sizeof(zpr));
3169
3170 zpr.sock = client->sock;
3171 zpr.rule.vrf_id = hdr->vrf_id;
3172 STREAM_GETL(s, zpr.rule.seq);
3173 STREAM_GETL(s, zpr.rule.priority);
3174 STREAM_GETL(s, zpr.rule.unique);
3175 STREAM_GETC(s, zpr.rule.filter.ip_proto);
3176 STREAM_GETC(s, zpr.rule.filter.src_ip.family);
3177 STREAM_GETC(s, zpr.rule.filter.src_ip.prefixlen);
3178 STREAM_GET(&zpr.rule.filter.src_ip.u.prefix, s,
3179 prefix_blen(&zpr.rule.filter.src_ip));
3180 STREAM_GETW(s, zpr.rule.filter.src_port);
3181 STREAM_GETC(s, zpr.rule.filter.dst_ip.family);
3182 STREAM_GETC(s, zpr.rule.filter.dst_ip.prefixlen);
3183 STREAM_GET(&zpr.rule.filter.dst_ip.u.prefix, s,
3184 prefix_blen(&zpr.rule.filter.dst_ip));
3185 STREAM_GETW(s, zpr.rule.filter.dst_port);
3186 STREAM_GETC(s, zpr.rule.filter.dsfield);
3187 STREAM_GETL(s, zpr.rule.filter.fwmark);
3188
3189 STREAM_GETL(s, zpr.rule.action.queue_id);
3190 STREAM_GETW(s, zpr.rule.action.vlan_id);
3191 STREAM_GETW(s, zpr.rule.action.vlan_flags);
3192 STREAM_GETW(s, zpr.rule.action.pcp);
3193
3194 STREAM_GETL(s, zpr.rule.action.table);
3195 STREAM_GET(ifname, s, INTERFACE_NAMSIZ);
3196
3197 strlcpy(zpr.ifname, ifname, sizeof(zpr.ifname));
3198 strlcpy(zpr.rule.ifname, ifname, sizeof(zpr.rule.ifname));
3199
3200 if (!is_default_prefix(&zpr.rule.filter.src_ip))
3201 zpr.rule.filter.filter_bm |= PBR_FILTER_SRC_IP;
3202
3203 if (!is_default_prefix(&zpr.rule.filter.dst_ip))
3204 zpr.rule.filter.filter_bm |= PBR_FILTER_DST_IP;
3205
3206 if (zpr.rule.filter.src_port)
3207 zpr.rule.filter.filter_bm |= PBR_FILTER_SRC_PORT;
3208
3209 if (zpr.rule.filter.dst_port)
3210 zpr.rule.filter.filter_bm |= PBR_FILTER_DST_PORT;
3211
3212 if (zpr.rule.filter.dsfield)
3213 zpr.rule.filter.filter_bm |= PBR_FILTER_DSFIELD;
3214
3215 if (zpr.rule.filter.ip_proto)
3216 zpr.rule.filter.filter_bm |= PBR_FILTER_IP_PROTOCOL;
3217
3218 if (zpr.rule.filter.fwmark)
3219 zpr.rule.filter.filter_bm |= PBR_FILTER_FWMARK;
3220
3221 if (!(zpr.rule.filter.src_ip.family == AF_INET
3222 || zpr.rule.filter.src_ip.family == AF_INET6)) {
3223 zlog_warn(
3224 "Unsupported PBR source IP family: %s (%hhu)",
3225 family2str(zpr.rule.filter.src_ip.family),
3226 zpr.rule.filter.src_ip.family);
3227 return;
3228 }
3229 if (!(zpr.rule.filter.dst_ip.family == AF_INET
3230 || zpr.rule.filter.dst_ip.family == AF_INET6)) {
3231 zlog_warn(
3232 "Unsupported PBR destination IP family: %s (%hhu)",
3233 family2str(zpr.rule.filter.dst_ip.family),
3234 zpr.rule.filter.dst_ip.family);
3235 return;
3236 }
3237
3238
3239 zpr.vrf_id = zvrf->vrf->vrf_id;
3240 if (hdr->command == ZEBRA_RULE_ADD)
3241 zebra_pbr_add_rule(&zpr);
3242 else
3243 zebra_pbr_del_rule(&zpr);
3244 }
3245
3246 stream_failure:
3247 return;
3248 }
3249
3250 static inline void zread_ipset(ZAPI_HANDLER_ARGS)
3251 {
3252 struct zebra_pbr_ipset zpi;
3253 struct stream *s;
3254 uint32_t total, i;
3255
3256 s = msg;
3257 STREAM_GETL(s, total);
3258
3259 for (i = 0; i < total; i++) {
3260 memset(&zpi, 0, sizeof(zpi));
3261
3262 zpi.sock = client->sock;
3263 zpi.vrf_id = zvrf->vrf->vrf_id;
3264 STREAM_GETL(s, zpi.unique);
3265 STREAM_GETL(s, zpi.type);
3266 STREAM_GETC(s, zpi.family);
3267 STREAM_GET(&zpi.ipset_name, s, ZEBRA_IPSET_NAME_SIZE);
3268
3269 if (hdr->command == ZEBRA_IPSET_CREATE)
3270 zebra_pbr_create_ipset(&zpi);
3271 else
3272 zebra_pbr_destroy_ipset(&zpi);
3273 }
3274
3275 stream_failure:
3276 return;
3277 }
3278
3279 static inline void zread_ipset_entry(ZAPI_HANDLER_ARGS)
3280 {
3281 struct zebra_pbr_ipset_entry zpi;
3282 struct zebra_pbr_ipset ipset;
3283 struct stream *s;
3284 uint32_t total, i;
3285
3286 s = msg;
3287 STREAM_GETL(s, total);
3288
3289 for (i = 0; i < total; i++) {
3290 memset(&zpi, 0, sizeof(zpi));
3291 memset(&ipset, 0, sizeof(ipset));
3292
3293 zpi.sock = client->sock;
3294 STREAM_GETL(s, zpi.unique);
3295 STREAM_GET(&ipset.ipset_name, s, ZEBRA_IPSET_NAME_SIZE);
3296 ipset.ipset_name[ZEBRA_IPSET_NAME_SIZE - 1] = '\0';
3297 STREAM_GETC(s, zpi.src.family);
3298 STREAM_GETC(s, zpi.src.prefixlen);
3299 STREAM_GET(&zpi.src.u.prefix, s, prefix_blen(&zpi.src));
3300 STREAM_GETC(s, zpi.dst.family);
3301 STREAM_GETC(s, zpi.dst.prefixlen);
3302 STREAM_GET(&zpi.dst.u.prefix, s, prefix_blen(&zpi.dst));
3303
3304 STREAM_GETW(s, zpi.src_port_min);
3305 STREAM_GETW(s, zpi.src_port_max);
3306 STREAM_GETW(s, zpi.dst_port_min);
3307 STREAM_GETW(s, zpi.dst_port_max);
3308 STREAM_GETC(s, zpi.proto);
3309 if (!is_default_prefix(&zpi.src))
3310 zpi.filter_bm |= PBR_FILTER_SRC_IP;
3311
3312 if (!is_default_prefix(&zpi.dst))
3313 zpi.filter_bm |= PBR_FILTER_DST_IP;
3314 if (zpi.dst_port_min != 0 || zpi.proto == IPPROTO_ICMP)
3315 zpi.filter_bm |= PBR_FILTER_DST_PORT;
3316 if (zpi.src_port_min != 0 || zpi.proto == IPPROTO_ICMP)
3317 zpi.filter_bm |= PBR_FILTER_SRC_PORT;
3318 if (zpi.dst_port_max != 0)
3319 zpi.filter_bm |= PBR_FILTER_DST_PORT_RANGE;
3320 if (zpi.src_port_max != 0)
3321 zpi.filter_bm |= PBR_FILTER_SRC_PORT_RANGE;
3322 if (zpi.proto != 0)
3323 zpi.filter_bm |= PBR_FILTER_PROTO;
3324
3325 if (!(zpi.dst.family == AF_INET
3326 || zpi.dst.family == AF_INET6)) {
3327 zlog_warn(
3328 "Unsupported PBR destination IP family: %s (%hhu)",
3329 family2str(zpi.dst.family), zpi.dst.family);
3330 goto stream_failure;
3331 }
3332 if (!(zpi.src.family == AF_INET
3333 || zpi.src.family == AF_INET6)) {
3334 zlog_warn(
3335 "Unsupported PBR source IP family: %s (%hhu)",
3336 family2str(zpi.src.family), zpi.src.family);
3337 goto stream_failure;
3338 }
3339
3340 /* calculate backpointer */
3341 zpi.backpointer =
3342 zebra_pbr_lookup_ipset_pername(ipset.ipset_name);
3343
3344 if (!zpi.backpointer) {
3345 zlog_warn("ipset name specified: %s does not exist",
3346 ipset.ipset_name);
3347 goto stream_failure;
3348 }
3349
3350 if (hdr->command == ZEBRA_IPSET_ENTRY_ADD)
3351 zebra_pbr_add_ipset_entry(&zpi);
3352 else
3353 zebra_pbr_del_ipset_entry(&zpi);
3354 }
3355
3356 stream_failure:
3357 return;
3358 }
3359
3360
3361 static inline void zebra_neigh_register(ZAPI_HANDLER_ARGS)
3362 {
3363 afi_t afi;
3364
3365 STREAM_GETW(msg, afi);
3366 if (afi <= AFI_UNSPEC || afi >= AFI_MAX) {
3367 zlog_warn(
3368 "Invalid AFI %u while registering for neighbors notifications",
3369 afi);
3370 goto stream_failure;
3371 }
3372 vrf_bitmap_set(client->nhrp_neighinfo[afi], zvrf_id(zvrf));
3373 stream_failure:
3374 return;
3375 }
3376
3377 static inline void zebra_neigh_unregister(ZAPI_HANDLER_ARGS)
3378 {
3379 afi_t afi;
3380
3381 STREAM_GETW(msg, afi);
3382 if (afi <= AFI_UNSPEC || afi >= AFI_MAX) {
3383 zlog_warn(
3384 "Invalid AFI %u while unregistering from neighbor notifications",
3385 afi);
3386 goto stream_failure;
3387 }
3388 vrf_bitmap_unset(client->nhrp_neighinfo[afi], zvrf_id(zvrf));
3389 stream_failure:
3390 return;
3391 }
3392
3393 static inline void zebra_gre_get(ZAPI_HANDLER_ARGS)
3394 {
3395 struct stream *s;
3396 ifindex_t idx;
3397 struct interface *ifp;
3398 struct zebra_if *zebra_if = NULL;
3399 struct zebra_l2info_gre *gre_info;
3400 struct interface *ifp_link = NULL;
3401 vrf_id_t vrf_id_link = VRF_UNKNOWN;
3402 vrf_id_t vrf_id = zvrf->vrf->vrf_id;
3403
3404 s = msg;
3405 STREAM_GETL(s, idx);
3406 ifp = if_lookup_by_index(idx, vrf_id);
3407
3408 if (ifp)
3409 zebra_if = ifp->info;
3410
3411 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
3412
3413 zclient_create_header(s, ZEBRA_GRE_UPDATE, vrf_id);
3414
3415 if (ifp && IS_ZEBRA_IF_GRE(ifp) && zebra_if) {
3416 gre_info = &zebra_if->l2info.gre;
3417
3418 stream_putl(s, idx);
3419 stream_putl(s, gre_info->ikey);
3420 stream_putl(s, gre_info->ikey);
3421 stream_putl(s, gre_info->ifindex_link);
3422
3423 ifp_link = if_lookup_by_index_per_ns(
3424 zebra_ns_lookup(gre_info->link_nsid),
3425 gre_info->ifindex_link);
3426 if (ifp_link)
3427 vrf_id_link = ifp_link->vrf->vrf_id;
3428 stream_putl(s, vrf_id_link);
3429 stream_putl(s, gre_info->vtep_ip.s_addr);
3430 stream_putl(s, gre_info->vtep_ip_remote.s_addr);
3431 } else {
3432 stream_putl(s, idx);
3433 stream_putl(s, 0);
3434 stream_putl(s, 0);
3435 stream_putl(s, IFINDEX_INTERNAL);
3436 stream_putl(s, VRF_UNKNOWN);
3437 stream_putl(s, 0);
3438 stream_putl(s, 0);
3439 }
3440 /* Write packet size. */
3441 stream_putw_at(s, 0, stream_get_endp(s));
3442 zserv_send_message(client, s);
3443
3444 return;
3445 stream_failure:
3446 return;
3447 }
3448
3449 static inline void zebra_configure_arp(ZAPI_HANDLER_ARGS)
3450 {
3451 struct stream *s;
3452 uint8_t fam;
3453 ifindex_t idx;
3454 struct interface *ifp;
3455
3456 s = msg;
3457 STREAM_GETC(s, fam);
3458 if (fam != AF_INET && fam != AF_INET6)
3459 return;
3460 STREAM_GETL(s, idx);
3461 ifp = if_lookup_by_index_per_ns(zvrf->zns, idx);
3462 if (!ifp)
3463 return;
3464 dplane_neigh_table_update(ifp, fam, 1, 0, 0);
3465 stream_failure:
3466 return;
3467 }
3468
3469 static inline void zebra_neigh_ip_add(ZAPI_HANDLER_ARGS)
3470 {
3471 struct stream *s;
3472 struct zapi_neigh_ip api = {};
3473 int ret;
3474 const struct interface *ifp;
3475
3476 s = msg;
3477 ret = zclient_neigh_ip_decode(s, &api);
3478 if (ret < 0)
3479 return;
3480 ifp = if_lookup_by_index(api.index, zvrf_id(zvrf));
3481 if (!ifp)
3482 return;
3483 dplane_neigh_ip_update(DPLANE_OP_NEIGH_IP_INSTALL, ifp, &api.ip_out,
3484 &api.ip_in, api.ndm_state, client->proto);
3485 }
3486
3487
3488 static inline void zebra_neigh_ip_del(ZAPI_HANDLER_ARGS)
3489 {
3490 struct stream *s;
3491 struct zapi_neigh_ip api = {};
3492 int ret;
3493 struct interface *ifp;
3494
3495 s = msg;
3496 ret = zclient_neigh_ip_decode(s, &api);
3497 if (ret < 0)
3498 return;
3499 ifp = if_lookup_by_index(api.index, zvrf_id(zvrf));
3500 if (!ifp)
3501 return;
3502 dplane_neigh_ip_update(DPLANE_OP_NEIGH_IP_DELETE, ifp, &api.ip_out,
3503 &api.ip_in, api.ndm_state, client->proto);
3504 }
3505
3506
3507 static inline void zread_iptable(ZAPI_HANDLER_ARGS)
3508 {
3509 struct zebra_pbr_iptable *zpi =
3510 XCALLOC(MTYPE_TMP, sizeof(struct zebra_pbr_iptable));
3511 struct stream *s;
3512
3513 s = msg;
3514
3515 zpi->interface_name_list = list_new();
3516 zpi->sock = client->sock;
3517 zpi->vrf_id = zvrf->vrf->vrf_id;
3518 STREAM_GETL(s, zpi->unique);
3519 STREAM_GETL(s, zpi->type);
3520 STREAM_GETL(s, zpi->filter_bm);
3521 STREAM_GETL(s, zpi->action);
3522 STREAM_GETL(s, zpi->fwmark);
3523 STREAM_GET(&zpi->ipset_name, s, ZEBRA_IPSET_NAME_SIZE);
3524 STREAM_GETC(s, zpi->family);
3525 STREAM_GETW(s, zpi->pkt_len_min);
3526 STREAM_GETW(s, zpi->pkt_len_max);
3527 STREAM_GETW(s, zpi->tcp_flags);
3528 STREAM_GETW(s, zpi->tcp_mask_flags);
3529 STREAM_GETC(s, zpi->dscp_value);
3530 STREAM_GETC(s, zpi->fragment);
3531 STREAM_GETC(s, zpi->protocol);
3532 STREAM_GETW(s, zpi->flow_label);
3533 STREAM_GETL(s, zpi->nb_interface);
3534 zebra_pbr_iptable_update_interfacelist(s, zpi);
3535
3536 if (hdr->command == ZEBRA_IPTABLE_ADD)
3537 zebra_pbr_add_iptable(zpi);
3538 else
3539 zebra_pbr_del_iptable(zpi);
3540
3541 stream_failure:
3542 zebra_pbr_iptable_free(zpi);
3543 zpi = NULL;
3544 return;
3545 }
3546
3547 static inline void zread_neigh_discover(ZAPI_HANDLER_ARGS)
3548 {
3549 struct stream *s;
3550 ifindex_t ifindex;
3551 struct interface *ifp;
3552 struct prefix p;
3553 struct ipaddr ip;
3554
3555 s = msg;
3556
3557 STREAM_GETL(s, ifindex);
3558
3559 ifp = if_lookup_by_index_per_ns(zvrf->zns, ifindex);
3560 if (!ifp) {
3561 zlog_debug("Failed to lookup ifindex: %u", ifindex);
3562 return;
3563 }
3564
3565 STREAM_GETC(s, p.family);
3566 STREAM_GETC(s, p.prefixlen);
3567 STREAM_GET(&p.u.prefix, s, prefix_blen(&p));
3568
3569 if (p.family == AF_INET)
3570 SET_IPADDR_V4(&ip);
3571 else
3572 SET_IPADDR_V6(&ip);
3573
3574 memcpy(&ip.ip.addr, &p.u.prefix, prefix_blen(&p));
3575
3576 dplane_neigh_discover(ifp, &ip);
3577
3578 stream_failure:
3579 return;
3580 }
3581
3582 static inline void zebra_gre_source_set(ZAPI_HANDLER_ARGS)
3583 {
3584 struct stream *s;
3585 ifindex_t idx, link_idx;
3586 vrf_id_t link_vrf_id;
3587 struct interface *ifp;
3588 struct interface *ifp_link;
3589 vrf_id_t vrf_id = zvrf->vrf->vrf_id;
3590 struct zebra_if *zif, *gre_zif;
3591 struct zebra_l2info_gre *gre_info;
3592 unsigned int mtu;
3593
3594 s = msg;
3595 STREAM_GETL(s, idx);
3596 ifp = if_lookup_by_index(idx, vrf_id);
3597 STREAM_GETL(s, link_idx);
3598 STREAM_GETL(s, link_vrf_id);
3599 STREAM_GETL(s, mtu);
3600
3601 ifp_link = if_lookup_by_index(link_idx, link_vrf_id);
3602 if (!ifp_link || !ifp) {
3603 zlog_warn("GRE (index %u, VRF %u) or GRE link interface (index %u, VRF %u) not found, when setting GRE params",
3604 idx, vrf_id, link_idx, link_vrf_id);
3605 return;
3606 }
3607
3608 if (!IS_ZEBRA_IF_GRE(ifp))
3609 return;
3610
3611 gre_zif = (struct zebra_if *)ifp->info;
3612 zif = (struct zebra_if *)ifp_link->info;
3613 if (!zif || !gre_zif)
3614 return;
3615
3616 gre_info = &zif->l2info.gre;
3617 if (!gre_info)
3618 return;
3619
3620 if (!mtu)
3621 mtu = ifp->mtu;
3622
3623 /* if gre link already set or mtu did not change, do not set it */
3624 if (gre_zif->link && gre_zif->link == ifp_link && mtu == ifp->mtu)
3625 return;
3626
3627 dplane_gre_set(ifp, ifp_link, mtu, gre_info);
3628
3629 stream_failure:
3630 return;
3631 }
3632
3633 static void zsend_error_msg(struct zserv *client, enum zebra_error_types error,
3634 struct zmsghdr *bad_hdr)
3635 {
3636
3637 struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
3638
3639 zclient_create_header(s, ZEBRA_ERROR, bad_hdr->vrf_id);
3640
3641 zserv_encode_error(s, error);
3642
3643 client->error_cnt++;
3644 zserv_send_message(client, s);
3645 }
3646
3647 static void zserv_error_no_vrf(ZAPI_HANDLER_ARGS)
3648 {
3649 if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
3650 zlog_debug("ZAPI message specifies unknown VRF: %d",
3651 hdr->vrf_id);
3652
3653 zsend_error_msg(client, ZEBRA_NO_VRF, hdr);
3654 }
3655
3656 static void zserv_error_invalid_msg_type(ZAPI_HANDLER_ARGS)
3657 {
3658 zlog_info("Zebra received unknown command %d", hdr->command);
3659
3660 zsend_error_msg(client, ZEBRA_INVALID_MSG_TYPE, hdr);
3661 }
3662
3663 void (*const zserv_handlers[])(ZAPI_HANDLER_ARGS) = {
3664 [ZEBRA_ROUTER_ID_ADD] = zread_router_id_add,
3665 [ZEBRA_ROUTER_ID_DELETE] = zread_router_id_delete,
3666 [ZEBRA_INTERFACE_ADD] = zread_interface_add,
3667 [ZEBRA_INTERFACE_DELETE] = zread_interface_delete,
3668 [ZEBRA_INTERFACE_SET_PROTODOWN] = zread_interface_set_protodown,
3669 [ZEBRA_ROUTE_ADD] = zread_route_add,
3670 [ZEBRA_ROUTE_DELETE] = zread_route_del,
3671 [ZEBRA_REDISTRIBUTE_ADD] = zebra_redistribute_add,
3672 [ZEBRA_REDISTRIBUTE_DELETE] = zebra_redistribute_delete,
3673 [ZEBRA_REDISTRIBUTE_DEFAULT_ADD] = zebra_redistribute_default_add,
3674 [ZEBRA_REDISTRIBUTE_DEFAULT_DELETE] = zebra_redistribute_default_delete,
3675 [ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB] = zread_ipv4_nexthop_lookup_mrib,
3676 [ZEBRA_HELLO] = zread_hello,
3677 [ZEBRA_NEXTHOP_REGISTER] = zread_rnh_register,
3678 [ZEBRA_NEXTHOP_UNREGISTER] = zread_rnh_unregister,
3679 [ZEBRA_BFD_DEST_UPDATE] = zebra_ptm_bfd_dst_register,
3680 [ZEBRA_BFD_DEST_REGISTER] = zebra_ptm_bfd_dst_register,
3681 [ZEBRA_BFD_DEST_DEREGISTER] = zebra_ptm_bfd_dst_deregister,
3682 #if HAVE_BFDD > 0
3683 [ZEBRA_BFD_DEST_REPLAY] = zebra_ptm_bfd_dst_replay,
3684 #endif /* HAVE_BFDD */
3685 [ZEBRA_VRF_UNREGISTER] = zread_vrf_unregister,
3686 [ZEBRA_VRF_LABEL] = zread_vrf_label,
3687 [ZEBRA_BFD_CLIENT_REGISTER] = zebra_ptm_bfd_client_register,
3688 [ZEBRA_INTERFACE_ENABLE_RADV] = zebra_interface_radv_enable,
3689 [ZEBRA_INTERFACE_DISABLE_RADV] = zebra_interface_radv_disable,
3690 [ZEBRA_SR_POLICY_SET] = zread_sr_policy_set,
3691 [ZEBRA_SR_POLICY_DELETE] = zread_sr_policy_delete,
3692 [ZEBRA_MPLS_LABELS_ADD] = zread_mpls_labels_add,
3693 [ZEBRA_MPLS_LABELS_DELETE] = zread_mpls_labels_delete,
3694 [ZEBRA_MPLS_LABELS_REPLACE] = zread_mpls_labels_replace,
3695 [ZEBRA_IPMR_ROUTE_STATS] = zebra_ipmr_route_stats,
3696 [ZEBRA_LABEL_MANAGER_CONNECT] = zread_label_manager_request,
3697 [ZEBRA_LABEL_MANAGER_CONNECT_ASYNC] = zread_label_manager_request,
3698 [ZEBRA_GET_LABEL_CHUNK] = zread_label_manager_request,
3699 [ZEBRA_RELEASE_LABEL_CHUNK] = zread_label_manager_request,
3700 [ZEBRA_FEC_REGISTER] = zread_fec_register,
3701 [ZEBRA_FEC_UNREGISTER] = zread_fec_unregister,
3702 [ZEBRA_ADVERTISE_DEFAULT_GW] = zebra_vxlan_advertise_gw_macip,
3703 [ZEBRA_ADVERTISE_SVI_MACIP] = zebra_vxlan_advertise_svi_macip,
3704 [ZEBRA_ADVERTISE_SUBNET] = zebra_vxlan_advertise_subnet,
3705 [ZEBRA_ADVERTISE_ALL_VNI] = zebra_vxlan_advertise_all_vni,
3706 [ZEBRA_REMOTE_ES_VTEP_ADD] = zebra_evpn_proc_remote_es,
3707 [ZEBRA_REMOTE_ES_VTEP_DEL] = zebra_evpn_proc_remote_es,
3708 [ZEBRA_REMOTE_VTEP_ADD] = zebra_vxlan_remote_vtep_add_zapi,
3709 [ZEBRA_REMOTE_VTEP_DEL] = zebra_vxlan_remote_vtep_del_zapi,
3710 [ZEBRA_REMOTE_MACIP_ADD] = zebra_vxlan_remote_macip_add,
3711 [ZEBRA_REMOTE_MACIP_DEL] = zebra_vxlan_remote_macip_del,
3712 [ZEBRA_DUPLICATE_ADDR_DETECTION] = zebra_vxlan_dup_addr_detection,
3713 [ZEBRA_INTERFACE_SET_MASTER] = zread_interface_set_master,
3714 [ZEBRA_PW_ADD] = zread_pseudowire,
3715 [ZEBRA_PW_DELETE] = zread_pseudowire,
3716 [ZEBRA_PW_SET] = zread_pseudowire,
3717 [ZEBRA_PW_UNSET] = zread_pseudowire,
3718 [ZEBRA_RULE_ADD] = zread_rule,
3719 [ZEBRA_RULE_DELETE] = zread_rule,
3720 [ZEBRA_TABLE_MANAGER_CONNECT] = zread_table_manager_request,
3721 [ZEBRA_GET_TABLE_CHUNK] = zread_table_manager_request,
3722 [ZEBRA_RELEASE_TABLE_CHUNK] = zread_table_manager_request,
3723 [ZEBRA_IPSET_CREATE] = zread_ipset,
3724 [ZEBRA_IPSET_DESTROY] = zread_ipset,
3725 [ZEBRA_IPSET_ENTRY_ADD] = zread_ipset_entry,
3726 [ZEBRA_IPSET_ENTRY_DELETE] = zread_ipset_entry,
3727 [ZEBRA_IPTABLE_ADD] = zread_iptable,
3728 [ZEBRA_IPTABLE_DELETE] = zread_iptable,
3729 [ZEBRA_VXLAN_FLOOD_CONTROL] = zebra_vxlan_flood_control,
3730 [ZEBRA_VXLAN_SG_REPLAY] = zebra_vxlan_sg_replay,
3731 [ZEBRA_MLAG_CLIENT_REGISTER] = zebra_mlag_client_register,
3732 [ZEBRA_MLAG_CLIENT_UNREGISTER] = zebra_mlag_client_unregister,
3733 [ZEBRA_MLAG_FORWARD_MSG] = zebra_mlag_forward_client_msg,
3734 [ZEBRA_SRV6_MANAGER_GET_LOCATOR_CHUNK] = zread_srv6_manager_request,
3735 [ZEBRA_SRV6_MANAGER_RELEASE_LOCATOR_CHUNK] = zread_srv6_manager_request,
3736 [ZEBRA_CLIENT_CAPABILITIES] = zread_client_capabilities,
3737 [ZEBRA_NEIGH_DISCOVER] = zread_neigh_discover,
3738 [ZEBRA_NHG_ADD] = zread_nhg_add,
3739 [ZEBRA_NHG_DEL] = zread_nhg_del,
3740 [ZEBRA_ROUTE_NOTIFY_REQUEST] = zread_route_notify_request,
3741 [ZEBRA_EVPN_REMOTE_NH_ADD] = zebra_evpn_proc_remote_nh,
3742 [ZEBRA_EVPN_REMOTE_NH_DEL] = zebra_evpn_proc_remote_nh,
3743 [ZEBRA_NEIGH_IP_ADD] = zebra_neigh_ip_add,
3744 [ZEBRA_NEIGH_IP_DEL] = zebra_neigh_ip_del,
3745 [ZEBRA_NHRP_NEIGH_REGISTER] = zebra_neigh_register,
3746 [ZEBRA_NHRP_NEIGH_UNREGISTER] = zebra_neigh_unregister,
3747 [ZEBRA_CONFIGURE_ARP] = zebra_configure_arp,
3748 [ZEBRA_GRE_GET] = zebra_gre_get,
3749 [ZEBRA_GRE_SOURCE_SET] = zebra_gre_source_set,
3750 };
3751
3752 /*
3753 * Process a batch of zapi messages.
3754 */
3755 void zserv_handle_commands(struct zserv *client, struct stream_fifo *fifo)
3756 {
3757 struct zmsghdr hdr;
3758 struct zebra_vrf *zvrf;
3759 struct stream *msg;
3760 struct stream_fifo temp_fifo;
3761
3762 stream_fifo_init(&temp_fifo);
3763
3764 while (stream_fifo_head(fifo)) {
3765 msg = stream_fifo_pop(fifo);
3766
3767 if (STREAM_READABLE(msg) > ZEBRA_MAX_PACKET_SIZ) {
3768 if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
3769 zlog_debug(
3770 "ZAPI message is %zu bytes long but the maximum packet size is %u; dropping",
3771 STREAM_READABLE(msg),
3772 ZEBRA_MAX_PACKET_SIZ);
3773 goto continue_loop;
3774 }
3775
3776 zapi_parse_header(msg, &hdr);
3777
3778 if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV
3779 && IS_ZEBRA_DEBUG_DETAIL)
3780 zserv_log_message(NULL, msg, &hdr);
3781
3782 hdr.length -= ZEBRA_HEADER_SIZE;
3783
3784 /* Before checking for a handler function, check for
3785 * special messages that are handled in another module;
3786 * we'll treat these as opaque.
3787 */
3788 if (zebra_opaque_handles_msgid(hdr.command)) {
3789 /* Reset message buffer */
3790 stream_set_getp(msg, 0);
3791
3792 stream_fifo_push(&temp_fifo, msg);
3793
3794 /* Continue without freeing the message */
3795 msg = NULL;
3796 goto continue_loop;
3797 }
3798
3799 /* lookup vrf */
3800 zvrf = zebra_vrf_lookup_by_id(hdr.vrf_id);
3801 if (!zvrf) {
3802 zserv_error_no_vrf(client, &hdr, msg, zvrf);
3803 goto continue_loop;
3804 }
3805
3806 if (hdr.command >= array_size(zserv_handlers)
3807 || zserv_handlers[hdr.command] == NULL) {
3808 zserv_error_invalid_msg_type(client, &hdr, msg, zvrf);
3809 goto continue_loop;
3810 }
3811
3812 zserv_handlers[hdr.command](client, &hdr, msg, zvrf);
3813
3814 continue_loop:
3815 stream_free(msg);
3816 }
3817
3818 /* Dispatch any special messages from the temp fifo */
3819 if (stream_fifo_head(&temp_fifo) != NULL)
3820 zebra_opaque_enqueue_batch(&temp_fifo);
3821
3822 stream_fifo_deinit(&temp_fifo);
3823 }