vxlan: multiarch optimization of vxlan
[vpp.git] / extras / deprecated / plugins / gbp / gbp_classify.c
1 /*
2  * gbp.h : Group Based Policy
3  *
4  * Copyright (c) 2018 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
18 #include <plugins/gbp/gbp.h>
19 #include <plugins/gbp/gbp_classify.h>
20 #include <vnet/l2/l2_input.h>
21
22 gbp_src_classify_main_t gbp_src_classify_main;
23
24 static clib_error_t *
25 gbp_src_classify_init (vlib_main_t * vm)
26 {
27   gbp_src_classify_main_t *em = &gbp_src_classify_main;
28
29   vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "gbp-src-classify");
30
31   /* Initialize the feature next-node indexes */
32   feat_bitmap_init_next_nodes (vm,
33                                node->index,
34                                L2INPUT_N_FEAT,
35                                l2input_get_feat_names (),
36                                em->l2_input_feat_next[GBP_SRC_CLASSIFY_NULL]);
37
38   node = vlib_get_node_by_name (vm, (u8 *) "gbp-null-classify");
39   feat_bitmap_init_next_nodes (vm,
40                                node->index,
41                                L2INPUT_N_FEAT,
42                                l2input_get_feat_names (),
43                                em->l2_input_feat_next[GBP_SRC_CLASSIFY_PORT]);
44
45   node = vlib_get_node_by_name (vm, (u8 *) "l2-gbp-lpm-classify");
46   feat_bitmap_init_next_nodes (vm,
47                                node->index,
48                                L2INPUT_N_FEAT,
49                                l2input_get_feat_names (),
50                                em->l2_input_feat_next[GBP_SRC_CLASSIFY_LPM]);
51
52   node = vlib_get_node_by_name (vm, (u8 *) "l2-gbp-lpm-anon-classify");
53   feat_bitmap_init_next_nodes (vm,
54                                node->index,
55                                L2INPUT_N_FEAT,
56                                l2input_get_feat_names (),
57                                em->l2_input_feat_next
58                                [GBP_SRC_CLASSIFY_LPM_ANON]);
59
60   return 0;
61 }
62
63 VLIB_INIT_FUNCTION (gbp_src_classify_init);
64
65 /*
66  * fd.io coding-style-patch-verification: ON
67  *
68  * Local Variables:
69  * eval: (c-set-style "gnu")
70  * End:
71  */