44 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__) 50 #define vl_api_version(n,v) static u32 api_version=(v); 61 #define REPLY_MACRO(t) \ 63 unix_shared_memory_queue_t * q = \ 64 vl_api_client_index_to_input_queue (mp->client_index); \ 68 rmp = vl_msg_api_alloc (sizeof (*rmp)); \ 69 rmp->_vl_msg_id = htons ((t)+mm->msg_id_base); \ 70 rmp->context = mp->context; \ 71 rmp->retval = htonl (rv); \ 73 vl_msg_api_send_shmem (q, (u8 *)&rmp); \ 76 #define REPLY_MACRO2(t, body) \ 78 unix_shared_memory_queue_t * q = \ 79 vl_api_client_index_to_input_queue (mp->client_index); \ 83 rmp = vl_msg_api_alloc (sizeof (*rmp)); \ 84 rmp->_vl_msg_id = htons ((t)+mm->msg_id_base); \ 85 rmp->context = mp->context; \ 86 rmp->retval = htonl (rv); \ 87 do {body;} while (0); \ 88 vl_msg_api_send_shmem (q, (u8 *)&rmp); \ 91 #define foreach_memif_plugin_api_msg \ 92 _(MEMIF_CREATE, memif_create) \ 93 _(MEMIF_DELETE, memif_delete) \ 94 _(MEMIF_DUMP, memif_dump) \ 108 static const u8 empty_hw_addr[6];
112 args.
id = clib_net_to_host_u32 (mp->
id);
126 if (strlen ((
char *) mp->
secret) > 0)
161 rv = VNET_API_ERROR_INVALID_ARGUMENT;
174 if (memcmp (mp->
hw_addr, empty_hw_addr, 6) != 0)
204 vl_api_memif_delete_reply_t *rmp;
211 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
225 u8 * interface_name,
u32 context)
237 memset (mp, 0,
sizeof (*mp));
239 mp->_vl_msg_id = htons (VL_API_MEMIF_DETAILS + mm->
msg_id_base);
247 mp->
id = clib_host_to_net_u32 (mif->
id);
248 mp->
role = (mif->
flags & MEMIF_IF_FLAG_IS_SLAVE) ? 1 : 0;
282 swif = vnet_get_sw_interface (vnm, mif->sw_if_index);
284 if_name = format (if_name,
"%U%c",
285 format_vnet_sw_interface_name,
288 send_memif_details (q, mif, swif, if_name, mp->context);
289 _vec_len (if_name) = 0;
296 #define vl_msg_name_crc_list 298 #undef vl_msg_name_crc_list 303 #define _(id,n,crc) \ 304 vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + mm->msg_id_base); 305 foreach_vl_msg_name_crc_memif;
318 name =
format (0,
"memif_%08x%c", api_version, 0);
325 vl_msg_api_set_handlers((VL_API_##N + mm->msg_id_base), \ 327 vl_api_##n##_t_handler, \ 329 vl_api_##n##_t_endian, \ 330 vl_api_##n##_t_print, \ 331 sizeof(vl_api_##n##_t), 1);
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
u16 vl_msg_api_get_msg_ids(const char *name, int n)
void vl_api_memif_dump_t_handler(vl_api_memif_dump_t *mp)
Message handler for memif_dump API.
vnet_main_t * vnet_get_main(void)
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
Create memory interface response.
memif_socket_file_t * socket_files
memif_log2_ring_size_t log2_ring_size
memif_interface_mode_t mode
#define VNET_HW_INTERFACE_FLAG_LINK_UP
Dump all memory interfaces.
static uword min_log2(uword x)
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
clib_error_t * memif_plugin_api_hookup(vlib_main_t *vm)
memif_log2_ring_size_t log2_ring_size
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
vnet_device_class_t memif_device_class
u16 msg_id_base
API message ID base.
void * vl_msg_api_alloc(int nbytes)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
static void setup_message_id_table(memif_main_t *mm, api_main_t *am)
int memif_delete_if(vlib_main_t *vm, memif_if_t *mif)
void vl_api_memif_create_t_handler(vl_api_memif_create_t *mp)
Message handler for memif_create API.
int memif_create_if(vlib_main_t *vm, memif_create_if_args_t *args)
#define MEMIF_DEFAULT_TX_QUEUES
API main structure, used by both vpp and binary API clients.
Memory interface details structure.
#define vec_free(V)
Free vector's memory (no header).
unix_shared_memory_queue_t * vl_api_client_index_to_input_queue(u32 index)
void vl_api_memif_delete_t_handler(vl_api_memif_delete_t *mp)
Message handler for memif_delete API.
#define MEMIF_DEFAULT_BUFFER_SIZE
#define VNET_SW_INTERFACE_FLAG_ADMIN_UP
void vl_msg_api_send_shmem(unix_shared_memory_queue_t *q, u8 *elem)
#define MEMIF_DEFAULT_RX_QUEUES
static vlib_main_t * vlib_get_main(void)
static uword is_pow2(uword x)
struct memif_if_t::@338 run
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
#define foreach_memif_plugin_api_msg
#define REPLY_MACRO2(t, body)
static void send_memif_details(unix_shared_memory_queue_t *q, memif_if_t *mif, vnet_sw_interface_t *swif, u8 *interface_name, u32 context)
#define MEMIF_DEFAULT_RING_SIZE
struct _unix_shared_memory_queue unix_shared_memory_queue_t