blob: 2d148472d429beac71b47d7c96ae89444a2ca8f8 [file] [log] [blame]
Ole Troandf87f802020-11-18 19:17:48 +01001/*
2 * Copyright (c) 2020 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#include <stdio.h>
Ole Troan91144fb2021-08-17 12:57:00 +020017#include <stdlib.h>
Ole Troandf87f802020-11-18 19:17:48 +010018#include <stdbool.h>
19#include <ctype.h>
Ole Troan91144fb2021-08-17 12:57:00 +020020#include <getopt.h>
Filip Tehlar36217e32021-07-23 08:51:10 +000021#include <string.h>
Ole Troandf87f802020-11-18 19:17:48 +010022#include <vlib/vlib.h>
23#include <vlibapi/api_types.h>
Ole Troan91144fb2021-08-17 12:57:00 +020024#include <vppinfra/hash.h>
Ole Troandf87f802020-11-18 19:17:48 +010025#include <vppinfra/cJSON.h>
26
27/* VPP API client includes */
28#include <vpp-api/client/vppapiclient.h>
29
30#include <limits.h>
31#include "vat2.h"
32
Filip Tehlar36217e32021-07-23 08:51:10 +000033/*
34 * Filter these messages as they are used to manage the API connection to VPP
35 */
36char *filter_messages_strings[] = { "memclnt_create",
37 "memclnt_delete",
38 "sockclnt_create",
39 "sockclnt_delete",
40 "memclnt_rx_thread_suspend",
41 "memclnt_read_timeout",
42 "rx_thread_exit",
43 "trace_plugin_msg_ids",
44 0 };
45
46static bool
47filter_message (char *msgname)
48{
49 char **p = filter_messages_strings;
50
51 while (*p)
52 {
53 if (strcmp (*p, msgname) == 0)
54 return true;
55 p++;
56 }
57 return false;
58}
59
Ole Troandf87f802020-11-18 19:17:48 +010060uword *function_by_name;
61bool debug = false;
62
63char *vat2_plugin_path;
64static void
65vat2_find_plugin_path ()
66{
67 char *p, path[PATH_MAX];
68 int rv;
69 u8 *s;
70
71 /* find executable path */
72 if ((rv = readlink ("/proc/self/exe", path, PATH_MAX - 1)) == -1)
73 return;
74
75 /* readlink doesn't provide null termination */
76 path[rv] = 0;
77
78 /* strip filename */
79 if ((p = strrchr (path, '/')) == 0)
80 return;
81 *p = 0;
82
83 /* strip bin/ */
84 if ((p = strrchr (path, '/')) == 0)
85 return;
86 *p = 0;
87
88 s = format (0, "%s/lib/" CLIB_TARGET_TRIPLET "/vat2_plugins:"
89 "%s/lib/vat2_plugins", path, path);
90 vec_add1 (s, 0);
91 vat2_plugin_path = (char *) s;
92}
93
94void
95vac_callback (unsigned char *data, int len)
96{
97 u16 result_msg_id = ntohs(*((u16 *)data));
98 DBG("Received something async: %d\n", result_msg_id);
99}
100
101int vat2_load_plugins (char *path, char *filter, int *loaded);
102
103static int
104register_function (void)
105{
106 int loaded;
107
108 vat2_find_plugin_path();
109 DBG("Plugin Path %s\n", vat2_plugin_path);
110 int rv = vat2_load_plugins(vat2_plugin_path, 0, &loaded);
111 DBG("Loaded %u plugins\n", loaded);
112 return rv;
113}
114
Ole Troan91144fb2021-08-17 12:57:00 +0200115struct apifuncs_s
Ole Troandf87f802020-11-18 19:17:48 +0100116{
Ole Troan91144fb2021-08-17 12:57:00 +0200117 cJSON (*f) (cJSON *);
118 cJSON (*tojson) (void *);
Filip Tehlar36217e32021-07-23 08:51:10 +0000119 u32 crc;
Ole Troan91144fb2021-08-17 12:57:00 +0200120};
121
122struct apifuncs_s *apifuncs = 0;
123
124void
125vat2_register_function (char *name, cJSON (*f) (cJSON *),
Filip Tehlar36217e32021-07-23 08:51:10 +0000126 cJSON (*tojson) (void *), u32 crc)
Ole Troan91144fb2021-08-17 12:57:00 +0200127{
Filip Tehlar36217e32021-07-23 08:51:10 +0000128 struct apifuncs_s funcs = { .f = f, .tojson = tojson, .crc = crc };
Ole Troan91144fb2021-08-17 12:57:00 +0200129 vec_add1 (apifuncs, funcs);
130 hash_set_mem (function_by_name, name, vec_len (apifuncs) - 1);
131}
132
133static int
134vat2_exec_command_by_name (char *msgname, cJSON *o)
135{
Filip Tehlard6f22aa2021-09-29 14:20:49 +0000136 u32 crc = 0;
Filip Tehlar36217e32021-07-23 08:51:10 +0000137 if (filter_message (msgname))
138 return 0;
139
140 cJSON *crc_obj = cJSON_GetObjectItem (o, "_crc");
Filip Tehlard6f22aa2021-09-29 14:20:49 +0000141 if (crc_obj)
Filip Tehlar36217e32021-07-23 08:51:10 +0000142 {
Filip Tehlard6f22aa2021-09-29 14:20:49 +0000143 char *crc_str = cJSON_GetStringValue (crc_obj);
144 crc = (u32) strtol (crc_str, NULL, 16);
Filip Tehlar36217e32021-07-23 08:51:10 +0000145 }
Filip Tehlar36217e32021-07-23 08:51:10 +0000146
Ole Troan91144fb2021-08-17 12:57:00 +0200147 uword *p = hash_get_mem (function_by_name, msgname);
148 if (!p)
149 {
Filip Tehlar36217e32021-07-23 08:51:10 +0000150 fprintf (stderr, "No such command %s\n", msgname);
Ole Troan91144fb2021-08-17 12:57:00 +0200151 return -1;
152 }
Filip Tehlard6f22aa2021-09-29 14:20:49 +0000153 if (crc && crc != apifuncs[p[0]].crc)
Filip Tehlar36217e32021-07-23 08:51:10 +0000154 {
155 fprintf (stderr, "API CRC does not match: %s!\n", msgname);
156 }
Ole Troan91144fb2021-08-17 12:57:00 +0200157
158 cJSON *(*fp) (cJSON *);
159 fp = (void *) apifuncs[p[0]].f;
160 cJSON *r = (*fp) (o);
161
162 if (r)
163 {
164 char *output = cJSON_Print (r);
165 cJSON_Delete (r);
166 printf ("%s\n", output);
167 free (output);
168 }
169 else
170 {
171 fprintf (stderr, "Call failed: %s\n", msgname);
172 return -1;
173 }
174 return 0;
175}
176
177static int
178vat2_exec_command (cJSON *o)
179{
180
181 cJSON *msg_id_obj = cJSON_GetObjectItem (o, "_msgname");
182 if (!msg_id_obj)
183 {
184 fprintf (stderr, "Missing '_msgname' element!\n");
185 return -1;
186 }
187
188 char *name = cJSON_GetStringValue (msg_id_obj);
Filip Tehlar36217e32021-07-23 08:51:10 +0000189
Ole Troan91144fb2021-08-17 12:57:00 +0200190 return vat2_exec_command_by_name (name, o);
191}
Filip Tehlar36217e32021-07-23 08:51:10 +0000192
Ole Troan91144fb2021-08-17 12:57:00 +0200193static void
194print_template (char *msgname)
195{
196 uword *p = hash_get_mem (function_by_name, msgname);
197 if (!p)
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200198 goto error;
199
Ole Troan91144fb2021-08-17 12:57:00 +0200200 cJSON *(*fp) (void *);
201 fp = (void *) apifuncs[p[0]].tojson;
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200202 if (!fp)
203 goto error;
204
Ole Troan91144fb2021-08-17 12:57:00 +0200205 void *scratch = malloc (2048);
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200206 if (!scratch)
207 goto error;
208
Ole Troan91144fb2021-08-17 12:57:00 +0200209 memset (scratch, 0, 2048);
210 cJSON *t = fp (scratch);
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200211 if (!t)
212 goto error;
Ole Troan91144fb2021-08-17 12:57:00 +0200213 free (scratch);
214 char *output = cJSON_Print (t);
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200215 if (!output)
216 goto error;
217
Ole Troan91144fb2021-08-17 12:57:00 +0200218 cJSON_Delete (t);
219 printf ("%s\n", output);
220 free (output);
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200221
222 return;
223
224error:
225 fprintf (stderr, "error printing template for: %s\n", msgname);
Ole Troan91144fb2021-08-17 12:57:00 +0200226}
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200227
Ole Troan91144fb2021-08-17 12:57:00 +0200228static void
229dump_apis (void)
230{
231 char *name;
232 u32 *i;
233 hash_foreach_mem (name, i, function_by_name, ({ printf ("%s\n", name); }));
234}
235
236static void
237print_help (void)
238{
239 char *help_string =
240 "Usage: vat2 [OPTION] <message-name> <JSON object>\n"
241 "Send API message to VPP and print reply\n"
242 "\n"
243 "-d, --debug Print additional information\n"
244 "-p, --prefix Specify shared memory prefix to connect to a given VPP "
245 "instance\n"
246 "-f, --file File containing a JSON object with the arguments for "
247 "the message to send\n"
248 "--dump-apis List all APIs available in VAT2 (might not reflect "
249 "running VPP)\n"
250 "-t, --template Print a template JSON object for given API message\n"
251 "\n";
252 printf ("%s", help_string);
Ole Troandf87f802020-11-18 19:17:48 +0100253}
254
255int main (int argc, char **argv)
256{
257 /* Create a heap of 64MB */
258 clib_mem_init (0, 64 << 20);
Ole Troan91144fb2021-08-17 12:57:00 +0200259 char *filename = 0, *prefix = 0;
Ole Troandf87f802020-11-18 19:17:48 +0100260 int index;
261 int c;
262 opterr = 0;
263 cJSON *o = 0;
Ole Troan91144fb2021-08-17 12:57:00 +0200264 int option_index = 0;
265 bool dump_api = false;
266 bool template = false;
267 char *msgname = 0;
268 static int debug_flag;
269 static struct option long_options[] = {
270 { "debug", no_argument, &debug_flag, 1 },
271 { "prefix", optional_argument, 0, 'p' },
272 { "file", required_argument, 0, 'f' },
273 { "dump-apis", no_argument, 0, 0 },
274 { "template", no_argument, 0, 't' },
275 { 0, 0, 0, 0 }
276 };
Ole Troandf87f802020-11-18 19:17:48 +0100277
Ole Troan91144fb2021-08-17 12:57:00 +0200278 while ((c = getopt_long (argc, argv, "hdp:f:", long_options,
279 &option_index)) != -1)
280 {
281 switch (c)
282 {
283 case 0:
284 if (option_index == 3)
285 dump_api = true;
286 break;
287 case 'd':
288 debug = true;
289 break;
290 case 't':
291 template = true;
292 break;
293 case 'p':
294 prefix = optarg;
295 break;
296 case 'f':
297 filename = optarg;
298 break;
299 case '?':
300 print_help ();
301 return 1;
302 default:
303 abort ();
304 }
Ole Troandf87f802020-11-18 19:17:48 +0100305 }
Ole Troan91144fb2021-08-17 12:57:00 +0200306 debug = debug_flag == 1 ? true : false;
307 DBG ("debug = %d, filename = %s shared memory prefix: %s\n", debug, filename,
308 prefix);
Ole Troandf87f802020-11-18 19:17:48 +0100309
310 for (index = optind; index < argc; index++)
311 DBG ("Non-option argument %s\n", argv[index]);
312
313 index = optind;
314
Ole Troan91144fb2021-08-17 12:57:00 +0200315 if (argc > index + 2)
316 {
317 fprintf (stderr, "%s: Too many arguments\n", argv[0]);
318 exit (-1);
319 }
320
Ole Troandf87f802020-11-18 19:17:48 +0100321 /* Load plugins */
322 function_by_name = hash_create_string (0, sizeof (uword));
323 int res = register_function();
324 if (res < 0) {
325 fprintf(stderr, "%s: loading plugins failed\n", argv[0]);
326 exit(-1);
327 }
328
Ole Troan91144fb2021-08-17 12:57:00 +0200329 if (template)
330 {
331 print_template (argv[index]);
332 exit (0);
Ole Troandf87f802020-11-18 19:17:48 +0100333 }
Ole Troandf87f802020-11-18 19:17:48 +0100334
Ole Troan91144fb2021-08-17 12:57:00 +0200335 if (dump_api)
336 {
337 dump_apis ();
338 exit (0);
339 }
340
341 /* Read message arguments from command line */
342 if (argc >= (index + 1))
343 {
344 msgname = argv[index];
345 }
Ole Troandf87f802020-11-18 19:17:48 +0100346 if (argc == (index + 2)) {
347 o = cJSON_Parse(argv[index+1]);
348 if (!o) {
349 fprintf(stderr, "%s: Failed parsing JSON input: %s\n", argv[0], cJSON_GetErrorPtr());
350 exit(-1);
351 }
352 }
353
Filip Tehlar36217e32021-07-23 08:51:10 +0000354 if (!msgname && !filename)
355 {
356 print_help ();
357 exit (-1);
358 }
359
Ole Troan91144fb2021-08-17 12:57:00 +0200360 /* Read message from file */
Ole Troandf87f802020-11-18 19:17:48 +0100361 if (filename) {
Ole Troan91144fb2021-08-17 12:57:00 +0200362 if (argc > index)
363 {
364 fprintf (stderr, "%s: Superfluous arguments when filename given\n",
365 argv[0]);
366 exit (-1);
367 }
Ole Troandf87f802020-11-18 19:17:48 +0100368
369 FILE *f = fopen(filename, "r");
Ole Troan91144fb2021-08-17 12:57:00 +0200370 size_t chunksize, bufsize;
Ole Troandf87f802020-11-18 19:17:48 +0100371 size_t n_read = 0;
372 size_t n;
373
374 if (!f) {
375 fprintf(stderr, "%s: can't open file: %s\n", argv[0], filename);
376 exit(-1);
377 }
Filip Tehlar36217e32021-07-23 08:51:10 +0000378
Ole Troan91144fb2021-08-17 12:57:00 +0200379 chunksize = bufsize = 1024;
Ole Troandf87f802020-11-18 19:17:48 +0100380 char *buf = malloc(bufsize);
Ole Troan91144fb2021-08-17 12:57:00 +0200381 while ((n = fread (buf + n_read, 1, chunksize, f)))
382 {
383 n_read += n;
384 if (n == chunksize)
385 {
386 bufsize += chunksize;
387 buf = realloc (buf, bufsize);
388 }
389 }
Ole Troandf87f802020-11-18 19:17:48 +0100390 fclose(f);
391 if (n_read) {
392 o = cJSON_Parse(buf);
Ole Troandf87f802020-11-18 19:17:48 +0100393 if (!o) {
394 fprintf(stderr, "%s: Failed parsing JSON input: %s\n", argv[0], cJSON_GetErrorPtr());
395 exit(-1);
396 }
397 }
Filip Tehlar36217e32021-07-23 08:51:10 +0000398 free (buf);
Ole Troandf87f802020-11-18 19:17:48 +0100399 }
400
Filip Tehlar36217e32021-07-23 08:51:10 +0000401 if (!o)
Ole Troan91144fb2021-08-17 12:57:00 +0200402 {
Filip Tehlar36217e32021-07-23 08:51:10 +0000403 fprintf (stderr, "%s: Failed parsing JSON input\n", argv[0]);
Ole Troan91144fb2021-08-17 12:57:00 +0200404 exit (-1);
405 }
Ole Troandf87f802020-11-18 19:17:48 +0100406
Ole Troan91144fb2021-08-17 12:57:00 +0200407 if (vac_connect ("vat2", prefix, 0, 1024))
408 {
409 fprintf (stderr, "Failed connecting to VPP\n");
410 exit (-1);
411 }
Ole Troandf87f802020-11-18 19:17:48 +0100412
Ole Troan91144fb2021-08-17 12:57:00 +0200413 if (msgname)
414 {
415 vat2_exec_command_by_name (msgname, o);
416 }
417 else
418 {
419 if (cJSON_IsArray (o))
420 {
421 size_t size = cJSON_GetArraySize (o);
422 for (int i = 0; i < size; i++)
423 vat2_exec_command (cJSON_GetArrayItem (o, i));
424 }
425 }
426 cJSON_Delete (o);
Ole Troandf87f802020-11-18 19:17:48 +0100427 vac_disconnect();
428 exit (0);
429
430}