58c72077f24969ed579aba30325f4f91784bcc53
[vpp.git] / src / vnet / devices / devices.c
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 #include <vnet/vnet.h>
17 #include <vnet/devices/devices.h>
18 #include <vnet/feature/feature.h>
19 #include <vnet/ip/ip.h>
20 #include <vnet/ethernet/ethernet.h>
21
22 vnet_device_main_t vnet_device_main;
23
24 static uword
25 device_input_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
26                  vlib_frame_t * frame)
27 {
28   return 0;
29 }
30
31 /* *INDENT-OFF* */
32 VLIB_REGISTER_NODE (device_input_node) = {
33   .function = device_input_fn,
34   .name = "device-input",
35   .runtime_data_bytes = sizeof (vnet_device_input_runtime_t),
36   .type = VLIB_NODE_TYPE_INPUT,
37   .state = VLIB_NODE_STATE_DISABLED,
38   .n_next_nodes = VNET_DEVICE_INPUT_N_NEXT_NODES,
39   .next_nodes = VNET_DEVICE_INPUT_NEXT_NODES,
40 };
41
42 /* Table defines how much we need to advance current data pointer
43    in the buffer if we shortcut to l3 nodes */
44
45 const u32 __attribute__((aligned (CLIB_CACHE_LINE_BYTES)))
46 device_input_next_node_advance[((VNET_DEVICE_INPUT_N_NEXT_NODES /
47                                 CLIB_CACHE_LINE_BYTES) +1) * CLIB_CACHE_LINE_BYTES] =
48 {
49       [VNET_DEVICE_INPUT_NEXT_IP4_INPUT] = sizeof (ethernet_header_t),
50       [VNET_DEVICE_INPUT_NEXT_IP4_NCS_INPUT] = sizeof (ethernet_header_t),
51       [VNET_DEVICE_INPUT_NEXT_IP6_INPUT] = sizeof (ethernet_header_t),
52       [VNET_DEVICE_INPUT_NEXT_MPLS_INPUT] = sizeof (ethernet_header_t),
53 };
54
55 VNET_FEATURE_ARC_INIT (device_input, static) =
56 {
57   .arc_name  = "device-input",
58   .start_nodes = VNET_FEATURES ("device-input"),
59   .arc_index_ptr = &feature_main.device_input_feature_arc_index,
60 };
61
62 VNET_FEATURE_INIT (l2_patch, static) = {
63   .arc_name = "device-input",
64   .node_name = "l2-patch",
65   .runs_before = VNET_FEATURES ("ethernet-input"),
66 };
67
68 VNET_FEATURE_INIT (worker_handoff, static) = {
69   .arc_name = "device-input",
70   .node_name = "worker-handoff",
71   .runs_before = VNET_FEATURES ("ethernet-input"),
72 };
73
74 VNET_FEATURE_INIT (span_input, static) = {
75   .arc_name = "device-input",
76   .node_name = "span-input",
77   .runs_before = VNET_FEATURES ("ethernet-input"),
78 };
79
80 VNET_FEATURE_INIT (ethernet_input, static) = {
81   .arc_name = "device-input",
82   .node_name = "ethernet-input",
83   .runs_before = 0, /* not before any other features */
84 };
85 /* *INDENT-ON* */
86
87 static int
88 vnet_device_queue_sort (void *a1, void *a2)
89 {
90   vnet_device_and_queue_t *dq1 = a1;
91   vnet_device_and_queue_t *dq2 = a2;
92
93   if (dq1->dev_instance > dq2->dev_instance)
94     return 1;
95   else if (dq1->dev_instance < dq2->dev_instance)
96     return -1;
97   else if (dq1->queue_id > dq2->queue_id)
98     return 1;
99   else if (dq1->queue_id < dq2->queue_id)
100     return -1;
101   else
102     return 0;
103 }
104
105 static void
106 vnet_device_queue_update (vnet_main_t * vnm, vnet_device_input_runtime_t * rt)
107 {
108   vnet_device_and_queue_t *dq;
109   vnet_hw_interface_t *hw;
110
111   vec_sort_with_function (rt->devices_and_queues, vnet_device_queue_sort);
112
113   vec_foreach (dq, rt->devices_and_queues)
114   {
115     hw = vnet_get_hw_interface (vnm, dq->hw_if_index);
116     vec_validate (hw->dq_runtime_index_by_queue, dq->queue_id);
117     hw->dq_runtime_index_by_queue[dq->queue_id] = dq - rt->devices_and_queues;
118   }
119 }
120
121 void
122 vnet_hw_interface_assign_rx_thread (vnet_main_t * vnm, u32 hw_if_index,
123                                     u16 queue_id, uword thread_index)
124 {
125   vnet_device_main_t *vdm = &vnet_device_main;
126   vlib_main_t *vm;
127   vnet_device_input_runtime_t *rt;
128   vnet_device_and_queue_t *dq;
129   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
130
131   ASSERT (hw->input_node_index > 0);
132
133   if (vdm->first_worker_thread_index == 0)
134     thread_index = 0;
135
136   if (thread_index != 0 &&
137       (thread_index < vdm->first_worker_thread_index ||
138        thread_index > vdm->last_worker_thread_index))
139     {
140       thread_index = vdm->next_worker_thread_index++;
141       if (vdm->next_worker_thread_index > vdm->last_worker_thread_index)
142         vdm->next_worker_thread_index = vdm->first_worker_thread_index;
143     }
144
145   vm = vlib_mains[thread_index];
146   rt = vlib_node_get_runtime_data (vm, hw->input_node_index);
147
148   vec_add2 (rt->devices_and_queues, dq, 1);
149   dq->hw_if_index = hw_if_index;
150   dq->dev_instance = hw->dev_instance;
151   dq->queue_id = queue_id;
152   dq->mode = VNET_HW_INTERFACE_RX_MODE_POLLING;
153   rt->enabled_node_state = VLIB_NODE_STATE_POLLING;
154
155   vnet_device_queue_update (vnm, rt);
156   vec_validate (hw->input_node_thread_index_by_queue, queue_id);
157   vec_validate (hw->rx_mode_by_queue, queue_id);
158   hw->input_node_thread_index_by_queue[queue_id] = thread_index;
159   hw->rx_mode_by_queue[queue_id] = VNET_HW_INTERFACE_RX_MODE_POLLING;
160   vlib_node_set_state (vm, hw->input_node_index, rt->enabled_node_state);
161 }
162
163 int
164 vnet_hw_interface_unassign_rx_thread (vnet_main_t * vnm, u32 hw_if_index,
165                                       u16 queue_id)
166 {
167   vlib_main_t *vm;
168   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
169   vnet_device_input_runtime_t *rt;
170   vnet_device_and_queue_t *dq;
171   uword old_thread_index;
172   vnet_hw_interface_rx_mode mode;
173
174   if (hw->input_node_thread_index_by_queue == 0)
175     return VNET_API_ERROR_INVALID_INTERFACE;
176
177   if (vec_len (hw->input_node_thread_index_by_queue) < queue_id + 1)
178     return VNET_API_ERROR_INVALID_INTERFACE;
179
180   old_thread_index = hw->input_node_thread_index_by_queue[queue_id];
181
182   vm = vlib_mains[old_thread_index];
183
184   rt = vlib_node_get_runtime_data (vm, hw->input_node_index);
185
186   vec_foreach (dq, rt->devices_and_queues)
187     if (dq->hw_if_index == hw_if_index && dq->queue_id == queue_id)
188     {
189       mode = dq->mode;
190       vec_del1 (rt->devices_and_queues, dq - rt->devices_and_queues);
191       goto deleted;
192     }
193
194   return VNET_API_ERROR_INVALID_INTERFACE;
195
196 deleted:
197
198   vnet_device_queue_update (vnm, rt);
199   hw->rx_mode_by_queue[queue_id] = VNET_HW_INTERFACE_RX_MODE_UNKNOWN;
200
201   if (vec_len (rt->devices_and_queues) == 0)
202     vlib_node_set_state (vm, hw->input_node_index, VLIB_NODE_STATE_DISABLED);
203   else if (mode == VNET_HW_INTERFACE_RX_MODE_POLLING)
204     {
205       /*
206        * if the deleted interface is polling, we may need to set the node state
207        * to interrupt if there is no more polling interface for this device's
208        * corresponding thread. This is because mixed interfaces
209        * (polling and interrupt), assigned to the same thread, set the
210        * thread to polling prior to the deletion.
211        */
212       vec_foreach (dq, rt->devices_and_queues)
213       {
214         if (dq->mode == VNET_HW_INTERFACE_RX_MODE_POLLING)
215           return 0;
216       }
217       rt->enabled_node_state = VLIB_NODE_STATE_INTERRUPT;
218       vlib_node_set_state (vm, hw->input_node_index, rt->enabled_node_state);
219     }
220
221   return 0;
222 }
223
224
225 int
226 vnet_hw_interface_set_rx_mode (vnet_main_t * vnm, u32 hw_if_index,
227                                u16 queue_id, vnet_hw_interface_rx_mode mode)
228 {
229   vlib_main_t *vm;
230   uword thread_index;
231   vnet_device_and_queue_t *dq;
232   vlib_node_state_t enabled_node_state;
233   ASSERT (mode < VNET_HW_INTERFACE_NUM_RX_MODES);
234   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
235   vnet_device_input_runtime_t *rt;
236   int is_polling = 0;
237
238   if (hw->input_node_thread_index_by_queue == 0 || hw->rx_mode_by_queue == 0)
239     return VNET_API_ERROR_INVALID_INTERFACE;
240
241   if (hw->rx_mode_by_queue[queue_id] == mode)
242     return 0;
243
244   if (mode != VNET_HW_INTERFACE_RX_MODE_POLLING &&
245       (hw->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE) == 0)
246     return VNET_API_ERROR_UNSUPPORTED;
247
248   hw->rx_mode_by_queue[queue_id] = mode;
249   thread_index = hw->input_node_thread_index_by_queue[queue_id];
250   vm = vlib_mains[thread_index];
251
252   rt = vlib_node_get_runtime_data (vm, hw->input_node_index);
253
254   vec_foreach (dq, rt->devices_and_queues)
255   {
256     if (dq->hw_if_index == hw_if_index && dq->queue_id == queue_id)
257       dq->mode = mode;
258     if (dq->mode == VNET_HW_INTERFACE_RX_MODE_POLLING)
259       is_polling = 1;
260   }
261
262   if (is_polling)
263     enabled_node_state = VLIB_NODE_STATE_POLLING;
264   else
265     enabled_node_state = VLIB_NODE_STATE_INTERRUPT;
266
267   if (rt->enabled_node_state != enabled_node_state)
268     {
269       rt->enabled_node_state = enabled_node_state;
270       if (vlib_node_get_state (vm, hw->input_node_index) !=
271           VLIB_NODE_STATE_DISABLED)
272         vlib_node_set_state (vm, hw->input_node_index, enabled_node_state);
273     }
274
275   return 0;
276 }
277
278 int
279 vnet_hw_interface_get_rx_mode (vnet_main_t * vnm, u32 hw_if_index,
280                                u16 queue_id, vnet_hw_interface_rx_mode * mode)
281 {
282   vlib_main_t *vm;
283   uword thread_index;
284   vnet_device_and_queue_t *dq;
285   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
286   vnet_device_input_runtime_t *rt;
287
288   if (hw->input_node_thread_index_by_queue == 0)
289     return VNET_API_ERROR_INVALID_INTERFACE;
290
291   thread_index = hw->input_node_thread_index_by_queue[queue_id];
292   vm = vlib_mains[thread_index];
293
294   rt = vlib_node_get_runtime_data (vm, hw->input_node_index);
295
296   vec_foreach (dq, rt->devices_and_queues)
297     if (dq->hw_if_index == hw_if_index && dq->queue_id == queue_id)
298     {
299       *mode = dq->mode;
300       return 0;
301     }
302
303   return VNET_API_ERROR_INVALID_INTERFACE;
304 }
305
306
307
308 static clib_error_t *
309 vnet_device_init (vlib_main_t * vm)
310 {
311   vnet_device_main_t *vdm = &vnet_device_main;
312   vlib_thread_main_t *tm = vlib_get_thread_main ();
313   vlib_thread_registration_t *tr;
314   uword *p;
315
316   vec_validate_aligned (vdm->workers, tm->n_vlib_mains - 1,
317                         CLIB_CACHE_LINE_BYTES);
318
319   p = hash_get_mem (tm->thread_registrations_by_name, "workers");
320   tr = p ? (vlib_thread_registration_t *) p[0] : 0;
321   if (tr && tr->count > 0)
322     {
323       vdm->first_worker_thread_index = tr->first_index;
324       vdm->next_worker_thread_index = tr->first_index;
325       vdm->last_worker_thread_index = tr->first_index + tr->count - 1;
326     }
327   return 0;
328 }
329
330 VLIB_INIT_FUNCTION (vnet_device_init);
331
332 /*
333  * fd.io coding-style-patch-verification: ON
334  *
335  * Local Variables:
336  * eval: (c-set-style "gnu")
337  * End:
338  */