]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_pbr.c
Merge pull request #9798 from abuibrahim/master
[mirror_frr.git] / zebra / zebra_pbr.c
1 /* Zebra Policy Based Routing (PBR) main handling.
2 * Copyright (C) 2018 Cumulus Networks, Inc.
3 *
4 * This file is part of FRR.
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
17 * along with FRR; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22 #include <zebra.h>
23
24 #include <jhash.h>
25 #include <hash.h>
26 #include <memory.h>
27 #include <hook.h>
28
29 #include "zebra/zebra_router.h"
30 #include "zebra/zebra_pbr.h"
31 #include "zebra/rt.h"
32 #include "zebra/zapi_msg.h"
33 #include "zebra/zserv.h"
34 #include "zebra/debug.h"
35
36 /* definitions */
37 DEFINE_MTYPE_STATIC(ZEBRA, PBR_IPTABLE_IFNAME, "PBR interface list");
38
39 /* definitions */
40 static const struct message ipset_type_msg[] = {
41 {IPSET_NET_PORT_NET, "net,port,net"},
42 {IPSET_NET_PORT, "net,port"},
43 {IPSET_NET_NET, "net,net"},
44 {IPSET_NET, "net"},
45 {0}
46 };
47
48 const struct message icmp_typecode_str[] = {
49 { 0 << 8, "echo-reply"},
50 { 0 << 8, "pong"},
51 { 3 << 8, "network-unreachable"},
52 { (3 << 8) + 1, "host-unreachable"},
53 { (3 << 8) + 2, "protocol-unreachable"},
54 { (3 << 8) + 3, "port-unreachable"},
55 { (3 << 8) + 4, "fragmentation-needed"},
56 { (3 << 8) + 5, "source-route-failed"},
57 { (3 << 8) + 6, "network-unknown"},
58 { (3 << 8) + 7, "host-unknown"},
59 { (3 << 8) + 9, "network-prohibited"},
60 { (3 << 8) + 10, "host-prohibited"},
61 { (3 << 8) + 11, "TOS-network-unreachable"},
62 { (3 << 8) + 12, "TOS-host-unreachable"},
63 { (3 << 8) + 13, "communication-prohibited"},
64 { (3 << 8) + 14, "host-precedence-violation"},
65 { (3 << 8) + 15, "precedence-cutoff"},
66 { 4 << 8, "source-quench"},
67 { 5 << 8, "network-redirect"},
68 { (5 << 8) + 1, "host-redirect"},
69 { (5 << 8) + 2, "TOS-network-redirect"},
70 { (5 << 8) + 3, "TOS-host-redirect"},
71 { 8 << 8, "echo-request"},
72 { 8 << 8, "ping"},
73 { 9 << 8, "router-advertisement"},
74 { 10 << 8, "router-solicitation"},
75 { 11 << 8, "ttl-zero-during-transit"},
76 { (11 << 8) + 1, "ttl-zero-during-reassembly"},
77 { 12 << 8, "ip-header-bad"},
78 { (12 << 8) + 1, "required-option-missing"},
79 { 13 << 8, "timestamp-request"},
80 { 14 << 8, "timestamp-reply"},
81 { 17 << 8, "address-mask-request"},
82 { 18 << 8, "address-mask-reply"},
83 {0}
84 };
85
86 const struct message icmpv6_typecode_str[] = {
87 { 128 << 8, "echo-request"},
88 { 129 << 8, "echo-reply"},
89 { 1 << 8, "no-route"},
90 { (1 << 8) + 1, "communication-prohibited"},
91 { (1 << 8) + 3, "address-unreachable"},
92 { (1 << 8) + 4, "port-unreachable"},
93 { (2 << 8), "packet-too-big"},
94 { 3 << 0, "ttl-zero-during-transit"},
95 { (3 << 8) + 1, "ttl-zero-during-reassembly"},
96 { 4 << 0, "bad-header"},
97 { (4 << 0) + 1, "unknown-header-type"},
98 { (4 << 0) + 2, "unknown-option"},
99 { 133 << 8, "router-solicitation"},
100 { 134 << 8, "router-advertisement"},
101 { 135 << 8, "neighbor-solicitation"},
102 { 136 << 8, "neighbor-advertisement"},
103 { 137 << 8, "redirect"},
104 {0}
105 };
106
107 /* definitions */
108 static const struct message tcp_value_str[] = {
109 {TCP_HEADER_FIN, "FIN"},
110 {TCP_HEADER_SYN, "SYN"},
111 {TCP_HEADER_RST, "RST"},
112 {TCP_HEADER_PSH, "PSH"},
113 {TCP_HEADER_ACK, "ACK"},
114 {TCP_HEADER_URG, "URG"},
115 {0}
116 };
117
118 static const struct message fragment_value_str[] = {
119 {1, "dont-fragment"},
120 {2, "is-fragment"},
121 {4, "first-fragment"},
122 {8, "last-fragment"},
123 {0}
124 };
125
126 /* static function declarations */
127 DEFINE_HOOK(zebra_pbr_ipset_entry_get_stat,
128 (struct zebra_pbr_ipset_entry *ipset, uint64_t *pkts,
129 uint64_t *bytes),
130 (ipset, pkts, bytes));
131
132 DEFINE_HOOK(zebra_pbr_iptable_get_stat,
133 (struct zebra_pbr_iptable *iptable, uint64_t *pkts,
134 uint64_t *bytes),
135 (iptable, pkts, bytes));
136
137 DEFINE_HOOK(zebra_pbr_iptable_update,
138 (int cmd, struct zebra_pbr_iptable *iptable), (cmd, iptable));
139
140 DEFINE_HOOK(zebra_pbr_ipset_entry_update,
141 (int cmd, struct zebra_pbr_ipset_entry *ipset), (cmd, ipset));
142
143 DEFINE_HOOK(zebra_pbr_ipset_update,
144 (int cmd, struct zebra_pbr_ipset *ipset), (cmd, ipset));
145
146 /* Private functions */
147
148 /* Public functions */
149 void zebra_pbr_rules_free(void *arg)
150 {
151 struct zebra_pbr_rule *rule;
152
153 rule = (struct zebra_pbr_rule *)arg;
154
155 (void)dplane_pbr_rule_delete(rule);
156 XFREE(MTYPE_TMP, rule);
157 }
158
159 uint32_t zebra_pbr_rules_hash_key(const void *arg)
160 {
161 const struct zebra_pbr_rule *rule;
162 uint32_t key;
163
164 rule = arg;
165 key = jhash_3words(rule->rule.seq, rule->rule.priority,
166 rule->rule.action.table,
167 prefix_hash_key(&rule->rule.filter.src_ip));
168
169 key = jhash_3words(rule->rule.filter.fwmark, rule->vrf_id,
170 rule->rule.filter.ip_proto, key);
171
172 key = jhash(rule->ifname, strlen(rule->ifname), key);
173
174 return jhash_3words(rule->rule.filter.src_port,
175 rule->rule.filter.dst_port,
176 prefix_hash_key(&rule->rule.filter.dst_ip),
177 jhash_1word(rule->rule.unique, key));
178 }
179
180 bool zebra_pbr_rules_hash_equal(const void *arg1, const void *arg2)
181 {
182 const struct zebra_pbr_rule *r1, *r2;
183
184 r1 = (const struct zebra_pbr_rule *)arg1;
185 r2 = (const struct zebra_pbr_rule *)arg2;
186
187 if (r1->rule.seq != r2->rule.seq)
188 return false;
189
190 if (r1->rule.priority != r2->rule.priority)
191 return false;
192
193 if (r1->rule.unique != r2->rule.unique)
194 return false;
195
196 if (r1->rule.action.table != r2->rule.action.table)
197 return false;
198
199 if (r1->rule.filter.src_port != r2->rule.filter.src_port)
200 return false;
201
202 if (r1->rule.filter.dst_port != r2->rule.filter.dst_port)
203 return false;
204
205 if (r1->rule.filter.fwmark != r2->rule.filter.fwmark)
206 return false;
207
208 if (r1->rule.filter.ip_proto != r2->rule.filter.ip_proto)
209 return false;
210
211 if (!prefix_same(&r1->rule.filter.src_ip, &r2->rule.filter.src_ip))
212 return false;
213
214 if (!prefix_same(&r1->rule.filter.dst_ip, &r2->rule.filter.dst_ip))
215 return false;
216
217 if (strcmp(r1->rule.ifname, r2->rule.ifname) != 0)
218 return false;
219
220 if (r1->vrf_id != r2->vrf_id)
221 return false;
222
223 return true;
224 }
225
226 struct pbr_rule_unique_lookup {
227 struct zebra_pbr_rule *rule;
228 uint32_t unique;
229 char ifname[INTERFACE_NAMSIZ + 1];
230 vrf_id_t vrf_id;
231 };
232
233 static int pbr_rule_lookup_unique_walker(struct hash_bucket *b, void *data)
234 {
235 struct pbr_rule_unique_lookup *pul = data;
236 struct zebra_pbr_rule *rule = b->data;
237
238 if (pul->unique == rule->rule.unique
239 && strncmp(pul->ifname, rule->rule.ifname, INTERFACE_NAMSIZ) == 0
240 && pul->vrf_id == rule->vrf_id) {
241 pul->rule = rule;
242 return HASHWALK_ABORT;
243 }
244
245 return HASHWALK_CONTINUE;
246 }
247
248 static struct zebra_pbr_rule *
249 pbr_rule_lookup_unique(struct zebra_pbr_rule *zrule)
250 {
251 struct pbr_rule_unique_lookup pul;
252
253 pul.unique = zrule->rule.unique;
254 strlcpy(pul.ifname, zrule->rule.ifname, INTERFACE_NAMSIZ);
255 pul.rule = NULL;
256 pul.vrf_id = zrule->vrf_id;
257 hash_walk(zrouter.rules_hash, &pbr_rule_lookup_unique_walker, &pul);
258
259 return pul.rule;
260 }
261
262 void zebra_pbr_ipset_free(void *arg)
263 {
264 struct zebra_pbr_ipset *ipset;
265
266 ipset = (struct zebra_pbr_ipset *)arg;
267 hook_call(zebra_pbr_ipset_update, 0, ipset);
268 XFREE(MTYPE_TMP, ipset);
269 }
270
271 uint32_t zebra_pbr_ipset_hash_key(const void *arg)
272 {
273 const struct zebra_pbr_ipset *ipset = arg;
274 uint32_t *pnt = (uint32_t *)&ipset->ipset_name;
275 uint32_t key = jhash_1word(ipset->vrf_id, 0x63ab42de);
276
277 key = jhash_1word(ipset->family, key);
278
279 return jhash2(pnt, ZEBRA_IPSET_NAME_HASH_SIZE, key);
280 }
281
282 bool zebra_pbr_ipset_hash_equal(const void *arg1, const void *arg2)
283 {
284 const struct zebra_pbr_ipset *r1, *r2;
285
286 r1 = (const struct zebra_pbr_ipset *)arg1;
287 r2 = (const struct zebra_pbr_ipset *)arg2;
288
289 if (r1->type != r2->type)
290 return false;
291 if (r1->unique != r2->unique)
292 return false;
293 if (r1->vrf_id != r2->vrf_id)
294 return false;
295 if (r1->family != r2->family)
296 return false;
297
298 if (strncmp(r1->ipset_name, r2->ipset_name,
299 ZEBRA_IPSET_NAME_SIZE))
300 return false;
301 return true;
302 }
303
304 void zebra_pbr_ipset_entry_free(void *arg)
305 {
306 struct zebra_pbr_ipset_entry *ipset;
307
308 ipset = (struct zebra_pbr_ipset_entry *)arg;
309
310 hook_call(zebra_pbr_ipset_entry_update, 0, ipset);
311
312 XFREE(MTYPE_TMP, ipset);
313 }
314
315 uint32_t zebra_pbr_ipset_entry_hash_key(const void *arg)
316 {
317 const struct zebra_pbr_ipset_entry *ipset;
318 uint32_t key;
319
320 ipset = arg;
321 key = prefix_hash_key(&ipset->src);
322 key = jhash_1word(ipset->unique, key);
323 key = jhash_1word(prefix_hash_key(&ipset->dst), key);
324 key = jhash(&ipset->dst_port_min, 2, key);
325 key = jhash(&ipset->dst_port_max, 2, key);
326 key = jhash(&ipset->src_port_min, 2, key);
327 key = jhash(&ipset->src_port_max, 2, key);
328 key = jhash(&ipset->proto, 1, key);
329
330 return key;
331 }
332
333 bool zebra_pbr_ipset_entry_hash_equal(const void *arg1, const void *arg2)
334 {
335 const struct zebra_pbr_ipset_entry *r1, *r2;
336
337 r1 = (const struct zebra_pbr_ipset_entry *)arg1;
338 r2 = (const struct zebra_pbr_ipset_entry *)arg2;
339
340 if (r1->unique != r2->unique)
341 return false;
342
343 if (!prefix_same(&r1->src, &r2->src))
344 return false;
345
346 if (!prefix_same(&r1->dst, &r2->dst))
347 return false;
348
349 if (r1->src_port_min != r2->src_port_min)
350 return false;
351
352 if (r1->src_port_max != r2->src_port_max)
353 return false;
354
355 if (r1->dst_port_min != r2->dst_port_min)
356 return false;
357
358 if (r1->dst_port_max != r2->dst_port_max)
359 return false;
360
361 if (r1->proto != r2->proto)
362 return false;
363 return true;
364 }
365
366 /* this function gives option to flush plugin memory contexts
367 * with all parameter. set it to true to flush all
368 * set it to false to flush only passed arg argument
369 */
370 static void _zebra_pbr_iptable_free_all(void *arg, bool all)
371 {
372 struct zebra_pbr_iptable *iptable;
373 struct listnode *node, *nnode;
374 char *name;
375
376 iptable = (struct zebra_pbr_iptable *)arg;
377
378 if (all)
379 hook_call(zebra_pbr_iptable_update, 0, iptable);
380
381 if (iptable->interface_name_list) {
382 for (ALL_LIST_ELEMENTS(iptable->interface_name_list, node,
383 nnode, name)) {
384 XFREE(MTYPE_PBR_IPTABLE_IFNAME, name);
385 list_delete_node(iptable->interface_name_list, node);
386 }
387 list_delete(&iptable->interface_name_list);
388 }
389 XFREE(MTYPE_TMP, iptable);
390 }
391
392 void zebra_pbr_iptable_free(void *arg)
393 {
394 _zebra_pbr_iptable_free_all(arg, false);
395 }
396
397 uint32_t zebra_pbr_iptable_hash_key(const void *arg)
398 {
399 const struct zebra_pbr_iptable *iptable = arg;
400 uint32_t *pnt = (uint32_t *)&(iptable->ipset_name);
401 uint32_t key;
402
403 key = jhash2(pnt, ZEBRA_IPSET_NAME_HASH_SIZE,
404 0x63ab42de);
405 key = jhash_1word(iptable->fwmark, key);
406 key = jhash_1word(iptable->family, key);
407 key = jhash_1word(iptable->flow_label, key);
408 key = jhash_1word(iptable->pkt_len_min, key);
409 key = jhash_1word(iptable->pkt_len_max, key);
410 key = jhash_1word(iptable->tcp_flags, key);
411 key = jhash_1word(iptable->tcp_mask_flags, key);
412 key = jhash_1word(iptable->dscp_value, key);
413 key = jhash_1word(iptable->protocol, key);
414 key = jhash_1word(iptable->fragment, key);
415 key = jhash_1word(iptable->vrf_id, key);
416
417 return jhash_3words(iptable->filter_bm, iptable->type,
418 iptable->unique, key);
419 }
420
421 bool zebra_pbr_iptable_hash_equal(const void *arg1, const void *arg2)
422 {
423 const struct zebra_pbr_iptable *r1, *r2;
424
425 r1 = (const struct zebra_pbr_iptable *)arg1;
426 r2 = (const struct zebra_pbr_iptable *)arg2;
427
428 if (r1->vrf_id != r2->vrf_id)
429 return false;
430 if (r1->type != r2->type)
431 return false;
432 if (r1->unique != r2->unique)
433 return false;
434 if (r1->filter_bm != r2->filter_bm)
435 return false;
436 if (r1->fwmark != r2->fwmark)
437 return false;
438 if (r1->action != r2->action)
439 return false;
440 if (strncmp(r1->ipset_name, r2->ipset_name,
441 ZEBRA_IPSET_NAME_SIZE))
442 return false;
443 if (r1->family != r2->family)
444 return false;
445 if (r1->flow_label != r2->flow_label)
446 return false;
447 if (r1->pkt_len_min != r2->pkt_len_min)
448 return false;
449 if (r1->pkt_len_max != r2->pkt_len_max)
450 return false;
451 if (r1->tcp_flags != r2->tcp_flags)
452 return false;
453 if (r1->tcp_mask_flags != r2->tcp_mask_flags)
454 return false;
455 if (r1->dscp_value != r2->dscp_value)
456 return false;
457 if (r1->fragment != r2->fragment)
458 return false;
459 if (r1->protocol != r2->protocol)
460 return false;
461 return true;
462 }
463
464 static void *pbr_rule_alloc_intern(void *arg)
465 {
466 struct zebra_pbr_rule *zpr;
467 struct zebra_pbr_rule *new;
468
469 zpr = (struct zebra_pbr_rule *)arg;
470
471 new = XCALLOC(MTYPE_TMP, sizeof(*new));
472
473 memcpy(new, zpr, sizeof(*zpr));
474
475 return new;
476 }
477
478 static int pbr_rule_release(struct zebra_pbr_rule *rule)
479 {
480 struct zebra_pbr_rule *lookup;
481
482 lookup = hash_lookup(zrouter.rules_hash, rule);
483
484 if (!lookup)
485 return -ENOENT;
486
487 hash_release(zrouter.rules_hash, lookup);
488 XFREE(MTYPE_TMP, lookup);
489
490 return 0;
491 }
492
493 void zebra_pbr_add_rule(struct zebra_pbr_rule *rule)
494 {
495 struct zebra_pbr_rule *found;
496
497 /**
498 * Check if we already have it (this checks via a unique ID, walking
499 * over the hash table, not via a hash operation).
500 */
501 found = pbr_rule_lookup_unique(rule);
502
503 /* If found, this is an update */
504 if (found) {
505 if (IS_ZEBRA_DEBUG_PBR)
506 zlog_debug(
507 "%s: seq: %d, prior: %d, unique: %d, ifname: %s -- update",
508 __func__, rule->rule.seq, rule->rule.priority,
509 rule->rule.unique, rule->rule.ifname);
510
511 (void)dplane_pbr_rule_update(found, rule);
512
513 if (pbr_rule_release(found))
514 zlog_debug(
515 "%s: Rule being updated we know nothing about",
516 __func__);
517
518 } else {
519 if (IS_ZEBRA_DEBUG_PBR)
520 zlog_debug(
521 "%s: seq: %d, prior: %d, unique: %d, ifname: %s -- new",
522 __func__, rule->rule.seq, rule->rule.priority,
523 rule->rule.unique, rule->rule.ifname);
524
525 (void)dplane_pbr_rule_add(rule);
526 }
527
528 (void)hash_get(zrouter.rules_hash, rule, pbr_rule_alloc_intern);
529 }
530
531 void zebra_pbr_del_rule(struct zebra_pbr_rule *rule)
532 {
533 if (IS_ZEBRA_DEBUG_PBR)
534 zlog_debug("%s: seq: %d, prior: %d, unique: %d, ifname: %s",
535 __func__, rule->rule.seq, rule->rule.priority,
536 rule->rule.unique, rule->rule.ifname);
537
538 (void)dplane_pbr_rule_delete(rule);
539
540 if (pbr_rule_release(rule))
541 zlog_debug("%s: Rule being deleted we know nothing about",
542 __func__);
543 }
544
545 void zebra_pbr_process_iptable(struct zebra_dplane_ctx *ctx)
546 {
547 int mode, ret = 0;
548 struct zebra_pbr_iptable ipt;
549
550 if (dplane_ctx_get_op(ctx) == DPLANE_OP_IPTABLE_ADD)
551 mode = 1;
552 else
553 mode = 0;
554
555 dplane_ctx_get_pbr_iptable(ctx, &ipt);
556
557 ret = hook_call(zebra_pbr_iptable_update, mode, &ipt);
558 if (ret)
559 dplane_ctx_set_status(ctx, ZEBRA_DPLANE_REQUEST_SUCCESS);
560 else
561 dplane_ctx_set_status(ctx, ZEBRA_DPLANE_REQUEST_FAILURE);
562 }
563
564 void zebra_pbr_process_ipset(struct zebra_dplane_ctx *ctx)
565 {
566 int mode, ret = 0;
567 struct zebra_pbr_ipset ipset;
568
569 if (dplane_ctx_get_op(ctx) == DPLANE_OP_IPSET_ADD)
570 mode = 1;
571 else
572 mode = 0;
573
574 dplane_ctx_get_pbr_ipset(ctx, &ipset);
575
576 ret = hook_call(zebra_pbr_ipset_update, mode, &ipset);
577 if (ret)
578 dplane_ctx_set_status(ctx, ZEBRA_DPLANE_REQUEST_SUCCESS);
579 else
580 dplane_ctx_set_status(ctx, ZEBRA_DPLANE_REQUEST_FAILURE);
581 }
582
583 void zebra_pbr_process_ipset_entry(struct zebra_dplane_ctx *ctx)
584 {
585 int mode, ret = 0;
586 struct zebra_pbr_ipset_entry ipset_entry;
587 struct zebra_pbr_ipset ipset;
588
589 if (dplane_ctx_get_op(ctx) == DPLANE_OP_IPSET_ENTRY_ADD)
590 mode = 1;
591 else
592 mode = 0;
593
594 dplane_ctx_get_pbr_ipset_entry(ctx, &ipset_entry);
595 dplane_ctx_get_pbr_ipset(ctx, &ipset);
596
597 ipset_entry.backpointer = &ipset;
598
599 ret = hook_call(zebra_pbr_ipset_entry_update, mode, &ipset_entry);
600 if (ret)
601 dplane_ctx_set_status(ctx, ZEBRA_DPLANE_REQUEST_SUCCESS);
602 else
603 dplane_ctx_set_status(ctx, ZEBRA_DPLANE_REQUEST_FAILURE);
604 }
605
606 static void zebra_pbr_cleanup_rules(struct hash_bucket *b, void *data)
607 {
608 struct zebra_pbr_rule *rule = b->data;
609 int *sock = data;
610
611 if (rule->sock == *sock) {
612 (void)dplane_pbr_rule_delete(rule);
613 if (hash_release(zrouter.rules_hash, rule))
614 XFREE(MTYPE_TMP, rule);
615 else
616 zlog_debug(
617 "%s: Rule seq: %u is being cleaned but we can't find it in our tables",
618 __func__, rule->rule.seq);
619 }
620 }
621
622 static void zebra_pbr_cleanup_ipset(struct hash_bucket *b, void *data)
623 {
624 struct zebra_pbr_ipset *ipset = b->data;
625 int *sock = data;
626
627 if (ipset->sock == *sock) {
628 if (hash_release(zrouter.ipset_hash, ipset))
629 zebra_pbr_ipset_free(ipset);
630 else
631 hook_call(zebra_pbr_ipset_update, 0, ipset);
632 }
633 }
634
635 static void zebra_pbr_cleanup_ipset_entry(struct hash_bucket *b, void *data)
636 {
637 struct zebra_pbr_ipset_entry *ipset = b->data;
638 int *sock = data;
639
640 if (ipset->sock == *sock) {
641 if (hash_release(zrouter.ipset_entry_hash, ipset))
642 zebra_pbr_ipset_entry_free(ipset);
643 else
644 hook_call(zebra_pbr_ipset_entry_update, 0, ipset);
645 }
646 }
647
648 static void zebra_pbr_cleanup_iptable(struct hash_bucket *b, void *data)
649 {
650 struct zebra_pbr_iptable *iptable = b->data;
651 int *sock = data;
652
653 if (iptable->sock == *sock) {
654 if (hash_release(zrouter.iptable_hash, iptable))
655 _zebra_pbr_iptable_free_all(iptable, true);
656 else
657 hook_call(zebra_pbr_iptable_update, 0, iptable);
658 }
659 }
660
661 static int zebra_pbr_client_close_cleanup(struct zserv *client)
662 {
663 int sock = client->sock;
664
665 if (!sock)
666 return 0;
667 hash_iterate(zrouter.rules_hash, zebra_pbr_cleanup_rules, &sock);
668 hash_iterate(zrouter.iptable_hash, zebra_pbr_cleanup_iptable, &sock);
669 hash_iterate(zrouter.ipset_entry_hash, zebra_pbr_cleanup_ipset_entry,
670 &sock);
671 hash_iterate(zrouter.ipset_hash, zebra_pbr_cleanup_ipset, &sock);
672 return 1;
673 }
674
675 void zebra_pbr_init(void)
676 {
677 hook_register(zserv_client_close, zebra_pbr_client_close_cleanup);
678 }
679
680 static void *pbr_ipset_alloc_intern(void *arg)
681 {
682 struct zebra_pbr_ipset *zpi;
683 struct zebra_pbr_ipset *new;
684
685 zpi = (struct zebra_pbr_ipset *)arg;
686
687 new = XCALLOC(MTYPE_TMP, sizeof(struct zebra_pbr_ipset));
688
689 memcpy(new, zpi, sizeof(*zpi));
690
691 return new;
692 }
693
694 void zebra_pbr_create_ipset(struct zebra_pbr_ipset *ipset)
695 {
696 (void)hash_get(zrouter.ipset_hash, ipset, pbr_ipset_alloc_intern);
697 (void)dplane_pbr_ipset_add(ipset);
698 }
699
700 void zebra_pbr_destroy_ipset(struct zebra_pbr_ipset *ipset)
701 {
702 struct zebra_pbr_ipset *lookup;
703
704 lookup = hash_lookup(zrouter.ipset_hash, ipset);
705 (void)dplane_pbr_ipset_delete(ipset);
706 if (lookup) {
707 hash_release(zrouter.ipset_hash, lookup);
708 XFREE(MTYPE_TMP, lookup);
709 } else
710 zlog_debug(
711 "%s: IPSet Entry being deleted we know nothing about",
712 __func__);
713 }
714
715 struct pbr_ipset_name_lookup {
716 struct zebra_pbr_ipset *ipset;
717 char ipset_name[ZEBRA_IPSET_NAME_SIZE];
718 };
719
720 const char *zebra_pbr_ipset_type2str(uint32_t type)
721 {
722 return lookup_msg(ipset_type_msg, type,
723 "Unrecognized IPset Type");
724 }
725
726 static int zebra_pbr_ipset_pername_walkcb(struct hash_bucket *bucket, void *arg)
727 {
728 struct pbr_ipset_name_lookup *pinl =
729 (struct pbr_ipset_name_lookup *)arg;
730 struct zebra_pbr_ipset *zpi = (struct zebra_pbr_ipset *)bucket->data;
731
732 if (!strncmp(pinl->ipset_name, zpi->ipset_name,
733 ZEBRA_IPSET_NAME_SIZE)) {
734 pinl->ipset = zpi;
735 return HASHWALK_ABORT;
736 }
737 return HASHWALK_CONTINUE;
738 }
739
740 struct zebra_pbr_ipset *zebra_pbr_lookup_ipset_pername(char *ipsetname)
741 {
742 struct pbr_ipset_name_lookup pinl;
743 struct pbr_ipset_name_lookup *ptr = &pinl;
744
745 if (!ipsetname)
746 return NULL;
747 memset(ptr, 0, sizeof(struct pbr_ipset_name_lookup));
748 snprintf((char *)ptr->ipset_name, ZEBRA_IPSET_NAME_SIZE, "%s",
749 ipsetname);
750 hash_walk(zrouter.ipset_hash, zebra_pbr_ipset_pername_walkcb, ptr);
751 return ptr->ipset;
752 }
753
754 static void *pbr_ipset_entry_alloc_intern(void *arg)
755 {
756 struct zebra_pbr_ipset_entry *zpi;
757 struct zebra_pbr_ipset_entry *new;
758
759 zpi = (struct zebra_pbr_ipset_entry *)arg;
760
761 new = XCALLOC(MTYPE_TMP, sizeof(struct zebra_pbr_ipset_entry));
762
763 memcpy(new, zpi, sizeof(*zpi));
764
765 return new;
766 }
767
768 void zebra_pbr_add_ipset_entry(struct zebra_pbr_ipset_entry *ipset)
769 {
770 (void)hash_get(zrouter.ipset_entry_hash, ipset,
771 pbr_ipset_entry_alloc_intern);
772 (void)dplane_pbr_ipset_entry_add(ipset);
773 }
774
775 void zebra_pbr_del_ipset_entry(struct zebra_pbr_ipset_entry *ipset)
776 {
777 struct zebra_pbr_ipset_entry *lookup;
778
779 lookup = hash_lookup(zrouter.ipset_entry_hash, ipset);
780 (void)dplane_pbr_ipset_entry_delete(ipset);
781 if (lookup) {
782 hash_release(zrouter.ipset_entry_hash, lookup);
783 XFREE(MTYPE_TMP, lookup);
784 } else
785 zlog_debug("%s: IPSet being deleted we know nothing about",
786 __func__);
787 }
788
789 static void *pbr_iptable_alloc_intern(void *arg)
790 {
791 struct zebra_pbr_iptable *zpi;
792 struct zebra_pbr_iptable *new;
793 struct listnode *ln;
794 char *ifname;
795
796 zpi = (struct zebra_pbr_iptable *)arg;
797
798 new = XCALLOC(MTYPE_TMP, sizeof(struct zebra_pbr_iptable));
799
800 /* Deep structure copy */
801 memcpy(new, zpi, sizeof(*zpi));
802 new->interface_name_list = list_new();
803
804 if (zpi->interface_name_list) {
805 for (ALL_LIST_ELEMENTS_RO(zpi->interface_name_list, ln, ifname))
806 listnode_add(new->interface_name_list,
807 XSTRDUP(MTYPE_PBR_IPTABLE_IFNAME, ifname));
808 }
809
810 return new;
811 }
812
813 void zebra_pbr_add_iptable(struct zebra_pbr_iptable *iptable)
814 {
815 (void)hash_get(zrouter.iptable_hash, iptable, pbr_iptable_alloc_intern);
816 (void)dplane_pbr_iptable_add(iptable);
817 }
818
819 void zebra_pbr_del_iptable(struct zebra_pbr_iptable *iptable)
820 {
821 struct zebra_pbr_iptable *lookup;
822
823 lookup = hash_lookup(zrouter.iptable_hash, iptable);
824 (void)dplane_pbr_iptable_delete(iptable);
825 if (lookup) {
826 struct listnode *node, *nnode;
827 char *name;
828
829 hash_release(zrouter.iptable_hash, lookup);
830 for (ALL_LIST_ELEMENTS(iptable->interface_name_list,
831 node, nnode, name)) {
832 XFREE(MTYPE_PBR_IPTABLE_IFNAME, name);
833 list_delete_node(iptable->interface_name_list,
834 node);
835 }
836 list_delete(&iptable->interface_name_list);
837 XFREE(MTYPE_TMP, lookup);
838 } else
839 zlog_debug("%s: IPTable being deleted we know nothing about",
840 __func__);
841 }
842
843 /*
844 * Handle success or failure of rule (un)install in the kernel.
845 */
846 void zebra_pbr_dplane_result(struct zebra_dplane_ctx *ctx)
847 {
848 enum zebra_dplane_result res;
849 enum dplane_op_e op;
850
851 res = dplane_ctx_get_status(ctx);
852 op = dplane_ctx_get_op(ctx);
853 if (op == DPLANE_OP_RULE_ADD || op == DPLANE_OP_RULE_UPDATE)
854 zsend_rule_notify_owner(ctx, res == ZEBRA_DPLANE_REQUEST_SUCCESS
855 ? ZAPI_RULE_INSTALLED
856 : ZAPI_RULE_FAIL_INSTALL);
857 else if (op == DPLANE_OP_RULE_DELETE)
858 zsend_rule_notify_owner(ctx, res == ZEBRA_DPLANE_REQUEST_SUCCESS
859 ? ZAPI_RULE_REMOVED
860 : ZAPI_RULE_FAIL_REMOVE);
861 else if (op == DPLANE_OP_IPTABLE_ADD)
862 zsend_iptable_notify_owner(ctx,
863 res == ZEBRA_DPLANE_REQUEST_SUCCESS
864 ? ZAPI_IPTABLE_INSTALLED
865 : ZAPI_IPTABLE_FAIL_INSTALL);
866 else if (op == DPLANE_OP_IPTABLE_DELETE)
867 zsend_iptable_notify_owner(ctx,
868 res == ZEBRA_DPLANE_REQUEST_SUCCESS
869 ? ZAPI_IPTABLE_REMOVED
870 : ZAPI_IPTABLE_FAIL_REMOVE);
871 else if (op == DPLANE_OP_IPSET_ADD)
872 zsend_ipset_notify_owner(ctx,
873 res == ZEBRA_DPLANE_REQUEST_SUCCESS
874 ? ZAPI_IPSET_INSTALLED
875 : ZAPI_IPSET_FAIL_INSTALL);
876 else if (op == DPLANE_OP_IPSET_DELETE)
877 zsend_ipset_notify_owner(ctx,
878 res == ZEBRA_DPLANE_REQUEST_SUCCESS
879 ? ZAPI_IPSET_REMOVED
880 : ZAPI_IPSET_FAIL_REMOVE);
881 else if (op == DPLANE_OP_IPSET_ENTRY_ADD)
882 zsend_ipset_entry_notify_owner(
883 ctx, res == ZEBRA_DPLANE_REQUEST_SUCCESS
884 ? ZAPI_IPSET_ENTRY_INSTALLED
885 : ZAPI_IPSET_ENTRY_FAIL_INSTALL);
886 else if (op == DPLANE_OP_IPSET_ENTRY_DELETE)
887 zsend_ipset_entry_notify_owner(
888 ctx, res == ZEBRA_DPLANE_REQUEST_SUCCESS
889 ? ZAPI_IPSET_ENTRY_REMOVED
890 : ZAPI_IPSET_ENTRY_FAIL_REMOVE);
891 else
892 flog_err(
893 EC_ZEBRA_PBR_RULE_UPDATE,
894 "Context received in pbr rule dplane result handler with incorrect OP code (%u)",
895 op);
896
897
898 dplane_ctx_fini(&ctx);
899 }
900
901 /*
902 * Handle rule delete notification from kernel.
903 */
904 int kernel_pbr_rule_del(struct zebra_pbr_rule *rule)
905 {
906 return 0;
907 }
908
909 struct zebra_pbr_ipset_entry_unique_display {
910 struct zebra_pbr_ipset *zpi;
911 struct vty *vty;
912 struct zebra_ns *zns;
913 };
914
915 struct zebra_pbr_env_display {
916 struct zebra_ns *zns;
917 struct vty *vty;
918 char *name;
919 };
920
921 static const char *zebra_pbr_prefix2str(union prefixconstptr pu,
922 char *str, int size)
923 {
924 const struct prefix *p = pu.p;
925 char buf[PREFIX2STR_BUFFER];
926
927 if ((p->family == AF_INET && p->prefixlen == IPV4_MAX_BITLEN)
928 || (p->family == AF_INET6 && p->prefixlen == IPV6_MAX_BITLEN)) {
929 snprintf(str, size, "%s", inet_ntop(p->family, &p->u.prefix,
930 buf, PREFIX2STR_BUFFER));
931 return str;
932 }
933 return prefix2str(pu, str, size);
934 }
935
936 static void zebra_pbr_display_icmp(struct vty *vty,
937 struct zebra_pbr_ipset_entry *zpie)
938 {
939 char decoded_str[20];
940 uint16_t port;
941 struct zebra_pbr_ipset *zpi;
942
943 zpi = zpie->backpointer;
944
945 /* range icmp type */
946 if (zpie->src_port_max || zpie->dst_port_max) {
947 vty_out(vty, ":icmp:[type <%u:%u>;code <%u:%u>",
948 zpie->src_port_min, zpie->src_port_max,
949 zpie->dst_port_min, zpie->dst_port_max);
950 } else {
951 port = ((zpie->src_port_min << 8) & 0xff00) +
952 (zpie->dst_port_min & 0xff);
953 memset(decoded_str, 0, sizeof(decoded_str));
954 snprintf(decoded_str, sizeof(decoded_str), "%u/%u",
955 zpie->src_port_min, zpie->dst_port_min);
956 vty_out(vty, ":%s:%s",
957 zpi->family == AF_INET6 ? "ipv6-icmp" : "icmp",
958 lookup_msg(zpi->family == AF_INET6 ?
959 icmpv6_typecode_str : icmp_typecode_str,
960 port, decoded_str));
961 }
962 }
963
964 static void zebra_pbr_display_port(struct vty *vty, uint32_t filter_bm,
965 uint16_t port_min, uint16_t port_max,
966 uint8_t proto)
967 {
968 if (!(filter_bm & PBR_FILTER_PROTO)) {
969 if (port_max)
970 vty_out(vty, ":udp/tcp:%d-%d",
971 port_min, port_max);
972 else
973 vty_out(vty, ":udp/tcp:%d",
974 port_min);
975 } else {
976 if (port_max)
977 vty_out(vty, ":proto %d:%d-%d",
978 proto, port_min, port_max);
979 else
980 vty_out(vty, ":proto %d:%d",
981 proto, port_min);
982 }
983 }
984
985 static int zebra_pbr_show_ipset_entry_walkcb(struct hash_bucket *bucket,
986 void *arg)
987 {
988 struct zebra_pbr_ipset_entry_unique_display *unique =
989 (struct zebra_pbr_ipset_entry_unique_display *)arg;
990 struct zebra_pbr_ipset *zpi = unique->zpi;
991 struct vty *vty = unique->vty;
992 struct zebra_pbr_ipset_entry *zpie =
993 (struct zebra_pbr_ipset_entry *)bucket->data;
994 uint64_t pkts = 0, bytes = 0;
995 int ret = 0;
996
997 if (zpie->backpointer != zpi)
998 return HASHWALK_CONTINUE;
999
1000 if ((zpi->type == IPSET_NET_NET) ||
1001 (zpi->type == IPSET_NET_PORT_NET)) {
1002 char buf[PREFIX_STRLEN];
1003
1004 zebra_pbr_prefix2str(&(zpie->src), buf, sizeof(buf));
1005 vty_out(vty, "\tfrom %s", buf);
1006 if (zpie->filter_bm & PBR_FILTER_SRC_PORT &&
1007 zpie->proto != IPPROTO_ICMP)
1008 zebra_pbr_display_port(vty, zpie->filter_bm,
1009 zpie->src_port_min,
1010 zpie->src_port_max,
1011 zpie->proto);
1012 vty_out(vty, " to ");
1013 zebra_pbr_prefix2str(&(zpie->dst), buf, sizeof(buf));
1014 vty_out(vty, "%s", buf);
1015 if (zpie->filter_bm & PBR_FILTER_DST_PORT &&
1016 zpie->proto != IPPROTO_ICMP)
1017 zebra_pbr_display_port(vty, zpie->filter_bm,
1018 zpie->dst_port_min,
1019 zpie->dst_port_max,
1020 zpie->proto);
1021 if (zpie->proto == IPPROTO_ICMP)
1022 zebra_pbr_display_icmp(vty, zpie);
1023 } else if ((zpi->type == IPSET_NET) ||
1024 (zpi->type == IPSET_NET_PORT)) {
1025 char buf[PREFIX_STRLEN];
1026
1027 if (zpie->filter_bm & PBR_FILTER_SRC_IP) {
1028 zebra_pbr_prefix2str(&(zpie->src), buf, sizeof(buf));
1029 vty_out(vty, "\tfrom %s", buf);
1030 }
1031 if (zpie->filter_bm & PBR_FILTER_SRC_PORT &&
1032 zpie->proto != IPPROTO_ICMP)
1033 zebra_pbr_display_port(vty, zpie->filter_bm,
1034 zpie->src_port_min,
1035 zpie->src_port_max,
1036 zpie->proto);
1037 if (zpie->filter_bm & PBR_FILTER_DST_IP) {
1038 zebra_pbr_prefix2str(&(zpie->dst), buf, sizeof(buf));
1039 vty_out(vty, "\tto %s", buf);
1040 }
1041 if (zpie->filter_bm & PBR_FILTER_DST_PORT &&
1042 zpie->proto != IPPROTO_ICMP)
1043 zebra_pbr_display_port(vty, zpie->filter_bm,
1044 zpie->dst_port_min,
1045 zpie->dst_port_max,
1046 zpie->proto);
1047 if (zpie->proto == IPPROTO_ICMP)
1048 zebra_pbr_display_icmp(vty, zpie);
1049 }
1050 vty_out(vty, " (%u)\n", zpie->unique);
1051
1052 ret = hook_call(zebra_pbr_ipset_entry_get_stat, zpie, &pkts,
1053 &bytes);
1054 if (ret && pkts > 0)
1055 vty_out(vty, "\t pkts %" PRIu64 ", bytes %" PRIu64"\n",
1056 pkts, bytes);
1057 return HASHWALK_CONTINUE;
1058 }
1059
1060 static int zebra_pbr_show_ipset_walkcb(struct hash_bucket *bucket, void *arg)
1061 {
1062 struct zebra_pbr_env_display *uniqueipset =
1063 (struct zebra_pbr_env_display *)arg;
1064 struct zebra_pbr_ipset *zpi = (struct zebra_pbr_ipset *)bucket->data;
1065 struct zebra_pbr_ipset_entry_unique_display unique;
1066 struct vty *vty = uniqueipset->vty;
1067 struct zebra_ns *zns = uniqueipset->zns;
1068
1069 vty_out(vty, "IPset %s type %s family %s\n", zpi->ipset_name,
1070 zebra_pbr_ipset_type2str(zpi->type),
1071 family2str(zpi->family));
1072 unique.vty = vty;
1073 unique.zpi = zpi;
1074 unique.zns = zns;
1075 hash_walk(zrouter.ipset_entry_hash, zebra_pbr_show_ipset_entry_walkcb,
1076 &unique);
1077 vty_out(vty, "\n");
1078 return HASHWALK_CONTINUE;
1079 }
1080
1081 size_t zebra_pbr_tcpflags_snprintf(char *buffer, size_t len,
1082 uint16_t tcp_val)
1083 {
1084 size_t len_written = 0;
1085 static struct message nt = {0};
1086 const struct message *pnt;
1087 int incr = 0;
1088
1089 for (pnt = tcp_value_str;
1090 memcmp(pnt, &nt, sizeof(struct message)); pnt++)
1091 if (pnt->key & tcp_val) {
1092 len_written += snprintf(buffer + len_written,
1093 len - len_written,
1094 "%s%s", incr ?
1095 ",":"", pnt->str);
1096 incr++;
1097 }
1098 return len_written;
1099 }
1100
1101 /*
1102 */
1103 void zebra_pbr_show_ipset_list(struct vty *vty, char *ipsetname)
1104 {
1105 struct zebra_pbr_ipset *zpi;
1106 struct zebra_ns *zns = zebra_ns_lookup(NS_DEFAULT);
1107 struct zebra_pbr_ipset_entry_unique_display unique;
1108 struct zebra_pbr_env_display uniqueipset;
1109
1110 if (ipsetname) {
1111 zpi = zebra_pbr_lookup_ipset_pername(ipsetname);
1112 if (!zpi) {
1113 vty_out(vty, "No IPset %s found\n", ipsetname);
1114 return;
1115 }
1116 vty_out(vty, "IPset %s type %s family %s\n", ipsetname,
1117 zebra_pbr_ipset_type2str(zpi->type),
1118 family2str(zpi->family));
1119 unique.vty = vty;
1120 unique.zpi = zpi;
1121 unique.zns = zns;
1122 hash_walk(zrouter.ipset_entry_hash,
1123 zebra_pbr_show_ipset_entry_walkcb, &unique);
1124 return;
1125 }
1126 uniqueipset.zns = zns;
1127 uniqueipset.vty = vty;
1128 uniqueipset.name = NULL;
1129 hash_walk(zrouter.ipset_hash, zebra_pbr_show_ipset_walkcb,
1130 &uniqueipset);
1131 }
1132
1133 struct pbr_rule_fwmark_lookup {
1134 struct zebra_pbr_rule *ptr;
1135 uint32_t fwmark;
1136 };
1137
1138 static int zebra_pbr_rule_lookup_fwmark_walkcb(struct hash_bucket *bucket,
1139 void *arg)
1140 {
1141 struct pbr_rule_fwmark_lookup *iprule =
1142 (struct pbr_rule_fwmark_lookup *)arg;
1143 struct zebra_pbr_rule *zpr = (struct zebra_pbr_rule *)bucket->data;
1144
1145 if (iprule->fwmark == zpr->rule.filter.fwmark) {
1146 iprule->ptr = zpr;
1147 return HASHWALK_ABORT;
1148 }
1149 return HASHWALK_CONTINUE;
1150 }
1151
1152 static void zebra_pbr_show_iptable_unit(struct zebra_pbr_iptable *iptable,
1153 struct vty *vty,
1154 struct zebra_ns *zns)
1155 {
1156 int ret;
1157 uint64_t pkts = 0, bytes = 0;
1158
1159 vty_out(vty, "IPtable %s family %s action %s (%u)\n",
1160 iptable->ipset_name,
1161 family2str(iptable->family),
1162 iptable->action == ZEBRA_IPTABLES_DROP ? "drop" : "redirect",
1163 iptable->unique);
1164 if (iptable->type == IPSET_NET_PORT ||
1165 iptable->type == IPSET_NET_PORT_NET) {
1166 if (!(iptable->filter_bm & MATCH_ICMP_SET)) {
1167 if (iptable->filter_bm & PBR_FILTER_DST_PORT)
1168 vty_out(vty, "\t lookup dst port\n");
1169 else if (iptable->filter_bm & PBR_FILTER_SRC_PORT)
1170 vty_out(vty, "\t lookup src port\n");
1171 }
1172 }
1173 if (iptable->pkt_len_min || iptable->pkt_len_max) {
1174 if (!iptable->pkt_len_max)
1175 vty_out(vty, "\t pkt len %u\n",
1176 iptable->pkt_len_min);
1177 else
1178 vty_out(vty, "\t pkt len [%u;%u]\n",
1179 iptable->pkt_len_min,
1180 iptable->pkt_len_max);
1181 }
1182 if (iptable->tcp_flags || iptable->tcp_mask_flags) {
1183 char tcp_flag_str[64];
1184 char tcp_flag_mask_str[64];
1185
1186 zebra_pbr_tcpflags_snprintf(tcp_flag_str,
1187 sizeof(tcp_flag_str),
1188 iptable->tcp_flags);
1189 zebra_pbr_tcpflags_snprintf(tcp_flag_mask_str,
1190 sizeof(tcp_flag_mask_str),
1191 iptable->tcp_mask_flags);
1192 vty_out(vty, "\t tcpflags [%s/%s]\n",
1193 tcp_flag_str, tcp_flag_mask_str);
1194 }
1195 if (iptable->filter_bm & (MATCH_DSCP_SET | MATCH_DSCP_INVERSE_SET)) {
1196 vty_out(vty, "\t dscp %s %d\n",
1197 iptable->filter_bm & MATCH_DSCP_INVERSE_SET ?
1198 "not" : "", iptable->dscp_value);
1199 }
1200 if (iptable->filter_bm & (MATCH_FLOW_LABEL_SET |
1201 MATCH_FLOW_LABEL_INVERSE_SET)) {
1202 vty_out(vty, "\t flowlabel %s %d\n",
1203 iptable->filter_bm & MATCH_FLOW_LABEL_INVERSE_SET ?
1204 "not" : "", iptable->flow_label);
1205 }
1206 if (iptable->fragment) {
1207 char val_str[10];
1208
1209 snprintf(val_str, sizeof(val_str), "%d", iptable->fragment);
1210 vty_out(vty, "\t fragment%s %s\n",
1211 iptable->filter_bm & MATCH_FRAGMENT_INVERSE_SET ?
1212 " not" : "", lookup_msg(fragment_value_str,
1213 iptable->fragment, val_str));
1214 }
1215 if (iptable->protocol) {
1216 vty_out(vty, "\t protocol %d\n",
1217 iptable->protocol);
1218 }
1219 ret = hook_call(zebra_pbr_iptable_get_stat, iptable, &pkts,
1220 &bytes);
1221 if (ret && pkts > 0)
1222 vty_out(vty, "\t pkts %" PRIu64 ", bytes %" PRIu64"\n",
1223 pkts, bytes);
1224 if (iptable->action != ZEBRA_IPTABLES_DROP) {
1225 struct pbr_rule_fwmark_lookup prfl;
1226
1227 prfl.fwmark = iptable->fwmark;
1228 prfl.ptr = NULL;
1229 hash_walk(zrouter.rules_hash,
1230 &zebra_pbr_rule_lookup_fwmark_walkcb, &prfl);
1231 if (prfl.ptr) {
1232 struct zebra_pbr_rule *zpr = prfl.ptr;
1233
1234 vty_out(vty, "\t table %u, fwmark %u\n",
1235 zpr->rule.action.table,
1236 prfl.fwmark);
1237 }
1238 }
1239 }
1240
1241 static int zebra_pbr_show_iptable_walkcb(struct hash_bucket *bucket, void *arg)
1242 {
1243 struct zebra_pbr_iptable *iptable =
1244 (struct zebra_pbr_iptable *)bucket->data;
1245 struct zebra_pbr_env_display *env = (struct zebra_pbr_env_display *)arg;
1246 struct vty *vty = env->vty;
1247 struct zebra_ns *zns = env->zns;
1248 char *iptable_name = env->name;
1249
1250 if (!iptable_name)
1251 zebra_pbr_show_iptable_unit(iptable, vty, zns);
1252 else if (!strncmp(iptable_name,
1253 iptable->ipset_name,
1254 ZEBRA_IPSET_NAME_SIZE))
1255 zebra_pbr_show_iptable_unit(iptable, vty, zns);
1256 return HASHWALK_CONTINUE;
1257 }
1258
1259 void zebra_pbr_show_iptable(struct vty *vty, char *iptable_name)
1260 {
1261 struct zebra_ns *zns = zebra_ns_lookup(NS_DEFAULT);
1262 struct zebra_pbr_env_display env;
1263
1264 env.vty = vty;
1265 env.zns = zns;
1266 env.name = iptable_name;
1267 hash_walk(zrouter.iptable_hash, zebra_pbr_show_iptable_walkcb, &env);
1268 }
1269
1270 void zebra_pbr_iptable_update_interfacelist(struct stream *s,
1271 struct zebra_pbr_iptable *zpi)
1272 {
1273 uint32_t i = 0, index;
1274 struct interface *ifp;
1275 char *name;
1276
1277 for (i = 0; i < zpi->nb_interface; i++) {
1278 STREAM_GETL(s, index);
1279 ifp = if_lookup_by_index(index, zpi->vrf_id);
1280 if (!ifp)
1281 continue;
1282 name = XSTRDUP(MTYPE_PBR_IPTABLE_IFNAME, ifp->name);
1283 listnode_add(zpi->interface_name_list, name);
1284 }
1285 stream_failure:
1286 return;
1287 }