2 * Copyright (c) 2017 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:
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 #ifndef SRC_VNET_SESSION_SESSION_RULES_TABLE_H_
17 #define SRC_VNET_SESSION_SESSION_RULES_TABLE_H_
19 #include <vnet/vnet.h>
20 #include <vnet/fib/fib.h>
21 #include <vnet/session/transport.h>
22 #include <vnet/session/mma_16.h>
23 #include <vnet/session/mma_40.h>
26 typedef CLIB_PACKED (struct
39 }) session_mask_or_match_4_t;
41 typedef CLIB_PACKED (struct
54 }) session_mask_or_match_6_t;
57 #define SESSION_RULE_TAG_MAX_LEN 64
58 #define SESSION_RULES_TABLE_INVALID_INDEX MMA_TABLE_INVALID_INDEX
59 #define SESSION_RULES_TABLE_ACTION_DROP (MMA_TABLE_INVALID_INDEX - 1)
60 #define SESSION_RULES_TABLE_ACTION_ALLOW (MMA_TABLE_INVALID_INDEX - 2)
62 typedef struct _session_rules_table_add_del_args
71 } session_rule_table_add_del_args_t;
73 typedef struct _rule_tag
78 typedef struct _session_rules_table_t
81 * Per fib proto session rules tables
83 mma_rules_table_16_t session_rules_tables_16;
84 mma_rules_table_40_t session_rules_tables_40;
86 * Hash table that maps tags to rules
92 session_rule_tag_t *rule_tags;
94 * Hash table that maps rule indices to tags
97 } session_rules_table_t;
99 u32 session_rules_table_lookup4 (session_rules_table_t * srt,
100 ip4_address_t * lcl_ip,
101 ip4_address_t * rmt_ip, u16 lcl_port,
103 u32 session_rules_table_lookup6 (session_rules_table_t * srt,
104 ip6_address_t * lcl_ip,
105 ip6_address_t * rmt_ip, u16 lcl_port,
107 void session_rules_table_cli_dump (vlib_main_t * vm,
108 session_rules_table_t * srt, u8 fib_proto);
109 void session_rules_table_show_rule (vlib_main_t * vm,
110 session_rules_table_t * srt,
111 ip46_address_t * lcl_ip, u16 lcl_port,
112 ip46_address_t * rmt_ip, u16 rmt_port,
114 clib_error_t *session_rules_table_add_del (session_rules_table_t * srt,
115 session_rule_table_add_del_args_t *
117 u8 *session_rules_table_rule_tag (session_rules_table_t * srt, u32 ri,
119 void session_rules_table_init (session_rules_table_t * srt);
120 #endif /* SRC_VNET_SESSION_SESSION_RULES_TABLE_H_ */
122 * fd.io coding-style-patch-verification: ON
125 * eval: (c-set-style "gnu")