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