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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #include <vnet/vnet.h>
18 #include <vppinfra/xxhash.h>
19 #include <vlib/threads.h>
20 #include <vnet/handoff.h>
21 #include <vnet/feature/feature.h>
25 uword *workers_bitmap;
27 } per_inteface_handoff_data_t;
31 u32 cached_next_index;
33 u32 first_worker_index;
35 per_inteface_handoff_data_t *if_data;
37 /* Worker handoff index */
38 u32 frame_queue_index;
40 u64 (*hash_fn) (ethernet_header_t *);
43 extern handoff_main_t handoff_main;
45 #ifndef CLIB_MARCH_VARIANT
46 handoff_main_t handoff_main;
47 #endif /* CLIB_MARCH_VARIANT */
52 u32 next_worker_index;
54 } worker_handoff_trace_t;
56 #define foreach_worker_handoff_error \
57 _(CONGESTION_DROP, "congestion drop")
61 #define _(sym,str) WORKER_HANDOFF_ERROR_##sym,
62 foreach_worker_handoff_error
64 WORKER_HANDOFF_N_ERROR,
65 } worker_handoff_error_t;
67 static char *worker_handoff_error_strings[] = {
68 #define _(sym,string) string,
69 foreach_worker_handoff_error
73 /* packet trace format function */
75 format_worker_handoff_trace (u8 * s, va_list * args)
77 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
78 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
79 worker_handoff_trace_t *t = va_arg (*args, worker_handoff_trace_t *);
82 format (s, "worker-handoff: sw_if_index %d, next_worker %d, buffer 0x%x",
83 t->sw_if_index, t->next_worker_index, t->buffer_index);
87 VLIB_NODE_FN (worker_handoff_node) (vlib_main_t * vm,
88 vlib_node_runtime_t * node,
91 handoff_main_t *hm = &handoff_main;
92 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
93 u32 n_enq, n_left_from, *from;
94 u16 thread_indices[VLIB_FRAME_SIZE], *ti;
96 from = vlib_frame_vector_args (frame);
97 n_left_from = frame->n_vectors;
98 vlib_get_buffers (vm, from, bufs, n_left_from);
103 while (n_left_from > 0)
108 per_inteface_handoff_data_t *ihd0;
112 sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
113 ASSERT (hm->if_data);
114 ihd0 = vec_elt_at_index (hm->if_data, sw_if_index0);
117 * Force unknown traffic onto worker 0,
118 * and into ethernet-input. $$$$ add more hashes.
121 /* Compute ingress LB hash */
122 hash_key = hm->hash_fn ((ethernet_header_t *)
123 vlib_buffer_get_current (b[0]));
124 hash = (u32) clib_xxhash (hash_key);
126 /* if input node did not specify next index, then packet
127 should go to ethernet-input */
129 if (PREDICT_TRUE (is_pow2 (vec_len (ihd0->workers))))
130 index0 = hash & (vec_len (ihd0->workers) - 1);
132 index0 = hash % vec_len (ihd0->workers);
134 ti[0] = hm->first_worker_index + ihd0->workers[index0];
136 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
137 && (b[0]->flags & VLIB_BUFFER_IS_TRACED)))
139 worker_handoff_trace_t *t =
140 vlib_add_trace (vm, node, b[0], sizeof (*t));
141 t->sw_if_index = sw_if_index0;
142 t->next_worker_index = ti[0];
143 t->buffer_index = vlib_get_buffer_index (vm, b[0]);
152 n_enq = vlib_buffer_enqueue_to_thread (vm, hm->frame_queue_index, from,
153 thread_indices, frame->n_vectors, 1);
155 if (n_enq < frame->n_vectors)
156 vlib_node_increment_counter (vm, node->node_index,
157 WORKER_HANDOFF_ERROR_CONGESTION_DROP,
158 frame->n_vectors - n_enq);
159 return frame->n_vectors;
163 VLIB_REGISTER_NODE (worker_handoff_node) = {
164 .name = "worker-handoff",
165 .vector_size = sizeof (u32),
166 .format_trace = format_worker_handoff_trace,
167 .type = VLIB_NODE_TYPE_INTERNAL,
168 .n_errors = ARRAY_LEN(worker_handoff_error_strings),
169 .error_strings = worker_handoff_error_strings,
179 #ifndef CLIB_MARCH_VARIANT
181 interface_handoff_enable_disable (vlib_main_t * vm, u32 sw_if_index,
182 uword * bitmap, int enable_disable)
184 handoff_main_t *hm = &handoff_main;
185 vnet_sw_interface_t *sw;
186 vnet_main_t *vnm = vnet_get_main ();
187 per_inteface_handoff_data_t *d;
190 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
191 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
193 sw = vnet_get_sw_interface (vnm, sw_if_index);
194 if (sw->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
195 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
197 if (clib_bitmap_last_set (bitmap) >= hm->num_workers)
198 return VNET_API_ERROR_INVALID_WORKER;
200 if (hm->frame_queue_index == ~0)
202 vlib_node_t *n = vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
203 hm->frame_queue_index = vlib_frame_queue_main_init (n->index, 0);
206 vec_validate (hm->if_data, sw_if_index);
207 d = vec_elt_at_index (hm->if_data, sw_if_index);
209 vec_free (d->workers);
210 vec_free (d->workers_bitmap);
214 d->workers_bitmap = bitmap;
216 clib_bitmap_foreach (i, bitmap,
218 vec_add1(d->workers, i);
223 vnet_feature_enable_disable ("device-input", "worker-handoff",
224 sw_if_index, enable_disable, 0, 0);
228 static clib_error_t *
229 set_interface_handoff_command_fn (vlib_main_t * vm,
230 unformat_input_t * input,
231 vlib_cli_command_t * cmd)
233 handoff_main_t *hm = &handoff_main;
234 u32 sw_if_index = ~0;
235 int enable_disable = 1;
241 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
243 if (unformat (input, "disable"))
245 else if (unformat (input, "workers %U", unformat_bitmap_list, &bitmap))
247 else if (unformat (input, "%U", unformat_vnet_sw_interface,
248 vnet_get_main (), &sw_if_index))
250 else if (unformat (input, "symmetrical"))
252 else if (unformat (input, "asymmetrical"))
258 if (sw_if_index == ~0)
259 return clib_error_return (0, "Please specify an interface...");
262 return clib_error_return (0, "Please specify list of workers...");
265 interface_handoff_enable_disable (vm, sw_if_index, bitmap,
273 case VNET_API_ERROR_INVALID_SW_IF_INDEX:
274 return clib_error_return (0, "Invalid interface");
277 case VNET_API_ERROR_INVALID_WORKER:
278 return clib_error_return (0, "Invalid worker(s)");
281 case VNET_API_ERROR_UNIMPLEMENTED:
282 return clib_error_return (0,
283 "Device driver doesn't support redirection");
287 return clib_error_return (0, "unknown return value %d", rv);
291 hm->hash_fn = eth_get_sym_key;
293 hm->hash_fn = eth_get_key;
299 VLIB_CLI_COMMAND (set_interface_handoff_command, static) = {
300 .path = "set interface handoff",
302 "set interface handoff <interface-name> workers <workers-list> [symmetrical|asymmetrical]",
303 .function = set_interface_handoff_command_fn,
308 handoff_init (vlib_main_t * vm)
310 handoff_main_t *hm = &handoff_main;
311 vlib_thread_main_t *tm = vlib_get_thread_main ();
315 if ((error = vlib_call_init_function (vm, threads_init)))
318 vlib_thread_registration_t *tr;
319 /* Only the standard vnet worker threads are supported */
320 p = hash_get_mem (tm->thread_registrations_by_name, "workers");
323 tr = (vlib_thread_registration_t *) p[0];
326 hm->num_workers = tr->count;
327 hm->first_worker_index = tr->first_index;
331 hm->hash_fn = eth_get_key;
332 hm->frame_queue_index = ~0;
337 VLIB_INIT_FUNCTION (handoff_init);
339 #endif /* CLIB_MARCH_VARIANT */
341 * fd.io coding-style-patch-verification: ON
344 * eval: (c-set-style "gnu")