FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
l2_bvi.h
Go to the documentation of this file.
1 /*
2  * l2_bvi.h : layer 2 Bridged Virtual Interface
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_l2bvi_h
19 #define included_l2bvi_h
20 
21 #include <vlib/vlib.h>
22 #include <vnet/ethernet/ethernet.h>
23 #include <vppinfra/sparse_vec.h>
24 
25 #include <vnet/l2/l2_input.h>
26 
27 #define TO_BVI_ERR_OK 0
28 #define TO_BVI_ERR_BAD_MAC 1
29 #define TO_BVI_ERR_ETHERTYPE 2
30 
31 /**
32  * Send a packet from L2 processing to L3 via the BVI interface.
33  * Set next0 to the proper L3 input node.
34  * Return an error if the packet isn't what we expect.
35  */
36 
40  vlib_buffer_t * b0,
41  u32 bvi_sw_if_index, next_by_ethertype_t * l3_next, u16 * next0)
42 {
43  /* Perform L3 my-mac filter */
46  {
48  vnet_get_sup_hw_interface (vnet_main, bvi_sw_if_index);
50  return TO_BVI_ERR_BAD_MAC;
51  }
52 
53  /* Save L2 header position which may be changed due to packet replication */
54  vnet_buffer (b0)->l2_hdr_offset = b0->current_data;
55 
56  /* Strip L2 header */
57  u8 l2_len = vnet_buffer (b0)->l2.l2_len;
58  vlib_buffer_advance (b0, l2_len);
59 
60  u8 *l3h = vlib_buffer_get_current (b0);
61  u16 ethertype = clib_net_to_host_u16 (*(u16 *) (l3h - 2));
62 
63  /* Set the input interface to be the BVI interface */
64  vnet_buffer (b0)->sw_if_index[VLIB_RX] = bvi_sw_if_index;
65  vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
66 
67  /* Go to appropriate L3 input node */
68  if (ethertype == ETHERNET_TYPE_IP4)
69  {
70  *next0 = l3_next->input_next_ip4;
71  }
72  else if (ethertype == ETHERNET_TYPE_IP6)
73  {
74  *next0 = l3_next->input_next_ip6;
75  }
76  else
77  {
78  /* uncommon ethertype, check table */
79  u32 i0 = sparse_vec_index (l3_next->input_next_by_type, ethertype);
80  *next0 = vec_elt (l3_next->input_next_by_type, i0);
81 
82  if (i0 == SPARSE_VEC_INVALID_INDEX)
83  {
84  return TO_BVI_ERR_ETHERTYPE;
85  }
86  }
87 
88  /* increment BVI RX interface stat */
92  vlib_main->thread_index, bvi_sw_if_index,
93  1, vlib_buffer_length_in_chain (vlib_main, b0));
94  return TO_BVI_ERR_OK;
95 }
96 
97 void
99  ethernet_type_t type, u32 node_index);
100 
101 extern int l2_bvi_create (u32 instance, const mac_address_t * mac,
102  u32 * sw_if_index);
103 extern int l2_bvi_delete (u32 sw_if_index);
104 
105 #endif
106 
107 /*
108  * fd.io coding-style-patch-verification: ON
109  *
110  * Local Variables:
111  * eval: (c-set-style "gnu")
112  * End:
113  */
vmrglw vmrglh hi
void l2bvi_register_input_type(vlib_main_t *vm, ethernet_type_t type, u32 node_index)
Definition: l2_bvi.c:29
static void vlib_increment_combined_counter(vlib_combined_counter_main_t *cm, u32 thread_index, u32 index, u64 n_packets, u64 n_bytes)
Increment a combined counter.
Definition: counter.h:220
#define TO_BVI_ERR_BAD_MAC
Definition: l2_bvi.h:28
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
vnet_interface_main_t interface_main
Definition: vnet.h:56
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:110
ethernet_type_t
Definition: packet.h:45
#define TO_BVI_ERR_ETHERTYPE
Definition: l2_bvi.h:29
u32 thread_index
Definition: main.h:197
int l2_bvi_delete(u32 sw_if_index)
Definition: l2_bvi.c:210
static uword vlib_buffer_length_in_chain(vlib_main_t *vm, vlib_buffer_t *b)
Get length in bytes of the buffer chain.
Definition: buffer_funcs.h:366
unsigned char u8
Definition: types.h:56
int l2_bvi_create(u32 instance, const mac_address_t *mac, u32 *sw_if_index)
Definition: l2_bvi.c:136
#define static_always_inline
Definition: clib.h:99
vl_api_interface_index_t sw_if_index
Definition: gre.api:50
static uword ethernet_address_cast(u8 *a)
Definition: packet.h:67
vlib_combined_counter_main_t * combined_sw_if_counters
Definition: interface.h:842
u8 dst_address[6]
Definition: packet.h:55
unsigned int u32
Definition: types.h:88
vl_api_fib_path_type_t type
Definition: fib_types.api:123
u32 bvi_sw_if_index
Definition: gbp.api:36
unsigned short u16
Definition: types.h:57
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:229
vnet_main_t vnet_main
Definition: misc.c:43
static int ethernet_mac_address_equal(const u8 *a, const u8 *b)
Definition: mac_address.h:85
static uword sparse_vec_index(void *v, uword sparse_index)
Definition: sparse_vec.h:161
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:248
#define vec_elt(v, i)
Get vector value at index i.
int vlib_main(vlib_main_t *volatile vm, unformat_input_t *input)
Definition: main.c:2011
Definition: defs.h:47
u32 instance
Definition: gre.api:48
VLIB buffer representation.
Definition: buffer.h:102
#define vnet_buffer(b)
Definition: buffer.h:361
#define TO_BVI_ERR_OK
Definition: l2_bvi.h:27
Definition: defs.h:46
u16 * input_next_by_type
Definition: ethernet.h:248
#define SPARSE_VEC_INVALID_INDEX
Definition: sparse_vec.h:68
static_always_inline u32 l2_to_bvi(vlib_main_t *vlib_main, vnet_main_t *vnet_main, vlib_buffer_t *b0, u32 bvi_sw_if_index, next_by_ethertype_t *l3_next, u16 *next0)
Send a packet from L2 processing to L3 via the BVI interface.
Definition: l2_bvi.h:38