FD.io VPP  v17.10-9-gd594711
Vector Packet Processing
hash_lookup.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 
18 #include <stddef.h>
19 #include <netinet/in.h>
20 
21 #include <vlibapi/api.h>
22 #include <vlibmemory/api.h>
23 #include <vlibsocket/api.h>
24 
25 #include <vlib/vlib.h>
26 #include <vnet/vnet.h>
27 #include <vnet/pg/pg.h>
28 #include <vppinfra/error.h>
29 #include <vnet/plugin/plugin.h>
30 #include <acl/acl.h>
31 #include <vppinfra/bihash_48_8.h>
32 
33 #include "hash_lookup.h"
34 #include "hash_lookup_private.h"
35 
36 
37 static inline applied_hash_ace_entry_t **get_applied_hash_aces(acl_main_t *am, int is_input, u32 sw_if_index)
38 {
39  applied_hash_ace_entry_t **applied_hash_aces = is_input ? vec_elt_at_index(am->input_hash_entry_vec_by_sw_if_index, sw_if_index)
41  return applied_hash_aces;
42 }
43 
44 
45 
46 /*
47  * This returns true if there is indeed a match on the portranges.
48  * With all these levels of indirections, this is not going to be very fast,
49  * so, best use the individual ports or wildcard ports for performance.
50  */
51 static int
53 {
54 
55  applied_hash_ace_entry_t **applied_hash_aces = get_applied_hash_aces(am, match->pkt.is_input, match->pkt.sw_if_index);
56  applied_hash_ace_entry_t *pae = vec_elt_at_index((*applied_hash_aces), index);
57 
58  acl_rule_t *r = &(am->acls[pae->acl_index].rules[pae->ace_index]);
59  DBG("PORTMATCH: %d <= %d <= %d && %d <= %d <= %d ?",
62 
63  return ( ((r->src_port_or_type_first <= match->l4.port[0]) && r->src_port_or_type_last >= match->l4.port[0]) &&
64  ((r->dst_port_or_code_first <= match->l4.port[1]) && r->dst_port_or_code_last >= match->l4.port[1]) );
65 }
66 
67 static u32
69 {
71  clib_bihash_kv_48_8_t result;
72  fa_5tuple_t *kv_key = (fa_5tuple_t *)kv.key;
73  hash_acl_lookup_value_t *result_val = (hash_acl_lookup_value_t *)&result.value;
74  u64 *pmatch = (u64 *)match;
75  u64 *pmask;
76  u64 *pkey;
77  int mask_type_index;
78  u32 curr_match_index = ~0;
79 
80  u32 sw_if_index = match->pkt.sw_if_index;
81  u8 is_input = match->pkt.is_input;
82  applied_hash_ace_entry_t **applied_hash_aces = get_applied_hash_aces(am, is_input, sw_if_index);
83  applied_hash_acl_info_t **applied_hash_acls = is_input ? &am->input_applied_hash_acl_info_by_sw_if_index :
85 
86  DBG("TRYING TO MATCH: %016llx %016llx %016llx %016llx %016llx %016llx",
87  pmatch[0], pmatch[1], pmatch[2], pmatch[3], pmatch[4], pmatch[5]);
88 
89  for(mask_type_index=0; mask_type_index < pool_len(am->ace_mask_type_pool); mask_type_index++) {
90  if (!clib_bitmap_get(vec_elt_at_index((*applied_hash_acls), sw_if_index)->mask_type_index_bitmap, mask_type_index)) {
91  /* This bit is not set. Avoid trying to match */
92  continue;
93  }
94  ace_mask_type_entry_t *mte = vec_elt_at_index(am->ace_mask_type_pool, mask_type_index);
95  pmatch = (u64 *)match;
96  pmask = (u64 *)&mte->mask;
97  pkey = (u64 *)kv.key;
98  /*
99  * unrolling the below loop results in a noticeable performance increase.
100  int i;
101  for(i=0; i<6; i++) {
102  kv.key[i] = pmatch[i] & pmask[i];
103  }
104  */
105 
106  *pkey++ = *pmatch++ & *pmask++;
107  *pkey++ = *pmatch++ & *pmask++;
108  *pkey++ = *pmatch++ & *pmask++;
109  *pkey++ = *pmatch++ & *pmask++;
110  *pkey++ = *pmatch++ & *pmask++;
111  *pkey++ = *pmatch++ & *pmask++;
112 
113  kv_key->pkt.mask_type_index_lsb = mask_type_index;
114  DBG(" KEY %3d: %016llx %016llx %016llx %016llx %016llx %016llx", mask_type_index,
115  kv.key[0], kv.key[1], kv.key[2], kv.key[3], kv.key[4], kv.key[5]);
116  int res = BV (clib_bihash_search) (&am->acl_lookup_hash, &kv, &result);
117  if (res == 0) {
118  DBG("ACL-MATCH! result_val: %016llx", result_val->as_u64);
119  if (result_val->applied_entry_index < curr_match_index) {
120  if (PREDICT_FALSE(result_val->need_portrange_check)) {
121  /*
122  * This is going to be slow, since we can have multiple superset
123  * entries for narrow-ish portranges, e.g.:
124  * 0..42 100..400, 230..60000,
125  * so we need to walk linearly and check if they match.
126  */
127 
128  u32 curr_index = result_val->applied_entry_index;
129  while ((curr_index != ~0) && !match_portranges(am, match, curr_index)) {
130  /* while no match and there are more entries, walk... */
131  applied_hash_ace_entry_t *pae = vec_elt_at_index((*applied_hash_aces),curr_index);
132  DBG("entry %d did not portmatch, advancing to %d", curr_index, pae->next_applied_entry_index);
133  curr_index = pae->next_applied_entry_index;
134  }
135  if (curr_index < curr_match_index) {
136  DBG("The index %d is the new candidate in portrange matches.", curr_index);
137  curr_match_index = curr_index;
138  } else {
139  DBG("Curr portmatch index %d is too big vs. current matched one %d", curr_index, curr_match_index);
140  }
141  } else {
142  /* The usual path is here. Found an entry in front of the current candiate - so it's a new one */
143  DBG("This match is the new candidate");
144  curr_match_index = result_val->applied_entry_index;
145  if (!result_val->shadowed) {
146  /* new result is known to not be shadowed, so no point to look up further */
147  break;
148  }
149  }
150  }
151  }
152  }
153  DBG("MATCH-RESULT: %d", curr_match_index);
154  return curr_match_index;
155 }
156 
157 static void
159 {
160  DBG("HASH ADD/DEL: %016llx %016llx %016llx %016llx %016llx %016llx %016llx add %d",
161  kv->key[0], kv->key[1], kv->key[2],
162  kv->key[3], kv->key[4], kv->key[5], kv->value, is_add);
163  BV (clib_bihash_add_del) (&am->acl_lookup_hash, kv, is_add);
164 }
165 
166 static void
168  applied_hash_ace_entry_t **applied_hash_aces,
169  u32 sw_if_index, u8 is_input,
170  u32 new_index, clib_bihash_kv_48_8_t *kv)
171 {
172  fa_5tuple_t *kv_key = (fa_5tuple_t *)kv->key;
174  applied_hash_ace_entry_t *pae = vec_elt_at_index((*applied_hash_aces), new_index);
176 
177  memcpy(kv_key, &(vec_elt_at_index(ha->rules, pae->hash_ace_info_index)->match), sizeof(*kv_key));
178  /* initialize the sw_if_index and direction */
179  kv_key->pkt.sw_if_index = sw_if_index;
180  kv_key->pkt.is_input = is_input;
181  kv_val->as_u64 = 0;
182  kv_val->applied_entry_index = new_index;
183  kv_val->need_portrange_check = vec_elt_at_index(ha->rules, pae->hash_ace_info_index)->src_portrange_not_powerof2 ||
184  vec_elt_at_index(ha->rules, pae->hash_ace_info_index)->dst_portrange_not_powerof2;
185  /* by default assume all values are shadowed -> check all mask types */
186  kv_val->shadowed = 1;
187 }
188 
189 static void
191  u32 sw_if_index, u8 is_input,
192  applied_hash_ace_entry_t **applied_hash_aces,
193  u32 index, int is_add)
194 {
196 
197  fill_applied_hash_ace_kv(am, applied_hash_aces, sw_if_index, is_input, index, &kv);
198  hashtable_add_del(am, &kv, is_add);
199 }
200 
201 
202 
203 static void
205  u32 sw_if_index, u8 is_input,
206  applied_hash_ace_entry_t **applied_hash_aces,
207  u32 new_index)
208 {
210  ASSERT(new_index != ~0);
211  applied_hash_ace_entry_t *pae = vec_elt_at_index((*applied_hash_aces), new_index);
212  DBG("activate_applied_ace_hash_entry sw_if_index %d is_input %d new_index %d", sw_if_index, is_input, new_index);
213 
214  fill_applied_hash_ace_kv(am, applied_hash_aces, sw_if_index, is_input, new_index, &kv);
215 
216  DBG("APPLY ADD KY: %016llx %016llx %016llx %016llx %016llx %016llx",
217  kv.key[0], kv.key[1], kv.key[2],
218  kv.key[3], kv.key[4], kv.key[5]);
219 
220  clib_bihash_kv_48_8_t result;
221  hash_acl_lookup_value_t *result_val = (hash_acl_lookup_value_t *)&result.value;
222  int res = BV (clib_bihash_search) (&am->acl_lookup_hash, &kv, &result);
223  ASSERT(new_index != ~0);
224  ASSERT(new_index < vec_len((*applied_hash_aces)));
225  if (res == 0) {
226  /* There already exists an entry or more. Append at the end. */
227  u32 first_index = result_val->applied_entry_index;
228  ASSERT(first_index != ~0);
229  DBG("A key already exists, with applied entry index: %d", first_index);
230  applied_hash_ace_entry_t *first_pae = vec_elt_at_index((*applied_hash_aces), first_index);
231  u32 last_index = first_pae->tail_applied_entry_index;
232  ASSERT(last_index != ~0);
233  applied_hash_ace_entry_t *last_pae = vec_elt_at_index((*applied_hash_aces), last_index);
234  DBG("...advance to chained entry index: %d", last_index);
235  /* link ourseves in */
236  last_pae->next_applied_entry_index = new_index;
237  pae->prev_applied_entry_index = last_index;
238  /* adjust the pointer to the new tail */
239  first_pae->tail_applied_entry_index = new_index;
240  } else {
241  /* It's the very first entry */
242  hashtable_add_del(am, &kv, 1);
243  ASSERT(new_index != ~0);
244  pae->tail_applied_entry_index = new_index;
245  }
246 }
247 
248 static void
250 {
251  /*
252  * Go over the rules and check which ones are shadowed and which aren't.
253  * Naive approach: try to match the match value from every ACE as if it
254  * was a live packet, and see if the resulting match happens earlier in the list.
255  * if it does not match or it is later in the ACL - then the entry is not shadowed.
256  *
257  * This approach fails, an example:
258  * deny tcp 2001:db8::/32 2001:db8::/32
259  * permit ip 2001:db8::1/128 2001:db8::2/128
260  */
261 }
262 
263 static void *
265 {
266  if (0 == am->hash_lookup_mheap) {
267  am->hash_lookup_mheap = mheap_alloc (0 /* use VM */ , am->hash_lookup_mheap_size);
270  }
271  void *oldheap = clib_mem_set_heap(am->hash_lookup_mheap);
272  return oldheap;
273 }
274 
275 void
277 {
280  if (on) {
283  mheap_validate(h);
284  } else {
285  h->flags &= ~MHEAP_FLAG_VALIDATE;
287  }
288 }
289 
290 void
292 {
295  if (on) {
296  h->flags |= MHEAP_FLAG_TRACE;
297  } else {
298  h->flags &= ~MHEAP_FLAG_TRACE;
299  }
300 }
301 
302 void
303 hash_acl_apply(acl_main_t *am, u32 sw_if_index, u8 is_input, int acl_index)
304 {
305  int i;
306 
307  DBG0("HASH ACL apply: sw_if_index %d is_input %d acl %d", sw_if_index, is_input, acl_index);
308  if (!am->acl_lookup_hash_initialized) {
309  BV (clib_bihash_init) (&am->acl_lookup_hash, "ACL plugin rule lookup bihash",
312  }
313 
314  void *oldheap = hash_acl_set_heap(am);
315  if (is_input) {
317  } else {
319  }
320  vec_validate(am->hash_acl_infos, acl_index);
321  applied_hash_ace_entry_t **applied_hash_aces = get_applied_hash_aces(am, is_input, sw_if_index);
322 
323  hash_acl_info_t *ha = vec_elt_at_index(am->hash_acl_infos, acl_index);
324  u32 **hash_acl_applied_sw_if_index = is_input ? &ha->inbound_sw_if_index_list
326 
327  int base_offset = vec_len(*applied_hash_aces);
328 
329  /* Update the bitmap of the mask types with which the lookup
330  needs to happen for the ACLs applied to this sw_if_index */
331  applied_hash_acl_info_t **applied_hash_acls = is_input ? &am->input_applied_hash_acl_info_by_sw_if_index :
333  vec_validate((*applied_hash_acls), sw_if_index);
334  applied_hash_acl_info_t *pal = vec_elt_at_index((*applied_hash_acls), sw_if_index);
335 
336  /* ensure the list of applied hash acls is initialized and add this acl# to it */
337  u32 index = vec_search(pal->applied_acls, acl_index);
338  if (index != ~0) {
339  clib_warning("BUG: trying to apply twice acl_index %d on sw_if_index %d is_input %d",
340  acl_index, sw_if_index, is_input);
341  goto done;
342  }
343  vec_add1(pal->applied_acls, acl_index);
344  u32 index2 = vec_search((*hash_acl_applied_sw_if_index), sw_if_index);
345  if (index2 != ~0) {
346  clib_warning("BUG: trying to apply twice acl_index %d on (sw_if_index %d) is_input %d",
347  acl_index, sw_if_index, is_input);
348  goto done;
349  }
350  vec_add1((*hash_acl_applied_sw_if_index), sw_if_index);
351 
354  /*
355  * if the applied ACL is empty, the current code will cause a
356  * different behavior compared to current linear search: an empty ACL will
357  * simply fallthrough to the next ACL, or the default deny in the end.
358  *
359  * This is not a problem, because after vpp-dev discussion,
360  * the consensus was it should not be possible to apply the non-existent
361  * ACL, so the change adding this code also takes care of that.
362  */
363 
364  /* expand the applied aces vector by the necessary amount */
365  vec_resize((*applied_hash_aces), vec_len(ha->rules));
366 
367  /* add the rules from the ACL to the hash table for lookup and append to the vector*/
368  for(i=0; i < vec_len(ha->rules); i++) {
369  u32 new_index = base_offset + i;
370  applied_hash_ace_entry_t *pae = vec_elt_at_index((*applied_hash_aces), new_index);
371  pae->acl_index = acl_index;
372  pae->ace_index = ha->rules[i].ace_index;
373  pae->action = ha->rules[i].action;
374  pae->hitcount = 0;
375  pae->hash_ace_info_index = i;
376  /* we might link it in later */
377  pae->next_applied_entry_index = ~0;
378  pae->prev_applied_entry_index = ~0;
379  pae->tail_applied_entry_index = ~0;
380  activate_applied_ace_hash_entry(am, sw_if_index, is_input, applied_hash_aces, new_index);
381  }
382  applied_hash_entries_analyze(am, applied_hash_aces);
383 done:
384  clib_mem_set_heap (oldheap);
385 }
386 
387 static u32
389 {
390  /*
391  * find back the first entry. Inefficient so might need to be a bit cleverer
392  * if this proves to be a problem..
393  */
394  u32 an_index = curr_index;
395  ASSERT(an_index != ~0);
396  applied_hash_ace_entry_t *head_pae = vec_elt_at_index((*applied_hash_aces), an_index);
397  while(head_pae->prev_applied_entry_index != ~0) {
398  an_index = head_pae->prev_applied_entry_index;
399  ASSERT(an_index != ~0);
400  head_pae = vec_elt_at_index((*applied_hash_aces), an_index);
401  }
402  return an_index;
403 }
404 
405 static void
407  u32 sw_if_index, u8 is_input,
408  applied_hash_ace_entry_t **applied_hash_aces,
409  u32 old_index, u32 new_index)
410 {
411  ASSERT(old_index != ~0);
412  ASSERT(new_index != ~0);
413  /* move the entry */
414  *vec_elt_at_index((*applied_hash_aces), new_index) = *vec_elt_at_index((*applied_hash_aces), old_index);
415 
416  /* update the linkage and hash table if necessary */
417  applied_hash_ace_entry_t *pae = vec_elt_at_index((*applied_hash_aces), old_index);
418 
419  if (pae->prev_applied_entry_index != ~0) {
420  applied_hash_ace_entry_t *prev_pae = vec_elt_at_index((*applied_hash_aces), pae->prev_applied_entry_index);
421  ASSERT(prev_pae->next_applied_entry_index == old_index);
422  prev_pae->next_applied_entry_index = new_index;
423  } else {
424  /* first entry - so the hash points to it, update */
425  add_del_hashtable_entry(am, sw_if_index, is_input,
426  applied_hash_aces, new_index, 1);
427  ASSERT(pae->tail_applied_entry_index != ~0);
428  }
429  if (pae->next_applied_entry_index != ~0) {
430  applied_hash_ace_entry_t *next_pae = vec_elt_at_index((*applied_hash_aces), pae->next_applied_entry_index);
431  ASSERT(next_pae->prev_applied_entry_index == old_index);
432  next_pae->prev_applied_entry_index = new_index;
433  } else {
434  /*
435  * Moving the very last entry, so we need to update the tail pointer in the first one.
436  */
437  u32 head_index = find_head_applied_ace_index(applied_hash_aces, old_index);
438  ASSERT(head_index != ~0);
439  applied_hash_ace_entry_t *head_pae = vec_elt_at_index((*applied_hash_aces), head_index);
440 
441  ASSERT(head_pae->tail_applied_entry_index == old_index);
442  head_pae->tail_applied_entry_index = new_index;
443  }
444  /* invalidate the old entry */
445  pae->prev_applied_entry_index = ~0;
446  pae->next_applied_entry_index = ~0;
447  pae->tail_applied_entry_index = ~0;
448 }
449 
450 static void
452  u32 sw_if_index, u8 is_input,
453  applied_hash_ace_entry_t **applied_hash_aces,
454  u32 old_index)
455 {
456  applied_hash_ace_entry_t *pae = vec_elt_at_index((*applied_hash_aces), old_index);
457  DBG("UNAPPLY DEACTIVATE: sw_if_index %d is_input %d, applied index %d", sw_if_index, is_input, old_index);
458 
459  if (pae->prev_applied_entry_index != ~0) {
460  DBG("UNAPPLY = index %d has prev_applied_entry_index %d", old_index, pae->prev_applied_entry_index);
461  applied_hash_ace_entry_t *prev_pae = vec_elt_at_index((*applied_hash_aces), pae->prev_applied_entry_index);
462  ASSERT(prev_pae->next_applied_entry_index == old_index);
464  if (pae->next_applied_entry_index == ~0) {
465  /* it was a last entry we removed, update the pointer on the first one */
466  u32 head_index = find_head_applied_ace_index(applied_hash_aces, old_index);
467  DBG("UNAPPLY = index %d head index to update %d", old_index, head_index);
468  ASSERT(head_index != ~0);
469  applied_hash_ace_entry_t *head_pae = vec_elt_at_index((*applied_hash_aces), head_index);
470 
471  ASSERT(head_pae->tail_applied_entry_index == old_index);
473  } else {
474  applied_hash_ace_entry_t *next_pae = vec_elt_at_index((*applied_hash_aces), pae->next_applied_entry_index);
476  }
477  } else {
478  /* It was the first entry. We need either to reset the hash entry or delete it */
479  if (pae->next_applied_entry_index != ~0) {
480  /* the next element becomes the new first one, so needs the tail pointer to be set */
481  applied_hash_ace_entry_t *next_pae = vec_elt_at_index((*applied_hash_aces), pae->next_applied_entry_index);
482  ASSERT(pae->tail_applied_entry_index != ~0);
484  DBG("Resetting the hash table entry from %d to %d, setting tail index to %d", old_index, pae->next_applied_entry_index, pae->tail_applied_entry_index);
485  /* unlink from the next element */
486  next_pae->prev_applied_entry_index = ~0;
487  add_del_hashtable_entry(am, sw_if_index, is_input,
488  applied_hash_aces, pae->next_applied_entry_index, 1);
489  } else {
490  /* no next entry, so just delete the entry in the hash table */
491  add_del_hashtable_entry(am, sw_if_index, is_input,
492  applied_hash_aces, old_index, 0);
493  }
494  }
495  /* invalidate the old entry */
496  pae->prev_applied_entry_index = ~0;
497  pae->next_applied_entry_index = ~0;
498  pae->tail_applied_entry_index = ~0;
499 }
500 
501 
502 static void
504 {
505  int i;
506  uword *new_lookup_bitmap = 0;
507  applied_hash_acl_info_t **applied_hash_acls = is_input ? &am->input_applied_hash_acl_info_by_sw_if_index
509  applied_hash_acl_info_t *pal = vec_elt_at_index((*applied_hash_acls), sw_if_index);
510  for(i=0; i < vec_len(pal->applied_acls); i++) {
511  u32 a_acl_index = *vec_elt_at_index((pal->applied_acls), i);
512  hash_acl_info_t *ha = vec_elt_at_index(am->hash_acl_infos, a_acl_index);
513  DBG("Update bitmask = %U or %U (acl_index %d)\n", format_bitmap_hex, new_lookup_bitmap,
514  format_bitmap_hex, ha->mask_type_index_bitmap, a_acl_index);
515  new_lookup_bitmap = clib_bitmap_or(new_lookup_bitmap,
517  }
518  uword *old_lookup_bitmap = pal->mask_type_index_bitmap;
519  pal->mask_type_index_bitmap = new_lookup_bitmap;
520  clib_bitmap_free(old_lookup_bitmap);
521 }
522 
523 void
524 hash_acl_unapply(acl_main_t *am, u32 sw_if_index, u8 is_input, int acl_index)
525 {
526  int i;
527 
528  DBG0("HASH ACL unapply: sw_if_index %d is_input %d acl %d", sw_if_index, is_input, acl_index);
529  applied_hash_acl_info_t **applied_hash_acls = is_input ? &am->input_applied_hash_acl_info_by_sw_if_index
531  applied_hash_acl_info_t *pal = vec_elt_at_index((*applied_hash_acls), sw_if_index);
532 
533  hash_acl_info_t *ha = vec_elt_at_index(am->hash_acl_infos, acl_index);
534  u32 **hash_acl_applied_sw_if_index = is_input ? &ha->inbound_sw_if_index_list
536 
537  /* remove this acl# from the list of applied hash acls */
538  u32 index = vec_search(pal->applied_acls, acl_index);
539  if (index == ~0) {
540  clib_warning("BUG: trying to unapply unapplied acl_index %d on sw_if_index %d is_input %d",
541  acl_index, sw_if_index, is_input);
542  return;
543  }
544  vec_del1(pal->applied_acls, index);
545 
546  u32 index2 = vec_search((*hash_acl_applied_sw_if_index), sw_if_index);
547  if (index2 == ~0) {
548  clib_warning("BUG: trying to unapply twice acl_index %d on (sw_if_index %d) is_input %d",
549  acl_index, sw_if_index, is_input);
550  return;
551  }
552  vec_del1((*hash_acl_applied_sw_if_index), index2);
553 
554  applied_hash_ace_entry_t **applied_hash_aces = get_applied_hash_aces(am, is_input, sw_if_index);
555 
556  for(i=0; i < vec_len((*applied_hash_aces)); i++) {
557  if (vec_elt_at_index(*applied_hash_aces,i)->acl_index == acl_index) {
558  DBG("Found applied ACL#%d at applied index %d", acl_index, i);
559  break;
560  }
561  }
562  if (vec_len((*applied_hash_aces)) <= i) {
563  DBG("Did not find applied ACL#%d at sw_if_index %d", acl_index, sw_if_index);
564  /* we went all the way without finding any entries. Probably a list was empty. */
565  return;
566  }
567 
568  void *oldheap = hash_acl_set_heap(am);
569  int base_offset = i;
570  int tail_offset = base_offset + vec_len(ha->rules);
571  int tail_len = vec_len((*applied_hash_aces)) - tail_offset;
572  DBG("base_offset: %d, tail_offset: %d, tail_len: %d", base_offset, tail_offset, tail_len);
573 
574  for(i=0; i < vec_len(ha->rules); i ++) {
575  deactivate_applied_ace_hash_entry(am, sw_if_index, is_input,
576  applied_hash_aces, base_offset + i);
577  }
578  for(i=0; i < tail_len; i ++) {
579  /* move the entry at tail offset to base offset */
580  /* that is, from (tail_offset+i) -> (base_offset+i) */
581  DBG("UNAPPLY MOVE: sw_if_index %d is_input %d, applied index %d ->", sw_if_index, is_input, tail_offset+i, base_offset + i);
582  move_applied_ace_hash_entry(am, sw_if_index, is_input, applied_hash_aces, tail_offset + i, base_offset + i);
583  }
584  /* trim the end of the vector */
585  _vec_len((*applied_hash_aces)) -= vec_len(ha->rules);
586 
587  applied_hash_entries_analyze(am, applied_hash_aces);
588 
589  /* After deletion we might not need some of the mask-types anymore... */
590  hash_acl_build_applied_lookup_bitmap(am, sw_if_index, is_input);
591  clib_mem_set_heap (oldheap);
592 }
593 
594 /*
595  * Create the applied ACEs and update the hash table,
596  * taking into account that the ACL may not be the last
597  * in the vector of applied ACLs.
598  *
599  * For now, walk from the end of the vector and unapply the ACLs,
600  * then apply the one in question and reapply the rest.
601  */
602 
603 void
604 hash_acl_reapply(acl_main_t *am, u32 sw_if_index, u8 is_input, int acl_index)
605 {
606  u32 **applied_acls = is_input ? vec_elt_at_index(am->input_acl_vec_by_sw_if_index, sw_if_index)
608  int i;
609  int start_index = vec_search((*applied_acls), acl_index);
610  /*
611  * This function is called after we find out the sw_if_index where ACL is applied.
612  * If the by-sw_if_index vector does not have the ACL#, then it's a bug.
613  */
614  ASSERT(start_index < vec_len(*applied_acls));
615 
616  /* unapply all the ACLs till the current one */
617  for(i = vec_len(*applied_acls) - 1; i > start_index; i--) {
618  hash_acl_unapply(am, sw_if_index, is_input, *vec_elt_at_index(*applied_acls, i));
619  }
620  for(i = start_index; i < vec_len(*applied_acls); i++) {
621  hash_acl_apply(am, sw_if_index, is_input, *vec_elt_at_index(*applied_acls, i));
622  }
623 }
624 
625 static void
626 make_address_mask(ip46_address_t *addr, u8 is_ipv6, u8 prefix_len)
627 {
628  if (is_ipv6) {
629  ip6_address_mask_from_width(&addr->ip6, prefix_len);
630  } else {
631  /* FIXME: this may not be correct way */
632  ip6_address_mask_from_width(&addr->ip6, prefix_len + 3*32);
633  ip46_address_mask_ip4(addr);
634  }
635 }
636 
637 static u8
638 make_port_mask(u16 *portmask, u16 port_first, u16 port_last)
639 {
640  if (port_first == port_last) {
641  *portmask = 0xffff;
642  /* single port is representable by masked value */
643  return 0;
644  }
645  if ((port_first == 0) && (port_last == 65535)) {
646  *portmask = 0;
647  /* wildcard port is representable by a masked value */
648  return 0;
649  }
650 
651  /*
652  * For now match all the ports, later
653  * here might be a better optimization which would
654  * pick out bitmaskable portranges.
655  *
656  * However, adding a new mask type potentially
657  * adds a per-packet extra lookup, so the benefit is not clear.
658  */
659  *portmask = 0;
660  /* This port range can't be represented via bitmask exactly. */
661  return 1;
662 }
663 
664 static void
665 make_mask_and_match_from_rule(fa_5tuple_t *mask, acl_rule_t *r, hash_ace_info_t *hi, int match_nonfirst_fragment)
666 {
667  memset(mask, 0, sizeof(*mask));
668  memset(&hi->match, 0, sizeof(hi->match));
669  hi->action = r->is_permit;
670 
671  /* we will need to be matching based on sw_if_index, direction, and mask_type_index when applied */
672  mask->pkt.sw_if_index = ~0;
673  mask->pkt.is_input = 1;
674  /* we will assign the match of mask_type_index later when we find it*/
675  mask->pkt.mask_type_index_lsb = ~0;
676 
677  mask->pkt.is_ip6 = 1;
678  hi->match.pkt.is_ip6 = r->is_ipv6;
679 
680  make_address_mask(&mask->addr[0], r->is_ipv6, r->src_prefixlen);
681  hi->match.addr[0] = r->src;
682  make_address_mask(&mask->addr[1], r->is_ipv6, r->dst_prefixlen);
683  hi->match.addr[1] = r->dst;
684 
685  if (r->proto != 0) {
686  mask->l4.proto = ~0; /* L4 proto needs to be matched */
687  hi->match.l4.proto = r->proto;
688  if (match_nonfirst_fragment) {
689  /* match the non-first fragments only */
690  mask->pkt.is_nonfirst_fragment = 1;
692  } else {
693  /* Calculate the src/dst port masks and make the src/dst port matches accordingly */
695  hi->match.l4.port[0] = r->src_port_or_type_first & mask->l4.port[0];
697  hi->match.l4.port[1] = r->dst_port_or_code_first & mask->l4.port[1];
698  /* L4 info must be valid in order to match */
699  mask->pkt.l4_valid = 1;
700  hi->match.pkt.l4_valid = 1;
701  /* And we must set the mask to check that it is an initial fragment */
702  mask->pkt.is_nonfirst_fragment = 1;
704  if ((r->proto == IPPROTO_TCP) && (r->tcp_flags_mask != 0)) {
705  /* if we want to match on TCP flags, they must be masked off as well */
706  mask->pkt.tcp_flags = r->tcp_flags_mask;
708  /* and the flags need to be present within the packet being matched */
709  mask->pkt.tcp_flags_valid = 1;
710  hi->match.pkt.tcp_flags_valid = 1;
711  }
712  }
713  }
714  /* Sanitize the mask and the match */
715  u64 *pmask = (u64 *)mask;
716  u64 *pmatch = (u64 *)&hi->match;
717  int j;
718  for(j=0; j<6; j++) {
719  pmatch[j] = pmatch[j] & pmask[j];
720  }
721 }
722 
723 static u32
725 {
727  /* *INDENT-OFF* */
729  ({
730  if(memcmp(&mte->mask, mask, sizeof(*mask)) == 0)
731  return (mte - am->ace_mask_type_pool);
732  }));
733  /* *INDENT-ON* */
734  return ~0;
735 }
736 
737 static u32
739 {
740  u32 mask_type_index = find_mask_type_index(am, mask);
742  if(~0 == mask_type_index) {
744  mask_type_index = mte - am->ace_mask_type_pool;
745  clib_memcpy(&mte->mask, mask, sizeof(mte->mask));
746  mte->refcount = 0;
747  /*
748  * We can use only 16 bits, since in the match there is only u16 field.
749  * Realistically, once you go to 64K of mask types, it is a huge
750  * problem anyway, so we might as well stop half way.
751  */
752  ASSERT(mask_type_index < 32768);
753  }
754  mte = am->ace_mask_type_pool + mask_type_index;
755  mte->refcount++;
756  return mask_type_index;
757 }
758 
759 static void
761 {
762  ace_mask_type_entry_t *mte = pool_elt_at_index(am->ace_mask_type_pool, mask_type_index);
763  mte->refcount--;
764  if (mte->refcount == 0) {
765  /* we are not using this entry anymore */
766  pool_put(am->ace_mask_type_pool, mte);
767  }
768 }
769 
770 void hash_acl_add(acl_main_t *am, int acl_index)
771 {
772  void *oldheap = hash_acl_set_heap(am);
773  DBG("HASH ACL add : %d", acl_index);
774  int i;
775  acl_list_t *a = &am->acls[acl_index];
776  vec_validate(am->hash_acl_infos, acl_index);
777  hash_acl_info_t *ha = vec_elt_at_index(am->hash_acl_infos, acl_index);
778  memset(ha, 0, sizeof(*ha));
779 
780  /* walk the newly added ACL entries and ensure that for each of them there
781  is a mask type, increment a reference count for that mask type */
782  for(i=0; i < a->count; i++) {
783  hash_ace_info_t ace_info;
784  fa_5tuple_t mask;
785  memset(&ace_info, 0, sizeof(ace_info));
786  ace_info.acl_index = acl_index;
787  ace_info.ace_index = i;
788 
789  make_mask_and_match_from_rule(&mask, &a->rules[i], &ace_info, 0);
790  ace_info.mask_type_index = assign_mask_type_index(am, &mask);
791  /* assign the mask type index for matching itself */
792  ace_info.match.pkt.mask_type_index_lsb = ace_info.mask_type_index;
793  DBG("ACE: %d mask_type_index: %d", i, ace_info.mask_type_index);
794  /* Ensure a given index is set in the mask type index bitmap for this ACL */
796  vec_add1(ha->rules, ace_info);
797  if (am->l4_match_nonfirst_fragment) {
798  /* add the second rule which matches the noninitial fragments with the respective mask */
799  make_mask_and_match_from_rule(&mask, &a->rules[i], &ace_info, 1);
800  ace_info.mask_type_index = assign_mask_type_index(am, &mask);
801  ace_info.match.pkt.mask_type_index_lsb = ace_info.mask_type_index;
802  DBG("ACE: %d (non-initial frags) mask_type_index: %d", i, ace_info.mask_type_index);
803  /* Ensure a given index is set in the mask type index bitmap for this ACL */
805  vec_add1(ha->rules, ace_info);
806  }
807  }
808  /*
809  * if an ACL is applied somewhere, fill the corresponding lookup data structures.
810  * We need to take care if the ACL is not the last one in the vector of ACLs applied to the interface.
811  */
812  if (acl_index < vec_len(am->input_sw_if_index_vec_by_acl)) {
813  u32 *sw_if_index;
814  vec_foreach(sw_if_index, am->input_sw_if_index_vec_by_acl[acl_index]) {
815  hash_acl_reapply(am, *sw_if_index, 1, acl_index);
816  }
817  }
818  if (acl_index < vec_len(am->output_sw_if_index_vec_by_acl)) {
819  u32 *sw_if_index;
820  vec_foreach(sw_if_index, am->output_sw_if_index_vec_by_acl[acl_index]) {
821  hash_acl_reapply(am, *sw_if_index, 0, acl_index);
822  }
823  }
824  clib_mem_set_heap (oldheap);
825 }
826 
827 void hash_acl_delete(acl_main_t *am, int acl_index)
828 {
829  void *oldheap = hash_acl_set_heap(am);
830  DBG0("HASH ACL delete : %d", acl_index);
831  /*
832  * If the ACL is applied somewhere, remove the references of it (call hash_acl_unapply)
833  * this is a different behavior from the linear lookup where an empty ACL is "deny all",
834  *
835  * However, following vpp-dev discussion the ACL that is referenced elsewhere
836  * should not be possible to delete, and the change adding this also adds
837  * the safeguards to that respect, so this is not a problem.
838  *
839  * The part to rememeber is that this routine is called in process of reapplication
840  * during the acl_add_replace() API call - the old acl ruleset is deleted, then
841  * the new one is added, without the change in the applied ACLs - so this case
842  * has to be handled.
843  */
844  hash_acl_info_t *ha = vec_elt_at_index(am->hash_acl_infos, acl_index);
845  u32 *interface_list_copy = 0;
846  {
847  u32 *sw_if_index;
848  interface_list_copy = vec_dup(ha->inbound_sw_if_index_list);
849  vec_foreach(sw_if_index, interface_list_copy) {
850  hash_acl_unapply(am, *sw_if_index, 1, acl_index);
851  }
852  vec_free(interface_list_copy);
853  interface_list_copy = vec_dup(ha->outbound_sw_if_index_list);
854  vec_foreach(sw_if_index, interface_list_copy) {
855  hash_acl_unapply(am, *sw_if_index, 0, acl_index);
856  }
857  }
858 
859  /* walk the mask types for the ACL about-to-be-deleted, and decrease
860  * the reference count, possibly freeing up some of them */
861  int i;
862  for(i=0; i < vec_len(ha->rules); i++) {
864  }
866  vec_free(ha->rules);
867  clib_mem_set_heap (oldheap);
868 }
869 
870 u8
871 hash_multi_acl_match_5tuple (u32 sw_if_index, fa_5tuple_t * pkt_5tuple, int is_l2,
872  int is_ip6, int is_input, u32 * acl_match_p,
873  u32 * rule_match_p, u32 * trace_bitmap)
874 {
875  acl_main_t *am = &acl_main;
876  applied_hash_ace_entry_t **applied_hash_aces = get_applied_hash_aces(am, is_input, sw_if_index);
877  u32 match_index = multi_acl_match_get_applied_ace_index(am, pkt_5tuple);
878  if (match_index < vec_len((*applied_hash_aces))) {
879  applied_hash_ace_entry_t *pae = vec_elt_at_index((*applied_hash_aces), match_index);
880  pae->hitcount++;
881  *acl_match_p = pae->acl_index;
882  *rule_match_p = pae->ace_index;
883  return pae->action;
884  }
885  return 0;
886 }
887 
888 
889 void
891 {
892  vlib_cli_output(vm, "\nACL lookup hash table:\n%U\n",
893  BV (format_bihash), &am->acl_lookup_hash, verbose);
894 }
acl_rule_t * rules
Definition: acl.h:107
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:432
vmrglw vmrglh hi
static u8 * format_bitmap_hex(u8 *s, va_list *args)
Format a bitmap as a string of hex bytes.
Definition: bitmap.h:744
void acl_plugin_hash_acl_set_trace_heap(acl_main_t *am, int on)
Definition: hash_lookup.c:291
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:337
static void move_applied_ace_hash_entry(acl_main_t *am, u32 sw_if_index, u8 is_input, applied_hash_ace_entry_t **applied_hash_aces, u32 old_index, u32 new_index)
Definition: hash_lookup.c:406
u8 is_ipv6
Definition: acl.h:76
fa_5tuple_t mask
Definition: acl.h:127
Definition: acl.h:125
a
Definition: bitmap.h:516
u32 acl_index
static void * hash_acl_set_heap(acl_main_t *am)
Definition: hash_lookup.c:264
fa_session_l4_key_t l4
Definition: fa_node.h:49
fa_packet_info_t pkt
Definition: fa_node.h:51
u32 ** input_acl_vec_by_sw_if_index
Definition: acl.h:157
int l4_match_nonfirst_fragment
Definition: acl.h:216
void * mheap_alloc(void *memory, uword size)
Definition: mheap.c:947
static uword * clib_bitmap_or(uword *ai, uword *bi)
Logical operator across two bitmaps.
u8 dst_prefixlen
Definition: acl.h:80
static u8 make_port_mask(u16 *portmask, u16 port_first, u16 port_last)
Definition: hash_lookup.c:638
u8 action
u32 hash_ace_info_index
u32 count
Definition: acl.h:106
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:518
static mheap_t * mheap_header(u8 *v)
static void applied_hash_entries_analyze(acl_main_t *am, applied_hash_ace_entry_t **applied_hash_aces)
Definition: hash_lookup.c:249
acl_main_t acl_main
Definition: jvpp_acl.h:39
static uword * clib_bitmap_set(uword *ai, uword i, uword value)
Sets the ith bit of a bitmap to new_value Removes trailing zeros from the bitmap. ...
Definition: bitmap.h:167
static int match_portranges(acl_main_t *am, fa_5tuple_t *match, u32 index)
Definition: hash_lookup.c:52
applied_hash_acl_info_t * output_applied_hash_acl_info_by_sw_if_index
Definition: acl.h:152
#define MHEAP_FLAG_THREAD_SAFE
#define pool_len(p)
Number of elements in pool vector.
Definition: pool.h:140
static u32 find_head_applied_ace_index(applied_hash_ace_entry_t **applied_hash_aces, u32 curr_index)
Definition: hash_lookup.c:388
void hash_acl_add(acl_main_t *am, int acl_index)
Definition: hash_lookup.c:770
u16 dst_port_or_code_last
Definition: acl.h:85
u8 src_prefixlen
Definition: acl.h:78
u32 next_applied_entry_index
void acl_plugin_hash_acl_set_validate_heap(acl_main_t *am, int on)
Definition: hash_lookup.c:276
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:437
int clib_bihash_add_del(clib_bihash *h, clib_bihash_kv *add_v, int is_add)
Add or delete a (key,value) pair from a bi-hash table.
ip46_address_t addr[2]
Definition: fa_node.h:48
ip46_address_t src
Definition: acl.h:77
#define ip46_address_mask_ip4(ip46)
Definition: ip6_packet.h:77
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
u8 is_permit
Definition: acl.h:75
unsigned long u64
Definition: types.h:89
static u32 multi_acl_match_get_applied_ace_index(acl_main_t *am, fa_5tuple_t *match)
Definition: hash_lookup.c:68
#define vec_resize(V, N)
Resize a vector (no header, unspecified alignment) Add N elements to end of given vector V...
Definition: vec.h:237
#define vec_search(v, E)
Search a vector for the index of the entry that matches.
Definition: vec.h:937
static void release_mask_type_index(acl_main_t *am, u32 mask_type_index)
Definition: hash_lookup.c:760
void hash_acl_unapply(acl_main_t *am, u32 sw_if_index, u8 is_input, int acl_index)
Definition: hash_lookup.c:524
u32 * inbound_sw_if_index_list
static u32 assign_mask_type_index(acl_main_t *am, fa_5tuple_t *mask)
Definition: hash_lookup.c:738
ip46_address_t dst
Definition: acl.h:79
uword * mask_type_index_bitmap
applied_hash_acl_info_t * input_applied_hash_acl_info_by_sw_if_index
Definition: acl.h:151
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:458
u16 dst_port_or_code_first
Definition: acl.h:84
hash_acl_info_t * hash_acl_infos
Definition: acl.h:140
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:270
#define vec_dup(V)
Return copy of vector (no header, no alignment)
Definition: vec.h:370
static void fill_applied_hash_ace_kv(acl_main_t *am, applied_hash_ace_entry_t **applied_hash_aces, u32 sw_if_index, u8 is_input, u32 new_index, clib_bihash_kv_48_8_t *kv)
Definition: hash_lookup.c:167
u64 hitcount
#define PREDICT_FALSE(x)
Definition: clib.h:97
hash_ace_info_t * rules
#define vec_del1(v, i)
Delete the element at index I.
Definition: vec.h:801
static void activate_applied_ace_hash_entry(acl_main_t *am, u32 sw_if_index, u8 is_input, applied_hash_ace_entry_t **applied_hash_aces, u32 new_index)
Definition: hash_lookup.c:204
clib_bihash_48_8_t acl_lookup_hash
Definition: acl.h:141
void show_hash_acl_hash(vlib_main_t *vm, acl_main_t *am, u32 verbose)
Definition: hash_lookup.c:890
u8 proto
Definition: acl.h:81
void clib_bihash_init(clib_bihash *h, char *name, u32 nbuckets, uword memory_size)
initialize a bounded index extensible hash table
u8 hash_multi_acl_match_5tuple(u32 sw_if_index, fa_5tuple_t *pkt_5tuple, int is_l2, int is_ip6, int is_input, u32 *acl_match_p, u32 *rule_match_p, u32 *trace_bitmap)
Definition: hash_lookup.c:871
u16 src_port_or_type_first
Definition: acl.h:82
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P (general version).
Definition: pool.h:188
u32 refcount
Definition: acl.h:128
vlib_main_t * vm
Definition: buffer.c:283
vec_header_t h
Definition: buffer.c:282
applied_hash_ace_entry_t ** output_hash_entry_vec_by_sw_if_index
Definition: acl.h:150
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:336
int acl_lookup_hash_initialized
Definition: acl.h:148
u32 * outbound_sw_if_index_list
static void * clib_mem_set_heap(void *heap)
Definition: mem.h:226
void hash_acl_delete(acl_main_t *am, int acl_index)
Definition: hash_lookup.c:827
#define clib_warning(format, args...)
Definition: error.h:59
Definition: acl.h:73
#define clib_memcpy(a, b, c)
Definition: string.h:69
#define DBG(...)
static uword clib_bitmap_get(uword *ai, uword i)
Gets the ith bit value from a bitmap.
Definition: bitmap.h:197
static applied_hash_ace_entry_t ** get_applied_hash_aces(acl_main_t *am, int is_input, u32 sw_if_index)
Definition: hash_lookup.c:37
u32 hash_lookup_hash_buckets
Definition: acl.h:142
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
int clib_bihash_search(clib_bihash *h, clib_bihash_kv *search_v, clib_bihash_kv *return_v)
Search a bi-hash table.
u8 tcp_flags_valid
Definition: fa_node.h:28
u16 src_port_or_type_last
Definition: acl.h:83
static void add_del_hashtable_entry(acl_main_t *am, u32 sw_if_index, u8 is_input, applied_hash_ace_entry_t **applied_hash_aces, u32 index, int is_add)
Definition: hash_lookup.c:190
#define MHEAP_FLAG_VALIDATE
#define clib_bitmap_free(v)
Free a bitmap.
Definition: bitmap.h:92
static void make_mask_and_match_from_rule(fa_5tuple_t *mask, acl_rule_t *r, hash_ace_info_t *hi, int match_nonfirst_fragment)
Definition: hash_lookup.c:665
#define DBG0(...)
void hash_acl_reapply(acl_main_t *am, u32 sw_if_index, u8 is_input, int acl_index)
Definition: hash_lookup.c:604
u64 uword
Definition: types.h:112
#define MHEAP_FLAG_TRACE
static void hash_acl_build_applied_lookup_bitmap(acl_main_t *am, u32 sw_if_index, u8 is_input)
Definition: hash_lookup.c:503
#define MHEAP_FLAG_SMALL_OBJECT_CACHE
ace_mask_type_entry_t * ace_mask_type_pool
Definition: acl.h:171
static u32 find_mask_type_index(acl_main_t *am, fa_5tuple_t *mask)
Definition: hash_lookup.c:724
u32 prev_applied_entry_index
u8 is_nonfirst_fragment
Definition: fa_node.h:31
unsigned short u16
Definition: types.h:57
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
u8 tcp_flags_mask
Definition: acl.h:87
u32 ** input_sw_if_index_vec_by_acl
Definition: acl.h:161
static void hashtable_add_del(acl_main_t *am, clib_bihash_kv_48_8_t *kv, int is_add)
Definition: hash_lookup.c:158
void hash_acl_apply(acl_main_t *am, u32 sw_if_index, u8 is_input, int acl_index)
Definition: hash_lookup.c:303
static void ip6_address_mask_from_width(ip6_address_t *a, u32 width)
Definition: ip6_packet.h:251
u8 tcp_flags_value
Definition: acl.h:86
void mheap_validate(void *v)
Definition: mheap.c:1338
#define vec_foreach(var, vec)
Vector iterator.
void * hash_lookup_mheap
Definition: acl.h:146
u32 tail_applied_entry_index
vhost_vring_addr_t addr
Definition: vhost-user.h:83
u16 mask_type_index_lsb
Definition: fa_node.h:26
static void make_address_mask(ip46_address_t *addr, u8 is_ipv6, u8 prefix_len)
Definition: hash_lookup.c:626
u32 ** output_sw_if_index_vec_by_acl
Definition: acl.h:162
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:67
u32 hash_lookup_mheap_size
Definition: acl.h:147
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:680
static void deactivate_applied_ace_hash_entry(acl_main_t *am, u32 sw_if_index, u8 is_input, applied_hash_ace_entry_t **applied_hash_aces, u32 old_index)
Definition: hash_lookup.c:451
acl_list_t * acls
Definition: acl.h:139
u32 ** output_acl_vec_by_sw_if_index
Definition: acl.h:158
u32 hash_lookup_hash_memory
Definition: acl.h:143
u32 ace_index
applied_hash_ace_entry_t ** input_hash_entry_vec_by_sw_if_index
Definition: acl.h:149