| 1 | /* |
| 2 | * Babeltrace trace converter - parameter parsing |
| 3 | * |
| 4 | * Copyright 2016 Philippe Proulx <pproulx@efficios.com> |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | * of this software and associated documentation files (the "Software"), to deal |
| 8 | * in the Software without restriction, including without limitation the rights |
| 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | * copies of the Software, and to permit persons to whom the Software is |
| 11 | * furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included in |
| 14 | * all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 22 | * SOFTWARE. |
| 23 | */ |
| 24 | |
| 25 | #define BT_LOG_TAG "CLI/CFG-CLI-ARGS" |
| 26 | #include "logging.h" |
| 27 | |
| 28 | #include <errno.h> |
| 29 | #include <stdlib.h> |
| 30 | #include <string.h> |
| 31 | #include "common/assert.h" |
| 32 | #include <stdio.h> |
| 33 | #include <stdbool.h> |
| 34 | #include <inttypes.h> |
| 35 | #include <babeltrace2/babeltrace.h> |
| 36 | #include "common/common.h" |
| 37 | #include <popt.h> |
| 38 | #include <glib.h> |
| 39 | #include <sys/types.h> |
| 40 | #include "argpar/argpar.h" |
| 41 | #include "babeltrace2-cfg.h" |
| 42 | #include "babeltrace2-cfg-cli-args.h" |
| 43 | #include "babeltrace2-cfg-cli-args-connect.h" |
| 44 | #include "babeltrace2-cfg-cli-params-arg.h" |
| 45 | #include "babeltrace2-plugins.h" |
| 46 | #include "babeltrace2-cfg-src-auto-disc.h" |
| 47 | #include "common/version.h" |
| 48 | |
| 49 | static const int cli_default_log_level = BT_LOG_WARNING; |
| 50 | |
| 51 | /* INI-style parsing FSM states */ |
| 52 | enum ini_parsing_fsm_state { |
| 53 | /* Expect a map key (identifier) */ |
| 54 | INI_EXPECT_MAP_KEY, |
| 55 | |
| 56 | /* Expect an equal character ('=') */ |
| 57 | INI_EXPECT_EQUAL, |
| 58 | |
| 59 | /* Expect a value */ |
| 60 | INI_EXPECT_VALUE, |
| 61 | |
| 62 | /* Expect a comma character (',') */ |
| 63 | INI_EXPECT_COMMA, |
| 64 | }; |
| 65 | |
| 66 | /* INI-style parsing state variables */ |
| 67 | struct ini_parsing_state { |
| 68 | /* Lexical scanner (owned by this) */ |
| 69 | GScanner *scanner; |
| 70 | |
| 71 | /* Output map value object being filled (owned by this) */ |
| 72 | bt_value *params; |
| 73 | |
| 74 | /* Next expected FSM state */ |
| 75 | enum ini_parsing_fsm_state expecting; |
| 76 | |
| 77 | /* Last decoded map key (owned by this) */ |
| 78 | char *last_map_key; |
| 79 | |
| 80 | /* Complete INI-style string to parse (not owned by this) */ |
| 81 | const char *arg; |
| 82 | |
| 83 | /* Error buffer (not owned by this) */ |
| 84 | GString *ini_error; |
| 85 | }; |
| 86 | |
| 87 | /* Offset option with "is set" boolean */ |
| 88 | struct offset_opt { |
| 89 | int64_t value; |
| 90 | bool is_set; |
| 91 | }; |
| 92 | |
| 93 | /* Legacy "ctf"/"lttng-live" format options */ |
| 94 | struct ctf_legacy_opts { |
| 95 | struct offset_opt offset_s; |
| 96 | struct offset_opt offset_ns; |
| 97 | bool stream_intersection; |
| 98 | }; |
| 99 | |
| 100 | /* Legacy "text" format options */ |
| 101 | struct text_legacy_opts { |
| 102 | /* |
| 103 | * output, dbg_info_dir, dbg_info_target_prefix, names, |
| 104 | * and fields are owned by this. |
| 105 | */ |
| 106 | GString *output; |
| 107 | GString *dbg_info_dir; |
| 108 | GString *dbg_info_target_prefix; |
| 109 | const bt_value *names; |
| 110 | const bt_value *fields; |
| 111 | |
| 112 | /* Flags */ |
| 113 | bool no_delta; |
| 114 | bool clock_cycles; |
| 115 | bool clock_seconds; |
| 116 | bool clock_date; |
| 117 | bool clock_gmt; |
| 118 | bool dbg_info_full_path; |
| 119 | bool verbose; |
| 120 | }; |
| 121 | |
| 122 | /* Legacy input format format */ |
| 123 | enum legacy_input_format { |
| 124 | LEGACY_INPUT_FORMAT_NONE = 0, |
| 125 | LEGACY_INPUT_FORMAT_CTF, |
| 126 | LEGACY_INPUT_FORMAT_LTTNG_LIVE, |
| 127 | }; |
| 128 | |
| 129 | /* Legacy output format format */ |
| 130 | enum legacy_output_format { |
| 131 | LEGACY_OUTPUT_FORMAT_NONE = 0, |
| 132 | LEGACY_OUTPUT_FORMAT_TEXT, |
| 133 | LEGACY_OUTPUT_FORMAT_DUMMY, |
| 134 | }; |
| 135 | |
| 136 | #define BT_CLI_LOGE_APPEND_CAUSE_OOM() BT_CLI_LOGE_APPEND_CAUSE("Out of memory.") |
| 137 | |
| 138 | /* |
| 139 | * Returns the plugin name, component class name, component class type, |
| 140 | * and component name from a command-line --component option's argument. |
| 141 | * arg must have the following format: |
| 142 | * |
| 143 | * [NAME:]TYPE.PLUGIN.CLS |
| 144 | * |
| 145 | * where NAME is the optional component name, TYPE is either `source`, |
| 146 | * `filter`, or `sink`, PLUGIN is the plugin name, and CLS is the |
| 147 | * component class name. |
| 148 | * |
| 149 | * On success, both *plugin and *component are not NULL. *plugin |
| 150 | * and *comp_cls are owned by the caller. On success, *name can be NULL |
| 151 | * if no component class name was found, and *comp_cls_type is set. |
| 152 | */ |
| 153 | static |
| 154 | void plugin_comp_cls_names(const char *arg, char **name, char **plugin, |
| 155 | char **comp_cls, bt_component_class_type *comp_cls_type) |
| 156 | { |
| 157 | const char *at = arg; |
| 158 | GString *gs_name = NULL; |
| 159 | GString *gs_comp_cls_type = NULL; |
| 160 | GString *gs_plugin = NULL; |
| 161 | GString *gs_comp_cls = NULL; |
| 162 | size_t end_pos; |
| 163 | |
| 164 | BT_ASSERT(arg); |
| 165 | BT_ASSERT(plugin); |
| 166 | BT_ASSERT(comp_cls); |
| 167 | BT_ASSERT(comp_cls_type); |
| 168 | |
| 169 | if (!bt_common_string_is_printable(arg)) { |
| 170 | BT_CLI_LOGE_APPEND_CAUSE("Argument contains a non-printable character."); |
| 171 | goto error; |
| 172 | } |
| 173 | |
| 174 | /* Parse the component name */ |
| 175 | gs_name = bt_common_string_until(at, ".:\\", ":", &end_pos); |
| 176 | if (!gs_name) { |
| 177 | goto error; |
| 178 | } |
| 179 | |
| 180 | if (arg[end_pos] == ':') { |
| 181 | at += end_pos + 1; |
| 182 | } else { |
| 183 | /* No name */ |
| 184 | g_string_assign(gs_name, ""); |
| 185 | } |
| 186 | |
| 187 | /* Parse the component class type */ |
| 188 | gs_comp_cls_type = bt_common_string_until(at, ".:\\", ".", &end_pos); |
| 189 | if (!gs_comp_cls_type || at[end_pos] == '\0') { |
| 190 | BT_CLI_LOGE_APPEND_CAUSE("Missing component class type (`source`, `filter`, or `sink`)."); |
| 191 | goto error; |
| 192 | } |
| 193 | |
| 194 | if (strcmp(gs_comp_cls_type->str, "source") == 0 || |
| 195 | strcmp(gs_comp_cls_type->str, "src") == 0) { |
| 196 | *comp_cls_type = BT_COMPONENT_CLASS_TYPE_SOURCE; |
| 197 | } else if (strcmp(gs_comp_cls_type->str, "filter") == 0 || |
| 198 | strcmp(gs_comp_cls_type->str, "flt") == 0) { |
| 199 | *comp_cls_type = BT_COMPONENT_CLASS_TYPE_FILTER; |
| 200 | } else if (strcmp(gs_comp_cls_type->str, "sink") == 0) { |
| 201 | *comp_cls_type = BT_COMPONENT_CLASS_TYPE_SINK; |
| 202 | } else { |
| 203 | BT_CLI_LOGE_APPEND_CAUSE("Unknown component class type: `%s`.", |
| 204 | gs_comp_cls_type->str); |
| 205 | goto error; |
| 206 | } |
| 207 | |
| 208 | at += end_pos + 1; |
| 209 | |
| 210 | /* Parse the plugin name */ |
| 211 | gs_plugin = bt_common_string_until(at, ".:\\", ".", &end_pos); |
| 212 | if (!gs_plugin || gs_plugin->len == 0 || at[end_pos] == '\0') { |
| 213 | BT_CLI_LOGE_APPEND_CAUSE("Missing plugin or component class name."); |
| 214 | goto error; |
| 215 | } |
| 216 | |
| 217 | at += end_pos + 1; |
| 218 | |
| 219 | /* Parse the component class name */ |
| 220 | gs_comp_cls = bt_common_string_until(at, ".:\\", ".", &end_pos); |
| 221 | if (!gs_comp_cls || gs_comp_cls->len == 0) { |
| 222 | BT_CLI_LOGE_APPEND_CAUSE("Missing component class name."); |
| 223 | goto error; |
| 224 | } |
| 225 | |
| 226 | if (at[end_pos] != '\0') { |
| 227 | /* Found a non-escaped `.` */ |
| 228 | goto error; |
| 229 | } |
| 230 | |
| 231 | if (name) { |
| 232 | if (gs_name->len == 0) { |
| 233 | *name = NULL; |
| 234 | g_string_free(gs_name, TRUE); |
| 235 | } else { |
| 236 | *name = gs_name->str; |
| 237 | g_string_free(gs_name, FALSE); |
| 238 | } |
| 239 | } else { |
| 240 | g_string_free(gs_name, TRUE); |
| 241 | } |
| 242 | |
| 243 | *plugin = gs_plugin->str; |
| 244 | *comp_cls = gs_comp_cls->str; |
| 245 | g_string_free(gs_plugin, FALSE); |
| 246 | g_string_free(gs_comp_cls, FALSE); |
| 247 | gs_name = NULL; |
| 248 | gs_plugin = NULL; |
| 249 | gs_comp_cls = NULL; |
| 250 | goto end; |
| 251 | |
| 252 | error: |
| 253 | if (name) { |
| 254 | *name = NULL; |
| 255 | } |
| 256 | |
| 257 | *plugin = NULL; |
| 258 | *comp_cls = NULL; |
| 259 | |
| 260 | end: |
| 261 | if (gs_name) { |
| 262 | g_string_free(gs_name, TRUE); |
| 263 | } |
| 264 | |
| 265 | if (gs_plugin) { |
| 266 | g_string_free(gs_plugin, TRUE); |
| 267 | } |
| 268 | |
| 269 | if (gs_comp_cls) { |
| 270 | g_string_free(gs_comp_cls, TRUE); |
| 271 | } |
| 272 | |
| 273 | if (gs_comp_cls_type) { |
| 274 | g_string_free(gs_comp_cls_type, TRUE); |
| 275 | } |
| 276 | |
| 277 | return; |
| 278 | } |
| 279 | |
| 280 | /* |
| 281 | * Prints the Babeltrace version. |
| 282 | */ |
| 283 | static |
| 284 | void print_version(void) |
| 285 | { |
| 286 | if (GIT_VERSION[0] == '\0') { |
| 287 | puts("Babeltrace " VERSION); |
| 288 | } else { |
| 289 | puts("Babeltrace " VERSION " - " GIT_VERSION); |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | /* |
| 294 | * Destroys a component configuration. |
| 295 | */ |
| 296 | static |
| 297 | void bt_config_component_destroy(bt_object *obj) |
| 298 | { |
| 299 | struct bt_config_component *bt_config_component = |
| 300 | container_of(obj, struct bt_config_component, base); |
| 301 | |
| 302 | if (!obj) { |
| 303 | goto end; |
| 304 | } |
| 305 | |
| 306 | if (bt_config_component->plugin_name) { |
| 307 | g_string_free(bt_config_component->plugin_name, TRUE); |
| 308 | } |
| 309 | |
| 310 | if (bt_config_component->comp_cls_name) { |
| 311 | g_string_free(bt_config_component->comp_cls_name, TRUE); |
| 312 | } |
| 313 | |
| 314 | if (bt_config_component->instance_name) { |
| 315 | g_string_free(bt_config_component->instance_name, TRUE); |
| 316 | } |
| 317 | |
| 318 | BT_VALUE_PUT_REF_AND_RESET(bt_config_component->params); |
| 319 | g_free(bt_config_component); |
| 320 | |
| 321 | end: |
| 322 | return; |
| 323 | } |
| 324 | |
| 325 | /* |
| 326 | * Creates a component configuration using the given plugin name and |
| 327 | * component name. `plugin_name` and `comp_cls_name` are copied (belong |
| 328 | * to the return value). |
| 329 | * |
| 330 | * Return value is owned by the caller. |
| 331 | */ |
| 332 | static |
| 333 | struct bt_config_component *bt_config_component_create( |
| 334 | bt_component_class_type type, |
| 335 | const char *plugin_name, const char *comp_cls_name, |
| 336 | int init_log_level) |
| 337 | { |
| 338 | struct bt_config_component *cfg_component = NULL; |
| 339 | |
| 340 | cfg_component = g_new0(struct bt_config_component, 1); |
| 341 | if (!cfg_component) { |
| 342 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 343 | goto error; |
| 344 | } |
| 345 | |
| 346 | bt_object_init_shared(&cfg_component->base, |
| 347 | bt_config_component_destroy); |
| 348 | cfg_component->type = type; |
| 349 | cfg_component->plugin_name = g_string_new(plugin_name); |
| 350 | if (!cfg_component->plugin_name) { |
| 351 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 352 | goto error; |
| 353 | } |
| 354 | |
| 355 | cfg_component->comp_cls_name = g_string_new(comp_cls_name); |
| 356 | if (!cfg_component->comp_cls_name) { |
| 357 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 358 | goto error; |
| 359 | } |
| 360 | |
| 361 | cfg_component->instance_name = g_string_new(NULL); |
| 362 | if (!cfg_component->instance_name) { |
| 363 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 364 | goto error; |
| 365 | } |
| 366 | |
| 367 | cfg_component->log_level = init_log_level; |
| 368 | |
| 369 | /* Start with empty parameters */ |
| 370 | cfg_component->params = bt_value_map_create(); |
| 371 | if (!cfg_component->params) { |
| 372 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 373 | goto error; |
| 374 | } |
| 375 | |
| 376 | goto end; |
| 377 | |
| 378 | error: |
| 379 | BT_OBJECT_PUT_REF_AND_RESET(cfg_component); |
| 380 | |
| 381 | end: |
| 382 | return cfg_component; |
| 383 | } |
| 384 | |
| 385 | /* |
| 386 | * Creates a component configuration from a command-line --component |
| 387 | * option's argument. |
| 388 | */ |
| 389 | static |
| 390 | struct bt_config_component *bt_config_component_from_arg(const char *arg, |
| 391 | int init_log_level) |
| 392 | { |
| 393 | struct bt_config_component *cfg_comp = NULL; |
| 394 | char *name = NULL; |
| 395 | char *plugin_name = NULL; |
| 396 | char *comp_cls_name = NULL; |
| 397 | bt_component_class_type type; |
| 398 | |
| 399 | plugin_comp_cls_names(arg, &name, &plugin_name, &comp_cls_name, &type); |
| 400 | if (!plugin_name || !comp_cls_name) { |
| 401 | goto error; |
| 402 | } |
| 403 | |
| 404 | cfg_comp = bt_config_component_create(type, plugin_name, comp_cls_name, |
| 405 | init_log_level); |
| 406 | if (!cfg_comp) { |
| 407 | goto error; |
| 408 | } |
| 409 | |
| 410 | if (name) { |
| 411 | g_string_assign(cfg_comp->instance_name, name); |
| 412 | } |
| 413 | |
| 414 | goto end; |
| 415 | |
| 416 | error: |
| 417 | BT_OBJECT_PUT_REF_AND_RESET(cfg_comp); |
| 418 | |
| 419 | end: |
| 420 | g_free(name); |
| 421 | g_free(plugin_name); |
| 422 | g_free(comp_cls_name); |
| 423 | return cfg_comp; |
| 424 | } |
| 425 | |
| 426 | /* |
| 427 | * Destroys a configuration. |
| 428 | */ |
| 429 | static |
| 430 | void bt_config_destroy(bt_object *obj) |
| 431 | { |
| 432 | struct bt_config *cfg = |
| 433 | container_of(obj, struct bt_config, base); |
| 434 | |
| 435 | if (!obj) { |
| 436 | goto end; |
| 437 | } |
| 438 | |
| 439 | BT_VALUE_PUT_REF_AND_RESET(cfg->plugin_paths); |
| 440 | |
| 441 | switch (cfg->command) { |
| 442 | case BT_CONFIG_COMMAND_RUN: |
| 443 | if (cfg->cmd_data.run.sources) { |
| 444 | g_ptr_array_free(cfg->cmd_data.run.sources, TRUE); |
| 445 | } |
| 446 | |
| 447 | if (cfg->cmd_data.run.filters) { |
| 448 | g_ptr_array_free(cfg->cmd_data.run.filters, TRUE); |
| 449 | } |
| 450 | |
| 451 | if (cfg->cmd_data.run.sinks) { |
| 452 | g_ptr_array_free(cfg->cmd_data.run.sinks, TRUE); |
| 453 | } |
| 454 | |
| 455 | if (cfg->cmd_data.run.connections) { |
| 456 | g_ptr_array_free(cfg->cmd_data.run.connections, |
| 457 | TRUE); |
| 458 | } |
| 459 | break; |
| 460 | case BT_CONFIG_COMMAND_LIST_PLUGINS: |
| 461 | break; |
| 462 | case BT_CONFIG_COMMAND_HELP: |
| 463 | BT_OBJECT_PUT_REF_AND_RESET(cfg->cmd_data.help.cfg_component); |
| 464 | break; |
| 465 | case BT_CONFIG_COMMAND_QUERY: |
| 466 | BT_OBJECT_PUT_REF_AND_RESET(cfg->cmd_data.query.cfg_component); |
| 467 | |
| 468 | if (cfg->cmd_data.query.object) { |
| 469 | g_string_free(cfg->cmd_data.query.object, TRUE); |
| 470 | } |
| 471 | break; |
| 472 | case BT_CONFIG_COMMAND_PRINT_CTF_METADATA: |
| 473 | if (cfg->cmd_data.print_ctf_metadata.path) { |
| 474 | g_string_free(cfg->cmd_data.print_ctf_metadata.path, |
| 475 | TRUE); |
| 476 | g_string_free( |
| 477 | cfg->cmd_data.print_ctf_metadata.output_path, |
| 478 | TRUE); |
| 479 | } |
| 480 | break; |
| 481 | case BT_CONFIG_COMMAND_PRINT_LTTNG_LIVE_SESSIONS: |
| 482 | if (cfg->cmd_data.print_lttng_live_sessions.url) { |
| 483 | g_string_free( |
| 484 | cfg->cmd_data.print_lttng_live_sessions.url, |
| 485 | TRUE); |
| 486 | g_string_free( |
| 487 | cfg->cmd_data.print_lttng_live_sessions.output_path, |
| 488 | TRUE); |
| 489 | } |
| 490 | break; |
| 491 | default: |
| 492 | abort(); |
| 493 | } |
| 494 | |
| 495 | g_free(cfg); |
| 496 | |
| 497 | end: |
| 498 | return; |
| 499 | } |
| 500 | |
| 501 | static |
| 502 | void destroy_glist_of_gstring(GList *list) |
| 503 | { |
| 504 | GList *at; |
| 505 | |
| 506 | if (!list) { |
| 507 | return; |
| 508 | } |
| 509 | |
| 510 | for (at = list; at; at = g_list_next(at)) { |
| 511 | g_string_free(at->data, TRUE); |
| 512 | } |
| 513 | |
| 514 | g_list_free(list); |
| 515 | } |
| 516 | |
| 517 | /* |
| 518 | * Creates a simple lexical scanner for parsing comma-delimited names |
| 519 | * and fields. |
| 520 | * |
| 521 | * Return value is owned by the caller. |
| 522 | */ |
| 523 | static |
| 524 | GScanner *create_csv_identifiers_scanner(void) |
| 525 | { |
| 526 | GScanner *scanner; |
| 527 | GScannerConfig scanner_config = { |
| 528 | .cset_skip_characters = " \t\n", |
| 529 | .cset_identifier_first = G_CSET_a_2_z G_CSET_A_2_Z "_", |
| 530 | .cset_identifier_nth = G_CSET_a_2_z G_CSET_A_2_Z ":_-", |
| 531 | .case_sensitive = TRUE, |
| 532 | .cpair_comment_single = NULL, |
| 533 | .skip_comment_multi = TRUE, |
| 534 | .skip_comment_single = TRUE, |
| 535 | .scan_comment_multi = FALSE, |
| 536 | .scan_identifier = TRUE, |
| 537 | .scan_identifier_1char = TRUE, |
| 538 | .scan_identifier_NULL = FALSE, |
| 539 | .scan_symbols = FALSE, |
| 540 | .symbol_2_token = FALSE, |
| 541 | .scope_0_fallback = FALSE, |
| 542 | .scan_binary = FALSE, |
| 543 | .scan_octal = FALSE, |
| 544 | .scan_float = FALSE, |
| 545 | .scan_hex = FALSE, |
| 546 | .scan_hex_dollar = FALSE, |
| 547 | .numbers_2_int = FALSE, |
| 548 | .int_2_float = FALSE, |
| 549 | .store_int64 = FALSE, |
| 550 | .scan_string_sq = FALSE, |
| 551 | .scan_string_dq = FALSE, |
| 552 | .identifier_2_string = FALSE, |
| 553 | .char_2_token = TRUE, |
| 554 | }; |
| 555 | |
| 556 | scanner = g_scanner_new(&scanner_config); |
| 557 | if (!scanner) { |
| 558 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 559 | } |
| 560 | |
| 561 | return scanner; |
| 562 | } |
| 563 | |
| 564 | /* |
| 565 | * Converts a comma-delimited list of known names (--names option) to |
| 566 | * an array value object containing those names as string value objects. |
| 567 | * |
| 568 | * Return value is owned by the caller. |
| 569 | */ |
| 570 | static |
| 571 | bt_value *names_from_arg(const char *arg) |
| 572 | { |
| 573 | GScanner *scanner = NULL; |
| 574 | bt_value *names = NULL; |
| 575 | bool found_all = false, found_none = false, found_item = false; |
| 576 | |
| 577 | names = bt_value_array_create(); |
| 578 | if (!names) { |
| 579 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 580 | goto error; |
| 581 | } |
| 582 | |
| 583 | scanner = create_csv_identifiers_scanner(); |
| 584 | if (!scanner) { |
| 585 | goto error; |
| 586 | } |
| 587 | |
| 588 | g_scanner_input_text(scanner, arg, strlen(arg)); |
| 589 | |
| 590 | while (true) { |
| 591 | GTokenType token_type = g_scanner_get_next_token(scanner); |
| 592 | |
| 593 | switch (token_type) { |
| 594 | case G_TOKEN_IDENTIFIER: |
| 595 | { |
| 596 | const char *identifier = scanner->value.v_identifier; |
| 597 | |
| 598 | if (strcmp(identifier, "payload") == 0 || |
| 599 | strcmp(identifier, "args") == 0 || |
| 600 | strcmp(identifier, "arg") == 0) { |
| 601 | found_item = true; |
| 602 | if (bt_value_array_append_string_element(names, |
| 603 | "payload")) { |
| 604 | goto error; |
| 605 | } |
| 606 | } else if (strcmp(identifier, "context") == 0 || |
| 607 | strcmp(identifier, "ctx") == 0) { |
| 608 | found_item = true; |
| 609 | if (bt_value_array_append_string_element(names, |
| 610 | "context")) { |
| 611 | goto error; |
| 612 | } |
| 613 | } else if (strcmp(identifier, "scope") == 0 || |
| 614 | strcmp(identifier, "header") == 0) { |
| 615 | found_item = true; |
| 616 | if (bt_value_array_append_string_element(names, |
| 617 | identifier)) { |
| 618 | goto error; |
| 619 | } |
| 620 | } else if (strcmp(identifier, "all") == 0) { |
| 621 | found_all = true; |
| 622 | if (bt_value_array_append_string_element(names, |
| 623 | identifier)) { |
| 624 | goto error; |
| 625 | } |
| 626 | } else if (strcmp(identifier, "none") == 0) { |
| 627 | found_none = true; |
| 628 | if (bt_value_array_append_string_element(names, |
| 629 | identifier)) { |
| 630 | goto error; |
| 631 | } |
| 632 | } else { |
| 633 | BT_CLI_LOGE_APPEND_CAUSE("Unknown name: `%s`.", |
| 634 | identifier); |
| 635 | goto error; |
| 636 | } |
| 637 | break; |
| 638 | } |
| 639 | case G_TOKEN_COMMA: |
| 640 | continue; |
| 641 | case G_TOKEN_EOF: |
| 642 | goto end; |
| 643 | default: |
| 644 | goto error; |
| 645 | } |
| 646 | } |
| 647 | |
| 648 | end: |
| 649 | if (found_none && found_all) { |
| 650 | BT_CLI_LOGE_APPEND_CAUSE("Only either `all` or `none` can be specified in the list given to the --names option, but not both."); |
| 651 | goto error; |
| 652 | } |
| 653 | /* |
| 654 | * Legacy behavior is to clear the defaults (show none) when at |
| 655 | * least one item is specified. |
| 656 | */ |
| 657 | if (found_item && !found_none && !found_all) { |
| 658 | if (bt_value_array_append_string_element(names, "none")) { |
| 659 | goto error; |
| 660 | } |
| 661 | } |
| 662 | if (scanner) { |
| 663 | g_scanner_destroy(scanner); |
| 664 | } |
| 665 | return names; |
| 666 | |
| 667 | error: |
| 668 | BT_VALUE_PUT_REF_AND_RESET(names); |
| 669 | if (scanner) { |
| 670 | g_scanner_destroy(scanner); |
| 671 | } |
| 672 | return names; |
| 673 | } |
| 674 | |
| 675 | /* |
| 676 | * Converts a comma-delimited list of known fields (--fields option) to |
| 677 | * an array value object containing those fields as string |
| 678 | * value objects. |
| 679 | * |
| 680 | * Return value is owned by the caller. |
| 681 | */ |
| 682 | static |
| 683 | bt_value *fields_from_arg(const char *arg) |
| 684 | { |
| 685 | GScanner *scanner = NULL; |
| 686 | bt_value *fields; |
| 687 | |
| 688 | fields = bt_value_array_create(); |
| 689 | if (!fields) { |
| 690 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 691 | goto error; |
| 692 | } |
| 693 | |
| 694 | scanner = create_csv_identifiers_scanner(); |
| 695 | if (!scanner) { |
| 696 | goto error; |
| 697 | } |
| 698 | |
| 699 | g_scanner_input_text(scanner, arg, strlen(arg)); |
| 700 | |
| 701 | while (true) { |
| 702 | GTokenType token_type = g_scanner_get_next_token(scanner); |
| 703 | |
| 704 | switch (token_type) { |
| 705 | case G_TOKEN_IDENTIFIER: |
| 706 | { |
| 707 | const char *identifier = scanner->value.v_identifier; |
| 708 | |
| 709 | if (strcmp(identifier, "trace") == 0 || |
| 710 | strcmp(identifier, "trace:hostname") == 0 || |
| 711 | strcmp(identifier, "trace:domain") == 0 || |
| 712 | strcmp(identifier, "trace:procname") == 0 || |
| 713 | strcmp(identifier, "trace:vpid") == 0 || |
| 714 | strcmp(identifier, "loglevel") == 0 || |
| 715 | strcmp(identifier, "emf") == 0 || |
| 716 | strcmp(identifier, "callsite") == 0 || |
| 717 | strcmp(identifier, "all") == 0) { |
| 718 | if (bt_value_array_append_string_element(fields, |
| 719 | identifier)) { |
| 720 | goto error; |
| 721 | } |
| 722 | } else { |
| 723 | BT_CLI_LOGE_APPEND_CAUSE("Unknown field: `%s`.", |
| 724 | identifier); |
| 725 | goto error; |
| 726 | } |
| 727 | break; |
| 728 | } |
| 729 | case G_TOKEN_COMMA: |
| 730 | continue; |
| 731 | case G_TOKEN_EOF: |
| 732 | goto end; |
| 733 | default: |
| 734 | goto error; |
| 735 | } |
| 736 | } |
| 737 | |
| 738 | goto end; |
| 739 | |
| 740 | error: |
| 741 | BT_VALUE_PUT_REF_AND_RESET(fields); |
| 742 | |
| 743 | end: |
| 744 | if (scanner) { |
| 745 | g_scanner_destroy(scanner); |
| 746 | } |
| 747 | return fields; |
| 748 | } |
| 749 | |
| 750 | static |
| 751 | void append_param_arg(GString *params_arg, const char *key, const char *value) |
| 752 | { |
| 753 | BT_ASSERT(params_arg); |
| 754 | BT_ASSERT(key); |
| 755 | BT_ASSERT(value); |
| 756 | |
| 757 | if (params_arg->len != 0) { |
| 758 | g_string_append_c(params_arg, ','); |
| 759 | } |
| 760 | |
| 761 | g_string_append(params_arg, key); |
| 762 | g_string_append_c(params_arg, '='); |
| 763 | g_string_append(params_arg, value); |
| 764 | } |
| 765 | |
| 766 | /* |
| 767 | * Inserts the equivalent "prefix-NAME=yes" strings into params_arg |
| 768 | * where the names are in names_array. |
| 769 | */ |
| 770 | static |
| 771 | int insert_flat_params_from_array(GString *params_arg, |
| 772 | const bt_value *names_array, const char *prefix) |
| 773 | { |
| 774 | int ret = 0; |
| 775 | int i; |
| 776 | GString *tmpstr = NULL, *default_value = NULL; |
| 777 | bool default_set = false, non_default_set = false; |
| 778 | |
| 779 | /* |
| 780 | * names_array may be NULL if no CLI options were specified to |
| 781 | * trigger its creation. |
| 782 | */ |
| 783 | if (!names_array) { |
| 784 | goto end; |
| 785 | } |
| 786 | |
| 787 | tmpstr = g_string_new(NULL); |
| 788 | if (!tmpstr) { |
| 789 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 790 | ret = -1; |
| 791 | goto end; |
| 792 | } |
| 793 | |
| 794 | default_value = g_string_new(NULL); |
| 795 | if (!default_value) { |
| 796 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 797 | ret = -1; |
| 798 | goto end; |
| 799 | } |
| 800 | |
| 801 | for (i = 0; i < bt_value_array_get_size(names_array); i++) { |
| 802 | const bt_value *str_obj = |
| 803 | bt_value_array_borrow_element_by_index_const(names_array, |
| 804 | i); |
| 805 | const char *suffix; |
| 806 | bool is_default = false; |
| 807 | |
| 808 | if (!str_obj) { |
| 809 | BT_CLI_LOGE_APPEND_CAUSE("Unexpected error."); |
| 810 | ret = -1; |
| 811 | goto end; |
| 812 | } |
| 813 | |
| 814 | suffix = bt_value_string_get(str_obj); |
| 815 | |
| 816 | g_string_assign(tmpstr, prefix); |
| 817 | g_string_append(tmpstr, "-"); |
| 818 | |
| 819 | /* Special-case for "all" and "none". */ |
| 820 | if (strcmp(suffix, "all") == 0) { |
| 821 | is_default = true; |
| 822 | g_string_assign(default_value, "show"); |
| 823 | } else if (strcmp(suffix, "none") == 0) { |
| 824 | is_default = true; |
| 825 | g_string_assign(default_value, "hide"); |
| 826 | } |
| 827 | if (is_default) { |
| 828 | default_set = true; |
| 829 | g_string_append(tmpstr, "default"); |
| 830 | append_param_arg(params_arg, tmpstr->str, |
| 831 | default_value->str); |
| 832 | } else { |
| 833 | non_default_set = true; |
| 834 | g_string_append(tmpstr, suffix); |
| 835 | append_param_arg(params_arg, tmpstr->str, "yes"); |
| 836 | } |
| 837 | } |
| 838 | |
| 839 | /* Implicit field-default=hide if any non-default option is set. */ |
| 840 | if (non_default_set && !default_set) { |
| 841 | g_string_assign(tmpstr, prefix); |
| 842 | g_string_append(tmpstr, "-default"); |
| 843 | g_string_assign(default_value, "hide"); |
| 844 | append_param_arg(params_arg, tmpstr->str, default_value->str); |
| 845 | } |
| 846 | |
| 847 | end: |
| 848 | if (default_value) { |
| 849 | g_string_free(default_value, TRUE); |
| 850 | } |
| 851 | |
| 852 | if (tmpstr) { |
| 853 | g_string_free(tmpstr, TRUE); |
| 854 | } |
| 855 | |
| 856 | return ret; |
| 857 | } |
| 858 | |
| 859 | /* popt options */ |
| 860 | enum { |
| 861 | OPT_NONE = 0, |
| 862 | OPT_BASE_PARAMS, |
| 863 | OPT_BEGIN, |
| 864 | OPT_CLOCK_CYCLES, |
| 865 | OPT_CLOCK_DATE, |
| 866 | OPT_CLOCK_FORCE_CORRELATE, |
| 867 | OPT_CLOCK_GMT, |
| 868 | OPT_CLOCK_OFFSET, |
| 869 | OPT_CLOCK_OFFSET_NS, |
| 870 | OPT_CLOCK_SECONDS, |
| 871 | OPT_COLOR, |
| 872 | OPT_COMPONENT, |
| 873 | OPT_CONNECT, |
| 874 | OPT_DEBUG, |
| 875 | OPT_DEBUG_INFO, |
| 876 | OPT_DEBUG_INFO_DIR, |
| 877 | OPT_DEBUG_INFO_FULL_PATH, |
| 878 | OPT_DEBUG_INFO_TARGET_PREFIX, |
| 879 | OPT_END, |
| 880 | OPT_FIELDS, |
| 881 | OPT_HELP, |
| 882 | OPT_INPUT_FORMAT, |
| 883 | OPT_LIST, |
| 884 | OPT_LOG_LEVEL, |
| 885 | OPT_NAME, |
| 886 | OPT_NAMES, |
| 887 | OPT_NO_DELTA, |
| 888 | OPT_OMIT_HOME_PLUGIN_PATH, |
| 889 | OPT_OMIT_SYSTEM_PLUGIN_PATH, |
| 890 | OPT_OUTPUT, |
| 891 | OPT_OUTPUT_FORMAT, |
| 892 | OPT_PARAMS, |
| 893 | OPT_PATH, |
| 894 | OPT_PLUGIN_PATH, |
| 895 | OPT_RESET_BASE_PARAMS, |
| 896 | OPT_RETRY_DURATION, |
| 897 | OPT_RUN_ARGS, |
| 898 | OPT_RUN_ARGS_0, |
| 899 | OPT_STREAM_INTERSECTION, |
| 900 | OPT_TIMERANGE, |
| 901 | OPT_URL, |
| 902 | OPT_VERBOSE, |
| 903 | OPT_VERSION, |
| 904 | }; |
| 905 | |
| 906 | enum bt_config_component_dest { |
| 907 | BT_CONFIG_COMPONENT_DEST_UNKNOWN = -1, |
| 908 | BT_CONFIG_COMPONENT_DEST_SOURCE, |
| 909 | BT_CONFIG_COMPONENT_DEST_FILTER, |
| 910 | BT_CONFIG_COMPONENT_DEST_SINK, |
| 911 | }; |
| 912 | |
| 913 | /* |
| 914 | * Adds a configuration component to the appropriate configuration |
| 915 | * array depending on the destination. |
| 916 | */ |
| 917 | static |
| 918 | void add_run_cfg_comp(struct bt_config *cfg, |
| 919 | struct bt_config_component *cfg_comp, |
| 920 | enum bt_config_component_dest dest) |
| 921 | { |
| 922 | bt_object_get_ref(cfg_comp); |
| 923 | |
| 924 | switch (dest) { |
| 925 | case BT_CONFIG_COMPONENT_DEST_SOURCE: |
| 926 | g_ptr_array_add(cfg->cmd_data.run.sources, cfg_comp); |
| 927 | break; |
| 928 | case BT_CONFIG_COMPONENT_DEST_FILTER: |
| 929 | g_ptr_array_add(cfg->cmd_data.run.filters, cfg_comp); |
| 930 | break; |
| 931 | case BT_CONFIG_COMPONENT_DEST_SINK: |
| 932 | g_ptr_array_add(cfg->cmd_data.run.sinks, cfg_comp); |
| 933 | break; |
| 934 | default: |
| 935 | abort(); |
| 936 | } |
| 937 | } |
| 938 | |
| 939 | static |
| 940 | int add_run_cfg_comp_check_name(struct bt_config *cfg, |
| 941 | struct bt_config_component *cfg_comp, |
| 942 | enum bt_config_component_dest dest, |
| 943 | bt_value *instance_names) |
| 944 | { |
| 945 | int ret = 0; |
| 946 | |
| 947 | if (cfg_comp->instance_name->len == 0) { |
| 948 | BT_CLI_LOGE_APPEND_CAUSE("Found an unnamed component."); |
| 949 | ret = -1; |
| 950 | goto end; |
| 951 | } |
| 952 | |
| 953 | if (bt_value_map_has_entry(instance_names, |
| 954 | cfg_comp->instance_name->str)) { |
| 955 | BT_CLI_LOGE_APPEND_CAUSE("Duplicate component instance name:\n %s", |
| 956 | cfg_comp->instance_name->str); |
| 957 | ret = -1; |
| 958 | goto end; |
| 959 | } |
| 960 | |
| 961 | if (bt_value_map_insert_entry(instance_names, |
| 962 | cfg_comp->instance_name->str, bt_value_null)) { |
| 963 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 964 | ret = -1; |
| 965 | goto end; |
| 966 | } |
| 967 | |
| 968 | add_run_cfg_comp(cfg, cfg_comp, dest); |
| 969 | |
| 970 | end: |
| 971 | return ret; |
| 972 | } |
| 973 | |
| 974 | static |
| 975 | int append_env_var_plugin_paths(bt_value *plugin_paths) |
| 976 | { |
| 977 | int ret = 0; |
| 978 | const char *envvar; |
| 979 | |
| 980 | if (bt_common_is_setuid_setgid()) { |
| 981 | BT_LOGI_STR("Skipping non-system plugin paths for setuid/setgid binary."); |
| 982 | goto end; |
| 983 | } |
| 984 | |
| 985 | envvar = getenv("BABELTRACE_PLUGIN_PATH"); |
| 986 | if (!envvar) { |
| 987 | goto end; |
| 988 | } |
| 989 | |
| 990 | ret = bt_config_append_plugin_paths(plugin_paths, envvar); |
| 991 | |
| 992 | end: |
| 993 | if (ret) { |
| 994 | BT_CLI_LOGE_APPEND_CAUSE("Cannot append plugin paths from BABELTRACE_PLUGIN_PATH."); |
| 995 | } |
| 996 | |
| 997 | return ret; |
| 998 | } |
| 999 | |
| 1000 | static |
| 1001 | int append_home_and_system_plugin_paths(bt_value *plugin_paths, |
| 1002 | bool omit_system_plugin_path, bool omit_home_plugin_path) |
| 1003 | { |
| 1004 | int ret; |
| 1005 | |
| 1006 | if (!omit_home_plugin_path) { |
| 1007 | if (bt_common_is_setuid_setgid()) { |
| 1008 | BT_LOGI_STR("Skipping non-system plugin paths for setuid/setgid binary."); |
| 1009 | } else { |
| 1010 | char *home_plugin_dir = bt_common_get_home_plugin_path( |
| 1011 | BT_LOG_OUTPUT_LEVEL); |
| 1012 | |
| 1013 | if (home_plugin_dir) { |
| 1014 | ret = bt_config_append_plugin_paths( |
| 1015 | plugin_paths, home_plugin_dir); |
| 1016 | free(home_plugin_dir); |
| 1017 | |
| 1018 | if (ret) { |
| 1019 | BT_CLI_LOGE_APPEND_CAUSE("Invalid home plugin path."); |
| 1020 | goto error; |
| 1021 | } |
| 1022 | } |
| 1023 | } |
| 1024 | } |
| 1025 | |
| 1026 | if (!omit_system_plugin_path) { |
| 1027 | if (bt_config_append_plugin_paths(plugin_paths, |
| 1028 | bt_common_get_system_plugin_path())) { |
| 1029 | BT_CLI_LOGE_APPEND_CAUSE("Invalid system plugin path."); |
| 1030 | goto error; |
| 1031 | } |
| 1032 | } |
| 1033 | return 0; |
| 1034 | error: |
| 1035 | BT_CLI_LOGE_APPEND_CAUSE("Cannot append home and system plugin paths."); |
| 1036 | return -1; |
| 1037 | } |
| 1038 | |
| 1039 | static |
| 1040 | int append_home_and_system_plugin_paths_cfg(struct bt_config *cfg) |
| 1041 | { |
| 1042 | return append_home_and_system_plugin_paths(cfg->plugin_paths, |
| 1043 | cfg->omit_system_plugin_path, cfg->omit_home_plugin_path); |
| 1044 | } |
| 1045 | |
| 1046 | static |
| 1047 | struct bt_config *bt_config_base_create(enum bt_config_command command, |
| 1048 | const bt_value *initial_plugin_paths, |
| 1049 | bool needs_plugins) |
| 1050 | { |
| 1051 | struct bt_config *cfg; |
| 1052 | |
| 1053 | /* Create config */ |
| 1054 | cfg = g_new0(struct bt_config, 1); |
| 1055 | if (!cfg) { |
| 1056 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1057 | goto error; |
| 1058 | } |
| 1059 | |
| 1060 | bt_object_init_shared(&cfg->base, bt_config_destroy); |
| 1061 | cfg->command = command; |
| 1062 | cfg->command_needs_plugins = needs_plugins; |
| 1063 | |
| 1064 | if (initial_plugin_paths) { |
| 1065 | bt_value *initial_plugin_paths_copy; |
| 1066 | |
| 1067 | (void) bt_value_copy(initial_plugin_paths, |
| 1068 | &initial_plugin_paths_copy); |
| 1069 | cfg->plugin_paths = initial_plugin_paths_copy; |
| 1070 | } else { |
| 1071 | cfg->plugin_paths = bt_value_array_create(); |
| 1072 | if (!cfg->plugin_paths) { |
| 1073 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1074 | goto error; |
| 1075 | } |
| 1076 | } |
| 1077 | |
| 1078 | goto end; |
| 1079 | |
| 1080 | error: |
| 1081 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1082 | |
| 1083 | end: |
| 1084 | return cfg; |
| 1085 | } |
| 1086 | |
| 1087 | static |
| 1088 | struct bt_config *bt_config_run_create( |
| 1089 | const bt_value *initial_plugin_paths) |
| 1090 | { |
| 1091 | struct bt_config *cfg; |
| 1092 | |
| 1093 | /* Create config */ |
| 1094 | cfg = bt_config_base_create(BT_CONFIG_COMMAND_RUN, |
| 1095 | initial_plugin_paths, true); |
| 1096 | if (!cfg) { |
| 1097 | goto error; |
| 1098 | } |
| 1099 | |
| 1100 | cfg->cmd_data.run.sources = g_ptr_array_new_with_free_func( |
| 1101 | (GDestroyNotify) bt_object_put_ref); |
| 1102 | if (!cfg->cmd_data.run.sources) { |
| 1103 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1104 | goto error; |
| 1105 | } |
| 1106 | |
| 1107 | cfg->cmd_data.run.filters = g_ptr_array_new_with_free_func( |
| 1108 | (GDestroyNotify) bt_object_put_ref); |
| 1109 | if (!cfg->cmd_data.run.filters) { |
| 1110 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1111 | goto error; |
| 1112 | } |
| 1113 | |
| 1114 | cfg->cmd_data.run.sinks = g_ptr_array_new_with_free_func( |
| 1115 | (GDestroyNotify) bt_object_put_ref); |
| 1116 | if (!cfg->cmd_data.run.sinks) { |
| 1117 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1118 | goto error; |
| 1119 | } |
| 1120 | |
| 1121 | cfg->cmd_data.run.connections = g_ptr_array_new_with_free_func( |
| 1122 | (GDestroyNotify) bt_config_connection_destroy); |
| 1123 | if (!cfg->cmd_data.run.connections) { |
| 1124 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1125 | goto error; |
| 1126 | } |
| 1127 | |
| 1128 | goto end; |
| 1129 | |
| 1130 | error: |
| 1131 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1132 | |
| 1133 | end: |
| 1134 | return cfg; |
| 1135 | } |
| 1136 | |
| 1137 | static |
| 1138 | struct bt_config *bt_config_list_plugins_create( |
| 1139 | const bt_value *initial_plugin_paths) |
| 1140 | { |
| 1141 | struct bt_config *cfg; |
| 1142 | |
| 1143 | /* Create config */ |
| 1144 | cfg = bt_config_base_create(BT_CONFIG_COMMAND_LIST_PLUGINS, |
| 1145 | initial_plugin_paths, true); |
| 1146 | if (!cfg) { |
| 1147 | goto error; |
| 1148 | } |
| 1149 | |
| 1150 | goto end; |
| 1151 | |
| 1152 | error: |
| 1153 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1154 | |
| 1155 | end: |
| 1156 | return cfg; |
| 1157 | } |
| 1158 | |
| 1159 | static |
| 1160 | struct bt_config *bt_config_help_create( |
| 1161 | const bt_value *initial_plugin_paths, |
| 1162 | int default_log_level) |
| 1163 | { |
| 1164 | struct bt_config *cfg; |
| 1165 | |
| 1166 | /* Create config */ |
| 1167 | cfg = bt_config_base_create(BT_CONFIG_COMMAND_HELP, |
| 1168 | initial_plugin_paths, true); |
| 1169 | if (!cfg) { |
| 1170 | goto error; |
| 1171 | } |
| 1172 | |
| 1173 | cfg->cmd_data.help.cfg_component = |
| 1174 | bt_config_component_create(-1, NULL, NULL, default_log_level); |
| 1175 | if (!cfg->cmd_data.help.cfg_component) { |
| 1176 | goto error; |
| 1177 | } |
| 1178 | |
| 1179 | goto end; |
| 1180 | |
| 1181 | error: |
| 1182 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1183 | |
| 1184 | end: |
| 1185 | return cfg; |
| 1186 | } |
| 1187 | |
| 1188 | static |
| 1189 | struct bt_config *bt_config_query_create( |
| 1190 | const bt_value *initial_plugin_paths) |
| 1191 | { |
| 1192 | struct bt_config *cfg; |
| 1193 | |
| 1194 | /* Create config */ |
| 1195 | cfg = bt_config_base_create(BT_CONFIG_COMMAND_QUERY, |
| 1196 | initial_plugin_paths, true); |
| 1197 | if (!cfg) { |
| 1198 | goto error; |
| 1199 | } |
| 1200 | |
| 1201 | cfg->cmd_data.query.object = g_string_new(NULL); |
| 1202 | if (!cfg->cmd_data.query.object) { |
| 1203 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1204 | goto error; |
| 1205 | } |
| 1206 | |
| 1207 | goto end; |
| 1208 | |
| 1209 | error: |
| 1210 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1211 | |
| 1212 | end: |
| 1213 | return cfg; |
| 1214 | } |
| 1215 | |
| 1216 | static |
| 1217 | struct bt_config *bt_config_print_ctf_metadata_create( |
| 1218 | const bt_value *initial_plugin_paths) |
| 1219 | { |
| 1220 | struct bt_config *cfg; |
| 1221 | |
| 1222 | /* Create config */ |
| 1223 | cfg = bt_config_base_create(BT_CONFIG_COMMAND_PRINT_CTF_METADATA, |
| 1224 | initial_plugin_paths, true); |
| 1225 | if (!cfg) { |
| 1226 | goto error; |
| 1227 | } |
| 1228 | |
| 1229 | cfg->cmd_data.print_ctf_metadata.path = g_string_new(NULL); |
| 1230 | if (!cfg->cmd_data.print_ctf_metadata.path) { |
| 1231 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1232 | goto error; |
| 1233 | } |
| 1234 | |
| 1235 | cfg->cmd_data.print_ctf_metadata.output_path = g_string_new(NULL); |
| 1236 | if (!cfg->cmd_data.print_ctf_metadata.output_path) { |
| 1237 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1238 | goto error; |
| 1239 | } |
| 1240 | |
| 1241 | goto end; |
| 1242 | |
| 1243 | error: |
| 1244 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1245 | |
| 1246 | end: |
| 1247 | return cfg; |
| 1248 | } |
| 1249 | |
| 1250 | static |
| 1251 | struct bt_config *bt_config_print_lttng_live_sessions_create( |
| 1252 | const bt_value *initial_plugin_paths) |
| 1253 | { |
| 1254 | struct bt_config *cfg; |
| 1255 | |
| 1256 | /* Create config */ |
| 1257 | cfg = bt_config_base_create(BT_CONFIG_COMMAND_PRINT_LTTNG_LIVE_SESSIONS, |
| 1258 | initial_plugin_paths, true); |
| 1259 | if (!cfg) { |
| 1260 | goto error; |
| 1261 | } |
| 1262 | |
| 1263 | cfg->cmd_data.print_lttng_live_sessions.url = g_string_new(NULL); |
| 1264 | if (!cfg->cmd_data.print_lttng_live_sessions.url) { |
| 1265 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1266 | goto error; |
| 1267 | } |
| 1268 | |
| 1269 | cfg->cmd_data.print_lttng_live_sessions.output_path = |
| 1270 | g_string_new(NULL); |
| 1271 | if (!cfg->cmd_data.print_lttng_live_sessions.output_path) { |
| 1272 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1273 | goto error; |
| 1274 | } |
| 1275 | |
| 1276 | goto end; |
| 1277 | |
| 1278 | error: |
| 1279 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1280 | |
| 1281 | end: |
| 1282 | return cfg; |
| 1283 | } |
| 1284 | |
| 1285 | static |
| 1286 | int bt_config_append_plugin_paths_check_setuid_setgid( |
| 1287 | bt_value *plugin_paths, const char *arg) |
| 1288 | { |
| 1289 | int ret = 0; |
| 1290 | |
| 1291 | if (bt_common_is_setuid_setgid()) { |
| 1292 | BT_LOGI_STR("Skipping non-system plugin paths for setuid/setgid binary."); |
| 1293 | goto end; |
| 1294 | } |
| 1295 | |
| 1296 | if (bt_config_append_plugin_paths(plugin_paths, arg)) { |
| 1297 | BT_CLI_LOGE_APPEND_CAUSE("Invalid --plugin-path option's argument:\n %s", |
| 1298 | arg); |
| 1299 | ret = -1; |
| 1300 | goto end; |
| 1301 | } |
| 1302 | |
| 1303 | end: |
| 1304 | return ret; |
| 1305 | } |
| 1306 | |
| 1307 | /* |
| 1308 | * Prints the expected format for a --params option. |
| 1309 | */ |
| 1310 | static |
| 1311 | void print_expected_params_format(FILE *fp) |
| 1312 | { |
| 1313 | fprintf(fp, "Expected format of PARAMS\n"); |
| 1314 | fprintf(fp, "-------------------------\n"); |
| 1315 | fprintf(fp, "\n"); |
| 1316 | fprintf(fp, " PARAM=VALUE[,PARAM=VALUE]...\n"); |
| 1317 | fprintf(fp, "\n"); |
| 1318 | fprintf(fp, "The parameter string is a comma-separated list of PARAM=VALUE assignments,\n"); |
| 1319 | fprintf(fp, "where PARAM is the parameter name (C identifier plus the [:.-] characters),\n"); |
| 1320 | fprintf(fp, "and VALUE can be one of:\n"); |
| 1321 | fprintf(fp, "\n"); |
| 1322 | fprintf(fp, "* `null`, `nul`, `NULL`: null value (no backticks).\n"); |
| 1323 | fprintf(fp, "* `true`, `TRUE`, `yes`, `YES`: true boolean value (no backticks).\n"); |
| 1324 | fprintf(fp, "* `false`, `FALSE`, `no`, `NO`: false boolean value (no backticks).\n"); |
| 1325 | fprintf(fp, "* Binary (`0b` prefix), octal (`0` prefix), decimal, or hexadecimal\n"); |
| 1326 | fprintf(fp, " (`0x` prefix) unsigned (with `+` prefix) or signed 64-bit integer.\n"); |
| 1327 | fprintf(fp, "* Double precision floating point number (scientific notation is accepted).\n"); |
| 1328 | fprintf(fp, "* Unquoted string with no special characters, and not matching any of\n"); |
| 1329 | fprintf(fp, " the null and boolean value symbols above.\n"); |
| 1330 | fprintf(fp, "* Double-quoted string (accepts escape characters).\n"); |
| 1331 | fprintf(fp, "* Array, formatted as an opening `[`, a list of comma-separated values\n"); |
| 1332 | fprintf(fp, " (as described by the current list) and a closing `]`.\n"); |
| 1333 | fprintf(fp, "\n"); |
| 1334 | fprintf(fp, "You can put whitespaces allowed around individual `=` and `,` symbols.\n"); |
| 1335 | fprintf(fp, "\n"); |
| 1336 | fprintf(fp, "Example:\n"); |
| 1337 | fprintf(fp, "\n"); |
| 1338 | fprintf(fp, " many=null, fresh=yes, condition=false, squirrel=-782329,\n"); |
| 1339 | fprintf(fp, " play=+23, observe=3.14, simple=beef, needs-quotes=\"some string\",\n"); |
| 1340 | fprintf(fp, " escape.chars-are:allowed=\"this is a \\\" double quote\",\n"); |
| 1341 | fprintf(fp, " things=[1, \"2\", 3]\n"); |
| 1342 | fprintf(fp, "\n"); |
| 1343 | fprintf(fp, "IMPORTANT: Make sure to single-quote the whole argument when you run\n"); |
| 1344 | fprintf(fp, "babeltrace2 from a shell.\n"); |
| 1345 | } |
| 1346 | |
| 1347 | static |
| 1348 | bool help_option_is_specified( |
| 1349 | const struct bt_argpar_parse_ret *argpar_parse_ret) |
| 1350 | { |
| 1351 | int i; |
| 1352 | bool specified = false; |
| 1353 | |
| 1354 | for (i = 0; i < argpar_parse_ret->items->len; i++) { |
| 1355 | struct bt_argpar_item *argpar_item = |
| 1356 | g_ptr_array_index(argpar_parse_ret->items, i); |
| 1357 | struct bt_argpar_item_opt *argpar_item_opt; |
| 1358 | |
| 1359 | if (argpar_item->type != BT_ARGPAR_ITEM_TYPE_OPT) { |
| 1360 | continue; |
| 1361 | } |
| 1362 | |
| 1363 | argpar_item_opt = (struct bt_argpar_item_opt *) argpar_item; |
| 1364 | if (argpar_item_opt->descr->id == OPT_HELP) { |
| 1365 | specified = true; |
| 1366 | break; |
| 1367 | } |
| 1368 | } |
| 1369 | |
| 1370 | return specified; |
| 1371 | } |
| 1372 | |
| 1373 | /* |
| 1374 | * Prints the help command usage. |
| 1375 | */ |
| 1376 | static |
| 1377 | void print_help_usage(FILE *fp) |
| 1378 | { |
| 1379 | fprintf(fp, "Usage: babeltrace2 [GENERAL OPTIONS] help [OPTIONS] PLUGIN\n"); |
| 1380 | fprintf(fp, " babeltrace2 [GENERAL OPTIONS] help [OPTIONS] TYPE.PLUGIN.CLS\n"); |
| 1381 | fprintf(fp, "\n"); |
| 1382 | fprintf(fp, "Options:\n"); |
| 1383 | fprintf(fp, "\n"); |
| 1384 | fprintf(fp, " --omit-home-plugin-path Omit home plugins from plugin search path\n"); |
| 1385 | fprintf(fp, " (~/.local/lib/babeltrace2/plugins)\n"); |
| 1386 | fprintf(fp, " --omit-system-plugin-path Omit system plugins from plugin search path\n"); |
| 1387 | fprintf(fp, " --plugin-path=PATH[:PATH]... Add PATH to the list of paths from which\n"); |
| 1388 | fprintf(fp, " dynamic plugins can be loaded\n"); |
| 1389 | fprintf(fp, " -h, --help Show this help and quit\n"); |
| 1390 | fprintf(fp, "\n"); |
| 1391 | fprintf(fp, "See `babeltrace2 --help` for the list of general options.\n"); |
| 1392 | fprintf(fp, "\n"); |
| 1393 | fprintf(fp, "Use `babeltrace2 list-plugins` to show the list of available plugins.\n"); |
| 1394 | } |
| 1395 | |
| 1396 | static |
| 1397 | struct poptOption help_long_options[] = { |
| 1398 | /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ |
| 1399 | { "help", 'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL }, |
| 1400 | { "omit-home-plugin-path", '\0', POPT_ARG_NONE, NULL, OPT_OMIT_HOME_PLUGIN_PATH, NULL, NULL }, |
| 1401 | { "omit-system-plugin-path", '\0', POPT_ARG_NONE, NULL, OPT_OMIT_SYSTEM_PLUGIN_PATH, NULL, NULL }, |
| 1402 | { "plugin-path", '\0', POPT_ARG_STRING, NULL, OPT_PLUGIN_PATH, NULL, NULL }, |
| 1403 | { NULL, 0, '\0', NULL, 0, NULL, NULL }, |
| 1404 | }; |
| 1405 | |
| 1406 | /* |
| 1407 | * Creates a Babeltrace config object from the arguments of a help |
| 1408 | * command. |
| 1409 | * |
| 1410 | * *retcode is set to the appropriate exit code to use. |
| 1411 | */ |
| 1412 | static |
| 1413 | struct bt_config *bt_config_help_from_args(int argc, const char *argv[], |
| 1414 | int *retcode, bool force_omit_system_plugin_path, |
| 1415 | bool force_omit_home_plugin_path, |
| 1416 | const bt_value *initial_plugin_paths, int default_log_level) |
| 1417 | { |
| 1418 | poptContext pc = NULL; |
| 1419 | char *arg = NULL; |
| 1420 | int opt; |
| 1421 | int ret; |
| 1422 | struct bt_config *cfg = NULL; |
| 1423 | const char *leftover; |
| 1424 | char *plugin_name = NULL, *comp_cls_name = NULL; |
| 1425 | |
| 1426 | *retcode = 0; |
| 1427 | cfg = bt_config_help_create(initial_plugin_paths, default_log_level); |
| 1428 | if (!cfg) { |
| 1429 | goto error; |
| 1430 | } |
| 1431 | |
| 1432 | cfg->omit_system_plugin_path = force_omit_system_plugin_path; |
| 1433 | cfg->omit_home_plugin_path = force_omit_home_plugin_path; |
| 1434 | ret = append_env_var_plugin_paths(cfg->plugin_paths); |
| 1435 | if (ret) { |
| 1436 | goto error; |
| 1437 | } |
| 1438 | |
| 1439 | /* Parse options */ |
| 1440 | pc = poptGetContext(NULL, argc, (const char **) argv, |
| 1441 | help_long_options, POPT_CONTEXT_KEEP_FIRST); |
| 1442 | if (!pc) { |
| 1443 | BT_CLI_LOGE_APPEND_CAUSE("Cannot get popt context."); |
| 1444 | goto error; |
| 1445 | } |
| 1446 | |
| 1447 | poptReadDefaultConfig(pc, 0); |
| 1448 | |
| 1449 | while ((opt = poptGetNextOpt(pc)) > 0) { |
| 1450 | arg = poptGetOptArg(pc); |
| 1451 | |
| 1452 | switch (opt) { |
| 1453 | case OPT_PLUGIN_PATH: |
| 1454 | if (bt_config_append_plugin_paths_check_setuid_setgid( |
| 1455 | cfg->plugin_paths, arg)) { |
| 1456 | goto error; |
| 1457 | } |
| 1458 | break; |
| 1459 | case OPT_OMIT_SYSTEM_PLUGIN_PATH: |
| 1460 | cfg->omit_system_plugin_path = true; |
| 1461 | break; |
| 1462 | case OPT_OMIT_HOME_PLUGIN_PATH: |
| 1463 | cfg->omit_home_plugin_path = true; |
| 1464 | break; |
| 1465 | case OPT_HELP: |
| 1466 | print_help_usage(stdout); |
| 1467 | *retcode = -1; |
| 1468 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1469 | goto end; |
| 1470 | default: |
| 1471 | BT_CLI_LOGE_APPEND_CAUSE("Unknown command-line option specified (option code %d).", |
| 1472 | opt); |
| 1473 | goto error; |
| 1474 | } |
| 1475 | |
| 1476 | free(arg); |
| 1477 | arg = NULL; |
| 1478 | } |
| 1479 | |
| 1480 | /* Check for option parsing error */ |
| 1481 | if (opt < -1) { |
| 1482 | BT_CLI_LOGE_APPEND_CAUSE("While parsing command-line options, at option %s: `%s`.", |
| 1483 | poptBadOption(pc, 0), poptStrerror(opt)); |
| 1484 | goto error; |
| 1485 | } |
| 1486 | |
| 1487 | leftover = poptGetArg(pc); |
| 1488 | if (leftover) { |
| 1489 | plugin_comp_cls_names(leftover, NULL, |
| 1490 | &plugin_name, &comp_cls_name, |
| 1491 | &cfg->cmd_data.help.cfg_component->type); |
| 1492 | if (plugin_name && comp_cls_name) { |
| 1493 | /* Component class help */ |
| 1494 | g_string_assign( |
| 1495 | cfg->cmd_data.help.cfg_component->plugin_name, |
| 1496 | plugin_name); |
| 1497 | g_string_assign( |
| 1498 | cfg->cmd_data.help.cfg_component->comp_cls_name, |
| 1499 | comp_cls_name); |
| 1500 | } else { |
| 1501 | /* Fall back to plugin help */ |
| 1502 | g_string_assign( |
| 1503 | cfg->cmd_data.help.cfg_component->plugin_name, |
| 1504 | leftover); |
| 1505 | } |
| 1506 | } else { |
| 1507 | print_help_usage(stdout); |
| 1508 | *retcode = -1; |
| 1509 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1510 | goto end; |
| 1511 | } |
| 1512 | |
| 1513 | if (append_home_and_system_plugin_paths_cfg(cfg)) { |
| 1514 | goto error; |
| 1515 | } |
| 1516 | |
| 1517 | goto end; |
| 1518 | |
| 1519 | error: |
| 1520 | *retcode = 1; |
| 1521 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1522 | |
| 1523 | end: |
| 1524 | g_free(plugin_name); |
| 1525 | g_free(comp_cls_name); |
| 1526 | |
| 1527 | if (pc) { |
| 1528 | poptFreeContext(pc); |
| 1529 | } |
| 1530 | |
| 1531 | free(arg); |
| 1532 | return cfg; |
| 1533 | } |
| 1534 | |
| 1535 | /* |
| 1536 | * Prints the help command usage. |
| 1537 | */ |
| 1538 | static |
| 1539 | void print_query_usage(FILE *fp) |
| 1540 | { |
| 1541 | fprintf(fp, "Usage: babeltrace2 [GEN OPTS] query [OPTS] TYPE.PLUGIN.CLS OBJECT\n"); |
| 1542 | fprintf(fp, "\n"); |
| 1543 | fprintf(fp, "Options:\n"); |
| 1544 | fprintf(fp, "\n"); |
| 1545 | fprintf(fp, " --omit-home-plugin-path Omit home plugins from plugin search path\n"); |
| 1546 | fprintf(fp, " (~/.local/lib/babeltrace2/plugins)\n"); |
| 1547 | fprintf(fp, " --omit-system-plugin-path Omit system plugins from plugin search path\n"); |
| 1548 | fprintf(fp, " -p, --params=PARAMS Set the query parameters to PARAMS\n"); |
| 1549 | fprintf(fp, " (see the expected format of PARAMS below)\n"); |
| 1550 | fprintf(fp, " --plugin-path=PATH[:PATH]... Add PATH to the list of paths from which\n"); |
| 1551 | fprintf(fp, " dynamic plugins can be loaded\n"); |
| 1552 | fprintf(fp, " -h, --help Show this help and quit\n"); |
| 1553 | fprintf(fp, "\n\n"); |
| 1554 | print_expected_params_format(fp); |
| 1555 | } |
| 1556 | |
| 1557 | static |
| 1558 | struct poptOption query_long_options[] = { |
| 1559 | /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ |
| 1560 | { "help", 'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL }, |
| 1561 | { "omit-home-plugin-path", '\0', POPT_ARG_NONE, NULL, OPT_OMIT_HOME_PLUGIN_PATH, NULL, NULL }, |
| 1562 | { "omit-system-plugin-path", '\0', POPT_ARG_NONE, NULL, OPT_OMIT_SYSTEM_PLUGIN_PATH, NULL, NULL }, |
| 1563 | { "params", 'p', POPT_ARG_STRING, NULL, OPT_PARAMS, NULL, NULL }, |
| 1564 | { "plugin-path", '\0', POPT_ARG_STRING, NULL, OPT_PLUGIN_PATH, NULL, NULL }, |
| 1565 | { NULL, 0, '\0', NULL, 0, NULL, NULL }, |
| 1566 | }; |
| 1567 | |
| 1568 | /* |
| 1569 | * Creates a Babeltrace config object from the arguments of a query |
| 1570 | * command. |
| 1571 | * |
| 1572 | * *retcode is set to the appropriate exit code to use. |
| 1573 | */ |
| 1574 | static |
| 1575 | struct bt_config *bt_config_query_from_args(int argc, const char *argv[], |
| 1576 | int *retcode, bool force_omit_system_plugin_path, |
| 1577 | bool force_omit_home_plugin_path, |
| 1578 | const bt_value *initial_plugin_paths, |
| 1579 | int default_log_level) |
| 1580 | { |
| 1581 | poptContext pc = NULL; |
| 1582 | char *arg = NULL; |
| 1583 | int opt; |
| 1584 | int ret; |
| 1585 | struct bt_config *cfg = NULL; |
| 1586 | const char *leftover; |
| 1587 | bt_value *params; |
| 1588 | GString *error_str = NULL; |
| 1589 | |
| 1590 | params = bt_value_null; |
| 1591 | bt_value_get_ref(bt_value_null); |
| 1592 | |
| 1593 | *retcode = 0; |
| 1594 | cfg = bt_config_query_create(initial_plugin_paths); |
| 1595 | if (!cfg) { |
| 1596 | goto error; |
| 1597 | } |
| 1598 | |
| 1599 | error_str = g_string_new(NULL); |
| 1600 | if (!error_str) { |
| 1601 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 1602 | goto error; |
| 1603 | } |
| 1604 | |
| 1605 | cfg->omit_system_plugin_path = force_omit_system_plugin_path; |
| 1606 | cfg->omit_home_plugin_path = force_omit_home_plugin_path; |
| 1607 | ret = append_env_var_plugin_paths(cfg->plugin_paths); |
| 1608 | if (ret) { |
| 1609 | goto error; |
| 1610 | } |
| 1611 | |
| 1612 | /* Parse options */ |
| 1613 | pc = poptGetContext(NULL, argc, (const char **) argv, |
| 1614 | query_long_options, POPT_CONTEXT_KEEP_FIRST); |
| 1615 | if (!pc) { |
| 1616 | BT_CLI_LOGE_APPEND_CAUSE("Cannot get popt context."); |
| 1617 | goto error; |
| 1618 | } |
| 1619 | |
| 1620 | poptReadDefaultConfig(pc, 0); |
| 1621 | |
| 1622 | while ((opt = poptGetNextOpt(pc)) > 0) { |
| 1623 | arg = poptGetOptArg(pc); |
| 1624 | |
| 1625 | switch (opt) { |
| 1626 | case OPT_PLUGIN_PATH: |
| 1627 | if (bt_config_append_plugin_paths_check_setuid_setgid( |
| 1628 | cfg->plugin_paths, arg)) { |
| 1629 | goto error; |
| 1630 | } |
| 1631 | break; |
| 1632 | case OPT_OMIT_SYSTEM_PLUGIN_PATH: |
| 1633 | cfg->omit_system_plugin_path = true; |
| 1634 | break; |
| 1635 | case OPT_OMIT_HOME_PLUGIN_PATH: |
| 1636 | cfg->omit_home_plugin_path = true; |
| 1637 | break; |
| 1638 | case OPT_PARAMS: |
| 1639 | { |
| 1640 | bt_value_put_ref(params); |
| 1641 | params = cli_value_from_arg(arg, error_str); |
| 1642 | if (!params) { |
| 1643 | BT_CLI_LOGE_APPEND_CAUSE("Invalid format for --params option's argument:\n %s", |
| 1644 | error_str->str); |
| 1645 | goto error; |
| 1646 | } |
| 1647 | break; |
| 1648 | } |
| 1649 | case OPT_HELP: |
| 1650 | print_query_usage(stdout); |
| 1651 | *retcode = -1; |
| 1652 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1653 | goto end; |
| 1654 | default: |
| 1655 | BT_CLI_LOGE_APPEND_CAUSE("Unknown command-line option specified (option code %d).", |
| 1656 | opt); |
| 1657 | goto error; |
| 1658 | } |
| 1659 | |
| 1660 | free(arg); |
| 1661 | arg = NULL; |
| 1662 | } |
| 1663 | |
| 1664 | /* Check for option parsing error */ |
| 1665 | if (opt < -1) { |
| 1666 | BT_CLI_LOGE_APPEND_CAUSE("While parsing command-line options, at option %s: `%s`.", |
| 1667 | poptBadOption(pc, 0), poptStrerror(opt)); |
| 1668 | goto error; |
| 1669 | } |
| 1670 | |
| 1671 | /* |
| 1672 | * We need exactly two leftover arguments which are the |
| 1673 | * mandatory component class specification and query object. |
| 1674 | */ |
| 1675 | leftover = poptGetArg(pc); |
| 1676 | if (leftover) { |
| 1677 | cfg->cmd_data.query.cfg_component = |
| 1678 | bt_config_component_from_arg(leftover, |
| 1679 | default_log_level); |
| 1680 | if (!cfg->cmd_data.query.cfg_component) { |
| 1681 | BT_CLI_LOGE_APPEND_CAUSE("Invalid format for component class specification:\n %s", |
| 1682 | leftover); |
| 1683 | goto error; |
| 1684 | } |
| 1685 | |
| 1686 | BT_ASSERT(params); |
| 1687 | BT_OBJECT_MOVE_REF(cfg->cmd_data.query.cfg_component->params, |
| 1688 | params); |
| 1689 | } else { |
| 1690 | print_query_usage(stdout); |
| 1691 | *retcode = -1; |
| 1692 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1693 | goto end; |
| 1694 | } |
| 1695 | |
| 1696 | leftover = poptGetArg(pc); |
| 1697 | if (leftover) { |
| 1698 | if (strlen(leftover) == 0) { |
| 1699 | BT_CLI_LOGE_APPEND_CAUSE("Invalid empty object."); |
| 1700 | goto error; |
| 1701 | } |
| 1702 | |
| 1703 | g_string_assign(cfg->cmd_data.query.object, leftover); |
| 1704 | } else { |
| 1705 | print_query_usage(stdout); |
| 1706 | *retcode = -1; |
| 1707 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1708 | goto end; |
| 1709 | } |
| 1710 | |
| 1711 | leftover = poptGetArg(pc); |
| 1712 | if (leftover) { |
| 1713 | BT_CLI_LOGE_APPEND_CAUSE("Unexpected argument: `%s`.", leftover); |
| 1714 | goto error; |
| 1715 | } |
| 1716 | |
| 1717 | if (append_home_and_system_plugin_paths_cfg(cfg)) { |
| 1718 | goto error; |
| 1719 | } |
| 1720 | |
| 1721 | goto end; |
| 1722 | |
| 1723 | error: |
| 1724 | *retcode = 1; |
| 1725 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1726 | |
| 1727 | end: |
| 1728 | if (pc) { |
| 1729 | poptFreeContext(pc); |
| 1730 | } |
| 1731 | |
| 1732 | if (error_str) { |
| 1733 | g_string_free(error_str, TRUE); |
| 1734 | } |
| 1735 | |
| 1736 | bt_value_put_ref(params); |
| 1737 | free(arg); |
| 1738 | return cfg; |
| 1739 | } |
| 1740 | |
| 1741 | /* |
| 1742 | * Prints the list-plugins command usage. |
| 1743 | */ |
| 1744 | static |
| 1745 | void print_list_plugins_usage(FILE *fp) |
| 1746 | { |
| 1747 | fprintf(fp, "Usage: babeltrace2 [GENERAL OPTIONS] list-plugins [OPTIONS]\n"); |
| 1748 | fprintf(fp, "\n"); |
| 1749 | fprintf(fp, "Options:\n"); |
| 1750 | fprintf(fp, "\n"); |
| 1751 | fprintf(fp, " --omit-home-plugin-path Omit home plugins from plugin search path\n"); |
| 1752 | fprintf(fp, " (~/.local/lib/babeltrace2/plugins)\n"); |
| 1753 | fprintf(fp, " --omit-system-plugin-path Omit system plugins from plugin search path\n"); |
| 1754 | fprintf(fp, " --plugin-path=PATH[:PATH]... Add PATH to the list of paths from which\n"); |
| 1755 | fprintf(fp, " dynamic plugins can be loaded\n"); |
| 1756 | fprintf(fp, " -h, --help Show this help and quit\n"); |
| 1757 | fprintf(fp, "\n"); |
| 1758 | fprintf(fp, "See `babeltrace2 --help` for the list of general options.\n"); |
| 1759 | fprintf(fp, "\n"); |
| 1760 | fprintf(fp, "Use `babeltrace2 help` to get help for a specific plugin or component class.\n"); |
| 1761 | } |
| 1762 | |
| 1763 | static |
| 1764 | struct poptOption list_plugins_long_options[] = { |
| 1765 | /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ |
| 1766 | { "help", 'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL }, |
| 1767 | { "omit-home-plugin-path", '\0', POPT_ARG_NONE, NULL, OPT_OMIT_HOME_PLUGIN_PATH, NULL, NULL }, |
| 1768 | { "omit-system-plugin-path", '\0', POPT_ARG_NONE, NULL, OPT_OMIT_SYSTEM_PLUGIN_PATH, NULL, NULL }, |
| 1769 | { "plugin-path", '\0', POPT_ARG_STRING, NULL, OPT_PLUGIN_PATH, NULL, NULL }, |
| 1770 | { NULL, 0, '\0', NULL, 0, NULL, NULL }, |
| 1771 | }; |
| 1772 | |
| 1773 | /* |
| 1774 | * Creates a Babeltrace config object from the arguments of a |
| 1775 | * list-plugins command. |
| 1776 | * |
| 1777 | * *retcode is set to the appropriate exit code to use. |
| 1778 | */ |
| 1779 | static |
| 1780 | struct bt_config *bt_config_list_plugins_from_args(int argc, const char *argv[], |
| 1781 | int *retcode, bool force_omit_system_plugin_path, |
| 1782 | bool force_omit_home_plugin_path, |
| 1783 | const bt_value *initial_plugin_paths) |
| 1784 | { |
| 1785 | poptContext pc = NULL; |
| 1786 | char *arg = NULL; |
| 1787 | int opt; |
| 1788 | int ret; |
| 1789 | struct bt_config *cfg = NULL; |
| 1790 | const char *leftover; |
| 1791 | |
| 1792 | *retcode = 0; |
| 1793 | cfg = bt_config_list_plugins_create(initial_plugin_paths); |
| 1794 | if (!cfg) { |
| 1795 | goto error; |
| 1796 | } |
| 1797 | |
| 1798 | cfg->omit_system_plugin_path = force_omit_system_plugin_path; |
| 1799 | cfg->omit_home_plugin_path = force_omit_home_plugin_path; |
| 1800 | ret = append_env_var_plugin_paths(cfg->plugin_paths); |
| 1801 | if (ret) { |
| 1802 | goto error; |
| 1803 | } |
| 1804 | |
| 1805 | /* Parse options */ |
| 1806 | pc = poptGetContext(NULL, argc, (const char **) argv, |
| 1807 | list_plugins_long_options, POPT_CONTEXT_KEEP_FIRST); |
| 1808 | if (!pc) { |
| 1809 | BT_CLI_LOGE_APPEND_CAUSE("Cannot get popt context."); |
| 1810 | goto error; |
| 1811 | } |
| 1812 | |
| 1813 | poptReadDefaultConfig(pc, 0); |
| 1814 | |
| 1815 | while ((opt = poptGetNextOpt(pc)) > 0) { |
| 1816 | arg = poptGetOptArg(pc); |
| 1817 | |
| 1818 | switch (opt) { |
| 1819 | case OPT_PLUGIN_PATH: |
| 1820 | if (bt_config_append_plugin_paths_check_setuid_setgid( |
| 1821 | cfg->plugin_paths, arg)) { |
| 1822 | goto error; |
| 1823 | } |
| 1824 | break; |
| 1825 | case OPT_OMIT_SYSTEM_PLUGIN_PATH: |
| 1826 | cfg->omit_system_plugin_path = true; |
| 1827 | break; |
| 1828 | case OPT_OMIT_HOME_PLUGIN_PATH: |
| 1829 | cfg->omit_home_plugin_path = true; |
| 1830 | break; |
| 1831 | case OPT_HELP: |
| 1832 | print_list_plugins_usage(stdout); |
| 1833 | *retcode = -1; |
| 1834 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1835 | goto end; |
| 1836 | default: |
| 1837 | BT_CLI_LOGE_APPEND_CAUSE("Unknown command-line option specified (option code %d).", |
| 1838 | opt); |
| 1839 | goto error; |
| 1840 | } |
| 1841 | |
| 1842 | free(arg); |
| 1843 | arg = NULL; |
| 1844 | } |
| 1845 | |
| 1846 | /* Check for option parsing error */ |
| 1847 | if (opt < -1) { |
| 1848 | BT_CLI_LOGE_APPEND_CAUSE("While parsing command-line options, at option %s: %s", |
| 1849 | poptBadOption(pc, 0), poptStrerror(opt)); |
| 1850 | goto error; |
| 1851 | } |
| 1852 | |
| 1853 | leftover = poptGetArg(pc); |
| 1854 | if (leftover) { |
| 1855 | BT_CLI_LOGE_APPEND_CAUSE("Unexpected argument: `%s`.", leftover); |
| 1856 | goto error; |
| 1857 | } |
| 1858 | |
| 1859 | if (append_home_and_system_plugin_paths_cfg(cfg)) { |
| 1860 | goto error; |
| 1861 | } |
| 1862 | |
| 1863 | goto end; |
| 1864 | |
| 1865 | error: |
| 1866 | *retcode = 1; |
| 1867 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 1868 | |
| 1869 | end: |
| 1870 | if (pc) { |
| 1871 | poptFreeContext(pc); |
| 1872 | } |
| 1873 | |
| 1874 | free(arg); |
| 1875 | return cfg; |
| 1876 | } |
| 1877 | |
| 1878 | /* |
| 1879 | * Prints the run command usage. |
| 1880 | */ |
| 1881 | static |
| 1882 | void print_run_usage(FILE *fp) |
| 1883 | { |
| 1884 | fprintf(fp, "Usage: babeltrace2 [GENERAL OPTIONS] run [OPTIONS]\n"); |
| 1885 | fprintf(fp, "\n"); |
| 1886 | fprintf(fp, "Options:\n"); |
| 1887 | fprintf(fp, "\n"); |
| 1888 | fprintf(fp, " -b, --base-params=PARAMS Set PARAMS as the current base parameters\n"); |
| 1889 | fprintf(fp, " for all the following components until\n"); |
| 1890 | fprintf(fp, " --reset-base-params is encountered\n"); |
| 1891 | fprintf(fp, " (see the expected format of PARAMS below)\n"); |
| 1892 | fprintf(fp, " -c, --component=[NAME:]TYPE.PLUGIN.CLS\n"); |
| 1893 | fprintf(fp, " Instantiate the component class CLS of type\n"); |
| 1894 | fprintf(fp, " TYPE (`source`, `filter`, or `sink`) found\n"); |
| 1895 | fprintf(fp, " in the plugin PLUGIN, add it to the graph,\n"); |
| 1896 | fprintf(fp, " and optionally name it NAME (you can also\n"); |
| 1897 | fprintf(fp, " specify the name with --name)\n"); |
| 1898 | fprintf(fp, " -x, --connect=CONNECTION Connect two created components (see the\n"); |
| 1899 | fprintf(fp, " expected format of CONNECTION below)\n"); |
| 1900 | fprintf(fp, " -l, --log-level=LVL Set the log level of the current component to LVL\n"); |
| 1901 | fprintf(fp, " (`N`, `V`, `D`, `I`, `W`, `E`, or `F`)\n"); |
| 1902 | fprintf(fp, " -n, --name=NAME Set the name of the current component\n"); |
| 1903 | fprintf(fp, " to NAME (must be unique amongst all the\n"); |
| 1904 | fprintf(fp, " names of the created components)\n"); |
| 1905 | fprintf(fp, " --omit-home-plugin-path Omit home plugins from plugin search path\n"); |
| 1906 | fprintf(fp, " (~/.local/lib/babeltrace2/plugins)\n"); |
| 1907 | fprintf(fp, " --omit-system-plugin-path Omit system plugins from plugin search path\n"); |
| 1908 | fprintf(fp, " -p, --params=PARAMS Add initialization parameters PARAMS to the\n"); |
| 1909 | fprintf(fp, " current component (see the expected format\n"); |
| 1910 | fprintf(fp, " of PARAMS below)\n"); |
| 1911 | fprintf(fp, " --plugin-path=PATH[:PATH]... Add PATH to the list of paths from which\n"); |
| 1912 | fprintf(fp, " dynamic plugins can be loaded\n"); |
| 1913 | fprintf(fp, " -r, --reset-base-params Reset the current base parameters to an\n"); |
| 1914 | fprintf(fp, " empty map\n"); |
| 1915 | fprintf(fp, " --retry-duration=DUR When babeltrace2(1) needs to retry to run\n"); |
| 1916 | fprintf(fp, " the graph later, retry in DUR µs\n"); |
| 1917 | fprintf(fp, " (default: 100000)\n"); |
| 1918 | fprintf(fp, " -h, --help Show this help and quit\n"); |
| 1919 | fprintf(fp, "\n"); |
| 1920 | fprintf(fp, "See `babeltrace2 --help` for the list of general options.\n"); |
| 1921 | fprintf(fp, "\n\n"); |
| 1922 | fprintf(fp, "Expected format of CONNECTION\n"); |
| 1923 | fprintf(fp, "-----------------------------\n"); |
| 1924 | fprintf(fp, "\n"); |
| 1925 | fprintf(fp, " UPSTREAM[.UPSTREAM-PORT]:DOWNSTREAM[.DOWNSTREAM-PORT]\n"); |
| 1926 | fprintf(fp, "\n"); |
| 1927 | fprintf(fp, "UPSTREAM and DOWNSTREAM are names of the upstream and downstream\n"); |
| 1928 | fprintf(fp, "components to connect together. You must escape the following characters\n\n"); |
| 1929 | fprintf(fp, "with `\\`: `\\`, `.`, and `:`. You can set the name of the current\n"); |
| 1930 | fprintf(fp, "component with the --name option.\n"); |
| 1931 | fprintf(fp, "\n"); |
| 1932 | fprintf(fp, "UPSTREAM-PORT and DOWNSTREAM-PORT are optional globbing patterns to\n"); |
| 1933 | fprintf(fp, "identify the upstream and downstream ports to use for the connection.\n"); |
| 1934 | fprintf(fp, "When the port is not specified, `*` is used.\n"); |
| 1935 | fprintf(fp, "\n"); |
| 1936 | fprintf(fp, "When a component named UPSTREAM has an available port which matches the\n"); |
| 1937 | fprintf(fp, "UPSTREAM-PORT globbing pattern, it is connected to the first port which\n"); |
| 1938 | fprintf(fp, "matches the DOWNSTREAM-PORT globbing pattern of the component named\n"); |
| 1939 | fprintf(fp, "DOWNSTREAM.\n"); |
| 1940 | fprintf(fp, "\n"); |
| 1941 | fprintf(fp, "The only special character in UPSTREAM-PORT and DOWNSTREAM-PORT is `*`\n"); |
| 1942 | fprintf(fp, "which matches anything. You must escape the following characters\n"); |
| 1943 | fprintf(fp, "with `\\`: `\\`, `*`, `?`, `[`, `.`, and `:`.\n"); |
| 1944 | fprintf(fp, "\n"); |
| 1945 | fprintf(fp, "You can connect a source component to a filter or sink component. You\n"); |
| 1946 | fprintf(fp, "can connect a filter component to a sink component.\n"); |
| 1947 | fprintf(fp, "\n"); |
| 1948 | fprintf(fp, "Examples:\n"); |
| 1949 | fprintf(fp, "\n"); |
| 1950 | fprintf(fp, " my-src:my-sink\n"); |
| 1951 | fprintf(fp, " ctf-fs.*stream*:utils-muxer:*\n"); |
| 1952 | fprintf(fp, "\n"); |
| 1953 | fprintf(fp, "IMPORTANT: Make sure to single-quote the whole argument when you run\n"); |
| 1954 | fprintf(fp, "babeltrace2 from a shell.\n"); |
| 1955 | fprintf(fp, "\n\n"); |
| 1956 | print_expected_params_format(fp); |
| 1957 | } |
| 1958 | |
| 1959 | /* |
| 1960 | * Creates a Babeltrace config object from the arguments of a run |
| 1961 | * command. |
| 1962 | * |
| 1963 | * *retcode is set to the appropriate exit code to use. |
| 1964 | */ |
| 1965 | static |
| 1966 | struct bt_config *bt_config_run_from_args(int argc, const char *argv[], |
| 1967 | int *retcode, bool force_omit_system_plugin_path, |
| 1968 | bool force_omit_home_plugin_path, |
| 1969 | const bt_value *initial_plugin_paths, int default_log_level) |
| 1970 | { |
| 1971 | struct bt_config_component *cur_cfg_comp = NULL; |
| 1972 | enum bt_config_component_dest cur_cfg_comp_dest = |
| 1973 | BT_CONFIG_COMPONENT_DEST_UNKNOWN; |
| 1974 | bt_value *cur_base_params = NULL; |
| 1975 | int ret = 0; |
| 1976 | struct bt_config *cfg = NULL; |
| 1977 | bt_value *instance_names = NULL; |
| 1978 | bt_value *connection_args = NULL; |
| 1979 | char error_buf[256] = { 0 }; |
| 1980 | long retry_duration = -1; |
| 1981 | bt_value_map_extend_status extend_status; |
| 1982 | GString *error_str = NULL; |
| 1983 | struct bt_argpar_parse_ret argpar_parse_ret = { 0 }; |
| 1984 | int i; |
| 1985 | |
| 1986 | static const struct bt_argpar_opt_descr run_options[] = { |
| 1987 | { OPT_BASE_PARAMS, 'b', "base-params", true }, |
| 1988 | { OPT_COMPONENT, 'c', "component", true }, |
| 1989 | { OPT_CONNECT, 'x', "connect", true }, |
| 1990 | { OPT_HELP, 'h', "help", false }, |
| 1991 | { OPT_LOG_LEVEL, 'l', "log-level", true }, |
| 1992 | { OPT_NAME, 'n', "name", true }, |
| 1993 | { OPT_OMIT_HOME_PLUGIN_PATH, '\0', "omit-home-plugin-path", false }, |
| 1994 | { OPT_OMIT_SYSTEM_PLUGIN_PATH, '\0', "omit-system-plugin-path", false }, |
| 1995 | { OPT_PARAMS, 'p', "params", true }, |
| 1996 | { OPT_PLUGIN_PATH, '\0', "plugin-path", true }, |
| 1997 | { OPT_RESET_BASE_PARAMS, 'r', "reset-base-params", false }, |
| 1998 | { OPT_RETRY_DURATION, '\0', "retry-duration", true }, |
| 1999 | BT_ARGPAR_OPT_DESCR_SENTINEL |
| 2000 | }; |
| 2001 | |
| 2002 | *retcode = 0; |
| 2003 | |
| 2004 | error_str = g_string_new(NULL); |
| 2005 | if (!error_str) { |
| 2006 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2007 | goto error; |
| 2008 | } |
| 2009 | |
| 2010 | if (argc < 1) { |
| 2011 | print_run_usage(stdout); |
| 2012 | *retcode = -1; |
| 2013 | goto end; |
| 2014 | } |
| 2015 | |
| 2016 | cfg = bt_config_run_create(initial_plugin_paths); |
| 2017 | if (!cfg) { |
| 2018 | goto error; |
| 2019 | } |
| 2020 | |
| 2021 | cfg->cmd_data.run.retry_duration_us = 100000; |
| 2022 | cfg->omit_system_plugin_path = force_omit_system_plugin_path; |
| 2023 | cfg->omit_home_plugin_path = force_omit_home_plugin_path; |
| 2024 | cur_base_params = bt_value_map_create(); |
| 2025 | if (!cur_base_params) { |
| 2026 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2027 | goto error; |
| 2028 | } |
| 2029 | |
| 2030 | instance_names = bt_value_map_create(); |
| 2031 | if (!instance_names) { |
| 2032 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2033 | goto error; |
| 2034 | } |
| 2035 | |
| 2036 | connection_args = bt_value_array_create(); |
| 2037 | if (!connection_args) { |
| 2038 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2039 | goto error; |
| 2040 | } |
| 2041 | |
| 2042 | ret = append_env_var_plugin_paths(cfg->plugin_paths); |
| 2043 | if (ret) { |
| 2044 | goto error; |
| 2045 | } |
| 2046 | |
| 2047 | /* Parse options */ |
| 2048 | argpar_parse_ret = bt_argpar_parse(argc, argv, run_options, true); |
| 2049 | if (argpar_parse_ret.error) { |
| 2050 | BT_CLI_LOGE_APPEND_CAUSE( |
| 2051 | "While parsing `run` command's command-line arguments: %s", |
| 2052 | argpar_parse_ret.error->str); |
| 2053 | goto error; |
| 2054 | } |
| 2055 | |
| 2056 | if (help_option_is_specified(&argpar_parse_ret)) { |
| 2057 | print_run_usage(stdout); |
| 2058 | *retcode = -1; |
| 2059 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 2060 | goto end; |
| 2061 | } |
| 2062 | |
| 2063 | for (i = 0; i < argpar_parse_ret.items->len; i++) { |
| 2064 | struct bt_argpar_item *argpar_item = |
| 2065 | g_ptr_array_index(argpar_parse_ret.items, i); |
| 2066 | struct bt_argpar_item_opt *argpar_item_opt; |
| 2067 | const char *arg; |
| 2068 | |
| 2069 | /* This command does not accept leftover arguments. */ |
| 2070 | if (argpar_item->type == BT_ARGPAR_ITEM_TYPE_NON_OPT) { |
| 2071 | struct bt_argpar_item_non_opt *argpar_nonopt_item = |
| 2072 | (struct bt_argpar_item_non_opt *) argpar_item; |
| 2073 | |
| 2074 | BT_CLI_LOGE_APPEND_CAUSE("Unexpected argument: `%s`", |
| 2075 | argpar_nonopt_item->arg); |
| 2076 | goto error; |
| 2077 | } |
| 2078 | |
| 2079 | argpar_item_opt = (struct bt_argpar_item_opt *) argpar_item; |
| 2080 | arg = argpar_item_opt->arg; |
| 2081 | |
| 2082 | switch (argpar_item_opt->descr->id) { |
| 2083 | case OPT_PLUGIN_PATH: |
| 2084 | if (bt_config_append_plugin_paths_check_setuid_setgid( |
| 2085 | cfg->plugin_paths, arg)) { |
| 2086 | goto error; |
| 2087 | } |
| 2088 | break; |
| 2089 | case OPT_OMIT_SYSTEM_PLUGIN_PATH: |
| 2090 | cfg->omit_system_plugin_path = true; |
| 2091 | break; |
| 2092 | case OPT_OMIT_HOME_PLUGIN_PATH: |
| 2093 | cfg->omit_home_plugin_path = true; |
| 2094 | break; |
| 2095 | case OPT_COMPONENT: |
| 2096 | { |
| 2097 | enum bt_config_component_dest new_dest; |
| 2098 | |
| 2099 | if (cur_cfg_comp) { |
| 2100 | ret = add_run_cfg_comp_check_name(cfg, |
| 2101 | cur_cfg_comp, cur_cfg_comp_dest, |
| 2102 | instance_names); |
| 2103 | BT_OBJECT_PUT_REF_AND_RESET(cur_cfg_comp); |
| 2104 | if (ret) { |
| 2105 | goto error; |
| 2106 | } |
| 2107 | } |
| 2108 | |
| 2109 | cur_cfg_comp = bt_config_component_from_arg(arg, |
| 2110 | default_log_level); |
| 2111 | if (!cur_cfg_comp) { |
| 2112 | BT_CLI_LOGE_APPEND_CAUSE("Invalid format for --component option's argument:\n %s", |
| 2113 | arg); |
| 2114 | goto error; |
| 2115 | } |
| 2116 | |
| 2117 | switch (cur_cfg_comp->type) { |
| 2118 | case BT_COMPONENT_CLASS_TYPE_SOURCE: |
| 2119 | new_dest = BT_CONFIG_COMPONENT_DEST_SOURCE; |
| 2120 | break; |
| 2121 | case BT_COMPONENT_CLASS_TYPE_FILTER: |
| 2122 | new_dest = BT_CONFIG_COMPONENT_DEST_FILTER; |
| 2123 | break; |
| 2124 | case BT_COMPONENT_CLASS_TYPE_SINK: |
| 2125 | new_dest = BT_CONFIG_COMPONENT_DEST_SINK; |
| 2126 | break; |
| 2127 | default: |
| 2128 | abort(); |
| 2129 | } |
| 2130 | |
| 2131 | BT_ASSERT(cur_base_params); |
| 2132 | bt_value_put_ref(cur_cfg_comp->params); |
| 2133 | if (bt_value_copy(cur_base_params, |
| 2134 | &cur_cfg_comp->params) < 0) { |
| 2135 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2136 | goto error; |
| 2137 | } |
| 2138 | |
| 2139 | cur_cfg_comp_dest = new_dest; |
| 2140 | break; |
| 2141 | } |
| 2142 | case OPT_PARAMS: |
| 2143 | { |
| 2144 | bt_value *params; |
| 2145 | bt_value *params_to_set; |
| 2146 | |
| 2147 | if (!cur_cfg_comp) { |
| 2148 | BT_CLI_LOGE_APPEND_CAUSE("Cannot add parameters to unavailable component:\n %s", |
| 2149 | arg); |
| 2150 | goto error; |
| 2151 | } |
| 2152 | |
| 2153 | params = cli_value_from_arg(arg, error_str); |
| 2154 | if (!params) { |
| 2155 | BT_CLI_LOGE_APPEND_CAUSE("Invalid format for --params option's argument:\n %s", |
| 2156 | error_str->str); |
| 2157 | goto error; |
| 2158 | } |
| 2159 | |
| 2160 | extend_status = bt_value_map_extend( |
| 2161 | cur_cfg_comp->params, params, ¶ms_to_set); |
| 2162 | BT_VALUE_PUT_REF_AND_RESET(params); |
| 2163 | if (extend_status != BT_VALUE_MAP_EXTEND_STATUS_OK) { |
| 2164 | BT_CLI_LOGE_APPEND_CAUSE("Cannot extend current component parameters with --params option's argument:\n %s", |
| 2165 | arg); |
| 2166 | goto error; |
| 2167 | } |
| 2168 | |
| 2169 | BT_OBJECT_MOVE_REF(cur_cfg_comp->params, params_to_set); |
| 2170 | break; |
| 2171 | } |
| 2172 | case OPT_NAME: |
| 2173 | if (!cur_cfg_comp) { |
| 2174 | BT_CLI_LOGE_APPEND_CAUSE("Cannot set the name of unavailable component:\n %s", |
| 2175 | arg); |
| 2176 | goto error; |
| 2177 | } |
| 2178 | |
| 2179 | g_string_assign(cur_cfg_comp->instance_name, arg); |
| 2180 | break; |
| 2181 | case OPT_LOG_LEVEL: |
| 2182 | if (!cur_cfg_comp) { |
| 2183 | BT_CLI_LOGE_APPEND_CAUSE("Cannot set the log level of unavailable component:\n %s", |
| 2184 | arg); |
| 2185 | goto error; |
| 2186 | } |
| 2187 | |
| 2188 | cur_cfg_comp->log_level = |
| 2189 | bt_log_get_level_from_string(arg); |
| 2190 | if (cur_cfg_comp->log_level < 0) { |
| 2191 | BT_CLI_LOGE_APPEND_CAUSE("Invalid argument for --log-level option:\n %s", |
| 2192 | arg); |
| 2193 | goto error; |
| 2194 | } |
| 2195 | break; |
| 2196 | case OPT_BASE_PARAMS: |
| 2197 | { |
| 2198 | bt_value *params = cli_value_from_arg(arg, error_str); |
| 2199 | |
| 2200 | if (!params) { |
| 2201 | BT_CLI_LOGE_APPEND_CAUSE("Invalid format for --base-params option's argument:\n %s", |
| 2202 | error_str->str); |
| 2203 | goto error; |
| 2204 | } |
| 2205 | |
| 2206 | BT_OBJECT_MOVE_REF(cur_base_params, params); |
| 2207 | break; |
| 2208 | } |
| 2209 | case OPT_RESET_BASE_PARAMS: |
| 2210 | BT_VALUE_PUT_REF_AND_RESET(cur_base_params); |
| 2211 | cur_base_params = bt_value_map_create(); |
| 2212 | if (!cur_base_params) { |
| 2213 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2214 | goto error; |
| 2215 | } |
| 2216 | break; |
| 2217 | case OPT_CONNECT: |
| 2218 | if (bt_value_array_append_string_element( |
| 2219 | connection_args, arg)) { |
| 2220 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2221 | goto error; |
| 2222 | } |
| 2223 | break; |
| 2224 | case OPT_RETRY_DURATION: { |
| 2225 | gchar *end; |
| 2226 | size_t arg_len = strlen(argpar_item_opt->arg); |
| 2227 | |
| 2228 | retry_duration = g_ascii_strtoll(argpar_item_opt->arg, &end, 10); |
| 2229 | |
| 2230 | if (arg_len == 0 || end != (argpar_item_opt->arg + arg_len)) { |
| 2231 | BT_CLI_LOGE_APPEND_CAUSE( |
| 2232 | "Could not parse --retry-duration option's argument as an unsigned integer: `%s`", |
| 2233 | argpar_item_opt->arg); |
| 2234 | goto error; |
| 2235 | } |
| 2236 | |
| 2237 | if (retry_duration < 0) { |
| 2238 | BT_CLI_LOGE_APPEND_CAUSE("--retry-duration option's argument must be positive or 0: %ld", |
| 2239 | retry_duration); |
| 2240 | goto error; |
| 2241 | } |
| 2242 | |
| 2243 | cfg->cmd_data.run.retry_duration_us = |
| 2244 | (uint64_t) retry_duration; |
| 2245 | break; |
| 2246 | } |
| 2247 | default: |
| 2248 | BT_CLI_LOGE_APPEND_CAUSE("Unknown command-line option specified (option code %d).", |
| 2249 | argpar_item_opt->descr->id); |
| 2250 | goto error; |
| 2251 | } |
| 2252 | } |
| 2253 | |
| 2254 | /* Add current component */ |
| 2255 | if (cur_cfg_comp) { |
| 2256 | ret = add_run_cfg_comp_check_name(cfg, cur_cfg_comp, |
| 2257 | cur_cfg_comp_dest, instance_names); |
| 2258 | BT_OBJECT_PUT_REF_AND_RESET(cur_cfg_comp); |
| 2259 | if (ret) { |
| 2260 | goto error; |
| 2261 | } |
| 2262 | } |
| 2263 | |
| 2264 | if (cfg->cmd_data.run.sources->len == 0) { |
| 2265 | BT_CLI_LOGE_APPEND_CAUSE("Incomplete graph: no source component."); |
| 2266 | goto error; |
| 2267 | } |
| 2268 | |
| 2269 | if (cfg->cmd_data.run.sinks->len == 0) { |
| 2270 | BT_CLI_LOGE_APPEND_CAUSE("Incomplete graph: no sink component."); |
| 2271 | goto error; |
| 2272 | } |
| 2273 | |
| 2274 | if (append_home_and_system_plugin_paths_cfg(cfg)) { |
| 2275 | goto error; |
| 2276 | } |
| 2277 | |
| 2278 | ret = bt_config_cli_args_create_connections(cfg, |
| 2279 | connection_args, |
| 2280 | error_buf, 256); |
| 2281 | if (ret) { |
| 2282 | BT_CLI_LOGE_APPEND_CAUSE("Cannot creation connections:\n%s", error_buf); |
| 2283 | goto error; |
| 2284 | } |
| 2285 | |
| 2286 | goto end; |
| 2287 | |
| 2288 | error: |
| 2289 | *retcode = 1; |
| 2290 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 2291 | |
| 2292 | end: |
| 2293 | if (error_str) { |
| 2294 | g_string_free(error_str, TRUE); |
| 2295 | } |
| 2296 | |
| 2297 | bt_argpar_parse_ret_fini(&argpar_parse_ret); |
| 2298 | BT_OBJECT_PUT_REF_AND_RESET(cur_cfg_comp); |
| 2299 | BT_VALUE_PUT_REF_AND_RESET(cur_base_params); |
| 2300 | BT_VALUE_PUT_REF_AND_RESET(instance_names); |
| 2301 | BT_VALUE_PUT_REF_AND_RESET(connection_args); |
| 2302 | return cfg; |
| 2303 | } |
| 2304 | |
| 2305 | static |
| 2306 | struct bt_config *bt_config_run_from_args_array(const bt_value *run_args, |
| 2307 | int *retcode, bool force_omit_system_plugin_path, |
| 2308 | bool force_omit_home_plugin_path, |
| 2309 | const bt_value *initial_plugin_paths, int default_log_level) |
| 2310 | { |
| 2311 | struct bt_config *cfg = NULL; |
| 2312 | const char **argv; |
| 2313 | int64_t i, len; |
| 2314 | const size_t argc = bt_value_array_get_size(run_args); |
| 2315 | |
| 2316 | argv = calloc(argc, sizeof(*argv)); |
| 2317 | if (!argv) { |
| 2318 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2319 | goto end; |
| 2320 | } |
| 2321 | |
| 2322 | len = bt_value_array_get_size(run_args); |
| 2323 | if (len < 0) { |
| 2324 | BT_CLI_LOGE_APPEND_CAUSE("Invalid executable arguments."); |
| 2325 | goto end; |
| 2326 | } |
| 2327 | for (i = 0; i < len; i++) { |
| 2328 | const bt_value *arg_value = |
| 2329 | bt_value_array_borrow_element_by_index_const(run_args, |
| 2330 | i); |
| 2331 | const char *arg; |
| 2332 | |
| 2333 | BT_ASSERT(arg_value); |
| 2334 | arg = bt_value_string_get(arg_value); |
| 2335 | BT_ASSERT(arg); |
| 2336 | argv[i] = arg; |
| 2337 | } |
| 2338 | |
| 2339 | cfg = bt_config_run_from_args(argc, argv, retcode, |
| 2340 | force_omit_system_plugin_path, force_omit_home_plugin_path, |
| 2341 | initial_plugin_paths, default_log_level); |
| 2342 | |
| 2343 | end: |
| 2344 | free(argv); |
| 2345 | return cfg; |
| 2346 | } |
| 2347 | |
| 2348 | /* |
| 2349 | * Prints the convert command usage. |
| 2350 | */ |
| 2351 | static |
| 2352 | void print_convert_usage(FILE *fp) |
| 2353 | { |
| 2354 | fprintf(fp, "Usage: babeltrace2 [GENERAL OPTIONS] [convert] [OPTIONS] [PATH/URL]\n"); |
| 2355 | fprintf(fp, "\n"); |
| 2356 | fprintf(fp, "Options:\n"); |
| 2357 | fprintf(fp, "\n"); |
| 2358 | fprintf(fp, " -c, --component=[NAME:]TYPE.PLUGIN.CLS\n"); |
| 2359 | fprintf(fp, " Instantiate the component class CLS of type\n"); |
| 2360 | fprintf(fp, " TYPE (`source`, `filter`, or `sink`) found\n"); |
| 2361 | fprintf(fp, " in the plugin PLUGIN, add it to the\n"); |
| 2362 | fprintf(fp, " conversion graph, and optionally name it\n"); |
| 2363 | fprintf(fp, " NAME (you can also specify the name with\n"); |
| 2364 | fprintf(fp, " --name)\n"); |
| 2365 | fprintf(fp, " -l, --log-level=LVL Set the log level of the current component to LVL\n"); |
| 2366 | fprintf(fp, " (`N`, `V`, `D`, `I`, `W`, `E`, or `F`)\n"); |
| 2367 | fprintf(fp, " --name=NAME Set the name of the current component\n"); |
| 2368 | fprintf(fp, " to NAME (must be unique amongst all the\n"); |
| 2369 | fprintf(fp, " names of the created components)\n"); |
| 2370 | fprintf(fp, " --omit-home-plugin-path Omit home plugins from plugin search path\n"); |
| 2371 | fprintf(fp, " (~/.local/lib/babeltrace2/plugins)\n"); |
| 2372 | fprintf(fp, " --omit-system-plugin-path Omit system plugins from plugin search path\n"); |
| 2373 | fprintf(fp, " -p, --params=PARAMS Add initialization parameters PARAMS to the\n"); |
| 2374 | fprintf(fp, " current component (see the expected format\n"); |
| 2375 | fprintf(fp, " of PARAMS below)\n"); |
| 2376 | fprintf(fp, " -P, --path=PATH Set the `path` string parameter of the\n"); |
| 2377 | fprintf(fp, " current component to PATH\n"); |
| 2378 | fprintf(fp, " --plugin-path=PATH[:PATH]... Add PATH to the list of paths from which\n"); |
| 2379 | fprintf(fp, " dynamic plugins can be loaded\n"); |
| 2380 | fprintf(fp, " --retry-duration=DUR When babeltrace2(1) needs to retry to run\n"); |
| 2381 | fprintf(fp, " the graph later, retry in DUR µs\n"); |
| 2382 | fprintf(fp, " (default: 100000)\n"); |
| 2383 | fprintf(fp, " dynamic plugins can be loaded\n"); |
| 2384 | fprintf(fp, " --run-args Print the equivalent arguments for the\n"); |
| 2385 | fprintf(fp, " `run` command to the standard output,\n"); |
| 2386 | fprintf(fp, " formatted for a shell, and quit\n"); |
| 2387 | fprintf(fp, " --run-args-0 Print the equivalent arguments for the\n"); |
| 2388 | fprintf(fp, " `run` command to the standard output,\n"); |
| 2389 | fprintf(fp, " formatted for `xargs -0`, and quit\n"); |
| 2390 | fprintf(fp, " --stream-intersection Only process events when all streams\n"); |
| 2391 | fprintf(fp, " are active\n"); |
| 2392 | fprintf(fp, " -u, --url=URL Set the `url` string parameter of the\n"); |
| 2393 | fprintf(fp, " current component to URL\n"); |
| 2394 | fprintf(fp, " -h, --help Show this help and quit\n"); |
| 2395 | fprintf(fp, "\n"); |
| 2396 | fprintf(fp, "Implicit `source.ctf.fs` component options:\n"); |
| 2397 | fprintf(fp, "\n"); |
| 2398 | fprintf(fp, " --clock-offset=SEC Set clock offset to SEC seconds\n"); |
| 2399 | fprintf(fp, " --clock-offset-ns=NS Set clock offset to NS ns\n"); |
| 2400 | fprintf(fp, "\n"); |
| 2401 | fprintf(fp, "Implicit `sink.text.pretty` component options:\n"); |
| 2402 | fprintf(fp, "\n"); |
| 2403 | fprintf(fp, " --clock-cycles Print timestamps in clock cycles\n"); |
| 2404 | fprintf(fp, " --clock-date Print timestamp dates\n"); |
| 2405 | fprintf(fp, " --clock-gmt Print and parse timestamps in the GMT\n"); |
| 2406 | fprintf(fp, " time zone instead of the local time zone\n"); |
| 2407 | fprintf(fp, " --clock-seconds Print the timestamps as `SEC.NS` instead\n"); |
| 2408 | fprintf(fp, " of `hh:mm:ss.nnnnnnnnn`\n"); |
| 2409 | fprintf(fp, " --color=(never | auto | always)\n"); |
| 2410 | fprintf(fp, " Never, automatically, or always emit\n"); |
| 2411 | fprintf(fp, " console color codes\n"); |
| 2412 | fprintf(fp, " -f, --fields=FIELD[,FIELD]... Print additional fields; FIELD can be:\n"); |
| 2413 | fprintf(fp, " `all`, `trace`, `trace:hostname`,\n"); |
| 2414 | fprintf(fp, " `trace:domain`, `trace:procname`,\n"); |
| 2415 | fprintf(fp, " `trace:vpid`, `loglevel`, `emf`\n"); |
| 2416 | fprintf(fp, " -n, --names=NAME[,NAME]... Print field names; NAME can be:\n"); |
| 2417 | fprintf(fp, " `payload` (or `arg` or `args`), `none`,\n"); |
| 2418 | fprintf(fp, " `all`, `scope`, `header`, `context`\n"); |
| 2419 | fprintf(fp, " (or `ctx`)\n"); |
| 2420 | fprintf(fp, " --no-delta Do not print time delta between\n"); |
| 2421 | fprintf(fp, " consecutive events\n"); |
| 2422 | fprintf(fp, " -w, --output=PATH Write output text to PATH instead of\n"); |
| 2423 | fprintf(fp, " the standard output\n"); |
| 2424 | fprintf(fp, "\n"); |
| 2425 | fprintf(fp, "Implicit `filter.utils.muxer` component options:\n"); |
| 2426 | fprintf(fp, "\n"); |
| 2427 | fprintf(fp, " --clock-force-correlate Assume that clocks are inherently\n"); |
| 2428 | fprintf(fp, " correlated across traces\n"); |
| 2429 | fprintf(fp, "\n"); |
| 2430 | fprintf(fp, "Implicit `filter.utils.trimmer` component options:\n"); |
| 2431 | fprintf(fp, "\n"); |
| 2432 | fprintf(fp, " -b, --begin=BEGIN Set the beginning time of the conversion\n"); |
| 2433 | fprintf(fp, " time range to BEGIN (see the format of\n"); |
| 2434 | fprintf(fp, " BEGIN below)\n"); |
| 2435 | fprintf(fp, " -e, --end=END Set the end time of the conversion time\n"); |
| 2436 | fprintf(fp, " range to END (see the format of END below)\n"); |
| 2437 | fprintf(fp, " -t, --timerange=TIMERANGE Set conversion time range to TIMERANGE:\n"); |
| 2438 | fprintf(fp, " BEGIN,END or [BEGIN,END] (literally `[` and\n"); |
| 2439 | fprintf(fp, " `]`) (see the format of BEGIN/END below)\n"); |
| 2440 | fprintf(fp, "\n"); |
| 2441 | fprintf(fp, "Implicit `filter.lttng-utils.debug-info` component options:\n"); |
| 2442 | fprintf(fp, "\n"); |
| 2443 | fprintf(fp, " --debug-info Create an implicit\n"); |
| 2444 | fprintf(fp, " `filter.lttng-utils.debug-info` component\n"); |
| 2445 | fprintf(fp, " --debug-info-dir=DIR Search for debug info in directory DIR\n"); |
| 2446 | fprintf(fp, " instead of `/usr/lib/debug`\n"); |
| 2447 | fprintf(fp, " --debug-info-full-path Show full debug info source and\n"); |
| 2448 | fprintf(fp, " binary paths instead of just names\n"); |
| 2449 | fprintf(fp, " --debug-info-target-prefix=DIR\n"); |
| 2450 | fprintf(fp, " Use directory DIR as a prefix when\n"); |
| 2451 | fprintf(fp, " looking up executables during debug\n"); |
| 2452 | fprintf(fp, " info analysis\n"); |
| 2453 | fprintf(fp, "\n"); |
| 2454 | fprintf(fp, "Legacy options that still work:\n"); |
| 2455 | fprintf(fp, "\n"); |
| 2456 | fprintf(fp, " -i, --input-format=(ctf | lttng-live)\n"); |
| 2457 | fprintf(fp, " `ctf`:\n"); |
| 2458 | fprintf(fp, " Create an implicit `source.ctf.fs`\n"); |
| 2459 | fprintf(fp, " component\n"); |
| 2460 | fprintf(fp, " `lttng-live`:\n"); |
| 2461 | fprintf(fp, " Create an implicit `source.ctf.lttng-live`\n"); |
| 2462 | fprintf(fp, " component\n"); |
| 2463 | fprintf(fp, " -o, --output-format=(text | ctf | dummy | ctf-metadata)\n"); |
| 2464 | fprintf(fp, " `text`:\n"); |
| 2465 | fprintf(fp, " Create an implicit `sink.text.pretty`\n"); |
| 2466 | fprintf(fp, " component\n"); |
| 2467 | fprintf(fp, " `ctf`:\n"); |
| 2468 | fprintf(fp, " Create an implicit `sink.ctf.fs`\n"); |
| 2469 | fprintf(fp, " component\n"); |
| 2470 | fprintf(fp, " `dummy`:\n"); |
| 2471 | fprintf(fp, " Create an implicit `sink.utils.dummy`\n"); |
| 2472 | fprintf(fp, " component\n"); |
| 2473 | fprintf(fp, " `ctf-metadata`:\n"); |
| 2474 | fprintf(fp, " Query the `source.ctf.fs` component class\n"); |
| 2475 | fprintf(fp, " for metadata text and quit\n"); |
| 2476 | fprintf(fp, "\n"); |
| 2477 | fprintf(fp, "See `babeltrace2 --help` for the list of general options.\n"); |
| 2478 | fprintf(fp, "\n\n"); |
| 2479 | fprintf(fp, "Format of BEGIN and END\n"); |
| 2480 | fprintf(fp, "-----------------------\n"); |
| 2481 | fprintf(fp, "\n"); |
| 2482 | fprintf(fp, " [YYYY-MM-DD [hh:mm:]]ss[.nnnnnnnnn]\n"); |
| 2483 | fprintf(fp, "\n\n"); |
| 2484 | print_expected_params_format(fp); |
| 2485 | } |
| 2486 | |
| 2487 | static |
| 2488 | struct poptOption convert_long_options[] = { |
| 2489 | /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ |
| 2490 | { "begin", 'b', POPT_ARG_STRING, NULL, OPT_BEGIN, NULL, NULL }, |
| 2491 | { "clock-cycles", '\0', POPT_ARG_NONE, NULL, OPT_CLOCK_CYCLES, NULL, NULL }, |
| 2492 | { "clock-date", '\0', POPT_ARG_NONE, NULL, OPT_CLOCK_DATE, NULL, NULL }, |
| 2493 | { "clock-force-correlate", '\0', POPT_ARG_NONE, NULL, OPT_CLOCK_FORCE_CORRELATE, NULL, NULL }, |
| 2494 | { "clock-gmt", '\0', POPT_ARG_NONE, NULL, OPT_CLOCK_GMT, NULL, NULL }, |
| 2495 | { "clock-offset", '\0', POPT_ARG_STRING, NULL, OPT_CLOCK_OFFSET, NULL, NULL }, |
| 2496 | { "clock-offset-ns", '\0', POPT_ARG_STRING, NULL, OPT_CLOCK_OFFSET_NS, NULL, NULL }, |
| 2497 | { "clock-seconds", '\0', POPT_ARG_NONE, NULL, OPT_CLOCK_SECONDS, NULL, NULL }, |
| 2498 | { "color", '\0', POPT_ARG_STRING, NULL, OPT_COLOR, NULL, NULL }, |
| 2499 | { "component", 'c', POPT_ARG_STRING, NULL, OPT_COMPONENT, NULL, NULL }, |
| 2500 | { "debug", 'd', POPT_ARG_NONE, NULL, OPT_DEBUG, NULL, NULL }, |
| 2501 | { "debug-info-dir", 0, POPT_ARG_STRING, NULL, OPT_DEBUG_INFO_DIR, NULL, NULL }, |
| 2502 | { "debug-info-full-path", 0, POPT_ARG_NONE, NULL, OPT_DEBUG_INFO_FULL_PATH, NULL, NULL }, |
| 2503 | { "debug-info-target-prefix", 0, POPT_ARG_STRING, NULL, OPT_DEBUG_INFO_TARGET_PREFIX, NULL, NULL }, |
| 2504 | { "end", 'e', POPT_ARG_STRING, NULL, OPT_END, NULL, NULL }, |
| 2505 | { "fields", 'f', POPT_ARG_STRING, NULL, OPT_FIELDS, NULL, NULL }, |
| 2506 | { "help", 'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL }, |
| 2507 | { "input-format", 'i', POPT_ARG_STRING, NULL, OPT_INPUT_FORMAT, NULL, NULL }, |
| 2508 | { "log-level", 'l', POPT_ARG_STRING, NULL, OPT_LOG_LEVEL, NULL, NULL }, |
| 2509 | { "name", '\0', POPT_ARG_STRING, NULL, OPT_NAME, NULL, NULL }, |
| 2510 | { "names", 'n', POPT_ARG_STRING, NULL, OPT_NAMES, NULL, NULL }, |
| 2511 | { "debug-info", '\0', POPT_ARG_NONE, NULL, OPT_DEBUG_INFO, NULL, NULL }, |
| 2512 | { "no-delta", '\0', POPT_ARG_NONE, NULL, OPT_NO_DELTA, NULL, NULL }, |
| 2513 | { "omit-home-plugin-path", '\0', POPT_ARG_NONE, NULL, OPT_OMIT_HOME_PLUGIN_PATH, NULL, NULL }, |
| 2514 | { "omit-system-plugin-path", '\0', POPT_ARG_NONE, NULL, OPT_OMIT_SYSTEM_PLUGIN_PATH, NULL, NULL }, |
| 2515 | { "output", 'w', POPT_ARG_STRING, NULL, OPT_OUTPUT, NULL, NULL }, |
| 2516 | { "output-format", 'o', POPT_ARG_STRING, NULL, OPT_OUTPUT_FORMAT, NULL, NULL }, |
| 2517 | { "params", 'p', POPT_ARG_STRING, NULL, OPT_PARAMS, NULL, NULL }, |
| 2518 | { "path", 'P', POPT_ARG_STRING, NULL, OPT_PATH, NULL, NULL }, |
| 2519 | { "plugin-path", '\0', POPT_ARG_STRING, NULL, OPT_PLUGIN_PATH, NULL, NULL }, |
| 2520 | { "retry-duration", '\0', POPT_ARG_STRING, NULL, OPT_RETRY_DURATION, NULL, NULL }, |
| 2521 | { "run-args", '\0', POPT_ARG_NONE, NULL, OPT_RUN_ARGS, NULL, NULL }, |
| 2522 | { "run-args-0", '\0', POPT_ARG_NONE, NULL, OPT_RUN_ARGS_0, NULL, NULL }, |
| 2523 | { "stream-intersection", '\0', POPT_ARG_NONE, NULL, OPT_STREAM_INTERSECTION, NULL, NULL }, |
| 2524 | { "timerange", '\0', POPT_ARG_STRING, NULL, OPT_TIMERANGE, NULL, NULL }, |
| 2525 | { "url", 'u', POPT_ARG_STRING, NULL, OPT_URL, NULL, NULL }, |
| 2526 | { "verbose", 'v', POPT_ARG_NONE, NULL, OPT_VERBOSE, NULL, NULL }, |
| 2527 | { NULL, 0, '\0', NULL, 0, NULL, NULL }, |
| 2528 | }; |
| 2529 | |
| 2530 | static |
| 2531 | GString *get_component_auto_name(const char *prefix, |
| 2532 | const bt_value *existing_names) |
| 2533 | { |
| 2534 | unsigned int i = 0; |
| 2535 | GString *auto_name = g_string_new(NULL); |
| 2536 | |
| 2537 | if (!auto_name) { |
| 2538 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2539 | goto end; |
| 2540 | } |
| 2541 | |
| 2542 | if (!bt_value_map_has_entry(existing_names, prefix)) { |
| 2543 | g_string_assign(auto_name, prefix); |
| 2544 | goto end; |
| 2545 | } |
| 2546 | |
| 2547 | do { |
| 2548 | g_string_printf(auto_name, "%s-%d", prefix, i); |
| 2549 | i++; |
| 2550 | } while (bt_value_map_has_entry(existing_names, auto_name->str)); |
| 2551 | |
| 2552 | end: |
| 2553 | return auto_name; |
| 2554 | } |
| 2555 | |
| 2556 | struct implicit_component_args { |
| 2557 | bool exists; |
| 2558 | |
| 2559 | /* The component class name (e.g. src.ctf.fs). */ |
| 2560 | GString *comp_arg; |
| 2561 | |
| 2562 | /* The component instance name. */ |
| 2563 | GString *name_arg; |
| 2564 | |
| 2565 | GString *params_arg; |
| 2566 | bt_value *extra_params; |
| 2567 | }; |
| 2568 | |
| 2569 | static |
| 2570 | int assign_name_to_implicit_component(struct implicit_component_args *args, |
| 2571 | const char *prefix, bt_value *existing_names, |
| 2572 | GList **comp_names, bool append_to_comp_names) |
| 2573 | { |
| 2574 | int ret = 0; |
| 2575 | GString *name = NULL; |
| 2576 | |
| 2577 | if (!args->exists) { |
| 2578 | goto end; |
| 2579 | } |
| 2580 | |
| 2581 | name = get_component_auto_name(prefix, |
| 2582 | existing_names); |
| 2583 | |
| 2584 | if (!name) { |
| 2585 | ret = -1; |
| 2586 | goto end; |
| 2587 | } |
| 2588 | |
| 2589 | g_string_assign(args->name_arg, name->str); |
| 2590 | |
| 2591 | if (bt_value_map_insert_entry(existing_names, name->str, |
| 2592 | bt_value_null)) { |
| 2593 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2594 | ret = -1; |
| 2595 | goto end; |
| 2596 | } |
| 2597 | |
| 2598 | if (append_to_comp_names) { |
| 2599 | *comp_names = g_list_append(*comp_names, name); |
| 2600 | name = NULL; |
| 2601 | } |
| 2602 | |
| 2603 | end: |
| 2604 | if (name) { |
| 2605 | g_string_free(name, TRUE); |
| 2606 | } |
| 2607 | |
| 2608 | return ret; |
| 2609 | } |
| 2610 | |
| 2611 | static |
| 2612 | int append_run_args_for_implicit_component( |
| 2613 | struct implicit_component_args *impl_args, |
| 2614 | bt_value *run_args) |
| 2615 | { |
| 2616 | int ret = 0; |
| 2617 | size_t i; |
| 2618 | |
| 2619 | if (!impl_args->exists) { |
| 2620 | goto end; |
| 2621 | } |
| 2622 | |
| 2623 | if (bt_value_array_append_string_element(run_args, "--component")) { |
| 2624 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2625 | goto error; |
| 2626 | } |
| 2627 | |
| 2628 | if (bt_value_array_append_string_element(run_args, impl_args->comp_arg->str)) { |
| 2629 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2630 | goto error; |
| 2631 | } |
| 2632 | |
| 2633 | if (bt_value_array_append_string_element(run_args, "--name")) { |
| 2634 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2635 | goto error; |
| 2636 | } |
| 2637 | |
| 2638 | if (bt_value_array_append_string_element(run_args, impl_args->name_arg->str)) { |
| 2639 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2640 | goto error; |
| 2641 | } |
| 2642 | |
| 2643 | if (impl_args->params_arg->len > 0) { |
| 2644 | if (bt_value_array_append_string_element(run_args, "--params")) { |
| 2645 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2646 | goto error; |
| 2647 | } |
| 2648 | |
| 2649 | if (bt_value_array_append_string_element(run_args, |
| 2650 | impl_args->params_arg->str)) { |
| 2651 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2652 | goto error; |
| 2653 | } |
| 2654 | } |
| 2655 | |
| 2656 | for (i = 0; i < bt_value_array_get_size(impl_args->extra_params); |
| 2657 | i++) { |
| 2658 | const bt_value *elem; |
| 2659 | const char *arg; |
| 2660 | |
| 2661 | elem = bt_value_array_borrow_element_by_index(impl_args->extra_params, |
| 2662 | i); |
| 2663 | if (!elem) { |
| 2664 | goto error; |
| 2665 | } |
| 2666 | |
| 2667 | BT_ASSERT(bt_value_is_string(elem)); |
| 2668 | arg = bt_value_string_get(elem); |
| 2669 | ret = bt_value_array_append_string_element(run_args, arg); |
| 2670 | if (ret) { |
| 2671 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2672 | goto error; |
| 2673 | } |
| 2674 | } |
| 2675 | |
| 2676 | goto end; |
| 2677 | |
| 2678 | error: |
| 2679 | ret = -1; |
| 2680 | |
| 2681 | end: |
| 2682 | return ret; |
| 2683 | } |
| 2684 | |
| 2685 | /* Free the fields of a `struct implicit_component_args`. */ |
| 2686 | |
| 2687 | static |
| 2688 | void finalize_implicit_component_args(struct implicit_component_args *args) |
| 2689 | { |
| 2690 | BT_ASSERT(args); |
| 2691 | |
| 2692 | if (args->comp_arg) { |
| 2693 | g_string_free(args->comp_arg, TRUE); |
| 2694 | } |
| 2695 | |
| 2696 | if (args->name_arg) { |
| 2697 | g_string_free(args->name_arg, TRUE); |
| 2698 | } |
| 2699 | |
| 2700 | if (args->params_arg) { |
| 2701 | g_string_free(args->params_arg, TRUE); |
| 2702 | } |
| 2703 | |
| 2704 | bt_value_put_ref(args->extra_params); |
| 2705 | } |
| 2706 | |
| 2707 | /* Destroy a dynamically-allocated `struct implicit_component_args`. */ |
| 2708 | |
| 2709 | static |
| 2710 | void destroy_implicit_component_args(struct implicit_component_args *args) |
| 2711 | { |
| 2712 | finalize_implicit_component_args(args); |
| 2713 | g_free(args); |
| 2714 | } |
| 2715 | |
| 2716 | /* Initialize the fields of an already allocated `struct implicit_component_args`. */ |
| 2717 | |
| 2718 | static |
| 2719 | int init_implicit_component_args(struct implicit_component_args *args, |
| 2720 | const char *comp_arg, bool exists) |
| 2721 | { |
| 2722 | int ret = 0; |
| 2723 | |
| 2724 | args->exists = exists; |
| 2725 | args->comp_arg = g_string_new(comp_arg); |
| 2726 | args->name_arg = g_string_new(NULL); |
| 2727 | args->params_arg = g_string_new(NULL); |
| 2728 | args->extra_params = bt_value_array_create(); |
| 2729 | |
| 2730 | if (!args->comp_arg || !args->name_arg || |
| 2731 | !args->params_arg || !args->extra_params) { |
| 2732 | ret = -1; |
| 2733 | finalize_implicit_component_args(args); |
| 2734 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2735 | goto end; |
| 2736 | } |
| 2737 | |
| 2738 | end: |
| 2739 | return ret; |
| 2740 | } |
| 2741 | |
| 2742 | /* Dynamically allocate and initialize a `struct implicit_component_args`. */ |
| 2743 | |
| 2744 | static |
| 2745 | struct implicit_component_args *create_implicit_component_args( |
| 2746 | const char *comp_arg) |
| 2747 | { |
| 2748 | struct implicit_component_args *args; |
| 2749 | int status; |
| 2750 | |
| 2751 | args = g_new(struct implicit_component_args, 1); |
| 2752 | if (!args) { |
| 2753 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2754 | goto end; |
| 2755 | } |
| 2756 | |
| 2757 | status = init_implicit_component_args(args, comp_arg, true); |
| 2758 | if (status != 0) { |
| 2759 | g_free(args); |
| 2760 | args = NULL; |
| 2761 | } |
| 2762 | |
| 2763 | end: |
| 2764 | return args; |
| 2765 | } |
| 2766 | |
| 2767 | static |
| 2768 | void append_implicit_component_param(struct implicit_component_args *args, |
| 2769 | const char *key, const char *value) |
| 2770 | { |
| 2771 | BT_ASSERT(args); |
| 2772 | BT_ASSERT(key); |
| 2773 | BT_ASSERT(value); |
| 2774 | append_param_arg(args->params_arg, key, value); |
| 2775 | } |
| 2776 | |
| 2777 | /* |
| 2778 | * Append the given parameter (`key=value`) to all component specifications |
| 2779 | * in `implicit_comp_args` (an array of `struct implicit_component_args *`) |
| 2780 | * which match `comp_arg`. |
| 2781 | * |
| 2782 | * Return the number of matching components. |
| 2783 | */ |
| 2784 | |
| 2785 | static |
| 2786 | int append_multiple_implicit_components_param(GPtrArray *implicit_comp_args, |
| 2787 | const char *comp_arg, const char *key, const char *value) |
| 2788 | { |
| 2789 | int i; |
| 2790 | int n = 0; |
| 2791 | |
| 2792 | for (i = 0; i < implicit_comp_args->len; i++) { |
| 2793 | struct implicit_component_args *args = implicit_comp_args->pdata[i]; |
| 2794 | |
| 2795 | if (strcmp(args->comp_arg->str, comp_arg) == 0) { |
| 2796 | append_implicit_component_param(args, key, value); |
| 2797 | n++; |
| 2798 | } |
| 2799 | } |
| 2800 | |
| 2801 | return n; |
| 2802 | } |
| 2803 | |
| 2804 | /* Escape value to make it suitable to use as a string parameter value. */ |
| 2805 | static |
| 2806 | gchar *escape_string_value(const char *value) |
| 2807 | { |
| 2808 | GString *ret; |
| 2809 | const char *in; |
| 2810 | |
| 2811 | ret = g_string_new(NULL); |
| 2812 | if (!ret) { |
| 2813 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2814 | goto end; |
| 2815 | } |
| 2816 | |
| 2817 | in = value; |
| 2818 | while (*in) { |
| 2819 | switch (*in) { |
| 2820 | case '"': |
| 2821 | case '\\': |
| 2822 | g_string_append_c(ret, '\\'); |
| 2823 | break; |
| 2824 | } |
| 2825 | |
| 2826 | g_string_append_c(ret, *in); |
| 2827 | |
| 2828 | in++; |
| 2829 | } |
| 2830 | |
| 2831 | end: |
| 2832 | return g_string_free(ret, FALSE); |
| 2833 | } |
| 2834 | |
| 2835 | static |
| 2836 | int bt_value_to_cli_param_value_append(const bt_value *value, GString *buf) |
| 2837 | { |
| 2838 | BT_ASSERT(buf); |
| 2839 | |
| 2840 | int ret = -1; |
| 2841 | |
| 2842 | switch (bt_value_get_type(value)) { |
| 2843 | case BT_VALUE_TYPE_STRING: |
| 2844 | { |
| 2845 | const char *str_value = bt_value_string_get(value); |
| 2846 | gchar *escaped_str_value; |
| 2847 | |
| 2848 | escaped_str_value = escape_string_value(str_value); |
| 2849 | if (!escaped_str_value) { |
| 2850 | goto end; |
| 2851 | } |
| 2852 | |
| 2853 | g_string_append_printf(buf, "\"%s\"", escaped_str_value); |
| 2854 | |
| 2855 | g_free(escaped_str_value); |
| 2856 | break; |
| 2857 | } |
| 2858 | case BT_VALUE_TYPE_ARRAY: { |
| 2859 | g_string_append_c(buf, '['); |
| 2860 | uint64_t sz = bt_value_array_get_size(value); |
| 2861 | for (uint64_t i = 0; i < sz; i++) { |
| 2862 | const bt_value *item; |
| 2863 | int ret; |
| 2864 | |
| 2865 | if (i > 0) { |
| 2866 | g_string_append(buf, ", "); |
| 2867 | } |
| 2868 | |
| 2869 | item = bt_value_array_borrow_element_by_index_const( |
| 2870 | value, i); |
| 2871 | ret = bt_value_to_cli_param_value_append(item, buf); |
| 2872 | |
| 2873 | if (ret) { |
| 2874 | goto end; |
| 2875 | } |
| 2876 | } |
| 2877 | g_string_append_c(buf, ']'); |
| 2878 | break; |
| 2879 | } |
| 2880 | default: |
| 2881 | abort(); |
| 2882 | } |
| 2883 | |
| 2884 | ret = 0; |
| 2885 | |
| 2886 | end: |
| 2887 | return ret; |
| 2888 | } |
| 2889 | |
| 2890 | /* |
| 2891 | * Convert `value` to its equivalent representation as a command line parameter |
| 2892 | * value. |
| 2893 | */ |
| 2894 | |
| 2895 | static |
| 2896 | gchar *bt_value_to_cli_param_value(bt_value *value) |
| 2897 | { |
| 2898 | GString *buf; |
| 2899 | gchar *result = NULL; |
| 2900 | |
| 2901 | buf = g_string_new(NULL); |
| 2902 | if (!buf) { |
| 2903 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2904 | goto error; |
| 2905 | } |
| 2906 | |
| 2907 | if (bt_value_to_cli_param_value_append(value, buf)) { |
| 2908 | goto error; |
| 2909 | } |
| 2910 | |
| 2911 | result = g_string_free(buf, FALSE); |
| 2912 | buf = NULL; |
| 2913 | |
| 2914 | goto end; |
| 2915 | |
| 2916 | error: |
| 2917 | if (buf) { |
| 2918 | g_string_free(buf, TRUE); |
| 2919 | } |
| 2920 | |
| 2921 | end: |
| 2922 | return result; |
| 2923 | } |
| 2924 | |
| 2925 | static |
| 2926 | int append_parameter_to_args(bt_value *args, const char *key, bt_value *value) |
| 2927 | { |
| 2928 | BT_ASSERT(args); |
| 2929 | BT_ASSERT(bt_value_get_type(args) == BT_VALUE_TYPE_ARRAY); |
| 2930 | BT_ASSERT(key); |
| 2931 | BT_ASSERT(value); |
| 2932 | |
| 2933 | int ret = 0; |
| 2934 | gchar *str_value = NULL; |
| 2935 | GString *parameter = NULL; |
| 2936 | |
| 2937 | if (bt_value_array_append_string_element(args, "--params")) { |
| 2938 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2939 | ret = -1; |
| 2940 | goto end; |
| 2941 | } |
| 2942 | |
| 2943 | str_value = bt_value_to_cli_param_value(value); |
| 2944 | if (!str_value) { |
| 2945 | ret = -1; |
| 2946 | goto end; |
| 2947 | } |
| 2948 | |
| 2949 | parameter = g_string_new(NULL); |
| 2950 | if (!parameter) { |
| 2951 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2952 | ret = -1; |
| 2953 | goto end; |
| 2954 | } |
| 2955 | |
| 2956 | g_string_printf(parameter, "%s=%s", key, str_value); |
| 2957 | |
| 2958 | if (bt_value_array_append_string_element(args, parameter->str)) { |
| 2959 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2960 | ret = -1; |
| 2961 | goto end; |
| 2962 | } |
| 2963 | |
| 2964 | end: |
| 2965 | if (parameter) { |
| 2966 | g_string_free(parameter, TRUE); |
| 2967 | parameter = NULL; |
| 2968 | } |
| 2969 | |
| 2970 | if (str_value) { |
| 2971 | g_free(str_value); |
| 2972 | str_value = NULL; |
| 2973 | } |
| 2974 | |
| 2975 | return ret; |
| 2976 | } |
| 2977 | |
| 2978 | static |
| 2979 | int append_string_parameter_to_args(bt_value *args, const char *key, const char *value) |
| 2980 | { |
| 2981 | bt_value *str_value; |
| 2982 | int ret; |
| 2983 | |
| 2984 | str_value = bt_value_string_create_init(value); |
| 2985 | |
| 2986 | if (!str_value) { |
| 2987 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 2988 | ret = -1; |
| 2989 | goto end; |
| 2990 | } |
| 2991 | |
| 2992 | ret = append_parameter_to_args(args, key, str_value); |
| 2993 | |
| 2994 | end: |
| 2995 | BT_VALUE_PUT_REF_AND_RESET(str_value); |
| 2996 | return ret; |
| 2997 | } |
| 2998 | |
| 2999 | static |
| 3000 | int append_implicit_component_extra_param(struct implicit_component_args *args, |
| 3001 | const char *key, const char *value) |
| 3002 | { |
| 3003 | return append_string_parameter_to_args(args->extra_params, key, value); |
| 3004 | } |
| 3005 | |
| 3006 | static |
| 3007 | int convert_append_name_param(enum bt_config_component_dest dest, |
| 3008 | GString *cur_name, GString *cur_name_prefix, |
| 3009 | bt_value *run_args, |
| 3010 | bt_value *all_names, |
| 3011 | GList **source_names, GList **filter_names, |
| 3012 | GList **sink_names) |
| 3013 | { |
| 3014 | int ret = 0; |
| 3015 | |
| 3016 | if (cur_name_prefix->len > 0) { |
| 3017 | /* We're after a --component option */ |
| 3018 | GString *name = NULL; |
| 3019 | bool append_name_opt = false; |
| 3020 | |
| 3021 | if (cur_name->len == 0) { |
| 3022 | /* |
| 3023 | * No explicit name was provided for the user |
| 3024 | * component. |
| 3025 | */ |
| 3026 | name = get_component_auto_name(cur_name_prefix->str, |
| 3027 | all_names); |
| 3028 | append_name_opt = true; |
| 3029 | } else { |
| 3030 | /* |
| 3031 | * An explicit name was provided for the user |
| 3032 | * component. |
| 3033 | */ |
| 3034 | if (bt_value_map_has_entry(all_names, |
| 3035 | cur_name->str)) { |
| 3036 | BT_CLI_LOGE_APPEND_CAUSE("Duplicate component instance name:\n %s", |
| 3037 | cur_name->str); |
| 3038 | goto error; |
| 3039 | } |
| 3040 | |
| 3041 | name = g_string_new(cur_name->str); |
| 3042 | } |
| 3043 | |
| 3044 | if (!name) { |
| 3045 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3046 | goto error; |
| 3047 | } |
| 3048 | |
| 3049 | /* |
| 3050 | * Remember this name globally, for the uniqueness of |
| 3051 | * all component names. |
| 3052 | */ |
| 3053 | if (bt_value_map_insert_entry(all_names, name->str, bt_value_null)) { |
| 3054 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3055 | goto error; |
| 3056 | } |
| 3057 | |
| 3058 | /* |
| 3059 | * Append the --name option if necessary. |
| 3060 | */ |
| 3061 | if (append_name_opt) { |
| 3062 | if (bt_value_array_append_string_element(run_args, "--name")) { |
| 3063 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3064 | goto error; |
| 3065 | } |
| 3066 | |
| 3067 | if (bt_value_array_append_string_element(run_args, name->str)) { |
| 3068 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3069 | goto error; |
| 3070 | } |
| 3071 | } |
| 3072 | |
| 3073 | /* |
| 3074 | * Remember this name specifically for the type of the |
| 3075 | * component. This is to create connection arguments. |
| 3076 | */ |
| 3077 | switch (dest) { |
| 3078 | case BT_CONFIG_COMPONENT_DEST_SOURCE: |
| 3079 | *source_names = g_list_append(*source_names, name); |
| 3080 | break; |
| 3081 | case BT_CONFIG_COMPONENT_DEST_FILTER: |
| 3082 | *filter_names = g_list_append(*filter_names, name); |
| 3083 | break; |
| 3084 | case BT_CONFIG_COMPONENT_DEST_SINK: |
| 3085 | *sink_names = g_list_append(*sink_names, name); |
| 3086 | break; |
| 3087 | default: |
| 3088 | abort(); |
| 3089 | } |
| 3090 | |
| 3091 | g_string_assign(cur_name_prefix, ""); |
| 3092 | } |
| 3093 | |
| 3094 | goto end; |
| 3095 | |
| 3096 | error: |
| 3097 | ret = -1; |
| 3098 | |
| 3099 | end: |
| 3100 | return ret; |
| 3101 | } |
| 3102 | |
| 3103 | /* |
| 3104 | * Escapes `.`, `:`, and `\` of `input` with `\`. |
| 3105 | */ |
| 3106 | static |
| 3107 | GString *escape_dot_colon(const char *input) |
| 3108 | { |
| 3109 | GString *output = g_string_new(NULL); |
| 3110 | const char *ch; |
| 3111 | |
| 3112 | if (!output) { |
| 3113 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3114 | goto end; |
| 3115 | } |
| 3116 | |
| 3117 | for (ch = input; *ch != '\0'; ch++) { |
| 3118 | if (*ch == '\\' || *ch == '.' || *ch == ':') { |
| 3119 | g_string_append_c(output, '\\'); |
| 3120 | } |
| 3121 | |
| 3122 | g_string_append_c(output, *ch); |
| 3123 | } |
| 3124 | |
| 3125 | end: |
| 3126 | return output; |
| 3127 | } |
| 3128 | |
| 3129 | /* |
| 3130 | * Appends a --connect option to a list of arguments. `upstream_name` |
| 3131 | * and `downstream_name` are escaped with escape_dot_colon() in this |
| 3132 | * function. |
| 3133 | */ |
| 3134 | static |
| 3135 | int append_connect_arg(bt_value *run_args, |
| 3136 | const char *upstream_name, const char *downstream_name) |
| 3137 | { |
| 3138 | int ret = 0; |
| 3139 | GString *e_upstream_name = escape_dot_colon(upstream_name); |
| 3140 | GString *e_downstream_name = escape_dot_colon(downstream_name); |
| 3141 | GString *arg = g_string_new(NULL); |
| 3142 | |
| 3143 | if (!e_upstream_name || !e_downstream_name || !arg) { |
| 3144 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3145 | ret = -1; |
| 3146 | goto end; |
| 3147 | } |
| 3148 | |
| 3149 | ret = bt_value_array_append_string_element(run_args, "--connect"); |
| 3150 | if (ret) { |
| 3151 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3152 | ret = -1; |
| 3153 | goto end; |
| 3154 | } |
| 3155 | |
| 3156 | g_string_append(arg, e_upstream_name->str); |
| 3157 | g_string_append_c(arg, ':'); |
| 3158 | g_string_append(arg, e_downstream_name->str); |
| 3159 | ret = bt_value_array_append_string_element(run_args, arg->str); |
| 3160 | if (ret) { |
| 3161 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3162 | ret = -1; |
| 3163 | goto end; |
| 3164 | } |
| 3165 | |
| 3166 | end: |
| 3167 | if (arg) { |
| 3168 | g_string_free(arg, TRUE); |
| 3169 | } |
| 3170 | |
| 3171 | if (e_upstream_name) { |
| 3172 | g_string_free(e_upstream_name, TRUE); |
| 3173 | } |
| 3174 | |
| 3175 | if (e_downstream_name) { |
| 3176 | g_string_free(e_downstream_name, TRUE); |
| 3177 | } |
| 3178 | |
| 3179 | return ret; |
| 3180 | } |
| 3181 | |
| 3182 | /* |
| 3183 | * Appends the run command's --connect options for the convert command. |
| 3184 | */ |
| 3185 | static |
| 3186 | int convert_auto_connect(bt_value *run_args, |
| 3187 | GList *source_names, GList *filter_names, |
| 3188 | GList *sink_names) |
| 3189 | { |
| 3190 | int ret = 0; |
| 3191 | GList *source_at = source_names; |
| 3192 | GList *filter_at = filter_names; |
| 3193 | GList *filter_prev; |
| 3194 | GList *sink_at = sink_names; |
| 3195 | |
| 3196 | BT_ASSERT(source_names); |
| 3197 | BT_ASSERT(filter_names); |
| 3198 | BT_ASSERT(sink_names); |
| 3199 | |
| 3200 | /* Connect all sources to the first filter */ |
| 3201 | for (source_at = source_names; source_at; source_at = g_list_next(source_at)) { |
| 3202 | GString *source_name = source_at->data; |
| 3203 | GString *filter_name = filter_at->data; |
| 3204 | |
| 3205 | ret = append_connect_arg(run_args, source_name->str, |
| 3206 | filter_name->str); |
| 3207 | if (ret) { |
| 3208 | goto error; |
| 3209 | } |
| 3210 | } |
| 3211 | |
| 3212 | filter_prev = filter_at; |
| 3213 | filter_at = g_list_next(filter_at); |
| 3214 | |
| 3215 | /* Connect remaining filters */ |
| 3216 | for (; filter_at; filter_prev = filter_at, filter_at = g_list_next(filter_at)) { |
| 3217 | GString *filter_name = filter_at->data; |
| 3218 | GString *filter_prev_name = filter_prev->data; |
| 3219 | |
| 3220 | ret = append_connect_arg(run_args, filter_prev_name->str, |
| 3221 | filter_name->str); |
| 3222 | if (ret) { |
| 3223 | goto error; |
| 3224 | } |
| 3225 | } |
| 3226 | |
| 3227 | /* Connect last filter to all sinks */ |
| 3228 | for (sink_at = sink_names; sink_at; sink_at = g_list_next(sink_at)) { |
| 3229 | GString *filter_name = filter_prev->data; |
| 3230 | GString *sink_name = sink_at->data; |
| 3231 | |
| 3232 | ret = append_connect_arg(run_args, filter_name->str, |
| 3233 | sink_name->str); |
| 3234 | if (ret) { |
| 3235 | goto error; |
| 3236 | } |
| 3237 | } |
| 3238 | |
| 3239 | goto end; |
| 3240 | |
| 3241 | error: |
| 3242 | ret = -1; |
| 3243 | |
| 3244 | end: |
| 3245 | return ret; |
| 3246 | } |
| 3247 | |
| 3248 | static |
| 3249 | int split_timerange(const char *arg, char **begin, char **end) |
| 3250 | { |
| 3251 | int ret = 0; |
| 3252 | const char *ch = arg; |
| 3253 | size_t end_pos; |
| 3254 | GString *g_begin = NULL; |
| 3255 | GString *g_end = NULL; |
| 3256 | |
| 3257 | BT_ASSERT(arg); |
| 3258 | |
| 3259 | if (*ch == '[') { |
| 3260 | ch++; |
| 3261 | } |
| 3262 | |
| 3263 | g_begin = bt_common_string_until(ch, "", ",", &end_pos); |
| 3264 | if (!g_begin || ch[end_pos] != ',' || g_begin->len == 0) { |
| 3265 | goto error; |
| 3266 | } |
| 3267 | |
| 3268 | ch += end_pos + 1; |
| 3269 | |
| 3270 | g_end = bt_common_string_until(ch, "", "]", &end_pos); |
| 3271 | if (!g_end || g_end->len == 0) { |
| 3272 | goto error; |
| 3273 | } |
| 3274 | |
| 3275 | BT_ASSERT(begin); |
| 3276 | BT_ASSERT(end); |
| 3277 | *begin = g_begin->str; |
| 3278 | *end = g_end->str; |
| 3279 | g_string_free(g_begin, FALSE); |
| 3280 | g_string_free(g_end, FALSE); |
| 3281 | g_begin = NULL; |
| 3282 | g_end = NULL; |
| 3283 | goto end; |
| 3284 | |
| 3285 | error: |
| 3286 | ret = -1; |
| 3287 | |
| 3288 | end: |
| 3289 | if (g_begin) { |
| 3290 | g_string_free(g_begin, TRUE); |
| 3291 | } |
| 3292 | |
| 3293 | if (g_end) { |
| 3294 | g_string_free(g_end, TRUE); |
| 3295 | } |
| 3296 | |
| 3297 | return ret; |
| 3298 | } |
| 3299 | |
| 3300 | static |
| 3301 | int g_list_prepend_gstring(GList **list, const char *string) |
| 3302 | { |
| 3303 | int ret = 0; |
| 3304 | GString *gs = g_string_new(string); |
| 3305 | |
| 3306 | BT_ASSERT(list); |
| 3307 | |
| 3308 | if (!gs) { |
| 3309 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3310 | goto end; |
| 3311 | } |
| 3312 | |
| 3313 | *list = g_list_prepend(*list, gs); |
| 3314 | |
| 3315 | end: |
| 3316 | return ret; |
| 3317 | } |
| 3318 | |
| 3319 | /* |
| 3320 | * Create `struct implicit_component_args` structures for each of the source |
| 3321 | * components we identified. Add them to `component_args`. |
| 3322 | */ |
| 3323 | |
| 3324 | static |
| 3325 | void create_implicit_component_args_from_auto_discovered_sources( |
| 3326 | const struct auto_source_discovery *auto_disc, GPtrArray *component_args) |
| 3327 | { |
| 3328 | gchar *cc_name = NULL; |
| 3329 | struct implicit_component_args *comp = NULL; |
| 3330 | int status; |
| 3331 | guint i, len; |
| 3332 | |
| 3333 | len = auto_disc->results->len; |
| 3334 | |
| 3335 | for (i = 0; i < len; i++) { |
| 3336 | struct auto_source_discovery_result *res = |
| 3337 | g_ptr_array_index(auto_disc->results, i); |
| 3338 | |
| 3339 | g_free(cc_name); |
| 3340 | cc_name = g_strdup_printf("source.%s.%s", res->plugin_name, res->source_cc_name); |
| 3341 | if (!cc_name) { |
| 3342 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3343 | goto end; |
| 3344 | } |
| 3345 | |
| 3346 | comp = create_implicit_component_args(cc_name); |
| 3347 | if (!comp) { |
| 3348 | goto end; |
| 3349 | } |
| 3350 | |
| 3351 | status = append_parameter_to_args(comp->extra_params, "inputs", res->inputs); |
| 3352 | if (status != 0) { |
| 3353 | goto end; |
| 3354 | } |
| 3355 | |
| 3356 | g_ptr_array_add(component_args, comp); |
| 3357 | comp = NULL; |
| 3358 | } |
| 3359 | |
| 3360 | end: |
| 3361 | g_free(cc_name); |
| 3362 | |
| 3363 | if (comp) { |
| 3364 | destroy_implicit_component_args(comp); |
| 3365 | } |
| 3366 | } |
| 3367 | |
| 3368 | /* |
| 3369 | * Creates a Babeltrace config object from the arguments of a convert |
| 3370 | * command. |
| 3371 | * |
| 3372 | * *retcode is set to the appropriate exit code to use. |
| 3373 | */ |
| 3374 | static |
| 3375 | struct bt_config *bt_config_convert_from_args(int argc, const char *argv[], |
| 3376 | int *retcode, bool force_omit_system_plugin_path, |
| 3377 | bool force_omit_home_plugin_path, |
| 3378 | const bt_value *initial_plugin_paths, int *default_log_level) |
| 3379 | { |
| 3380 | poptContext pc = NULL; |
| 3381 | char *arg = NULL; |
| 3382 | enum bt_config_component_dest cur_comp_dest = |
| 3383 | BT_CONFIG_COMPONENT_DEST_UNKNOWN; |
| 3384 | int opt, ret = 0; |
| 3385 | struct bt_config *cfg = NULL; |
| 3386 | bool got_input_format_opt = false; |
| 3387 | bool got_output_format_opt = false; |
| 3388 | bool trimmer_has_begin = false; |
| 3389 | bool trimmer_has_end = false; |
| 3390 | bool stream_intersection_mode = false; |
| 3391 | GString *cur_name = NULL; |
| 3392 | GString *cur_name_prefix = NULL; |
| 3393 | const char *leftover = NULL; |
| 3394 | bool print_run_args = false; |
| 3395 | bool print_run_args_0 = false; |
| 3396 | bool print_ctf_metadata = false; |
| 3397 | bt_value *run_args = NULL; |
| 3398 | bt_value *all_names = NULL; |
| 3399 | GList *source_names = NULL; |
| 3400 | GList *filter_names = NULL; |
| 3401 | GList *sink_names = NULL; |
| 3402 | bt_value *leftovers = NULL; |
| 3403 | struct implicit_component_args implicit_ctf_output_args = { 0 }; |
| 3404 | struct implicit_component_args implicit_lttng_live_args = { 0 }; |
| 3405 | struct implicit_component_args implicit_dummy_args = { 0 }; |
| 3406 | struct implicit_component_args implicit_text_args = { 0 }; |
| 3407 | struct implicit_component_args implicit_debug_info_args = { 0 }; |
| 3408 | struct implicit_component_args implicit_muxer_args = { 0 }; |
| 3409 | struct implicit_component_args implicit_trimmer_args = { 0 }; |
| 3410 | bt_value *plugin_paths; |
| 3411 | char error_buf[256] = { 0 }; |
| 3412 | size_t i; |
| 3413 | struct bt_common_lttng_live_url_parts lttng_live_url_parts = { 0 }; |
| 3414 | char *output = NULL; |
| 3415 | struct auto_source_discovery auto_disc = { NULL }; |
| 3416 | GString *auto_disc_comp_name = NULL; |
| 3417 | |
| 3418 | /* |
| 3419 | * Array of `struct implicit_component_args *` created for the sources |
| 3420 | * we have auto-discovered. |
| 3421 | */ |
| 3422 | GPtrArray *discovered_source_args = NULL; |
| 3423 | |
| 3424 | /* |
| 3425 | * If set, restrict automatic source discovery to this component class |
| 3426 | * of this plugin. |
| 3427 | */ |
| 3428 | const char *auto_source_discovery_restrict_plugin_name = NULL; |
| 3429 | const char *auto_source_discovery_restrict_component_class_name = NULL; |
| 3430 | |
| 3431 | gchar *ctf_fs_source_clock_class_offset_arg = NULL; |
| 3432 | gchar *ctf_fs_source_clock_class_offset_ns_arg = NULL; |
| 3433 | |
| 3434 | (void) bt_value_copy(initial_plugin_paths, &plugin_paths); |
| 3435 | |
| 3436 | *retcode = 0; |
| 3437 | |
| 3438 | if (argc < 1) { |
| 3439 | print_convert_usage(stdout); |
| 3440 | *retcode = -1; |
| 3441 | goto end; |
| 3442 | } |
| 3443 | |
| 3444 | if (init_implicit_component_args(&implicit_ctf_output_args, |
| 3445 | "sink.ctf.fs", false)) { |
| 3446 | goto error; |
| 3447 | } |
| 3448 | |
| 3449 | if (init_implicit_component_args(&implicit_lttng_live_args, |
| 3450 | "source.ctf.lttng-live", false)) { |
| 3451 | goto error; |
| 3452 | } |
| 3453 | |
| 3454 | if (init_implicit_component_args(&implicit_text_args, |
| 3455 | "sink.text.pretty", false)) { |
| 3456 | goto error; |
| 3457 | } |
| 3458 | |
| 3459 | if (init_implicit_component_args(&implicit_dummy_args, |
| 3460 | "sink.utils.dummy", false)) { |
| 3461 | goto error; |
| 3462 | } |
| 3463 | |
| 3464 | if (init_implicit_component_args(&implicit_debug_info_args, |
| 3465 | "filter.lttng-utils.debug-info", false)) { |
| 3466 | goto error; |
| 3467 | } |
| 3468 | |
| 3469 | if (init_implicit_component_args(&implicit_muxer_args, |
| 3470 | "filter.utils.muxer", true)) { |
| 3471 | goto error; |
| 3472 | } |
| 3473 | |
| 3474 | if (init_implicit_component_args(&implicit_trimmer_args, |
| 3475 | "filter.utils.trimmer", false)) { |
| 3476 | goto error; |
| 3477 | } |
| 3478 | |
| 3479 | all_names = bt_value_map_create(); |
| 3480 | if (!all_names) { |
| 3481 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3482 | goto error; |
| 3483 | } |
| 3484 | |
| 3485 | run_args = bt_value_array_create(); |
| 3486 | if (!run_args) { |
| 3487 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3488 | goto error; |
| 3489 | } |
| 3490 | |
| 3491 | cur_name = g_string_new(NULL); |
| 3492 | if (!cur_name) { |
| 3493 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3494 | goto error; |
| 3495 | } |
| 3496 | |
| 3497 | cur_name_prefix = g_string_new(NULL); |
| 3498 | if (!cur_name_prefix) { |
| 3499 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3500 | goto error; |
| 3501 | } |
| 3502 | |
| 3503 | ret = append_env_var_plugin_paths(plugin_paths); |
| 3504 | if (ret) { |
| 3505 | goto error; |
| 3506 | } |
| 3507 | |
| 3508 | leftovers = bt_value_array_create(); |
| 3509 | if (!leftovers) { |
| 3510 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3511 | goto error; |
| 3512 | } |
| 3513 | |
| 3514 | if (auto_source_discovery_init(&auto_disc) != 0) { |
| 3515 | goto error; |
| 3516 | } |
| 3517 | |
| 3518 | discovered_source_args = |
| 3519 | g_ptr_array_new_with_free_func((GDestroyNotify) destroy_implicit_component_args); |
| 3520 | if (!discovered_source_args) { |
| 3521 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3522 | goto error; |
| 3523 | } |
| 3524 | |
| 3525 | auto_disc_comp_name = g_string_new(NULL); |
| 3526 | if (!auto_disc_comp_name) { |
| 3527 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3528 | goto error; |
| 3529 | } |
| 3530 | |
| 3531 | /* |
| 3532 | * First pass: collect all arguments which need to be passed |
| 3533 | * as is to the run command. This pass can also add --name |
| 3534 | * arguments if needed to automatically name unnamed component |
| 3535 | * instances. Also it does the following transformations: |
| 3536 | * |
| 3537 | * --path=PATH -> --params=path="PATH" |
| 3538 | * --url=URL -> --params=url="URL" |
| 3539 | * |
| 3540 | * Also it appends the plugin paths of --plugin-path to |
| 3541 | * `plugin_paths`. |
| 3542 | */ |
| 3543 | pc = poptGetContext(NULL, argc, (const char **) argv, |
| 3544 | convert_long_options, POPT_CONTEXT_KEEP_FIRST); |
| 3545 | if (!pc) { |
| 3546 | BT_CLI_LOGE_APPEND_CAUSE("Cannot get popt context."); |
| 3547 | goto error; |
| 3548 | } |
| 3549 | |
| 3550 | poptReadDefaultConfig(pc, 0); |
| 3551 | |
| 3552 | while ((opt = poptGetNextOpt(pc)) > 0) { |
| 3553 | char *name = NULL; |
| 3554 | char *plugin_name = NULL; |
| 3555 | char *comp_cls_name = NULL; |
| 3556 | |
| 3557 | arg = poptGetOptArg(pc); |
| 3558 | |
| 3559 | switch (opt) { |
| 3560 | case OPT_COMPONENT: |
| 3561 | { |
| 3562 | bt_component_class_type type; |
| 3563 | const char *type_prefix; |
| 3564 | |
| 3565 | /* Append current component's name if needed */ |
| 3566 | ret = convert_append_name_param(cur_comp_dest, cur_name, |
| 3567 | cur_name_prefix, run_args, all_names, |
| 3568 | &source_names, &filter_names, &sink_names); |
| 3569 | if (ret) { |
| 3570 | goto error; |
| 3571 | } |
| 3572 | |
| 3573 | /* Parse the argument */ |
| 3574 | plugin_comp_cls_names(arg, &name, &plugin_name, |
| 3575 | &comp_cls_name, &type); |
| 3576 | if (!plugin_name || !comp_cls_name) { |
| 3577 | BT_CLI_LOGE_APPEND_CAUSE( |
| 3578 | "Invalid format for --component option's argument:\n %s", |
| 3579 | arg); |
| 3580 | goto error; |
| 3581 | } |
| 3582 | |
| 3583 | if (name) { |
| 3584 | g_string_assign(cur_name, name); |
| 3585 | } else { |
| 3586 | g_string_assign(cur_name, ""); |
| 3587 | } |
| 3588 | |
| 3589 | switch (type) { |
| 3590 | case BT_COMPONENT_CLASS_TYPE_SOURCE: |
| 3591 | cur_comp_dest = BT_CONFIG_COMPONENT_DEST_SOURCE; |
| 3592 | type_prefix = "source"; |
| 3593 | break; |
| 3594 | case BT_COMPONENT_CLASS_TYPE_FILTER: |
| 3595 | cur_comp_dest = BT_CONFIG_COMPONENT_DEST_FILTER; |
| 3596 | type_prefix = "filter"; |
| 3597 | break; |
| 3598 | case BT_COMPONENT_CLASS_TYPE_SINK: |
| 3599 | cur_comp_dest = BT_CONFIG_COMPONENT_DEST_SINK; |
| 3600 | type_prefix = "sink"; |
| 3601 | break; |
| 3602 | default: |
| 3603 | abort(); |
| 3604 | } |
| 3605 | |
| 3606 | if (bt_value_array_append_string_element(run_args, |
| 3607 | "--component")) { |
| 3608 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3609 | goto error; |
| 3610 | } |
| 3611 | |
| 3612 | if (bt_value_array_append_string_element(run_args, arg)) { |
| 3613 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3614 | goto error; |
| 3615 | } |
| 3616 | |
| 3617 | g_string_assign(cur_name_prefix, ""); |
| 3618 | g_string_append_printf(cur_name_prefix, "%s.%s.%s", |
| 3619 | type_prefix, plugin_name, comp_cls_name); |
| 3620 | free(name); |
| 3621 | free(plugin_name); |
| 3622 | free(comp_cls_name); |
| 3623 | name = NULL; |
| 3624 | plugin_name = NULL; |
| 3625 | comp_cls_name = NULL; |
| 3626 | break; |
| 3627 | } |
| 3628 | case OPT_PARAMS: |
| 3629 | if (cur_name_prefix->len == 0) { |
| 3630 | BT_CLI_LOGE_APPEND_CAUSE("No current component of which to set parameters:\n %s", |
| 3631 | arg); |
| 3632 | goto error; |
| 3633 | } |
| 3634 | |
| 3635 | if (bt_value_array_append_string_element(run_args, |
| 3636 | "--params")) { |
| 3637 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3638 | goto error; |
| 3639 | } |
| 3640 | |
| 3641 | if (bt_value_array_append_string_element(run_args, arg)) { |
| 3642 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3643 | goto error; |
| 3644 | } |
| 3645 | break; |
| 3646 | case OPT_PATH: |
| 3647 | if (cur_name_prefix->len == 0) { |
| 3648 | BT_CLI_LOGE_APPEND_CAUSE("No current component of which to set `path` parameter:\n %s", |
| 3649 | arg); |
| 3650 | goto error; |
| 3651 | } |
| 3652 | |
| 3653 | if (append_string_parameter_to_args(run_args, "path", arg)) { |
| 3654 | goto error; |
| 3655 | } |
| 3656 | break; |
| 3657 | case OPT_URL: |
| 3658 | if (cur_name_prefix->len == 0) { |
| 3659 | BT_CLI_LOGE_APPEND_CAUSE("No current component of which to set `url` parameter:\n %s", |
| 3660 | arg); |
| 3661 | goto error; |
| 3662 | } |
| 3663 | |
| 3664 | |
| 3665 | if (append_string_parameter_to_args(run_args, "url", arg)) { |
| 3666 | goto error; |
| 3667 | } |
| 3668 | break; |
| 3669 | case OPT_NAME: |
| 3670 | if (cur_name_prefix->len == 0) { |
| 3671 | BT_CLI_LOGE_APPEND_CAUSE("No current component to name:\n %s", |
| 3672 | arg); |
| 3673 | goto error; |
| 3674 | } |
| 3675 | |
| 3676 | if (bt_value_array_append_string_element(run_args, "--name")) { |
| 3677 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3678 | goto error; |
| 3679 | } |
| 3680 | |
| 3681 | if (bt_value_array_append_string_element(run_args, arg)) { |
| 3682 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3683 | goto error; |
| 3684 | } |
| 3685 | |
| 3686 | g_string_assign(cur_name, arg); |
| 3687 | break; |
| 3688 | case OPT_LOG_LEVEL: |
| 3689 | if (cur_name_prefix->len == 0) { |
| 3690 | BT_CLI_LOGE_APPEND_CAUSE("No current component to assign a log level to:\n %s", |
| 3691 | arg); |
| 3692 | goto error; |
| 3693 | } |
| 3694 | |
| 3695 | if (bt_value_array_append_string_element(run_args, "--log-level")) { |
| 3696 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3697 | goto error; |
| 3698 | } |
| 3699 | |
| 3700 | if (bt_value_array_append_string_element(run_args, arg)) { |
| 3701 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3702 | goto error; |
| 3703 | } |
| 3704 | |
| 3705 | break; |
| 3706 | case OPT_OMIT_HOME_PLUGIN_PATH: |
| 3707 | force_omit_home_plugin_path = true; |
| 3708 | |
| 3709 | if (bt_value_array_append_string_element(run_args, |
| 3710 | "--omit-home-plugin-path")) { |
| 3711 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3712 | goto error; |
| 3713 | } |
| 3714 | break; |
| 3715 | case OPT_RETRY_DURATION: |
| 3716 | if (bt_value_array_append_string_element(run_args, |
| 3717 | "--retry-duration")) { |
| 3718 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3719 | goto error; |
| 3720 | } |
| 3721 | |
| 3722 | if (bt_value_array_append_string_element(run_args, arg)) { |
| 3723 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3724 | goto error; |
| 3725 | } |
| 3726 | break; |
| 3727 | case OPT_OMIT_SYSTEM_PLUGIN_PATH: |
| 3728 | force_omit_system_plugin_path = true; |
| 3729 | |
| 3730 | if (bt_value_array_append_string_element(run_args, |
| 3731 | "--omit-system-plugin-path")) { |
| 3732 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3733 | goto error; |
| 3734 | } |
| 3735 | break; |
| 3736 | case OPT_PLUGIN_PATH: |
| 3737 | if (bt_config_append_plugin_paths_check_setuid_setgid( |
| 3738 | plugin_paths, arg)) { |
| 3739 | goto error; |
| 3740 | } |
| 3741 | |
| 3742 | if (bt_value_array_append_string_element(run_args, |
| 3743 | "--plugin-path")) { |
| 3744 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3745 | goto error; |
| 3746 | } |
| 3747 | |
| 3748 | if (bt_value_array_append_string_element(run_args, arg)) { |
| 3749 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3750 | goto error; |
| 3751 | } |
| 3752 | break; |
| 3753 | case OPT_HELP: |
| 3754 | print_convert_usage(stdout); |
| 3755 | *retcode = -1; |
| 3756 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 3757 | goto end; |
| 3758 | case OPT_BEGIN: |
| 3759 | case OPT_CLOCK_CYCLES: |
| 3760 | case OPT_CLOCK_DATE: |
| 3761 | case OPT_CLOCK_FORCE_CORRELATE: |
| 3762 | case OPT_CLOCK_GMT: |
| 3763 | case OPT_CLOCK_OFFSET: |
| 3764 | case OPT_CLOCK_OFFSET_NS: |
| 3765 | case OPT_CLOCK_SECONDS: |
| 3766 | case OPT_COLOR: |
| 3767 | case OPT_DEBUG: |
| 3768 | case OPT_DEBUG_INFO: |
| 3769 | case OPT_DEBUG_INFO_DIR: |
| 3770 | case OPT_DEBUG_INFO_FULL_PATH: |
| 3771 | case OPT_DEBUG_INFO_TARGET_PREFIX: |
| 3772 | case OPT_END: |
| 3773 | case OPT_FIELDS: |
| 3774 | case OPT_INPUT_FORMAT: |
| 3775 | case OPT_NAMES: |
| 3776 | case OPT_NO_DELTA: |
| 3777 | case OPT_OUTPUT_FORMAT: |
| 3778 | case OPT_OUTPUT: |
| 3779 | case OPT_RUN_ARGS: |
| 3780 | case OPT_RUN_ARGS_0: |
| 3781 | case OPT_STREAM_INTERSECTION: |
| 3782 | case OPT_TIMERANGE: |
| 3783 | case OPT_VERBOSE: |
| 3784 | /* Ignore in this pass */ |
| 3785 | break; |
| 3786 | default: |
| 3787 | BT_CLI_LOGE_APPEND_CAUSE("Unknown command-line option specified (option code %d).", |
| 3788 | opt); |
| 3789 | goto error; |
| 3790 | } |
| 3791 | |
| 3792 | free(arg); |
| 3793 | arg = NULL; |
| 3794 | } |
| 3795 | |
| 3796 | /* Append current component's name if needed */ |
| 3797 | ret = convert_append_name_param(cur_comp_dest, cur_name, |
| 3798 | cur_name_prefix, run_args, all_names, &source_names, |
| 3799 | &filter_names, &sink_names); |
| 3800 | if (ret) { |
| 3801 | goto error; |
| 3802 | } |
| 3803 | |
| 3804 | /* Check for option parsing error */ |
| 3805 | if (opt < -1) { |
| 3806 | BT_CLI_LOGE_APPEND_CAUSE("While parsing command-line options, at option `%s`: %s.", |
| 3807 | poptBadOption(pc, 0), poptStrerror(opt)); |
| 3808 | goto error; |
| 3809 | } |
| 3810 | |
| 3811 | poptFreeContext(pc); |
| 3812 | free(arg); |
| 3813 | arg = NULL; |
| 3814 | |
| 3815 | /* |
| 3816 | * Second pass: transform the convert-specific options and |
| 3817 | * arguments into implicit component instances for the run |
| 3818 | * command. |
| 3819 | */ |
| 3820 | pc = poptGetContext(NULL, argc, (const char **) argv, |
| 3821 | convert_long_options, POPT_CONTEXT_KEEP_FIRST); |
| 3822 | if (!pc) { |
| 3823 | BT_CLI_LOGE_APPEND_CAUSE("Cannot get popt context."); |
| 3824 | goto error; |
| 3825 | } |
| 3826 | |
| 3827 | poptReadDefaultConfig(pc, 0); |
| 3828 | |
| 3829 | while ((opt = poptGetNextOpt(pc)) > 0) { |
| 3830 | arg = poptGetOptArg(pc); |
| 3831 | |
| 3832 | switch (opt) { |
| 3833 | case OPT_BEGIN: |
| 3834 | if (trimmer_has_begin) { |
| 3835 | printf("At --begin option: --begin or --timerange option already specified\n %s\n", |
| 3836 | arg); |
| 3837 | goto error; |
| 3838 | } |
| 3839 | |
| 3840 | trimmer_has_begin = true; |
| 3841 | ret = append_implicit_component_extra_param( |
| 3842 | &implicit_trimmer_args, "begin", arg); |
| 3843 | implicit_trimmer_args.exists = true; |
| 3844 | if (ret) { |
| 3845 | goto error; |
| 3846 | } |
| 3847 | break; |
| 3848 | case OPT_END: |
| 3849 | if (trimmer_has_end) { |
| 3850 | printf("At --end option: --end or --timerange option already specified\n %s\n", |
| 3851 | arg); |
| 3852 | goto error; |
| 3853 | } |
| 3854 | |
| 3855 | trimmer_has_end = true; |
| 3856 | ret = append_implicit_component_extra_param( |
| 3857 | &implicit_trimmer_args, "end", arg); |
| 3858 | implicit_trimmer_args.exists = true; |
| 3859 | if (ret) { |
| 3860 | goto error; |
| 3861 | } |
| 3862 | break; |
| 3863 | case OPT_TIMERANGE: |
| 3864 | { |
| 3865 | char *begin; |
| 3866 | char *end; |
| 3867 | |
| 3868 | if (trimmer_has_begin || trimmer_has_end) { |
| 3869 | printf("At --timerange option: --begin, --end, or --timerange option already specified\n %s\n", |
| 3870 | arg); |
| 3871 | goto error; |
| 3872 | } |
| 3873 | |
| 3874 | ret = split_timerange(arg, &begin, &end); |
| 3875 | if (ret) { |
| 3876 | BT_CLI_LOGE_APPEND_CAUSE("Invalid --timerange option's argument: expecting BEGIN,END or [BEGIN,END]:\n %s", |
| 3877 | arg); |
| 3878 | goto error; |
| 3879 | } |
| 3880 | |
| 3881 | ret = append_implicit_component_extra_param( |
| 3882 | &implicit_trimmer_args, "begin", begin); |
| 3883 | ret |= append_implicit_component_extra_param( |
| 3884 | &implicit_trimmer_args, "end", end); |
| 3885 | implicit_trimmer_args.exists = true; |
| 3886 | free(begin); |
| 3887 | free(end); |
| 3888 | if (ret) { |
| 3889 | goto error; |
| 3890 | } |
| 3891 | break; |
| 3892 | } |
| 3893 | case OPT_CLOCK_CYCLES: |
| 3894 | append_implicit_component_param( |
| 3895 | &implicit_text_args, "clock-cycles", "yes"); |
| 3896 | implicit_text_args.exists = true; |
| 3897 | break; |
| 3898 | case OPT_CLOCK_DATE: |
| 3899 | append_implicit_component_param( |
| 3900 | &implicit_text_args, "clock-date", "yes"); |
| 3901 | implicit_text_args.exists = true; |
| 3902 | break; |
| 3903 | case OPT_CLOCK_FORCE_CORRELATE: |
| 3904 | append_implicit_component_param( |
| 3905 | &implicit_muxer_args, |
| 3906 | "assume-absolute-clock-classes", "yes"); |
| 3907 | break; |
| 3908 | case OPT_CLOCK_GMT: |
| 3909 | append_implicit_component_param( |
| 3910 | &implicit_text_args, "clock-gmt", "yes"); |
| 3911 | append_implicit_component_param( |
| 3912 | &implicit_trimmer_args, "gmt", "yes"); |
| 3913 | implicit_text_args.exists = true; |
| 3914 | break; |
| 3915 | case OPT_CLOCK_OFFSET: |
| 3916 | if (ctf_fs_source_clock_class_offset_arg) { |
| 3917 | BT_CLI_LOGE_APPEND_CAUSE("Duplicate --clock-offset option\n"); |
| 3918 | goto error; |
| 3919 | } |
| 3920 | |
| 3921 | ctf_fs_source_clock_class_offset_arg = g_strdup(arg); |
| 3922 | if (!ctf_fs_source_clock_class_offset_arg) { |
| 3923 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3924 | goto error; |
| 3925 | } |
| 3926 | break; |
| 3927 | case OPT_CLOCK_OFFSET_NS: |
| 3928 | if (ctf_fs_source_clock_class_offset_ns_arg) { |
| 3929 | BT_CLI_LOGE_APPEND_CAUSE("Duplicate --clock-offset-ns option\n"); |
| 3930 | goto error; |
| 3931 | } |
| 3932 | |
| 3933 | ctf_fs_source_clock_class_offset_ns_arg = g_strdup(arg); |
| 3934 | if (!ctf_fs_source_clock_class_offset_ns_arg) { |
| 3935 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 3936 | goto error; |
| 3937 | } |
| 3938 | break; |
| 3939 | case OPT_CLOCK_SECONDS: |
| 3940 | append_implicit_component_param( |
| 3941 | &implicit_text_args, "clock-seconds", "yes"); |
| 3942 | implicit_text_args.exists = true; |
| 3943 | break; |
| 3944 | case OPT_COLOR: |
| 3945 | implicit_text_args.exists = true; |
| 3946 | ret = append_implicit_component_extra_param( |
| 3947 | &implicit_text_args, "color", arg); |
| 3948 | if (ret) { |
| 3949 | goto error; |
| 3950 | } |
| 3951 | break; |
| 3952 | case OPT_DEBUG_INFO: |
| 3953 | implicit_debug_info_args.exists = true; |
| 3954 | break; |
| 3955 | case OPT_DEBUG_INFO_DIR: |
| 3956 | implicit_debug_info_args.exists = true; |
| 3957 | ret = append_implicit_component_extra_param( |
| 3958 | &implicit_debug_info_args, "debug-info-dir", arg); |
| 3959 | if (ret) { |
| 3960 | goto error; |
| 3961 | } |
| 3962 | break; |
| 3963 | case OPT_DEBUG_INFO_FULL_PATH: |
| 3964 | implicit_debug_info_args.exists = true; |
| 3965 | append_implicit_component_param( |
| 3966 | &implicit_debug_info_args, "full-path", "yes"); |
| 3967 | break; |
| 3968 | case OPT_DEBUG_INFO_TARGET_PREFIX: |
| 3969 | implicit_debug_info_args.exists = true; |
| 3970 | ret = append_implicit_component_extra_param( |
| 3971 | &implicit_debug_info_args, |
| 3972 | "target-prefix", arg); |
| 3973 | if (ret) { |
| 3974 | goto error; |
| 3975 | } |
| 3976 | break; |
| 3977 | case OPT_FIELDS: |
| 3978 | { |
| 3979 | bt_value *fields = fields_from_arg(arg); |
| 3980 | |
| 3981 | if (!fields) { |
| 3982 | goto error; |
| 3983 | } |
| 3984 | |
| 3985 | implicit_text_args.exists = true; |
| 3986 | ret = insert_flat_params_from_array( |
| 3987 | implicit_text_args.params_arg, |
| 3988 | fields, "field"); |
| 3989 | bt_value_put_ref(fields); |
| 3990 | if (ret) { |
| 3991 | goto error; |
| 3992 | } |
| 3993 | break; |
| 3994 | } |
| 3995 | case OPT_NAMES: |
| 3996 | { |
| 3997 | bt_value *names = names_from_arg(arg); |
| 3998 | |
| 3999 | if (!names) { |
| 4000 | goto error; |
| 4001 | } |
| 4002 | |
| 4003 | implicit_text_args.exists = true; |
| 4004 | ret = insert_flat_params_from_array( |
| 4005 | implicit_text_args.params_arg, |
| 4006 | names, "name"); |
| 4007 | bt_value_put_ref(names); |
| 4008 | if (ret) { |
| 4009 | goto error; |
| 4010 | } |
| 4011 | break; |
| 4012 | } |
| 4013 | case OPT_NO_DELTA: |
| 4014 | append_implicit_component_param( |
| 4015 | &implicit_text_args, "no-delta", "yes"); |
| 4016 | implicit_text_args.exists = true; |
| 4017 | break; |
| 4018 | case OPT_INPUT_FORMAT: |
| 4019 | if (got_input_format_opt) { |
| 4020 | BT_CLI_LOGE_APPEND_CAUSE("Duplicate --input-format option."); |
| 4021 | goto error; |
| 4022 | } |
| 4023 | |
| 4024 | got_input_format_opt = true; |
| 4025 | |
| 4026 | if (strcmp(arg, "ctf") == 0) { |
| 4027 | auto_source_discovery_restrict_plugin_name = "ctf"; |
| 4028 | auto_source_discovery_restrict_component_class_name = "fs"; |
| 4029 | } else if (strcmp(arg, "lttng-live") == 0) { |
| 4030 | auto_source_discovery_restrict_plugin_name = "ctf"; |
| 4031 | auto_source_discovery_restrict_component_class_name = "lttng-live"; |
| 4032 | implicit_lttng_live_args.exists = true; |
| 4033 | } else { |
| 4034 | BT_CLI_LOGE_APPEND_CAUSE("Unknown legacy input format:\n %s", |
| 4035 | arg); |
| 4036 | goto error; |
| 4037 | } |
| 4038 | break; |
| 4039 | case OPT_OUTPUT_FORMAT: |
| 4040 | if (got_output_format_opt) { |
| 4041 | BT_CLI_LOGE_APPEND_CAUSE("Duplicate --output-format option."); |
| 4042 | goto error; |
| 4043 | } |
| 4044 | |
| 4045 | got_output_format_opt = true; |
| 4046 | |
| 4047 | if (strcmp(arg, "text") == 0) { |
| 4048 | implicit_text_args.exists = true; |
| 4049 | } else if (strcmp(arg, "ctf") == 0) { |
| 4050 | implicit_ctf_output_args.exists = true; |
| 4051 | } else if (strcmp(arg, "dummy") == 0) { |
| 4052 | implicit_dummy_args.exists = true; |
| 4053 | } else if (strcmp(arg, "ctf-metadata") == 0) { |
| 4054 | print_ctf_metadata = true; |
| 4055 | } else { |
| 4056 | BT_CLI_LOGE_APPEND_CAUSE("Unknown legacy output format:\n %s", |
| 4057 | arg); |
| 4058 | goto error; |
| 4059 | } |
| 4060 | break; |
| 4061 | case OPT_OUTPUT: |
| 4062 | if (output) { |
| 4063 | BT_CLI_LOGE_APPEND_CAUSE("Duplicate --output option"); |
| 4064 | goto error; |
| 4065 | } |
| 4066 | |
| 4067 | output = strdup(arg); |
| 4068 | if (!output) { |
| 4069 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 4070 | goto error; |
| 4071 | } |
| 4072 | break; |
| 4073 | case OPT_RUN_ARGS: |
| 4074 | if (print_run_args_0) { |
| 4075 | BT_CLI_LOGE_APPEND_CAUSE("Cannot specify --run-args and --run-args-0."); |
| 4076 | goto error; |
| 4077 | } |
| 4078 | |
| 4079 | print_run_args = true; |
| 4080 | break; |
| 4081 | case OPT_RUN_ARGS_0: |
| 4082 | if (print_run_args) { |
| 4083 | BT_CLI_LOGE_APPEND_CAUSE("Cannot specify --run-args and --run-args-0."); |
| 4084 | goto error; |
| 4085 | } |
| 4086 | |
| 4087 | print_run_args_0 = true; |
| 4088 | break; |
| 4089 | case OPT_STREAM_INTERSECTION: |
| 4090 | /* |
| 4091 | * Applies to all traces implementing the |
| 4092 | * babeltrace.trace-info query. |
| 4093 | */ |
| 4094 | stream_intersection_mode = true; |
| 4095 | break; |
| 4096 | case OPT_VERBOSE: |
| 4097 | if (*default_log_level != BT_LOG_TRACE && |
| 4098 | *default_log_level != BT_LOG_DEBUG) { |
| 4099 | *default_log_level = BT_LOG_INFO; |
| 4100 | } |
| 4101 | break; |
| 4102 | case OPT_DEBUG: |
| 4103 | *default_log_level = BT_LOG_TRACE; |
| 4104 | break; |
| 4105 | default: |
| 4106 | break; |
| 4107 | } |
| 4108 | |
| 4109 | free(arg); |
| 4110 | arg = NULL; |
| 4111 | } |
| 4112 | |
| 4113 | /* Check for option parsing error */ |
| 4114 | if (opt < -1) { |
| 4115 | BT_CLI_LOGE_APPEND_CAUSE("While parsing command-line options, at option %s: %s", |
| 4116 | poptBadOption(pc, 0), poptStrerror(opt)); |
| 4117 | goto error; |
| 4118 | } |
| 4119 | |
| 4120 | /* |
| 4121 | * Legacy behaviour: --verbose used to make the `text` output |
| 4122 | * format print more information. --verbose is now equivalent to |
| 4123 | * the INFO log level, which is why we compare to `BT_LOG_INFO` |
| 4124 | * here. |
| 4125 | */ |
| 4126 | if (*default_log_level == BT_LOG_INFO) { |
| 4127 | append_implicit_component_param(&implicit_text_args, |
| 4128 | "verbose", "yes"); |
| 4129 | } |
| 4130 | |
| 4131 | /* |
| 4132 | * Append home and system plugin paths now that we possibly got |
| 4133 | * --plugin-path. |
| 4134 | */ |
| 4135 | if (append_home_and_system_plugin_paths(plugin_paths, |
| 4136 | force_omit_system_plugin_path, |
| 4137 | force_omit_home_plugin_path)) { |
| 4138 | goto error; |
| 4139 | } |
| 4140 | |
| 4141 | /* Consume and keep leftover arguments */ |
| 4142 | while ((leftover = poptGetArg(pc))) { |
| 4143 | if (bt_value_array_append_string_element(leftovers, leftover) != |
| 4144 | BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK) { |
| 4145 | BT_CLI_LOGE_APPEND_CAUSE_OOM(); |
| 4146 | goto error; |
| 4147 | } |
| 4148 | } |
| 4149 | |
| 4150 | /* Print CTF metadata or print LTTng live sessions */ |
| 4151 | if (print_ctf_metadata) { |
| 4152 | const bt_value *bt_val_leftover; |
| 4153 | |
| 4154 | if (bt_value_array_is_empty(leftovers)) { |
| 4155 | BT_CLI_LOGE_APPEND_CAUSE("--output-format=ctf-metadata specified without a path."); |
| 4156 | goto error; |
| 4157 | } |
| 4158 | |
| 4159 | if (bt_value_array_get_size(leftovers) > 1) { |
| 4160 | BT_CLI_LOGE_APPEND_CAUSE("Too many paths specified for --output-format=ctf-metadata."); |
| 4161 | goto error; |
| 4162 | } |
| 4163 | |
| 4164 | cfg = bt_config_print_ctf_metadata_create(plugin_paths); |
| 4165 | if (!cfg) { |
| 4166 | goto error; |
| 4167 | } |
| 4168 | |
| 4169 | bt_val_leftover = bt_value_array_borrow_element_by_index_const(leftovers, 0); |
| 4170 | g_string_assign(cfg->cmd_data.print_ctf_metadata.path, |
| 4171 | bt_value_string_get(bt_val_leftover)); |
| 4172 | |
| 4173 | if (output) { |
| 4174 | g_string_assign( |
| 4175 | cfg->cmd_data.print_ctf_metadata.output_path, |
| 4176 | output); |
| 4177 | } |
| 4178 | |
| 4179 | goto end; |
| 4180 | } |
| 4181 | |
| 4182 | /* |
| 4183 | * If -o ctf was specified, make sure an output path (--output) |
| 4184 | * was also specified. --output does not imply -o ctf because |
| 4185 | * it's also used for the default, implicit -o text if -o ctf |
| 4186 | * is not specified. |
| 4187 | */ |
| 4188 | if (implicit_ctf_output_args.exists) { |
| 4189 | if (!output) { |
| 4190 | BT_CLI_LOGE_APPEND_CAUSE("--output-format=ctf specified without --output (trace output path)."); |
| 4191 | goto error; |
| 4192 | } |
| 4193 | |
| 4194 | /* |
| 4195 | * At this point we know that -o ctf AND --output were |
| 4196 | * specified. Make sure that no options were specified |
| 4197 | * which would imply -o text because --output would be |
| 4198 | * ambiguous in this case. For example, this is wrong: |
| 4199 | * |
| 4200 | * babeltrace2 --names=all -o ctf --output=/tmp/path my-trace |
| 4201 | * |
| 4202 | * because --names=all implies -o text, and --output |
| 4203 | * could apply to both the sink.text.pretty and |
| 4204 | * sink.ctf.fs implicit components. |
| 4205 | */ |
| 4206 | if (implicit_text_args.exists) { |
| 4207 | BT_CLI_LOGE_APPEND_CAUSE("Ambiguous --output option: --output-format=ctf specified but another option implies --output-format=text."); |
| 4208 | goto error; |
| 4209 | } |
| 4210 | } |
| 4211 | |
| 4212 | /* |
| 4213 | * If -o dummy and -o ctf were not specified, and if there are |
| 4214 | * no explicit sink components, then use an implicit |
| 4215 | * `sink.text.pretty` component. |
| 4216 | */ |
| 4217 | if (!implicit_dummy_args.exists && !implicit_ctf_output_args.exists && |
| 4218 | !sink_names) { |
| 4219 | implicit_text_args.exists = true; |
| 4220 | } |
| 4221 | |
| 4222 | /* |
| 4223 | * Set implicit `sink.text.pretty` or `sink.ctf.fs` component's |
| 4224 | * `path` parameter if --output was specified. |
| 4225 | */ |
| 4226 | if (output) { |
| 4227 | if (implicit_text_args.exists) { |
| 4228 | append_implicit_component_extra_param(&implicit_text_args, |
| 4229 | "path", output); |
| 4230 | } else if (implicit_ctf_output_args.exists) { |
| 4231 | append_implicit_component_extra_param(&implicit_ctf_output_args, |
| 4232 | "path", output); |
| 4233 | } |
| 4234 | } |
| 4235 | |
| 4236 | /* Decide where the leftover argument(s) go */ |
| 4237 | if (bt_value_array_get_size(leftovers) > 0) { |
| 4238 | if (implicit_lttng_live_args.exists) { |
| 4239 | const bt_value *bt_val_leftover; |
| 4240 | |
| 4241 | if (bt_value_array_get_size(leftovers) > 1) { |
| 4242 | BT_CLI_LOGE_APPEND_CAUSE("Too many URLs specified for --input-format=lttng-live."); |
| 4243 | goto error; |
| 4244 | } |
| 4245 | |
| 4246 | bt_val_leftover = bt_value_array_borrow_element_by_index_const(leftovers, 0); |
| 4247 | lttng_live_url_parts = |
| 4248 | bt_common_parse_lttng_live_url(bt_value_string_get(bt_val_leftover), |
| 4249 | error_buf, sizeof(error_buf)); |
| 4250 | if (!lttng_live_url_parts.proto) { |
| 4251 | BT_CLI_LOGE_APPEND_CAUSE("Invalid LTTng live URL format: %s.", |
| 4252 | error_buf); |
| 4253 | goto error; |
| 4254 | } |
| 4255 | |
| 4256 | if (!lttng_live_url_parts.session_name) { |
| 4257 | /* Print LTTng live sessions */ |
| 4258 | cfg = bt_config_print_lttng_live_sessions_create( |
| 4259 | plugin_paths); |
| 4260 | if (!cfg) { |
| 4261 | goto error; |
| 4262 | } |
| 4263 | |
| 4264 | g_string_assign(cfg->cmd_data.print_lttng_live_sessions.url, |
| 4265 | bt_value_string_get(bt_val_leftover)); |
| 4266 | |
| 4267 | if (output) { |
| 4268 | g_string_assign( |
| 4269 | cfg->cmd_data.print_lttng_live_sessions.output_path, |
| 4270 | output); |
| 4271 | } |
| 4272 | |
| 4273 | goto end; |
| 4274 | } |
| 4275 | |
| 4276 | ret = append_implicit_component_extra_param( |
| 4277 | &implicit_lttng_live_args, "url", |
| 4278 | bt_value_string_get(bt_val_leftover)); |
| 4279 | if (ret) { |
| 4280 | goto error; |
| 4281 | } |
| 4282 | |
| 4283 | ret = append_implicit_component_extra_param( |
| 4284 | &implicit_lttng_live_args, |
| 4285 | "session-not-found-action", "end"); |
| 4286 | if (ret) { |
| 4287 | goto error; |
| 4288 | } |
| 4289 | } else { |
| 4290 | int status; |
| 4291 | |
| 4292 | status = auto_discover_source_components(plugin_paths, leftovers, |
| 4293 | auto_source_discovery_restrict_plugin_name, |
| 4294 | auto_source_discovery_restrict_component_class_name, |
| 4295 | *default_log_level >= 0 ? *default_log_level : cli_default_log_level, |
| 4296 | &auto_disc); |
| 4297 | |
| 4298 | if (status != 0) { |
| 4299 | goto error; |
| 4300 | } |
| 4301 | |
| 4302 | create_implicit_component_args_from_auto_discovered_sources( |
| 4303 | &auto_disc, discovered_source_args); |
| 4304 | } |
| 4305 | } |
| 4306 | |
| 4307 | /* If --clock-offset was given, apply it to any src.ctf.fs component. */ |
| 4308 | if (ctf_fs_source_clock_class_offset_arg) { |
| 4309 | int n; |
| 4310 | |
| 4311 | n = append_multiple_implicit_components_param( |
| 4312 | discovered_source_args, "source.ctf.fs", "clock-class-offset-s", |
| 4313 | ctf_fs_source_clock_class_offset_arg); |
| 4314 | |
| 4315 | if (n == 0) { |
| 4316 | BT_CLI_LOGE_APPEND_CAUSE("--clock-offset specified, but no source.ctf.fs component instantiated."); |
| 4317 | goto error; |
| 4318 | } |
| 4319 | } |
| 4320 | |
| 4321 | /* If --clock-offset-ns was given, apply it to any src.ctf.fs component. */ |
| 4322 | if (ctf_fs_source_clock_class_offset_ns_arg) { |
| 4323 | int n; |
| 4324 | |
| 4325 | n = append_multiple_implicit_components_param( |
| 4326 | discovered_source_args, "source.ctf.fs", "clock-class-offset-ns", |
| 4327 | ctf_fs_source_clock_class_offset_ns_arg); |
| 4328 | |
| 4329 | if (n == 0) { |
| 4330 | BT_CLI_LOGE_APPEND_CAUSE("--clock-offset-ns specified, but no source.ctf.fs component instantiated."); |
| 4331 | goto error; |
| 4332 | } |
| 4333 | } |
| 4334 | |
| 4335 | /* |
| 4336 | * If the implicit `source.ctf.lttng-live` component exists, make sure |
| 4337 | * there's at least one leftover (which is the URL). |
| 4338 | */ |
| 4339 | if (implicit_lttng_live_args.exists && bt_value_array_is_empty(leftovers)) { |
| 4340 | BT_CLI_LOGE_APPEND_CAUSE("Missing URL for implicit `%s` component.", |
| 4341 | implicit_lttng_live_args.comp_arg->str); |
| 4342 | goto error; |
| 4343 | } |
| 4344 | |
| 4345 | /* Assign names to implicit components */ |
| 4346 | for (i = 0; i < discovered_source_args->len; i++) { |
| 4347 | struct implicit_component_args *args; |
| 4348 | int j; |
| 4349 | |
| 4350 | args = discovered_source_args->pdata[i]; |
| 4351 | |
| 4352 | g_string_printf(auto_disc_comp_name, "auto-disc-%s", args->comp_arg->str); |
| 4353 | |
| 4354 | /* Give it a name like `auto-disc-src-ctf-fs`. */ |
| 4355 | for (j = 0; j < auto_disc_comp_name->len; j++) { |
| 4356 | if (auto_disc_comp_name->str[j] == '.') { |
| 4357 | auto_disc_comp_name->str[j] = '-'; |
| 4358 | } |
| 4359 | } |
| 4360 | |
| 4361 | ret = assign_name_to_implicit_component(args, |
| 4362 | auto_disc_comp_name->str, all_names, &source_names, true); |
| 4363 | if (ret) { |
| 4364 | goto error; |
| 4365 | } |
| 4366 | } |
| 4367 | |
| 4368 | ret = assign_name_to_implicit_component(&implicit_lttng_live_args, |
| 4369 | "lttng-live", all_names, &source_names, true); |
| 4370 | if (ret) { |
| 4371 | goto error; |
| 4372 | } |
| 4373 | |
| 4374 | ret = assign_name_to_implicit_component(&implicit_text_args, |
| 4375 | "pretty", all_names, &sink_names, true); |
| 4376 | if (ret) { |
| 4377 | goto error; |
| 4378 | } |
| 4379 | |
| 4380 | ret = assign_name_to_implicit_component(&implicit_ctf_output_args, |
| 4381 | "sink-ctf-fs", all_names, &sink_names, true); |
| 4382 | if (ret) { |
| 4383 | goto error; |
| 4384 | } |
| 4385 | |
| 4386 | ret = assign_name_to_implicit_component(&implicit_dummy_args, |
| 4387 | "dummy", all_names, &sink_names, true); |
| 4388 | if (ret) { |
| 4389 | goto error; |
| 4390 | } |
| 4391 | |
| 4392 | ret = assign_name_to_implicit_component(&implicit_muxer_args, |
| 4393 | "muxer", all_names, NULL, false); |
| 4394 | if (ret) { |
| 4395 | goto error; |
| 4396 | } |
| 4397 | |
| 4398 | ret = assign_name_to_implicit_component(&implicit_trimmer_args, |
| 4399 | "trimmer", all_names, NULL, false); |
| 4400 | if (ret) { |
| 4401 | goto error; |
| 4402 | } |
| 4403 | |
| 4404 | ret = assign_name_to_implicit_component(&implicit_debug_info_args, |
| 4405 | "debug-info", all_names, NULL, false); |
| 4406 | if (ret) { |
| 4407 | goto error; |
| 4408 | } |
| 4409 | |
| 4410 | /* Make sure there's at least one source and one sink */ |
| 4411 | if (!source_names) { |
| 4412 | BT_CLI_LOGE_APPEND_CAUSE("No source component."); |
| 4413 | goto error; |
| 4414 | } |
| 4415 | |
| 4416 | if (!sink_names) { |
| 4417 | BT_CLI_LOGE_APPEND_CAUSE("No sink component."); |
| 4418 | goto error; |
| 4419 | } |
| 4420 | |
| 4421 | /* |
| 4422 | * Prepend the muxer, the trimmer, and the debug info to the |
| 4423 | * filter chain so that we have: |
| 4424 | * |
| 4425 | * sources -> muxer -> [trimmer] -> [debug info] -> |
| 4426 | * [user filters] -> sinks |
| 4427 | */ |
| 4428 | if (implicit_debug_info_args.exists) { |
| 4429 | if (g_list_prepend_gstring(&filter_names, |
| 4430 | implicit_debug_info_args.name_arg->str)) { |
| 4431 | goto error; |
| 4432 | } |
| 4433 | } |
| 4434 | |
| 4435 | if (implicit_trimmer_args.exists) { |
| 4436 | if (g_list_prepend_gstring(&filter_names, |
| 4437 | implicit_trimmer_args.name_arg->str)) { |
| 4438 | goto error; |
| 4439 | } |
| 4440 | } |
| 4441 | |
| 4442 | if (g_list_prepend_gstring(&filter_names, |
| 4443 | implicit_muxer_args.name_arg->str)) { |
| 4444 | goto error; |
| 4445 | } |
| 4446 | |
| 4447 | /* |
| 4448 | * Append the equivalent run arguments for the implicit |
| 4449 | * components. |
| 4450 | */ |
| 4451 | for (i = 0; i < discovered_source_args->len; i++) { |
| 4452 | struct implicit_component_args *args = |
| 4453 | discovered_source_args->pdata[i]; |
| 4454 | |
| 4455 | ret = append_run_args_for_implicit_component(args, run_args); |
| 4456 | if (ret) { |
| 4457 | goto error; |
| 4458 | } |
| 4459 | } |
| 4460 | |
| 4461 | ret = append_run_args_for_implicit_component(&implicit_lttng_live_args, |
| 4462 | run_args); |
| 4463 | if (ret) { |
| 4464 | goto error; |
| 4465 | } |
| 4466 | |
| 4467 | ret = append_run_args_for_implicit_component(&implicit_text_args, |
| 4468 | run_args); |
| 4469 | if (ret) { |
| 4470 | goto error; |
| 4471 | } |
| 4472 | |
| 4473 | ret = append_run_args_for_implicit_component(&implicit_ctf_output_args, |
| 4474 | run_args); |
| 4475 | if (ret) { |
| 4476 | goto error; |
| 4477 | } |
| 4478 | |
| 4479 | ret = append_run_args_for_implicit_component(&implicit_dummy_args, |
| 4480 | run_args); |
| 4481 | if (ret) { |
| 4482 | goto error; |
| 4483 | } |
| 4484 | |
| 4485 | ret = append_run_args_for_implicit_component(&implicit_muxer_args, |
| 4486 | run_args); |
| 4487 | if (ret) { |
| 4488 | goto error; |
| 4489 | } |
| 4490 | |
| 4491 | ret = append_run_args_for_implicit_component(&implicit_trimmer_args, |
| 4492 | run_args); |
| 4493 | if (ret) { |
| 4494 | goto error; |
| 4495 | } |
| 4496 | |
| 4497 | ret = append_run_args_for_implicit_component(&implicit_debug_info_args, |
| 4498 | run_args); |
| 4499 | if (ret) { |
| 4500 | goto error; |
| 4501 | } |
| 4502 | |
| 4503 | /* Auto-connect components */ |
| 4504 | ret = convert_auto_connect(run_args, source_names, filter_names, |
| 4505 | sink_names); |
| 4506 | if (ret) { |
| 4507 | BT_CLI_LOGE_APPEND_CAUSE("Cannot auto-connect components."); |
| 4508 | goto error; |
| 4509 | } |
| 4510 | |
| 4511 | /* |
| 4512 | * We have all the run command arguments now. Depending on |
| 4513 | * --run-args, we pass this to the run command or print them |
| 4514 | * here. |
| 4515 | */ |
| 4516 | if (print_run_args || print_run_args_0) { |
| 4517 | if (stream_intersection_mode) { |
| 4518 | BT_CLI_LOGE_APPEND_CAUSE("Cannot specify --stream-intersection with --run-args or --run-args-0."); |
| 4519 | goto error; |
| 4520 | } |
| 4521 | |
| 4522 | for (i = 0; i < bt_value_array_get_size(run_args); i++) { |
| 4523 | const bt_value *arg_value = |
| 4524 | bt_value_array_borrow_element_by_index(run_args, |
| 4525 | i); |
| 4526 | const char *arg; |
| 4527 | GString *quoted = NULL; |
| 4528 | const char *arg_to_print; |
| 4529 | |
| 4530 | BT_ASSERT(arg_value); |
| 4531 | arg = bt_value_string_get(arg_value); |
| 4532 | |
| 4533 | if (print_run_args) { |
| 4534 | quoted = bt_common_shell_quote(arg, true); |
| 4535 | if (!quoted) { |
| 4536 | goto error; |
| 4537 | } |
| 4538 | |
| 4539 | arg_to_print = quoted->str; |
| 4540 | } else { |
| 4541 | arg_to_print = arg; |
| 4542 | } |
| 4543 | |
| 4544 | printf("%s", arg_to_print); |
| 4545 | |
| 4546 | if (quoted) { |
| 4547 | g_string_free(quoted, TRUE); |
| 4548 | } |
| 4549 | |
| 4550 | if (i < bt_value_array_get_size(run_args) - 1) { |
| 4551 | if (print_run_args) { |
| 4552 | putchar(' '); |
| 4553 | } else { |
| 4554 | putchar('\0'); |
| 4555 | } |
| 4556 | } |
| 4557 | } |
| 4558 | |
| 4559 | *retcode = -1; |
| 4560 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 4561 | goto end; |
| 4562 | } |
| 4563 | |
| 4564 | /* |
| 4565 | * If the log level is still unset at this point, set it to |
| 4566 | * the program's default. |
| 4567 | */ |
| 4568 | if (*default_log_level < 0) { |
| 4569 | *default_log_level = cli_default_log_level; |
| 4570 | } |
| 4571 | |
| 4572 | cfg = bt_config_run_from_args_array(run_args, retcode, |
| 4573 | force_omit_system_plugin_path, |
| 4574 | force_omit_home_plugin_path, |
| 4575 | initial_plugin_paths, *default_log_level); |
| 4576 | if (!cfg) { |
| 4577 | goto error; |
| 4578 | } |
| 4579 | |
| 4580 | cfg->cmd_data.run.stream_intersection_mode = stream_intersection_mode; |
| 4581 | goto end; |
| 4582 | |
| 4583 | error: |
| 4584 | *retcode = 1; |
| 4585 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
| 4586 | |
| 4587 | end: |
| 4588 | /* |
| 4589 | * If the log level is still unset at this point, set it to |
| 4590 | * the program's default. |
| 4591 | */ |
| 4592 | if (*default_log_level < 0) { |
| 4593 | *default_log_level = cli_default_log_level; |
| 4594 | } |
| 4595 | |
| 4596 | if (pc) { |
| 4597 | poptFreeContext(pc); |
| 4598 | } |
| 4599 | |
| 4600 | free(arg); |
| 4601 | free(output); |
| 4602 | |
| 4603 | if (cur_name) { |
| 4604 | g_string_free(cur_name, TRUE); |
| 4605 | } |
| 4606 | |
| 4607 | if (cur_name_prefix) { |
| 4608 | g_string_free(cur_name_prefix, TRUE); |
| 4609 | } |
| 4610 | |
| 4611 | bt_value_put_ref(run_args); |
| 4612 | bt_value_put_ref(all_names); |
| 4613 | destroy_glist_of_gstring(source_names); |
| 4614 | destroy_glist_of_gstring(filter_names); |
| 4615 | destroy_glist_of_gstring(sink_names); |
| 4616 | bt_value_put_ref(leftovers); |
| 4617 | finalize_implicit_component_args(&implicit_ctf_output_args); |
| 4618 | finalize_implicit_component_args(&implicit_lttng_live_args); |
| 4619 | finalize_implicit_component_args(&implicit_dummy_args); |
| 4620 | finalize_implicit_component_args(&implicit_text_args); |
| 4621 | finalize_implicit_component_args(&implicit_debug_info_args); |
| 4622 | finalize_implicit_component_args(&implicit_muxer_args); |
| 4623 | finalize_implicit_component_args(&implicit_trimmer_args); |
| 4624 | bt_value_put_ref(plugin_paths); |
| 4625 | bt_common_destroy_lttng_live_url_parts(<tng_live_url_parts); |
| 4626 | auto_source_discovery_fini(&auto_disc); |
| 4627 | |
| 4628 | if (discovered_source_args) { |
| 4629 | g_ptr_array_free(discovered_source_args, TRUE); |
| 4630 | } |
| 4631 | |
| 4632 | g_free(ctf_fs_source_clock_class_offset_arg); |
| 4633 | g_free(ctf_fs_source_clock_class_offset_ns_arg); |
| 4634 | |
| 4635 | if (auto_disc_comp_name) { |
| 4636 | g_string_free(auto_disc_comp_name, TRUE); |
| 4637 | } |
| 4638 | |
| 4639 | return cfg; |
| 4640 | } |
| 4641 | |
| 4642 | /* |
| 4643 | * Prints the Babeltrace 2.x general usage. |
| 4644 | */ |
| 4645 | static |
| 4646 | void print_gen_usage(FILE *fp) |
| 4647 | { |
| 4648 | fprintf(fp, "Usage: babeltrace2 [GENERAL OPTIONS] [COMMAND] [COMMAND ARGUMENTS]\n"); |
| 4649 | fprintf(fp, "\n"); |
| 4650 | fprintf(fp, "General options:\n"); |
| 4651 | fprintf(fp, "\n"); |
| 4652 | fprintf(fp, " -d, --debug Enable debug mode (same as --log-level=V)\n"); |
| 4653 | fprintf(fp, " -h, --help Show this help and quit\n"); |
| 4654 | fprintf(fp, " -l, --log-level=LVL Set the default log level to LVL (`N`, `V`, `D`,\n"); |
| 4655 | fprintf(fp, " `I`, `W` (default), `E`, or `F`)\n"); |
| 4656 | fprintf(fp, " -v, --verbose Enable verbose mode (same as --log-level=I)\n"); |
| 4657 | fprintf(fp, " -V, --version Show version and quit\n"); |
| 4658 | fprintf(fp, "\n"); |
| 4659 | fprintf(fp, "Available commands:\n"); |
| 4660 | fprintf(fp, "\n"); |
| 4661 | fprintf(fp, " convert Convert and trim traces (default)\n"); |
| 4662 | fprintf(fp, " help Get help for a plugin or a component class\n"); |
| 4663 | fprintf(fp, " list-plugins List available plugins and their content\n"); |
| 4664 | fprintf(fp, " query Query objects from a component class\n"); |
| 4665 | fprintf(fp, " run Build a processing graph and run it\n"); |
| 4666 | fprintf(fp, "\n"); |
| 4667 | fprintf(fp, "Use `babeltrace2 COMMAND --help` to show the help of COMMAND.\n"); |
| 4668 | } |
| 4669 | |
| 4670 | struct bt_config *bt_config_cli_args_create(int argc, const char *argv[], |
| 4671 | int *retcode, bool force_omit_system_plugin_path, |
| 4672 | bool force_omit_home_plugin_path, |
| 4673 | const bt_value *initial_plugin_paths) |
| 4674 | { |
| 4675 | struct bt_config *config = NULL; |
| 4676 | int i; |
| 4677 | int top_level_argc; |
| 4678 | const char **top_level_argv; |
| 4679 | int command_argc = -1; |
| 4680 | const char **command_argv = NULL; |
| 4681 | const char *command_name = NULL; |
| 4682 | int default_log_level = -1; |
| 4683 | struct bt_argpar_parse_ret argpar_parse_ret = { 0 }; |
| 4684 | |
| 4685 | /* Top-level option descriptions. */ |
| 4686 | static const struct bt_argpar_opt_descr descrs[] = { |
| 4687 | { OPT_DEBUG, 'd', "debug", false }, |
| 4688 | { OPT_HELP, 'h', "help", false }, |
| 4689 | { OPT_LOG_LEVEL, 'l', "log-level", true }, |
| 4690 | { OPT_VERBOSE, 'v', "verbose", false }, |
| 4691 | { OPT_VERSION, 'V', "version", false}, |
| 4692 | BT_ARGPAR_OPT_DESCR_SENTINEL |
| 4693 | }; |
| 4694 | |
| 4695 | enum command_type { |
| 4696 | COMMAND_TYPE_NONE = -1, |
| 4697 | COMMAND_TYPE_RUN = 0, |
| 4698 | COMMAND_TYPE_CONVERT, |
| 4699 | COMMAND_TYPE_LIST_PLUGINS, |
| 4700 | COMMAND_TYPE_HELP, |
| 4701 | COMMAND_TYPE_QUERY, |
| 4702 | } command_type = COMMAND_TYPE_NONE; |
| 4703 | |
| 4704 | *retcode = -1; |
| 4705 | |
| 4706 | if (!initial_plugin_paths) { |
| 4707 | initial_plugin_paths = bt_value_array_create(); |
| 4708 | if (!initial_plugin_paths) { |
| 4709 | *retcode = 1; |
| 4710 | goto end; |
| 4711 | } |
| 4712 | } else { |
| 4713 | bt_value_get_ref(initial_plugin_paths); |
| 4714 | } |
| 4715 | |
| 4716 | if (argc <= 1) { |
| 4717 | print_version(); |
| 4718 | puts(""); |
| 4719 | print_gen_usage(stdout); |
| 4720 | goto end; |
| 4721 | } |
| 4722 | |
| 4723 | /* Skip first argument, the name of the program. */ |
| 4724 | top_level_argc = argc - 1; |
| 4725 | top_level_argv = argv + 1; |
| 4726 | argpar_parse_ret = bt_argpar_parse(top_level_argc, top_level_argv, |
| 4727 | descrs, false); |
| 4728 | |
| 4729 | if (argpar_parse_ret.error) { |
| 4730 | BT_CLI_LOGE_APPEND_CAUSE( |
| 4731 | "While parsing command-line arguments: %s", |
| 4732 | argpar_parse_ret.error->str); |
| 4733 | goto error; |
| 4734 | } |
| 4735 | |
| 4736 | for (i = 0; i < argpar_parse_ret.items->len; i++) { |
| 4737 | struct bt_argpar_item *item; |
| 4738 | |
| 4739 | item = g_ptr_array_index(argpar_parse_ret.items, i); |
| 4740 | |
| 4741 | if (item->type == BT_ARGPAR_ITEM_TYPE_OPT) { |
| 4742 | struct bt_argpar_item_opt *item_opt = |
| 4743 | (struct bt_argpar_item_opt *) item; |
| 4744 | |
| 4745 | switch (item_opt->descr->id) { |
| 4746 | case OPT_DEBUG: |
| 4747 | default_log_level = BT_LOG_TRACE; |
| 4748 | break; |
| 4749 | case OPT_VERBOSE: |
| 4750 | /* |
| 4751 | * Legacy: do not override a previous |
| 4752 | * --debug because --verbose and --debug |
| 4753 | * can be specified together (in this |
| 4754 | * case we want the lowest log level to |
| 4755 | * apply, TRACE). |
| 4756 | */ |
| 4757 | default_log_level = BT_LOG_INFO; |
| 4758 | break; |
| 4759 | case OPT_LOG_LEVEL: |
| 4760 | default_log_level = |
| 4761 | bt_log_get_level_from_string(item_opt->arg); |
| 4762 | if (default_log_level < 0) { |
| 4763 | BT_CLI_LOGE_APPEND_CAUSE( |
| 4764 | "Invalid argument for --log-level option:\n %s", |
| 4765 | item_opt->arg); |
| 4766 | goto error; |
| 4767 | } |
| 4768 | break; |
| 4769 | case OPT_VERSION: |
| 4770 | print_version(); |
| 4771 | goto end; |
| 4772 | case OPT_HELP: |
| 4773 | print_gen_usage(stdout); |
| 4774 | goto end; |
| 4775 | } |
| 4776 | } else if (item->type == BT_ARGPAR_ITEM_TYPE_NON_OPT) { |
| 4777 | struct bt_argpar_item_non_opt *item_non_opt = |
| 4778 | (struct bt_argpar_item_non_opt *) item; |
| 4779 | /* |
| 4780 | * First unknown argument: is it a known command |
| 4781 | * name? |
| 4782 | */ |
| 4783 | command_argc = |
| 4784 | top_level_argc - item_non_opt->orig_index - 1; |
| 4785 | command_argv = |
| 4786 | &top_level_argv[item_non_opt->orig_index + 1]; |
| 4787 | |
| 4788 | if (strcmp(item_non_opt->arg, "convert") == 0) { |
| 4789 | command_type = COMMAND_TYPE_CONVERT; |
| 4790 | } else if (strcmp(item_non_opt->arg, "list-plugins") == 0) { |
| 4791 | command_type = COMMAND_TYPE_LIST_PLUGINS; |
| 4792 | } else if (strcmp(item_non_opt->arg, "help") == 0) { |
| 4793 | command_type = COMMAND_TYPE_HELP; |
| 4794 | } else if (strcmp(item_non_opt->arg, "query") == 0) { |
| 4795 | command_type = COMMAND_TYPE_QUERY; |
| 4796 | } else if (strcmp(item_non_opt->arg, "run") == 0) { |
| 4797 | command_type = COMMAND_TYPE_RUN; |
| 4798 | } else { |
| 4799 | /* |
| 4800 | * Non-option argument, but not a known |
| 4801 | * command name: assume the default |
| 4802 | * `convert` command. |
| 4803 | */ |
| 4804 | command_type = COMMAND_TYPE_CONVERT; |
| 4805 | command_name = "convert"; |
| 4806 | command_argc++; |
| 4807 | command_argv--; |
| 4808 | } |
| 4809 | break; |
| 4810 | } |
| 4811 | } |
| 4812 | |
| 4813 | if (command_type == COMMAND_TYPE_NONE) { |
| 4814 | if (argpar_parse_ret.ingested_orig_args == top_level_argc) { |
| 4815 | /* |
| 4816 | * We only got non-help, non-version general options |
| 4817 | * like --verbose and --debug, without any other |
| 4818 | * arguments, so we can't do anything useful: print the |
| 4819 | * usage and quit. |
| 4820 | */ |
| 4821 | print_gen_usage(stdout); |
| 4822 | goto end; |
| 4823 | } |
| 4824 | |
| 4825 | /* |
| 4826 | * We stopped on an unknown option argument (and therefore |
| 4827 | * didn't see a command name). Assume `convert` command. |
| 4828 | */ |
| 4829 | command_type = COMMAND_TYPE_CONVERT; |
| 4830 | command_name = "convert"; |
| 4831 | command_argc = |
| 4832 | top_level_argc - argpar_parse_ret.ingested_orig_args; |
| 4833 | command_argv = |
| 4834 | &top_level_argv[argpar_parse_ret.ingested_orig_args]; |
| 4835 | } |
| 4836 | |
| 4837 | BT_ASSERT(command_argv); |
| 4838 | BT_ASSERT(command_argc >= 0); |
| 4839 | |
| 4840 | /* |
| 4841 | * The convert command can set its own default log level for |
| 4842 | * backward compatibility reasons. It only does so if there's no |
| 4843 | * log level yet, so do not force one for this command. |
| 4844 | */ |
| 4845 | if (command_type != COMMAND_TYPE_CONVERT && default_log_level < 0) { |
| 4846 | /* Default log level */ |
| 4847 | default_log_level = cli_default_log_level; |
| 4848 | } |
| 4849 | |
| 4850 | switch (command_type) { |
| 4851 | case COMMAND_TYPE_RUN: |
| 4852 | config = bt_config_run_from_args(command_argc, command_argv, |
| 4853 | retcode, force_omit_system_plugin_path, |
| 4854 | force_omit_home_plugin_path, initial_plugin_paths, |
| 4855 | default_log_level); |
| 4856 | break; |
| 4857 | case COMMAND_TYPE_CONVERT: |
| 4858 | config = bt_config_convert_from_args(command_argc, command_argv, |
| 4859 | retcode, force_omit_system_plugin_path, |
| 4860 | force_omit_home_plugin_path, |
| 4861 | initial_plugin_paths, &default_log_level); |
| 4862 | break; |
| 4863 | case COMMAND_TYPE_LIST_PLUGINS: |
| 4864 | config = bt_config_list_plugins_from_args(command_argc, |
| 4865 | command_argv, retcode, force_omit_system_plugin_path, |
| 4866 | force_omit_home_plugin_path, initial_plugin_paths); |
| 4867 | break; |
| 4868 | case COMMAND_TYPE_HELP: |
| 4869 | config = bt_config_help_from_args(command_argc, |
| 4870 | command_argv, retcode, force_omit_system_plugin_path, |
| 4871 | force_omit_home_plugin_path, initial_plugin_paths, |
| 4872 | default_log_level); |
| 4873 | break; |
| 4874 | case COMMAND_TYPE_QUERY: |
| 4875 | config = bt_config_query_from_args(command_argc, |
| 4876 | command_argv, retcode, force_omit_system_plugin_path, |
| 4877 | force_omit_home_plugin_path, initial_plugin_paths, |
| 4878 | default_log_level); |
| 4879 | break; |
| 4880 | default: |
| 4881 | abort(); |
| 4882 | } |
| 4883 | |
| 4884 | if (config) { |
| 4885 | BT_ASSERT(default_log_level >= BT_LOG_TRACE); |
| 4886 | config->log_level = default_log_level; |
| 4887 | config->command_name = command_name; |
| 4888 | } |
| 4889 | |
| 4890 | goto end; |
| 4891 | |
| 4892 | error: |
| 4893 | *retcode = 1; |
| 4894 | |
| 4895 | end: |
| 4896 | bt_argpar_parse_ret_fini(&argpar_parse_ret); |
| 4897 | bt_value_put_ref(initial_plugin_paths); |
| 4898 | return config; |
| 4899 | } |