FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
node.c
Go to the documentation of this file.
1 /*
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 /*
16  * snap_node.c: snap packet processing
17  *
18  * Copyright (c) 2010 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 #include <vlib/vlib.h>
41 #include <vnet/pg/pg.h>
42 #include <vnet/llc/llc.h>
43 #include <vnet/snap/snap.h>
44 
45 typedef enum
46 {
52 
53 typedef struct
54 {
55  u8 packet_data[32];
57 
58 static u8 *
59 format_snap_input_trace (u8 * s, va_list * va)
60 {
61  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
62  CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
63  snap_input_trace_t *t = va_arg (*va, snap_input_trace_t *);
64 
65  s = format (s, "%U", format_snap_header, t->packet_data);
66 
67  return s;
68 }
69 
70 static uword
72  vlib_node_runtime_t * node, vlib_frame_t * from_frame)
73 {
74  snap_main_t *sm = &snap_main;
75  u32 n_left_from, next_index, *from, *to_next;
76 
77  from = vlib_frame_vector_args (from_frame);
78  n_left_from = from_frame->n_vectors;
79 
80  if (node->flags & VLIB_NODE_FLAG_TRACE)
82  from,
83  n_left_from,
84  sizeof (from[0]),
85  sizeof (snap_input_trace_t));
86 
87  next_index = node->cached_next_index;
88 
89  while (n_left_from > 0)
90  {
91  u32 n_left_to_next;
92 
93  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
94 
95  while (n_left_from >= 4 && n_left_to_next >= 2)
96  {
97  u32 bi0, bi1;
98  vlib_buffer_t *b0, *b1;
99  snap_header_t *h0, *h1;
100  snap_protocol_info_t *pi0, *pi1;
101  u8 next0, next1, is_ethernet0, is_ethernet1, len0, len1,
102  enqueue_code;
103  u32 oui0, oui1;
104 
105  /* Prefetch next iteration. */
106  {
107  vlib_buffer_t *b2, *b3;
108 
109  b2 = vlib_get_buffer (vm, from[2]);
110  b3 = vlib_get_buffer (vm, from[3]);
111 
112  vlib_prefetch_buffer_header (b2, LOAD);
113  vlib_prefetch_buffer_header (b3, LOAD);
114 
115  CLIB_PREFETCH (b2->data, sizeof (h0[0]), LOAD);
116  CLIB_PREFETCH (b3->data, sizeof (h1[0]), LOAD);
117  }
118 
119  bi0 = from[0];
120  bi1 = from[1];
121  to_next[0] = bi0;
122  to_next[1] = bi1;
123  from += 2;
124  to_next += 2;
125  n_left_to_next -= 2;
126  n_left_from -= 2;
127 
128  b0 = vlib_get_buffer (vm, bi0);
129  b1 = vlib_get_buffer (vm, bi1);
130 
131  h0 = (void *) (b0->data + b0->current_data);
132  h1 = (void *) (b1->data + b1->current_data);
133 
134  oui0 = snap_header_get_oui (h0);
135  oui1 = snap_header_get_oui (h1);
136 
137  is_ethernet0 = oui0 == IEEE_OUI_ethernet;
138  is_ethernet1 = oui1 == IEEE_OUI_ethernet;
139 
140  len0 = sizeof (h0[0]) - (is_ethernet0 ? sizeof (h0->protocol) : 0);
141  len1 = sizeof (h1[0]) - (is_ethernet1 ? sizeof (h1->protocol) : 0);
142 
143  b0->current_data += len0;
144  b1->current_data += len1;
145 
146  b0->current_length -= len0;
147  b1->current_length -= len1;
148 
149  pi0 = snap_get_protocol_info (sm, h0);
150  pi1 = snap_get_protocol_info (sm, h1);
151 
152  next0 = pi0 ? pi0->next_index : SNAP_INPUT_NEXT_DROP;
153  next1 = pi1 ? pi1->next_index : SNAP_INPUT_NEXT_DROP;
154 
155  next0 = is_ethernet0 ? SNAP_INPUT_NEXT_ETHERNET_TYPE : next0;
156  next1 = is_ethernet1 ? SNAP_INPUT_NEXT_ETHERNET_TYPE : next1;
157 
158  /* In case of error. */
159  b0->error = node->errors[SNAP_ERROR_UNKNOWN_PROTOCOL];
160  b1->error = node->errors[SNAP_ERROR_UNKNOWN_PROTOCOL];
161 
162  enqueue_code = (next0 != next_index) + 2 * (next1 != next_index);
163 
164  if (PREDICT_FALSE (enqueue_code != 0))
165  {
166  switch (enqueue_code)
167  {
168  case 1:
169  /* A B A */
170  to_next[-2] = bi1;
171  to_next -= 1;
172  n_left_to_next += 1;
173  vlib_set_next_frame_buffer (vm, node, next0, bi0);
174  break;
175 
176  case 2:
177  /* A A B */
178  to_next -= 1;
179  n_left_to_next += 1;
180  vlib_set_next_frame_buffer (vm, node, next1, bi1);
181  break;
182 
183  case 3:
184  /* A B B or A B C */
185  to_next -= 2;
186  n_left_to_next += 2;
187  vlib_set_next_frame_buffer (vm, node, next0, bi0);
188  vlib_set_next_frame_buffer (vm, node, next1, bi1);
189  if (next0 == next1)
190  {
191  vlib_put_next_frame (vm, node, next_index,
192  n_left_to_next);
193  next_index = next1;
194  vlib_get_next_frame (vm, node, next_index, to_next,
195  n_left_to_next);
196  }
197  }
198  }
199  }
200 
201  while (n_left_from > 0 && n_left_to_next > 0)
202  {
203  u32 bi0;
204  vlib_buffer_t *b0;
205  snap_header_t *h0;
207  u8 next0, is_ethernet0, len0;
208  u32 oui0;
209 
210  bi0 = from[0];
211  to_next[0] = bi0;
212  from += 1;
213  to_next += 1;
214  n_left_from -= 1;
215  n_left_to_next -= 1;
216 
217  b0 = vlib_get_buffer (vm, bi0);
218 
219  h0 = (void *) (b0->data + b0->current_data);
220 
221  oui0 = snap_header_get_oui (h0);
222 
223  is_ethernet0 = oui0 == IEEE_OUI_ethernet;
224 
225  len0 = sizeof (h0[0]) - (is_ethernet0 ? sizeof (h0->protocol) : 0);
226 
227  b0->current_data += len0;
228 
229  b0->current_length -= len0;
230 
231  pi0 = snap_get_protocol_info (sm, h0);
232 
233  next0 = pi0 ? pi0->next_index : SNAP_INPUT_NEXT_DROP;
234 
235  next0 = is_ethernet0 ? SNAP_INPUT_NEXT_ETHERNET_TYPE : next0;
236 
237  /* In case of error. */
238  b0->error = node->errors[SNAP_ERROR_UNKNOWN_PROTOCOL];
239 
240  /* Sent packet to wrong next? */
241  if (PREDICT_FALSE (next0 != next_index))
242  {
243  /* Return old frame; remove incorrectly enqueued packet. */
244  vlib_put_next_frame (vm, node, next_index, n_left_to_next + 1);
245 
246  /* Send to correct next. */
247  next_index = next0;
248  vlib_get_next_frame (vm, node, next_index,
249  to_next, n_left_to_next);
250 
251  to_next[0] = bi0;
252  to_next += 1;
253  n_left_to_next -= 1;
254  }
255  }
256 
257  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
258  }
259 
260  return from_frame->n_vectors;
261 }
262 
263 static char *snap_error_strings[] = {
264 #define _(f,s) s,
266 #undef _
267 };
268 
269 /* *INDENT-OFF* */
271  .function = snap_input,
272  .name = "snap-input",
273  /* Takes a vector of packets. */
274  .vector_size = sizeof (u32),
275 
276  .n_errors = SNAP_N_ERROR,
277  .error_strings = snap_error_strings,
278 
279  .n_next_nodes = SNAP_INPUT_N_NEXT,
280  .next_nodes = {
281  [SNAP_INPUT_NEXT_DROP] = "error-drop",
282  [SNAP_INPUT_NEXT_PUNT] = "error-punt",
283  [SNAP_INPUT_NEXT_ETHERNET_TYPE] = "ethernet-input-type",
284  },
285 
286  .format_buffer = format_snap_header_with_length,
287  .format_trace = format_snap_input_trace,
288  .unformat_buffer = unformat_snap_header,
289 };
290 /* *INDENT-ON* */
291 
292 static clib_error_t *
294 {
295  {
297  if (error)
298  clib_error_report (error);
299  }
300 
301  snap_setup_node (vm, snap_input_node.index);
302 
303  llc_register_input_protocol (vm, LLC_PROTOCOL_snap, snap_input_node.index);
304 
305  return 0;
306 }
307 
309 
310 void
312  char *name,
313  u32 ieee_oui, u16 protocol, u32 node_index)
314 {
315  snap_main_t *sm = &snap_main;
319 
320  {
322  if (error)
323  clib_error_report (error);
324  }
325 
326  h.protocol = clib_host_to_net_u16 (protocol);
327  h.oui[0] = (ieee_oui >> 16) & 0xff;
328  h.oui[1] = (ieee_oui >> 8) & 0xff;
329  h.oui[2] = (ieee_oui >> 0) & 0xff;
330  pi = snap_get_protocol_info (sm, &h);
331  if (pi)
332  return;
333 
334  vec_add2 (sm->protocols, pi, 1);
335 
336  pi->name = format (0, "%s", name);
337  pi->node_index = node_index;
338  pi->next_index = vlib_node_add_next (vm, snap_input_node.index, node_index);
339 
340  key.oui = ieee_oui;
341  key.protocol = clib_host_to_net_u16 (protocol);
342 
343  mhash_set (&sm->protocol_hash, &key, pi - sm->protocols, /* old_value */ 0);
344  hash_set_mem (sm->protocol_info_by_name, name, pi - sm->protocols);
345 }
346 
347 /*
348  * fd.io coding-style-patch-verification: ON
349  *
350  * Local Variables:
351  * eval: (c-set-style "gnu")
352  * End:
353  */
static void snap_setup_node(vlib_main_t *vm, u32 node_index)
Definition: snap.h:188
#define CLIB_UNUSED(x)
Definition: clib.h:79
static void vlib_set_next_frame_buffer(vlib_main_t *vm, vlib_node_runtime_t *node, u32 next_index, u32 buffer_index)
Definition: node_funcs.h:397
static u8 * format_snap_input_trace(u8 *s, va_list *va)
Definition: node.c:59
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:559
#define foreach_snap_error
Definition: snap.h:123
#define hash_set_mem(h, key, value)
Definition: hash.h:274
void llc_register_input_protocol(vlib_main_t *vm, llc_protocol_t protocol, u32 node_index)
Definition: node.c:302
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:415
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1110
format_function_t format_snap_header
Definition: snap.h:177
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:104
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
static clib_error_t * snap_input_init(vlib_main_t *vm)
Definition: node.c:293
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:191
static char * snap_error_strings[]
Definition: node.c:263
#define vlib_call_init_function(vm, x)
Definition: init.h:162
u8 packet_data[32]
Definition: node.c:55
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:108
format_function_t format_snap_header_with_length
Definition: snap.h:178
#define PREDICT_FALSE(x)
Definition: clib.h:105
static uword mhash_set(mhash_t *h, void *key, uword new_value, uword *old_value)
Definition: mhash.h:117
#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:364
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:130
mhash_t protocol_hash
Definition: snap.h:143
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:143
u16 n_vectors
Definition: node.h:344
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:74
vlib_main_t * vm
Definition: buffer.c:294
static snap_protocol_info_t * snap_get_protocol_info(snap_main_t *sm, snap_header_t *h)
Definition: snap.h:156
uword * protocol_info_by_name
Definition: snap.h:146
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:454
static u32 snap_header_get_oui(snap_header_t *h)
Definition: snap.h:150
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:456
unsigned int u32
Definition: types.h:88
vlib_node_registration_t snap_input_node
(constructor) VLIB_REGISTER_NODE (snap_input_node)
Definition: node.c:270
snap_main_t snap_main
Definition: snap.c:45
#define clib_error_report(e)
Definition: error.h:113
unformat_function_t unformat_snap_header
Definition: snap.h:184
u64 uword
Definition: types.h:112
void vlib_trace_frame_buffers_only(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, uword n_buffers, uword next_buffer_stride, uword n_buffer_data_bytes_in_trace)
Definition: trace.c:45
unsigned short u16
Definition: types.h:57
unsigned char u8
Definition: types.h:56
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:267
static uword snap_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: node.c:71
u8 data[0]
Packet data.
Definition: buffer.h:179
u16 flags
Copy of main node flags.
Definition: node.h:450
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:259
snap_input_next_t
Definition: node.c:45
snap_protocol_info_t * protocols
Definition: snap.h:140
static clib_error_t * snap_init(vlib_main_t *vm)
Definition: snap.c:179
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:57
void snap_register_input_protocol(vlib_main_t *vm, char *name, u32 ieee_oui, u16 protocol, u32 node_index)
Definition: node.c:311