FD.io VPP  v21.06
Vector Packet Processing
virtio_api.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * virtio_api.c - vnet virtio pci device driver API support
4  *
5  * Copyright (c) 2018 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19 
20 #include <vnet/vnet.h>
21 #include <vlibmemory/api.h>
22 
23 #include <vnet/interface.h>
24 #include <vnet/api_errno.h>
27 #include <vlib/pci/pci_types_api.h>
28 
29 #include <vnet/vnet_msg_enum.h>
30 
31 #define vl_typedefs /* define message structures */
32 #include <vnet/vnet_all_api_h.h>
33 #undef vl_typedefs
34 
35 #define vl_endianfun /* define message structures */
36 #include <vnet/vnet_all_api_h.h>
37 #undef vl_endianfun
38 
39 /* instantiate all the print functions we know about */
40 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
41 #define vl_printfun
42 #include <vnet/vnet_all_api_h.h>
43 #undef vl_printfun
44 
46 
47 #define foreach_virtio_pci_api_msg \
48 _(VIRTIO_PCI_CREATE, virtio_pci_create) \
49 _(VIRTIO_PCI_CREATE_V2, virtio_pci_create_v2) \
50 _(VIRTIO_PCI_DELETE, virtio_pci_delete) \
51 _(SW_INTERFACE_VIRTIO_PCI_DUMP, sw_interface_virtio_pci_dump)
52 
53 /* It will be deprecated in 21.01 */
54 static void
56 {
60  virtio_pci_create_if_args_t _a, *ap = &_a;
61 
62  clib_memset (ap, 0, sizeof (*ap));
63 
64  pci_address_decode (&mp->pci_addr, (vlib_pci_addr_t *) & ap->addr);
65  if (!mp->use_random_mac)
66  {
67  clib_memcpy (ap->mac_addr, mp->mac_address, 6);
68  ap->mac_addr_set = 1;
69  }
70  ap->sw_if_index = (u32) ~ 0;
71  if (mp->gso_enabled)
72  ap->gso_enabled = 1;
73  else
74  ap->gso_enabled = 0;
77  else
79 
80  ap->features = clib_net_to_host_u64 (mp->features);
81 
82  virtio_pci_create_if (vm, ap);
83 
85  if (!reg)
86  return;;
87 
88  rmp = vl_msg_api_alloc (sizeof (*rmp));
89  rmp->_vl_msg_id = htons (VL_API_VIRTIO_PCI_CREATE_REPLY);
90  rmp->context = mp->context;
91  rmp->retval = htonl (ap->rv);
92  rmp->sw_if_index = htonl (ap->sw_if_index);
93 
94  vl_api_send_msg (reg, (u8 *) rmp);
95 }
96 
97 static void
99 {
103  virtio_pci_create_if_args_t _a, *ap = &_a;
104 
105  clib_memset (ap, 0, sizeof (*ap));
106 
107  pci_address_decode (&mp->pci_addr, (vlib_pci_addr_t *) & ap->addr);
108  if (!mp->use_random_mac)
109  {
110  clib_memcpy (ap->mac_addr, mp->mac_address, 6);
111  ap->mac_addr_set = 1;
112  }
113  ap->sw_if_index = (u32) ~ 0;
114 
115  STATIC_ASSERT (((int) VIRTIO_API_FLAG_GSO == (int) VIRTIO_FLAG_GSO),
116  "virtio gso api flag mismatch");
118  (int) VIRTIO_FLAG_CSUM_OFFLOAD),
119  "virtio checksum offload api flag mismatch");
121  (int) VIRTIO_FLAG_GRO_COALESCE),
122  "virtio gro coalesce api flag mismatch");
123  STATIC_ASSERT (((int) VIRTIO_API_FLAG_PACKED == (int) VIRTIO_FLAG_PACKED),
124  "virtio packed api flag mismatch");
126  (int) VIRTIO_FLAG_IN_ORDER),
127  "virtio in-order api flag mismatch");
129  (int) VIRTIO_FLAG_BUFFERING),
130  "virtio buffering api flag mismatch");
131 
132  ap->virtio_flags = clib_net_to_host_u32 (mp->virtio_flags);
133  ap->features = clib_net_to_host_u64 (mp->features);
134 
136  ap->gso_enabled = 1;
137  else
138  ap->gso_enabled = 0;
140  ap->checksum_offload_enabled = 1;
141  else
142  ap->checksum_offload_enabled = 0;
143 
144  virtio_pci_create_if (vm, ap);
145 
147  if (!reg)
148  return;;
149 
150  rmp = vl_msg_api_alloc (sizeof (*rmp));
151  rmp->_vl_msg_id = htons (VL_API_VIRTIO_PCI_CREATE_V2_REPLY);
152  rmp->context = mp->context;
153  rmp->retval = htonl (ap->rv);
154  rmp->sw_if_index = htonl (ap->sw_if_index);
155 
156  vl_api_send_msg (reg, (u8 *) rmp);
157 }
158 
159 static void
161 {
162  vnet_main_t *vnm = vnet_get_main ();
164  virtio_main_t *vim = &virtio_main;
165  int rv = 0;
167  virtio_if_t *vif;
168  vl_api_virtio_pci_delete_reply_t *rmp;
170 
171  hw =
173  htonl (mp->sw_if_index));
174  if (hw == NULL || virtio_device_class.index != hw->dev_class_index)
175  {
176  rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
177  goto reply;
178  }
179 
180  vif = pool_elt_at_index (vim->interfaces, hw->dev_instance);
181 
182  rv = virtio_pci_delete_if (vm, vif);
183 
184 reply:
186  if (!reg)
187  return;
188 
189  rmp = vl_msg_api_alloc (sizeof (*rmp));
190  rmp->_vl_msg_id = htons (VL_API_VIRTIO_PCI_DELETE_REPLY);
191  rmp->context = mp->context;
192  rmp->retval = htonl (rv);
193 
194  vl_api_send_msg (reg, (u8 *) rmp);
195 }
196 
197 static void
199  vl_api_registration_t * reg,
200  virtio_if_t * vif, u32 context)
201 {
203  mp = vl_msg_api_alloc (sizeof (*mp));
204 
205  clib_memset (mp, 0, sizeof (*mp));
206 
207  mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_VIRTIO_PCI_DETAILS);
208  pci_address_encode ((vlib_pci_addr_t *) & vif->pci_addr.as_u32,
209  &mp->pci_addr);
210  mp->sw_if_index = htonl (vif->sw_if_index);
211  virtio_vring_t *vring = vec_elt_at_index (vif->rxq_vrings, 0);
212  mp->rx_ring_sz = htons (vring->size);
213  vring = vec_elt_at_index (vif->txq_vrings, 0);
214  mp->tx_ring_sz = htons (vring->size);
215  clib_memcpy (mp->mac_addr, vif->mac_addr, 6);
216  mp->features = clib_host_to_net_u64 (vif->features);
217 
218  mp->context = context;
219  vl_api_send_msg (reg, (u8 *) mp);
220 }
221 
222 static void
225 {
228  virtio_main_t *vmx = &virtio_main;
229  virtio_if_t *vif;
230 
232  if (!reg)
233  return;
234 
235  pool_foreach (vif, vmx->interfaces)
236  {
237  if (vif->type == VIRTIO_IF_TYPE_PCI)
238  {
239  virtio_pci_send_sw_interface_details (am, reg, vif, mp->context);
240  }
241  }
242 }
243 
244 #define vl_msg_name_crc_list
245 #include <vnet/vnet_all_api_h.h>
246 #undef vl_msg_name_crc_list
247 
248 static void
250 {
251 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
252  foreach_vl_msg_name_crc_virtio;
253 #undef _
254 }
255 
256 static clib_error_t *
258 {
260 
261 #define _(N,n) \
262  vl_msg_api_set_handlers(VL_API_##N, #n, \
263  vl_api_##n##_t_handler, \
264  vl_noop_handler, \
265  vl_api_##n##_t_endian, \
266  vl_api_##n##_t_print, \
267  sizeof(vl_api_##n##_t), 1);
269 #undef _
270 
271  /*
272  * Set up the (msg_name, crc, message-id) table
273  */
275 
276  return 0;
277 }
278 
280 
281 /*
282  * fd.io coding-style-patch-verification: ON
283  *
284  * Local Variables:
285  * eval: (c-set-style "gnu")
286  * End:
287  */
virtio_if_t * interfaces
Definition: virtio.h:220
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
Reply for virtio pci create reply.
Definition: virtio.api:51
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
static void vl_api_send_msg(vl_api_registration_t *rp, u8 *elem)
Definition: api.h:35
vl_api_interface_index_t sw_if_index
Definition: virtio.api:97
#define foreach_virtio_pci_api_msg
Definition: virtio_api.c:47
vnet_device_class_t virtio_device_class
vl_api_interface_index_t sw_if_index
Definition: virtio.api:109
Initialize a new virtio pci interface with the given parameters.
Definition: virtio.api:33
Dump virtio pci interfaces request.
Definition: virtio.api:113
void * vl_msg_api_alloc(int nbytes)
Delete virtio pci interface.
Definition: virtio.api:105
unsigned char u8
Definition: types.h:56
void virtio_pci_create_if(vlib_main_t *vm, virtio_pci_create_if_args_t *args)
Definition: pci.c:1348
VLIB_API_INIT_FUNCTION(virtio_pci_api_hookup)
static clib_error_t * virtio_pci_api_hookup(vlib_main_t *vm)
Definition: virtio_api.c:257
unsigned int u32
Definition: types.h:88
#define clib_memcpy(d, s, n)
Definition: string.h:197
u32 as_u32
Definition: virtio.h:122
u64 features
Definition: virtio.h:131
static void virtio_pci_send_sw_interface_details(vpe_api_main_t *am, vl_api_registration_t *reg, virtio_if_t *vif, u32 context)
Definition: virtio_api.c:198
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
vnet_main_t * vnet_get_main(void)
int __clib_unused rv
Definition: application.c:491
static void vl_api_virtio_pci_delete_t_handler(vl_api_virtio_pci_delete_t *mp)
Definition: virtio_api.c:160
static void setup_message_id_table(api_main_t *am)
Definition: virtio_api.c:249
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:553
vl_api_mac_address_t mac_address
Definition: virtio.api:40
static void vl_api_virtio_pci_create_t_handler(vl_api_virtio_pci_create_t *mp)
Definition: virtio_api.c:55
pci_addr_t pci_addr
Definition: virtio.h:196
Initialize a new virtio pci interface with the given parameters.
Definition: virtio.api:77
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
static void vl_api_virtio_pci_create_v2_t_handler(vl_api_virtio_pci_create_v2_t *mp)
Definition: virtio_api.c:98
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:228
An API client registration, only in vpp/vlib.
Definition: api_common.h:47
virtio_vring_t * rxq_vrings
Definition: virtio.h:136
Reply for virtio pci create reply.
Definition: virtio.api:93
Reply for virtio pci interface dump request.
Definition: virtio.api:127
vl_api_virtio_flags_t virtio_flags
Definition: virtio.api:84
static vnet_hw_interface_t * vnet_get_sup_hw_interface_api_visible_or_null(vnet_main_t *vnm, u32 sw_if_index)
u8 mac_addr[6]
Definition: virtio.h:171
static void vl_api_sw_interface_virtio_pci_dump_t_handler(vl_api_sw_interface_virtio_pci_dump_t *mp)
Definition: virtio_api.c:224
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:79
int virtio_pci_delete_if(vlib_main_t *vm, virtio_if_t *vif)
Definition: pci.c:1548
virtio_if_type_t type
Definition: virtio.h:150
virtio_main_t virtio_main
Definition: virtio.c:37
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
u32 context
Definition: ip.api:780
vl_api_pci_address_t pci_addr
Definition: virtio.api:38
vl_api_mac_address_t mac_address
Definition: virtio.api:83
vl_api_pci_address_t pci_addr
Definition: virtio.api:81
#define STATIC_ASSERT(truth,...)
vl_api_interface_index_t sw_if_index
Definition: virtio.api:130
static api_main_t * vlibapi_get_main(void)
Definition: api_common.h:390
u32 sw_if_index
Definition: virtio.h:153
void pci_address_encode(const vlib_pci_addr_t *in, vl_api_pci_address_t *out)
Definition: pci_types_api.c:31
void pci_address_decode(const vl_api_pci_address_t *in, vlib_pci_addr_t *out)
Definition: pci_types_api.c:22
vpe_api_main_t vpe_api_main
Definition: interface_api.c:55
vl_api_interface_index_t sw_if_index
Definition: virtio.api:56
app_main_t * am
Definition: application.c:489
virtio_vring_t * txq_vrings
Definition: virtio.h:137