1 // SPDX-License-Identifier: GPL-2.0
3 * Common code for probe-based Dynamic events.
5 * This code was copied from kernel/trace/trace_kprobe.c written by
6 * Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
8 * Updates to make this generic:
9 * Copyright (C) IBM Corporation, 2010-2011
10 * Author: Srikar Dronamraju
12 #define pr_fmt(fmt) "trace_probe: " fmt
14 #include "trace_probe.h"
19 static const char *trace_probe_err_text
[] = { ERRORS
};
21 static const char *reserved_field_names
[] = {
24 "common_preempt_count",
32 /* Printing in basic type function template */
33 #define DEFINE_BASIC_PRINT_TYPE_FUNC(tname, type, fmt) \
34 int PRINT_TYPE_FUNC_NAME(tname)(struct trace_seq *s, void *data, void *ent)\
36 trace_seq_printf(s, fmt, *(type *)data); \
37 return !trace_seq_has_overflowed(s); \
39 const char PRINT_TYPE_FMT_NAME(tname)[] = fmt;
41 DEFINE_BASIC_PRINT_TYPE_FUNC(u8
, u8
, "%u")
42 DEFINE_BASIC_PRINT_TYPE_FUNC(u16
, u16
, "%u")
43 DEFINE_BASIC_PRINT_TYPE_FUNC(u32
, u32
, "%u")
44 DEFINE_BASIC_PRINT_TYPE_FUNC(u64
, u64
, "%Lu")
45 DEFINE_BASIC_PRINT_TYPE_FUNC(s8
, s8
, "%d")
46 DEFINE_BASIC_PRINT_TYPE_FUNC(s16
, s16
, "%d")
47 DEFINE_BASIC_PRINT_TYPE_FUNC(s32
, s32
, "%d")
48 DEFINE_BASIC_PRINT_TYPE_FUNC(s64
, s64
, "%Ld")
49 DEFINE_BASIC_PRINT_TYPE_FUNC(x8
, u8
, "0x%x")
50 DEFINE_BASIC_PRINT_TYPE_FUNC(x16
, u16
, "0x%x")
51 DEFINE_BASIC_PRINT_TYPE_FUNC(x32
, u32
, "0x%x")
52 DEFINE_BASIC_PRINT_TYPE_FUNC(x64
, u64
, "0x%Lx")
54 int PRINT_TYPE_FUNC_NAME(symbol
)(struct trace_seq
*s
, void *data
, void *ent
)
56 trace_seq_printf(s
, "%pS", (void *)*(unsigned long *)data
);
57 return !trace_seq_has_overflowed(s
);
59 const char PRINT_TYPE_FMT_NAME(symbol
)[] = "%pS";
61 /* Print type function for string type */
62 int PRINT_TYPE_FUNC_NAME(string
)(struct trace_seq
*s
, void *data
, void *ent
)
64 int len
= *(u32
*)data
>> 16;
67 trace_seq_puts(s
, "(fault)");
69 trace_seq_printf(s
, "\"%s\"",
70 (const char *)get_loc_data(data
, ent
));
71 return !trace_seq_has_overflowed(s
);
74 const char PRINT_TYPE_FMT_NAME(string
)[] = "\\\"%s\\\"";
76 /* Fetch type information table */
77 static const struct fetch_type probe_fetch_types
[] = {
79 __ASSIGN_FETCH_TYPE("string", string
, string
, sizeof(u32
), 1,
81 __ASSIGN_FETCH_TYPE("ustring", string
, string
, sizeof(u32
), 1,
84 ASSIGN_FETCH_TYPE(u8
, u8
, 0),
85 ASSIGN_FETCH_TYPE(u16
, u16
, 0),
86 ASSIGN_FETCH_TYPE(u32
, u32
, 0),
87 ASSIGN_FETCH_TYPE(u64
, u64
, 0),
88 ASSIGN_FETCH_TYPE(s8
, u8
, 1),
89 ASSIGN_FETCH_TYPE(s16
, u16
, 1),
90 ASSIGN_FETCH_TYPE(s32
, u32
, 1),
91 ASSIGN_FETCH_TYPE(s64
, u64
, 1),
92 ASSIGN_FETCH_TYPE_ALIAS(x8
, u8
, u8
, 0),
93 ASSIGN_FETCH_TYPE_ALIAS(x16
, u16
, u16
, 0),
94 ASSIGN_FETCH_TYPE_ALIAS(x32
, u32
, u32
, 0),
95 ASSIGN_FETCH_TYPE_ALIAS(x64
, u64
, u64
, 0),
96 ASSIGN_FETCH_TYPE_ALIAS(symbol
, ADDR_FETCH_TYPE
, ADDR_FETCH_TYPE
, 0),
101 static const struct fetch_type
*find_fetch_type(const char *type
)
106 type
= DEFAULT_FETCH_TYPE_STR
;
108 /* Special case: bitfield */
112 type
= strchr(type
, '/');
117 if (kstrtoul(type
, 0, &bs
))
122 return find_fetch_type("u8");
124 return find_fetch_type("u16");
126 return find_fetch_type("u32");
128 return find_fetch_type("u64");
134 for (i
= 0; probe_fetch_types
[i
].name
; i
++) {
135 if (strcmp(type
, probe_fetch_types
[i
].name
) == 0)
136 return &probe_fetch_types
[i
];
143 static struct trace_probe_log trace_probe_log
;
145 void trace_probe_log_init(const char *subsystem
, int argc
, const char **argv
)
147 trace_probe_log
.subsystem
= subsystem
;
148 trace_probe_log
.argc
= argc
;
149 trace_probe_log
.argv
= argv
;
150 trace_probe_log
.index
= 0;
153 void trace_probe_log_clear(void)
155 memset(&trace_probe_log
, 0, sizeof(trace_probe_log
));
158 void trace_probe_log_set_index(int index
)
160 trace_probe_log
.index
= index
;
163 void __trace_probe_log_err(int offset
, int err_type
)
166 int i
, len
= 0, pos
= 0;
168 if (!trace_probe_log
.argv
)
171 /* Recalcurate the length and allocate buffer */
172 for (i
= 0; i
< trace_probe_log
.argc
; i
++) {
173 if (i
== trace_probe_log
.index
)
175 len
+= strlen(trace_probe_log
.argv
[i
]) + 1;
177 command
= kzalloc(len
, GFP_KERNEL
);
181 if (trace_probe_log
.index
>= trace_probe_log
.argc
) {
183 * Set the error position is next to the last arg + space.
184 * Note that len includes the terminal null and the cursor
185 * appaers at pos + 1.
191 /* And make a command string from argv array */
193 for (i
= 0; i
< trace_probe_log
.argc
; i
++) {
194 len
= strlen(trace_probe_log
.argv
[i
]);
195 strcpy(p
, trace_probe_log
.argv
[i
]);
201 tracing_log_err(NULL
, trace_probe_log
.subsystem
, command
,
202 trace_probe_err_text
, err_type
, pos
+ offset
);
207 /* Split symbol and offset. */
208 int traceprobe_split_symbol_offset(char *symbol
, long *offset
)
216 tmp
= strpbrk(symbol
, "+-");
218 ret
= kstrtol(tmp
, 0, offset
);
228 /* @buf must has MAX_EVENT_NAME_LEN size */
229 int traceprobe_parse_event_name(const char **pevent
, const char **pgroup
,
230 char *buf
, int offset
)
232 const char *slash
, *event
= *pevent
;
235 slash
= strchr(event
, '/');
237 if (slash
== event
) {
238 trace_probe_log_err(offset
, NO_GROUP_NAME
);
241 if (slash
- event
+ 1 > MAX_EVENT_NAME_LEN
) {
242 trace_probe_log_err(offset
, GROUP_TOO_LONG
);
245 strlcpy(buf
, event
, slash
- event
+ 1);
246 if (!is_good_name(buf
)) {
247 trace_probe_log_err(offset
, BAD_GROUP_NAME
);
252 offset
+= slash
- event
+ 1;
257 trace_probe_log_err(offset
, NO_EVENT_NAME
);
259 } else if (len
> MAX_EVENT_NAME_LEN
) {
260 trace_probe_log_err(offset
, EVENT_TOO_LONG
);
263 if (!is_good_name(event
)) {
264 trace_probe_log_err(offset
, BAD_EVENT_NAME
);
270 #define PARAM_MAX_STACK (THREAD_SIZE / sizeof(unsigned long))
272 static int parse_probe_vars(char *arg
, const struct fetch_type
*t
,
273 struct fetch_insn
*code
, unsigned int flags
, int offs
)
279 if (strcmp(arg
, "retval") == 0) {
280 if (flags
& TPARG_FL_RETURN
) {
281 code
->op
= FETCH_OP_RETVAL
;
283 trace_probe_log_err(offs
, RETVAL_ON_PROBE
);
286 } else if ((len
= str_has_prefix(arg
, "stack"))) {
287 if (arg
[len
] == '\0') {
288 code
->op
= FETCH_OP_STACKP
;
289 } else if (isdigit(arg
[len
])) {
290 ret
= kstrtoul(arg
+ len
, 10, ¶m
);
293 } else if ((flags
& TPARG_FL_KERNEL
) &&
294 param
> PARAM_MAX_STACK
) {
295 trace_probe_log_err(offs
, BAD_STACK_NUM
);
298 code
->op
= FETCH_OP_STACK
;
299 code
->param
= (unsigned int)param
;
303 } else if (strcmp(arg
, "comm") == 0) {
304 code
->op
= FETCH_OP_COMM
;
305 #ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API
306 } else if (((flags
& TPARG_FL_MASK
) ==
307 (TPARG_FL_KERNEL
| TPARG_FL_FENTRY
)) &&
308 (len
= str_has_prefix(arg
, "arg"))) {
309 ret
= kstrtoul(arg
+ len
, 10, ¶m
);
312 } else if (!param
|| param
> PARAM_MAX_STACK
) {
313 trace_probe_log_err(offs
, BAD_ARG_NUM
);
316 code
->op
= FETCH_OP_ARG
;
317 code
->param
= (unsigned int)param
- 1;
325 trace_probe_log_err(offs
, BAD_VAR
);
329 static int str_to_immediate(char *str
, unsigned long *imm
)
332 return kstrtoul(str
, 0, imm
);
333 else if (str
[0] == '-')
334 return kstrtol(str
, 0, (long *)imm
);
335 else if (str
[0] == '+')
336 return kstrtol(str
+ 1, 0, (long *)imm
);
340 static int __parse_imm_string(char *str
, char **pbuf
, int offs
)
342 size_t len
= strlen(str
);
344 if (str
[len
- 1] != '"') {
345 trace_probe_log_err(offs
+ len
, IMMSTR_NO_CLOSE
);
348 *pbuf
= kstrndup(str
, len
- 1, GFP_KERNEL
);
352 /* Recursive argument parser */
354 parse_probe_arg(char *arg
, const struct fetch_type
*type
,
355 struct fetch_insn
**pcode
, struct fetch_insn
*end
,
356 unsigned int flags
, int offs
)
358 struct fetch_insn
*code
= *pcode
;
360 int deref
= FETCH_OP_DEREF
;
367 ret
= parse_probe_vars(arg
+ 1, type
, code
, flags
, offs
);
370 case '%': /* named register */
371 ret
= regs_query_register_offset(arg
+ 1);
373 code
->op
= FETCH_OP_REG
;
374 code
->param
= (unsigned int)ret
;
377 trace_probe_log_err(offs
, BAD_REG_NAME
);
380 case '@': /* memory, file-offset or symbol */
381 if (isdigit(arg
[1])) {
382 ret
= kstrtoul(arg
+ 1, 0, ¶m
);
384 trace_probe_log_err(offs
, BAD_MEM_ADDR
);
388 code
->op
= FETCH_OP_IMM
;
389 code
->immediate
= param
;
390 } else if (arg
[1] == '+') {
391 /* kprobes don't support file offsets */
392 if (flags
& TPARG_FL_KERNEL
) {
393 trace_probe_log_err(offs
, FILE_ON_KPROBE
);
396 ret
= kstrtol(arg
+ 2, 0, &offset
);
398 trace_probe_log_err(offs
, BAD_FILE_OFFS
);
402 code
->op
= FETCH_OP_FOFFS
;
403 code
->immediate
= (unsigned long)offset
; // imm64?
405 /* uprobes don't support symbols */
406 if (!(flags
& TPARG_FL_KERNEL
)) {
407 trace_probe_log_err(offs
, SYM_ON_UPROBE
);
410 /* Preserve symbol for updating */
411 code
->op
= FETCH_NOP_SYMBOL
;
412 code
->data
= kstrdup(arg
+ 1, GFP_KERNEL
);
416 trace_probe_log_err(offs
, TOO_MANY_OPS
);
419 code
->op
= FETCH_OP_IMM
;
422 /* These are fetching from memory */
424 trace_probe_log_err(offs
, TOO_MANY_OPS
);
428 code
->op
= FETCH_OP_DEREF
;
429 code
->offset
= offset
;
432 case '+': /* deref memory */
435 deref
= FETCH_OP_UDEREF
;
440 arg
++; /* Skip '+', because kstrtol() rejects it. */
441 tmp
= strchr(arg
, '(');
443 trace_probe_log_err(offs
, DEREF_NEED_BRACE
);
447 ret
= kstrtol(arg
, 0, &offset
);
449 trace_probe_log_err(offs
, BAD_DEREF_OFFS
);
452 offs
+= (tmp
+ 1 - arg
) + (arg
[0] != '-' ? 1 : 0);
454 tmp
= strrchr(arg
, ')');
456 trace_probe_log_err(offs
+ strlen(arg
),
460 const struct fetch_type
*t2
= find_fetch_type(NULL
);
463 ret
= parse_probe_arg(arg
, t2
, &code
, end
, flags
, offs
);
466 if (code
->op
== FETCH_OP_COMM
||
467 code
->op
== FETCH_OP_DATA
) {
468 trace_probe_log_err(offs
, COMM_CANT_DEREF
);
472 trace_probe_log_err(offs
, TOO_MANY_OPS
);
478 code
->offset
= offset
;
481 case '\\': /* Immediate value */
482 if (arg
[1] == '"') { /* Immediate string */
483 ret
= __parse_imm_string(arg
+ 2, &tmp
, offs
+ 2);
486 code
->op
= FETCH_OP_DATA
;
489 ret
= str_to_immediate(arg
+ 1, &code
->immediate
);
491 trace_probe_log_err(offs
+ 1, BAD_IMM
);
493 code
->op
= FETCH_OP_IMM
;
497 if (!ret
&& code
->op
== FETCH_OP_NOP
) {
498 /* Parsed, but do not find fetch method */
499 trace_probe_log_err(offs
, BAD_FETCH_ARG
);
505 #define BYTES_TO_BITS(nb) ((BITS_PER_LONG * (nb)) / sizeof(long))
507 /* Bitfield type needs to be parsed into a fetch function */
508 static int __parse_bitfield_probe_arg(const char *bf
,
509 const struct fetch_type
*t
,
510 struct fetch_insn
**pcode
)
512 struct fetch_insn
*code
= *pcode
;
513 unsigned long bw
, bo
;
519 bw
= simple_strtoul(bf
+ 1, &tail
, 0); /* Use simple one */
521 if (bw
== 0 || *tail
!= '@')
525 bo
= simple_strtoul(bf
, &tail
, 0);
527 if (tail
== bf
|| *tail
!= '/')
530 if (code
->op
!= FETCH_OP_NOP
)
534 code
->op
= FETCH_OP_MOD_BF
;
535 code
->lshift
= BYTES_TO_BITS(t
->size
) - (bw
+ bo
);
536 code
->rshift
= BYTES_TO_BITS(t
->size
) - bw
;
537 code
->basesize
= t
->size
;
539 return (BYTES_TO_BITS(t
->size
) < (bw
+ bo
)) ? -EINVAL
: 0;
542 /* String length checking wrapper */
543 static int traceprobe_parse_probe_arg_body(char *arg
, ssize_t
*size
,
544 struct probe_arg
*parg
, unsigned int flags
, int offset
)
546 struct fetch_insn
*code
, *scode
, *tmp
= NULL
;
551 if (len
> MAX_ARGSTR_LEN
) {
552 trace_probe_log_err(offset
, ARG_TOO_LONG
);
554 } else if (len
== 0) {
555 trace_probe_log_err(offset
, NO_ARG_BODY
);
559 parg
->comm
= kstrdup(arg
, GFP_KERNEL
);
563 t
= strchr(arg
, ':');
566 t2
= strchr(++t
, '[');
569 t3
= strchr(t2
, ']');
571 offset
+= t2
+ strlen(t2
) - arg
;
572 trace_probe_log_err(offset
,
575 } else if (t3
[1] != '\0') {
576 trace_probe_log_err(offset
+ t3
+ 1 - arg
,
581 if (kstrtouint(t2
, 0, &parg
->count
) || !parg
->count
) {
582 trace_probe_log_err(offset
+ t2
- arg
,
586 if (parg
->count
> MAX_ARRAY_LEN
) {
587 trace_probe_log_err(offset
+ t2
- arg
,
595 * Since $comm and immediate string can not be dereferred,
596 * we can find those by strcmp.
598 if (strcmp(arg
, "$comm") == 0 || strncmp(arg
, "\\\"", 2) == 0) {
599 /* The type of $comm must be "string", and not an array. */
600 if (parg
->count
|| (t
&& strcmp(t
, "string")))
602 parg
->type
= find_fetch_type("string");
604 parg
->type
= find_fetch_type(t
);
606 trace_probe_log_err(offset
+ (t
? (t
- arg
) : 0), BAD_TYPE
);
609 parg
->offset
= *size
;
610 *size
+= parg
->type
->size
* (parg
->count
?: 1);
613 len
= strlen(parg
->type
->fmttype
) + 6;
614 parg
->fmt
= kmalloc(len
, GFP_KERNEL
);
617 snprintf(parg
->fmt
, len
, "%s[%d]", parg
->type
->fmttype
,
621 code
= tmp
= kcalloc(FETCH_INSN_MAX
, sizeof(*code
), GFP_KERNEL
);
624 code
[FETCH_INSN_MAX
- 1].op
= FETCH_OP_END
;
626 ret
= parse_probe_arg(arg
, parg
->type
, &code
, &code
[FETCH_INSN_MAX
- 1],
631 /* Store operation */
632 if (!strcmp(parg
->type
->name
, "string") ||
633 !strcmp(parg
->type
->name
, "ustring")) {
634 if (code
->op
!= FETCH_OP_DEREF
&& code
->op
!= FETCH_OP_UDEREF
&&
635 code
->op
!= FETCH_OP_IMM
&& code
->op
!= FETCH_OP_COMM
&&
636 code
->op
!= FETCH_OP_DATA
) {
637 trace_probe_log_err(offset
+ (t
? (t
- arg
) : 0),
642 if ((code
->op
== FETCH_OP_IMM
|| code
->op
== FETCH_OP_COMM
) ||
645 * IMM, DATA and COMM is pointing actual address, those
646 * must be kept, and if parg->count != 0, this is an
647 * array of string pointers instead of string address
651 if (code
->op
!= FETCH_OP_NOP
) {
652 trace_probe_log_err(offset
, TOO_MANY_OPS
);
657 /* If op == DEREF, replace it with STRING */
658 if (!strcmp(parg
->type
->name
, "ustring") ||
659 code
->op
== FETCH_OP_UDEREF
)
660 code
->op
= FETCH_OP_ST_USTRING
;
662 code
->op
= FETCH_OP_ST_STRING
;
663 code
->size
= parg
->type
->size
;
664 parg
->dynamic
= true;
665 } else if (code
->op
== FETCH_OP_DEREF
) {
666 code
->op
= FETCH_OP_ST_MEM
;
667 code
->size
= parg
->type
->size
;
668 } else if (code
->op
== FETCH_OP_UDEREF
) {
669 code
->op
= FETCH_OP_ST_UMEM
;
670 code
->size
= parg
->type
->size
;
673 if (code
->op
!= FETCH_OP_NOP
) {
674 trace_probe_log_err(offset
, TOO_MANY_OPS
);
678 code
->op
= FETCH_OP_ST_RAW
;
679 code
->size
= parg
->type
->size
;
682 /* Modify operation */
684 ret
= __parse_bitfield_probe_arg(t
, parg
->type
, &code
);
686 trace_probe_log_err(offset
+ t
- arg
, BAD_BITFIELD
);
690 /* Loop(Array) operation */
692 if (scode
->op
!= FETCH_OP_ST_MEM
&&
693 scode
->op
!= FETCH_OP_ST_STRING
&&
694 scode
->op
!= FETCH_OP_ST_USTRING
) {
695 trace_probe_log_err(offset
+ (t
? (t
- arg
) : 0),
701 if (code
->op
!= FETCH_OP_NOP
) {
702 trace_probe_log_err(offset
, TOO_MANY_OPS
);
706 code
->op
= FETCH_OP_LP_ARRAY
;
707 code
->param
= parg
->count
;
710 code
->op
= FETCH_OP_END
;
712 /* Shrink down the code buffer */
713 parg
->code
= kcalloc(code
- tmp
+ 1, sizeof(*code
), GFP_KERNEL
);
717 memcpy(parg
->code
, tmp
, sizeof(*code
) * (code
- tmp
+ 1));
721 for (code
= tmp
; code
< tmp
+ FETCH_INSN_MAX
; code
++)
722 if (code
->op
== FETCH_NOP_SYMBOL
||
723 code
->op
== FETCH_OP_DATA
)
731 /* Return 1 if name is reserved or already used by another argument */
732 static int traceprobe_conflict_field_name(const char *name
,
733 struct probe_arg
*args
, int narg
)
737 for (i
= 0; i
< ARRAY_SIZE(reserved_field_names
); i
++)
738 if (strcmp(reserved_field_names
[i
], name
) == 0)
741 for (i
= 0; i
< narg
; i
++)
742 if (strcmp(args
[i
].name
, name
) == 0)
748 int traceprobe_parse_probe_arg(struct trace_probe
*tp
, int i
, char *arg
,
751 struct probe_arg
*parg
= &tp
->args
[i
];
754 /* Increment count for freeing args in error case */
757 body
= strchr(arg
, '=');
759 if (body
- arg
> MAX_ARG_NAME_LEN
) {
760 trace_probe_log_err(0, ARG_NAME_TOO_LONG
);
762 } else if (body
== arg
) {
763 trace_probe_log_err(0, NO_ARG_NAME
);
766 parg
->name
= kmemdup_nul(arg
, body
- arg
, GFP_KERNEL
);
769 /* If argument name is omitted, set "argN" */
770 parg
->name
= kasprintf(GFP_KERNEL
, "arg%d", i
+ 1);
776 if (!is_good_name(parg
->name
)) {
777 trace_probe_log_err(0, BAD_ARG_NAME
);
780 if (traceprobe_conflict_field_name(parg
->name
, tp
->args
, i
)) {
781 trace_probe_log_err(0, USED_ARG_NAME
);
784 /* Parse fetch argument */
785 return traceprobe_parse_probe_arg_body(body
, &tp
->size
, parg
, flags
,
789 void traceprobe_free_probe_arg(struct probe_arg
*arg
)
791 struct fetch_insn
*code
= arg
->code
;
793 while (code
&& code
->op
!= FETCH_OP_END
) {
794 if (code
->op
== FETCH_NOP_SYMBOL
||
795 code
->op
== FETCH_OP_DATA
)
805 int traceprobe_update_arg(struct probe_arg
*arg
)
807 struct fetch_insn
*code
= arg
->code
;
813 while (code
&& code
->op
!= FETCH_OP_END
) {
814 if (code
->op
== FETCH_NOP_SYMBOL
) {
815 if (code
[1].op
!= FETCH_OP_IMM
)
818 tmp
= strpbrk(code
->data
, "+-");
821 ret
= traceprobe_split_symbol_offset(code
->data
,
827 (unsigned long)kallsyms_lookup_name(code
->data
);
830 if (!code
[1].immediate
)
832 code
[1].immediate
+= offset
;
839 /* When len=0, we just calculate the needed length */
840 #define LEN_OR_ZERO (len ? len - pos : 0)
841 static int __set_print_fmt(struct trace_probe
*tp
, char *buf
, int len
,
844 struct probe_arg
*parg
;
847 const char *fmt
, *arg
;
851 arg
= "REC->" FIELD_STRING_IP
;
853 fmt
= "(%lx <- %lx)";
854 arg
= "REC->" FIELD_STRING_FUNC
", REC->" FIELD_STRING_RETIP
;
857 pos
+= snprintf(buf
+ pos
, LEN_OR_ZERO
, "\"%s", fmt
);
859 for (i
= 0; i
< tp
->nr_args
; i
++) {
861 pos
+= snprintf(buf
+ pos
, LEN_OR_ZERO
, " %s=", parg
->name
);
863 pos
+= snprintf(buf
+ pos
, LEN_OR_ZERO
, "{%s",
865 for (j
= 1; j
< parg
->count
; j
++)
866 pos
+= snprintf(buf
+ pos
, LEN_OR_ZERO
, ",%s",
868 pos
+= snprintf(buf
+ pos
, LEN_OR_ZERO
, "}");
870 pos
+= snprintf(buf
+ pos
, LEN_OR_ZERO
, "%s",
874 pos
+= snprintf(buf
+ pos
, LEN_OR_ZERO
, "\", %s", arg
);
876 for (i
= 0; i
< tp
->nr_args
; i
++) {
879 if ((strcmp(parg
->type
->name
, "string") == 0) ||
880 (strcmp(parg
->type
->name
, "ustring") == 0))
881 fmt
= ", __get_str(%s[%d])";
883 fmt
= ", REC->%s[%d]";
884 for (j
= 0; j
< parg
->count
; j
++)
885 pos
+= snprintf(buf
+ pos
, LEN_OR_ZERO
,
888 if ((strcmp(parg
->type
->name
, "string") == 0) ||
889 (strcmp(parg
->type
->name
, "ustring") == 0))
890 fmt
= ", __get_str(%s)";
893 pos
+= snprintf(buf
+ pos
, LEN_OR_ZERO
,
898 /* return the length of print_fmt */
903 int traceprobe_set_print_fmt(struct trace_probe
*tp
, bool is_return
)
905 struct trace_event_call
*call
= trace_probe_event_call(tp
);
909 /* First: called with 0 length to calculate the needed length */
910 len
= __set_print_fmt(tp
, NULL
, 0, is_return
);
911 print_fmt
= kmalloc(len
+ 1, GFP_KERNEL
);
915 /* Second: actually write the @print_fmt */
916 __set_print_fmt(tp
, print_fmt
, len
+ 1, is_return
);
917 call
->print_fmt
= print_fmt
;
922 int traceprobe_define_arg_fields(struct trace_event_call
*event_call
,
923 size_t offset
, struct trace_probe
*tp
)
927 /* Set argument names as fields */
928 for (i
= 0; i
< tp
->nr_args
; i
++) {
929 struct probe_arg
*parg
= &tp
->args
[i
];
930 const char *fmt
= parg
->type
->fmttype
;
931 int size
= parg
->type
->size
;
937 ret
= trace_define_field(event_call
, fmt
, parg
->name
,
938 offset
+ parg
->offset
, size
,
939 parg
->type
->is_signed
,
947 static void trace_probe_event_free(struct trace_probe_event
*tpe
)
949 kfree(tpe
->class.system
);
950 kfree(tpe
->call
.name
);
951 kfree(tpe
->call
.print_fmt
);
955 int trace_probe_append(struct trace_probe
*tp
, struct trace_probe
*to
)
957 if (trace_probe_has_sibling(tp
))
960 list_del_init(&tp
->list
);
961 trace_probe_event_free(tp
->event
);
963 tp
->event
= to
->event
;
964 list_add_tail(&tp
->list
, trace_probe_probe_list(to
));
969 void trace_probe_unlink(struct trace_probe
*tp
)
971 list_del_init(&tp
->list
);
972 if (list_empty(trace_probe_probe_list(tp
)))
973 trace_probe_event_free(tp
->event
);
977 void trace_probe_cleanup(struct trace_probe
*tp
)
981 for (i
= 0; i
< tp
->nr_args
; i
++)
982 traceprobe_free_probe_arg(&tp
->args
[i
]);
985 trace_probe_unlink(tp
);
988 int trace_probe_init(struct trace_probe
*tp
, const char *event
,
989 const char *group
, bool alloc_filter
)
991 struct trace_event_call
*call
;
992 size_t size
= sizeof(struct trace_probe_event
);
995 if (!event
|| !group
)
999 size
+= sizeof(struct trace_uprobe_filter
);
1001 tp
->event
= kzalloc(size
, GFP_KERNEL
);
1005 INIT_LIST_HEAD(&tp
->event
->files
);
1006 INIT_LIST_HEAD(&tp
->event
->class.fields
);
1007 INIT_LIST_HEAD(&tp
->event
->probes
);
1008 INIT_LIST_HEAD(&tp
->list
);
1009 list_add(&tp
->event
->probes
, &tp
->list
);
1011 call
= trace_probe_event_call(tp
);
1012 call
->class = &tp
->event
->class;
1013 call
->name
= kstrdup(event
, GFP_KERNEL
);
1019 tp
->event
->class.system
= kstrdup(group
, GFP_KERNEL
);
1020 if (!tp
->event
->class.system
) {
1028 trace_probe_cleanup(tp
);
1032 int trace_probe_register_event_call(struct trace_probe
*tp
)
1034 struct trace_event_call
*call
= trace_probe_event_call(tp
);
1037 ret
= register_trace_event(&call
->event
);
1041 ret
= trace_add_event_call(call
);
1043 unregister_trace_event(&call
->event
);
1048 int trace_probe_add_file(struct trace_probe
*tp
, struct trace_event_file
*file
)
1050 struct event_file_link
*link
;
1052 link
= kmalloc(sizeof(*link
), GFP_KERNEL
);
1057 INIT_LIST_HEAD(&link
->list
);
1058 list_add_tail_rcu(&link
->list
, &tp
->event
->files
);
1059 trace_probe_set_flag(tp
, TP_FLAG_TRACE
);
1063 struct event_file_link
*trace_probe_get_file_link(struct trace_probe
*tp
,
1064 struct trace_event_file
*file
)
1066 struct event_file_link
*link
;
1068 trace_probe_for_each_link(link
, tp
) {
1069 if (link
->file
== file
)
1076 int trace_probe_remove_file(struct trace_probe
*tp
,
1077 struct trace_event_file
*file
)
1079 struct event_file_link
*link
;
1081 link
= trace_probe_get_file_link(tp
, file
);
1085 list_del_rcu(&link
->list
);
1089 if (list_empty(&tp
->event
->files
))
1090 trace_probe_clear_flag(tp
, TP_FLAG_TRACE
);
1096 * Return the smallest index of different type argument (start from 1).
1097 * If all argument types and name are same, return 0.
1099 int trace_probe_compare_arg_type(struct trace_probe
*a
, struct trace_probe
*b
)
1103 /* In case of more arguments */
1104 if (a
->nr_args
< b
->nr_args
)
1105 return a
->nr_args
+ 1;
1106 if (a
->nr_args
> b
->nr_args
)
1107 return b
->nr_args
+ 1;
1109 for (i
= 0; i
< a
->nr_args
; i
++) {
1110 if ((b
->nr_args
<= i
) ||
1111 ((a
->args
[i
].type
!= b
->args
[i
].type
) ||
1112 (a
->args
[i
].count
!= b
->args
[i
].count
) ||
1113 strcmp(a
->args
[i
].name
, b
->args
[i
].name
)))
1120 bool trace_probe_match_command_args(struct trace_probe
*tp
,
1121 int argc
, const char **argv
)
1123 char buf
[MAX_ARGSTR_LEN
+ 1];
1126 if (tp
->nr_args
< argc
)
1129 for (i
= 0; i
< argc
; i
++) {
1130 snprintf(buf
, sizeof(buf
), "%s=%s",
1131 tp
->args
[i
].name
, tp
->args
[i
].comm
);
1132 if (strcmp(buf
, argv
[i
]))