blob: bc25ecd0ff750e2a711deafbb6b9cc43acc02d7a [file] [log] [blame]
Dave Barach9137e542019-09-13 17:47:50 -04001/*
2 * trace_classify.h - Use the classifier to decide if a packet is traced
3 *
4 * Copyright (c) 2019 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17#include <vlib/vlib.h>
18#include <vnet/vnet.h>
19#include <vppinfra/error.h>
20#include <vnet/classify/vnet_classify.h>
21
22/** @file trace_classify.h
23 * Use the vpp classifier to decide whether to trace packets
24 */
25
26/** @brief vnet_is_packet_traced
27 * @param vlib_buffer_t *b - packet to classify
28 * @param int func - 0 => use classifier w/ supplied table index
29 * @param u32 classify_table_index - classifier table index
30 * @return 0 => no trace, 1 => trace, -1 => error
31 */
32
33static inline int
34vnet_is_packet_traced_inline (vlib_buffer_t * b,
35 u32 classify_table_index, int func)
36{
37 vnet_classify_main_t *vcm = &vnet_classify_main;
38 vnet_classify_table_t *t;
39 vnet_classify_entry_t *e;
40 u64 hash;
41
42 /*$$$ add custom classifiers here, if any */
43 if (func != 0)
44 return -1;
45
46 /* This will happen... */
47 if (pool_is_free_index (vcm->tables, classify_table_index))
48 return -1;
49
50 /* Get the table */
51 t = pool_elt_at_index (vcm->tables, classify_table_index);
52
53 /* Hash the packet */
54 hash = vnet_classify_hash_packet (t, vlib_buffer_get_current (b));
55
56 /* See if there's a matching entry */
57 e = vnet_classify_find_entry (t, vlib_buffer_get_current (b), hash,
58 0 /* time = 0, disables hit-counter */ );
59 /* Hit means trace the packet... */
60 if (e)
61 {
62 /* Manual hit accounting */
63 e->hits++;
64 return 1;
65 }
66
67 /*
68 * Look for a hit in a less-specific table.
69 * Performance hint: for this use-case, don't go there.
70 */
71 while (1)
72 {
73 /* Most likely, we're done right now */
74 if (PREDICT_TRUE (t->next_table_index == ~0))
75 return 0;
76 t = pool_elt_at_index (vcm->tables, t->next_table_index);
77
78 /* Compute hash for this table */
79 hash = vnet_classify_hash_packet (t, vlib_buffer_get_current (b));
80
81 /* See if there's a matching entry */
82 e = vnet_classify_find_entry (t, vlib_buffer_get_current (b), hash,
83 0 /* time = 0, disables hit-counter */ );
84 if (e)
85 {
86 /* Manual hit accounting */
87 e->hits++;
88 return 1;
89 }
90 }
91 /* NOTREACHED */
92}
93
94/*
95 * fd.io coding-style-patch-verification: ON
96 *
97 * Local Variables:
98 * eval: (c-set-style "gnu")
99 * End:
100 */