blob: cb67cb9d20e079f03a59f69268bba8a2051d42a5 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * l2_input.h : layer 2 input packet processing
3 *
4 * Copyright (c) 2013 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#ifndef included_vnet_l2_input_h
19#define included_vnet_l2_input_h
20
21#include <vlib/vlib.h>
22#include <vnet/vnet.h>
23#include <vnet/l2/l2_bd.h>
24#include <vnet/ethernet/packet.h>
25#include <vnet/ip/ip.h>
26
Dave Barach97d8dc22016-08-15 15:31:15 -040027/* Per-subinterface L2 feature configuration */
Ed Warnickecb9cada2015-12-08 15:45:58 -070028
Dave Barach97d8dc22016-08-15 15:31:15 -040029typedef struct
30{
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
Dave Barach97d8dc22016-08-15 15:31:15 -040032 union
33 {
34 u16 bd_index; /* bridge domain id */
35 u32 output_sw_if_index; /* for xconnect */
Ed Warnickecb9cada2015-12-08 15:45:58 -070036 };
37
Dave Barach97d8dc22016-08-15 15:31:15 -040038 /* Interface mode. If both are 0, this interface is in L3 mode */
39 u8 xconnect;
40 u8 bridge;
Ed Warnickecb9cada2015-12-08 15:45:58 -070041
Dave Barach97d8dc22016-08-15 15:31:15 -040042 /* this is the bvi interface for the bridge-domain */
43 u8 bvi;
Ed Warnickecb9cada2015-12-08 15:45:58 -070044
Dave Barach97d8dc22016-08-15 15:31:15 -040045 /* config for which input features are configured on this interface */
Ed Warnickecb9cada2015-12-08 15:45:58 -070046 u32 feature_bitmap;
47
Dave Barach97d8dc22016-08-15 15:31:15 -040048 /* some of these flags are also in the feature bitmap */
49 u8 learn_enable;
50 u8 fwd_enable;
51 u8 flood_enable;
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
Dave Barach97d8dc22016-08-15 15:31:15 -040053 /* split horizon group */
54 u8 shg;
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
John Loda1f2c72017-03-24 20:11:15 -040056 /* sequence number for interface based flush of MACs */
57 u8 seq_num;
58
Ed Warnickecb9cada2015-12-08 15:45:58 -070059} l2_input_config_t;
60
61
Dave Barach97d8dc22016-08-15 15:31:15 -040062typedef struct
63{
Ed Warnickecb9cada2015-12-08 15:45:58 -070064
Dave Barach97d8dc22016-08-15 15:31:15 -040065 /* Next nodes for the feature bitmap */
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 u32 feat_next_node_index[32];
67
68 /* config vector indexed by sw_if_index */
69 l2_input_config_t *configs;
70
Florin Coras1a1adc72016-07-22 01:45:30 +020071 /* bridge domain config vector indexed by bd_index */
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 l2_bridge_domain_t *bd_configs;
73
74 /* convenience variables */
Dave Barach97d8dc22016-08-15 15:31:15 -040075 vlib_main_t *vlib_main;
76 vnet_main_t *vnet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070077} l2input_main_t;
78
79extern l2input_main_t l2input_main;
80
John Lo405e41b2016-04-23 15:14:12 -040081extern vlib_node_registration_t l2input_node;
82
Dave Barach97d8dc22016-08-15 15:31:15 -040083static_always_inline l2_bridge_domain_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -070084l2input_bd_config_from_index (l2input_main_t * l2im, u32 bd_index)
85{
Dave Barach97d8dc22016-08-15 15:31:15 -040086 l2_bridge_domain_t *bd_config;
Ed Warnickecb9cada2015-12-08 15:45:58 -070087
Dave Barach97d8dc22016-08-15 15:31:15 -040088 bd_config = vec_elt_at_index (l2im->bd_configs, bd_index);
89 return bd_is_valid (bd_config) ? bd_config : NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -070090}
91
Eyal Bariafc47aa2017-04-20 14:45:17 +030092static_always_inline l2_bridge_domain_t *
93l2input_bd_config (u32 bd_index)
94{
95 l2input_main_t *mp = &l2input_main;
96 l2_bridge_domain_t *bd_config;
97
98 vec_validate (mp->bd_configs, bd_index);
99 bd_config = vec_elt_at_index (mp->bd_configs, bd_index);
100 return bd_config;
101}
102
John Lo20e55512016-09-22 18:24:13 -0400103/* L2 input indication packet is from BVI, using -2 */
104#define L2INPUT_BVI ((u32) (~0-1))
105
Dave Barach97d8dc22016-08-15 15:31:15 -0400106/* L2 input features */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107
Dave Barach97d8dc22016-08-15 15:31:15 -0400108/* Mappings from feature ID to graph node name */
109#define foreach_l2input_feat \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110 _(DROP, "feature-bitmap-drop") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111 _(XCONNECT, "l2-output") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 _(FLOOD, "l2-flood") \
113 _(ARP_TERM, "arp-term-l2bd") \
114 _(UU_FLOOD, "l2-flood") \
115 _(FWD, "l2-fwd") \
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000116 _(RW, "l2-rw") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117 _(LEARN, "l2-learn") \
118 _(VTR, "l2-input-vtr") \
119 _(VPATH, "vpath-input-l2") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 _(ACL, "l2-input-acl") \
Dave Barachb84a3e52016-08-30 17:01:52 -0400121 _(POLICER_CLAS, "l2-policer-classify") \
122 _(INPUT_CLASSIFY, "l2-input-classify")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
Dave Barach97d8dc22016-08-15 15:31:15 -0400124/* Feature bitmap positions */
125typedef enum
126{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127#define _(sym,str) L2INPUT_FEAT_##sym##_BIT,
128 foreach_l2input_feat
129#undef _
Dave Barach97d8dc22016-08-15 15:31:15 -0400130 L2INPUT_N_FEAT,
Eyal Barifead6702017-04-04 04:46:32 +0300131 L2INPUT_VALID_MASK =
132#define _(sym,str) L2INPUT_FEAT_##sym##_BIT |
133 foreach_l2input_feat
134#undef _
135 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136} l2input_feat_t;
137
Dave Barach97d8dc22016-08-15 15:31:15 -0400138/* Feature bit masks */
139typedef enum
140{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141#define _(sym,str) L2INPUT_FEAT_##sym = (1<<L2INPUT_FEAT_##sym##_BIT),
142 foreach_l2input_feat
143#undef _
144} l2input_feat_masks_t;
Dave Barach97d8dc22016-08-15 15:31:15 -0400145
146/** Return an array of strings containing graph node names of each feature */
147char **l2input_get_feat_names (void);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148
149
Dave Barach97d8dc22016-08-15 15:31:15 -0400150static_always_inline u8
151bd_feature_flood (l2_bridge_domain_t * bd_config)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152{
Dave Barach97d8dc22016-08-15 15:31:15 -0400153 return ((bd_config->feature_bitmap & L2INPUT_FEAT_FLOOD) ==
154 L2INPUT_FEAT_FLOOD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155}
156
Dave Barach97d8dc22016-08-15 15:31:15 -0400157static_always_inline u8
158bd_feature_uu_flood (l2_bridge_domain_t * bd_config)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159{
Dave Barach97d8dc22016-08-15 15:31:15 -0400160 return ((bd_config->feature_bitmap & L2INPUT_FEAT_UU_FLOOD) ==
161 L2INPUT_FEAT_UU_FLOOD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162}
163
Dave Barach97d8dc22016-08-15 15:31:15 -0400164static_always_inline u8
165bd_feature_forward (l2_bridge_domain_t * bd_config)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166{
Dave Barach97d8dc22016-08-15 15:31:15 -0400167 return ((bd_config->feature_bitmap & L2INPUT_FEAT_FWD) == L2INPUT_FEAT_FWD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168}
169
Dave Barach97d8dc22016-08-15 15:31:15 -0400170static_always_inline u8
171bd_feature_learn (l2_bridge_domain_t * bd_config)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172{
Dave Barach97d8dc22016-08-15 15:31:15 -0400173 return ((bd_config->feature_bitmap & L2INPUT_FEAT_LEARN) ==
174 L2INPUT_FEAT_LEARN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175}
176
Dave Barach97d8dc22016-08-15 15:31:15 -0400177static_always_inline u8
178bd_feature_arp_term (l2_bridge_domain_t * bd_config)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179{
Dave Barach97d8dc22016-08-15 15:31:15 -0400180 return ((bd_config->feature_bitmap & L2INPUT_FEAT_ARP_TERM) ==
181 L2INPUT_FEAT_ARP_TERM);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182}
183
Dave Barach97d8dc22016-08-15 15:31:15 -0400184/** Masks for eliminating features that do not apply to a packet */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
Dave Barach97d8dc22016-08-15 15:31:15 -0400186/** Get a pointer to the config for the given interface */
187l2_input_config_t *l2input_intf_config (u32 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188
Dave Barach97d8dc22016-08-15 15:31:15 -0400189/* Enable (or disable) the feature in the bitmap for the given interface */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190u32 l2input_intf_bitmap_enable (u32 sw_if_index,
Dave Barach97d8dc22016-08-15 15:31:15 -0400191 u32 feature_bitmap, u32 enable);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192
Dave Barach97d8dc22016-08-15 15:31:15 -0400193/* Sets modifies flags from a bridge domain */
194u32 l2input_set_bridge_features (u32 bd_index, u32 feat_mask, u32 feat_value);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000195
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196
197#define MODE_L3 0
198#define MODE_L2_BRIDGE 1
199#define MODE_L2_XC 2
200#define MODE_L2_CLASSIFY 3
201
202#define MODE_ERROR_ETH 1
203#define MODE_ERROR_BVI_DEF 2
204
205u32 set_int_l2_mode (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400206 vnet_main_t * vnet_main,
207 u32 mode,
208 u32 sw_if_index,
209 u32 bd_index, u32 bvi, u32 shg, u32 xc_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210
211static inline void
212vnet_update_l2_len (vlib_buffer_t * b)
213{
Dave Barach97d8dc22016-08-15 15:31:15 -0400214 ethernet_header_t *eth;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 u16 ethertype;
Chris Luke194ebc52016-04-25 14:26:55 -0400216 u8 vlan_count = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217
218 /* point at currrent l2 hdr */
219 eth = vlib_buffer_get_current (b);
220
Dave Barach97d8dc22016-08-15 15:31:15 -0400221 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222 * l2-output pays no attention to this
223 * but the tag push/pop code on an l2 subif needs it.
Dave Barach97d8dc22016-08-15 15:31:15 -0400224 *
225 * Determine l2 header len, check for up to 2 vlans
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 */
Dave Barach97d8dc22016-08-15 15:31:15 -0400227 vnet_buffer (b)->l2.l2_len = sizeof (ethernet_header_t);
228 ethertype = clib_net_to_host_u16 (eth->type);
Damjan Marionb94bdad2016-09-19 11:32:03 +0200229 if (ethernet_frame_is_tagged (ethertype))
Dave Barach97d8dc22016-08-15 15:31:15 -0400230 {
231 ethernet_vlan_header_t *vlan;
232 vnet_buffer (b)->l2.l2_len += sizeof (*vlan);
233 vlan_count = 1;
234 vlan = (void *) (eth + 1);
235 ethertype = clib_net_to_host_u16 (vlan->type);
236 if (ethertype == ETHERNET_TYPE_VLAN)
237 {
238 vnet_buffer (b)->l2.l2_len += sizeof (*vlan);
239 vlan_count = 2;
240 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400242 ethernet_buffer_set_vlan_count (b, vlan_count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243}
244
245/*
Dave Barach97d8dc22016-08-15 15:31:15 -0400246 * Compute flow hash of an ethernet packet, use 5-tuple hash if L3 packet
247 * is ip4 or ip6. Otherwise hash on smac/dmac/etype.
248 * The vlib buffer current pointer is expected to be at ethernet header
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 * and vnet l2.l2_len is exppected to be setup already.
250 */
Dave Barach97d8dc22016-08-15 15:31:15 -0400251static inline u32
252vnet_l2_compute_flow_hash (vlib_buffer_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253{
Dave Barach97d8dc22016-08-15 15:31:15 -0400254 ethernet_header_t *eh = vlib_buffer_get_current (b);
255 u8 *l3h = (u8 *) eh + vnet_buffer (b)->l2.l2_len;
256 u16 ethertype = clib_net_to_host_u16 (*(u16 *) (l3h - 2));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257
Dave Barach97d8dc22016-08-15 15:31:15 -0400258 if (ethertype == ETHERNET_TYPE_IP4)
259 return ip4_compute_flow_hash ((ip4_header_t *) l3h, IP_FLOW_HASH_DEFAULT);
260 else if (ethertype == ETHERNET_TYPE_IP6)
261 return ip6_compute_flow_hash ((ip6_header_t *) l3h, IP_FLOW_HASH_DEFAULT);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262 else
263 {
264 u32 a, b, c;
Dave Barach97d8dc22016-08-15 15:31:15 -0400265 u32 *ap = (u32 *) & eh->dst_address[2];
266 u32 *bp = (u32 *) & eh->src_address[2];
267 a = *ap;
268 b = *bp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 c = ethertype;
270 hash_v3_mix32 (a, b, c);
271 hash_v3_finalize32 (a, b, c);
272 return c;
273 }
274}
275
276#endif
277
Dave Barach97d8dc22016-08-15 15:31:15 -0400278
279/*
280 * fd.io coding-style-patch-verification: ON
281 *
282 * Local Variables:
283 * eval: (c-set-style "gnu")
284 * End:
285 */