blob: ee745c35326fb400d9cac80f7d75232571f72097 [file] [log] [blame]
Dave Barachb852bfa2016-01-04 15:27:42 -05001;;; plugin-node-skel.el - vpp engine plug-in "node.c" skeleton
2;;;
3;;; Copyright (c) 2016 Cisco and/or its affiliates.
4;;; Licensed under the Apache License, Version 2.0 (the "License");
5;;; you may not use this file except in compliance with the License.
6;;; You may obtain a copy of the License at:
7;;;
8;;; http://www.apache.org/licenses/LICENSE-2.0
9;;;
10;;; Unless required by applicable law or agreed to in writing, software
11;;; distributed under the License is distributed on an "AS IS" BASIS,
12;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13;;; See the License for the specific language governing permissions and
14;;; limitations under the License.
15
16(require 'skeleton)
17
Keith Burns (alagalah)ca46d8c2016-03-18 07:22:15 -070018(define-skeleton skel-plugin-node
Dave Barachb852bfa2016-01-04 15:27:42 -050019"Insert a plug-in 'node.c' skeleton "
20nil
21'(if (not (boundp 'plugin-name))
22 (setq plugin-name (read-string "Plugin name: ")))
23'(setq PLUGIN-NAME (upcase plugin-name))
24"
25/*
26 * node.c - skeleton vpp engine plug-in dual-loop node skeleton
27 *
28 * Copyright (c) <current-year> <your-organization>
29 * Licensed under the Apache License, Version 2.0 (the \"License\");
30 * you may not use this file except in compliance with the License.
31 * You may obtain a copy of the License at:
32 *
33 * http://www.apache.org/licenses/LICENSE-2.0
34 *
35 * Unless required by applicable law or agreed to in writing, software
36 * distributed under the License is distributed on an \"AS IS\" BASIS,
37 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
38 * See the License for the specific language governing permissions and
39 * limitations under the License.
40 */
41#include <vlib/vlib.h>
42#include <vnet/vnet.h>
43#include <vnet/pg/pg.h>
44#include <vppinfra/error.h>
45#include <" plugin-name "/" plugin-name ".h>
46
47typedef struct {
48 u32 next_index;
49 u32 sw_if_index;
Dave Barachb7e2f3d2016-11-08 16:47:34 -050050 u8 new_src_mac[6];
51 u8 new_dst_mac[6];
Dave Barachb852bfa2016-01-04 15:27:42 -050052} " plugin-name "_trace_t;
53
Dave Barachb7e2f3d2016-11-08 16:47:34 -050054static u8 *
55format_mac_address (u8 * s, va_list * args)
56{
57 u8 *a = va_arg (*args, u8 *);
58 return format (s, \"%02x:%02x:%02x:%02x:%02x:%02x\",
59 a[0], a[1], a[2], a[3], a[4], a[5]);
60}
61
Dave Barachb852bfa2016-01-04 15:27:42 -050062/* packet trace format function */
63static u8 * format_" plugin-name "_trace (u8 * s, va_list * args)
64{
65 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
66 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
67 " plugin-name "_trace_t * t = va_arg (*args, " plugin-name "_trace_t *);
68
Dave Barachb7e2f3d2016-11-08 16:47:34 -050069 s = format (s, \"" PLUGIN-NAME ": sw_if_index %d, next index %d\\n\",
Dave Barachb852bfa2016-01-04 15:27:42 -050070 t->sw_if_index, t->next_index);
Dave Barachb7e2f3d2016-11-08 16:47:34 -050071 s = format (s, \" new src %U -> new dst %U\",
72 format_mac_address, t->new_src_mac,
73 format_mac_address, t->new_dst_mac);
Dave Barachb852bfa2016-01-04 15:27:42 -050074 return s;
75}
76
77vlib_node_registration_t " plugin-name "_node;
78
79#define foreach_" plugin-name "_error \\
80_(SWAPPED, \"Mac swap packets processed\")
81
82typedef enum {
83#define _(sym,str) " PLUGIN-NAME "_ERROR_##sym,
84 foreach_" plugin-name "_error
85#undef _
86 " PLUGIN-NAME "_N_ERROR,
87} " plugin-name "_error_t;
88
89static char * " plugin-name "_error_strings[] = {
90#define _(sym,string) string,
91 foreach_" plugin-name "_error
92#undef _
93};
94
95typedef enum {
96 " PLUGIN-NAME "_NEXT_INTERFACE_OUTPUT,
97 " PLUGIN-NAME "_N_NEXT,
98} " plugin-name "_next_t;
99
100#define foreach_mac_address_offset \\
101_(0) \\
102_(1) \\
103_(2) \\
104_(3) \\
105_(4) \\
106_(5)
107
108static uword
109" plugin-name "_node_fn (vlib_main_t * vm,
110 vlib_node_runtime_t * node,
111 vlib_frame_t * frame)
112{
113 u32 n_left_from, * from, * to_next;
114 " plugin-name "_next_t next_index;
115 u32 pkts_swapped = 0;
116
117 from = vlib_frame_vector_args (frame);
118 n_left_from = frame->n_vectors;
119 next_index = node->cached_next_index;
120
121 while (n_left_from > 0)
122 {
123 u32 n_left_to_next;
124
125 vlib_get_next_frame (vm, node, next_index,
126 to_next, n_left_to_next);
127
128 while (n_left_from >= 4 && n_left_to_next >= 2)
129 {
130 u32 next0 = " PLUGIN-NAME "_NEXT_INTERFACE_OUTPUT;
131 u32 next1 = " PLUGIN-NAME "_NEXT_INTERFACE_OUTPUT;
132 u32 sw_if_index0, sw_if_index1;
133 u8 tmp0[6], tmp1[6];
134 ethernet_header_t *en0, *en1;
135 u32 bi0, bi1;
136 vlib_buffer_t * b0, * b1;
137
138 /* Prefetch next iteration. */
139 {
140 vlib_buffer_t * p2, * p3;
141
142 p2 = vlib_get_buffer (vm, from[2]);
143 p3 = vlib_get_buffer (vm, from[3]);
144
145 vlib_prefetch_buffer_header (p2, LOAD);
146 vlib_prefetch_buffer_header (p3, LOAD);
147
148 CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, STORE);
149 CLIB_PREFETCH (p3->data, CLIB_CACHE_LINE_BYTES, STORE);
150 }
151
152 /* speculatively enqueue b0 and b1 to the current next frame */
153 to_next[0] = bi0 = from[0];
154 to_next[1] = bi1 = from[1];
155 from += 2;
156 to_next += 2;
157 n_left_from -= 2;
158 n_left_to_next -= 2;
159
160 b0 = vlib_get_buffer (vm, bi0);
161 b1 = vlib_get_buffer (vm, bi1);
162
163 ASSERT (b0->current_data == 0);
164 ASSERT (b1->current_data == 0);
165
166 en0 = vlib_buffer_get_current (b0);
167 en1 = vlib_buffer_get_current (b1);
168
169 /* This is not the fastest way to swap src + dst mac addresses */
170#define _(a) tmp0[a] = en0->src_address[a];
171 foreach_mac_address_offset;
172#undef _
173#define _(a) en0->src_address[a] = en0->dst_address[a];
174 foreach_mac_address_offset;
175#undef _
176#define _(a) en0->dst_address[a] = tmp0[a];
177 foreach_mac_address_offset;
178#undef _
179
180#define _(a) tmp1[a] = en1->src_address[a];
181 foreach_mac_address_offset;
182#undef _
183#define _(a) en1->src_address[a] = en1->dst_address[a];
184 foreach_mac_address_offset;
185#undef _
186#define _(a) en1->dst_address[a] = tmp1[a];
187 foreach_mac_address_offset;
188#undef _
189
190
191
192 sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX];
193 sw_if_index1 = vnet_buffer(b1)->sw_if_index[VLIB_RX];
194
195 /* Send pkt back out the RX interface */
196 vnet_buffer(b0)->sw_if_index[VLIB_TX] = sw_if_index0;
197 vnet_buffer(b1)->sw_if_index[VLIB_TX] = sw_if_index1;
198
199 pkts_swapped += 2;
200
201 if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE)))
202 {
203 if (b0->flags & VLIB_BUFFER_IS_TRACED)
204 {
205 " plugin-name "_trace_t *t =
206 vlib_add_trace (vm, node, b0, sizeof (*t));
207 t->sw_if_index = sw_if_index0;
208 t->next_index = next0;
Dave Barachb7e2f3d2016-11-08 16:47:34 -0500209 clib_memcpy (t->new_src_mac, en0->src_address,
210 sizeof (t->new_src_mac));
211 clib_memcpy (t->new_dst_mac, en0->dst_address,
212 sizeof (t->new_dst_mac));
Dave Barachb852bfa2016-01-04 15:27:42 -0500213 }
214 if (b1->flags & VLIB_BUFFER_IS_TRACED)
215 {
216 " plugin-name "_trace_t *t =
217 vlib_add_trace (vm, node, b1, sizeof (*t));
218 t->sw_if_index = sw_if_index1;
219 t->next_index = next1;
Dave Barachb7e2f3d2016-11-08 16:47:34 -0500220 clib_memcpy (t->new_src_mac, en1->src_address,
221 sizeof (t->new_src_mac));
222 clib_memcpy (t->new_dst_mac, en1->dst_address,
223 sizeof (t->new_dst_mac));
Dave Barachb852bfa2016-01-04 15:27:42 -0500224 }
225 }
226
227 /* verify speculative enqueues, maybe switch current next frame */
228 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
229 to_next, n_left_to_next,
230 bi0, bi1, next0, next1);
231 }
232
233 while (n_left_from > 0 && n_left_to_next > 0)
234 {
235 u32 bi0;
236 vlib_buffer_t * b0;
237 u32 next0 = " PLUGIN-NAME "_NEXT_INTERFACE_OUTPUT;
238 u32 sw_if_index0;
239 u8 tmp0[6];
240 ethernet_header_t *en0;
241
242 /* speculatively enqueue b0 to the current next frame */
243 bi0 = from[0];
244 to_next[0] = bi0;
245 from += 1;
246 to_next += 1;
247 n_left_from -= 1;
248 n_left_to_next -= 1;
249
250 b0 = vlib_get_buffer (vm, bi0);
251 /*
252 * Direct from the driver, we should be at offset 0
253 * aka at &b0->data[0]
254 */
255 ASSERT (b0->current_data == 0);
256
257 en0 = vlib_buffer_get_current (b0);
258
259 /* This is not the fastest way to swap src + dst mac addresses */
260#define _(a) tmp0[a] = en0->src_address[a];
261 foreach_mac_address_offset;
262#undef _
263#define _(a) en0->src_address[a] = en0->dst_address[a];
264 foreach_mac_address_offset;
265#undef _
266#define _(a) en0->dst_address[a] = tmp0[a];
267 foreach_mac_address_offset;
268#undef _
269
270 sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX];
271
272 /* Send pkt back out the RX interface */
273 vnet_buffer(b0)->sw_if_index[VLIB_TX] = sw_if_index0;
274
275 if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE)
276 && (b0->flags & VLIB_BUFFER_IS_TRACED))) {
277 " plugin-name "_trace_t *t =
278 vlib_add_trace (vm, node, b0, sizeof (*t));
279 t->sw_if_index = sw_if_index0;
280 t->next_index = next0;
Dave Barachb7e2f3d2016-11-08 16:47:34 -0500281 clib_memcpy (t->new_src_mac, en0->src_address,
282 sizeof (t->new_src_mac));
283 clib_memcpy (t->new_dst_mac, en0->dst_address,
284 sizeof (t->new_dst_mac));
Dave Barachb852bfa2016-01-04 15:27:42 -0500285 }
286
287 pkts_swapped += 1;
288
289 /* verify speculative enqueue, maybe switch current next frame */
290 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
291 to_next, n_left_to_next,
292 bi0, next0);
293 }
294
295 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
296 }
297
298 vlib_node_increment_counter (vm, " plugin-name "_node.index,
299 " PLUGIN-NAME "_ERROR_SWAPPED, pkts_swapped);
300 return frame->n_vectors;
301}
302
303VLIB_REGISTER_NODE (" plugin-name "_node) = {
304 .function = " plugin-name "_node_fn,
305 .name = \"" plugin-name "\",
306 .vector_size = sizeof (u32),
307 .format_trace = format_" plugin-name "_trace,
308 .type = VLIB_NODE_TYPE_INTERNAL,
309
310 .n_errors = ARRAY_LEN(" plugin-name "_error_strings),
311 .error_strings = " plugin-name "_error_strings,
312
313 .n_next_nodes = " PLUGIN-NAME "_N_NEXT,
314
315 /* edit / add dispositions here */
316 .next_nodes = {
317 [" PLUGIN-NAME "_NEXT_INTERFACE_OUTPUT] = \"interface-output\",
318 },
319};
320")