API: Fix shared memory only action handlers.
[vpp.git] / src / plugins / ioam / lib-trace / trace_api.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  * trace_api.c - iOAM Trace related APIs to create
18  *               and maintain profiles
19  *------------------------------------------------------------------
20  */
21
22 #include <vnet/vnet.h>
23 #include <vnet/plugin/plugin.h>
24 #include <ioam/lib-trace/trace_util.h>
25 #include <ioam/lib-trace/trace_config.h>
26 #include <vlibapi/api_helper_macros.h>
27 #include <vlibapi/api.h>
28 #include <vlibmemory/api.h>
29
30
31 /* define message IDs */
32 #include <ioam/lib-trace/trace_msg_enum.h>
33
34 /* define message structures */
35 #define vl_typedefs
36 #include <ioam/lib-trace/trace_all_api_h.h>
37 #undef vl_typedefs
38
39 /* define generated endian-swappers */
40 #define vl_endianfun
41 #include <ioam/lib-trace/trace_all_api_h.h>
42 #undef vl_endianfun
43
44 /* instantiate all the print functions we know about */
45 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
46 #define vl_printfun
47 #include <ioam/lib-trace/trace_all_api_h.h>
48 #undef vl_printfun
49
50 /* Get the API version number */
51 #define vl_api_version(n,v) static u32 api_version=(v);
52 #include <ioam/lib-trace/trace_all_api_h.h>
53 #undef vl_api_version
54
55 /* List of message types that this plugin understands */
56
57 #define foreach_trace_plugin_api_msg                                      \
58 _(TRACE_PROFILE_ADD, trace_profile_add)                                     \
59 _(TRACE_PROFILE_DEL, trace_profile_del)                                     \
60 _(TRACE_PROFILE_SHOW_CONFIG, trace_profile_show_config)
61
62 static void vl_api_trace_profile_add_t_handler
63   (vl_api_trace_profile_add_t * mp)
64 {
65   int rv = 0;
66   vl_api_trace_profile_add_reply_t *rmp;
67   trace_profile *profile = NULL;
68
69   profile = trace_profile_find ();
70   if (profile)
71     {
72       rv =
73         trace_profile_create (profile, mp->trace_type, mp->num_elts,
74                               mp->trace_tsp, ntohl (mp->node_id),
75                               ntohl (mp->app_data));
76       if (rv != 0)
77         goto ERROROUT;
78     }
79   else
80     {
81       rv = -3;
82     }
83 ERROROUT:
84   REPLY_MACRO (VL_API_TRACE_PROFILE_ADD_REPLY);
85 }
86
87
88 static void vl_api_trace_profile_del_t_handler
89   (vl_api_trace_profile_del_t * mp)
90 {
91   int rv = 0;
92   vl_api_trace_profile_del_reply_t *rmp;
93
94   clear_trace_profiles ();
95
96   REPLY_MACRO (VL_API_TRACE_PROFILE_DEL_REPLY);
97 }
98
99 static void vl_api_trace_profile_show_config_t_handler
100   (vl_api_trace_profile_show_config_t * mp)
101 {
102   vl_api_trace_profile_show_config_reply_t *rmp;
103   int rv = 0;
104   trace_profile *profile = trace_profile_find ();
105   if (profile->valid)
106     {
107       REPLY_MACRO2 (VL_API_TRACE_PROFILE_SHOW_CONFIG_REPLY,
108                     rmp->trace_type = profile->trace_type;
109                     rmp->num_elts = profile->num_elts;
110                     rmp->trace_tsp = profile->trace_tsp;
111                     rmp->node_id = htonl (profile->node_id);
112                     rmp->app_data = htonl (profile->app_data);
113         );
114     }
115   else
116     {
117       REPLY_MACRO2 (VL_API_TRACE_PROFILE_SHOW_CONFIG_REPLY,
118                     rmp->trace_type = 0;
119                     rmp->num_elts = 0; rmp->trace_tsp = 0;
120                     rmp->node_id = 0; rmp->app_data = 0;
121         );
122     }
123 }
124
125 /* Set up the API message handling tables */
126 static clib_error_t *
127 trace_plugin_api_hookup (vlib_main_t * vm)
128 {
129   trace_main_t *sm = &trace_main;
130 #define _(N,n)                                                  \
131     vl_msg_api_set_handlers((VL_API_##N + sm->msg_id_base),     \
132                            #n,                                  \
133                            vl_api_##n##_t_handler,              \
134                            vl_noop_handler,                     \
135                            vl_api_##n##_t_endian,               \
136                            vl_api_##n##_t_print,                \
137                            sizeof(vl_api_##n##_t), 1);
138   foreach_trace_plugin_api_msg;
139 #undef _
140
141   return 0;
142 }
143
144 #define vl_msg_name_crc_list
145 #include <ioam/lib-trace/trace_all_api_h.h>
146 #undef vl_msg_name_crc_list
147
148 static void
149 setup_message_id_table (trace_main_t * sm, api_main_t * am)
150 {
151 #define _(id,n,crc) \
152   vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + sm->msg_id_base);
153   foreach_vl_msg_name_crc_trace;
154 #undef _
155 }
156
157 static clib_error_t *
158 trace_init (vlib_main_t * vm)
159 {
160   trace_main_t *sm = &trace_main;
161   clib_error_t *error = 0;
162   u8 *name;
163
164   bzero (sm, sizeof (trace_main));
165   (void) trace_util_init ();
166
167   sm->vlib_main = vm;
168   sm->vnet_main = vnet_get_main ();
169
170   name = format (0, "ioam_trace_%08x%c", api_version, 0);
171
172   /* Ask for a correctly-sized block of API message decode slots */
173   sm->msg_id_base = vl_msg_api_get_msg_ids
174     ((char *) name, VL_MSG_FIRST_AVAILABLE);
175
176   error = trace_plugin_api_hookup (vm);
177
178   /* Add our API messages to the global name_crc hash table */
179   setup_message_id_table (sm, &api_main);
180
181   vec_free (name);
182
183   return error;
184 }
185
186 VLIB_INIT_FUNCTION (trace_init);
187
188 /*
189  * fd.io coding-style-patch-verification: ON
190  *
191  * Local Variables:
192  * eval: (c-set-style "gnu")
193  * End:
194  */