FD.io VPP  v18.10-32-g1161dda
Vector Packet Processing
trace_api.c
Go to the documentation of this file.
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>
26 
27 #include <vlibapi/api.h>
28 #include <vlibmemory/api.h>
29 
30 
31 /* define message IDs */
33 
34 /* define message structures */
35 #define vl_typedefs
37 #undef vl_typedefs
38 
39 /* define generated endian-swappers */
40 #define vl_endianfun
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
48 #undef vl_printfun
49 
50 /* Get the API version number */
51 #define vl_api_version(n,v) static u32 api_version=(v);
53 #undef vl_api_version
54 
55 /*
56  * A handy macro to set up a message reply.
57  * Assumes that the following variables are available:
58  * mp - pointer to request message
59  * rmp - pointer to reply message type
60  * rv - return value
61  */
62 
63 #define TRACE_REPLY_MACRO(t) \
64 do { \
65  svm_queue_t * q = \
66  vl_api_client_index_to_input_queue (mp->client_index); \
67  if (!q) \
68  return; \
69  \
70  rmp = vl_msg_api_alloc (sizeof (*rmp)); \
71  rmp->_vl_msg_id = ntohs((t)+sm->msg_id_base); \
72  rmp->context = mp->context; \
73  rmp->retval = ntohl(rv); \
74  \
75  vl_msg_api_send_shmem (q, (u8 *)&rmp); \
76 } while(0);
77 
78 /* *INDENT-OFF* */
79 #define TRACE_REPLY_MACRO2(t, body) \
80 do { \
81  svm_queue_t * q; \
82  rv = vl_msg_api_pd_handler (mp, rv); \
83  q = vl_api_client_index_to_input_queue (mp->client_index); \
84  if (!q) \
85  return; \
86  \
87  rmp = vl_msg_api_alloc (sizeof (*rmp)); \
88  rmp->_vl_msg_id = ntohs((t)+sm->msg_id_base); \
89  rmp->context = mp->context; \
90  rmp->retval = ntohl(rv); \
91  do {body;} while (0); \
92  vl_msg_api_send_shmem (q, (u8 *)&rmp); \
93 } while(0);
94 /* *INDENT-ON* */
95 
96 /* List of message types that this plugin understands */
97 
98 #define foreach_trace_plugin_api_msg \
99 _(TRACE_PROFILE_ADD, trace_profile_add) \
100 _(TRACE_PROFILE_DEL, trace_profile_del) \
101 _(TRACE_PROFILE_SHOW_CONFIG, trace_profile_show_config)
102 
105 {
106  trace_main_t *sm = &trace_main;
107  int rv = 0;
108  vl_api_trace_profile_add_reply_t *rmp;
109  trace_profile *profile = NULL;
110 
111  profile = trace_profile_find ();
112  if (profile)
113  {
114  rv =
115  trace_profile_create (profile, mp->trace_type, mp->num_elts,
116  mp->trace_tsp, ntohl (mp->node_id),
117  ntohl (mp->app_data));
118  if (rv != 0)
119  goto ERROROUT;
120  }
121  else
122  {
123  rv = -3;
124  }
125 ERROROUT:
126  TRACE_REPLY_MACRO (VL_API_TRACE_PROFILE_ADD_REPLY);
127 }
128 
129 
132 {
133  trace_main_t *sm = &trace_main;
134  int rv = 0;
135  vl_api_trace_profile_del_reply_t *rmp;
136 
138 
139  TRACE_REPLY_MACRO (VL_API_TRACE_PROFILE_DEL_REPLY);
140 }
141 
144 {
145  trace_main_t *sm = &trace_main;
147  int rv = 0;
148  trace_profile *profile = trace_profile_find ();
149  if (profile->valid)
150  {
151  TRACE_REPLY_MACRO2 (VL_API_TRACE_PROFILE_SHOW_CONFIG_REPLY,
152  rmp->trace_type = profile->trace_type;
153  rmp->num_elts = profile->num_elts;
154  rmp->trace_tsp = profile->trace_tsp;
155  rmp->node_id = htonl (profile->node_id);
156  rmp->app_data = htonl (profile->app_data);
157  );
158  }
159  else
160  {
161  TRACE_REPLY_MACRO2 (VL_API_TRACE_PROFILE_SHOW_CONFIG_REPLY,
162  rmp->trace_type = 0;
163  rmp->num_elts = 0; rmp->trace_tsp = 0;
164  rmp->node_id = 0; rmp->app_data = 0;
165  );
166  }
167 }
168 
169 /* Set up the API message handling tables */
170 static clib_error_t *
172 {
173  trace_main_t *sm = &trace_main;
174 #define _(N,n) \
175  vl_msg_api_set_handlers((VL_API_##N + sm->msg_id_base), \
176  #n, \
177  vl_api_##n##_t_handler, \
178  vl_noop_handler, \
179  vl_api_##n##_t_endian, \
180  vl_api_##n##_t_print, \
181  sizeof(vl_api_##n##_t), 1);
183 #undef _
184 
185  return 0;
186 }
187 
188 #define vl_msg_name_crc_list
190 #undef vl_msg_name_crc_list
191 
192 static void
194 {
195 #define _(id,n,crc) \
196  vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + sm->msg_id_base);
197  foreach_vl_msg_name_crc_trace;
198 #undef _
199 }
200 
201 static clib_error_t *
203 {
204  trace_main_t *sm = &trace_main;
205  clib_error_t *error = 0;
206  u8 *name;
207 
208  bzero (sm, sizeof (trace_main));
209  (void) trace_util_init ();
210 
211  sm->vlib_main = vm;
212  sm->vnet_main = vnet_get_main ();
213 
214  name = format (0, "ioam_trace_%08x%c", api_version, 0);
215 
216  /* Ask for a correctly-sized block of API message decode slots */
218  ((char *) name, VL_MSG_FIRST_AVAILABLE);
219 
220  error = trace_plugin_api_hookup (vm);
221 
222  /* Add our API messages to the global name_crc hash table */
224 
225  vec_free (name);
226 
227  return error;
228 }
229 
231 
232 /*
233  * fd.io coding-style-patch-verification: ON
234  *
235  * Local Variables:
236  * eval: (c-set-style "gnu")
237  * End:
238  */
static void vl_api_trace_profile_show_config_t_handler(vl_api_trace_profile_show_config_t *mp)
Definition: trace_api.c:143
vnet_main_t * vnet_get_main(void)
Definition: misc.c:47
Show trace Profile.
Definition: trace.api:49
#define NULL
Definition: clib.h:57
static clib_error_t * trace_plugin_api_hookup(vlib_main_t *vm)
Definition: trace_api.c:171
trace_main_t trace_main
Definition: trace_util.c:23
static trace_profile * trace_profile_find(void)
Definition: trace_config.h:24
#define TRACE_REPLY_MACRO2(t, body)
Definition: trace_api.c:79
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
unsigned char u8
Definition: types.h:56
vnet_main_t * vnet_main
Definition: trace_util.h:62
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:163
Delete trace Profile.
Definition: trace.api:40
void clear_trace_profiles(void)
Definition: trace_util.c:96
iOAM6 Trace - Set the iOAM6 trace profile
Definition: trace.api:26
u16 msg_id_base
Definition: trace_util.h:58
u8 name[64]
Definition: memclnt.api:151
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:201
vlib_main_t * vm
Definition: buffer.c:294
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:339
Show trace config response.
Definition: trace.api:63
#define TRACE_REPLY_MACRO(t)
Definition: trace_api.c:63
static void vl_api_trace_profile_del_t_handler(vl_api_trace_profile_del_t *mp)
Definition: trace_api.c:131
static void setup_message_id_table(trace_main_t *sm, api_main_t *am)
Definition: trace_api.c:193
#define foreach_trace_plugin_api_msg
Definition: trace_api.c:98
static void vl_api_trace_profile_add_t_handler(vl_api_trace_profile_add_t *mp)
Definition: trace_api.c:104
int trace_util_init(void)
Definition: trace_util.c:47
static clib_error_t * trace_init(vlib_main_t *vm)
Definition: trace_api.c:202
api_main_t api_main
Definition: api_shared.c:35
int trace_profile_create(trace_profile *profile, u8 trace_type, u8 num_elts, u32 trace_tsp, u32 node_id, u32 app_data)
Definition: trace_util.c:57
vlib_main_t * vlib_main
Definition: trace_util.h:61
u16 vl_msg_api_get_msg_ids(const char *name, int n)
Definition: api_shared.c:865