blob: 9f8ddc16db51f22aa45d5f70a4e729223f54edf8 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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#include <vlib/vlib.h>
16#include <vnet/vnet.h>
17#include <vnet/pg/pg.h>
18#include <vppinfra/error.h>
19#include <sample/sample.h>
20
21typedef struct {
22 u32 next_index;
23 u32 sw_if_index;
24} sample_trace_t;
25
26/* packet trace format function */
27static u8 * format_sample_trace (u8 * s, va_list * args)
28{
29 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
30 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
31 sample_trace_t * t = va_arg (*args, sample_trace_t *);
32
33 s = format (s, "SAMPLE: sw_if_index %d, next index %d",
34 t->sw_if_index, t->next_index);
35 return s;
36}
37
38vlib_node_registration_t sample_node;
39
40#define foreach_sample_error \
41_(SWAPPED, "Mac swap packets processed")
42
43typedef enum {
44#define _(sym,str) SAMPLE_ERROR_##sym,
45 foreach_sample_error
46#undef _
47 SAMPLE_N_ERROR,
48} sample_error_t;
49
50static char * sample_error_strings[] = {
51#define _(sym,string) string,
52 foreach_sample_error
53#undef _
54};
55
56typedef enum {
57 SAMPLE_NEXT_INTERFACE_OUTPUT,
58 SAMPLE_N_NEXT,
59} sample_next_t;
60
61#define foreach_mac_address_offset \
62_(0) \
63_(1) \
64_(2) \
65_(3) \
66_(4) \
67_(5)
68
69static uword
70sample_node_fn (vlib_main_t * vm,
71 vlib_node_runtime_t * node,
72 vlib_frame_t * frame)
73{
74 u32 n_left_from, * from, * to_next;
75 sample_next_t next_index;
76 u32 pkts_swapped = 0;
77
78 from = vlib_frame_vector_args (frame);
79 n_left_from = frame->n_vectors;
80 next_index = node->cached_next_index;
81
82 while (n_left_from > 0)
83 {
84 u32 n_left_to_next;
85
86 vlib_get_next_frame (vm, node, next_index,
87 to_next, n_left_to_next);
88
89 while (n_left_from >= 4 && n_left_to_next >= 2)
90 {
91 u32 next0 = SAMPLE_NEXT_INTERFACE_OUTPUT;
92 u32 next1 = SAMPLE_NEXT_INTERFACE_OUTPUT;
93 u32 sw_if_index0, sw_if_index1;
94 u8 tmp0[6], tmp1[6];
95 ethernet_header_t *en0, *en1;
96 u32 bi0, bi1;
97 vlib_buffer_t * b0, * b1;
98
99 /* Prefetch next iteration. */
100 {
101 vlib_buffer_t * p2, * p3;
102
103 p2 = vlib_get_buffer (vm, from[2]);
104 p3 = vlib_get_buffer (vm, from[3]);
105
106 vlib_prefetch_buffer_header (p2, LOAD);
107 vlib_prefetch_buffer_header (p3, LOAD);
108
109 CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, STORE);
110 CLIB_PREFETCH (p3->data, CLIB_CACHE_LINE_BYTES, STORE);
111 }
112
113 /* speculatively enqueue b0 and b1 to the current next frame */
114 to_next[0] = bi0 = from[0];
115 to_next[1] = bi1 = from[1];
116 from += 2;
117 to_next += 2;
118 n_left_from -= 2;
119 n_left_to_next -= 2;
120
121 b0 = vlib_get_buffer (vm, bi0);
122 b1 = vlib_get_buffer (vm, bi1);
123
124 ASSERT (b0->current_data == 0);
125 ASSERT (b1->current_data == 0);
126
127 en0 = vlib_buffer_get_current (b0);
128 en1 = vlib_buffer_get_current (b1);
129
130 /* This is not the fastest way to swap src + dst mac addresses */
131#define _(a) tmp0[a] = en0->src_address[a];
132 foreach_mac_address_offset;
133#undef _
134#define _(a) en0->src_address[a] = en0->dst_address[a];
135 foreach_mac_address_offset;
136#undef _
137#define _(a) en0->dst_address[a] = tmp0[a];
138 foreach_mac_address_offset;
139#undef _
140
141#define _(a) tmp1[a] = en1->src_address[a];
142 foreach_mac_address_offset;
143#undef _
144#define _(a) en1->src_address[a] = en1->dst_address[a];
145 foreach_mac_address_offset;
146#undef _
147#define _(a) en1->dst_address[a] = tmp1[a];
148 foreach_mac_address_offset;
149#undef _
150
151
152
153 sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX];
154 sw_if_index1 = vnet_buffer(b1)->sw_if_index[VLIB_RX];
155
156 /* Send pkt back out the RX interface */
157 vnet_buffer(b0)->sw_if_index[VLIB_TX] = sw_if_index0;
158 vnet_buffer(b1)->sw_if_index[VLIB_TX] = sw_if_index1;
159
160 pkts_swapped += 2;
161
162 if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE)))
163 {
164 if (b0->flags & VLIB_BUFFER_IS_TRACED)
165 {
166 sample_trace_t *t =
167 vlib_add_trace (vm, node, b0, sizeof (*t));
168 t->sw_if_index = sw_if_index0;
169 t->next_index = next0;
170 }
171 if (b1->flags & VLIB_BUFFER_IS_TRACED)
172 {
173 sample_trace_t *t =
174 vlib_add_trace (vm, node, b1, sizeof (*t));
175 t->sw_if_index = sw_if_index1;
176 t->next_index = next1;
177 }
178 }
179
180 /* verify speculative enqueues, maybe switch current next frame */
181 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
182 to_next, n_left_to_next,
183 bi0, bi1, next0, next1);
184 }
185
186 while (n_left_from > 0 && n_left_to_next > 0)
187 {
188 u32 bi0;
189 vlib_buffer_t * b0;
190 u32 next0 = SAMPLE_NEXT_INTERFACE_OUTPUT;
191 u32 sw_if_index0;
192 u8 tmp0[6];
193 ethernet_header_t *en0;
194
195 /* speculatively enqueue b0 to the current next frame */
196 bi0 = from[0];
197 to_next[0] = bi0;
198 from += 1;
199 to_next += 1;
200 n_left_from -= 1;
201 n_left_to_next -= 1;
202
203 b0 = vlib_get_buffer (vm, bi0);
204 /*
205 * Direct from the driver, we should be at offset 0
206 * aka at &b0->data[0]
207 */
208 ASSERT (b0->current_data == 0);
209
210 en0 = vlib_buffer_get_current (b0);
211
212 /* This is not the fastest way to swap src + dst mac addresses */
213#define _(a) tmp0[a] = en0->src_address[a];
214 foreach_mac_address_offset;
215#undef _
216#define _(a) en0->src_address[a] = en0->dst_address[a];
217 foreach_mac_address_offset;
218#undef _
219#define _(a) en0->dst_address[a] = tmp0[a];
220 foreach_mac_address_offset;
221#undef _
222
223 sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX];
224
225 /* Send pkt back out the RX interface */
226 vnet_buffer(b0)->sw_if_index[VLIB_TX] = sw_if_index0;
227
228 if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE)
229 && (b0->flags & VLIB_BUFFER_IS_TRACED))) {
230 sample_trace_t *t =
231 vlib_add_trace (vm, node, b0, sizeof (*t));
232 t->sw_if_index = sw_if_index0;
233 t->next_index = next0;
234 }
235
236 pkts_swapped += 1;
237
238 /* verify speculative enqueue, maybe switch current next frame */
239 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
240 to_next, n_left_to_next,
241 bi0, next0);
242 }
243
244 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
245 }
246
247 vlib_node_increment_counter (vm, sample_node.index,
248 SAMPLE_ERROR_SWAPPED, pkts_swapped);
249 return frame->n_vectors;
250}
251
252VLIB_REGISTER_NODE (sample_node) = {
253 .function = sample_node_fn,
254 .name = "sample",
255 .vector_size = sizeof (u32),
256 .format_trace = format_sample_trace,
257 .type = VLIB_NODE_TYPE_INTERNAL,
258
259 .n_errors = ARRAY_LEN(sample_error_strings),
260 .error_strings = sample_error_strings,
261
262 .n_next_nodes = SAMPLE_N_NEXT,
263
264 /* edit / add dispositions here */
265 .next_nodes = {
266 [SAMPLE_NEXT_INTERFACE_OUTPUT] = "interface-output",
267 },
268};