a3a253fd9c123bbeb573540df56d407dfbd6f0fd
[vpp.git] / src / plugins / ioam / export-vxlan-gpe / vxlan_gpe_ioam_export_test.c
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  *------------------------------------------------------------------
17  * vxlan_gpe_ioam_export_test.c - test harness plugin
18  *------------------------------------------------------------------
19  */
20
21 #include <vat/vat.h>
22 #include <vlibapi/api.h>
23 #include <vlibmemory/api.h>
24 #include <vppinfra/error.h>
25
26 #define __plugin_msg_base export_test_main.msg_id_base
27 #include <vlibapi/vat_helper_macros.h>
28
29 /* Declare message IDs */
30 #include <ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api_enum.h>
31 #include <ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api_types.h>
32
33 /* instantiate all the print functions we know about */
34 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
35
36 #define vl_endianfun            /* define message structures */
37 #define vl_printfun
38 #define vl_api_version(n,v) static u32 api_version=(v);
39 #include <ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api.h>
40 #undef vl_endianfun
41 #undef vl_printfun
42 #undef vl_api_version
43
44 typedef struct
45 {
46   /* API message ID base */
47   u16 msg_id_base;
48   vat_main_t *vat_main;
49 } export_test_main_t;
50
51 static export_test_main_t export_test_main;
52
53 #define foreach_standard_reply_retval_handler   \
54 _(vxlan_gpe_ioam_export_enable_disable_reply)
55
56 #define _(n)                                            \
57     static void vl_api_##n##_t_handler                  \
58     (vl_api_##n##_t * mp)                               \
59     {                                                   \
60         vat_main_t * vam = export_test_main.vat_main;   \
61         i32 retval = ntohl(mp->retval);                 \
62         if (vam->async_mode) {                          \
63             vam->async_errors += (retval < 0);          \
64         } else {                                        \
65             vam->retval = retval;                       \
66             vam->result_ready = 1;                      \
67         }                                               \
68     }
69 foreach_standard_reply_retval_handler;
70 #undef _
71
72 /*
73  * Table of message reply handlers, must include boilerplate handlers
74  * we just generated
75  */
76 #define foreach_vpe_api_reply_msg                                       \
77 _(VXLAN_GPE_IOAM_EXPORT_ENABLE_DISABLE_REPLY, vxlan_gpe_ioam_export_enable_disable_reply)
78
79 static int
80 api_vxlan_gpe_ioam_export_enable_disable (vat_main_t * vam)
81 {
82   unformat_input_t *i = vam->input;
83   int is_disable = 0;
84   vl_api_vxlan_gpe_ioam_export_enable_disable_t *mp;
85   int ret;
86
87   /* Parse args required to build the message */
88   while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
89     {
90       if (unformat (i, "disable"))
91         is_disable = 1;
92       else
93         break;
94     }
95
96   /* Construct the API message */
97   M (VXLAN_GPE_IOAM_EXPORT_ENABLE_DISABLE, mp);
98   mp->is_disable = is_disable;
99
100   /* send it... */
101   S (mp);
102
103   /* Wait for a reply... */
104   W (ret);
105   return ret;
106 }
107
108 /*
109  * List of messages that the api test plugin sends,
110  * and that the data plane plugin processes
111  */
112 #define foreach_vpe_api_msg \
113 _(vxlan_gpe_ioam_export_enable_disable, "<intfc> [disable]")
114
115 static void
116 vxlan_gpe_ioam_vat_api_hookup (vat_main_t * vam)
117 {
118   export_test_main_t *sm = &export_test_main;
119   /* Hook up handlers for replies from the data plane plug-in */
120 #define _(N,n)                                                  \
121     vl_msg_api_set_handlers((VL_API_##N + sm->msg_id_base),     \
122                            #n,                                  \
123                            vl_api_##n##_t_handler,              \
124                            vl_noop_handler,                     \
125                            vl_api_##n##_t_endian,               \
126                            vl_api_##n##_t_print,                \
127                            sizeof(vl_api_##n##_t), 1);
128   foreach_vpe_api_reply_msg;
129 #undef _
130
131   /* API messages we can send */
132 #define _(n,h) hash_set_mem (vam->function_by_name, #n, api_##n);
133   foreach_vpe_api_msg;
134 #undef _
135
136   /* Help strings */
137 #define _(n,h) hash_set_mem (vam->help_by_name, #n, h);
138   foreach_vpe_api_msg;
139 #undef _
140 }
141
142 clib_error_t *
143 vxlan_gpe_ioam_export_vat_plugin_register (vat_main_t * vam)
144 {
145   export_test_main_t *sm = &export_test_main;
146   u8 *name;
147
148   sm->vat_main = vam;
149
150   name = format (0, "vxlan_gpe_ioam_export_%08x%c", api_version, 0);
151   sm->msg_id_base = vl_client_get_first_plugin_msg_id ((char *) name);
152
153   if (sm->msg_id_base != (u16) ~ 0)
154     vxlan_gpe_ioam_vat_api_hookup (vam);
155
156   vec_free (name);
157
158   return 0;
159 }
160
161 /*
162  * fd.io coding-style-patch-verification: ON
163  *
164  * Local Variables:
165  * eval: (c-set-style "gnu")
166  * End:
167  */