FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
gbp_fwd_node.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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 
16 #include <plugins/gbp/gbp.h>
17 #include <vnet/l2/l2_input.h>
18 
19 #define foreach_gbp_fwd \
20  _(DROP, "drop") \
21  _(OUTPUT, "output")
22 
23 typedef enum
24 {
25 #define _(sym,str) GBP_FWD_ERROR_##sym,
27 #undef _
30 
31 static char *gbp_fwd_error_strings[] = {
32 #define _(sym,string) string,
34 #undef _
35 };
36 
37 typedef enum
38 {
39 #define _(sym,str) GBP_FWD_NEXT_##sym,
41 #undef _
44 
45 /**
46  * per-packet trace data
47  */
48 typedef struct gbp_fwd_trace_t_
49 {
50  /* per-pkt trace data */
54 
57 {
58  u32 n_left_from, *from, *to_next;
59  u32 next_index;
60 
61  next_index = 0;
62  n_left_from = frame->n_vectors;
64 
65  while (n_left_from > 0)
66  {
67  u32 n_left_to_next;
68 
69  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
70 
71  while (n_left_from > 0 && n_left_to_next > 0)
72  {
73  u32 bi0, sw_if_index0;
74  gbp_fwd_next_t next0;
75  vlib_buffer_t *b0;
76  sclass_t sclass0;
77 
78  next0 = GBP_FWD_NEXT_DROP;
79  bi0 = from[0];
80  to_next[0] = bi0;
81  from += 1;
82  to_next += 1;
83  n_left_from -= 1;
84  n_left_to_next -= 1;
85 
86  b0 = vlib_get_buffer (vm, bi0);
87 
88  /*
89  * lookup the uplink based on src EPG
90  */
91  sclass0 = vnet_buffer2 (b0)->gbp.sclass;
92 
93  sw_if_index0 = gbp_epg_itf_lookup_sclass (sclass0);
94 
95  if (~0 != sw_if_index0)
96  {
97  vnet_buffer (b0)->sw_if_index[VLIB_TX] = sw_if_index0;
98 
99  next0 = GBP_FWD_NEXT_OUTPUT;
100  }
101  /*
102  * else
103  * don't know the uplink interface for this EPG => drop
104  */
105 
106  if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED)))
107  {
108  gbp_fwd_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
109  t->sclass = sclass0;
110  t->sw_if_index = sw_if_index0;
111  }
112 
113  /* verify speculative enqueue, maybe switch current next frame */
114  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
115  to_next, n_left_to_next,
116  bi0, next0);
117  }
118 
119  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
120  }
121 
122  return frame->n_vectors;
123 }
124 
125 /* packet trace format function */
126 static u8 *
127 format_gbp_fwd_trace (u8 * s, va_list * args)
128 {
129  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
130  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
131  gbp_fwd_trace_t *t = va_arg (*args, gbp_fwd_trace_t *);
132 
133  s = format (s, "sclass:%d", t->sclass);
134 
135  return s;
136 }
137 
138 /* *INDENT-OFF* */
140  .name = "gbp-fwd",
141  .vector_size = sizeof (u32),
142  .format_trace = format_gbp_fwd_trace,
144 
145  .n_errors = ARRAY_LEN(gbp_fwd_error_strings),
146  .error_strings = gbp_fwd_error_strings,
147 
148  .n_next_nodes = GBP_FWD_N_NEXT,
149 
150  .next_nodes = {
151  [GBP_FWD_NEXT_DROP] = "error-drop",
152  [GBP_FWD_NEXT_OUTPUT] = "l2-output",
153  },
154 };
155 /* *INDENT-ON* */
156 
157 /*
158  * fd.io coding-style-patch-verification: ON
159  *
160  * Local Variables:
161  * eval: (c-set-style "gnu")
162  * End:
163  */
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:124
per-packet trace data
Definition: gbp_fwd_node.c:48
u16 sclass_t
Definition: gbp_types.h:25
#define CLIB_UNUSED(x)
Definition: clib.h:86
gbp_fwd_next_t
Definition: gbp_fwd_dpo.c:177
#define vnet_buffer2(b)
Definition: buffer.h:482
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
#define VLIB_NODE_FN(node)
Definition: node.h:202
unsigned char u8
Definition: types.h:56
gbp_fwd_next_t
Definition: gbp_fwd_node.c:37
static char * gbp_fwd_error_strings[]
Definition: gbp_fwd_node.c:31
unsigned int u32
Definition: types.h:88
vl_api_fib_path_type_t type
Definition: fib_types.api:123
#define PREDICT_FALSE(x)
Definition: clib.h:118
#define foreach_gbp_fwd
Definition: gbp_fwd_node.c:19
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:224
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:338
vlib_main_t * vm
Definition: in2out_ed.c:1599
vlib_node_registration_t gbp_fwd_node
(constructor) VLIB_REGISTER_NODE (gbp_fwd_node)
Definition: gbp_fwd_node.c:139
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
static u32 gbp_epg_itf_lookup_sclass(sclass_t sclass)
struct gbp_fwd_trace_t_ gbp_fwd_trace_t
per-packet trace data
static u8 * format_gbp_fwd_trace(u8 *s, va_list *args)
Definition: gbp_fwd_node.c:127
gbp_fwd_error_t
Definition: gbp_fwd_node.c:23
#define ARRAY_LEN(x)
Definition: clib.h:66
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:483
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1599
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:55
Definition: defs.h:47
VLIB buffer representation.
Definition: buffer.h:102
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
#define vnet_buffer(b)
Definition: buffer.h:417
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: in2out_ed.c:1600
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:85