API: Cleanup APIs interface.api
[vpp.git] / src / vnet / devices / virtio / virtio_api.c
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>
25 #include <vnet/ip/ip.h>
26 #include <vnet/devices/virtio/virtio.h>
27 #include <vnet/devices/virtio/pci.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
45 #include <vlibapi/api_helper_macros.h>
46
47 #define foreach_virtio_pci_api_msg                        \
48 _(VIRTIO_PCI_CREATE, virtio_pci_create)                   \
49 _(VIRTIO_PCI_DELETE, virtio_pci_delete)                   \
50 _(SW_INTERFACE_VIRTIO_PCI_DUMP, sw_interface_virtio_pci_dump)
51
52 static void
53 vl_api_virtio_pci_create_t_handler (vl_api_virtio_pci_create_t * mp)
54 {
55   vlib_main_t *vm = vlib_get_main ();
56   vl_api_virtio_pci_create_reply_t *rmp;
57   vl_api_registration_t *reg;
58   virtio_pci_create_if_args_t _a, *ap = &_a;
59
60   clib_memset (ap, 0, sizeof (*ap));
61
62   ap->addr = ntohl (mp->pci_addr);
63   if (!mp->use_random_mac)
64     {
65       clib_memcpy (ap->mac_addr, mp->mac_address, 6);
66       ap->mac_addr_set = 1;
67     }
68   ap->rxq_size = ntohs (mp->rx_ring_sz);
69   ap->txq_size = ntohs (mp->tx_ring_sz);
70   ap->sw_if_index = (u32) ~ 0;
71   ap->features = clib_net_to_host_u64 (mp->features);
72
73   virtio_pci_create_if (vm, ap);
74
75   reg = vl_api_client_index_to_registration (mp->client_index);
76   if (!reg)
77     return;;
78
79   rmp = vl_msg_api_alloc (sizeof (*rmp));
80   rmp->_vl_msg_id = htons (VL_API_VIRTIO_PCI_CREATE_REPLY);
81   rmp->context = mp->context;
82   rmp->retval = htonl (ap->rv);
83   rmp->sw_if_index = htonl (ap->sw_if_index);
84
85   vl_api_send_msg (reg, (u8 *) rmp);
86 }
87
88 static void
89 virtio_pci_send_sw_interface_event_deleted (vpe_api_main_t * am,
90                                             vl_api_registration_t * reg,
91                                             u32 sw_if_index)
92 {
93   vl_api_sw_interface_event_t *mp;
94
95   mp = vl_msg_api_alloc (sizeof (*mp));
96   clib_memset (mp, 0, sizeof (*mp));
97   mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_EVENT);
98   mp->sw_if_index = htonl (sw_if_index);
99
100   mp->flags = 0;
101   mp->deleted = 1;
102   vl_api_send_msg (reg, (u8 *) mp);
103 }
104
105 static void
106 vl_api_virtio_pci_delete_t_handler (vl_api_virtio_pci_delete_t * mp)
107 {
108   vnet_main_t *vnm = vnet_get_main ();
109   vlib_main_t *vm = vlib_get_main ();
110   virtio_main_t *vim = &virtio_main;
111   int rv = 0;
112   vnet_hw_interface_t *hw;
113   virtio_if_t *vif;
114   vpe_api_main_t *vam = &vpe_api_main;
115   vl_api_virtio_pci_delete_reply_t *rmp;
116   vl_api_registration_t *reg;
117   u32 sw_if_index = ntohl (mp->sw_if_index);
118
119   hw = vnet_get_sup_hw_interface (vnm, htonl (mp->sw_if_index));
120   if (hw == NULL || virtio_device_class.index != hw->dev_class_index)
121     {
122       rv = VNET_API_ERROR_INVALID_INTERFACE;
123       goto reply;
124     }
125
126   vif = pool_elt_at_index (vim->interfaces, hw->dev_instance);
127
128   rv = virtio_pci_delete_if (vm, vif);
129
130 reply:
131   reg = vl_api_client_index_to_registration (mp->client_index);
132   if (!reg)
133     return;
134
135   rmp = vl_msg_api_alloc (sizeof (*rmp));
136   rmp->_vl_msg_id = htons (VL_API_VIRTIO_PCI_DELETE_REPLY);
137   rmp->context = mp->context;
138   rmp->retval = htonl (rv);
139
140   vl_api_send_msg (reg, (u8 *) rmp);
141
142   if (!rv)
143     {
144       virtio_pci_send_sw_interface_event_deleted (vam, reg, sw_if_index);
145     }
146 }
147
148 static void
149 virtio_pci_send_sw_interface_details (vpe_api_main_t * am,
150                                       vl_api_registration_t * reg,
151                                       virtio_if_t * vif, u32 context)
152 {
153   vl_api_sw_interface_virtio_pci_details_t *mp;
154   mp = vl_msg_api_alloc (sizeof (*mp));
155
156   clib_memset (mp, 0, sizeof (*mp));
157
158   mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_VIRTIO_PCI_DETAILS);
159   mp->pci_addr = htonl (vif->pci_addr.as_u32);
160   mp->sw_if_index = htonl (vif->sw_if_index);
161   mp->rx_ring_sz = htons (vif->rx_ring_sz);
162   mp->tx_ring_sz = htons (vif->tx_ring_sz);
163   clib_memcpy (mp->mac_addr, vif->mac_addr, 6);
164   mp->features = clib_host_to_net_u64 (vif->features);
165
166   mp->context = context;
167   vl_api_send_msg (reg, (u8 *) mp);
168 }
169
170 static void
171   vl_api_sw_interface_virtio_pci_dump_t_handler
172   (vl_api_sw_interface_virtio_pci_dump_t * mp)
173 {
174   vpe_api_main_t *am = &vpe_api_main;
175   vl_api_registration_t *reg;
176   virtio_main_t *vmx = &virtio_main;
177   virtio_if_t *vif;
178
179   reg = vl_api_client_index_to_registration (mp->client_index);
180   if (!reg)
181     return;
182
183   pool_foreach (vif, vmx->interfaces, (
184                                         {
185                                         if (vif->type == VIRTIO_IF_TYPE_PCI)
186                                         {
187                                         virtio_pci_send_sw_interface_details
188                                         (am, reg, vif, mp->context);}
189                                         }
190                 ));
191 }
192
193 #define vl_msg_name_crc_list
194 #include <vnet/vnet_all_api_h.h>
195 #undef vl_msg_name_crc_list
196
197 static void
198 setup_message_id_table (api_main_t * am)
199 {
200 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
201   foreach_vl_msg_name_crc_virtio;
202 #undef _
203 }
204
205 static clib_error_t *
206 virtio_pci_api_hookup (vlib_main_t * vm)
207 {
208   api_main_t *am = &api_main;
209
210 #define _(N,n)                                                  \
211     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
212                            vl_api_##n##_t_handler,              \
213                            vl_noop_handler,                     \
214                            vl_api_##n##_t_endian,               \
215                            vl_api_##n##_t_print,                \
216                            sizeof(vl_api_##n##_t), 1);
217   foreach_virtio_pci_api_msg;
218 #undef _
219
220   /*
221    * Set up the (msg_name, crc, message-id) table
222    */
223   setup_message_id_table (am);
224
225   return 0;
226 }
227
228 VLIB_API_INIT_FUNCTION (virtio_pci_api_hookup);
229
230 /*
231  * fd.io coding-style-patch-verification: ON
232  *
233  * Local Variables:
234  * eval: (c-set-style "gnu")
235  * End:
236  */