blob: 1aea690ef24615f5eebb3640150e68371952c18d [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
Damjan Marion5546e432021-09-30 20:04:14 +020088 s = format (0, "%s/" CLIB_LIB_DIR "/vat2_plugins", path, path);
Ole Troandf87f802020-11-18 19:17:48 +010089 vec_add1 (s, 0);
90 vat2_plugin_path = (char *) s;
91}
92
93void
94vac_callback (unsigned char *data, int len)
95{
96 u16 result_msg_id = ntohs(*((u16 *)data));
97 DBG("Received something async: %d\n", result_msg_id);
98}
99
100int vat2_load_plugins (char *path, char *filter, int *loaded);
101
102static int
103register_function (void)
104{
105 int loaded;
106
107 vat2_find_plugin_path();
108 DBG("Plugin Path %s\n", vat2_plugin_path);
109 int rv = vat2_load_plugins(vat2_plugin_path, 0, &loaded);
110 DBG("Loaded %u plugins\n", loaded);
111 return rv;
112}
113
Ole Troan91144fb2021-08-17 12:57:00 +0200114struct apifuncs_s
Ole Troandf87f802020-11-18 19:17:48 +0100115{
Ole Troan91144fb2021-08-17 12:57:00 +0200116 cJSON (*f) (cJSON *);
117 cJSON (*tojson) (void *);
Filip Tehlar36217e32021-07-23 08:51:10 +0000118 u32 crc;
Ole Troan91144fb2021-08-17 12:57:00 +0200119};
120
121struct apifuncs_s *apifuncs = 0;
122
123void
124vat2_register_function (char *name, cJSON (*f) (cJSON *),
Filip Tehlar36217e32021-07-23 08:51:10 +0000125 cJSON (*tojson) (void *), u32 crc)
Ole Troan91144fb2021-08-17 12:57:00 +0200126{
Filip Tehlar36217e32021-07-23 08:51:10 +0000127 struct apifuncs_s funcs = { .f = f, .tojson = tojson, .crc = crc };
Ole Troan91144fb2021-08-17 12:57:00 +0200128 vec_add1 (apifuncs, funcs);
129 hash_set_mem (function_by_name, name, vec_len (apifuncs) - 1);
130}
131
132static int
133vat2_exec_command_by_name (char *msgname, cJSON *o)
134{
Filip Tehlard6f22aa2021-09-29 14:20:49 +0000135 u32 crc = 0;
Filip Tehlar36217e32021-07-23 08:51:10 +0000136 if (filter_message (msgname))
137 return 0;
138
139 cJSON *crc_obj = cJSON_GetObjectItem (o, "_crc");
Filip Tehlard6f22aa2021-09-29 14:20:49 +0000140 if (crc_obj)
Filip Tehlar36217e32021-07-23 08:51:10 +0000141 {
Filip Tehlard6f22aa2021-09-29 14:20:49 +0000142 char *crc_str = cJSON_GetStringValue (crc_obj);
143 crc = (u32) strtol (crc_str, NULL, 16);
Filip Tehlar36217e32021-07-23 08:51:10 +0000144 }
Filip Tehlar36217e32021-07-23 08:51:10 +0000145
Ole Troan91144fb2021-08-17 12:57:00 +0200146 uword *p = hash_get_mem (function_by_name, msgname);
147 if (!p)
148 {
Filip Tehlar36217e32021-07-23 08:51:10 +0000149 fprintf (stderr, "No such command %s\n", msgname);
Ole Troan91144fb2021-08-17 12:57:00 +0200150 return -1;
151 }
Filip Tehlard6f22aa2021-09-29 14:20:49 +0000152 if (crc && crc != apifuncs[p[0]].crc)
Filip Tehlar36217e32021-07-23 08:51:10 +0000153 {
154 fprintf (stderr, "API CRC does not match: %s!\n", msgname);
155 }
Ole Troan91144fb2021-08-17 12:57:00 +0200156
157 cJSON *(*fp) (cJSON *);
158 fp = (void *) apifuncs[p[0]].f;
159 cJSON *r = (*fp) (o);
160
161 if (r)
162 {
163 char *output = cJSON_Print (r);
164 cJSON_Delete (r);
165 printf ("%s\n", output);
166 free (output);
167 }
168 else
169 {
170 fprintf (stderr, "Call failed: %s\n", msgname);
171 return -1;
172 }
173 return 0;
174}
175
176static int
177vat2_exec_command (cJSON *o)
178{
179
180 cJSON *msg_id_obj = cJSON_GetObjectItem (o, "_msgname");
181 if (!msg_id_obj)
182 {
183 fprintf (stderr, "Missing '_msgname' element!\n");
184 return -1;
185 }
186
187 char *name = cJSON_GetStringValue (msg_id_obj);
Filip Tehlar36217e32021-07-23 08:51:10 +0000188
Ole Troan91144fb2021-08-17 12:57:00 +0200189 return vat2_exec_command_by_name (name, o);
190}
Filip Tehlar36217e32021-07-23 08:51:10 +0000191
Ole Troan91144fb2021-08-17 12:57:00 +0200192static void
193print_template (char *msgname)
194{
195 uword *p = hash_get_mem (function_by_name, msgname);
196 if (!p)
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200197 goto error;
198
Ole Troan91144fb2021-08-17 12:57:00 +0200199 cJSON *(*fp) (void *);
200 fp = (void *) apifuncs[p[0]].tojson;
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200201 if (!fp)
202 goto error;
203
Ole Troan91144fb2021-08-17 12:57:00 +0200204 void *scratch = malloc (2048);
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200205 if (!scratch)
206 goto error;
207
Ole Troan91144fb2021-08-17 12:57:00 +0200208 memset (scratch, 0, 2048);
209 cJSON *t = fp (scratch);
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200210 if (!t)
211 goto error;
Ole Troan91144fb2021-08-17 12:57:00 +0200212 free (scratch);
213 char *output = cJSON_Print (t);
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200214 if (!output)
215 goto error;
216
Ole Troan91144fb2021-08-17 12:57:00 +0200217 cJSON_Delete (t);
218 printf ("%s\n", output);
219 free (output);
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200220
221 return;
222
223error:
224 fprintf (stderr, "error printing template for: %s\n", msgname);
Ole Troan91144fb2021-08-17 12:57:00 +0200225}
Ole Troan6b3eeeb2021-08-31 14:21:03 +0200226
Ole Troan91144fb2021-08-17 12:57:00 +0200227static void
228dump_apis (void)
229{
230 char *name;
231 u32 *i;
232 hash_foreach_mem (name, i, function_by_name, ({ printf ("%s\n", name); }));
233}
234
235static void
236print_help (void)
237{
238 char *help_string =
239 "Usage: vat2 [OPTION] <message-name> <JSON object>\n"
240 "Send API message to VPP and print reply\n"
241 "\n"
Dave Wallace0499d882022-05-04 17:31:55 -0400242 "-d, --debug Print additional information\n"
243 "-p, --prefix <prefix> Specify shared memory prefix to connect "
244 "to a given VPP instance\n"
245 "-f, --file <filename> File containing a JSON object with the "
246 "arguments for the message to send\n"
247 "-t, --template <message-name> Print a template JSON object for given API"
248 " message\n"
249 "--dump-apis List all APIs available in VAT2 (might "
250 "not reflect running VPP)\n"
Ole Troan91144fb2021-08-17 12:57:00 +0200251 "\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);
Dave Wallace0499d882022-05-04 17:31:55 -0400259 char *filename = 0, *prefix = 0, *template = 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;
Dave Wallace0499d882022-05-04 17:31:55 -0400266 bool debug = false;
Ole Troan91144fb2021-08-17 12:57:00 +0200267 char *msgname = 0;
Ole Troan91144fb2021-08-17 12:57:00 +0200268 static struct option long_options[] = {
Dave Wallace0499d882022-05-04 17:31:55 -0400269 { "debug", no_argument, 0, 'd' },
270 { "prefix", required_argument, 0, 'p' },
Ole Troan91144fb2021-08-17 12:57:00 +0200271 { "file", required_argument, 0, 'f' },
272 { "dump-apis", no_argument, 0, 0 },
Dave Wallace0499d882022-05-04 17:31:55 -0400273 { "template", required_argument, 0, 't' },
Ole Troan91144fb2021-08-17 12:57:00 +0200274 { 0, 0, 0, 0 }
275 };
Ole Troandf87f802020-11-18 19:17:48 +0100276
Dave Wallace0499d882022-05-04 17:31:55 -0400277 while ((c = getopt_long (argc, argv, "hdp:f:t:", long_options,
Ole Troan91144fb2021-08-17 12:57:00 +0200278 &option_index)) != -1)
279 {
280 switch (c)
281 {
282 case 0:
283 if (option_index == 3)
284 dump_api = true;
285 break;
286 case 'd':
287 debug = true;
288 break;
289 case 't':
Dave Wallace0499d882022-05-04 17:31:55 -0400290 template = optarg;
Ole Troan91144fb2021-08-17 12:57:00 +0200291 break;
292 case 'p':
293 prefix = optarg;
294 break;
295 case 'f':
296 filename = optarg;
297 break;
298 case '?':
299 print_help ();
300 return 1;
301 default:
302 abort ();
303 }
Ole Troandf87f802020-11-18 19:17:48 +0100304 }
Dave Wallace0499d882022-05-04 17:31:55 -0400305 DBG ("debug = %d, filename = %s, template = %s, shared memory prefix: %s\n",
306 debug, filename, template, prefix);
Ole Troandf87f802020-11-18 19:17:48 +0100307
308 for (index = optind; index < argc; index++)
309 DBG ("Non-option argument %s\n", argv[index]);
310
311 index = optind;
312
Ole Troan91144fb2021-08-17 12:57:00 +0200313 if (argc > index + 2)
314 {
315 fprintf (stderr, "%s: Too many arguments\n", argv[0]);
316 exit (-1);
317 }
318
Ole Troandf87f802020-11-18 19:17:48 +0100319 /* Load plugins */
320 function_by_name = hash_create_string (0, sizeof (uword));
321 int res = register_function();
322 if (res < 0) {
323 fprintf(stderr, "%s: loading plugins failed\n", argv[0]);
324 exit(-1);
325 }
326
Ole Troan91144fb2021-08-17 12:57:00 +0200327 if (template)
328 {
Dave Wallace0499d882022-05-04 17:31:55 -0400329 print_template (template);
Ole Troan91144fb2021-08-17 12:57:00 +0200330 exit (0);
Ole Troandf87f802020-11-18 19:17:48 +0100331 }
Ole Troandf87f802020-11-18 19:17:48 +0100332
Ole Troan91144fb2021-08-17 12:57:00 +0200333 if (dump_api)
334 {
335 dump_apis ();
336 exit (0);
337 }
338
339 /* Read message arguments from command line */
340 if (argc >= (index + 1))
341 {
342 msgname = argv[index];
343 }
Ole Troandf87f802020-11-18 19:17:48 +0100344 if (argc == (index + 2)) {
345 o = cJSON_Parse(argv[index+1]);
346 if (!o) {
347 fprintf(stderr, "%s: Failed parsing JSON input: %s\n", argv[0], cJSON_GetErrorPtr());
348 exit(-1);
349 }
350 }
351
Filip Tehlar36217e32021-07-23 08:51:10 +0000352 if (!msgname && !filename)
353 {
354 print_help ();
355 exit (-1);
356 }
357
Ole Troan91144fb2021-08-17 12:57:00 +0200358 /* Read message from file */
Ole Troandf87f802020-11-18 19:17:48 +0100359 if (filename) {
Ole Troan91144fb2021-08-17 12:57:00 +0200360 if (argc > index)
361 {
362 fprintf (stderr, "%s: Superfluous arguments when filename given\n",
363 argv[0]);
364 exit (-1);
365 }
Ole Troandf87f802020-11-18 19:17:48 +0100366
367 FILE *f = fopen(filename, "r");
Ole Troan91144fb2021-08-17 12:57:00 +0200368 size_t chunksize, bufsize;
Ole Troandf87f802020-11-18 19:17:48 +0100369 size_t n_read = 0;
370 size_t n;
371
372 if (!f) {
373 fprintf(stderr, "%s: can't open file: %s\n", argv[0], filename);
374 exit(-1);
375 }
Filip Tehlar36217e32021-07-23 08:51:10 +0000376
Ole Troan91144fb2021-08-17 12:57:00 +0200377 chunksize = bufsize = 1024;
Ole Troandf87f802020-11-18 19:17:48 +0100378 char *buf = malloc(bufsize);
Ole Troan91144fb2021-08-17 12:57:00 +0200379 while ((n = fread (buf + n_read, 1, chunksize, f)))
380 {
381 n_read += n;
382 if (n == chunksize)
383 {
384 bufsize += chunksize;
385 buf = realloc (buf, bufsize);
386 }
387 }
Ole Troandf87f802020-11-18 19:17:48 +0100388 fclose(f);
389 if (n_read) {
390 o = cJSON_Parse(buf);
Ole Troandf87f802020-11-18 19:17:48 +0100391 if (!o) {
392 fprintf(stderr, "%s: Failed parsing JSON input: %s\n", argv[0], cJSON_GetErrorPtr());
393 exit(-1);
394 }
395 }
Filip Tehlar36217e32021-07-23 08:51:10 +0000396 free (buf);
Ole Troandf87f802020-11-18 19:17:48 +0100397 }
398
Filip Tehlar36217e32021-07-23 08:51:10 +0000399 if (!o)
Ole Troan91144fb2021-08-17 12:57:00 +0200400 {
Filip Tehlar36217e32021-07-23 08:51:10 +0000401 fprintf (stderr, "%s: Failed parsing JSON input\n", argv[0]);
Ole Troan91144fb2021-08-17 12:57:00 +0200402 exit (-1);
403 }
Ole Troandf87f802020-11-18 19:17:48 +0100404
Ole Troan91144fb2021-08-17 12:57:00 +0200405 if (vac_connect ("vat2", prefix, 0, 1024))
406 {
407 fprintf (stderr, "Failed connecting to VPP\n");
408 exit (-1);
409 }
Ole Troandf87f802020-11-18 19:17:48 +0100410
Ole Troan91144fb2021-08-17 12:57:00 +0200411 if (msgname)
412 {
413 vat2_exec_command_by_name (msgname, o);
414 }
415 else
416 {
417 if (cJSON_IsArray (o))
418 {
419 size_t size = cJSON_GetArraySize (o);
420 for (int i = 0; i < size; i++)
421 vat2_exec_command (cJSON_GetArrayItem (o, i));
422 }
423 }
424 cJSON_Delete (o);
Ole Troandf87f802020-11-18 19:17:48 +0100425 vac_disconnect();
426 exit (0);
427
428}