blob: 100c584a556fab4e37ea78ee31e527d7f0b8c545 [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
Dave Barachb84a3e52016-08-30 17:01:52 -040016#ifndef __included_vnet_l2_input_classify_h__
17#define __included_vnet_l2_input_classify_h__
Ed Warnickecb9cada2015-12-08 15:45:58 -070018
19#include <vlib/vlib.h>
20#include <vnet/vnet.h>
21#include <vnet/pg/pg.h>
22#include <vnet/ethernet/ethernet.h>
23#include <vnet/ethernet/packet.h>
24#include <vnet/ip/ip_packet.h>
25#include <vnet/ip/ip4_packet.h>
26#include <vnet/ip/ip6_packet.h>
27#include <vlib/cli.h>
28#include <vnet/l2/l2_input.h>
Dave Barachb84a3e52016-08-30 17:01:52 -040029#include <vnet/l2/l2_output.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070030#include <vnet/l2/feat_bitmap.h>
31#include <vppinfra/error.h>
32#include <vppinfra/hash.h>
33#include <vppinfra/cache.h>
34
35#include <vnet/classify/vnet_classify.h>
36
Dave Barach97d8dc22016-08-15 15:31:15 -040037typedef enum
38{
Dave Barachb84a3e52016-08-30 17:01:52 -040039 L2_INPUT_CLASSIFY_NEXT_DROP,
40 L2_INPUT_CLASSIFY_NEXT_ETHERNET_INPUT,
41 L2_INPUT_CLASSIFY_NEXT_IP4_INPUT,
42 L2_INPUT_CLASSIFY_NEXT_IP6_INPUT,
43 L2_INPUT_CLASSIFY_NEXT_LI,
44 L2_INPUT_CLASSIFY_N_NEXT,
45} l2_input_classify_next_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070046
Dave Barach97d8dc22016-08-15 15:31:15 -040047typedef enum
48{
Dave Barachb84a3e52016-08-30 17:01:52 -040049 L2_INPUT_CLASSIFY_TABLE_IP4,
50 L2_INPUT_CLASSIFY_TABLE_IP6,
51 L2_INPUT_CLASSIFY_TABLE_OTHER,
52 L2_INPUT_CLASSIFY_N_TABLES,
53} l2_input_classify_table_id_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
Dave Barachb84a3e52016-08-30 17:01:52 -040055typedef enum
Dave Barach97d8dc22016-08-15 15:31:15 -040056{
Dave Barachb84a3e52016-08-30 17:01:52 -040057 L2_OUTPUT_CLASSIFY_NEXT_DROP,
58 L2_OUTPUT_CLASSIFY_N_NEXT,
59} l2_output_classify_next_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070060
Dave Barachb84a3e52016-08-30 17:01:52 -040061typedef enum
62{
63 L2_OUTPUT_CLASSIFY_TABLE_IP4,
64 L2_OUTPUT_CLASSIFY_TABLE_IP6,
65 L2_OUTPUT_CLASSIFY_TABLE_OTHER,
66 L2_OUTPUT_CLASSIFY_N_TABLES,
67} l2_output_classify_table_id_t;
68
69typedef struct _l2_classify_main
70{
John Lobeb0b2e2017-07-22 00:21:36 -040071 /* Next nodes for L2 input and output features */
72 u32 l2_inp_feat_next[32];
73 u32 l2_out_feat_next[32];
Ed Warnickecb9cada2015-12-08 15:45:58 -070074
75 /* Per-address-family classifier table vectors */
Dave Barachb84a3e52016-08-30 17:01:52 -040076 u32 *classify_table_index_by_sw_if_index[L2_INPUT_CLASSIFY_N_TABLES];
77
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 /* convenience variables */
Dave Barach97d8dc22016-08-15 15:31:15 -040079 vlib_main_t *vlib_main;
80 vnet_main_t *vnet_main;
81 vnet_classify_main_t *vnet_classify_main;
Dave Barachb84a3e52016-08-30 17:01:52 -040082} l2_input_classify_main_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
Dave Barachb84a3e52016-08-30 17:01:52 -040084typedef struct _l2_classify_main l2_output_classify_main_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070085
Dave Barachb84a3e52016-08-30 17:01:52 -040086extern l2_input_classify_main_t l2_input_classify_main;
87extern vlib_node_registration_t l2_input_classify_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
Dave Barachb84a3e52016-08-30 17:01:52 -040089extern l2_output_classify_main_t l2_output_classify_main;
90extern vlib_node_registration_t l2_output_classify_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
Dave Barachb84a3e52016-08-30 17:01:52 -040092void vnet_l2_input_classify_enable_disable (u32 sw_if_index,
93 int enable_disable);
Ed Warnickecb9cada2015-12-08 15:45:58 -070094
Dave Barachb84a3e52016-08-30 17:01:52 -040095int vnet_l2_input_classify_set_tables (u32 sw_if_index, u32 ip4_table_index,
96 u32 ip6_table_index,
97 u32 other_table_index);
98
99void vnet_l2_output_classify_enable_disable (u32 sw_if_index,
100 int enable_disable);
101
102int vnet_l2_output_classify_set_tables (u32 sw_if_index, u32 ip4_table_index,
103 u32 ip6_table_index,
104 u32 other_table_index);
105
106#endif /* __included_vnet_l2_input_classify_h__ */
Dave Barach97d8dc22016-08-15 15:31:15 -0400107
108/*
109 * fd.io coding-style-patch-verification: ON
110 *
111 * Local Variables:
112 * eval: (c-set-style "gnu")
113 * End:
114 */