af_xdp: AF_XDP input plugin
[vpp.git] / src / plugins / af_xdp / api.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2020 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
18 #include <vlib/vlib.h>
19 #include <vnet/vnet.h>
20
21 #include <af_xdp/af_xdp.h>
22
23 #include <vlibapi/api.h>
24 #include <vlibmemory/api.h>
25
26 /* define message IDs */
27 #include <af_xdp/af_xdp.api_enum.h>
28 #include <af_xdp/af_xdp.api_types.h>
29
30 #include <vlibapi/api_helper_macros.h>
31
32 static af_xdp_mode_t
33 af_xdp_api_mode (vl_api_af_xdp_mode_t mode)
34 {
35   switch (mode)
36     {
37     case AF_XDP_API_MODE_AUTO:
38       return AF_XDP_MODE_AUTO;
39     case AF_XDP_API_MODE_COPY:
40       return AF_XDP_MODE_COPY;
41     case AF_XDP_API_MODE_ZERO_COPY:
42       return AF_XDP_MODE_ZERO_COPY;
43     }
44   return AF_XDP_MODE_AUTO;
45 }
46
47 static void
48 vl_api_af_xdp_create_t_handler (vl_api_af_xdp_create_t * mp)
49 {
50   vlib_main_t *vm = vlib_get_main ();
51   af_xdp_main_t *rm = &af_xdp_main;
52   vl_api_af_xdp_create_reply_t *rmp;
53   af_xdp_create_if_args_t args;
54   int rv;
55
56   clib_memset (&args, 0, sizeof (af_xdp_create_if_args_t));
57
58   args.linux_ifname = mp->host_if[0] ? (char *) mp->host_if : 0;
59   args.name = mp->name[0] ? (char *) mp->name : 0;
60   args.prog = mp->prog[0] ? (char *) mp->prog : 0;
61   args.mode = af_xdp_api_mode (mp->mode);
62   args.rxq_size = ntohs (mp->rxq_size);
63   args.txq_size = ntohs (mp->txq_size);
64   args.rxq_num = ntohs (mp->rxq_num);
65
66   af_xdp_create_if (vm, &args);
67   rv = args.rv;
68
69   /* *INDENT-OFF* */
70   REPLY_MACRO2 (VL_API_AF_XDP_CREATE_REPLY + rm->msg_id_base,
71     ({
72       rmp->sw_if_index = ntohl (args.sw_if_index);
73     }));
74   /* *INDENT-ON* */
75 }
76
77 static void
78 vl_api_af_xdp_delete_t_handler (vl_api_af_xdp_delete_t * mp)
79 {
80   vlib_main_t *vm = vlib_get_main ();
81   vnet_main_t *vnm = vnet_get_main ();
82   af_xdp_main_t *rm = &af_xdp_main;
83   vl_api_af_xdp_delete_reply_t *rmp;
84   af_xdp_device_t *rd;
85   vnet_hw_interface_t *hw;
86   int rv = 0;
87
88   hw =
89     vnet_get_sup_hw_interface_api_visible_or_null (vnm,
90                                                    htonl (mp->sw_if_index));
91   if (hw == NULL || af_xdp_device_class.index != hw->dev_class_index)
92     {
93       rv = VNET_API_ERROR_INVALID_INTERFACE;
94       goto reply;
95     }
96
97   rd = pool_elt_at_index (rm->devices, hw->dev_instance);
98
99   af_xdp_delete_if (vm, rd);
100
101 reply:
102   REPLY_MACRO (VL_API_AF_XDP_DELETE_REPLY + rm->msg_id_base);
103 }
104
105 /* set tup the API message handling tables */
106 #include <af_xdp/af_xdp.api.c>
107 static clib_error_t *
108 af_xdp_plugin_api_hookup (vlib_main_t * vm)
109 {
110   af_xdp_main_t *rm = &af_xdp_main;
111
112   /* ask for a correctly-sized block of API message decode slots */
113   rm->msg_id_base = setup_message_id_table ();
114   return 0;
115 }
116
117 VLIB_API_INIT_FUNCTION (af_xdp_plugin_api_hookup);
118
119 /*
120  * fd.io coding-style-patch-verification: ON
121  *
122  * Local Variables:
123  * eval: (c-set-style "gnu")
124  * End:
125  */