api: refactor vlibmemory
[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   vlib_main_t *vm = vlib_get_main ();
56   vl_api_tap_create_v2_reply_t *rmp;
57   svm_queue_t *q;
58   tap_create_if_args_t _a, *ap = &_a;
59
60   memset (ap, 0, sizeof (*ap));
61
62   ap->id = mp->id;
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->rx_ring_sz = ntohs (mp->rx_ring_sz);
69   ap->tx_ring_sz = ntohs (mp->tx_ring_sz);
70   ap->sw_if_index = (u32) ~ 0;
71
72   if (mp->host_if_name_set)
73     ap->host_if_name = mp->host_if_name;
74
75   if (mp->host_mac_addr_set)
76     {
77       clib_memcpy (ap->host_mac_addr, mp->host_mac_addr, 6);
78       ap->mac_addr_set = 1;
79     }
80
81   if (mp->host_namespace_set)
82     ap->host_namespace = mp->host_namespace;
83
84   if (mp->host_bridge_set)
85     ap->host_bridge = mp->host_bridge;
86
87   if (mp->host_ip4_addr_set)
88     {
89       clib_memcpy (&ap->host_ip4_addr.as_u8, mp->host_ip4_addr, 4);
90       ap->host_ip4_prefix_len = mp->host_ip4_prefix_len;
91     }
92
93   if (mp->host_ip6_addr_set)
94     {
95       clib_memcpy (&ap->host_ip6_addr, mp->host_ip6_addr, 16);
96       ap->host_ip6_prefix_len = mp->host_ip6_prefix_len;
97     }
98
99   tap_create_if (vm, ap);
100
101   q = vl_api_client_index_to_input_queue (mp->client_index);
102   if (!q)
103     return;
104
105   rmp = vl_msg_api_alloc (sizeof (*rmp));
106   rmp->_vl_msg_id = ntohs (VL_API_TAP_CREATE_V2_REPLY);
107   rmp->context = mp->context;
108   rmp->retval = ntohl (ap->rv);
109   rmp->sw_if_index = ntohl (ap->sw_if_index);
110
111   vl_msg_api_send_shmem (q, (u8 *) & rmp);
112 }
113
114 static void
115 tap_send_sw_interface_event_deleted (vpe_api_main_t * am,
116                                      svm_queue_t * q, u32 sw_if_index)
117 {
118   vl_api_sw_interface_event_t *mp;
119
120   mp = vl_msg_api_alloc (sizeof (*mp));
121   memset (mp, 0, sizeof (*mp));
122   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT);
123   mp->sw_if_index = ntohl (sw_if_index);
124
125   mp->admin_up_down = 0;
126   mp->link_up_down = 0;
127   mp->deleted = 1;
128   vl_msg_api_send_shmem (q, (u8 *) & mp);
129 }
130
131 static void
132 vl_api_tap_delete_v2_t_handler (vl_api_tap_delete_v2_t * mp)
133 {
134   vlib_main_t *vm = vlib_get_main ();
135   int rv;
136   vpe_api_main_t *vam = &vpe_api_main;
137   vl_api_tap_delete_v2_reply_t *rmp;
138   svm_queue_t *q;
139   u32 sw_if_index = ntohl (mp->sw_if_index);
140
141   rv = tap_delete_if (vm, sw_if_index);
142
143   q = vl_api_client_index_to_input_queue (mp->client_index);
144   if (!q)
145     return;
146
147   rmp = vl_msg_api_alloc (sizeof (*rmp));
148   rmp->_vl_msg_id = ntohs (VL_API_TAP_DELETE_V2_REPLY);
149   rmp->context = mp->context;
150   rmp->retval = ntohl (rv);
151
152   vl_msg_api_send_shmem (q, (u8 *) & rmp);
153
154   if (!rv)
155     tap_send_sw_interface_event_deleted (vam, q, sw_if_index);
156 }
157
158 static void
159 tap_send_sw_interface_details (vpe_api_main_t * am,
160                                svm_queue_t * q,
161                                tap_interface_details_t * tap_if, u32 context)
162 {
163   vl_api_sw_interface_tap_v2_details_t *mp;
164   mp = vl_msg_api_alloc (sizeof (*mp));
165   memset (mp, 0, sizeof (*mp));
166   mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_TAP_V2_DETAILS);
167   mp->id = htonl (tap_if->id);
168   mp->sw_if_index = htonl (tap_if->sw_if_index);
169   clib_memcpy (mp->dev_name, tap_if->dev_name,
170                MIN (ARRAY_LEN (mp->dev_name) - 1,
171                     strlen ((const char *) tap_if->dev_name)));
172   mp->rx_ring_sz = htons (tap_if->rx_ring_sz);
173   mp->tx_ring_sz = htons (tap_if->tx_ring_sz);
174   clib_memcpy (mp->host_mac_addr, tap_if->host_mac_addr, 6);
175   clib_memcpy (mp->host_if_name, tap_if->host_if_name,
176                MIN (ARRAY_LEN (mp->host_if_name) - 1,
177                     strlen ((const char *) tap_if->host_if_name)));
178   clib_memcpy (mp->host_namespace, tap_if->host_namespace,
179                MIN (ARRAY_LEN (mp->host_namespace) - 1,
180                     strlen ((const char *) tap_if->host_namespace)));
181   clib_memcpy (mp->host_bridge, tap_if->host_bridge,
182                MIN (ARRAY_LEN (mp->host_bridge) - 1,
183                     strlen ((const char *) tap_if->host_bridge)));
184   if (tap_if->host_ip4_prefix_len)
185     clib_memcpy (&mp->host_ip4_addr, &tap_if->host_ip4_addr, 4);
186   mp->host_ip4_prefix_len = tap_if->host_ip4_prefix_len;
187   if (tap_if->host_ip6_prefix_len)
188     clib_memcpy (&mp->host_ip6_addr, &tap_if->host_ip6_addr, 16);
189   mp->host_ip6_prefix_len = tap_if->host_ip6_prefix_len;
190
191   mp->context = context;
192   vl_msg_api_send_shmem (q, (u8 *) & mp);
193 }
194
195 static void
196 vl_api_sw_interface_tap_v2_dump_t_handler (vl_api_sw_interface_tap_v2_dump_t *
197                                            mp)
198 {
199   int rv;
200   vpe_api_main_t *am = &vpe_api_main;
201   svm_queue_t *q;
202   tap_interface_details_t *tapifs = NULL;
203   tap_interface_details_t *tap_if = NULL;
204
205   q = vl_api_client_index_to_input_queue (mp->client_index);
206   if (q == 0)
207     return;
208
209   rv = tap_dump_ifs (&tapifs);
210   if (rv)
211     return;
212
213   vec_foreach (tap_if, tapifs)
214   {
215     tap_send_sw_interface_details (am, q, tap_if, mp->context);
216   }
217
218   vec_free (tapifs);
219 }
220
221 #define vl_msg_name_crc_list
222 #include <vnet/vnet_all_api_h.h>
223 #undef vl_msg_name_crc_list
224
225 static void
226 tap_setup_message_id_table (api_main_t * am)
227 {
228 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
229   foreach_vl_msg_name_crc_tapv2;
230 #undef _
231 }
232
233 static clib_error_t *
234 tapv2_api_hookup (vlib_main_t * vm)
235 {
236   api_main_t *am = &api_main;
237
238 #define _(N,n)                                                  \
239     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
240                            vl_api_##n##_t_handler,              \
241                            vl_noop_handler,                     \
242                            vl_api_##n##_t_endian,               \
243                            vl_api_##n##_t_print,                \
244                            sizeof(vl_api_##n##_t), 1);
245   foreach_tapv2_api_msg;
246 #undef _
247
248   /*
249    * Set up the (msg_name, crc, message-id) table
250    */
251   tap_setup_message_id_table (am);
252
253   return 0;
254 }
255
256 VLIB_API_INIT_FUNCTION (tapv2_api_hookup);
257
258 /*
259  * fd.io coding-style-patch-verification: ON
260  *
261  * Local Variables:
262  * eval: (c-set-style "gnu")
263  * End:
264  */