API: Cleanup APIs interface.api
[vpp.git] / src / vnet / devices / tap / tapv2_api.c
1 /*
2  *------------------------------------------------------------------
3  * tap_api.c - vnet tap device driver API support
4  *
5  * Copyright (c) 2017 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/ethernet/ethernet.h>
26 #include <vnet/ip/ip.h>
27
28 #include <vnet/vnet_msg_enum.h>
29
30 #define vl_typedefs             /* define message structures */
31 #include <vnet/vnet_all_api_h.h>
32 #undef vl_typedefs
33
34 #define vl_endianfun            /* define message structures */
35 #include <vnet/vnet_all_api_h.h>
36 #undef vl_endianfun
37
38 /* instantiate all the print functions we know about */
39 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
40 #define vl_printfun
41 #include <vnet/vnet_all_api_h.h>
42 #undef vl_printfun
43
44 #include <vlibapi/api_helper_macros.h>
45 #include <vnet/devices/tap/tap.h>
46
47 #define foreach_tapv2_api_msg                     \
48 _(TAP_CREATE_V2, tap_create_v2)                   \
49 _(TAP_DELETE_V2, tap_delete_v2)                   \
50 _(SW_INTERFACE_TAP_V2_DUMP, sw_interface_tap_v2_dump)
51
52 static void
53 vl_api_tap_create_v2_t_handler (vl_api_tap_create_v2_t * mp)
54 {
55   vnet_main_t *vnm = vnet_get_main ();
56   vlib_main_t *vm = vlib_get_main ();
57   vl_api_tap_create_v2_reply_t *rmp;
58   vl_api_registration_t *reg;
59   tap_create_if_args_t _a, *ap = &_a;
60
61   clib_memset (ap, 0, sizeof (*ap));
62
63   ap->id = ntohl (mp->id);
64   if (!mp->use_random_mac)
65     {
66       clib_memcpy (ap->mac_addr, mp->mac_address, 6);
67       ap->mac_addr_set = 1;
68     }
69   ap->rx_ring_sz = ntohs (mp->rx_ring_sz);
70   ap->tx_ring_sz = ntohs (mp->tx_ring_sz);
71   ap->sw_if_index = (u32) ~ 0;
72
73   if (mp->host_if_name_set)
74     ap->host_if_name = mp->host_if_name;
75
76   if (mp->host_mac_addr_set)
77     {
78       clib_memcpy (ap->host_mac_addr, mp->host_mac_addr, 6);
79       ap->mac_addr_set = 1;
80     }
81
82   if (mp->host_namespace_set)
83     ap->host_namespace = mp->host_namespace;
84
85   if (mp->host_bridge_set)
86     ap->host_bridge = mp->host_bridge;
87
88   if (mp->host_ip4_addr_set)
89     {
90       clib_memcpy (&ap->host_ip4_addr.as_u8, mp->host_ip4_addr, 4);
91       ap->host_ip4_prefix_len = mp->host_ip4_prefix_len;
92     }
93
94   if (mp->host_ip6_addr_set)
95     {
96       clib_memcpy (&ap->host_ip6_addr, mp->host_ip6_addr, 16);
97       ap->host_ip6_prefix_len = mp->host_ip6_prefix_len;
98     }
99
100   if (mp->host_ip4_gw_set)
101     {
102       clib_memcpy (&ap->host_ip4_gw, mp->host_ip4_gw, 4);
103       ap->host_ip4_gw_set = 1;
104     }
105
106   if (mp->host_ip6_gw_set)
107     {
108       clib_memcpy (&ap->host_ip6_gw, mp->host_ip6_gw, 16);
109       ap->host_ip6_gw_set = 1;
110     }
111
112   ap->tap_flags = ntohl (mp->tap_flags);
113
114   tap_create_if (vm, ap);
115
116   reg = vl_api_client_index_to_registration (mp->client_index);
117   if (!reg)
118     return;;
119
120   /* If a tag was supplied... */
121   if (mp->tag[0])
122     {
123       /* Make sure it's a proper C-string */
124       mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
125       u8 *tag = format (0, "%s%c", mp->tag, 0);
126       vnet_set_sw_interface_tag (vnm, tag, ap->sw_if_index);
127     }
128
129
130   rmp = vl_msg_api_alloc (sizeof (*rmp));
131   rmp->_vl_msg_id = ntohs (VL_API_TAP_CREATE_V2_REPLY);
132   rmp->context = mp->context;
133   rmp->retval = ntohl (ap->rv);
134   rmp->sw_if_index = ntohl (ap->sw_if_index);
135
136   vl_api_send_msg (reg, (u8 *) rmp);
137 }
138
139 static void
140 tap_send_sw_interface_event_deleted (vpe_api_main_t * am,
141                                      vl_api_registration_t * reg,
142                                      u32 sw_if_index)
143 {
144   vl_api_sw_interface_event_t *mp;
145
146   mp = vl_msg_api_alloc (sizeof (*mp));
147   clib_memset (mp, 0, sizeof (*mp));
148   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT);
149   mp->sw_if_index = ntohl (sw_if_index);
150
151   mp->flags = 0;
152   mp->deleted = 1;
153   vl_api_send_msg (reg, (u8 *) mp);
154 }
155
156 static void
157 vl_api_tap_delete_v2_t_handler (vl_api_tap_delete_v2_t * mp)
158 {
159   vnet_main_t *vnm = vnet_get_main ();
160   vlib_main_t *vm = vlib_get_main ();
161   int rv;
162   vpe_api_main_t *vam = &vpe_api_main;
163   vl_api_tap_delete_v2_reply_t *rmp;
164   vl_api_registration_t *reg;
165   u32 sw_if_index = ntohl (mp->sw_if_index);
166
167   rv = tap_delete_if (vm, sw_if_index);
168
169   reg = vl_api_client_index_to_registration (mp->client_index);
170   if (!reg)
171     return;
172
173   rmp = vl_msg_api_alloc (sizeof (*rmp));
174   rmp->_vl_msg_id = ntohs (VL_API_TAP_DELETE_V2_REPLY);
175   rmp->context = mp->context;
176   rmp->retval = ntohl (rv);
177
178   vl_api_send_msg (reg, (u8 *) rmp);
179
180   if (!rv)
181     {
182       vnet_clear_sw_interface_tag (vnm, sw_if_index);
183       tap_send_sw_interface_event_deleted (vam, reg, sw_if_index);
184     }
185 }
186
187 static void
188 tap_send_sw_interface_details (vpe_api_main_t * am,
189                                vl_api_registration_t * reg,
190                                tap_interface_details_t * tap_if, u32 context)
191 {
192   vl_api_sw_interface_tap_v2_details_t *mp;
193   mp = vl_msg_api_alloc (sizeof (*mp));
194   clib_memset (mp, 0, sizeof (*mp));
195   mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_TAP_V2_DETAILS);
196   mp->id = htonl (tap_if->id);
197   mp->sw_if_index = htonl (tap_if->sw_if_index);
198   mp->tap_flags = htonl (tap_if->tap_flags);
199   clib_memcpy (mp->dev_name, tap_if->dev_name,
200                MIN (ARRAY_LEN (mp->dev_name) - 1,
201                     strlen ((const char *) tap_if->dev_name)));
202   mp->rx_ring_sz = htons (tap_if->rx_ring_sz);
203   mp->tx_ring_sz = htons (tap_if->tx_ring_sz);
204   clib_memcpy (mp->host_mac_addr, tap_if->host_mac_addr, 6);
205   clib_memcpy (mp->host_if_name, tap_if->host_if_name,
206                MIN (ARRAY_LEN (mp->host_if_name) - 1,
207                     strlen ((const char *) tap_if->host_if_name)));
208   clib_memcpy (mp->host_namespace, tap_if->host_namespace,
209                MIN (ARRAY_LEN (mp->host_namespace) - 1,
210                     strlen ((const char *) tap_if->host_namespace)));
211   clib_memcpy (mp->host_bridge, tap_if->host_bridge,
212                MIN (ARRAY_LEN (mp->host_bridge) - 1,
213                     strlen ((const char *) tap_if->host_bridge)));
214   if (tap_if->host_ip4_prefix_len)
215     clib_memcpy (&mp->host_ip4_addr, &tap_if->host_ip4_addr, 4);
216   mp->host_ip4_prefix_len = tap_if->host_ip4_prefix_len;
217   if (tap_if->host_ip6_prefix_len)
218     clib_memcpy (&mp->host_ip6_addr, &tap_if->host_ip6_addr, 16);
219   mp->host_ip6_prefix_len = tap_if->host_ip6_prefix_len;
220
221   mp->context = context;
222   vl_api_send_msg (reg, (u8 *) mp);
223 }
224
225 static void
226 vl_api_sw_interface_tap_v2_dump_t_handler (vl_api_sw_interface_tap_v2_dump_t *
227                                            mp)
228 {
229   int rv;
230   vpe_api_main_t *am = &vpe_api_main;
231   vl_api_registration_t *reg;
232   tap_interface_details_t *tapifs = NULL;
233   tap_interface_details_t *tap_if = NULL;
234
235   reg = vl_api_client_index_to_registration (mp->client_index);
236   if (!reg)
237     return;
238
239   rv = tap_dump_ifs (&tapifs);
240   if (rv)
241     return;
242
243   vec_foreach (tap_if, tapifs)
244   {
245     tap_send_sw_interface_details (am, reg, tap_if, mp->context);
246   }
247
248   vec_free (tapifs);
249 }
250
251 #define vl_msg_name_crc_list
252 #include <vnet/vnet_all_api_h.h>
253 #undef vl_msg_name_crc_list
254
255 static void
256 tap_setup_message_id_table (api_main_t * am)
257 {
258 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
259   foreach_vl_msg_name_crc_tapv2;
260 #undef _
261 }
262
263 static clib_error_t *
264 tapv2_api_hookup (vlib_main_t * vm)
265 {
266   api_main_t *am = &api_main;
267
268 #define _(N,n)                                                  \
269     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
270                            vl_api_##n##_t_handler,              \
271                            vl_noop_handler,                     \
272                            vl_api_##n##_t_endian,               \
273                            vl_api_##n##_t_print,                \
274                            sizeof(vl_api_##n##_t), 1);
275   foreach_tapv2_api_msg;
276 #undef _
277
278   /*
279    * Set up the (msg_name, crc, message-id) table
280    */
281   tap_setup_message_id_table (am);
282
283   return 0;
284 }
285
286 VLIB_API_INIT_FUNCTION (tapv2_api_hookup);
287
288 /*
289  * fd.io coding-style-patch-verification: ON
290  *
291  * Local Variables:
292  * eval: (c-set-style "gnu")
293  * End:
294  */