]> git.proxmox.com Git - mirror_frr.git/blame - pbrd/pbr_zebra.c
*: Use short version of bool expressions
[mirror_frr.git] / pbrd / pbr_zebra.c
CommitLineData
e5c83d9b
DS
1/*
2 * Zebra connect code.
3 * Copyright (C) 2018 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
6 * FRR is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * FRR is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20#include <zebra.h>
21
22#include "thread.h"
23#include "command.h"
24#include "network.h"
25#include "prefix.h"
26#include "routemap.h"
27#include "table.h"
28#include "stream.h"
29#include "memory.h"
30#include "zclient.h"
31#include "filter.h"
32#include "plist.h"
33#include "log.h"
34#include "nexthop.h"
35#include "nexthop_group.h"
36
37#include "pbr_nht.h"
38#include "pbr_map.h"
39#include "pbr_memory.h"
40#include "pbr_zebra.h"
41#include "pbr_debug.h"
be3b67b5 42#include "pbr_vrf.h"
e5c83d9b
DS
43
44DEFINE_MTYPE_STATIC(PBRD, PBR_INTERFACE, "PBR Interface")
45
46/* Zebra structure to hold current status. */
d3765386 47struct zclient *zclient;
e5c83d9b 48
b13e5ad6 49struct pbr_interface *pbr_if_new(struct interface *ifp)
e5c83d9b
DS
50{
51 struct pbr_interface *pbr_ifp;
52
53 zassert(ifp);
54 zassert(!ifp->info);
55
56 pbr_ifp = XCALLOC(MTYPE_PBR_INTERFACE, sizeof(*pbr_ifp));
57
10a00758
DS
58 ifp->info = pbr_ifp;
59 return pbr_ifp;
e5c83d9b
DS
60}
61
62/* Inteface addition message from zebra. */
ef7bd2a3 63int pbr_ifp_create(struct interface *ifp)
e5c83d9b 64{
2f61710b
DS
65 DEBUGD(&pbr_dbg_zebra,
66 "%s: %s", __PRETTY_FUNCTION__, ifp->name);
67
10a00758
DS
68 if (!ifp->info)
69 pbr_if_new(ifp);
e5c83d9b 70
be3b67b5 71 /* Update nexthops tracked from a `set nexthop` command */
a106a408
RW
72 pbr_nht_nexthop_interface_update(ifp);
73
be3b67b5
SW
74 pbr_map_policy_interface_update(ifp, true);
75
e5c83d9b
DS
76 return 0;
77}
78
3c3c3252 79int pbr_ifp_destroy(struct interface *ifp)
e5c83d9b 80{
2f61710b
DS
81 DEBUGD(&pbr_dbg_zebra,
82 "%s: %s", __PRETTY_FUNCTION__, ifp->name);
83
be3b67b5
SW
84 pbr_map_policy_interface_update(ifp, false);
85
e5c83d9b
DS
86 return 0;
87}
88
121f9dee 89static int interface_address_add(ZAPI_CALLBACK_ARGS)
e5c83d9b 90{
2f61710b
DS
91 struct connected *c;
92 char buf[PREFIX_STRLEN];
93
121f9dee 94 c = zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
2f61710b
DS
95
96 DEBUGD(&pbr_dbg_zebra,
964c3dba
DS
97 "%s: %s added %s", __PRETTY_FUNCTION__,
98 c ? c->ifp->name : "Unknown",
99 c ? prefix2str(c->address, buf, sizeof(buf)) : "Unknown");
e5c83d9b
DS
100
101 return 0;
102}
103
121f9dee 104static int interface_address_delete(ZAPI_CALLBACK_ARGS)
e5c83d9b
DS
105{
106 struct connected *c;
2f61710b 107 char buf[PREFIX_STRLEN];
e5c83d9b 108
121f9dee 109 c = zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
e5c83d9b
DS
110
111 if (!c)
112 return 0;
113
2f61710b
DS
114 DEBUGD(&pbr_dbg_zebra,
115 "%s: %s deleted %s", __PRETTY_FUNCTION__, c->ifp->name,
116 prefix2str(c->address, buf, sizeof(buf)));
117
721c0857 118 connected_free(&c);
e5c83d9b
DS
119 return 0;
120}
121
ddbf3e60 122int pbr_ifp_up(struct interface *ifp)
e5c83d9b 123{
2f61710b
DS
124 DEBUGD(&pbr_dbg_zebra,
125 "%s: %s is up", __PRETTY_FUNCTION__, ifp->name);
e5c83d9b 126
a106a408
RW
127 pbr_nht_nexthop_interface_update(ifp);
128
e5c83d9b
DS
129 return 0;
130}
131
b0b69e59 132int pbr_ifp_down(struct interface *ifp)
e5c83d9b 133{
2f61710b
DS
134 DEBUGD(&pbr_dbg_zebra,
135 "%s: %s is down", __PRETTY_FUNCTION__, ifp->name);
e5c83d9b 136
a106a408
RW
137 pbr_nht_nexthop_interface_update(ifp);
138
e5c83d9b
DS
139 return 0;
140}
141
be3b67b5
SW
142static int interface_vrf_update(ZAPI_CALLBACK_ARGS)
143{
144 struct interface *ifp;
145 vrf_id_t new_vrf_id;
146
147 ifp = zebra_interface_vrf_update_read(zclient->ibuf, vrf_id,
148 &new_vrf_id);
149
150 if (!ifp) {
151 DEBUGD(&pbr_dbg_zebra, "%s: VRF change interface not found",
152 __func__);
153
154 return 0;
155 }
156
157 DEBUGD(&pbr_dbg_zebra, "%s: %s VRF change %u -> %u", __func__,
158 ifp->name, vrf_id, new_vrf_id);
159
160 if_update_to_new_vrf(ifp, new_vrf_id);
161
162 return 0;
163}
164
121f9dee 165static int route_notify_owner(ZAPI_CALLBACK_ARGS)
e5c83d9b
DS
166{
167 struct prefix p;
168 enum zapi_route_notify_owner note;
169 uint32_t table_id;
170 char buf[PREFIX_STRLEN];
171
e5c83d9b
DS
172 if (!zapi_route_notify_decode(zclient->ibuf, &p, &table_id, &note))
173 return -1;
174
2f61710b
DS
175 prefix2str(&p, buf, sizeof(buf));
176
e5c83d9b
DS
177 switch (note) {
178 case ZAPI_ROUTE_FAIL_INSTALL:
179 DEBUGD(&pbr_dbg_zebra,
180 "%s: [%s] Route install failure for table: %u",
181 __PRETTY_FUNCTION__, buf, table_id);
182 break;
183 case ZAPI_ROUTE_BETTER_ADMIN_WON:
184 DEBUGD(&pbr_dbg_zebra,
185 "%s: [%s] Route better admin distance won for table: %u",
186 __PRETTY_FUNCTION__, buf, table_id);
187 break;
188 case ZAPI_ROUTE_INSTALLED:
189 DEBUGD(&pbr_dbg_zebra,
190 "%s: [%s] Route installed succeeded for table: %u",
191 __PRETTY_FUNCTION__, buf, table_id);
192 pbr_nht_route_installed_for_table(table_id);
193 break;
194 case ZAPI_ROUTE_REMOVED:
195 DEBUGD(&pbr_dbg_zebra,
196 "%s: [%s] Route Removed succeeded for table: %u",
197 __PRETTY_FUNCTION__, buf, table_id);
198 pbr_nht_route_removed_for_table(table_id);
199 break;
200 case ZAPI_ROUTE_REMOVE_FAIL:
201 DEBUGD(&pbr_dbg_zebra,
202 "%s: [%s] Route remove fail for table: %u",
203 __PRETTY_FUNCTION__, buf, table_id);
204 break;
205 }
206
207 return 0;
208}
209
121f9dee 210static int rule_notify_owner(ZAPI_CALLBACK_ARGS)
e5c83d9b
DS
211{
212 uint32_t seqno, priority, unique;
213 enum zapi_rule_notify_owner note;
214 struct pbr_map_sequence *pbrms;
37c606ff 215 struct pbr_map_interface *pmi;
e5c83d9b 216 ifindex_t ifi;
37c606ff 217 uint64_t installed;
e5c83d9b
DS
218
219 if (!zapi_rule_notify_decode(zclient->ibuf, &seqno, &priority, &unique,
220 &ifi, &note))
221 return -1;
222
37c606ff
DS
223 pmi = NULL;
224 pbrms = pbrms_lookup_unique(unique, ifi, &pmi);
e5c83d9b
DS
225 if (!pbrms) {
226 DEBUGD(&pbr_dbg_zebra,
227 "%s: Failure to lookup pbrms based upon %u",
228 __PRETTY_FUNCTION__, unique);
229 return 0;
230 }
231
37c606ff
DS
232 installed = 1 << pmi->install_bit;
233
e5c83d9b
DS
234 switch (note) {
235 case ZAPI_RULE_FAIL_INSTALL:
37c606ff 236 pbrms->installed &= ~installed;
e5c83d9b
DS
237 break;
238 case ZAPI_RULE_INSTALLED:
37c606ff 239 pbrms->installed |= installed;
e5c83d9b 240 break;
373dd3b5 241 case ZAPI_RULE_FAIL_REMOVE:
fde8af8d 242 /* Don't change state on rule removal failure */
fde8af8d 243 break;
e5c83d9b 244 case ZAPI_RULE_REMOVED:
0f03639d 245 pbrms->installed &= ~installed;
e5c83d9b
DS
246 break;
247 }
248
23e8679f
SW
249 DEBUGD(&pbr_dbg_zebra, "%s: Received %s: %" PRIu64, __func__,
250 zapi_rule_notify_owner2str(note), pbrms->installed);
251
38e9ccde
DS
252 pbr_map_final_interface_deletion(pbrms->parent, pmi);
253
e5c83d9b
DS
254 return 0;
255}
256
257static void zebra_connected(struct zclient *zclient)
258{
2f61710b
DS
259 DEBUGD(&pbr_dbg_zebra, "%s: Registering for fun and profit",
260 __PRETTY_FUNCTION__);
e5c83d9b
DS
261 zclient_send_reg_requests(zclient, VRF_DEFAULT);
262}
263
264static void route_add_helper(struct zapi_route *api, struct nexthop_group nhg,
265 uint8_t install_afi)
266{
267 struct zapi_nexthop *api_nh;
2f61710b 268 char buf[PREFIX_STRLEN];
e5c83d9b
DS
269 struct nexthop *nhop;
270 int i;
271
272 api->prefix.family = install_afi;
273
2f61710b
DS
274 DEBUGD(&pbr_dbg_zebra, "\tEncoding %s",
275 prefix2str(&api->prefix, buf, sizeof(buf)));
276
e5c83d9b
DS
277 i = 0;
278 for (ALL_NEXTHOPS(nhg, nhop)) {
279 api_nh = &api->nexthops[i];
280 api_nh->vrf_id = nhop->vrf_id;
281 api_nh->type = nhop->type;
bd054c1a 282 api_nh->weight = nhop->weight;
e5c83d9b
DS
283 switch (nhop->type) {
284 case NEXTHOP_TYPE_IPV4:
285 api_nh->gate.ipv4 = nhop->gate.ipv4;
286 break;
287 case NEXTHOP_TYPE_IPV4_IFINDEX:
288 api_nh->gate.ipv4 = nhop->gate.ipv4;
289 api_nh->ifindex = nhop->ifindex;
290 break;
291 case NEXTHOP_TYPE_IFINDEX:
292 api_nh->ifindex = nhop->ifindex;
293 break;
294 case NEXTHOP_TYPE_IPV6:
295 memcpy(&api_nh->gate.ipv6, &nhop->gate.ipv6, 16);
296 break;
297 case NEXTHOP_TYPE_IPV6_IFINDEX:
298 api_nh->ifindex = nhop->ifindex;
299 memcpy(&api_nh->gate.ipv6, &nhop->gate.ipv6, 16);
300 break;
301 case NEXTHOP_TYPE_BLACKHOLE:
302 api_nh->bh_type = nhop->bh_type;
303 break;
304 }
305 i++;
306 }
307 api->nexthop_num = i;
308
309 zclient_route_send(ZEBRA_ROUTE_ADD, zclient, api);
310}
311
312/*
313 * This function assumes a default route is being
314 * installed into the appropriate tableid
315 */
316void route_add(struct pbr_nexthop_group_cache *pnhgc, struct nexthop_group nhg,
317 afi_t install_afi)
318{
319 struct zapi_route api;
320
2f61710b
DS
321 DEBUGD(&pbr_dbg_zebra, "%s for Table: %d", __PRETTY_FUNCTION__,
322 pnhgc->table_id);
323
e5c83d9b
DS
324 memset(&api, 0, sizeof(api));
325
326 api.vrf_id = VRF_DEFAULT;
327 api.type = ZEBRA_ROUTE_PBR;
328 api.safi = SAFI_UNICAST;
329 /*
330 * Sending a default route
331 */
332 api.tableid = pnhgc->table_id;
333 SET_FLAG(api.flags, ZEBRA_FLAG_ALLOW_RECURSION);
334 SET_FLAG(api.message, ZAPI_MESSAGE_TABLEID);
335 SET_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP);
336 switch (install_afi) {
337 case AFI_MAX:
338 route_add_helper(&api, nhg, AF_INET);
339 route_add_helper(&api, nhg, AF_INET6);
340 break;
341 case AFI_IP:
342 route_add_helper(&api, nhg, AF_INET);
343 break;
344 case AFI_IP6:
345 route_add_helper(&api, nhg, AF_INET6);
346 break;
347 case AFI_L2VPN:
348 DEBUGD(&pbr_dbg_zebra,
349 "%s: Asked to install unsupported route type: L2VPN",
350 __PRETTY_FUNCTION__);
351 break;
b26f891d
SW
352 case AFI_UNSPEC:
353 DEBUGD(&pbr_dbg_zebra,
354 "%s: Asked to install unspecified route type",
355 __PRETTY_FUNCTION__);
356 break;
e5c83d9b
DS
357 }
358}
359
360/*
361 * This function assumes a default route is being
362 * removed from the appropriate tableid
363 */
364void route_delete(struct pbr_nexthop_group_cache *pnhgc, afi_t afi)
365{
366 struct zapi_route api;
367
2f61710b
DS
368 DEBUGD(&pbr_dbg_zebra, "%s for Table: %d", __PRETTY_FUNCTION__,
369 pnhgc->table_id);
370
e5c83d9b
DS
371 memset(&api, 0, sizeof(api));
372 api.vrf_id = VRF_DEFAULT;
373 api.type = ZEBRA_ROUTE_PBR;
374 api.safi = SAFI_UNICAST;
375
376 api.tableid = pnhgc->table_id;
377 SET_FLAG(api.message, ZAPI_MESSAGE_TABLEID);
378
379 switch (afi) {
380 case AFI_IP:
381 api.prefix.family = AF_INET;
382 zclient_route_send(ZEBRA_ROUTE_DELETE, zclient, &api);
383 break;
384 case AFI_IP6:
385 api.prefix.family = AF_INET6;
386 zclient_route_send(ZEBRA_ROUTE_DELETE, zclient, &api);
387 break;
388 case AFI_MAX:
389 api.prefix.family = AF_INET;
390 zclient_route_send(ZEBRA_ROUTE_DELETE, zclient, &api);
391 api.prefix.family = AF_INET6;
392 zclient_route_send(ZEBRA_ROUTE_DELETE, zclient, &api);
393 break;
394 case AFI_L2VPN:
395 DEBUGD(&pbr_dbg_zebra,
396 "%s: Asked to delete unsupported route type: L2VPN",
397 __PRETTY_FUNCTION__);
398 break;
b26f891d
SW
399 case AFI_UNSPEC:
400 DEBUGD(&pbr_dbg_zebra,
401 "%s: Asked to delete unspecified route type",
402 __PRETTY_FUNCTION__);
403 break;
e5c83d9b 404 }
e5c83d9b
DS
405}
406
121f9dee 407static int pbr_zebra_nexthop_update(ZAPI_CALLBACK_ARGS)
e5c83d9b
DS
408{
409 struct zapi_route nhr;
410 char buf[PREFIX2STR_BUFFER];
411 uint32_t i;
412
54317f2c
A
413 if (!zapi_nexthop_update_decode(zclient->ibuf, &nhr)) {
414 zlog_warn("Failure to decode Nexthop update message");
415 return 0;
416 }
e5c83d9b
DS
417
418 if (DEBUG_MODE_CHECK(&pbr_dbg_zebra, DEBUG_MODE_ALL)) {
419
420 DEBUGD(&pbr_dbg_zebra, "%s: Received Nexthop update: %s",
421 __PRETTY_FUNCTION__,
422 prefix2str(&nhr.prefix, buf, sizeof(buf)));
423
424 DEBUGD(&pbr_dbg_zebra, "%s: (\tNexthops(%u)",
425 __PRETTY_FUNCTION__, nhr.nexthop_num);
426
427 for (i = 0; i < nhr.nexthop_num; i++) {
428 DEBUGD(&pbr_dbg_zebra,
429 "%s: \tType: %d: vrf: %d, ifindex: %d gate: %s",
430 __PRETTY_FUNCTION__, nhr.nexthops[i].type,
431 nhr.nexthops[i].vrf_id, nhr.nexthops[i].ifindex,
432 inet_ntoa(nhr.nexthops[i].gate.ipv4));
433 }
434 }
435
436 pbr_nht_nexthop_update(&nhr);
437 return 1;
438}
439
440extern struct zebra_privs_t pbr_privs;
441
442void pbr_zebra_init(void)
443{
444 struct zclient_options opt = { .receive_notify = true };
445
26f63a1e 446 zclient = zclient_new(master, &opt);
e5c83d9b
DS
447
448 zclient_init(zclient, ZEBRA_ROUTE_PBR, 0, &pbr_privs);
449 zclient->zebra_connected = zebra_connected;
e5c83d9b
DS
450 zclient->interface_address_add = interface_address_add;
451 zclient->interface_address_delete = interface_address_delete;
be3b67b5 452 zclient->interface_vrf_update = interface_vrf_update;
e5c83d9b
DS
453 zclient->route_notify_owner = route_notify_owner;
454 zclient->rule_notify_owner = rule_notify_owner;
455 zclient->nexthop_update = pbr_zebra_nexthop_update;
456}
457
458void pbr_send_rnh(struct nexthop *nhop, bool reg)
459{
460 uint32_t command;
461 struct prefix p;
462
463 command = (reg) ?
464 ZEBRA_NEXTHOP_REGISTER : ZEBRA_NEXTHOP_UNREGISTER;
465
466 memset(&p, 0, sizeof(p));
d3765386 467 switch (nhop->type) {
e5c83d9b
DS
468 case NEXTHOP_TYPE_IFINDEX:
469 case NEXTHOP_TYPE_BLACKHOLE:
470 return;
471 case NEXTHOP_TYPE_IPV4:
472 case NEXTHOP_TYPE_IPV4_IFINDEX:
473 p.family = AF_INET;
474 p.u.prefix4.s_addr = nhop->gate.ipv4.s_addr;
475 p.prefixlen = 32;
476 break;
477 case NEXTHOP_TYPE_IPV6:
478 case NEXTHOP_TYPE_IPV6_IFINDEX:
479 p.family = AF_INET6;
480 memcpy(&p.u.prefix6, &nhop->gate.ipv6, 16);
481 p.prefixlen = 128;
cb254f41
SW
482 if (IN6_IS_ADDR_LINKLOCAL(&nhop->gate.ipv6))
483 /*
484 * Don't bother tracking link locals, just track their
485 * interface state.
486 */
487 return;
e5c83d9b
DS
488 break;
489 }
490
491 if (zclient_send_rnh(zclient, command, &p,
492 false, nhop->vrf_id) < 0) {
493 zlog_warn("%s: Failure to send nexthop to zebra",
494 __PRETTY_FUNCTION__);
495 }
496}
497
498static void pbr_encode_pbr_map_sequence_prefix(struct stream *s,
499 struct prefix *p,
49027ce8 500 unsigned char family)
e5c83d9b
DS
501{
502 struct prefix any;
503
504 if (!p) {
505 memset(&any, 0, sizeof(any));
506 any.family = family;
507 p = &any;
508 }
509
510 stream_putc(s, p->family);
511 stream_putc(s, p->prefixlen);
512 stream_put(s, &p->u.prefix, prefix_blen(p));
513}
514
be3b67b5
SW
515static void
516pbr_encode_pbr_map_sequence_vrf(struct stream *s,
517 const struct pbr_map_sequence *pbrms,
518 const struct interface *ifp)
519{
520 struct pbr_vrf *pbr_vrf;
521
522 if (pbrms->vrf_unchanged)
523 pbr_vrf = pbr_vrf_lookup_by_id(ifp->vrf_id);
524 else
525 pbr_vrf = pbr_vrf_lookup_by_name(pbrms->vrf_name);
526
527 if (!pbr_vrf) {
528 DEBUGD(&pbr_dbg_zebra, "%s: VRF not found", __func__);
529 return;
530 }
531
532 stream_putl(s, pbr_vrf->vrf->data.l.table_id);
533}
534
e5c83d9b
DS
535static void pbr_encode_pbr_map_sequence(struct stream *s,
536 struct pbr_map_sequence *pbrms,
537 struct interface *ifp)
538{
49027ce8 539 unsigned char family;
e5c83d9b
DS
540
541 family = AF_INET;
49027ce8
DS
542 if (pbrms->family)
543 family = pbrms->family;
e5c83d9b
DS
544
545 stream_putl(s, pbrms->seqno);
546 stream_putl(s, pbrms->ruleno);
547 stream_putl(s, pbrms->unique);
548 pbr_encode_pbr_map_sequence_prefix(s, pbrms->src, family);
549 stream_putw(s, 0); /* src port */
550 pbr_encode_pbr_map_sequence_prefix(s, pbrms->dst, family);
551 stream_putw(s, 0); /* dst port */
95a9fe02 552 stream_putl(s, pbrms->mark);
be3b67b5
SW
553
554 if (pbrms->vrf_unchanged || pbrms->vrf_lookup)
555 pbr_encode_pbr_map_sequence_vrf(s, pbrms, ifp);
556 else if (pbrms->nhgrp_name)
e5c83d9b
DS
557 stream_putl(s, pbr_nht_get_table(pbrms->nhgrp_name));
558 else if (pbrms->nhg)
559 stream_putl(s, pbr_nht_get_table(pbrms->internal_nhg_name));
560 stream_putl(s, ifp->ifindex);
561}
562
b13e5ad6
DS
563void pbr_send_pbr_map(struct pbr_map_sequence *pbrms,
564 struct pbr_map_interface *pmi, bool install)
e5c83d9b 565{
b13e5ad6 566 struct pbr_map *pbrm = pbrms->parent;
e5c83d9b 567 struct stream *s;
10a00758 568 uint64_t is_installed = (uint64_t)1 << pmi->install_bit;
37c606ff
DS
569
570 is_installed &= pbrms->installed;
e5c83d9b 571
37c606ff
DS
572 DEBUGD(&pbr_dbg_zebra, "%s: for %s %d(%" PRIu64 ")",
573 __PRETTY_FUNCTION__, pbrm->name, install, is_installed);
9b71ea4b
DS
574
575 /*
576 * If we are installed and asked to do so again
577 * just return. If we are not installed and asked
578 * and asked to delete just return;
579 */
37c606ff 580 if (install && is_installed)
9b71ea4b
DS
581 return;
582
37c606ff 583 if (!install && !is_installed)
9b71ea4b 584 return;
e5c83d9b
DS
585
586 s = zclient->obuf;
587 stream_reset(s);
588
589 zclient_create_header(s,
590 install ? ZEBRA_RULE_ADD : ZEBRA_RULE_DELETE,
591 VRF_DEFAULT);
592
b13e5ad6
DS
593 /*
594 * We are sending one item at a time at the moment
595 */
596 stream_putl(s, 1);
e5c83d9b 597
b13e5ad6
DS
598 DEBUGD(&pbr_dbg_zebra, "%s: \t%s %s %d %s %u",
599 __PRETTY_FUNCTION__, install ? "Installing" : "Deleting",
600 pbrm->name, install, pmi->ifp->name, pmi->delete);
e5c83d9b 601
b13e5ad6 602 pbr_encode_pbr_map_sequence(s, pbrms, pmi->ifp);
e5c83d9b 603
e5c83d9b
DS
604 stream_putw_at(s, 0, stream_get_endp(s));
605
e5c83d9b
DS
606 zclient_send_message(zclient);
607}