2 * Copyright (C) 2021 Simon Marchi <simon.marchi@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
11 #include "../command.h"
12 #include "../loglevel.h"
13 #include "../uprobe.h"
15 #include "common/argpar/argpar.h"
16 #include "common/dynamic-array.h"
17 #include "common/string-utils/string-utils.h"
18 #include "common/utils.h"
19 /* For lttng_event_rule_type_str(). */
20 #include <lttng/event-rule/event-rule-internal.h>
21 #include <lttng/lttng.h>
22 #include "common/filter/filter-ast.h"
23 #include "common/filter/filter-ir.h"
24 #include "common/dynamic-array.h"
26 #if (LTTNG_SYMBOL_NAME_LEN == 256)
27 #define LTTNG_SYMBOL_NAME_LEN_SCANF_IS_A_BROKEN_API "255"
30 #ifdef LTTNG_EMBED_HELP
31 static const char help_msg
[] =
32 #include <lttng-add-trigger.1.h>
75 static const struct argpar_opt_descr event_rule_opt_descrs
[] = {
76 { OPT_ALL
, 'a', "all", false },
77 { OPT_FILTER
, 'f', "filter", true },
78 { OPT_EXCLUDE
, 'x', "exclude", true },
79 { OPT_LOGLEVEL
, '\0', "loglevel", true },
80 { OPT_LOGLEVEL_ONLY
, '\0', "loglevel-only", true },
83 { OPT_USERSPACE
, 'u', "userspace", false },
84 { OPT_KERNEL
, 'k', "kernel", false },
85 { OPT_LOG4J
, 'l', "log4j", false },
86 { OPT_JUL
, 'j', "jul", false },
87 { OPT_PYTHON
, 'p', "python", false },
89 /* Event rule types */
90 { OPT_FUNCTION
, '\0', "function", true },
91 { OPT_PROBE
, '\0', "probe", true },
92 { OPT_USERSPACE_PROBE
, '\0', "userspace-probe", true },
93 { OPT_SYSCALL
, '\0', "syscall" },
94 { OPT_TRACEPOINT
, '\0', "tracepoint" },
96 /* Capture descriptor */
97 { OPT_CAPTURE
, '\0', "capture", true },
99 ARGPAR_OPT_DESCR_SENTINEL
103 bool assign_domain_type(enum lttng_domain_type
*dest
,
104 enum lttng_domain_type src
)
108 if (*dest
== LTTNG_DOMAIN_NONE
|| *dest
== src
) {
112 ERR("Multiple domains specified.");
120 bool assign_event_rule_type(enum lttng_event_rule_type
*dest
,
121 enum lttng_event_rule_type src
)
125 if (*dest
== LTTNG_EVENT_RULE_TYPE_UNKNOWN
|| *dest
== src
) {
129 ERR("Multiple event types specified.");
137 bool assign_string(char **dest
, const char *src
, const char *opt_name
)
142 ERR("Duplicate '%s' given.", opt_name
);
148 PERROR("Failed to allocate string '%s'.", opt_name
);
162 /* This is defined in enable_events.c. */
164 int create_exclusion_list_and_validate(const char *event_name
,
165 const char *exclusions_arg
,
166 char ***exclusion_list
);
169 * Parse `str` as a log level in domain `domain_type`. Return -1 if the string
170 * is not recognized as a valid log level.
173 int parse_loglevel_string(const char *str
, enum lttng_domain_type domain_type
)
175 switch (domain_type
) {
176 case LTTNG_DOMAIN_UST
:
178 enum lttng_loglevel loglevel
;
179 const int ret
= loglevel_name_to_value(str
, &loglevel
);
181 return ret
== -1 ? ret
: (int) loglevel
;
183 case LTTNG_DOMAIN_LOG4J
:
185 enum lttng_loglevel_log4j loglevel
;
186 const int ret
= loglevel_log4j_name_to_value(str
, &loglevel
);
188 return ret
== -1 ? ret
: (int) loglevel
;
190 case LTTNG_DOMAIN_JUL
:
192 enum lttng_loglevel_jul loglevel
;
193 const int ret
= loglevel_jul_name_to_value(str
, &loglevel
);
195 return ret
== -1 ? ret
: (int) loglevel
;
197 case LTTNG_DOMAIN_PYTHON
:
199 enum lttng_loglevel_python loglevel
;
200 const int ret
= loglevel_python_name_to_value(str
, &loglevel
);
202 return ret
== -1 ? ret
: (int) loglevel
;
205 /* Invalid domain type. */
210 static int parse_kernel_probe_opts(const char *source
,
211 struct lttng_kernel_probe_location
**location
)
216 char name
[LTTNG_SYMBOL_NAME_LEN
];
217 char *symbol_name
= NULL
;
220 /* Check for symbol+offset. */
221 match
= sscanf(source
,
222 "%" LTTNG_SYMBOL_NAME_LEN_SCANF_IS_A_BROKEN_API
226 if (*s_hex
== '\0') {
227 ERR("Kernel probe symbol offset is missing.");
231 symbol_name
= strndup(name
, LTTNG_SYMBOL_NAME_LEN
);
233 PERROR("Failed to copy kernel probe location symbol name.");
236 offset
= strtoul(s_hex
, NULL
, 0);
238 *location
= lttng_kernel_probe_location_symbol_create(
239 symbol_name
, offset
);
241 ERR("Failed to create symbol kernel probe location.");
248 /* Check for symbol. */
249 if (isalpha(name
[0]) || name
[0] == '_') {
250 match
= sscanf(source
,
251 "%" LTTNG_SYMBOL_NAME_LEN_SCANF_IS_A_BROKEN_API
255 symbol_name
= strndup(name
, LTTNG_SYMBOL_NAME_LEN
);
257 ERR("Failed to copy kernel probe location symbol name.");
261 *location
= lttng_kernel_probe_location_symbol_create(
264 ERR("Failed to create symbol kernel probe location.");
272 /* Check for address. */
273 match
= sscanf(source
, "%18s", s_hex
);
277 if (*s_hex
== '\0') {
278 ERR("Invalid kernel probe location address.");
282 address
= strtoul(s_hex
, NULL
, 0);
283 *location
= lttng_kernel_probe_location_address_create(address
);
285 ERR("Failed to create symbol kernel probe location.");
303 struct lttng_event_expr
*ir_op_load_expr_to_event_expr(
304 const struct ir_load_expression
*load_expr
,
305 const char *capture_str
)
307 char *provider_name
= NULL
;
308 struct lttng_event_expr
*event_expr
= NULL
;
309 const struct ir_load_expression_op
*load_expr_op
= load_expr
->child
;
310 const enum ir_load_expression_type load_expr_child_type
=
313 switch (load_expr_child_type
) {
314 case IR_LOAD_EXPRESSION_GET_PAYLOAD_ROOT
:
315 case IR_LOAD_EXPRESSION_GET_CONTEXT_ROOT
:
317 const char *field_name
;
319 load_expr_op
= load_expr_op
->next
;
320 assert(load_expr_op
);
321 assert(load_expr_op
->type
== IR_LOAD_EXPRESSION_GET_SYMBOL
);
322 field_name
= load_expr_op
->u
.symbol
;
325 event_expr
= load_expr_child_type
== IR_LOAD_EXPRESSION_GET_PAYLOAD_ROOT
?
326 lttng_event_expr_event_payload_field_create(field_name
) :
327 lttng_event_expr_channel_context_field_create(field_name
);
329 ERR("Failed to create %s event expression: field name = `%s`.",
330 load_expr_child_type
== IR_LOAD_EXPRESSION_GET_PAYLOAD_ROOT
?
331 "payload field" : "channel context",
338 case IR_LOAD_EXPRESSION_GET_APP_CONTEXT_ROOT
:
341 const char *type_name
;
342 const char *field_name
;
344 load_expr_op
= load_expr_op
->next
;
345 assert(load_expr_op
);
346 assert(load_expr_op
->type
== IR_LOAD_EXPRESSION_GET_SYMBOL
);
347 field_name
= load_expr_op
->u
.symbol
;
351 * The field name needs to be of the form PROVIDER:TYPE. We
354 colon
= strchr(field_name
, ':');
356 ERR("Invalid app-specific context field name: missing colon in `%s`.",
361 type_name
= colon
+ 1;
362 if (*type_name
== '\0') {
363 ERR("Invalid app-specific context field name: missing type name after colon in `%s`.",
368 provider_name
= strndup(field_name
, colon
- field_name
);
369 if (!provider_name
) {
370 PERROR("Failed to allocate field name string");
374 event_expr
= lttng_event_expr_app_specific_context_field_create(
375 provider_name
, type_name
);
377 ERR("Failed to create app-specific context field event expression: provider name = `%s`, type name = `%s`",
378 provider_name
, type_name
);
385 ERR("%s: unexpected load expr type %d.", __func__
,
390 load_expr_op
= load_expr_op
->next
;
392 /* There may be a single array index after that. */
393 if (load_expr_op
->type
== IR_LOAD_EXPRESSION_GET_INDEX
) {
394 struct lttng_event_expr
*index_event_expr
;
395 const uint64_t index
= load_expr_op
->u
.index
;
397 index_event_expr
= lttng_event_expr_array_field_element_create(event_expr
, index
);
398 if (!index_event_expr
) {
399 ERR("Failed to create array field element event expression.");
403 event_expr
= index_event_expr
;
404 load_expr_op
= load_expr_op
->next
;
407 switch (load_expr_op
->type
) {
408 case IR_LOAD_EXPRESSION_LOAD_FIELD
:
410 * This is what we expect, IR_LOAD_EXPRESSION_LOAD_FIELD is
411 * always found at the end of the chain.
414 case IR_LOAD_EXPRESSION_GET_SYMBOL
:
415 ERR("While parsing expression `%s`: Capturing subfields is not supported.",
420 ERR("%s: unexpected load expression operator %s.", __func__
,
421 ir_load_expression_type_str(load_expr_op
->type
));
428 lttng_event_expr_destroy(event_expr
);
438 struct lttng_event_expr
*ir_op_load_to_event_expr(
439 const struct ir_op
*ir
, const char *capture_str
)
441 struct lttng_event_expr
*event_expr
= NULL
;
443 assert(ir
->op
== IR_OP_LOAD
);
445 switch (ir
->data_type
) {
446 case IR_DATA_EXPRESSION
:
448 const struct ir_load_expression
*ir_load_expr
=
449 ir
->u
.load
.u
.expression
;
451 event_expr
= ir_op_load_expr_to_event_expr(
452 ir_load_expr
, capture_str
);
456 ERR("%s: unexpected data type: %s.", __func__
,
457 ir_data_type_str(ir
->data_type
));
465 const char *ir_operator_type_human_str(enum ir_op_type op
)
487 struct lttng_event_expr
*ir_op_root_to_event_expr(const struct ir_op
*ir
,
488 const char *capture_str
)
490 struct lttng_event_expr
*event_expr
= NULL
;
492 assert(ir
->op
== IR_OP_ROOT
);
493 ir
= ir
->u
.root
.child
;
497 event_expr
= ir_op_load_to_event_expr(ir
, capture_str
);
502 ERR("While parsing expression `%s`: %s operators are not allowed in capture expressions.",
504 ir_operator_type_human_str(ir
->op
));
507 ERR("%s: unexpected IR op type: %s.", __func__
,
508 ir_op_type_str(ir
->op
));
516 void destroy_event_expr(void *ptr
)
518 lttng_event_expr_destroy(ptr
);
521 struct parse_event_rule_res
{
523 struct lttng_event_rule
*er
;
525 /* Array of `struct lttng_event_expr *` */
526 struct lttng_dynamic_pointer_array capture_descriptors
;
530 struct parse_event_rule_res
parse_event_rule(int *argc
, const char ***argv
)
532 enum lttng_domain_type domain_type
= LTTNG_DOMAIN_NONE
;
533 enum lttng_event_rule_type event_rule_type
=
534 LTTNG_EVENT_RULE_TYPE_UNKNOWN
;
535 struct argpar_state
*state
;
536 struct argpar_item
*item
= NULL
;
538 int consumed_args
= -1;
539 struct lttng_kernel_probe_location
*kernel_probe_location
= NULL
;
540 struct lttng_userspace_probe_location
*userspace_probe_location
= NULL
;
541 struct parse_event_rule_res res
= { 0 };
542 struct lttng_event_expr
*event_expr
= NULL
;
543 struct filter_parser_ctx
*parser_ctx
= NULL
;
545 /* Was the -a/--all flag provided? */
546 bool all_events
= false;
548 /* Tracepoint name (non-option argument). */
549 const char *tracepoint_name
= NULL
;
551 /* Holds the argument of --probe / --userspace-probe. */
558 char *exclude
= NULL
;
559 char **exclusion_list
= NULL
;
562 char *loglevel_str
= NULL
;
563 bool loglevel_only
= false;
565 lttng_dynamic_pointer_array_init(&res
.capture_descriptors
,
567 state
= argpar_state_create(*argc
, *argv
, event_rule_opt_descrs
);
569 ERR("Failed to allocate an argpar state.");
574 enum argpar_state_parse_next_status status
;
576 ARGPAR_ITEM_DESTROY_AND_RESET(item
);
577 status
= argpar_state_parse_next(state
, &item
, &error
);
578 if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_ERROR
) {
581 } else if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_ERROR_UNKNOWN_OPT
) {
582 /* Just stop parsing here. */
584 } else if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_END
) {
588 assert(status
== ARGPAR_STATE_PARSE_NEXT_STATUS_OK
);
590 if (item
->type
== ARGPAR_ITEM_TYPE_OPT
) {
591 const struct argpar_item_opt
*item_opt
=
592 (const struct argpar_item_opt
*) item
;
594 switch (item_opt
->descr
->id
) {
597 if (!assign_domain_type(&domain_type
, LTTNG_DOMAIN_UST
)) {
603 if (!assign_domain_type(&domain_type
, LTTNG_DOMAIN_KERNEL
)) {
609 if (!assign_domain_type(&domain_type
, LTTNG_DOMAIN_LOG4J
)) {
615 if (!assign_domain_type(&domain_type
, LTTNG_DOMAIN_JUL
)) {
621 if (!assign_domain_type(&domain_type
, LTTNG_DOMAIN_PYTHON
)) {
627 /* Event rule types */
629 if (!assign_event_rule_type(&event_rule_type
,
630 LTTNG_EVENT_RULE_TYPE_KRETPROBE
)) {
636 if (!assign_event_rule_type(&event_rule_type
,
637 LTTNG_EVENT_RULE_TYPE_KERNEL_PROBE
)) {
641 if (!assign_string(&source
, item_opt
->arg
, "source")) {
646 case OPT_USERSPACE_PROBE
:
647 if (!assign_event_rule_type(&event_rule_type
,
648 LTTNG_EVENT_RULE_TYPE_USERSPACE_PROBE
)) {
652 if (!assign_string(&source
, item_opt
->arg
, "source")) {
658 if (!assign_event_rule_type(&event_rule_type
,
659 LTTNG_EVENT_RULE_TYPE_SYSCALL
)) {
665 if (!assign_event_rule_type(&event_rule_type
,
666 LTTNG_EVENT_RULE_TYPE_TRACEPOINT
)) {
675 if (!assign_string(&filter
, item_opt
->arg
,
682 if (!assign_string(&exclude
, item_opt
->arg
,
689 case OPT_LOGLEVEL_ONLY
:
690 if (!assign_string(&loglevel_str
, item_opt
->arg
,
691 "--loglevel/--loglevel-only")) {
695 loglevel_only
= item_opt
->descr
->id
==
701 const char *capture_str
= item_opt
->arg
;
703 ret
= filter_parser_ctx_create_from_filter_expression(
704 capture_str
, &parser_ctx
);
706 ERR("Failed to parse capture expression `%s`.",
711 event_expr
= ir_op_root_to_event_expr(
716 * ir_op_root_to_event_expr has printed
722 ret
= lttng_dynamic_pointer_array_add_pointer(
723 &res
.capture_descriptors
,
730 * The ownership of event expression was
731 * transferred to the dynamic array.
741 const struct argpar_item_non_opt
*item_non_opt
=
742 (const struct argpar_item_non_opt
*)
746 * Don't accept two non-option arguments/tracepoint
749 if (tracepoint_name
) {
750 ERR("Unexpected argument '%s'",
755 tracepoint_name
= item_non_opt
->arg
;
759 if (event_rule_type
== LTTNG_EVENT_RULE_TYPE_UNKNOWN
) {
760 event_rule_type
= LTTNG_EVENT_RULE_TYPE_TRACEPOINT
;
764 * Option -a is applicable to event rules of type tracepoint and
765 * syscall, and it is equivalent to using "*" as the tracepoint name.
768 switch (event_rule_type
) {
769 case LTTNG_EVENT_RULE_TYPE_TRACEPOINT
:
770 case LTTNG_EVENT_RULE_TYPE_SYSCALL
:
773 ERR("Can't use -a/--all with %s event rules.",
774 lttng_event_rule_type_str(event_rule_type
));
778 if (tracepoint_name
) {
779 ERR("Can't provide a tracepoint name with -a/--all.");
783 /* In which case, it's equivalent to tracepoint name "*". */
784 tracepoint_name
= "*";
788 * A tracepoint name (or -a, for the event rule types that accept it)
791 if (!tracepoint_name
) {
792 ERR("Need to provide either a tracepoint name or -a/--all.");
797 * We don't support multiple tracepoint names for now.
799 if (strchr(tracepoint_name
, ',')) {
800 ERR("Comma separated tracepoint names are not supported.");
805 * Update *argc and *argv so our caller can keep parsing what follows.
807 consumed_args
= argpar_state_get_ingested_orig_args(state
);
808 assert(consumed_args
>= 0);
809 *argc
-= consumed_args
;
810 *argv
+= consumed_args
;
812 /* Need to specify a domain. */
813 if (domain_type
== LTTNG_DOMAIN_NONE
) {
814 ERR("Please specify a domain (--kernel/--userspace/--jul/--log4j/--python).");
818 /* Validate event rule type against domain. */
819 switch (event_rule_type
) {
820 case LTTNG_EVENT_RULE_TYPE_KERNEL_PROBE
:
821 case LTTNG_EVENT_RULE_TYPE_KRETPROBE
:
822 case LTTNG_EVENT_RULE_TYPE_USERSPACE_PROBE
:
823 case LTTNG_EVENT_RULE_TYPE_SYSCALL
:
824 if (domain_type
!= LTTNG_DOMAIN_KERNEL
) {
825 ERR("Event type not available for user-space tracing.");
830 case LTTNG_EVENT_RULE_TYPE_TRACEPOINT
:
838 * Adding a filter to a probe, function or userspace-probe would be
839 * denied by the kernel tracer as it's not supported at the moment. We
840 * do an early check here to warn the user.
842 if (filter
&& domain_type
== LTTNG_DOMAIN_KERNEL
) {
843 switch (event_rule_type
) {
844 case LTTNG_EVENT_RULE_TYPE_TRACEPOINT
:
845 case LTTNG_EVENT_RULE_TYPE_SYSCALL
:
848 ERR("Filter expressions are not supported for %s event rules.",
849 lttng_event_rule_type_str(event_rule_type
));
854 /* If --exclude/-x was passed, split it into an exclusion list. */
856 if (domain_type
!= LTTNG_DOMAIN_UST
) {
857 ERR("Event name exclusions are not yet implemented for %s event rules.",
858 get_domain_str(domain_type
));
863 if (create_exclusion_list_and_validate(tracepoint_name
, exclude
,
864 &exclusion_list
) != 0) {
865 ERR("Failed to create exclusion list.");
870 if (loglevel_str
&& event_rule_type
!= LTTNG_EVENT_RULE_TYPE_TRACEPOINT
) {
871 ERR("Log levels are only applicable to tracepoint event rules.");
875 /* Finally, create the event rule object. */
876 switch (event_rule_type
) {
877 case LTTNG_EVENT_RULE_TYPE_TRACEPOINT
:
879 enum lttng_event_rule_status event_rule_status
;
881 res
.er
= lttng_event_rule_tracepoint_create(domain_type
);
883 ERR("Failed to create tracepoint event rule.");
888 event_rule_status
= lttng_event_rule_tracepoint_set_pattern(
889 res
.er
, tracepoint_name
);
890 if (event_rule_status
!= LTTNG_EVENT_RULE_STATUS_OK
) {
891 ERR("Failed to set tracepoint event rule's pattern to '%s'.",
898 event_rule_status
= lttng_event_rule_tracepoint_set_filter(
900 if (event_rule_status
!= LTTNG_EVENT_RULE_STATUS_OK
) {
901 ERR("Failed to set tracepoint event rule's filter to '%s'.",
907 /* Set exclusion list. */
908 if (exclusion_list
) {
911 for (n
= 0; exclusion_list
[n
]; n
++) {
912 event_rule_status
= lttng_event_rule_tracepoint_add_exclusion(
915 if (event_rule_status
!=
916 LTTNG_EVENT_RULE_STATUS_OK
) {
917 ERR("Failed to set tracepoint exclusion list element '%s'",
927 if (domain_type
== LTTNG_DOMAIN_KERNEL
) {
928 ERR("Log levels are not supported by the kernel tracer.");
932 loglevel
= parse_loglevel_string(
933 loglevel_str
, domain_type
);
935 ERR("Failed to parse `%s` as a log level.",
941 event_rule_status
= lttng_event_rule_tracepoint_set_log_level(
945 event_rule_status
= lttng_event_rule_tracepoint_set_log_level_range_lower_bound(
950 if (event_rule_status
!= LTTNG_EVENT_RULE_STATUS_OK
) {
951 ERR("Failed to set log level on event fule.");
958 case LTTNG_EVENT_RULE_TYPE_KERNEL_PROBE
:
961 enum lttng_event_rule_status event_rule_status
;
964 ret
= parse_kernel_probe_opts(source
, &kernel_probe_location
);
966 ERR("Failed to parse kernel probe location.");
970 assert(kernel_probe_location
);
971 res
.er
= lttng_event_rule_kernel_probe_create(kernel_probe_location
);
973 ERR("Failed to create kprobe event rule.");
977 event_rule_status
= lttng_event_rule_kernel_probe_set_event_name(res
.er
, tracepoint_name
);
978 if (event_rule_status
!= LTTNG_EVENT_RULE_STATUS_OK
) {
979 ERR("Failed to set kprobe event rule's name to '%s'.", tracepoint_name
);
985 case LTTNG_EVENT_RULE_TYPE_USERSPACE_PROBE
:
988 enum lttng_event_rule_status event_rule_status
;
990 ret
= parse_userspace_probe_opts(
991 source
, &userspace_probe_location
);
993 ERR("Failed to parse user space probe location.");
997 res
.er
= lttng_event_rule_userspace_probe_create();
999 ERR("Failed to create userspace probe event rule.");
1003 event_rule_status
= lttng_event_rule_userspace_probe_set_location(
1004 res
.er
, userspace_probe_location
);
1005 if (event_rule_status
!= LTTNG_EVENT_RULE_STATUS_OK
) {
1006 ERR("Failed to set user space probe event rule's location.");
1010 event_rule_status
= lttng_event_rule_userspace_probe_set_name(
1011 res
.er
, tracepoint_name
);
1012 if (event_rule_status
!= LTTNG_EVENT_RULE_STATUS_OK
) {
1013 ERR("Failed to set user space probe event rule's name to '%s'.",
1020 case LTTNG_EVENT_RULE_TYPE_SYSCALL
:
1022 enum lttng_event_rule_status event_rule_status
;
1024 res
.er
= lttng_event_rule_syscall_create();
1026 ERR("Failed to create syscall event rule.");
1030 event_rule_status
= lttng_event_rule_syscall_set_pattern(
1031 res
.er
, tracepoint_name
);
1032 if (event_rule_status
!= LTTNG_EVENT_RULE_STATUS_OK
) {
1033 ERR("Failed to set syscall event rule's pattern to '%s'.",
1039 event_rule_status
= lttng_event_rule_syscall_set_filter(
1041 if (event_rule_status
!= LTTNG_EVENT_RULE_STATUS_OK
) {
1042 ERR("Failed to set syscall event rule's filter to '%s'.",
1058 lttng_event_rule_destroy(res
.er
);
1060 lttng_dynamic_pointer_array_reset(&res
.capture_descriptors
);
1064 filter_parser_ctx_free(parser_ctx
);
1067 lttng_event_expr_destroy(event_expr
);
1068 argpar_item_destroy(item
);
1070 argpar_state_destroy(state
);
1075 strutils_free_null_terminated_array_of_strings(exclusion_list
);
1076 lttng_kernel_probe_location_destroy(kernel_probe_location
);
1077 lttng_userspace_probe_location_destroy(userspace_probe_location
);
1082 struct lttng_condition
*handle_condition_event(int *argc
, const char ***argv
)
1084 struct parse_event_rule_res res
;
1085 struct lttng_condition
*c
;
1088 res
= parse_event_rule(argc
, argv
);
1094 c
= lttng_condition_on_event_create(res
.er
);
1095 lttng_event_rule_destroy(res
.er
);
1101 for (i
= 0; i
< lttng_dynamic_pointer_array_get_count(&res
.capture_descriptors
);
1103 enum lttng_condition_status status
;
1104 struct lttng_event_expr
**expr
=
1105 lttng_dynamic_array_get_element(
1106 &res
.capture_descriptors
.array
, i
);
1110 status
= lttng_condition_on_event_append_capture_descriptor(
1112 if (status
!= LTTNG_CONDITION_STATUS_OK
) {
1113 if (status
== LTTNG_CONDITION_STATUS_UNSUPPORTED
) {
1114 ERR("The capture feature is unsupported by the event-rule condition type");
1120 /* Ownership of event expression moved to `c` */
1127 lttng_condition_destroy(c
);
1131 lttng_dynamic_pointer_array_reset(&res
.capture_descriptors
);
1132 lttng_event_rule_destroy(res
.er
);
1137 struct lttng_condition
*handle_condition_session_consumed_size(int *argc
, const char ***argv
)
1139 struct lttng_condition
*cond
= NULL
;
1140 struct argpar_state
*state
= NULL
;
1141 struct argpar_item
*item
= NULL
;
1142 const char *threshold_arg
= NULL
;
1143 const char *session_name_arg
= NULL
;
1146 enum lttng_condition_status condition_status
;
1148 state
= argpar_state_create(*argc
, *argv
, event_rule_opt_descrs
);
1150 ERR("Failed to allocate an argpar state.");
1155 enum argpar_state_parse_next_status status
;
1157 ARGPAR_ITEM_DESTROY_AND_RESET(item
);
1158 status
= argpar_state_parse_next(state
, &item
, &error
);
1159 if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_ERROR
) {
1162 } else if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_ERROR_UNKNOWN_OPT
) {
1163 /* Just stop parsing here. */
1165 } else if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_END
) {
1169 assert(status
== ARGPAR_STATE_PARSE_NEXT_STATUS_OK
);
1171 if (item
->type
== ARGPAR_ITEM_TYPE_OPT
) {
1172 const struct argpar_item_opt
*item_opt
=
1173 (const struct argpar_item_opt
*) item
;
1175 switch (item_opt
->descr
->id
) {
1180 const struct argpar_item_non_opt
*item_non_opt
;
1182 assert(item
->type
== ARGPAR_ITEM_TYPE_NON_OPT
);
1184 item_non_opt
= (const struct argpar_item_non_opt
*) item
;
1186 switch (item_non_opt
->non_opt_index
) {
1188 session_name_arg
= item_non_opt
->arg
;
1191 threshold_arg
= item_non_opt
->arg
;
1194 ERR("Unexpected argument `%s`.",
1201 *argc
-= argpar_state_get_ingested_orig_args(state
);
1202 *argv
+= argpar_state_get_ingested_orig_args(state
);
1204 if (!session_name_arg
) {
1205 ERR("Missing session name argument.");
1209 if (!threshold_arg
) {
1210 ERR("Missing threshold argument.");
1214 if (utils_parse_size_suffix(threshold_arg
, &threshold
) != 0) {
1215 ERR("Failed to parse `%s` as a size.", threshold_arg
);
1219 cond
= lttng_condition_session_consumed_size_create();
1221 ERR("Failed to allocate a session consumed size condition.");
1225 condition_status
= lttng_condition_session_consumed_size_set_session_name(
1226 cond
, session_name_arg
);
1227 if (condition_status
!= LTTNG_CONDITION_STATUS_OK
) {
1228 ERR("Failed to set session consumed size condition's session name to '%s'.",
1233 condition_status
= lttng_condition_session_consumed_size_set_threshold(
1235 if (condition_status
!= LTTNG_CONDITION_STATUS_OK
) {
1236 ERR("Failed to set session consumed size condition threshold.");
1243 lttng_condition_destroy(cond
);
1247 argpar_state_destroy(state
);
1248 argpar_item_destroy(item
);
1254 struct lttng_condition
*handle_condition_buffer_usage_high(int *argc
, const char ***argv
)
1256 ERR("High buffer usage threshold conditions are unsupported for the moment.");
1261 struct lttng_condition
*handle_condition_buffer_usage_low(int *argc
, const char ***argv
)
1263 ERR("Low buffer usage threshold conditions are unsupported for the moment.");
1268 struct lttng_condition
*handle_condition_session_rotation_ongoing(int *argc
, const char ***argv
)
1270 ERR("Session rotation ongoing conditions are unsupported for the moment.");
1275 struct lttng_condition
*handle_condition_session_rotation_completed(int *argc
, const char ***argv
)
1277 ERR("Session rotation completed conditions are unsupported for the moment.");
1281 struct condition_descr
{
1283 struct lttng_condition
*(*handler
) (int *argc
, const char ***argv
);
1287 struct condition_descr condition_descrs
[] = {
1288 { "on-event", handle_condition_event
},
1289 { "on-session-consumed-size", handle_condition_session_consumed_size
},
1290 { "on-buffer-usage-high", handle_condition_buffer_usage_high
},
1291 { "on-buffer-usage-low", handle_condition_buffer_usage_low
},
1292 { "on-session-rotation-ongoing", handle_condition_session_rotation_ongoing
},
1293 { "on-session-rotation-completed", handle_condition_session_rotation_completed
},
1297 struct lttng_condition
*parse_condition(int *argc
, const char ***argv
)
1300 struct lttng_condition
*cond
;
1301 const char *condition_name
;
1302 const struct condition_descr
*descr
= NULL
;
1305 ERR("Missing condition name.");
1309 condition_name
= (*argv
)[0];
1314 for (i
= 0; i
< ARRAY_SIZE(condition_descrs
); i
++) {
1315 if (strcmp(condition_name
, condition_descrs
[i
].name
) == 0) {
1316 descr
= &condition_descrs
[i
];
1322 ERR("Unknown condition name '%s'", condition_name
);
1326 cond
= descr
->handler(argc
, argv
);
1328 /* The handler has already printed an error message. */
1341 struct lttng_action
*handle_action_notify(int *argc
, const char ***argv
)
1343 return lttng_action_notify_create();
1346 static const struct argpar_opt_descr no_opt_descrs
[] = {
1347 ARGPAR_OPT_DESCR_SENTINEL
1351 * Generic handler for a kind of action that takes a session name as its sole
1356 struct lttng_action
*handle_action_simple_session(
1357 int *argc
, const char ***argv
,
1358 struct lttng_action
*(*create_action_cb
)(void),
1359 enum lttng_action_status (*set_session_name_cb
)(struct lttng_action
*, const char *),
1360 const char *action_name
)
1362 struct lttng_action
*action
= NULL
;
1363 struct argpar_state
*state
= NULL
;
1364 struct argpar_item
*item
= NULL
;
1365 const char *session_name_arg
= NULL
;
1367 enum lttng_action_status action_status
;
1369 state
= argpar_state_create(*argc
, *argv
, no_opt_descrs
);
1371 ERR("Failed to allocate an argpar state.");
1376 enum argpar_state_parse_next_status status
;
1377 const struct argpar_item_non_opt
*item_non_opt
;
1379 ARGPAR_ITEM_DESTROY_AND_RESET(item
);
1380 status
= argpar_state_parse_next(state
, &item
, &error
);
1381 if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_ERROR
) {
1384 } else if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_ERROR_UNKNOWN_OPT
) {
1385 /* Just stop parsing here. */
1387 } else if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_END
) {
1391 assert(status
== ARGPAR_STATE_PARSE_NEXT_STATUS_OK
);
1392 assert(item
->type
== ARGPAR_ITEM_TYPE_NON_OPT
);
1394 item_non_opt
= (const struct argpar_item_non_opt
*) item
;
1396 switch (item_non_opt
->non_opt_index
) {
1398 session_name_arg
= item_non_opt
->arg
;
1401 ERR("Unexpected argument `%s`.", item_non_opt
->arg
);
1406 *argc
-= argpar_state_get_ingested_orig_args(state
);
1407 *argv
+= argpar_state_get_ingested_orig_args(state
);
1409 if (!session_name_arg
) {
1410 ERR("Missing session name.");
1414 action
= create_action_cb();
1416 ERR("Failed to allocate %s session action.", action_name
);
1420 action_status
= set_session_name_cb(action
, session_name_arg
);
1421 if (action_status
!= LTTNG_ACTION_STATUS_OK
) {
1422 ERR("Failed to set action %s session's session name to '%s'.",
1423 action_name
, session_name_arg
);
1430 lttng_action_destroy(action
);
1432 argpar_item_destroy(item
);
1435 argpar_state_destroy(state
);
1440 struct lttng_action
*handle_action_start_session(int *argc
,
1443 return handle_action_simple_session(argc
, argv
,
1444 lttng_action_start_session_create
,
1445 lttng_action_start_session_set_session_name
,
1450 struct lttng_action
*handle_action_stop_session(int *argc
,
1453 return handle_action_simple_session(argc
, argv
,
1454 lttng_action_stop_session_create
,
1455 lttng_action_stop_session_set_session_name
,
1460 struct lttng_action
*handle_action_rotate_session(int *argc
,
1463 return handle_action_simple_session(argc
, argv
,
1464 lttng_action_rotate_session_create
,
1465 lttng_action_rotate_session_set_session_name
,
1469 static const struct argpar_opt_descr snapshot_action_opt_descrs
[] = {
1470 { OPT_NAME
, 'n', "name", true },
1471 { OPT_MAX_SIZE
, 'm', "max-size", true },
1472 { OPT_CTRL_URL
, '\0', "ctrl-url", true },
1473 { OPT_DATA_URL
, '\0', "data-url", true },
1474 { OPT_URL
, '\0', "url", true },
1475 { OPT_PATH
, '\0', "path", true },
1476 ARGPAR_OPT_DESCR_SENTINEL
1480 struct lttng_action
*handle_action_snapshot_session(int *argc
,
1483 struct lttng_action
*action
= NULL
;
1484 struct argpar_state
*state
= NULL
;
1485 struct argpar_item
*item
= NULL
;
1486 const char *session_name_arg
= NULL
;
1487 char *snapshot_name_arg
= NULL
;
1488 char *ctrl_url_arg
= NULL
;
1489 char *data_url_arg
= NULL
;
1490 char *max_size_arg
= NULL
;
1491 char *url_arg
= NULL
;
1492 char *path_arg
= NULL
;
1494 enum lttng_action_status action_status
;
1495 struct lttng_snapshot_output
*snapshot_output
= NULL
;
1497 unsigned int locations_specified
= 0;
1499 state
= argpar_state_create(*argc
, *argv
, snapshot_action_opt_descrs
);
1501 ERR("Failed to allocate an argpar state.");
1506 enum argpar_state_parse_next_status status
;
1508 ARGPAR_ITEM_DESTROY_AND_RESET(item
);
1509 status
= argpar_state_parse_next(state
, &item
, &error
);
1510 if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_ERROR
) {
1513 } else if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_ERROR_UNKNOWN_OPT
) {
1514 /* Just stop parsing here. */
1516 } else if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_END
) {
1520 assert(status
== ARGPAR_STATE_PARSE_NEXT_STATUS_OK
);
1522 if (item
->type
== ARGPAR_ITEM_TYPE_OPT
) {
1523 const struct argpar_item_opt
*item_opt
=
1524 (const struct argpar_item_opt
*) item
;
1526 switch (item_opt
->descr
->id
) {
1528 if (!assign_string(&snapshot_name_arg
, item_opt
->arg
, "--name/-n")) {
1534 if (!assign_string(&max_size_arg
, item_opt
->arg
, "--max-size/-m")) {
1540 if (!assign_string(&ctrl_url_arg
, item_opt
->arg
, "--ctrl-url")) {
1546 if (!assign_string(&data_url_arg
, item_opt
->arg
, "--data-url")) {
1552 if (!assign_string(&url_arg
, item_opt
->arg
, "--url")) {
1558 if (!assign_string(&path_arg
, item_opt
->arg
, "--path")) {
1567 const struct argpar_item_non_opt
*item_non_opt
;
1569 assert(item
->type
== ARGPAR_ITEM_TYPE_NON_OPT
);
1571 item_non_opt
= (const struct argpar_item_non_opt
*) item
;
1573 switch (item_non_opt
->non_opt_index
) {
1575 session_name_arg
= item_non_opt
->arg
;
1578 ERR("Unexpected argument `%s`.",
1585 *argc
-= argpar_state_get_ingested_orig_args(state
);
1586 *argv
+= argpar_state_get_ingested_orig_args(state
);
1588 if (!session_name_arg
) {
1589 ERR("Missing session name.");
1593 /* --ctrl-url and --data-url must come in pair. */
1594 if (ctrl_url_arg
&& !data_url_arg
) {
1595 ERR("--ctrl-url is specified, but --data-url is missing.");
1599 if (!ctrl_url_arg
&& data_url_arg
) {
1600 ERR("--data-url is specified, but --ctrl-url is missing.");
1604 locations_specified
+= !!(ctrl_url_arg
|| data_url_arg
);
1605 locations_specified
+= !!url_arg
;
1606 locations_specified
+= !!path_arg
;
1608 /* --ctrl-url/--data-url, --url and --path are mutually exclusive. */
1609 if (locations_specified
> 1) {
1610 ERR("The --ctrl-url/--data-url, --url, and --path options can't be used together.");
1615 * Did the user specify an option that implies using a
1616 * custom/unregistered output?
1618 if (url_arg
|| ctrl_url_arg
|| path_arg
) {
1619 snapshot_output
= lttng_snapshot_output_create();
1620 if (!snapshot_output
) {
1621 ERR("Failed to allocate a snapshot output.");
1626 action
= lttng_action_snapshot_session_create();
1628 ERR("Failed to allocate snapshot session action.");
1632 action_status
= lttng_action_snapshot_session_set_session_name(
1633 action
, session_name_arg
);
1634 if (action_status
!= LTTNG_ACTION_STATUS_OK
) {
1635 ERR("Failed to set action snapshot session's session name to '%s'.",
1640 if (snapshot_name_arg
) {
1641 if (!snapshot_output
) {
1642 ERR("Can't provide a snapshot output name without a snapshot output destination.");
1646 ret
= lttng_snapshot_output_set_name(
1647 snapshot_name_arg
, snapshot_output
);
1649 ERR("Failed to set name of snapshot output.");
1657 if (!snapshot_output
) {
1658 ERR("Can't provide a snapshot output max size without a snapshot output destination.");
1662 ret
= utils_parse_size_suffix(max_size_arg
, &max_size
);
1664 ERR("Failed to parse `%s` as a size.", max_size_arg
);
1668 ret
= lttng_snapshot_output_set_size(max_size
, snapshot_output
);
1670 ERR("Failed to set snapshot output's max size to %" PRIu64
" bytes.",
1678 struct lttng_uri
*uris
;
1680 if (!strstr(url_arg
, "://")) {
1681 ERR("Failed to parse '%s' as an URL.", url_arg
);
1685 num_uris
= uri_parse_str_urls(url_arg
, NULL
, &uris
);
1687 ERR("Failed to parse '%s' as an URL.", url_arg
);
1691 if (uris
[0].dtype
== LTTNG_DST_PATH
) {
1692 ret
= lttng_snapshot_output_set_local_path(
1693 uris
[0].dst
.path
, snapshot_output
);
1696 ERR("Failed to assign '%s' as a local destination.",
1701 ret
= lttng_snapshot_output_set_network_url(
1702 url_arg
, snapshot_output
);
1705 ERR("Failed to assign '%s' as a network URL.",
1713 ret
= lttng_snapshot_output_set_local_path(
1714 path_arg
, snapshot_output
);
1716 ERR("Failed to parse '%s' as a local path.", path_arg
);
1723 * Two argument form, network output with separate control and
1726 ret
= lttng_snapshot_output_set_network_urls(
1727 ctrl_url_arg
, data_url_arg
, snapshot_output
);
1729 ERR("Failed to parse `%s` and `%s` as control and data URLs.",
1730 ctrl_url_arg
, data_url_arg
);
1735 if (snapshot_output
) {
1736 action_status
= lttng_action_snapshot_session_set_output(
1737 action
, snapshot_output
);
1738 if (action_status
!= LTTNG_ACTION_STATUS_OK
) {
1739 ERR("Failed to set snapshot session action's output.");
1743 /* Ownership of `snapshot_output` has been transferred to the action. */
1744 snapshot_output
= NULL
;
1750 lttng_action_destroy(action
);
1754 free(snapshot_name_arg
);
1759 free(snapshot_output
);
1761 argpar_state_destroy(state
);
1762 argpar_item_destroy(item
);
1766 struct action_descr
{
1768 struct lttng_action
*(*handler
) (int *argc
, const char ***argv
);
1772 struct action_descr action_descrs
[] = {
1773 { "notify", handle_action_notify
},
1774 { "start-session", handle_action_start_session
},
1775 { "stop-session", handle_action_stop_session
},
1776 { "rotate-session", handle_action_rotate_session
},
1777 { "snapshot-session", handle_action_snapshot_session
},
1781 struct lttng_action
*parse_action(int *argc
, const char ***argv
)
1784 struct lttng_action
*action
;
1785 const char *action_name
;
1786 const struct action_descr
*descr
= NULL
;
1789 ERR("Missing action name.");
1793 action_name
= (*argv
)[0];
1798 for (i
= 0; i
< ARRAY_SIZE(action_descrs
); i
++) {
1799 if (strcmp(action_name
, action_descrs
[i
].name
) == 0) {
1800 descr
= &action_descrs
[i
];
1806 ERR("Unknown action name: %s", action_name
);
1810 action
= descr
->handler(argc
, argv
);
1812 /* The handler has already printed an error message. */
1824 struct argpar_opt_descr add_trigger_options
[] = {
1825 { OPT_HELP
, 'h', "help", false },
1826 { OPT_LIST_OPTIONS
, '\0', "list-options", false },
1827 { OPT_CONDITION
, '\0', "condition", false },
1828 { OPT_ACTION
, '\0', "action", false },
1829 { OPT_ID
, '\0', "id", true },
1830 { OPT_FIRE_ONCE_AFTER
, '\0', "fire-once-after", true },
1831 { OPT_FIRE_EVERY
, '\0', "fire-every", true },
1832 { OPT_USER_ID
, '\0', "user-id", true },
1833 ARGPAR_OPT_DESCR_SENTINEL
,
1837 void lttng_actions_destructor(void *p
)
1839 struct lttng_action
*action
= p
;
1841 lttng_action_destroy(action
);
1844 int cmd_add_trigger(int argc
, const char **argv
)
1847 int my_argc
= argc
- 1;
1848 const char **my_argv
= argv
+ 1;
1849 struct lttng_condition
*condition
= NULL
;
1850 struct lttng_dynamic_pointer_array actions
;
1851 struct argpar_state
*argpar_state
= NULL
;
1852 struct argpar_item
*argpar_item
= NULL
;
1853 struct lttng_action
*action_group
= NULL
;
1854 struct lttng_action
*action
= NULL
;
1855 struct lttng_trigger
*trigger
= NULL
;
1859 char *fire_once_after_str
= NULL
;
1860 char *fire_every_str
= NULL
;
1861 char *user_id
= NULL
;
1863 lttng_dynamic_pointer_array_init(&actions
, lttng_actions_destructor
);
1866 enum argpar_state_parse_next_status status
;
1867 const struct argpar_item_opt
*item_opt
;
1870 argpar_state_destroy(argpar_state
);
1871 argpar_state
= argpar_state_create(my_argc
, my_argv
,
1872 add_trigger_options
);
1873 if (!argpar_state
) {
1874 ERR("Failed to create argpar state.");
1878 ARGPAR_ITEM_DESTROY_AND_RESET(argpar_item
);
1879 status
= argpar_state_parse_next(argpar_state
, &argpar_item
, &error
);
1880 if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_ERROR
) {
1883 } else if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_ERROR_UNKNOWN_OPT
) {
1886 } else if (status
== ARGPAR_STATE_PARSE_NEXT_STATUS_END
) {
1890 assert(status
== ARGPAR_STATE_PARSE_NEXT_STATUS_OK
);
1892 if (argpar_item
->type
== ARGPAR_ITEM_TYPE_NON_OPT
) {
1893 const struct argpar_item_non_opt
*item_non_opt
=
1894 (const struct argpar_item_non_opt
*)
1897 ERR("Unexpected argument `%s`.", item_non_opt
->arg
);
1901 item_opt
= (const struct argpar_item_opt
*) argpar_item
;
1903 ingested_args
= argpar_state_get_ingested_orig_args(
1906 my_argc
-= ingested_args
;
1907 my_argv
+= ingested_args
;
1909 switch (item_opt
->descr
->id
) {
1914 case OPT_LIST_OPTIONS
:
1915 list_cmd_options_argpar(stdout
, add_trigger_options
);
1921 ERR("A --condition was already given.");
1925 condition
= parse_condition(&my_argc
, &my_argv
);
1928 * An error message was already printed by
1938 action
= parse_action(&my_argc
, &my_argv
);
1941 * An error message was already printed by
1947 ret
= lttng_dynamic_pointer_array_add_pointer(
1950 ERR("Failed to add pointer to pointer array.");
1954 /* Ownership of the action was transferred to the group. */
1961 if (!assign_string(&id
, item_opt
->arg
, "--id")) {
1967 case OPT_FIRE_ONCE_AFTER
:
1969 if (!assign_string(&fire_once_after_str
, item_opt
->arg
,
1970 "--fire-once-after")) {
1976 case OPT_FIRE_EVERY
:
1978 if (!assign_string(&fire_every_str
, item_opt
->arg
,
1987 if (!assign_string(&user_id
, item_opt
->arg
,
2000 ERR("Missing --condition.");
2004 if (lttng_dynamic_pointer_array_get_count(&actions
) == 0) {
2005 ERR("Need at least one --action.");
2009 if (fire_every_str
&& fire_once_after_str
) {
2010 ERR("Can't specify both --fire-once-after and --fire-every.");
2014 action_group
= lttng_action_group_create();
2015 if (!action_group
) {
2019 for (i
= 0; i
< lttng_dynamic_pointer_array_get_count(&actions
); i
++) {
2020 enum lttng_action_status status
;
2022 action
= lttng_dynamic_pointer_array_steal_pointer(&actions
, i
);
2024 status
= lttng_action_group_add_action(action_group
, action
);
2025 if (status
!= LTTNG_ACTION_STATUS_OK
) {
2030 * The `lttng_action_group_add_action()` takes a reference to
2031 * the action. We can destroy ours.
2033 lttng_action_destroy(action
);
2037 trigger
= lttng_trigger_create(condition
, action_group
);
2043 enum lttng_trigger_status trigger_status
=
2044 lttng_trigger_set_name(trigger
, id
);
2046 if (trigger_status
!= LTTNG_TRIGGER_STATUS_OK
) {
2047 ERR("Failed to set trigger id.");
2052 if (fire_once_after_str
) {
2053 unsigned long long threshold
;
2054 enum lttng_trigger_status trigger_status
;
2056 if (utils_parse_unsigned_long_long(fire_once_after_str
, &threshold
) != 0) {
2057 ERR("Failed to parse `%s` as an integer.", fire_once_after_str
);
2061 trigger_status
= lttng_trigger_set_firing_policy(trigger
,
2062 LTTNG_TRIGGER_FIRING_POLICY_ONCE_AFTER_N
,
2064 if (trigger_status
!= LTTNG_TRIGGER_STATUS_OK
) {
2065 ERR("Failed to set trigger's policy to `fire once after N`.");
2070 if (fire_every_str
) {
2071 unsigned long long threshold
;
2072 enum lttng_trigger_status trigger_status
;
2074 if (utils_parse_unsigned_long_long(fire_every_str
, &threshold
) != 0) {
2075 ERR("Failed to parse `%s` as an integer.", fire_every_str
);
2079 trigger_status
= lttng_trigger_set_firing_policy(trigger
,
2080 LTTNG_TRIGGER_FIRING_POLICY_EVERY_N
, threshold
);
2081 if (trigger_status
!= LTTNG_TRIGGER_STATUS_OK
) {
2082 ERR("Failed to set trigger's policy to `fire every N`.");
2088 enum lttng_trigger_status trigger_status
;
2093 uid
= strtol(user_id
, &end
, 10);
2094 if (end
== user_id
|| *end
!= '\0' || errno
!= 0) {
2095 ERR("Failed to parse `%s` as a user id.", user_id
);
2098 trigger_status
= lttng_trigger_set_owner_uid(trigger
, uid
);
2099 if (trigger_status
!= LTTNG_TRIGGER_STATUS_OK
) {
2100 ERR("Failed to set trigger's user identity.");
2105 ret
= lttng_register_trigger(trigger
);
2107 ERR("Failed to register trigger: %s.", lttng_strerror(ret
));
2111 MSG("Trigger registered successfully.");
2119 argpar_state_destroy(argpar_state
);
2120 argpar_item_destroy(argpar_item
);
2121 lttng_dynamic_pointer_array_reset(&actions
);
2122 lttng_condition_destroy(condition
);
2123 lttng_action_destroy(action_group
);
2124 lttng_action_destroy(action
);
2125 lttng_trigger_destroy(trigger
);
2128 free(fire_once_after_str
);
2129 free(fire_every_str
);