X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fgtpu%2Fgtpu_test.c;h=36f4a8e1e49fa8c83ef5652dd10ecd5cb969e6c9;hb=49228efce;hp=1eb54d6a6b867919a34e2237ba97d360bea1df54;hpb=59b2565cd91a67ced650739f36129650830211ac;p=vpp.git diff --git a/src/plugins/gtpu/gtpu_test.c b/src/plugins/gtpu/gtpu_test.c index 1eb54d6a6b8..36f4a8e1e49 100644 --- a/src/plugins/gtpu/gtpu_test.c +++ b/src/plugins/gtpu/gtpu_test.c @@ -22,6 +22,8 @@ #define __plugin_msg_base gtpu_test_main.msg_id_base #include +#include +#include uword unformat_ip46_address (unformat_input_t * input, va_list * args) { @@ -60,36 +62,6 @@ uword unformat_ip46_prefix (unformat_input_t * input, va_list * args) } ///////////////////////// -#define vl_msg_id(n,h) n, -typedef enum { -#include - /* We'll want to know how many messages IDs we need... */ - VL_MSG_FIRST_AVAILABLE, -} vl_msg_id_t; -#undef vl_msg_id - -/* define message structures */ -#define vl_typedefs -#include -#undef vl_typedefs - -/* declare message handlers for each api */ - -#define vl_endianfun /* define message structures */ -#include -#undef vl_endianfun - -/* instantiate all the print functions we know about */ -#define vl_print(handle, ...) -#define vl_printfun -#include -#undef vl_printfun - -/* Get the API version number. */ -#define vl_api_version(n,v) static u32 api_version=(v); -#include -#undef vl_api_version - typedef struct { /* API message ID base */ u16 msg_id_base; @@ -115,36 +87,6 @@ static void vl_api_gtpu_add_del_tunnel_reply_t_handler } } - -#define foreach_standard_reply_retval_handler \ - _(sw_interface_set_gtpu_bypass_reply) - -#define _(n) \ - static void vl_api_##n##_t_handler \ - (vl_api_##n##_t * mp) \ - { \ - vat_main_t * vam = gtpu_test_main.vat_main; \ - i32 retval = ntohl(mp->retval); \ - if (vam->async_mode) { \ - vam->async_errors += (retval < 0); \ - } else { \ - vam->retval = retval; \ - vam->result_ready = 1; \ - } \ - } - foreach_standard_reply_retval_handler; -#undef _ - -/* - * Table of message reply handlers, must include boilerplate handlers - * we just generated - */ -#define foreach_vpe_api_reply_msg \ - _(SW_INTERFACE_SET_GTPU_BYPASS_REPLY, sw_interface_set_gtpu_bypass_reply) \ - _(GTPU_ADD_DEL_TUNNEL_REPLY, gtpu_add_del_tunnel_reply) \ - _(GTPU_TUNNEL_DETAILS, gtpu_tunnel_details) - - static uword api_unformat_sw_if_index (unformat_input_t * input, va_list * args) { @@ -247,8 +189,8 @@ api_gtpu_add_del_tunnel (vat_main_t * vam) int ret; /* Can't "universally zero init" (={0}) due to GCC bug 53119 */ - memset (&src, 0, sizeof src); - memset (&dst, 0, sizeof dst); + clib_memset (&src, 0, sizeof src); + clib_memset (&dst, 0, sizeof dst); while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { @@ -436,62 +378,4 @@ api_gtpu_tunnel_dump (vat_main_t * vam) return ret; } -/* - * List of messages that the api test plugin sends, - * and that the data plane plugin processes - */ -#define foreach_vpe_api_msg \ -_(sw_interface_set_gtpu_bypass, \ - " | sw_if_index [ip4 | ip6] [enable | disable]") \ -_(gtpu_add_del_tunnel, \ - "src { dst | group \n" \ - "{ | mcast_sw_if_index } }\n" \ - "teid [encap-vrf-id ] [decap-next ] [del]") \ -_(gtpu_tunnel_dump, "[ | sw_if_index ]") \ - -static void -gtpu_vat_api_hookup (vat_main_t *vam) -{ - gtpu_test_main_t * gtm = >pu_test_main; - /* Hook up handlers for replies from the data plane plug-in */ -#define _(N,n) \ - vl_msg_api_set_handlers((VL_API_##N + gtm->msg_id_base), \ - #n, \ - vl_api_##n##_t_handler, \ - vl_noop_handler, \ - vl_api_##n##_t_endian, \ - vl_api_##n##_t_print, \ - sizeof(vl_api_##n##_t), 1); - foreach_vpe_api_reply_msg; -#undef _ - - /* API messages we can send */ -#define _(n,h) hash_set_mem (vam->function_by_name, #n, api_##n); - foreach_vpe_api_msg; -#undef _ - - /* Help strings */ -#define _(n,h) hash_set_mem (vam->help_by_name, #n, h); - foreach_vpe_api_msg; -#undef _ -} - -clib_error_t * vat_plugin_register (vat_main_t *vam) -{ - gtpu_test_main_t * gtm = >pu_test_main; - - u8 * name; - - gtm->vat_main = vam; - - /* Ask the vpp engine for the first assigned message-id */ - name = format (0, "gtpu_%08x%c", api_version, 0); - gtm->msg_id_base = vl_client_get_first_plugin_msg_id ((char *) name); - - if (gtm->msg_id_base != (u16) ~0) - gtpu_vat_api_hookup (vam); - - vec_free(name); - - return 0; -} +#include