af_xdp: add option to claim all available rx queues
[vpp.git] / src / plugins / af_xdp / cli.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 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  */
17 #include <stdint.h>
18 #include <net/if.h>
19 #include <sys/ioctl.h>
20 #include <inttypes.h>
21
22 #include <vlib/vlib.h>
23 #include <vlib/unix/unix.h>
24 #include <vlib/pci/pci.h>
25 #include <vnet/ethernet/ethernet.h>
26
27 #include <af_xdp/af_xdp.h>
28
29 static clib_error_t *
30 af_xdp_create_command_fn (vlib_main_t * vm, unformat_input_t * input,
31                           vlib_cli_command_t * cmd)
32 {
33   af_xdp_create_if_args_t args;
34
35   if (!unformat_user (input, unformat_af_xdp_create_if_args, &args))
36     return clib_error_return (0, "unknown input `%U'",
37                               format_unformat_error, input);
38
39   af_xdp_create_if (vm, &args);
40
41   vec_free (args.linux_ifname);
42   vec_free (args.name);
43
44   return args.error;
45 }
46
47 /* *INDENT-OFF* */
48 VLIB_CLI_COMMAND (af_xdp_create_command, static) = {
49   .path = "create interface af_xdp",
50   .short_help = "create interface af_xdp <host-if linux-ifname> [name ifname] [rx-queue-size size] [tx-queue-size size] [num-rx-queues <num|all>] [prog pathname] [zero-copy|no-zero-copy]",
51   .function = af_xdp_create_command_fn,
52 };
53 /* *INDENT-ON* */
54
55 static clib_error_t *
56 af_xdp_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
57                           vlib_cli_command_t * cmd)
58 {
59   unformat_input_t _line_input, *line_input = &_line_input;
60   u32 sw_if_index = ~0;
61   vnet_hw_interface_t *hw;
62   af_xdp_main_t *am = &af_xdp_main;
63   af_xdp_device_t *ad;
64   vnet_main_t *vnm = vnet_get_main ();
65
66   /* Get a line of input. */
67   if (!unformat_user (input, unformat_line_input, line_input))
68     return 0;
69
70   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
71     {
72       if (unformat (line_input, "sw_if_index %d", &sw_if_index))
73         ;
74       else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
75                          vnm, &sw_if_index))
76         ;
77       else
78         return clib_error_return (0, "unknown input `%U'",
79                                   format_unformat_error, input);
80     }
81   unformat_free (line_input);
82
83   if (sw_if_index == ~0)
84     return clib_error_return (0,
85                               "please specify interface name or sw_if_index");
86
87   hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
88   if (hw == NULL || af_xdp_device_class.index != hw->dev_class_index)
89     return clib_error_return (0, "not an AVF interface");
90
91   ad = pool_elt_at_index (am->devices, hw->dev_instance);
92
93   af_xdp_delete_if (vm, ad);
94
95   return 0;
96 }
97
98 /* *INDENT-OFF* */
99 VLIB_CLI_COMMAND (af_xdp_delete_command, static) = {
100   .path = "delete interface af_xdp",
101   .short_help = "delete interface af_xdp "
102     "{<interface> | sw_if_index <sw_idx>}",
103   .function = af_xdp_delete_command_fn,
104 };
105 /* *INDENT-ON* */
106
107 clib_error_t *
108 af_xdp_cli_init (vlib_main_t * vm)
109 {
110   return 0;
111 }
112
113 VLIB_INIT_FUNCTION (af_xdp_cli_init);
114
115 /*
116  * fd.io coding-style-patch-verification: ON
117  *
118  * Local Variables:
119  * eval: (c-set-style "gnu")
120  * End:
121  */