blob: 938f583ef5734d20c0e1f36f1cccaa60311471ff [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#include <vnet/classify/vnet_classify.h>
Andrew Yourtchenko815d7d52018-02-07 11:37:02 +010016#include <vnet/classify/in_out_acl.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070017#include <vnet/ip/ip.h>
khemendra kumard7bfa0e2017-11-27 15:15:53 +053018#include <vnet/api_errno.h> /* for API error numbers */
19#include <vnet/l2/l2_classify.h> /* for L2_INPUT_CLASSIFY_NEXT_xxx */
Steve Shin25e26dc2016-11-08 10:47:10 -080020#include <vnet/fib/fib_table.h>
jaszha030455c432019-06-12 16:01:19 -050021#include <vppinfra/lock.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022
Dave Barach9137e542019-09-13 17:47:50 -040023/**
24 * @file
25 * @brief N-tuple classifier
26 */
27
Dave Barachf39ff742016-03-20 10:14:45 -040028vnet_classify_main_t vnet_classify_main;
29
Ed Warnickecb9cada2015-12-08 15:45:58 -070030#if VALIDATION_SCAFFOLDING
31/* Validation scaffolding */
khemendra kumard7bfa0e2017-11-27 15:15:53 +053032void
33mv (vnet_classify_table_t * t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070034{
khemendra kumard7bfa0e2017-11-27 15:15:53 +053035 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -070036
37 oldheap = clib_mem_set_heap (t->mheap);
khemendra kumard7bfa0e2017-11-27 15:15:53 +053038 clib_mem_validate ();
Ed Warnickecb9cada2015-12-08 15:45:58 -070039 clib_mem_set_heap (oldheap);
40}
41
khemendra kumard7bfa0e2017-11-27 15:15:53 +053042void
43rogue (vnet_classify_table_t * t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070044{
45 int i, j, k;
khemendra kumard7bfa0e2017-11-27 15:15:53 +053046 vnet_classify_entry_t *v, *save_v;
Ed Warnickecb9cada2015-12-08 15:45:58 -070047 u32 active_elements = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +053048 vnet_classify_bucket_t *b;
49
Ed Warnickecb9cada2015-12-08 15:45:58 -070050 for (i = 0; i < t->nbuckets; i++)
51 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +053052 b = &t->buckets[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -070053 if (b->offset == 0)
khemendra kumard7bfa0e2017-11-27 15:15:53 +053054 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070055 save_v = vnet_classify_get_entry (t, b->offset);
khemendra kumard7bfa0e2017-11-27 15:15:53 +053056 for (j = 0; j < (1 << b->log2_pages); j++)
57 {
58 for (k = 0; k < t->entries_per_page; k++)
59 {
60 v = vnet_classify_entry_at_index
61 (t, save_v, j * t->entries_per_page + k);
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
khemendra kumard7bfa0e2017-11-27 15:15:53 +053063 if (vnet_classify_entry_is_busy (v))
64 active_elements++;
65 }
66 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 }
68
69 if (active_elements != t->active_elements)
khemendra kumard7bfa0e2017-11-27 15:15:53 +053070 clib_warning ("found %u expected %u elts", active_elements,
71 t->active_elements);
Ed Warnickecb9cada2015-12-08 15:45:58 -070072}
73#else
khemendra kumard7bfa0e2017-11-27 15:15:53 +053074void
75mv (vnet_classify_table_t * t)
76{
77}
78
79void
80rogue (vnet_classify_table_t * t)
81{
82}
Ed Warnickecb9cada2015-12-08 15:45:58 -070083#endif
84
khemendra kumard7bfa0e2017-11-27 15:15:53 +053085void
86vnet_classify_register_unformat_l2_next_index_fn (unformat_function_t * fn)
Dave Barachf39ff742016-03-20 10:14:45 -040087{
khemendra kumard7bfa0e2017-11-27 15:15:53 +053088 vnet_classify_main_t *cm = &vnet_classify_main;
Dave Barachf39ff742016-03-20 10:14:45 -040089
90 vec_add1 (cm->unformat_l2_next_index_fns, fn);
91}
92
khemendra kumard7bfa0e2017-11-27 15:15:53 +053093void
94vnet_classify_register_unformat_ip_next_index_fn (unformat_function_t * fn)
Dave Barachf39ff742016-03-20 10:14:45 -040095{
khemendra kumard7bfa0e2017-11-27 15:15:53 +053096 vnet_classify_main_t *cm = &vnet_classify_main;
Dave Barachf39ff742016-03-20 10:14:45 -040097
98 vec_add1 (cm->unformat_ip_next_index_fns, fn);
99}
100
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530101void
Dave Barachf39ff742016-03-20 10:14:45 -0400102vnet_classify_register_unformat_acl_next_index_fn (unformat_function_t * fn)
103{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530104 vnet_classify_main_t *cm = &vnet_classify_main;
Dave Barachf39ff742016-03-20 10:14:45 -0400105
106 vec_add1 (cm->unformat_acl_next_index_fns, fn);
107}
108
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700109void
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530110vnet_classify_register_unformat_policer_next_index_fn (unformat_function_t *
111 fn)
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700112{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530113 vnet_classify_main_t *cm = &vnet_classify_main;
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700114
115 vec_add1 (cm->unformat_policer_next_index_fns, fn);
116}
117
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530118void
119vnet_classify_register_unformat_opaque_index_fn (unformat_function_t * fn)
Dave Barachf39ff742016-03-20 10:14:45 -0400120{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530121 vnet_classify_main_t *cm = &vnet_classify_main;
Dave Barachf39ff742016-03-20 10:14:45 -0400122
123 vec_add1 (cm->unformat_opaque_index_fns, fn);
124}
125
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530126vnet_classify_table_t *
127vnet_classify_new_table (vnet_classify_main_t * cm,
128 u8 * mask, u32 nbuckets, u32 memory_size,
129 u32 skip_n_vectors, u32 match_n_vectors)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530131 vnet_classify_table_t *t;
132 void *oldheap;
133
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134 nbuckets = 1 << (max_log2 (nbuckets));
135
136 pool_get_aligned (cm->tables, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400137 clib_memset (t, 0, sizeof (*t));
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530138
139 vec_validate_aligned (t->mask, match_n_vectors - 1, sizeof (u32x4));
Dave Barach178cf492018-11-13 16:34:13 -0500140 clib_memcpy_fast (t->mask, mask, match_n_vectors * sizeof (u32x4));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
142 t->next_table_index = ~0;
143 t->nbuckets = nbuckets;
144 t->log2_nbuckets = max_log2 (nbuckets);
145 t->match_n_vectors = match_n_vectors;
146 t->skip_n_vectors = skip_n_vectors;
147 t->entries_per_page = 2;
148
Dave Barach6a5adc32018-07-04 10:56:23 -0400149#if USE_DLMALLOC == 0
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530150 t->mheap = mheap_alloc (0 /* use VM */ , memory_size);
Dave Barach6a5adc32018-07-04 10:56:23 -0400151#else
152 t->mheap = create_mspace (memory_size, 1 /* locked */ );
Andrew Yourtchenkoa990a2e2019-03-18 10:49:56 +0100153 /* classifier requires the memory to be contiguous, so can not expand. */
154 mspace_disable_expand (t->mheap);
Dave Barach6a5adc32018-07-04 10:56:23 -0400155#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
157 vec_validate_aligned (t->buckets, nbuckets - 1, CLIB_CACHE_LINE_BYTES);
158 oldheap = clib_mem_set_heap (t->mheap);
159
jaszha035cdde5c2019-07-11 20:47:24 +0000160 clib_spinlock_init (&t->writer_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161 clib_mem_set_heap (oldheap);
162 return (t);
163}
164
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530165void
166vnet_classify_delete_table_index (vnet_classify_main_t * cm,
167 u32 table_index, int del_chain)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530169 vnet_classify_table_t *t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
171 /* Tolerate multiple frees, up to a point */
172 if (pool_is_free_index (cm->tables, table_index))
173 return;
174
175 t = pool_elt_at_index (cm->tables, table_index);
Juraj Sloboda288e8932016-12-06 21:25:19 +0100176 if (del_chain && t->next_table_index != ~0)
177 /* Recursively delete the entire chain */
178 vnet_classify_delete_table_index (cm, t->next_table_index, del_chain);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
180 vec_free (t->mask);
181 vec_free (t->buckets);
Dave Barach6a5adc32018-07-04 10:56:23 -0400182#if USE_DLMALLOC == 0
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 mheap_free (t->mheap);
Dave Barach6a5adc32018-07-04 10:56:23 -0400184#else
185 destroy_mspace (t->mheap);
186#endif
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530187
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 pool_put (cm->tables, t);
189}
190
191static vnet_classify_entry_t *
192vnet_classify_entry_alloc (vnet_classify_table_t * t, u32 log2_pages)
193{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530194 vnet_classify_entry_t *rv = 0;
Dave Barachcada2a02017-05-18 19:16:47 -0400195 u32 required_length;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530196 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197
jaszha035cdde5c2019-07-11 20:47:24 +0000198 CLIB_SPINLOCK_ASSERT_LOCKED (&t->writer_lock);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530199 required_length =
200 (sizeof (vnet_classify_entry_t) + (t->match_n_vectors * sizeof (u32x4)))
201 * t->entries_per_page * (1 << log2_pages);
Dave Barachcada2a02017-05-18 19:16:47 -0400202
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530203 if (log2_pages >= vec_len (t->freelists) || t->freelists[log2_pages] == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204 {
205 oldheap = clib_mem_set_heap (t->mheap);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530206
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 vec_validate (t->freelists, log2_pages);
208
Dave Barachcada2a02017-05-18 19:16:47 -0400209 rv = clib_mem_alloc_aligned (required_length, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210 clib_mem_set_heap (oldheap);
211 goto initialize;
212 }
213 rv = t->freelists[log2_pages];
214 t->freelists[log2_pages] = rv->next_free;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530215
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216initialize:
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530217 ASSERT (rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218
Dave Barachb7b92992018-10-17 10:38:51 -0400219 clib_memset (rv, 0xff, required_length);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 return rv;
221}
222
223static void
224vnet_classify_entry_free (vnet_classify_table_t * t,
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530225 vnet_classify_entry_t * v, u32 log2_pages)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226{
jaszha035cdde5c2019-07-11 20:47:24 +0000227 CLIB_SPINLOCK_ASSERT_LOCKED (&t->writer_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530229 ASSERT (vec_len (t->freelists) > log2_pages);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530231 v->next_free = t->freelists[log2_pages];
232 t->freelists[log2_pages] = v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233}
234
235static inline void make_working_copy
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530236 (vnet_classify_table_t * t, vnet_classify_bucket_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530238 vnet_classify_entry_t *v;
239 vnet_classify_bucket_t working_bucket __attribute__ ((aligned (8)));
240 void *oldheap;
241 vnet_classify_entry_t *working_copy;
242 u32 thread_index = vlib_get_thread_index ();
Dave Barachcada2a02017-05-18 19:16:47 -0400243 int working_copy_length, required_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244
Damjan Marion586afd72017-04-05 19:18:20 +0200245 if (thread_index >= vec_len (t->working_copies))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 {
247 oldheap = clib_mem_set_heap (t->mheap);
Damjan Marion586afd72017-04-05 19:18:20 +0200248 vec_validate (t->working_copies, thread_index);
Dave Barachcada2a02017-05-18 19:16:47 -0400249 vec_validate (t->working_copy_lengths, thread_index);
250 t->working_copy_lengths[thread_index] = -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251 clib_mem_set_heap (oldheap);
252 }
253
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530254 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 * working_copies are per-cpu so that near-simultaneous
256 * updates from multiple threads will not result in sporadic, spurious
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530257 * lookup failures.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258 */
Damjan Marion586afd72017-04-05 19:18:20 +0200259 working_copy = t->working_copies[thread_index];
Dave Barachcada2a02017-05-18 19:16:47 -0400260 working_copy_length = t->working_copy_lengths[thread_index];
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530261 required_length =
262 (sizeof (vnet_classify_entry_t) + (t->match_n_vectors * sizeof (u32x4)))
263 * t->entries_per_page * (1 << b->log2_pages);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
265 t->saved_bucket.as_u64 = b->as_u64;
266 oldheap = clib_mem_set_heap (t->mheap);
267
Dave Barachcada2a02017-05-18 19:16:47 -0400268 if (required_length > working_copy_length)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 {
Dave Barachcada2a02017-05-18 19:16:47 -0400270 if (working_copy)
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530271 clib_mem_free (working_copy);
Dave Barachcada2a02017-05-18 19:16:47 -0400272 working_copy =
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530273 clib_mem_alloc_aligned (required_length, CLIB_CACHE_LINE_BYTES);
Damjan Marion586afd72017-04-05 19:18:20 +0200274 t->working_copies[thread_index] = working_copy;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 }
276
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 clib_mem_set_heap (oldheap);
278
279 v = vnet_classify_get_entry (t, b->offset);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530280
Dave Barach178cf492018-11-13 16:34:13 -0500281 clib_memcpy_fast (working_copy, v, required_length);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530282
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 working_bucket.as_u64 = b->as_u64;
284 working_bucket.offset = vnet_classify_get_offset (t, working_copy);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530285 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286 b->as_u64 = working_bucket.as_u64;
Damjan Marion586afd72017-04-05 19:18:20 +0200287 t->working_copies[thread_index] = working_copy;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288}
289
290static vnet_classify_entry_t *
291split_and_rehash (vnet_classify_table_t * t,
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530292 vnet_classify_entry_t * old_values, u32 old_log2_pages,
293 u32 new_log2_pages)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530295 vnet_classify_entry_t *new_values, *v, *new_v;
Dave Barachcada2a02017-05-18 19:16:47 -0400296 int i, j, length_in_entries;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530297
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298 new_values = vnet_classify_entry_alloc (t, new_log2_pages);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530299 length_in_entries = (1 << old_log2_pages) * t->entries_per_page;
300
Dave Barachcada2a02017-05-18 19:16:47 -0400301 for (i = 0; i < length_in_entries; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302 {
303 u64 new_hash;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530304
Dave Barachcada2a02017-05-18 19:16:47 -0400305 v = vnet_classify_entry_at_index (t, old_values, i);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530306
Dave Barachcada2a02017-05-18 19:16:47 -0400307 if (vnet_classify_entry_is_busy (v))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530308 {
309 /* Hack so we can use the packet hash routine */
310 u8 *key_minus_skip;
311 key_minus_skip = (u8 *) v->key;
312 key_minus_skip -= t->skip_n_vectors * sizeof (u32x4);
313
314 new_hash = vnet_classify_hash_packet (t, key_minus_skip);
315 new_hash >>= t->log2_nbuckets;
316 new_hash &= (1 << new_log2_pages) - 1;
317
318 for (j = 0; j < t->entries_per_page; j++)
319 {
320 new_v = vnet_classify_entry_at_index (t, new_values,
321 new_hash + j);
322
323 if (vnet_classify_entry_is_free (new_v))
324 {
Dave Barach178cf492018-11-13 16:34:13 -0500325 clib_memcpy_fast (new_v, v, sizeof (vnet_classify_entry_t)
326 + (t->match_n_vectors * sizeof (u32x4)));
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530327 new_v->flags &= ~(VNET_CLASSIFY_ENTRY_FREE);
328 goto doublebreak;
329 }
330 }
331 /* Crap. Tell caller to try again */
332 vnet_classify_entry_free (t, new_values, new_log2_pages);
333 return 0;
334 doublebreak:
335 ;
336 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337 }
338 return new_values;
339}
340
Dave Barachcada2a02017-05-18 19:16:47 -0400341static vnet_classify_entry_t *
342split_and_rehash_linear (vnet_classify_table_t * t,
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530343 vnet_classify_entry_t * old_values,
344 u32 old_log2_pages, u32 new_log2_pages)
Dave Barachcada2a02017-05-18 19:16:47 -0400345{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530346 vnet_classify_entry_t *new_values, *v, *new_v;
Dave Barachcada2a02017-05-18 19:16:47 -0400347 int i, j, new_length_in_entries, old_length_in_entries;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530348
Dave Barachcada2a02017-05-18 19:16:47 -0400349 new_values = vnet_classify_entry_alloc (t, new_log2_pages);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530350 new_length_in_entries = (1 << new_log2_pages) * t->entries_per_page;
351 old_length_in_entries = (1 << old_log2_pages) * t->entries_per_page;
352
Dave Barachcada2a02017-05-18 19:16:47 -0400353 j = 0;
354 for (i = 0; i < old_length_in_entries; i++)
355 {
356 v = vnet_classify_entry_at_index (t, old_values, i);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530357
Dave Barachcada2a02017-05-18 19:16:47 -0400358 if (vnet_classify_entry_is_busy (v))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530359 {
360 for (; j < new_length_in_entries; j++)
361 {
362 new_v = vnet_classify_entry_at_index (t, new_values, j);
363
364 if (vnet_classify_entry_is_busy (new_v))
365 {
366 clib_warning ("BUG: linear rehash new entry not free!");
367 continue;
368 }
Dave Barach178cf492018-11-13 16:34:13 -0500369 clib_memcpy_fast (new_v, v, sizeof (vnet_classify_entry_t)
370 + (t->match_n_vectors * sizeof (u32x4)));
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530371 new_v->flags &= ~(VNET_CLASSIFY_ENTRY_FREE);
372 j++;
373 goto doublebreak;
374 }
375 /*
376 * Crap. Tell caller to try again.
377 * This should never happen...
378 */
379 clib_warning ("BUG: linear rehash failed!");
380 vnet_classify_entry_free (t, new_values, new_log2_pages);
381 return 0;
382 }
Dave Barachcada2a02017-05-18 19:16:47 -0400383 doublebreak:
384 ;
385 }
386
387 return new_values;
388}
389
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700390static void
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530391vnet_classify_entry_claim_resource (vnet_classify_entry_t * e)
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700392{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530393 switch (e->action)
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700394 {
395 case CLASSIFY_ACTION_SET_IP4_FIB_INDEX:
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530396 fib_table_lock (e->metadata, FIB_PROTOCOL_IP4, FIB_SOURCE_CLASSIFY);
397 break;
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700398 case CLASSIFY_ACTION_SET_IP6_FIB_INDEX:
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530399 fib_table_lock (e->metadata, FIB_PROTOCOL_IP6, FIB_SOURCE_CLASSIFY);
400 break;
Dave Barach630a8e22017-11-18 06:58:34 -0500401 case CLASSIFY_ACTION_SET_METADATA:
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530402 break;
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700403 }
404}
405
406static void
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530407vnet_classify_entry_release_resource (vnet_classify_entry_t * e)
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700408{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530409 switch (e->action)
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700410 {
411 case CLASSIFY_ACTION_SET_IP4_FIB_INDEX:
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530412 fib_table_unlock (e->metadata, FIB_PROTOCOL_IP4, FIB_SOURCE_CLASSIFY);
413 break;
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700414 case CLASSIFY_ACTION_SET_IP6_FIB_INDEX:
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530415 fib_table_unlock (e->metadata, FIB_PROTOCOL_IP6, FIB_SOURCE_CLASSIFY);
416 break;
Dave Barach630a8e22017-11-18 06:58:34 -0500417 case CLASSIFY_ACTION_SET_METADATA:
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530418 break;
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700419 }
420}
421
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530422int
423vnet_classify_add_del (vnet_classify_table_t * t,
424 vnet_classify_entry_t * add_v, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425{
426 u32 bucket_index;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530427 vnet_classify_bucket_t *b, tmp_b;
428 vnet_classify_entry_t *v, *new_v, *save_new_v, *working_copy, *save_v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 u32 value_index;
430 int rv = 0;
431 int i;
432 u64 hash, new_hash;
Dave Barachcada2a02017-05-18 19:16:47 -0400433 u32 limit;
434 u32 old_log2_pages, new_log2_pages;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530435 u32 thread_index = vlib_get_thread_index ();
436 u8 *key_minus_skip;
Dave Barach48113e02017-06-07 08:32:51 -0400437 int resplit_once = 0;
Dave Barachcada2a02017-05-18 19:16:47 -0400438 int mark_bucket_linear;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439
440 ASSERT ((add_v->flags & VNET_CLASSIFY_ENTRY_FREE) == 0);
441
442 key_minus_skip = (u8 *) add_v->key;
443 key_minus_skip -= t->skip_n_vectors * sizeof (u32x4);
444
445 hash = vnet_classify_hash_packet (t, key_minus_skip);
446
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530447 bucket_index = hash & (t->nbuckets - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 b = &t->buckets[bucket_index];
449
450 hash >>= t->log2_nbuckets;
451
jaszha035cdde5c2019-07-11 20:47:24 +0000452 clib_spinlock_lock (&t->writer_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453
454 /* First elt in the bucket? */
455 if (b->offset == 0)
456 {
457 if (is_add == 0)
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530458 {
459 rv = -1;
460 goto unlock;
461 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530463 v = vnet_classify_entry_alloc (t, 0 /* new_log2_pages */ );
Dave Barach178cf492018-11-13 16:34:13 -0500464 clib_memcpy_fast (v, add_v, sizeof (vnet_classify_entry_t) +
465 t->match_n_vectors * sizeof (u32x4));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 v->flags &= ~(VNET_CLASSIFY_ENTRY_FREE);
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700467 vnet_classify_entry_claim_resource (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468
469 tmp_b.as_u64 = 0;
470 tmp_b.offset = vnet_classify_get_offset (t, v);
471
472 b->as_u64 = tmp_b.as_u64;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530473 t->active_elements++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474
475 goto unlock;
476 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530477
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478 make_working_copy (t, b);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530479
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480 save_v = vnet_classify_get_entry (t, t->saved_bucket.offset);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530481 value_index = hash & ((1 << t->saved_bucket.log2_pages) - 1);
Dave Barachcada2a02017-05-18 19:16:47 -0400482 limit = t->entries_per_page;
483 if (PREDICT_FALSE (b->linear_search))
484 {
485 value_index = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530486 limit *= (1 << b->log2_pages);
Dave Barachcada2a02017-05-18 19:16:47 -0400487 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530488
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 if (is_add)
490 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530491 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 * For obvious (in hindsight) reasons, see if we're supposed to
493 * replace an existing key, then look for an empty slot.
494 */
495
Dave Barachcada2a02017-05-18 19:16:47 -0400496 for (i = 0; i < limit; i++)
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530497 {
498 v = vnet_classify_entry_at_index (t, save_v, value_index + i);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530500 if (!memcmp
501 (v->key, add_v->key, t->match_n_vectors * sizeof (u32x4)))
502 {
Dave Barach178cf492018-11-13 16:34:13 -0500503 clib_memcpy_fast (v, add_v, sizeof (vnet_classify_entry_t) +
504 t->match_n_vectors * sizeof (u32x4));
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530505 v->flags &= ~(VNET_CLASSIFY_ENTRY_FREE);
506 vnet_classify_entry_claim_resource (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530508 CLIB_MEMORY_BARRIER ();
509 /* Restore the previous (k,v) pairs */
510 b->as_u64 = t->saved_bucket.as_u64;
511 goto unlock;
512 }
513 }
Dave Barachcada2a02017-05-18 19:16:47 -0400514 for (i = 0; i < limit; i++)
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530515 {
516 v = vnet_classify_entry_at_index (t, save_v, value_index + i);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530518 if (vnet_classify_entry_is_free (v))
519 {
Dave Barach178cf492018-11-13 16:34:13 -0500520 clib_memcpy_fast (v, add_v, sizeof (vnet_classify_entry_t) +
521 t->match_n_vectors * sizeof (u32x4));
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530522 v->flags &= ~(VNET_CLASSIFY_ENTRY_FREE);
523 vnet_classify_entry_claim_resource (v);
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700524
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530525 CLIB_MEMORY_BARRIER ();
526 b->as_u64 = t->saved_bucket.as_u64;
527 t->active_elements++;
528 goto unlock;
529 }
530 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531 /* no room at the inn... split case... */
532 }
533 else
534 {
Dave Barachcada2a02017-05-18 19:16:47 -0400535 for (i = 0; i < limit; i++)
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530536 {
537 v = vnet_classify_entry_at_index (t, save_v, value_index + i);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530539 if (!memcmp
540 (v->key, add_v->key, t->match_n_vectors * sizeof (u32x4)))
541 {
542 vnet_classify_entry_release_resource (v);
Dave Barachb7b92992018-10-17 10:38:51 -0400543 clib_memset (v, 0xff, sizeof (vnet_classify_entry_t) +
544 t->match_n_vectors * sizeof (u32x4));
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530545 v->flags |= VNET_CLASSIFY_ENTRY_FREE;
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700546
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530547 CLIB_MEMORY_BARRIER ();
548 b->as_u64 = t->saved_bucket.as_u64;
549 t->active_elements--;
550 goto unlock;
551 }
552 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553 rv = -3;
554 b->as_u64 = t->saved_bucket.as_u64;
555 goto unlock;
556 }
557
Dave Barachcada2a02017-05-18 19:16:47 -0400558 old_log2_pages = t->saved_bucket.log2_pages;
559 new_log2_pages = old_log2_pages + 1;
Damjan Marion586afd72017-04-05 19:18:20 +0200560 working_copy = t->working_copies[thread_index];
Dave Barachcada2a02017-05-18 19:16:47 -0400561
562 if (t->saved_bucket.linear_search)
563 goto linear_resplit;
564
565 mark_bucket_linear = 0;
566
567 new_v = split_and_rehash (t, working_copy, old_log2_pages, new_log2_pages);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568
569 if (new_v == 0)
570 {
Dave Barachcada2a02017-05-18 19:16:47 -0400571 try_resplit:
572 resplit_once = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573 new_log2_pages++;
Dave Barachcada2a02017-05-18 19:16:47 -0400574
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530575 new_v = split_and_rehash (t, working_copy, old_log2_pages,
576 new_log2_pages);
Dave Barachcada2a02017-05-18 19:16:47 -0400577 if (new_v == 0)
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530578 {
579 mark_linear:
580 new_log2_pages--;
Dave Barachcada2a02017-05-18 19:16:47 -0400581
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530582 linear_resplit:
Dave Barachcada2a02017-05-18 19:16:47 -0400583 /* pinned collisions, use linear search */
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530584 new_v = split_and_rehash_linear (t, working_copy, old_log2_pages,
585 new_log2_pages);
586 /* A new linear-search bucket? */
587 if (!t->saved_bucket.linear_search)
588 t->linear_buckets++;
589 mark_bucket_linear = 1;
590 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591 }
592
593 /* Try to add the new entry */
594 save_new_v = new_v;
595
596 key_minus_skip = (u8 *) add_v->key;
597 key_minus_skip -= t->skip_n_vectors * sizeof (u32x4);
598
599 new_hash = vnet_classify_hash_packet_inline (t, key_minus_skip);
600 new_hash >>= t->log2_nbuckets;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530601 new_hash &= (1 << new_log2_pages) - 1;
Dave Barachcada2a02017-05-18 19:16:47 -0400602
603 limit = t->entries_per_page;
604 if (mark_bucket_linear)
605 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530606 limit *= (1 << new_log2_pages);
Dave Barachcada2a02017-05-18 19:16:47 -0400607 new_hash = 0;
608 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530609
Dave Barachcada2a02017-05-18 19:16:47 -0400610 for (i = 0; i < limit; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611 {
612 new_v = vnet_classify_entry_at_index (t, save_new_v, new_hash + i);
613
614 if (vnet_classify_entry_is_free (new_v))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530615 {
Dave Barach178cf492018-11-13 16:34:13 -0500616 clib_memcpy_fast (new_v, add_v, sizeof (vnet_classify_entry_t) +
617 t->match_n_vectors * sizeof (u32x4));
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530618 new_v->flags &= ~(VNET_CLASSIFY_ENTRY_FREE);
619 vnet_classify_entry_claim_resource (new_v);
Neale Ranns13eaf3e2017-05-23 06:10:33 -0700620
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530621 goto expand_ok;
622 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 }
624 /* Crap. Try again */
Dave Barachcada2a02017-05-18 19:16:47 -0400625 vnet_classify_entry_free (t, save_new_v, new_log2_pages);
Dave Barachcada2a02017-05-18 19:16:47 -0400626
627 if (resplit_once)
628 goto mark_linear;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530629 else
Dave Barachcada2a02017-05-18 19:16:47 -0400630 goto try_resplit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530632expand_ok:
Dave Barachcada2a02017-05-18 19:16:47 -0400633 tmp_b.log2_pages = new_log2_pages;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634 tmp_b.offset = vnet_classify_get_offset (t, save_new_v);
Dave Barachcada2a02017-05-18 19:16:47 -0400635 tmp_b.linear_search = mark_bucket_linear;
636
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530637 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638 b->as_u64 = tmp_b.as_u64;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530639 t->active_elements++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640 v = vnet_classify_get_entry (t, t->saved_bucket.offset);
Dave Barachcada2a02017-05-18 19:16:47 -0400641 vnet_classify_entry_free (t, v, old_log2_pages);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530643unlock:
jaszha035cdde5c2019-07-11 20:47:24 +0000644 clib_spinlock_unlock (&t->writer_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645 return rv;
646}
647
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530648/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649typedef CLIB_PACKED(struct {
650 ethernet_header_t eh;
651 ip4_header_t ip;
652}) classify_data_or_mask_t;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530653/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530655u64
656vnet_classify_hash_packet (vnet_classify_table_t * t, u8 * h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530658 return vnet_classify_hash_packet_inline (t, h);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700659}
660
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530661vnet_classify_entry_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662vnet_classify_find_entry (vnet_classify_table_t * t,
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530663 u8 * h, u64 hash, f64 now)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664{
665 return vnet_classify_find_entry_inline (t, h, hash, now);
666}
667
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530668static u8 *
669format_classify_entry (u8 * s, va_list * args)
670{
671 vnet_classify_table_t *t = va_arg (*args, vnet_classify_table_t *);
672 vnet_classify_entry_t *e = va_arg (*args, vnet_classify_entry_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700673
674 s = format
Steve Shin25e26dc2016-11-08 10:47:10 -0800675 (s, "[%u]: next_index %d advance %d opaque %d action %d metadata %d\n",
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530676 vnet_classify_get_offset (t, e), e->next_index, e->advance,
Steve Shin25e26dc2016-11-08 10:47:10 -0800677 e->opaque_index, e->action, e->metadata);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700678
679
680 s = format (s, " k: %U\n", format_hex_bytes, e->key,
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530681 t->match_n_vectors * sizeof (u32x4));
682
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 if (vnet_classify_entry_is_busy (e))
684 s = format (s, " hits %lld, last_heard %.2f\n",
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530685 e->hits, e->last_heard);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 else
687 s = format (s, " entry is free\n");
688 return s;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530689}
690
691u8 *
692format_classify_table (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530694 vnet_classify_table_t *t = va_arg (*args, vnet_classify_table_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695 int verbose = va_arg (*args, int);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530696 vnet_classify_bucket_t *b;
697 vnet_classify_entry_t *v, *save_v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698 int i, j, k;
699 u64 active_elements = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530700
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701 for (i = 0; i < t->nbuckets; i++)
702 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530703 b = &t->buckets[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704 if (b->offset == 0)
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530705 {
706 if (verbose > 1)
707 s = format (s, "[%d]: empty\n", i);
708 continue;
709 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710
711 if (verbose)
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530712 {
713 s = format (s, "[%d]: heap offset %d, elts %d, %s\n", i,
714 b->offset, (1 << b->log2_pages) * t->entries_per_page,
715 b->linear_search ? "LINEAR" : "normal");
716 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717
718 save_v = vnet_classify_get_entry (t, b->offset);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530719 for (j = 0; j < (1 << b->log2_pages); j++)
720 {
721 for (k = 0; k < t->entries_per_page; k++)
722 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530724 v = vnet_classify_entry_at_index (t, save_v,
725 j * t->entries_per_page + k);
726
727 if (vnet_classify_entry_is_free (v))
728 {
729 if (verbose > 1)
730 s = format (s, " %d: empty\n",
731 j * t->entries_per_page + k);
732 continue;
733 }
734 if (verbose)
735 {
736 s = format (s, " %d: %U\n",
737 j * t->entries_per_page + k,
738 format_classify_entry, t, v);
739 }
740 active_elements++;
741 }
742 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700743 }
744
745 s = format (s, " %lld active elements\n", active_elements);
746 s = format (s, " %d free lists\n", vec_len (t->freelists));
Dave Barachcada2a02017-05-18 19:16:47 -0400747 s = format (s, " %d linear-search buckets\n", t->linear_buckets);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748 return s;
749}
750
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530751int
752vnet_classify_add_del_table (vnet_classify_main_t * cm,
753 u8 * mask,
754 u32 nbuckets,
755 u32 memory_size,
756 u32 skip,
757 u32 match,
758 u32 next_table_index,
759 u32 miss_next_index,
760 u32 * table_index,
761 u8 current_data_flag,
762 i16 current_data_offset,
763 int is_add, int del_chain)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530765 vnet_classify_table_t *t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766
767 if (is_add)
768 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530769 if (*table_index == ~0) /* add */
770 {
771 if (memory_size == 0)
772 return VNET_API_ERROR_INVALID_MEMORY_SIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530774 if (nbuckets == 0)
775 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530777 t = vnet_classify_new_table (cm, mask, nbuckets, memory_size,
778 skip, match);
779 t->next_table_index = next_table_index;
780 t->miss_next_index = miss_next_index;
781 t->current_data_flag = current_data_flag;
782 t->current_data_offset = current_data_offset;
783 *table_index = t - cm->tables;
784 }
785 else /* update */
786 {
787 vnet_classify_main_t *cm = &vnet_classify_main;
788 t = pool_elt_at_index (cm->tables, *table_index);
Steve Shin25e26dc2016-11-08 10:47:10 -0800789
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530790 t->next_table_index = next_table_index;
791 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700792 return 0;
793 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530794
Juraj Sloboda288e8932016-12-06 21:25:19 +0100795 vnet_classify_delete_table_index (cm, *table_index, del_chain);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796 return 0;
797}
798
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700799#define foreach_tcp_proto_field \
Dave Barach68b0fb02017-02-28 15:15:56 -0500800_(src) \
801_(dst)
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700802
803#define foreach_udp_proto_field \
804_(src_port) \
805_(dst_port)
806
Ed Warnickecb9cada2015-12-08 15:45:58 -0700807#define foreach_ip4_proto_field \
808_(src_address) \
809_(dst_address) \
810_(tos) \
811_(length) \
812_(fragment_id) \
813_(ttl) \
814_(protocol) \
815_(checksum)
816
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530817uword
818unformat_tcp_mask (unformat_input_t * input, va_list * args)
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700819{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530820 u8 **maskp = va_arg (*args, u8 **);
821 u8 *mask = 0;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700822 u8 found_something = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530823 tcp_header_t *tcp;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700824
825#define _(a) u8 a=0;
826 foreach_tcp_proto_field;
827#undef _
828
829 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
830 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530831 if (0);
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700832#define _(a) else if (unformat (input, #a)) a=1;
833 foreach_tcp_proto_field
834#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530835 else
836 break;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700837 }
838
839#define _(a) found_something += a;
840 foreach_tcp_proto_field;
841#undef _
842
843 if (found_something == 0)
844 return 0;
845
846 vec_validate (mask, sizeof (*tcp) - 1);
847
848 tcp = (tcp_header_t *) mask;
849
Dave Barachb7b92992018-10-17 10:38:51 -0400850#define _(a) if (a) clib_memset (&tcp->a, 0xff, sizeof (tcp->a));
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700851 foreach_tcp_proto_field;
852#undef _
853
854 *maskp = mask;
855 return 1;
856}
857
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530858uword
859unformat_udp_mask (unformat_input_t * input, va_list * args)
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700860{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530861 u8 **maskp = va_arg (*args, u8 **);
862 u8 *mask = 0;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700863 u8 found_something = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530864 udp_header_t *udp;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700865
866#define _(a) u8 a=0;
867 foreach_udp_proto_field;
868#undef _
869
870 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
871 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530872 if (0);
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700873#define _(a) else if (unformat (input, #a)) a=1;
874 foreach_udp_proto_field
875#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530876 else
877 break;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700878 }
879
880#define _(a) found_something += a;
881 foreach_udp_proto_field;
882#undef _
883
884 if (found_something == 0)
885 return 0;
886
887 vec_validate (mask, sizeof (*udp) - 1);
888
889 udp = (udp_header_t *) mask;
890
Dave Barachb7b92992018-10-17 10:38:51 -0400891#define _(a) if (a) clib_memset (&udp->a, 0xff, sizeof (udp->a));
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700892 foreach_udp_proto_field;
893#undef _
894
895 *maskp = mask;
896 return 1;
897}
898
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530899typedef struct
900{
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700901 u16 src_port, dst_port;
902} tcpudp_header_t;
903
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530904uword
905unformat_l4_mask (unformat_input_t * input, va_list * args)
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700906{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530907 u8 **maskp = va_arg (*args, u8 **);
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700908 u16 src_port = 0, dst_port = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530909 tcpudp_header_t *tcpudp;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700910
911 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
912 {
913 if (unformat (input, "tcp %U", unformat_tcp_mask, maskp))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530914 return 1;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700915 else if (unformat (input, "udp %U", unformat_udp_mask, maskp))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530916 return 1;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700917 else if (unformat (input, "src_port"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530918 src_port = 0xFFFF;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700919 else if (unformat (input, "dst_port"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530920 dst_port = 0xFFFF;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700921 else
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530922 return 0;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700923 }
924
925 if (!src_port && !dst_port)
926 return 0;
927
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530928 u8 *mask = 0;
Juraj Sloboda51ffa812016-08-07 23:46:45 -0700929 vec_validate (mask, sizeof (tcpudp_header_t) - 1);
930
931 tcpudp = (tcpudp_header_t *) mask;
932 tcpudp->src_port = src_port;
933 tcpudp->dst_port = dst_port;
934
935 *maskp = mask;
936
937 return 1;
938}
939
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530940uword
941unformat_ip4_mask (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942{
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530943 u8 **maskp = va_arg (*args, u8 **);
944 u8 *mask = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700945 u8 found_something = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530946 ip4_header_t *ip;
Dave Barach9137e542019-09-13 17:47:50 -0400947 u32 src_prefix_len = 32;
948 u32 src_prefix_mask = ~0;
949 u32 dst_prefix_len = 32;
950 u32 dst_prefix_mask = ~0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530951
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952#define _(a) u8 a=0;
953 foreach_ip4_proto_field;
954#undef _
955 u8 version = 0;
956 u8 hdr_length = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530957
958
959 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530961 if (unformat (input, "version"))
962 version = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963 else if (unformat (input, "hdr_length"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530964 hdr_length = 1;
Dave Barach9137e542019-09-13 17:47:50 -0400965 else if (unformat (input, "src/%d", &src_prefix_len))
966 {
967 src_address = 1;
968 src_prefix_mask &= ~((1 << (32 - src_prefix_len)) - 1);
969 src_prefix_mask = clib_host_to_net_u32 (src_prefix_mask);
970 }
971 else if (unformat (input, "dst/%d", &dst_prefix_len))
972 {
973 dst_address = 1;
974 dst_prefix_mask &= ~((1 << (32 - dst_prefix_len)) - 1);
975 dst_prefix_mask = clib_host_to_net_u32 (dst_prefix_mask);
976 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700977 else if (unformat (input, "src"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530978 src_address = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979 else if (unformat (input, "dst"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530980 dst_address = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981 else if (unformat (input, "proto"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530982 protocol = 1;
983
Ed Warnickecb9cada2015-12-08 15:45:58 -0700984#define _(a) else if (unformat (input, #a)) a=1;
985 foreach_ip4_proto_field
986#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530987 else
988 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530990
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991#define _(a) found_something += a;
992 foreach_ip4_proto_field;
993#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530994
Ed Warnickecb9cada2015-12-08 15:45:58 -0700995 if (found_something == 0)
996 return 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530997
Ed Warnickecb9cada2015-12-08 15:45:58 -0700998 vec_validate (mask, sizeof (*ip) - 1);
khemendra kumard7bfa0e2017-11-27 15:15:53 +0530999
Ed Warnickecb9cada2015-12-08 15:45:58 -07001000 ip = (ip4_header_t *) mask;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301001
Dave Barachb7b92992018-10-17 10:38:51 -04001002#define _(a) if (a) clib_memset (&ip->a, 0xff, sizeof (ip->a));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003 foreach_ip4_proto_field;
1004#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301005
Dave Barach9137e542019-09-13 17:47:50 -04001006 if (src_address)
1007 ip->src_address.as_u32 = src_prefix_mask;
1008
1009 if (dst_address)
1010 ip->dst_address.as_u32 = dst_prefix_mask;
1011
Ed Warnickecb9cada2015-12-08 15:45:58 -07001012 ip->ip_version_and_header_length = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301013
Ed Warnickecb9cada2015-12-08 15:45:58 -07001014 if (version)
1015 ip->ip_version_and_header_length |= 0xF0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301016
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017 if (hdr_length)
1018 ip->ip_version_and_header_length |= 0x0F;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301019
Ed Warnickecb9cada2015-12-08 15:45:58 -07001020 *maskp = mask;
1021 return 1;
1022}
1023
1024#define foreach_ip6_proto_field \
1025_(src_address) \
1026_(dst_address) \
1027_(payload_length) \
1028_(hop_limit) \
1029_(protocol)
1030
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301031uword
1032unformat_ip6_mask (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001033{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301034 u8 **maskp = va_arg (*args, u8 **);
1035 u8 *mask = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001036 u8 found_something = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301037 ip6_header_t *ip;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001038 u32 ip_version_traffic_class_and_flow_label;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301039
Ed Warnickecb9cada2015-12-08 15:45:58 -07001040#define _(a) u8 a=0;
1041 foreach_ip6_proto_field;
1042#undef _
1043 u8 version = 0;
1044 u8 traffic_class = 0;
1045 u8 flow_label = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301046
1047 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001048 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301049 if (unformat (input, "version"))
1050 version = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001051 else if (unformat (input, "traffic-class"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301052 traffic_class = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001053 else if (unformat (input, "flow-label"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301054 flow_label = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001055 else if (unformat (input, "src"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301056 src_address = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001057 else if (unformat (input, "dst"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301058 dst_address = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059 else if (unformat (input, "proto"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301060 protocol = 1;
1061
Ed Warnickecb9cada2015-12-08 15:45:58 -07001062#define _(a) else if (unformat (input, #a)) a=1;
1063 foreach_ip6_proto_field
1064#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301065 else
1066 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301068
Ed Warnickecb9cada2015-12-08 15:45:58 -07001069#define _(a) found_something += a;
1070 foreach_ip6_proto_field;
1071#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301072
Ed Warnickecb9cada2015-12-08 15:45:58 -07001073 if (found_something == 0)
1074 return 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301075
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076 vec_validate (mask, sizeof (*ip) - 1);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301077
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078 ip = (ip6_header_t *) mask;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301079
Dave Barachb7b92992018-10-17 10:38:51 -04001080#define _(a) if (a) clib_memset (&ip->a, 0xff, sizeof (ip->a));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081 foreach_ip6_proto_field;
1082#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301083
Ed Warnickecb9cada2015-12-08 15:45:58 -07001084 ip_version_traffic_class_and_flow_label = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301085
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086 if (version)
1087 ip_version_traffic_class_and_flow_label |= 0xF0000000;
1088
1089 if (traffic_class)
1090 ip_version_traffic_class_and_flow_label |= 0x0FF00000;
1091
1092 if (flow_label)
1093 ip_version_traffic_class_and_flow_label |= 0x000FFFFF;
1094
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301095 ip->ip_version_traffic_class_and_flow_label =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001096 clib_host_to_net_u32 (ip_version_traffic_class_and_flow_label);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301097
Ed Warnickecb9cada2015-12-08 15:45:58 -07001098 *maskp = mask;
1099 return 1;
1100}
1101
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301102uword
1103unformat_l3_mask (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001104{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301105 u8 **maskp = va_arg (*args, u8 **);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001106
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301107 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1108 {
1109 if (unformat (input, "ip4 %U", unformat_ip4_mask, maskp))
1110 return 1;
1111 else if (unformat (input, "ip6 %U", unformat_ip6_mask, maskp))
1112 return 1;
1113 else
1114 break;
1115 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001116 return 0;
1117}
1118
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301119uword
1120unformat_l2_mask (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301122 u8 **maskp = va_arg (*args, u8 **);
1123 u8 *mask = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001124 u8 src = 0;
1125 u8 dst = 0;
1126 u8 proto = 0;
1127 u8 tag1 = 0;
1128 u8 tag2 = 0;
1129 u8 ignore_tag1 = 0;
1130 u8 ignore_tag2 = 0;
1131 u8 cos1 = 0;
1132 u8 cos2 = 0;
1133 u8 dot1q = 0;
1134 u8 dot1ad = 0;
1135 int len = 14;
1136
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301137 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1138 {
1139 if (unformat (input, "src"))
1140 src = 1;
1141 else if (unformat (input, "dst"))
1142 dst = 1;
1143 else if (unformat (input, "proto"))
1144 proto = 1;
1145 else if (unformat (input, "tag1"))
1146 tag1 = 1;
1147 else if (unformat (input, "tag2"))
1148 tag2 = 1;
1149 else if (unformat (input, "ignore-tag1"))
1150 ignore_tag1 = 1;
1151 else if (unformat (input, "ignore-tag2"))
1152 ignore_tag2 = 1;
1153 else if (unformat (input, "cos1"))
1154 cos1 = 1;
1155 else if (unformat (input, "cos2"))
1156 cos2 = 1;
1157 else if (unformat (input, "dot1q"))
1158 dot1q = 1;
1159 else if (unformat (input, "dot1ad"))
1160 dot1ad = 1;
1161 else
1162 break;
1163 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164 if ((src + dst + proto + tag1 + tag2 + dot1q + dot1ad +
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301165 ignore_tag1 + ignore_tag2 + cos1 + cos2) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001166 return 0;
1167
1168 if (tag1 || ignore_tag1 || cos1 || dot1q)
1169 len = 18;
1170 if (tag2 || ignore_tag2 || cos2 || dot1ad)
1171 len = 22;
1172
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301173 vec_validate (mask, len - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174
1175 if (dst)
Dave Barachb7b92992018-10-17 10:38:51 -04001176 clib_memset (mask, 0xff, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177
1178 if (src)
Dave Barachb7b92992018-10-17 10:38:51 -04001179 clib_memset (mask + 6, 0xff, 6);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301180
Ed Warnickecb9cada2015-12-08 15:45:58 -07001181 if (tag2 || dot1ad)
1182 {
1183 /* inner vlan tag */
1184 if (tag2)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301185 {
1186 mask[19] = 0xff;
1187 mask[18] = 0x0f;
1188 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001189 if (cos2)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301190 mask[18] |= 0xe0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001191 if (proto)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301192 mask[21] = mask[20] = 0xff;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001193 if (tag1)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301194 {
1195 mask[15] = 0xff;
1196 mask[14] = 0x0f;
1197 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001198 if (cos1)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301199 mask[14] |= 0xe0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001200 *maskp = mask;
1201 return 1;
1202 }
1203 if (tag1 | dot1q)
1204 {
1205 if (tag1)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301206 {
1207 mask[15] = 0xff;
1208 mask[14] = 0x0f;
1209 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001210 if (cos1)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301211 mask[14] |= 0xe0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001212 if (proto)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301213 mask[16] = mask[17] = 0xff;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001214 *maskp = mask;
1215 return 1;
1216 }
1217 if (cos2)
1218 mask[18] |= 0xe0;
1219 if (cos1)
1220 mask[14] |= 0xe0;
1221 if (proto)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301222 mask[12] = mask[13] = 0xff;
1223
Ed Warnickecb9cada2015-12-08 15:45:58 -07001224 *maskp = mask;
1225 return 1;
1226}
1227
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301228uword
1229unformat_classify_mask (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001230{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301231 u8 **maskp = va_arg (*args, u8 **);
1232 u32 *skipp = va_arg (*args, u32 *);
1233 u32 *matchp = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234 u32 match;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301235 u8 *mask = 0;
1236 u8 *l2 = 0;
1237 u8 *l3 = 0;
1238 u8 *l4 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001240
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301241 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1242 {
1243 if (unformat (input, "hex %U", unformat_hex_string, &mask))
1244 ;
1245 else if (unformat (input, "l2 %U", unformat_l2_mask, &l2))
1246 ;
1247 else if (unformat (input, "l3 %U", unformat_l3_mask, &l3))
1248 ;
1249 else if (unformat (input, "l4 %U", unformat_l4_mask, &l4))
1250 ;
1251 else
1252 break;
1253 }
1254
1255 if (l4 && !l3)
1256 {
1257 vec_free (mask);
1258 vec_free (l2);
1259 vec_free (l4);
1260 return 0;
1261 }
Juraj Sloboda51ffa812016-08-07 23:46:45 -07001262
1263 if (mask || l2 || l3 || l4)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001264 {
Juraj Sloboda51ffa812016-08-07 23:46:45 -07001265 if (l2 || l3 || l4)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301266 {
1267 /* "With a free Ethernet header in every package" */
1268 if (l2 == 0)
1269 vec_validate (l2, 13);
1270 mask = l2;
1271 if (l3)
1272 {
1273 vec_append (mask, l3);
1274 vec_free (l3);
1275 }
1276 if (l4)
1277 {
1278 vec_append (mask, l4);
1279 vec_free (l4);
1280 }
1281 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001282
1283 /* Scan forward looking for the first significant mask octet */
1284 for (i = 0; i < vec_len (mask); i++)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301285 if (mask[i])
1286 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287
1288 /* compute (skip, match) params */
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301289 *skipp = i / sizeof (u32x4);
1290 vec_delete (mask, *skipp * sizeof (u32x4), 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001291
1292 /* Pad mask to an even multiple of the vector size */
1293 while (vec_len (mask) % sizeof (u32x4))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301294 vec_add1 (mask, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001295
1296 match = vec_len (mask) / sizeof (u32x4);
1297
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301298 for (i = match * sizeof (u32x4); i > 0; i -= sizeof (u32x4))
1299 {
1300 u64 *tmp = (u64 *) (mask + (i - sizeof (u32x4)));
1301 if (*tmp || *(tmp + 1))
1302 break;
1303 match--;
1304 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001305 if (match == 0)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301306 clib_warning ("BUG: match 0");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001307
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301308 _vec_len (mask) = match * sizeof (u32x4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001309
1310 *matchp = match;
1311 *maskp = mask;
1312
1313 return 1;
1314 }
1315
1316 return 0;
1317}
1318
Dave Barachb84a3e52016-08-30 17:01:52 -04001319#define foreach_l2_input_next \
Ed Warnickecb9cada2015-12-08 15:45:58 -07001320_(drop, DROP) \
1321_(ethernet, ETHERNET_INPUT) \
1322_(ip4, IP4_INPUT) \
1323_(ip6, IP6_INPUT) \
1324_(li, LI)
1325
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301326uword
1327unformat_l2_input_next_index (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001328{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301329 vnet_classify_main_t *cm = &vnet_classify_main;
1330 u32 *miss_next_indexp = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001331 u32 next_index = 0;
1332 u32 tmp;
Dave Barachf39ff742016-03-20 10:14:45 -04001333 int i;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301334
Dave Barachf39ff742016-03-20 10:14:45 -04001335 /* First try registered unformat fns, allowing override... */
1336 for (i = 0; i < vec_len (cm->unformat_l2_next_index_fns); i++)
1337 {
1338 if (unformat (input, "%U", cm->unformat_l2_next_index_fns[i], &tmp))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301339 {
1340 next_index = tmp;
1341 goto out;
1342 }
Dave Barachf39ff742016-03-20 10:14:45 -04001343 }
1344
Ed Warnickecb9cada2015-12-08 15:45:58 -07001345#define _(n,N) \
Dave Barachb84a3e52016-08-30 17:01:52 -04001346 if (unformat (input, #n)) { next_index = L2_INPUT_CLASSIFY_NEXT_##N; goto out;}
1347 foreach_l2_input_next;
1348#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301349
Dave Barachb84a3e52016-08-30 17:01:52 -04001350 if (unformat (input, "%d", &tmp))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301351 {
1352 next_index = tmp;
1353 goto out;
Dave Barachb84a3e52016-08-30 17:01:52 -04001354 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301355
Dave Barachb84a3e52016-08-30 17:01:52 -04001356 return 0;
1357
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301358out:
Dave Barachb84a3e52016-08-30 17:01:52 -04001359 *miss_next_indexp = next_index;
1360 return 1;
1361}
1362
1363#define foreach_l2_output_next \
1364_(drop, DROP)
1365
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301366uword
1367unformat_l2_output_next_index (unformat_input_t * input, va_list * args)
Dave Barachb84a3e52016-08-30 17:01:52 -04001368{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301369 vnet_classify_main_t *cm = &vnet_classify_main;
1370 u32 *miss_next_indexp = va_arg (*args, u32 *);
Dave Barachb84a3e52016-08-30 17:01:52 -04001371 u32 next_index = 0;
1372 u32 tmp;
1373 int i;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301374
Dave Barachb84a3e52016-08-30 17:01:52 -04001375 /* First try registered unformat fns, allowing override... */
1376 for (i = 0; i < vec_len (cm->unformat_l2_next_index_fns); i++)
1377 {
1378 if (unformat (input, "%U", cm->unformat_l2_next_index_fns[i], &tmp))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301379 {
1380 next_index = tmp;
1381 goto out;
1382 }
Dave Barachb84a3e52016-08-30 17:01:52 -04001383 }
1384
1385#define _(n,N) \
1386 if (unformat (input, #n)) { next_index = L2_OUTPUT_CLASSIFY_NEXT_##N; goto out;}
1387 foreach_l2_output_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001388#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301389
Ed Warnickecb9cada2015-12-08 15:45:58 -07001390 if (unformat (input, "%d", &tmp))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301391 {
1392 next_index = tmp;
1393 goto out;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001394 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301395
Ed Warnickecb9cada2015-12-08 15:45:58 -07001396 return 0;
1397
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301398out:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001399 *miss_next_indexp = next_index;
1400 return 1;
1401}
1402
1403#define foreach_ip_next \
Ed Warnickecb9cada2015-12-08 15:45:58 -07001404_(drop, DROP) \
Ed Warnickecb9cada2015-12-08 15:45:58 -07001405_(rewrite, REWRITE)
1406
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301407uword
1408unformat_ip_next_index (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001409{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301410 u32 *miss_next_indexp = va_arg (*args, u32 *);
1411 vnet_classify_main_t *cm = &vnet_classify_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001412 u32 next_index = 0;
1413 u32 tmp;
Dave Barachf39ff742016-03-20 10:14:45 -04001414 int i;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301415
Dave Barachf39ff742016-03-20 10:14:45 -04001416 /* First try registered unformat fns, allowing override... */
1417 for (i = 0; i < vec_len (cm->unformat_ip_next_index_fns); i++)
1418 {
1419 if (unformat (input, "%U", cm->unformat_ip_next_index_fns[i], &tmp))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301420 {
1421 next_index = tmp;
1422 goto out;
1423 }
Dave Barachf39ff742016-03-20 10:14:45 -04001424 }
1425
Ed Warnickecb9cada2015-12-08 15:45:58 -07001426#define _(n,N) \
1427 if (unformat (input, #n)) { next_index = IP_LOOKUP_NEXT_##N; goto out;}
1428 foreach_ip_next;
1429#undef _
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301430
Ed Warnickecb9cada2015-12-08 15:45:58 -07001431 if (unformat (input, "%d", &tmp))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301432 {
1433 next_index = tmp;
1434 goto out;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001435 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301436
Ed Warnickecb9cada2015-12-08 15:45:58 -07001437 return 0;
1438
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301439out:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001440 *miss_next_indexp = next_index;
1441 return 1;
1442}
1443
1444#define foreach_acl_next \
1445_(deny, DENY)
1446
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301447uword
1448unformat_acl_next_index (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001449{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301450 u32 *next_indexp = va_arg (*args, u32 *);
1451 vnet_classify_main_t *cm = &vnet_classify_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001452 u32 next_index = 0;
1453 u32 tmp;
Dave Barachf39ff742016-03-20 10:14:45 -04001454 int i;
1455
1456 /* First try registered unformat fns, allowing override... */
1457 for (i = 0; i < vec_len (cm->unformat_acl_next_index_fns); i++)
1458 {
1459 if (unformat (input, "%U", cm->unformat_acl_next_index_fns[i], &tmp))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301460 {
1461 next_index = tmp;
1462 goto out;
1463 }
Dave Barachf39ff742016-03-20 10:14:45 -04001464 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001465
1466#define _(n,N) \
1467 if (unformat (input, #n)) { next_index = ACL_NEXT_INDEX_##N; goto out;}
1468 foreach_acl_next;
1469#undef _
1470
1471 if (unformat (input, "permit"))
1472 {
1473 next_index = ~0;
1474 goto out;
1475 }
1476 else if (unformat (input, "%d", &tmp))
1477 {
1478 next_index = tmp;
1479 goto out;
1480 }
1481
1482 return 0;
1483
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301484out:
Dave Barachf39ff742016-03-20 10:14:45 -04001485 *next_indexp = next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001486 return 1;
1487}
1488
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301489uword
1490unformat_policer_next_index (unformat_input_t * input, va_list * args)
Matus Fabian70e6a8d2016-06-20 08:10:42 -07001491{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301492 u32 *next_indexp = va_arg (*args, u32 *);
1493 vnet_classify_main_t *cm = &vnet_classify_main;
Matus Fabian70e6a8d2016-06-20 08:10:42 -07001494 u32 next_index = 0;
1495 u32 tmp;
1496 int i;
1497
1498 /* First try registered unformat fns, allowing override... */
1499 for (i = 0; i < vec_len (cm->unformat_policer_next_index_fns); i++)
1500 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301501 if (unformat
1502 (input, "%U", cm->unformat_policer_next_index_fns[i], &tmp))
1503 {
1504 next_index = tmp;
1505 goto out;
1506 }
Matus Fabian70e6a8d2016-06-20 08:10:42 -07001507 }
1508
1509 if (unformat (input, "%d", &tmp))
1510 {
1511 next_index = tmp;
1512 goto out;
1513 }
1514
1515 return 0;
1516
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301517out:
Matus Fabian70e6a8d2016-06-20 08:10:42 -07001518 *next_indexp = next_index;
1519 return 1;
1520}
1521
Ed Warnickecb9cada2015-12-08 15:45:58 -07001522static clib_error_t *
1523classify_table_command_fn (vlib_main_t * vm,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301524 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001525{
1526 u32 nbuckets = 2;
1527 u32 skip = ~0;
1528 u32 match = ~0;
1529 int is_add = 1;
Juraj Sloboda288e8932016-12-06 21:25:19 +01001530 int del_chain = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001531 u32 table_index = ~0;
1532 u32 next_table_index = ~0;
1533 u32 miss_next_index = ~0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301534 u32 memory_size = 2 << 20;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001535 u32 tmp;
Steve Shin25e26dc2016-11-08 10:47:10 -08001536 u32 current_data_flag = 0;
1537 int current_data_offset = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001538
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301539 u8 *mask = 0;
1540 vnet_classify_main_t *cm = &vnet_classify_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001541 int rv;
1542
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301543 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1544 {
1545 if (unformat (input, "del"))
Juraj Sloboda288e8932016-12-06 21:25:19 +01001546 is_add = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301547 else if (unformat (input, "del-chain"))
1548 {
1549 is_add = 0;
1550 del_chain = 1;
1551 }
1552 else if (unformat (input, "buckets %d", &nbuckets))
1553 ;
1554 else if (unformat (input, "skip %d", &skip))
1555 ;
1556 else if (unformat (input, "match %d", &match))
1557 ;
1558 else if (unformat (input, "table %d", &table_index))
1559 ;
1560 else if (unformat (input, "mask %U", unformat_classify_mask,
1561 &mask, &skip, &match))
1562 ;
1563 else if (unformat (input, "memory-size %uM", &tmp))
1564 memory_size = tmp << 20;
1565 else if (unformat (input, "memory-size %uG", &tmp))
1566 memory_size = tmp << 30;
1567 else if (unformat (input, "next-table %d", &next_table_index))
1568 ;
1569 else if (unformat (input, "miss-next %U", unformat_ip_next_index,
1570 &miss_next_index))
1571 ;
1572 else
1573 if (unformat
1574 (input, "l2-input-miss-next %U", unformat_l2_input_next_index,
1575 &miss_next_index))
1576 ;
1577 else
1578 if (unformat
1579 (input, "l2-output-miss-next %U", unformat_l2_output_next_index,
1580 &miss_next_index))
1581 ;
1582 else if (unformat (input, "acl-miss-next %U", unformat_acl_next_index,
1583 &miss_next_index))
1584 ;
1585 else if (unformat (input, "current-data-flag %d", &current_data_flag))
1586 ;
1587 else
1588 if (unformat (input, "current-data-offset %d", &current_data_offset))
1589 ;
Steve Shin25e26dc2016-11-08 10:47:10 -08001590
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301591 else
1592 break;
1593 }
1594
Steve Shin25e26dc2016-11-08 10:47:10 -08001595 if (is_add && mask == 0 && table_index == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001596 return clib_error_return (0, "Mask required");
1597
Steve Shin25e26dc2016-11-08 10:47:10 -08001598 if (is_add && skip == ~0 && table_index == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001599 return clib_error_return (0, "skip count required");
1600
Steve Shin25e26dc2016-11-08 10:47:10 -08001601 if (is_add && match == ~0 && table_index == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001602 return clib_error_return (0, "match count required");
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301603
Ed Warnickecb9cada2015-12-08 15:45:58 -07001604 if (!is_add && table_index == ~0)
1605 return clib_error_return (0, "table index required for delete");
1606
Dave Barach9137e542019-09-13 17:47:50 -04001607 rv = vnet_classify_add_del_table (cm, mask, nbuckets, (u32) memory_size,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301608 skip, match, next_table_index,
1609 miss_next_index, &table_index,
1610 current_data_flag, current_data_offset,
1611 is_add, del_chain);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001612 switch (rv)
1613 {
1614 case 0:
1615 break;
1616
1617 default:
1618 return clib_error_return (0, "vnet_classify_add_del_table returned %d",
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301619 rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001620 }
1621 return 0;
1622}
1623
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301624/* *INDENT-OFF* */
Dave Barach9137e542019-09-13 17:47:50 -04001625VLIB_CLI_COMMAND (classify_table, static) =
1626{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001627 .path = "classify table",
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301628 .short_help =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001629 "classify table [miss-next|l2-miss_next|acl-miss-next <next_index>]"
Steve Shin25e26dc2016-11-08 10:47:10 -08001630 "\n mask <mask-value> buckets <nn> [skip <n>] [match <n>]"
Juraj Sloboda288e8932016-12-06 21:25:19 +01001631 "\n [current-data-flag <n>] [current-data-offset <n>] [table <n>]"
Hongjun Ni8184ebd2017-10-25 20:47:56 +08001632 "\n [memory-size <nn>[M][G]] [next-table <n>]"
Juraj Sloboda288e8932016-12-06 21:25:19 +01001633 "\n [del] [del-chain]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001634 .function = classify_table_command_fn,
1635};
khemendra kumard7bfa0e2017-11-27 15:15:53 +05301636/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001637
Dave Barach9137e542019-09-13 17:47:50 -04001638static int
1639filter_table_mask_compare (void *a1, void *a2)
1640{
1641 vnet_classify_main_t *cm = &vnet_classify_main;
1642 u32 *ti1 = a1;
1643 u32 *ti2 = a2;
1644 u32 n1 = 0, n2 = 0;
1645 vnet_classify_table_t *t1, *t2;
1646 u8 *m1, *m2;
1647 int i;
1648
1649 t1 = pool_elt_at_index (cm->tables, *ti1);
1650 t2 = pool_elt_at_index (cm->tables, *ti2);
1651
1652 m1 = (u8 *) (t1->mask);
1653 m2 = (u8 *) (t2->mask);
1654
1655 for (i = 0; i < vec_len (t1->mask) * sizeof (u32x4); i++)
1656 {
1657 n1 += count_set_bits (m1[0]);
1658 m1++;
1659 }
1660
1661 for (i = 0; i < vec_len (t2->mask) * sizeof (u32x4); i++)
1662 {
1663 n2 += count_set_bits (m2[0]);
1664 m2++;
1665 }
1666
1667 /* Reverse sort: descending number of set bits */
1668 if (n1 < n2)
1669 return 1;
1670 else if (n1 > n2)
1671 return -1;
1672 else
1673 return 0;
1674}
1675
1676static clib_error_t *
1677classify_filter_command_fn (vlib_main_t * vm,
1678 unformat_input_t * input,
1679 vlib_cli_command_t * cmd)
1680{
1681 u32 nbuckets = 8;
1682 vnet_main_t *vnm = vnet_get_main ();
1683 uword memory_size = (uword) (128 << 10);
1684 u32 skip = ~0;
1685 u32 match = ~0;
1686 u8 *match_vector;
1687 int is_add = 1;
1688 int del_chain = 0;
1689 u32 table_index = ~0;
1690 u32 next_table_index = ~0;
1691 u32 miss_next_index = ~0;
1692 u32 current_data_flag = 0;
1693 int current_data_offset = 0;
Dave Barachf5667c32019-09-25 11:27:46 -04001694 u32 sw_if_index = ~0;
Dave Barach9137e542019-09-13 17:47:50 -04001695 int i;
1696 vnet_classify_table_t *t;
1697 u8 *mask = 0;
1698 vnet_classify_main_t *cm = &vnet_classify_main;
1699 int rv = 0;
Dave Barachf5667c32019-09-25 11:27:46 -04001700 vnet_classify_filter_set_t *set = 0;
Dave Barach9137e542019-09-13 17:47:50 -04001701
1702 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1703 {
1704 if (unformat (input, "del"))
1705 is_add = 0;
Dave Barachf5667c32019-09-25 11:27:46 -04001706 else if (unformat (input, "pcap %=", &sw_if_index, 0))
1707 ;
1708 else if (unformat (input, "%U",
1709 unformat_vnet_sw_interface, vnm, &sw_if_index))
1710 ;
Dave Barach9137e542019-09-13 17:47:50 -04001711 else if (unformat (input, "buckets %d", &nbuckets))
1712 ;
1713 else if (unformat (input, "mask %U", unformat_classify_mask,
1714 &mask, &skip, &match))
1715 ;
1716 else if (unformat (input, "memory-size %U", unformat_memory_size,
1717 &memory_size))
1718 ;
1719 else
1720 break;
1721 }
1722
1723 if (is_add && mask == 0 && table_index == ~0)
1724 return clib_error_return (0, "Mask required");
1725
1726 if (is_add && skip == ~0 && table_index == ~0)
1727 return clib_error_return (0, "skip count required");
1728
1729 if (is_add && match == ~0 && table_index == ~0)
1730 return clib_error_return (0, "match count required");
1731
Dave Barachf5667c32019-09-25 11:27:46 -04001732 if (sw_if_index == ~0)
1733 return clib_error_return (0, "Must specify pcap or interface...");
1734
Dave Barach9137e542019-09-13 17:47:50 -04001735 if (!is_add)
1736 {
Dave Barachf5667c32019-09-25 11:27:46 -04001737 u32 set_index = 0;
Dave Barach9137e542019-09-13 17:47:50 -04001738
Dave Barachf5667c32019-09-25 11:27:46 -04001739 if (sw_if_index < vec_len (cm->filter_set_by_sw_if_index))
1740 set_index = cm->filter_set_by_sw_if_index[sw_if_index];
1741
1742 if (set_index == 0)
1743 {
1744 if (sw_if_index == 0)
1745 return clib_error_return (0, "No pcap classify filter set...");
1746 else
1747 return clib_error_return (0, "No classify filter set for %U...",
1748 format_vnet_sw_if_index_name, vnm,
1749 sw_if_index);
1750 }
1751
1752 set = pool_elt_at_index (cm->filter_sets, set_index);
1753
1754 set->refcnt--;
1755 ASSERT (set->refcnt >= 0);
1756 if (set->refcnt == 0)
1757 {
1758 del_chain = 1;
1759 table_index = set->table_indices[0];
1760 vec_reset_length (set->table_indices);
1761 pool_put (cm->filter_sets, set);
1762 cm->filter_set_by_sw_if_index[sw_if_index] = 0;
1763 if (sw_if_index > 0)
1764 {
1765 vnet_hw_interface_t *hi =
1766 vnet_get_sup_hw_interface (vnm, sw_if_index);
1767 hi->trace_classify_table_index = ~0;
1768 }
1769 }
Dave Barach9137e542019-09-13 17:47:50 -04001770 }
1771
Dave Barach9137e542019-09-13 17:47:50 -04001772 if (is_add)
1773 {
Dave Barachf5667c32019-09-25 11:27:46 -04001774 u32 set_index = 0;
1775
1776 if (sw_if_index < vec_len (cm->filter_set_by_sw_if_index))
1777 set_index = cm->filter_set_by_sw_if_index[sw_if_index];
1778
1779 /* Do we have a filter set for this intfc / pcap yet? */
1780 if (set_index == 0)
1781 {
1782 pool_get (cm->filter_sets, set);
1783 set->refcnt = 1;
1784 }
1785 else
1786 set = pool_elt_at_index (cm->filter_sets, set_index);
1787
1788 for (i = 0; i < vec_len (set->table_indices); i++)
Dave Barach9137e542019-09-13 17:47:50 -04001789 {
1790 t = pool_elt_at_index (cm->tables, i);
1791 /* classifier geometry mismatch, can't use this table */
1792 if (t->match_n_vectors != match || t->skip_n_vectors != skip)
1793 continue;
1794 /* Masks aren't congruent, can't use this table */
1795 if (vec_len (t->mask) != vec_len (mask))
1796 continue;
1797 /* Masks aren't bit-for-bit identical, can't use this table */
1798 if (memcmp (t->mask, mask, vec_len (mask)))
1799 continue;
1800
1801 /* Winner... */
1802 table_index = i;
1803 goto found_table;
1804 }
1805 }
1806
1807 rv = vnet_classify_add_del_table (cm, mask, nbuckets, memory_size,
1808 skip, match, next_table_index,
1809 miss_next_index, &table_index,
1810 current_data_flag, current_data_offset,
1811 is_add, del_chain);
1812 vec_free (mask);
1813
1814 switch (rv)
1815 {
1816 case 0:
1817 break;
1818
1819 default:
1820 return clib_error_return (0, "vnet_classify_add_del_table returned %d",
1821 rv);
1822 }
1823
1824 if (is_add == 0)
1825 return 0;
1826
1827 /* Remember the table */
Dave Barachf5667c32019-09-25 11:27:46 -04001828 vec_add1 (set->table_indices, table_index);
1829 vec_validate_init_empty (cm->filter_set_by_sw_if_index, sw_if_index, 0);
1830 cm->filter_set_by_sw_if_index[sw_if_index] = set - cm->filter_sets;
1831
1832 /* Put top table index where device drivers can find them */
1833 if (sw_if_index > 0)
1834 {
1835 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
1836 ASSERT (vec_len (set->table_indices) > 0);
1837 hi->trace_classify_table_index = set->table_indices[0];
1838 }
1839
1840 /* Sort filter tables from most-specific mask to least-specific mask */
1841 vec_sort_with_function (set->table_indices, filter_table_mask_compare);
1842
1843 ASSERT (set);
1844
1845 /* Setup next_table_index fields */
1846 for (i = 0; i < vec_len (set->table_indices); i++)
1847 {
1848 t = pool_elt_at_index (cm->tables, set->table_indices[i]);
1849
1850 if ((i + 1) < vec_len (set->table_indices))
1851 t->next_table_index = set->table_indices[i + 1];
1852 else
1853 t->next_table_index = ~0;
1854 }
Dave Barach9137e542019-09-13 17:47:50 -04001855
1856found_table:
1857
1858 /* Now try to parse a session */
1859 if (unformat (input, "match %U", unformat_classify_match,
1860 cm, &match_vector, table_index) == 0)
1861 return 0;
1862
Dave Barach9137e542019-09-13 17:47:50 -04001863 /*
1864 * We use hit or miss to determine whether to trace or pcap pkts
1865 * so the session setup is very limited
1866 */
1867 rv = vnet_classify_add_del_session (cm, table_index,
1868 match_vector, 0 /* hit_next_index */ ,
1869 0 /* opaque_index */ ,
1870 0 /* advance */ ,
1871 0 /* action */ ,
1872 0 /* metadata */ ,
1873 1 /* is_add */ );
1874
1875 vec_free (match_vector);
1876
Dave Barach9137e542019-09-13 17:47:50 -04001877 return 0;
1878}
1879
1880/*?
1881 * Construct an arbitrary set of packet classifier tables for use with
1882 * "pcap rx | tx trace," and (eventually) with the vpp packet
1883 * tracer
1884 *
1885 * Packets which match a rule in the classifier table chain
1886 * will be traced. The tables are automatically ordered so that
1887 * matches in the most specific table are tried first.
1888 *
1889 * It's reasonably likely that folks will configure a single
1890 * table with one or two matches. As a result, we configure
1891 * 8 hash buckets and 128K of match rule space. One can override
1892 * the defaults by specifiying "buckets <nnn>" and "memory-size <xxx>"
1893 * as desired.
1894 *
1895 * To build up complex filter chains, repeatedly issue the
1896 * classify filter debug CLI command. Each command must specify the desired
1897 * mask and match values. If a classifier table with a suitable mask
1898 * already exists, the CLI command adds a match rule to the existing table.
1899 * If not, the CLI command add a new table and the indicated mask rule
1900 *
1901 * Here is a terse description of the "mask <xxx>" syntax:
1902 *
1903 * l2 src dst proto tag1 tag2 ignore-tag1 ignore-tag2 cos1 cos2 dot1q dot1ad
1904 *
1905 * l3 ip4 <ip4-mask> ip6 <ip6-mask>
1906 *
1907 * <ip4-mask> version hdr_length src[/width] dst[/width]
1908 * tos length fragment_id ttl protocol checksum
1909 *
1910 * <ip6-mask> version traffic-class flow-label src dst proto
1911 * payload_length hop_limit protocol
1912 *
1913 * l4 tcp <tcp-mask> udp <udp_mask> src_port dst_port
1914 *
1915 * <tcp-mask> src dst # ports
1916 *
1917 * <udp-mask> src_port dst_port
1918 *
1919 * To construct matches, add the values to match after the indicated keywords:
1920 * in the match syntax. For example:
1921 * mask l3 ip4 src -> match l3 ip4 src 192.168.1.11
1922 *
1923 * @cliexpar
1924 * Configuring the classify filter
1925 *
1926 * Configure a simple classify filter, and configure pcap rx trace to use it:
1927 *
1928 * <b><em>classify filter mask l3 ip4 src match l3 ip4 src 192.168.1.11"</em></b><br>
1929 * <b><em>pcap rx trace on max 100 filter</em></b>
1930 *
1931 * Configure another fairly simple filter
1932 *
1933 * <b><em>classify filter mask l3 ip4 src dst match l3 ip4 src 192.168.1.10 dst 192.168.2.10"</em></b>
1934 *
1935 * Clear all current classifier filters
1936 *
1937 * <b><em>classify filter del</em></b>
1938 *
1939 * To inspect the classifier tables, use
1940 *
1941 * <b><em>show classify table [verbose]</em></b>
1942 * The verbose form displays all of the match rules, with hit-counters
1943 * @cliexend
1944 ?*/
1945/* *INDENT-OFF* */
1946VLIB_CLI_COMMAND (classify_filter, static) =
1947{
1948 .path = "classify filter",
1949 .short_help =
Dave Barachf5667c32019-09-25 11:27:46 -04001950 "classify filter <intfc> | pcap mask <mask-value> match <match-value> [del]"
Dave Barach9137e542019-09-13 17:47:50 -04001951 "[buckets <nn>] [memory-size <n>]",
1952 .function = classify_filter_command_fn,
1953};
1954/* *INDENT-ON* */
1955
Dave Barachf5667c32019-09-25 11:27:46 -04001956static clib_error_t *
1957show_classify_filter_command_fn (vlib_main_t * vm,
1958 unformat_input_t * input,
1959 vlib_cli_command_t * cmd)
1960{
1961 vnet_classify_main_t *cm = &vnet_classify_main;
1962 vnet_main_t *vnm = vnet_get_main ();
1963 vnet_classify_filter_set_t *set;
1964 u8 *name = 0;
1965 u8 *s = 0;
1966 u32 set_index;
1967 u32 table_index;
1968 int verbose = 0;
1969 int i, j;
1970
1971 (void) unformat (input, "verbose %=", &verbose, 1);
1972
1973 vlib_cli_output (vm, "%-30s%s", "Filter Used By", " Table(s)");
1974 vlib_cli_output (vm, "%-30s%s", "--------------", " --------");
1975
1976 for (i = 0; i < vec_len (cm->filter_set_by_sw_if_index); i++)
1977 {
1978 set_index = cm->filter_set_by_sw_if_index[i];
1979
1980 if (set_index == 0 && verbose == 0)
1981 continue;
1982
1983 set = pool_elt_at_index (cm->filter_sets, set_index);
1984
1985 if (i == 0)
1986 name = format (0, "pcap rx/tx/drop:");
1987 else
1988 name = format (0, "%U:", format_vnet_sw_if_index_name, vnm, i);
1989
1990 if (verbose)
1991 {
1992 u8 *s = 0;
1993 u32 table_index;
1994
1995 for (j = 0; j < vec_len (set->table_indices); j++)
1996 {
1997 table_index = set->table_indices[j];
1998 if (table_index != ~0)
1999 s = format (s, " %u", table_index);
2000 else
2001 s = format (s, " none");
2002 }
2003
Dave Barach3268a642019-11-29 08:40:58 -05002004 vlib_cli_output (vm, "%-30v table(s)%v", name, s);
Dave Barachf5667c32019-09-25 11:27:46 -04002005 vec_reset_length (s);
2006 }
2007 else
2008 {
2009 u8 *s = 0;
2010 table_index = set->table_indices[0];
2011
2012 if (table_index != ~0)
2013 s = format (s, " %u", table_index);
2014 else
2015 s = format (s, " none");
2016
Dave Barach3268a642019-11-29 08:40:58 -05002017 vlib_cli_output (vm, "%-30v first table%v", name, s);
Dave Barachf5667c32019-09-25 11:27:46 -04002018 vec_reset_length (s);
2019 }
2020 vec_reset_length (name);
2021 }
2022 vec_free (s);
2023 vec_free (name);
2024 return 0;
2025}
2026
2027
2028/* *INDENT-OFF* */
2029VLIB_CLI_COMMAND (show_classify_filter, static) =
2030{
2031 .path = "show classify filter",
2032 .short_help = "show classify filter [verbose [nn]]",
2033 .function = show_classify_filter_command_fn,
2034};
2035/* *INDENT-ON* */
2036
2037
2038
2039
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302040static u8 *
2041format_vnet_classify_table (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002042{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302043 vnet_classify_main_t *cm = va_arg (*args, vnet_classify_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002044 int verbose = va_arg (*args, int);
2045 u32 index = va_arg (*args, u32);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302046 vnet_classify_table_t *t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002047
2048 if (index == ~0)
2049 {
2050 s = format (s, "%10s%10s%10s%10s", "TableIdx", "Sessions", "NextTbl",
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302051 "NextNode", verbose ? "Details" : "");
Ed Warnickecb9cada2015-12-08 15:45:58 -07002052 return s;
2053 }
2054
2055 t = pool_elt_at_index (cm->tables, index);
2056 s = format (s, "%10u%10d%10d%10d", index, t->active_elements,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302057 t->next_table_index, t->miss_next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002058
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302059 s = format (s, "\n Heap: %U", format_mheap, t->mheap, 0 /*verbose */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002060
Steve Shin25e26dc2016-11-08 10:47:10 -08002061 s = format (s, "\n nbuckets %d, skip %d match %d flag %d offset %d",
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302062 t->nbuckets, t->skip_n_vectors, t->match_n_vectors,
2063 t->current_data_flag, t->current_data_offset);
2064 s = format (s, "\n mask %U", format_hex_bytes, t->mask,
2065 t->match_n_vectors * sizeof (u32x4));
Dave Barachcada2a02017-05-18 19:16:47 -04002066 s = format (s, "\n linear-search buckets %d\n", t->linear_buckets);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002067
2068 if (verbose == 0)
2069 return s;
2070
2071 s = format (s, "\n%U", format_classify_table, t, verbose);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302072
Ed Warnickecb9cada2015-12-08 15:45:58 -07002073 return s;
2074}
2075
2076static clib_error_t *
2077show_classify_tables_command_fn (vlib_main_t * vm,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302078 unformat_input_t * input,
2079 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002080{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302081 vnet_classify_main_t *cm = &vnet_classify_main;
2082 vnet_classify_table_t *t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002083 u32 match_index = ~0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302084 u32 *indices = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002085 int verbose = 0;
2086 int i;
2087
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302088 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002089 {
2090 if (unformat (input, "index %d", &match_index))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302091 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002092 else if (unformat (input, "verbose %d", &verbose))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302093 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002094 else if (unformat (input, "verbose"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302095 verbose = 1;
2096 else
2097 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002098 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302099
2100 /* *INDENT-OFF* */
2101 pool_foreach (t, cm->tables,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002102 ({
2103 if (match_index == ~0 || (match_index == t - cm->tables))
2104 vec_add1 (indices, t - cm->tables);
2105 }));
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302106 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002107
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302108 if (vec_len (indices))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002109 {
2110 vlib_cli_output (vm, "%U", format_vnet_classify_table, cm, verbose,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302111 ~0 /* hdr */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002112 for (i = 0; i < vec_len (indices); i++)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302113 vlib_cli_output (vm, "%U", format_vnet_classify_table, cm,
2114 verbose, indices[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002115 }
2116 else
2117 vlib_cli_output (vm, "No classifier tables configured");
2118
2119 vec_free (indices);
2120
2121 return 0;
2122}
2123
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302124/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002125VLIB_CLI_COMMAND (show_classify_table_command, static) = {
2126 .path = "show classify tables",
2127 .short_help = "show classify tables [index <nn>]",
2128 .function = show_classify_tables_command_fn,
2129};
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302130/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002131
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302132uword
2133unformat_l4_match (unformat_input_t * input, va_list * args)
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002134{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302135 u8 **matchp = va_arg (*args, u8 **);
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002136
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302137 u8 *proto_header = 0;
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002138 int src_port = 0;
2139 int dst_port = 0;
2140
2141 tcpudp_header_t h;
2142
2143 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2144 {
2145 if (unformat (input, "src_port %d", &src_port))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302146 ;
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002147 else if (unformat (input, "dst_port %d", &dst_port))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302148 ;
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002149 else
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302150 return 0;
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002151 }
2152
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302153 h.src_port = clib_host_to_net_u16 (src_port);
2154 h.dst_port = clib_host_to_net_u16 (dst_port);
2155 vec_validate (proto_header, sizeof (h) - 1);
2156 memcpy (proto_header, &h, sizeof (h));
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002157
2158 *matchp = proto_header;
2159
2160 return 1;
2161}
2162
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302163uword
2164unformat_ip4_match (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002165{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302166 u8 **matchp = va_arg (*args, u8 **);
2167 u8 *match = 0;
2168 ip4_header_t *ip;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002169 int version = 0;
2170 u32 version_val;
2171 int hdr_length = 0;
2172 u32 hdr_length_val;
2173 int src = 0, dst = 0;
2174 ip4_address_t src_val, dst_val;
2175 int proto = 0;
2176 u32 proto_val;
2177 int tos = 0;
2178 u32 tos_val;
2179 int length = 0;
2180 u32 length_val;
2181 int fragment_id = 0;
2182 u32 fragment_id_val;
2183 int ttl = 0;
2184 int ttl_val;
2185 int checksum = 0;
2186 u32 checksum_val;
2187
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302188 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002189 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302190 if (unformat (input, "version %d", &version_val))
2191 version = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002192 else if (unformat (input, "hdr_length %d", &hdr_length_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302193 hdr_length = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002194 else if (unformat (input, "src %U", unformat_ip4_address, &src_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302195 src = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002196 else if (unformat (input, "dst %U", unformat_ip4_address, &dst_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302197 dst = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002198 else if (unformat (input, "proto %d", &proto_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302199 proto = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002200 else if (unformat (input, "tos %d", &tos_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302201 tos = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002202 else if (unformat (input, "length %d", &length_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302203 length = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002204 else if (unformat (input, "fragment_id %d", &fragment_id_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302205 fragment_id = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002206 else if (unformat (input, "ttl %d", &ttl_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302207 ttl = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002208 else if (unformat (input, "checksum %d", &checksum_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302209 checksum = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002210 else
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302211 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002212 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302213
Ed Warnickecb9cada2015-12-08 15:45:58 -07002214 if (version + hdr_length + src + dst + proto + tos + length + fragment_id
2215 + ttl + checksum == 0)
2216 return 0;
2217
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302218 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002219 * Aligned because we use the real comparison functions
2220 */
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302221 vec_validate_aligned (match, sizeof (*ip) - 1, sizeof (u32x4));
2222
Ed Warnickecb9cada2015-12-08 15:45:58 -07002223 ip = (ip4_header_t *) match;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302224
Ed Warnickecb9cada2015-12-08 15:45:58 -07002225 /* These are realistically matched in practice */
2226 if (src)
2227 ip->src_address.as_u32 = src_val.as_u32;
2228
2229 if (dst)
2230 ip->dst_address.as_u32 = dst_val.as_u32;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302231
Ed Warnickecb9cada2015-12-08 15:45:58 -07002232 if (proto)
2233 ip->protocol = proto_val;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302234
Ed Warnickecb9cada2015-12-08 15:45:58 -07002235
2236 /* These are not, but they're included for completeness */
2237 if (version)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302238 ip->ip_version_and_header_length |= (version_val & 0xF) << 4;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002239
2240 if (hdr_length)
2241 ip->ip_version_and_header_length |= (hdr_length_val & 0xF);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302242
Ed Warnickecb9cada2015-12-08 15:45:58 -07002243 if (tos)
2244 ip->tos = tos_val;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302245
Ed Warnickecb9cada2015-12-08 15:45:58 -07002246 if (length)
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002247 ip->length = clib_host_to_net_u16 (length_val);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302248
Ed Warnickecb9cada2015-12-08 15:45:58 -07002249 if (ttl)
2250 ip->ttl = ttl_val;
2251
2252 if (checksum)
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002253 ip->checksum = clib_host_to_net_u16 (checksum_val);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002254
2255 *matchp = match;
2256 return 1;
2257}
2258
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302259uword
2260unformat_ip6_match (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002261{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302262 u8 **matchp = va_arg (*args, u8 **);
2263 u8 *match = 0;
2264 ip6_header_t *ip;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002265 int version = 0;
2266 u32 version_val;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302267 u8 traffic_class = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002268 u32 traffic_class_val;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302269 u8 flow_label = 0;
2270 u8 flow_label_val;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002271 int src = 0, dst = 0;
2272 ip6_address_t src_val, dst_val;
2273 int proto = 0;
2274 u32 proto_val;
2275 int payload_length = 0;
2276 u32 payload_length_val;
2277 int hop_limit = 0;
2278 int hop_limit_val;
2279 u32 ip_version_traffic_class_and_flow_label;
2280
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302281 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002282 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302283 if (unformat (input, "version %d", &version_val))
2284 version = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002285 else if (unformat (input, "traffic_class %d", &traffic_class_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302286 traffic_class = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002287 else if (unformat (input, "flow_label %d", &flow_label_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302288 flow_label = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002289 else if (unformat (input, "src %U", unformat_ip6_address, &src_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302290 src = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002291 else if (unformat (input, "dst %U", unformat_ip6_address, &dst_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302292 dst = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002293 else if (unformat (input, "proto %d", &proto_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302294 proto = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002295 else if (unformat (input, "payload_length %d", &payload_length_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302296 payload_length = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002297 else if (unformat (input, "hop_limit %d", &hop_limit_val))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302298 hop_limit = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002299 else
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302300 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002301 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302302
Ed Warnickecb9cada2015-12-08 15:45:58 -07002303 if (version + traffic_class + flow_label + src + dst + proto +
2304 payload_length + hop_limit == 0)
2305 return 0;
2306
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302307 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002308 * Aligned because we use the real comparison functions
2309 */
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302310 vec_validate_aligned (match, sizeof (*ip) - 1, sizeof (u32x4));
2311
Ed Warnickecb9cada2015-12-08 15:45:58 -07002312 ip = (ip6_header_t *) match;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302313
Ed Warnickecb9cada2015-12-08 15:45:58 -07002314 if (src)
Dave Barach178cf492018-11-13 16:34:13 -05002315 clib_memcpy_fast (&ip->src_address, &src_val, sizeof (ip->src_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002316
2317 if (dst)
Dave Barach178cf492018-11-13 16:34:13 -05002318 clib_memcpy_fast (&ip->dst_address, &dst_val, sizeof (ip->dst_address));
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302319
Ed Warnickecb9cada2015-12-08 15:45:58 -07002320 if (proto)
2321 ip->protocol = proto_val;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302322
Ed Warnickecb9cada2015-12-08 15:45:58 -07002323 ip_version_traffic_class_and_flow_label = 0;
2324
2325 if (version)
2326 ip_version_traffic_class_and_flow_label |= (version_val & 0xF) << 28;
2327
2328 if (traffic_class)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302329 ip_version_traffic_class_and_flow_label |=
2330 (traffic_class_val & 0xFF) << 20;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002331
2332 if (flow_label)
2333 ip_version_traffic_class_and_flow_label |= (flow_label_val & 0xFFFFF);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302334
2335 ip->ip_version_traffic_class_and_flow_label =
Ed Warnickecb9cada2015-12-08 15:45:58 -07002336 clib_host_to_net_u32 (ip_version_traffic_class_and_flow_label);
2337
2338 if (payload_length)
2339 ip->payload_length = clib_host_to_net_u16 (payload_length_val);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302340
Ed Warnickecb9cada2015-12-08 15:45:58 -07002341 if (hop_limit)
2342 ip->hop_limit = hop_limit_val;
2343
2344 *matchp = match;
2345 return 1;
2346}
2347
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302348uword
2349unformat_l3_match (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002350{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302351 u8 **matchp = va_arg (*args, u8 **);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002352
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302353 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2354 {
2355 if (unformat (input, "ip4 %U", unformat_ip4_match, matchp))
2356 return 1;
2357 else if (unformat (input, "ip6 %U", unformat_ip6_match, matchp))
2358 return 1;
2359 /* $$$$ add mpls */
2360 else
2361 break;
2362 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002363 return 0;
2364}
2365
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302366uword
2367unformat_vlan_tag (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002368{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302369 u8 *tagp = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002370 u32 tag;
2371
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302372 if (unformat (input, "%d", &tag))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002373 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302374 tagp[0] = (tag >> 8) & 0x0F;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002375 tagp[1] = tag & 0xFF;
2376 return 1;
2377 }
2378
2379 return 0;
2380}
2381
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302382uword
2383unformat_l2_match (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002384{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302385 u8 **matchp = va_arg (*args, u8 **);
2386 u8 *match = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002387 u8 src = 0;
2388 u8 src_val[6];
2389 u8 dst = 0;
2390 u8 dst_val[6];
2391 u8 proto = 0;
2392 u16 proto_val;
2393 u8 tag1 = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302394 u8 tag1_val[2];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002395 u8 tag2 = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302396 u8 tag2_val[2];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002397 int len = 14;
2398 u8 ignore_tag1 = 0;
2399 u8 ignore_tag2 = 0;
2400 u8 cos1 = 0;
2401 u8 cos2 = 0;
2402 u32 cos1_val = 0;
2403 u32 cos2_val = 0;
2404
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302405 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2406 {
2407 if (unformat (input, "src %U", unformat_ethernet_address, &src_val))
2408 src = 1;
2409 else
2410 if (unformat (input, "dst %U", unformat_ethernet_address, &dst_val))
2411 dst = 1;
2412 else if (unformat (input, "proto %U",
2413 unformat_ethernet_type_host_byte_order, &proto_val))
2414 proto = 1;
2415 else if (unformat (input, "tag1 %U", unformat_vlan_tag, tag1_val))
2416 tag1 = 1;
2417 else if (unformat (input, "tag2 %U", unformat_vlan_tag, tag2_val))
2418 tag2 = 1;
2419 else if (unformat (input, "ignore-tag1"))
2420 ignore_tag1 = 1;
2421 else if (unformat (input, "ignore-tag2"))
2422 ignore_tag2 = 1;
2423 else if (unformat (input, "cos1 %d", &cos1_val))
2424 cos1 = 1;
2425 else if (unformat (input, "cos2 %d", &cos2_val))
2426 cos2 = 1;
2427 else
2428 break;
2429 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002430 if ((src + dst + proto + tag1 + tag2 +
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302431 ignore_tag1 + ignore_tag2 + cos1 + cos2) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002432 return 0;
2433
2434 if (tag1 || ignore_tag1 || cos1)
2435 len = 18;
2436 if (tag2 || ignore_tag2 || cos2)
2437 len = 22;
2438
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302439 vec_validate_aligned (match, len - 1, sizeof (u32x4));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002440
2441 if (dst)
Dave Barach178cf492018-11-13 16:34:13 -05002442 clib_memcpy_fast (match, dst_val, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002443
2444 if (src)
Dave Barach178cf492018-11-13 16:34:13 -05002445 clib_memcpy_fast (match + 6, src_val, 6);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302446
Ed Warnickecb9cada2015-12-08 15:45:58 -07002447 if (tag2)
2448 {
2449 /* inner vlan tag */
2450 match[19] = tag2_val[1];
2451 match[18] = tag2_val[0];
2452 if (cos2)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302453 match[18] |= (cos2_val & 0x7) << 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002454 if (proto)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302455 {
2456 match[21] = proto_val & 0xff;
2457 match[20] = proto_val >> 8;
2458 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002459 if (tag1)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302460 {
2461 match[15] = tag1_val[1];
2462 match[14] = tag1_val[0];
2463 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002464 if (cos1)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302465 match[14] |= (cos1_val & 0x7) << 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002466 *matchp = match;
2467 return 1;
2468 }
2469 if (tag1)
2470 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302471 match[15] = tag1_val[1];
2472 match[14] = tag1_val[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002473 if (proto)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302474 {
2475 match[17] = proto_val & 0xff;
2476 match[16] = proto_val >> 8;
2477 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002478 if (cos1)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302479 match[14] |= (cos1_val & 0x7) << 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002480
2481 *matchp = match;
2482 return 1;
2483 }
2484 if (cos2)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302485 match[18] |= (cos2_val & 0x7) << 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002486 if (cos1)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302487 match[14] |= (cos1_val & 0x7) << 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002488 if (proto)
2489 {
2490 match[13] = proto_val & 0xff;
2491 match[12] = proto_val >> 8;
2492 }
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302493
Ed Warnickecb9cada2015-12-08 15:45:58 -07002494 *matchp = match;
2495 return 1;
2496}
2497
2498
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302499uword
2500unformat_classify_match (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002501{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302502 vnet_classify_main_t *cm = va_arg (*args, vnet_classify_main_t *);
2503 u8 **matchp = va_arg (*args, u8 **);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002504 u32 table_index = va_arg (*args, u32);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302505 vnet_classify_table_t *t;
2506
2507 u8 *match = 0;
2508 u8 *l2 = 0;
2509 u8 *l3 = 0;
2510 u8 *l4 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002511
2512 if (pool_is_free_index (cm->tables, table_index))
2513 return 0;
2514
2515 t = pool_elt_at_index (cm->tables, table_index);
2516
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302517 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2518 {
2519 if (unformat (input, "hex %U", unformat_hex_string, &match))
2520 ;
2521 else if (unformat (input, "l2 %U", unformat_l2_match, &l2))
2522 ;
2523 else if (unformat (input, "l3 %U", unformat_l3_match, &l3))
2524 ;
2525 else if (unformat (input, "l4 %U", unformat_l4_match, &l4))
2526 ;
2527 else
2528 break;
2529 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002530
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302531 if (l4 && !l3)
2532 {
2533 vec_free (match);
2534 vec_free (l2);
2535 vec_free (l4);
2536 return 0;
2537 }
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002538
2539 if (match || l2 || l3 || l4)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002540 {
Juraj Sloboda51ffa812016-08-07 23:46:45 -07002541 if (l2 || l3 || l4)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302542 {
2543 /* "Win a free Ethernet header in every packet" */
2544 if (l2 == 0)
2545 vec_validate_aligned (l2, 13, sizeof (u32x4));
2546 match = l2;
2547 if (l3)
2548 {
2549 vec_append_aligned (match, l3, sizeof (u32x4));
2550 vec_free (l3);
2551 }
2552 if (l4)
2553 {
2554 vec_append_aligned (match, l4, sizeof (u32x4));
2555 vec_free (l4);
2556 }
2557 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002558
2559 /* Make sure the vector is big enough even if key is all 0's */
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302560 vec_validate_aligned
2561 (match,
2562 ((t->match_n_vectors + t->skip_n_vectors) * sizeof (u32x4)) - 1,
2563 sizeof (u32x4));
2564
2565 /* Set size, include skipped vectors */
2566 _vec_len (match) =
2567 (t->match_n_vectors + t->skip_n_vectors) * sizeof (u32x4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002568
2569 *matchp = match;
2570
2571 return 1;
2572 }
2573
2574 return 0;
2575}
2576
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302577int
2578vnet_classify_add_del_session (vnet_classify_main_t * cm,
2579 u32 table_index,
2580 u8 * match,
2581 u32 hit_next_index,
2582 u32 opaque_index,
2583 i32 advance,
2584 u8 action, u32 metadata, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002585{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302586 vnet_classify_table_t *t;
2587 vnet_classify_entry_5_t _max_e __attribute__ ((aligned (16)));
2588 vnet_classify_entry_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002589 int i, rv;
2590
2591 if (pool_is_free_index (cm->tables, table_index))
2592 return VNET_API_ERROR_NO_SUCH_TABLE;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302593
Ed Warnickecb9cada2015-12-08 15:45:58 -07002594 t = pool_elt_at_index (cm->tables, table_index);
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302595
2596 e = (vnet_classify_entry_t *) & _max_e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002597 e->next_index = hit_next_index;
2598 e->opaque_index = opaque_index;
2599 e->advance = advance;
2600 e->hits = 0;
2601 e->last_heard = 0;
2602 e->flags = 0;
Steve Shin25e26dc2016-11-08 10:47:10 -08002603 e->action = action;
2604 if (e->action == CLASSIFY_ACTION_SET_IP4_FIB_INDEX)
Neale Ranns15002542017-09-10 04:39:11 -07002605 e->metadata = fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302606 metadata,
2607 FIB_SOURCE_CLASSIFY);
Steve Shin25e26dc2016-11-08 10:47:10 -08002608 else if (e->action == CLASSIFY_ACTION_SET_IP6_FIB_INDEX)
Neale Ranns15002542017-09-10 04:39:11 -07002609 e->metadata = fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302610 metadata,
2611 FIB_SOURCE_CLASSIFY);
Dave Barach630a8e22017-11-18 06:58:34 -05002612 else if (e->action == CLASSIFY_ACTION_SET_METADATA)
Gabriel Ganne8527f122017-10-02 11:41:24 +02002613 e->metadata = metadata;
Dave Barachcada2a02017-05-18 19:16:47 -04002614 else
2615 e->metadata = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002616
2617 /* Copy key data, honoring skip_n_vectors */
Dave Barach178cf492018-11-13 16:34:13 -05002618 clib_memcpy_fast (&e->key, match + t->skip_n_vectors * sizeof (u32x4),
2619 t->match_n_vectors * sizeof (u32x4));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002620
2621 /* Clear don't-care bits; likely when dynamically creating sessions */
2622 for (i = 0; i < t->match_n_vectors; i++)
2623 e->key[i] &= t->mask[i];
2624
2625 rv = vnet_classify_add_del (t, e, is_add);
Neale Ranns13eaf3e2017-05-23 06:10:33 -07002626
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302627 vnet_classify_entry_release_resource (e);
Neale Ranns13eaf3e2017-05-23 06:10:33 -07002628
Ed Warnickecb9cada2015-12-08 15:45:58 -07002629 if (rv)
2630 return VNET_API_ERROR_NO_SUCH_ENTRY;
2631 return 0;
2632}
2633
2634static clib_error_t *
2635classify_session_command_fn (vlib_main_t * vm,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302636 unformat_input_t * input,
2637 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002638{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302639 vnet_classify_main_t *cm = &vnet_classify_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002640 int is_add = 1;
2641 u32 table_index = ~0;
2642 u32 hit_next_index = ~0;
Dave Barachf39ff742016-03-20 10:14:45 -04002643 u64 opaque_index = ~0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302644 u8 *match = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002645 i32 advance = 0;
Steve Shin25e26dc2016-11-08 10:47:10 -08002646 u32 action = 0;
2647 u32 metadata = 0;
Dave Barachf39ff742016-03-20 10:14:45 -04002648 int i, rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002649
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302650 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002651 {
2652 if (unformat (input, "del"))
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302653 is_add = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002654 else if (unformat (input, "hit-next %U", unformat_ip_next_index,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302655 &hit_next_index))
2656 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002657 else
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302658 if (unformat
2659 (input, "l2-input-hit-next %U", unformat_l2_input_next_index,
2660 &hit_next_index))
2661 ;
2662 else
2663 if (unformat
2664 (input, "l2-output-hit-next %U", unformat_l2_output_next_index,
2665 &hit_next_index))
2666 ;
2667 else if (unformat (input, "acl-hit-next %U", unformat_acl_next_index,
2668 &hit_next_index))
2669 ;
2670 else if (unformat (input, "policer-hit-next %U",
2671 unformat_policer_next_index, &hit_next_index))
2672 ;
2673 else if (unformat (input, "opaque-index %lld", &opaque_index))
2674 ;
2675 else if (unformat (input, "match %U", unformat_classify_match,
2676 cm, &match, table_index))
2677 ;
2678 else if (unformat (input, "advance %d", &advance))
2679 ;
2680 else if (unformat (input, "table-index %d", &table_index))
2681 ;
2682 else if (unformat (input, "action set-ip4-fib-id %d", &metadata))
2683 action = 1;
2684 else if (unformat (input, "action set-ip6-fib-id %d", &metadata))
2685 action = 2;
2686 else if (unformat (input, "action set-sr-policy-index %d", &metadata))
2687 action = 3;
2688 else
2689 {
2690 /* Try registered opaque-index unformat fns */
2691 for (i = 0; i < vec_len (cm->unformat_opaque_index_fns); i++)
2692 {
2693 if (unformat (input, "%U", cm->unformat_opaque_index_fns[i],
2694 &opaque_index))
2695 goto found_opaque;
2696 }
2697 break;
2698 }
Dave Barachf39ff742016-03-20 10:14:45 -04002699 found_opaque:
2700 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002701 }
2702
2703 if (table_index == ~0)
2704 return clib_error_return (0, "Table index required");
2705
2706 if (is_add && match == 0)
2707 return clib_error_return (0, "Match value required");
2708
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302709 rv = vnet_classify_add_del_session (cm, table_index, match,
2710 hit_next_index,
2711 opaque_index, advance,
2712 action, metadata, is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002713
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302714 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002715 {
2716 case 0:
2717 break;
2718
2719 default:
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302720 return clib_error_return (0,
2721 "vnet_classify_add_del_session returned %d",
2722 rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002723 }
2724
2725 return 0;
2726}
2727
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302728/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002729VLIB_CLI_COMMAND (classify_session_command, static) = {
2730 .path = "classify session",
Ole Troan1e66d5c2016-09-30 09:22:36 +02002731 .short_help =
jackiechen1985e91e6de2018-12-14 01:43:21 +08002732 "classify session [hit-next|l2-input-hit-next|l2-output-hit-next|"
Ole Troan1e66d5c2016-09-30 09:22:36 +02002733 "acl-hit-next <next_index>|policer-hit-next <policer_name>]"
Steve Shin25e26dc2016-11-08 10:47:10 -08002734 "\n table-index <nn> match [hex] [l2] [l3 ip4] [opaque-index <index>]"
Gabriel Ganne8527f122017-10-02 11:41:24 +02002735 "\n [action set-ip4-fib-id|set-ip6-fib-id|set-sr-policy-index <n>] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002736 .function = classify_session_command_fn,
2737};
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302738/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002739
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302740static uword
Dave Barachf39ff742016-03-20 10:14:45 -04002741unformat_opaque_sw_if_index (unformat_input_t * input, va_list * args)
2742{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302743 u64 *opaquep = va_arg (*args, u64 *);
Dave Barachf39ff742016-03-20 10:14:45 -04002744 u32 sw_if_index;
2745
2746 if (unformat (input, "opaque-sw_if_index %U", unformat_vnet_sw_interface,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302747 vnet_get_main (), &sw_if_index))
Dave Barachf39ff742016-03-20 10:14:45 -04002748 {
2749 *opaquep = sw_if_index;
2750 return 1;
2751 }
2752 return 0;
2753}
2754
Ole Troan1e66d5c2016-09-30 09:22:36 +02002755static uword
Dave Barachf39ff742016-03-20 10:14:45 -04002756unformat_ip_next_node (unformat_input_t * input, va_list * args)
2757{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302758 vnet_classify_main_t *cm = &vnet_classify_main;
2759 u32 *next_indexp = va_arg (*args, u32 *);
Dave Barachf39ff742016-03-20 10:14:45 -04002760 u32 node_index;
Ole Troan1e66d5c2016-09-30 09:22:36 +02002761 u32 next_index = ~0;
Dave Barachf39ff742016-03-20 10:14:45 -04002762
Ole Troan1e66d5c2016-09-30 09:22:36 +02002763 if (unformat (input, "ip6-node %U", unformat_vlib_node,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302764 cm->vlib_main, &node_index))
Dave Barachf39ff742016-03-20 10:14:45 -04002765 {
Ole Troan1e66d5c2016-09-30 09:22:36 +02002766 next_index = vlib_node_add_next (cm->vlib_main,
2767 ip6_classify_node.index, node_index);
Dave Barachf39ff742016-03-20 10:14:45 -04002768 }
Ole Troan1e66d5c2016-09-30 09:22:36 +02002769 else if (unformat (input, "ip4-node %U", unformat_vlib_node,
2770 cm->vlib_main, &node_index))
2771 {
2772 next_index = vlib_node_add_next (cm->vlib_main,
2773 ip4_classify_node.index, node_index);
2774 }
2775 else
2776 return 0;
2777
2778 *next_indexp = next_index;
2779 return 1;
Dave Barachf39ff742016-03-20 10:14:45 -04002780}
2781
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302782static uword
Dave Barachf39ff742016-03-20 10:14:45 -04002783unformat_acl_next_node (unformat_input_t * input, va_list * args)
2784{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302785 vnet_classify_main_t *cm = &vnet_classify_main;
2786 u32 *next_indexp = va_arg (*args, u32 *);
Dave Barachf39ff742016-03-20 10:14:45 -04002787 u32 node_index;
Ole Troan1e66d5c2016-09-30 09:22:36 +02002788 u32 next_index;
Dave Barachf39ff742016-03-20 10:14:45 -04002789
Ole Troan1e66d5c2016-09-30 09:22:36 +02002790 if (unformat (input, "ip6-node %U", unformat_vlib_node,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302791 cm->vlib_main, &node_index))
Dave Barachf39ff742016-03-20 10:14:45 -04002792 {
Ole Troan1e66d5c2016-09-30 09:22:36 +02002793 next_index = vlib_node_add_next (cm->vlib_main,
2794 ip6_inacl_node.index, node_index);
Dave Barachf39ff742016-03-20 10:14:45 -04002795 }
Ole Troan1e66d5c2016-09-30 09:22:36 +02002796 else if (unformat (input, "ip4-node %U", unformat_vlib_node,
2797 cm->vlib_main, &node_index))
2798 {
2799 next_index = vlib_node_add_next (cm->vlib_main,
2800 ip4_inacl_node.index, node_index);
2801 }
2802 else
2803 return 0;
2804
2805 *next_indexp = next_index;
2806 return 1;
Dave Barachf39ff742016-03-20 10:14:45 -04002807}
2808
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302809static uword
Dave Barachb84a3e52016-08-30 17:01:52 -04002810unformat_l2_input_next_node (unformat_input_t * input, va_list * args)
Dave Barachf39ff742016-03-20 10:14:45 -04002811{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302812 vnet_classify_main_t *cm = &vnet_classify_main;
2813 u32 *next_indexp = va_arg (*args, u32 *);
Dave Barachf39ff742016-03-20 10:14:45 -04002814 u32 node_index;
2815 u32 next_index;
2816
Dave Barachb84a3e52016-08-30 17:01:52 -04002817 if (unformat (input, "input-node %U", unformat_vlib_node,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302818 cm->vlib_main, &node_index))
Dave Barachf39ff742016-03-20 10:14:45 -04002819 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302820 next_index = vlib_node_add_next
2821 (cm->vlib_main, l2_input_classify_node.index, node_index);
Dave Barachf39ff742016-03-20 10:14:45 -04002822
2823 *next_indexp = next_index;
2824 return 1;
2825 }
2826 return 0;
2827}
2828
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302829static uword
Dave Barachb84a3e52016-08-30 17:01:52 -04002830unformat_l2_output_next_node (unformat_input_t * input, va_list * args)
2831{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302832 vnet_classify_main_t *cm = &vnet_classify_main;
2833 u32 *next_indexp = va_arg (*args, u32 *);
Dave Barachb84a3e52016-08-30 17:01:52 -04002834 u32 node_index;
2835 u32 next_index;
2836
2837 if (unformat (input, "output-node %U", unformat_vlib_node,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302838 cm->vlib_main, &node_index))
Dave Barachb84a3e52016-08-30 17:01:52 -04002839 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302840 next_index = vlib_node_add_next
2841 (cm->vlib_main, l2_output_classify_node.index, node_index);
Dave Barachb84a3e52016-08-30 17:01:52 -04002842
2843 *next_indexp = next_index;
2844 return 1;
2845 }
2846 return 0;
2847}
Dave Barachf39ff742016-03-20 10:14:45 -04002848
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302849static clib_error_t *
Dave Barachf39ff742016-03-20 10:14:45 -04002850vnet_classify_init (vlib_main_t * vm)
2851{
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302852 vnet_classify_main_t *cm = &vnet_classify_main;
Dave Barachf5667c32019-09-25 11:27:46 -04002853 vnet_classify_filter_set_t *set;
Dave Barachf39ff742016-03-20 10:14:45 -04002854
2855 cm->vlib_main = vm;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302856 cm->vnet_main = vnet_get_main ();
Dave Barachf39ff742016-03-20 10:14:45 -04002857
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302858 vnet_classify_register_unformat_opaque_index_fn
Dave Barachf39ff742016-03-20 10:14:45 -04002859 (unformat_opaque_sw_if_index);
2860
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302861 vnet_classify_register_unformat_ip_next_index_fn (unformat_ip_next_node);
Dave Barachf39ff742016-03-20 10:14:45 -04002862
2863 vnet_classify_register_unformat_l2_next_index_fn
Dave Barachb84a3e52016-08-30 17:01:52 -04002864 (unformat_l2_input_next_node);
2865
2866 vnet_classify_register_unformat_l2_next_index_fn
Dave Barachb84a3e52016-08-30 17:01:52 -04002867 (unformat_l2_output_next_node);
Dave Barachf39ff742016-03-20 10:14:45 -04002868
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302869 vnet_classify_register_unformat_acl_next_index_fn (unformat_acl_next_node);
Dave Barachf39ff742016-03-20 10:14:45 -04002870
Dave Barachf5667c32019-09-25 11:27:46 -04002871 /* Filter set 0 is grounded... */
2872 pool_get (cm->filter_sets, set);
2873 set->refcnt = 0x7FFFFFFF;
2874 vec_validate (set->table_indices, 0);
2875 set->table_indices[0] = ~0;
2876 /* Initialize the pcap filter set */
2877 vec_validate (cm->filter_set_by_sw_if_index, 0);
2878
Dave Barachf39ff742016-03-20 10:14:45 -04002879 return 0;
2880}
2881
2882VLIB_INIT_FUNCTION (vnet_classify_init);
2883
Dave Barach9137e542019-09-13 17:47:50 -04002884#define TEST_CODE 0
Ed Warnickecb9cada2015-12-08 15:45:58 -07002885
2886#if TEST_CODE > 0
Dave Barachcada2a02017-05-18 19:16:47 -04002887
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302888typedef struct
Ed Warnickecb9cada2015-12-08 15:45:58 -07002889{
Dave Barachcada2a02017-05-18 19:16:47 -04002890 ip4_address_t addr;
2891 int in_table;
2892} test_entry_t;
2893
2894typedef struct
2895{
2896 test_entry_t *entries;
2897
2898 /* test parameters */
2899 u32 buckets;
2900 u32 sessions;
2901 u32 iterations;
2902 u32 memory_size;
2903 ip4_address_t src;
2904 vnet_classify_table_t *table;
2905 u32 table_index;
2906 int verbose;
2907
2908 /* Random seed */
2909 u32 seed;
2910
2911 /* Test data */
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302912 classify_data_or_mask_t *mask;
2913 classify_data_or_mask_t *data;
Dave Barachcada2a02017-05-18 19:16:47 -04002914
2915 /* convenience */
2916 vnet_classify_main_t *classify_main;
2917 vlib_main_t *vlib_main;
2918
2919} test_classify_main_t;
2920
2921static test_classify_main_t test_classify_main;
2922
2923static clib_error_t *
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302924test_classify_churn (test_classify_main_t * tm)
Dave Barachcada2a02017-05-18 19:16:47 -04002925{
2926 classify_data_or_mask_t *mask, *data;
2927 vlib_main_t *vm = tm->vlib_main;
2928 test_entry_t *ep;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002929 u8 *mp = 0, *dp = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002930 u32 tmp;
Dave Barachcada2a02017-05-18 19:16:47 -04002931 int i, rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002932
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302933 vec_validate_aligned (mp, 3 * sizeof (u32x4), sizeof (u32x4));
2934 vec_validate_aligned (dp, 3 * sizeof (u32x4), sizeof (u32x4));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002935
2936 mask = (classify_data_or_mask_t *) mp;
2937 data = (classify_data_or_mask_t *) dp;
2938
Ed Warnickecb9cada2015-12-08 15:45:58 -07002939 /* Mask on src address */
Dave Barachb7b92992018-10-17 10:38:51 -04002940 clib_memset (&mask->ip.src_address, 0xff, 4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002941
Dave Barachcada2a02017-05-18 19:16:47 -04002942 tmp = clib_host_to_net_u32 (tm->src.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002943
Dave Barachcada2a02017-05-18 19:16:47 -04002944 for (i = 0; i < tm->sessions; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002945 {
Dave Barachcada2a02017-05-18 19:16:47 -04002946 vec_add2 (tm->entries, ep, 1);
2947 ep->addr.as_u32 = clib_host_to_net_u32 (tmp);
2948 ep->in_table = 0;
2949 tmp++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002950 }
2951
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302952 tm->table = vnet_classify_new_table (tm->classify_main,
2953 (u8 *) mask,
2954 tm->buckets,
2955 tm->memory_size, 0 /* skip */ ,
2956 3 /* vectors to match */ );
Dave Barachcada2a02017-05-18 19:16:47 -04002957 tm->table->miss_next_index = IP_LOOKUP_NEXT_DROP;
2958 tm->table_index = tm->table - tm->classify_main->tables;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302959 vlib_cli_output (vm, "Created table %d, buckets %d",
2960 tm->table_index, tm->buckets);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002961
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302962 vlib_cli_output (vm, "Initialize: add %d (approx. half of %d sessions)...",
2963 tm->sessions / 2, tm->sessions);
2964
2965 for (i = 0; i < tm->sessions / 2; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002966 {
Dave Barachcada2a02017-05-18 19:16:47 -04002967 ep = vec_elt_at_index (tm->entries, i);
2968
2969 data->ip.src_address.as_u32 = ep->addr.as_u32;
2970 ep->in_table = 1;
2971
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302972 rv = vnet_classify_add_del_session (tm->classify_main,
2973 tm->table_index,
2974 (u8 *) data,
2975 IP_LOOKUP_NEXT_DROP,
2976 i /* opaque_index */ ,
2977 0 /* advance */ ,
2978 0 /* action */ ,
2979 0 /* metadata */ ,
2980 1 /* is_add */ );
2981
Dave Barachcada2a02017-05-18 19:16:47 -04002982 if (rv != 0)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302983 clib_warning ("add: returned %d", rv);
Dave Barachcada2a02017-05-18 19:16:47 -04002984
2985 if (tm->verbose)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302986 vlib_cli_output (vm, "add: %U", format_ip4_address, &ep->addr.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002987 }
2988
Dave Barachcada2a02017-05-18 19:16:47 -04002989 vlib_cli_output (vm, "Execute %d random add/delete operations",
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302990 tm->iterations);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002991
Dave Barachcada2a02017-05-18 19:16:47 -04002992 for (i = 0; i < tm->iterations; i++)
2993 {
2994 int index, is_add;
2995
2996 /* Pick a random entry */
2997 index = random_u32 (&tm->seed) % tm->sessions;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05302998
Dave Barachcada2a02017-05-18 19:16:47 -04002999 ep = vec_elt_at_index (tm->entries, index);
3000
3001 data->ip.src_address.as_u32 = ep->addr.as_u32;
3002
3003 /* If it's in the table, remove it. Else, add it */
3004 is_add = !ep->in_table;
3005
3006 if (tm->verbose)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303007 vlib_cli_output (vm, "%s: %U",
3008 is_add ? "add" : "del",
3009 format_ip4_address, &ep->addr.as_u32);
Dave Barachcada2a02017-05-18 19:16:47 -04003010
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303011 rv = vnet_classify_add_del_session (tm->classify_main,
3012 tm->table_index,
3013 (u8 *) data,
3014 IP_LOOKUP_NEXT_DROP,
3015 i /* opaque_index */ ,
3016 0 /* advance */ ,
3017 0 /* action */ ,
3018 0 /* metadata */ ,
3019 is_add);
Dave Barachcada2a02017-05-18 19:16:47 -04003020 if (rv != 0)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303021 vlib_cli_output (vm,
3022 "%s[%d]: %U returned %d", is_add ? "add" : "del",
3023 index, format_ip4_address, &ep->addr.as_u32, rv);
Dave Barachcada2a02017-05-18 19:16:47 -04003024 else
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303025 ep->in_table = is_add;
Dave Barachcada2a02017-05-18 19:16:47 -04003026 }
3027
3028 vlib_cli_output (vm, "Remove remaining %d entries from the table",
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303029 tm->table->active_elements);
Dave Barachcada2a02017-05-18 19:16:47 -04003030
3031 for (i = 0; i < tm->sessions; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003032 {
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303033 u8 *key_minus_skip;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003034 u64 hash;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303035 vnet_classify_entry_t *e;
3036
Dave Barachcada2a02017-05-18 19:16:47 -04003037 ep = tm->entries + i;
3038 if (ep->in_table == 0)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303039 continue;
Dave Barachcada2a02017-05-18 19:16:47 -04003040
3041 data->ip.src_address.as_u32 = ep->addr.as_u32;
3042
3043 hash = vnet_classify_hash_packet (tm->table, (u8 *) data);
3044
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303045 e = vnet_classify_find_entry (tm->table,
3046 (u8 *) data, hash, 0 /* time_now */ );
Dave Barachcada2a02017-05-18 19:16:47 -04003047 if (e == 0)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303048 {
3049 clib_warning ("Couldn't find %U index %d which should be present",
3050 format_ip4_address, ep->addr, i);
3051 continue;
3052 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003053
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303054 key_minus_skip = (u8 *) e->key;
Dave Barachcada2a02017-05-18 19:16:47 -04003055 key_minus_skip -= tm->table->skip_n_vectors * sizeof (u32x4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003056
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303057 rv = vnet_classify_add_del_session
3058 (tm->classify_main,
3059 tm->table_index,
3060 key_minus_skip, IP_LOOKUP_NEXT_DROP, i /* opaque_index */ ,
3061 0 /* advance */ , 0, 0,
3062 0 /* is_add */ );
Dave Barachcada2a02017-05-18 19:16:47 -04003063
Ed Warnickecb9cada2015-12-08 15:45:58 -07003064 if (rv != 0)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303065 clib_warning ("del: returned %d", rv);
Dave Barachcada2a02017-05-18 19:16:47 -04003066
3067 if (tm->verbose)
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303068 vlib_cli_output (vm, "del: %U", format_ip4_address, &ep->addr.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003069 }
3070
Dave Barachcada2a02017-05-18 19:16:47 -04003071 vlib_cli_output (vm, "%d entries remain, MUST be zero",
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303072 tm->table->active_elements);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003073
Dave Barachcada2a02017-05-18 19:16:47 -04003074 vlib_cli_output (vm, "Table after cleanup: \n%U\n",
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303075 format_classify_table, tm->table, 0 /* verbose */ );
Dave Barachcada2a02017-05-18 19:16:47 -04003076
Ed Warnickecb9cada2015-12-08 15:45:58 -07003077 vec_free (mp);
3078 vec_free (dp);
3079
Dave Barachcada2a02017-05-18 19:16:47 -04003080 vnet_classify_delete_table_index (tm->classify_main,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303081 tm->table_index, 1 /* del_chain */ );
Dave Barachcada2a02017-05-18 19:16:47 -04003082 tm->table = 0;
3083 tm->table_index = ~0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303084 vec_free (tm->entries);
Dave Barachcada2a02017-05-18 19:16:47 -04003085
Ed Warnickecb9cada2015-12-08 15:45:58 -07003086 return 0;
3087}
3088
Dave Barachcada2a02017-05-18 19:16:47 -04003089static clib_error_t *
3090test_classify_command_fn (vlib_main_t * vm,
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303091 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barachcada2a02017-05-18 19:16:47 -04003092{
3093 test_classify_main_t *tm = &test_classify_main;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303094 vnet_classify_main_t *cm = &vnet_classify_main;
Dave Barachcada2a02017-05-18 19:16:47 -04003095 u32 tmp;
3096 int which = 0;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303097 clib_error_t *error = 0;
3098
Dave Barachcada2a02017-05-18 19:16:47 -04003099 tm->buckets = 1024;
3100 tm->sessions = 8192;
3101 tm->iterations = 8192;
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303102 tm->memory_size = 64 << 20;
Dave Barachcada2a02017-05-18 19:16:47 -04003103 tm->src.as_u32 = clib_net_to_host_u32 (0x0100000A);
3104 tm->table = 0;
3105 tm->seed = 0xDEADDABE;
3106 tm->classify_main = cm;
3107 tm->vlib_main = vm;
3108 tm->verbose = 0;
3109
3110 /* Default starting address 1.0.0.10 */
3111
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303112 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3113 {
3114 if (unformat (input, "sessions %d", &tmp))
3115 tm->sessions = tmp;
3116 else
3117 if (unformat (input, "src %U", unformat_ip4_address, &tm->src.as_u32))
3118 ;
3119 else if (unformat (input, "buckets %d", &tm->buckets))
3120 ;
3121 else if (unformat (input, "memory-size %uM", &tmp))
3122 tm->memory_size = tmp << 20;
3123 else if (unformat (input, "memory-size %uG", &tmp))
3124 tm->memory_size = tmp << 30;
3125 else if (unformat (input, "seed %d", &tm->seed))
3126 ;
3127 else if (unformat (input, "verbose"))
3128 tm->verbose = 1;
Dave Barachcada2a02017-05-18 19:16:47 -04003129
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303130 else if (unformat (input, "iterations %d", &tm->iterations))
3131 ;
3132 else if (unformat (input, "churn-test"))
3133 which = 0;
3134 else
3135 break;
Dave Barachcada2a02017-05-18 19:16:47 -04003136 }
3137
3138 switch (which)
3139 {
3140 case 0:
3141 error = test_classify_churn (tm);
3142 break;
3143 default:
3144 error = clib_error_return (0, "No such test");
3145 break;
3146 }
3147
3148 return error;
3149}
3150
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303151/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003152VLIB_CLI_COMMAND (test_classify_command, static) = {
3153 .path = "test classify",
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303154 .short_help =
Dave Barachcada2a02017-05-18 19:16:47 -04003155 "test classify [src <ip>] [sessions <nn>] [buckets <nn>] [seed <nnn>]\n"
3156 " [memory-size <nn>[M|G]]\n"
3157 " [churn-test]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003158 .function = test_classify_command_fn,
3159};
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303160/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003161#endif /* TEST_CODE */
khemendra kumard7bfa0e2017-11-27 15:15:53 +05303162
3163/*
3164 * fd.io coding-style-patch-verification: ON
3165 *
3166 * Local Variables:
3167 * eval: (c-set-style "gnu")
3168 * End:
3169 */