FD.io VPP  v17.04.2-2-ga8f93f8
Vector Packet Processing
vhost_user_api.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * vhost-user_api.c - vhost-user api
4  *
5  * Copyright (c) 2016 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>
26 
27 #include <vnet/vnet_msg_enum.h>
28 
29 #define vl_typedefs /* define message structures */
30 #include <vnet/vnet_all_api_h.h>
31 #undef vl_typedefs
32 
33 #define vl_endianfun /* define message structures */
34 #include <vnet/vnet_all_api_h.h>
35 #undef vl_endianfun
36 
37 /* instantiate all the print functions we know about */
38 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
39 #define vl_printfun
40 #include <vnet/vnet_all_api_h.h>
41 #undef vl_printfun
42 
44 
45 #define foreach_vpe_api_msg \
46 _(CREATE_VHOST_USER_IF, create_vhost_user_if) \
47 _(MODIFY_VHOST_USER_IF, modify_vhost_user_if) \
48 _(DELETE_VHOST_USER_IF, delete_vhost_user_if) \
49 _(SW_INTERFACE_VHOST_USER_DUMP, sw_interface_vhost_user_dump)
50 
51 /*
52  * WARNING: replicated pending api refactor completion
53  */
54 static void
57  u32 sw_if_index)
58 {
60 
61  mp = vl_msg_api_alloc (sizeof (*mp));
62  memset (mp, 0, sizeof (*mp));
63  mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_SET_FLAGS);
64  mp->sw_if_index = ntohl (sw_if_index);
65 
66  mp->admin_up_down = 0;
67  mp->link_up_down = 0;
68  mp->deleted = 1;
69  vl_msg_api_send_shmem (q, (u8 *) & mp);
70 }
71 
72 static void
74 {
75  int rv = 0;
77  u32 sw_if_index = (u32) ~ 0;
78  vnet_main_t *vnm = vnet_get_main ();
80 
81  rv = vhost_user_create_if (vnm, vm, (char *) mp->sock_filename,
82  mp->is_server, &sw_if_index, (u64) ~ 0,
83  mp->renumber, ntohl (mp->custom_dev_instance),
84  (mp->use_custom_mac) ? mp->mac_address : NULL,
85  mp->operation_mode);
86 
87  /* Remember an interface tag for the new interface */
88  if (rv == 0)
89  {
90  /* If a tag was supplied... */
91  if (mp->tag[0])
92  {
93  /* Make sure it's a proper C-string */
94  mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
95  u8 *tag = format (0, "%s%c", mp->tag, 0);
96  vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
97  }
98  }
99 
100  /* *INDENT-OFF* */
101  REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_REPLY,
102  ({
103  rmp->sw_if_index = ntohl (sw_if_index);
104  }));
105  /* *INDENT-ON* */
106 }
107 
108 static void
110 {
111  int rv = 0;
113  u32 sw_if_index = ntohl (mp->sw_if_index);
114 
115  vnet_main_t *vnm = vnet_get_main ();
117 
118  rv = vhost_user_modify_if (vnm, vm, (char *) mp->sock_filename,
119  mp->is_server, sw_if_index, (u64) ~ 0,
120  mp->renumber, ntohl (mp->custom_dev_instance),
121  mp->operation_mode);
122 
123  REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_REPLY);
124 }
125 
126 static void
128 {
129  int rv = 0;
132  u32 sw_if_index = ntohl (mp->sw_if_index);
133 
134  vnet_main_t *vnm = vnet_get_main ();
136 
137  rv = vhost_user_delete_if (vnm, vm, sw_if_index);
138 
139  REPLY_MACRO (VL_API_DELETE_VHOST_USER_IF_REPLY);
140  if (!rv)
141  {
144  if (!q)
145  return;
146 
147  vnet_clear_sw_interface_tag (vnm, sw_if_index);
148  send_sw_interface_flags_deleted (vam, q, sw_if_index);
149  }
150 }
151 
152 static void
156  u32 context)
157 {
159 
160  mp = vl_msg_api_alloc (sizeof (*mp));
161  memset (mp, 0, sizeof (*mp));
162  mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_VHOST_USER_DETAILS);
163  mp->sw_if_index = ntohl (vui->sw_if_index);
164  mp->virtio_net_hdr_sz = ntohl (vui->virtio_net_hdr_sz);
165  mp->features = clib_net_to_host_u64 (vui->features);
166  mp->is_server = vui->is_server;
167  mp->operation_mode = vui->operation_mode;
168  mp->num_regions = ntohl (vui->num_regions);
169  mp->sock_errno = ntohl (vui->sock_errno);
170  mp->context = context;
171 
172  strncpy ((char *) mp->sock_filename,
173  (char *) vui->sock_filename, ARRAY_LEN (mp->sock_filename) - 1);
174  strncpy ((char *) mp->interface_name,
175  (char *) vui->if_name, ARRAY_LEN (mp->interface_name) - 1);
176 
177  vl_msg_api_send_shmem (q, (u8 *) & mp);
178 }
179 
180 static void
183 {
184  int rv = 0;
186  vnet_main_t *vnm = vnet_get_main ();
191 
193  if (q == 0)
194  return;
195 
196  rv = vhost_user_dump_ifs (vnm, vm, &ifaces);
197  if (rv)
198  return;
199 
200  vec_foreach (vuid, ifaces)
201  {
203  }
204  vec_free (ifaces);
205 }
206 
207 /*
208  * vhost-user_api_hookup
209  * Add vpe's API message handlers to the table.
210  * vlib has alread mapped shared memory and
211  * added the client registration handlers.
212  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
213  */
214 #define vl_msg_name_crc_list
215 #include <vnet/vnet_all_api_h.h>
216 #undef vl_msg_name_crc_list
217 
218 static void
220 {
221 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
222  foreach_vl_msg_name_crc_vhost_user;
223 #undef _
224 }
225 
226 static clib_error_t *
228 {
229  api_main_t *am = &api_main;
230 
231 #define _(N,n) \
232  vl_msg_api_set_handlers(VL_API_##N, #n, \
233  vl_api_##n##_t_handler, \
234  vl_noop_handler, \
235  vl_api_##n##_t_endian, \
236  vl_api_##n##_t_print, \
237  sizeof(vl_api_##n##_t), 1);
239 #undef _
240 
241  /*
242  * Set up the (msg_name, crc, message-id) table
243  */
245 
246  return 0;
247 }
248 
250 
251 /*
252  * fd.io coding-style-patch-verification: ON
253  *
254  * Local Variables:
255  * eval: (c-set-style "gnu")
256  * End:
257  */
static clib_error_t * vhost_user_api_hookup(vlib_main_t *vm)
void vl_msg_api_send_shmem(unix_shared_memory_queue_t *q, u8 *elem)
VLIB_API_INIT_FUNCTION(vhost_user_api_hookup)
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
Vhost-user interface details structure (fix this)
Definition: vhost_user.api:108
Set flags on the interface.
Definition: interface.api:9
#define REPLY_MACRO2(t, body)
#define NULL
Definition: clib.h:55
static void vl_api_delete_vhost_user_if_t_handler(vl_api_delete_vhost_user_if_t *mp)
static void vnet_clear_sw_interface_tag(vnet_main_t *vnm, u32 sw_if_index)
unix_shared_memory_queue_t * vl_api_client_index_to_input_queue(u32 index)
int vhost_user_create_if(vnet_main_t *vnm, vlib_main_t *vm, const char *sock_filename, u8 is_server, u32 *sw_if_index, u64 feature_mask, u8 renumber, u32 custom_dev_instance, u8 *hwaddr, u8 operation_mode)
Definition: vhost-user.c:2810
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:418
vhost-user interface create request
Definition: vhost_user.api:24
api_main_t api_main
Definition: api_shared.c:35
unsigned long u64
Definition: types.h:89
static void vl_api_modify_vhost_user_if_t_handler(vl_api_modify_vhost_user_if_t *mp)
static void vl_api_create_vhost_user_if_t_handler(vl_api_create_vhost_user_if_t *mp)
static void send_sw_interface_flags_deleted(vpe_api_main_t *am, unix_shared_memory_queue_t *q, u32 sw_if_index)
int vhost_user_modify_if(vnet_main_t *vnm, vlib_main_t *vm, const char *sock_filename, u8 is_server, u32 sw_if_index, u64 feature_mask, u8 renumber, u32 custom_dev_instance, u8 operation_mode)
Definition: vhost-user.c:2869
int vhost_user_delete_if(vnet_main_t *vnm, vlib_main_t *vm, u32 sw_if_index)
Definition: vhost-user.c:2552
#define foreach_vpe_api_msg
vhost-user interface create response
Definition: vhost_user.api:43
#define REPLY_MACRO(t)
int vhost_user_dump_ifs(vnet_main_t *vnm, vlib_main_t *vm, vhost_user_intf_details_t **out_vuids)
Definition: vhost-user.c:3054
static void setup_message_id_table(api_main_t *am)
void * vl_msg_api_alloc(int nbytes)
vhost-user interface delete response
Definition: vhost_user.api:92
vlib_main_t * vm
Definition: buffer.c:276
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:340
#define ARRAY_LEN(x)
Definition: clib.h:59
vhost-user interface modify request
Definition: vhost_user.api:56
unsigned int u32
Definition: types.h:88
static void vnet_set_sw_interface_tag(vnet_main_t *vnm, u8 *tag, u32 sw_if_index)
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
unsigned char u8
Definition: types.h:56
#define vec_foreach(var, vec)
Vector iterator.
vhost-user interface delete request
Definition: vhost_user.api:81
vhost-user interface modify response
Definition: vhost_user.api:72
vpe_api_main_t vpe_api_main
Definition: api.c:161
static void vl_api_sw_interface_vhost_user_dump_t_handler(vl_api_sw_interface_vhost_user_dump_t *mp)
struct _unix_shared_memory_queue unix_shared_memory_queue_t
static void send_sw_interface_vhost_user_details(vpe_api_main_t *am, unix_shared_memory_queue_t *q, vhost_user_intf_details_t *vui, u32 context)