vmxnet3: use explicit types in api
[vpp.git] / src / plugins / vmxnet3 / vmxnet3_test.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
18 #include <vlib/vlib.h>
19 #include <vlib/unix/unix.h>
20 #include <vlib/pci/pci.h>
21 #include <vnet/ethernet/ethernet.h>
22 #include <vnet/format_fns.h>
23
24 #include <vat/vat.h>
25 #include <vlibapi/api.h>
26 #include <vlibmemory/api.h>
27
28 #include <vppinfra/error.h>
29 #include <vmxnet3/vmxnet3.h>
30
31 #define __plugin_msg_base vmxnet3_test_main.msg_id_base
32 #include <vlibapi/vat_helper_macros.h>
33
34 /* declare message IDs */
35 #include <vmxnet3/vmxnet3.api_enum.h>
36 #include <vmxnet3/vmxnet3.api_types.h>
37 #include <vpp/api/vpe.api_types.h>
38
39 typedef struct
40 {
41   /* API message ID base */
42   u16 msg_id_base;
43   u32 ping_id;
44   vat_main_t *vat_main;
45 } vmxnet3_test_main_t;
46
47 vmxnet3_test_main_t vmxnet3_test_main;
48
49 /* vmxnet3 create API */
50 static int
51 api_vmxnet3_create (vat_main_t * vam)
52 {
53   unformat_input_t *i = vam->input;
54   vl_api_vmxnet3_create_t *mp;
55   vmxnet3_create_if_args_t args;
56   int ret;
57   u32 size;
58
59   clib_memset (&args, 0, sizeof (vmxnet3_create_if_args_t));
60
61   while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
62     {
63       if (unformat (i, "%U", unformat_vlib_pci_addr, &args.addr))
64         ;
65       else if (unformat (i, "elog"))
66         args.enable_elog = 1;
67       else if (unformat (i, "bind"))
68         args.bind = 1;
69       else if (unformat (i, "gso"))
70         args.enable_gso = 1;
71       else if (unformat (i, "rx-queue-size %u", &size))
72         args.rxq_size = size;
73       else if (unformat (i, "tx-queue-size %u", &size))
74         args.txq_size = size;
75       else if (unformat (i, "num-tx-queues %u", &size))
76         args.txq_num = size;
77       else if (unformat (i, "num-rx-queues %u", &size))
78         args.rxq_num = size;
79       else
80         {
81           clib_warning ("unknown input '%U'", format_unformat_error, i);
82           return -99;
83         }
84     }
85
86   M (VMXNET3_CREATE, mp);
87
88   mp->pci_addr = clib_host_to_net_u32 (args.addr.as_u32);
89   mp->enable_elog = clib_host_to_net_u16 (args.enable_elog);
90   mp->rxq_size = clib_host_to_net_u16 (args.rxq_size);
91   mp->txq_size = clib_host_to_net_u16 (args.txq_size);
92   mp->txq_num = clib_host_to_net_u16 (args.txq_num);
93   mp->rxq_num = clib_host_to_net_u16 (args.rxq_num);
94   mp->bind = args.bind;
95   mp->enable_gso = args.enable_gso;
96
97   S (mp);
98   W (ret);
99
100   return ret;
101 }
102
103 /* vmxnet3-create reply handler */
104 static void
105 vl_api_vmxnet3_create_reply_t_handler (vl_api_vmxnet3_create_reply_t * mp)
106 {
107   vat_main_t *vam = vmxnet3_test_main.vat_main;
108   i32 retval = ntohl (mp->retval);
109
110   if (retval == 0)
111     {
112       fformat (vam->ofp, "created vmxnet3 with sw_if_index %d\n",
113                ntohl (mp->sw_if_index));
114     }
115
116   vam->retval = retval;
117   vam->result_ready = 1;
118   vam->regenerate_interface_table = 1;
119 }
120
121 /* vmxnet3 delete API */
122 static int
123 api_vmxnet3_delete (vat_main_t * vam)
124 {
125   unformat_input_t *i = vam->input;
126   vl_api_vmxnet3_delete_t *mp;
127   u32 sw_if_index = 0;
128   u8 index_defined = 0;
129   int ret;
130
131   while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
132     {
133       if (unformat (i, "sw_if_index %u", &sw_if_index))
134         index_defined = 1;
135       else
136         {
137           clib_warning ("unknown input '%U'", format_unformat_error, i);
138           return -99;
139         }
140     }
141
142   if (!index_defined)
143     {
144       errmsg ("missing sw_if_index\n");
145       return -99;
146     }
147
148   M (VMXNET3_DELETE, mp);
149
150   mp->sw_if_index = clib_host_to_net_u32 (sw_if_index);
151
152   S (mp);
153   W (ret);
154
155   return ret;
156 }
157
158 static int
159 api_vmxnet3_dump (vat_main_t * vam)
160 {
161   vmxnet3_test_main_t *vxm = &vmxnet3_test_main;
162   vl_api_vmxnet3_dump_t *mp;
163   vl_api_control_ping_t *mp_ping;
164   int ret;
165
166   if (vam->json_output)
167     {
168       clib_warning ("JSON output not supported for vmxnet3_dump");
169       return -99;
170     }
171
172   M (VMXNET3_DUMP, mp);
173   S (mp);
174
175   /* Use a control ping for synchronization */
176   mp_ping = vl_msg_api_alloc_as_if_client (sizeof (*mp_ping));
177   mp_ping->_vl_msg_id = htons (vxm->ping_id);
178   mp_ping->client_index = vam->my_client_index;
179
180   fformat (vam->ofp, "Sending ping id=%d\n", vxm->ping_id);
181
182   vam->result_ready = 0;
183   S (mp_ping);
184
185   W (ret);
186   return ret;
187 }
188
189 static u8 *
190 format_pci_addr (u8 * s, va_list * va)
191 {
192   vlib_pci_addr_t *addr = va_arg (*va, vlib_pci_addr_t *);
193   return format (s, "%04x:%02x:%02x.%x", addr->domain, addr->bus,
194                  addr->slot, addr->function);
195 }
196
197 static void
198 vl_api_vmxnet3_details_t_handler (vl_api_vmxnet3_details_t * mp)
199 {
200   vat_main_t *vam = vmxnet3_test_main.vat_main;
201   u32 pci_addr = ntohl (mp->pci_addr);
202   u16 qid;
203
204   fformat (vam->ofp, "%s: sw_if_index %u mac %U\n"
205            "   version: %u\n"
206            "   PCI Address: %U\n"
207            "   state %s\n",
208            mp->if_name, ntohl (mp->sw_if_index), format_ethernet_address,
209            mp->hw_addr, mp->version,
210            format_pci_addr, &pci_addr, mp->admin_up_down ? "up" : "down");
211   for (qid = 0; qid < mp->rx_count; qid++)
212     {
213       vl_api_vmxnet3_rx_list_t *rx_list = &mp->rx_list[qid];
214       fformat (vam->ofp,
215                "   RX Queue %u\n"
216                "     RX completion next index %u\n"
217                "     ring 0 size %u fill %u consume %u produce %u\n"
218                "     ring 1 size %u fill %u consume %u produce %u\n",
219                qid,
220                ntohs (rx_list->rx_next),
221                ntohs (rx_list->rx_qsize), ntohs (rx_list->rx_fill[0]),
222                ntohs (rx_list->rx_consume[0]),
223                ntohs (rx_list->rx_produce[0]),
224                ntohs (rx_list->rx_qsize), ntohs (rx_list->rx_fill[1]),
225                ntohs (rx_list->rx_consume[1]),
226                ntohs (rx_list->rx_produce[1]));
227     }
228   for (qid = 0; qid < mp->tx_count; qid++)
229     {
230       vl_api_vmxnet3_tx_list_t *tx_list = &mp->tx_list[qid];
231       fformat (vam->ofp,
232                "   TX Queue %u\n"
233                "     TX completion next index %u\n"
234                "     size %u consume %u produce %u\n",
235                qid,
236                ntohs (tx_list->tx_next),
237                ntohs (tx_list->tx_qsize), ntohs (tx_list->tx_consume),
238                ntohs (tx_list->tx_produce));
239     }
240 }
241
242 #include <vmxnet3/vmxnet3.api_test.c>
243
244 /*
245  * fd.io coding-style-patch-verification: ON
246  *
247  * Local Variables:
248  * eval: (c-set-style "gnu")
249  * End:
250  */