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 /* Recalculate 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 * appears 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 slash = strchr(event, '.');
240 if (slash == event) {
241 trace_probe_log_err(offset, NO_GROUP_NAME);
244 if (slash - event + 1 > MAX_EVENT_NAME_LEN) {
245 trace_probe_log_err(offset, GROUP_TOO_LONG);
248 strlcpy(buf, event, slash - event + 1);
249 if (!is_good_name(buf)) {
250 trace_probe_log_err(offset, BAD_GROUP_NAME);
255 offset += slash - event + 1;
264 trace_probe_log_err(offset, NO_EVENT_NAME);
266 } else if (len > MAX_EVENT_NAME_LEN) {
267 trace_probe_log_err(offset, EVENT_TOO_LONG);
270 if (!is_good_name(event)) {
271 trace_probe_log_err(offset, BAD_EVENT_NAME);
277 #define PARAM_MAX_STACK (THREAD_SIZE / sizeof(unsigned long))
279 static int parse_probe_vars(char *arg, const struct fetch_type *t,
280 struct fetch_insn *code, unsigned int flags, int offs)
286 if (flags & TPARG_FL_TPOINT) {
289 code->data = kstrdup(arg, GFP_KERNEL);
292 code->op = FETCH_OP_TP_ARG;
293 } else if (strcmp(arg, "retval") == 0) {
294 if (flags & TPARG_FL_RETURN) {
295 code->op = FETCH_OP_RETVAL;
297 trace_probe_log_err(offs, RETVAL_ON_PROBE);
300 } else if ((len = str_has_prefix(arg, "stack"))) {
301 if (arg[len] == '\0') {
302 code->op = FETCH_OP_STACKP;
303 } else if (isdigit(arg[len])) {
304 ret = kstrtoul(arg + len, 10, ¶m);
307 } else if ((flags & TPARG_FL_KERNEL) &&
308 param > PARAM_MAX_STACK) {
309 trace_probe_log_err(offs, BAD_STACK_NUM);
312 code->op = FETCH_OP_STACK;
313 code->param = (unsigned int)param;
317 } else if (strcmp(arg, "comm") == 0 || strcmp(arg, "COMM") == 0) {
318 code->op = FETCH_OP_COMM;
319 #ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API
320 } else if (((flags & TPARG_FL_MASK) ==
321 (TPARG_FL_KERNEL | TPARG_FL_FENTRY)) &&
322 (len = str_has_prefix(arg, "arg"))) {
323 ret = kstrtoul(arg + len, 10, ¶m);
326 } else if (!param || param > PARAM_MAX_STACK) {
327 trace_probe_log_err(offs, BAD_ARG_NUM);
330 code->op = FETCH_OP_ARG;
331 code->param = (unsigned int)param - 1;
339 trace_probe_log_err(offs, BAD_VAR);
343 static int str_to_immediate(char *str, unsigned long *imm)
346 return kstrtoul(str, 0, imm);
347 else if (str[0] == '-')
348 return kstrtol(str, 0, (long *)imm);
349 else if (str[0] == '+')
350 return kstrtol(str + 1, 0, (long *)imm);
354 static int __parse_imm_string(char *str, char **pbuf, int offs)
356 size_t len = strlen(str);
358 if (str[len - 1] != '"') {
359 trace_probe_log_err(offs + len, IMMSTR_NO_CLOSE);
362 *pbuf = kstrndup(str, len - 1, GFP_KERNEL);
368 /* Recursive argument parser */
370 parse_probe_arg(char *arg, const struct fetch_type *type,
371 struct fetch_insn **pcode, struct fetch_insn *end,
372 unsigned int flags, int offs)
374 struct fetch_insn *code = *pcode;
376 int deref = FETCH_OP_DEREF;
383 ret = parse_probe_vars(arg + 1, type, code, flags, offs);
386 case '%': /* named register */
387 if (flags & TPARG_FL_TPOINT) {
388 /* eprobes do not handle registers */
389 trace_probe_log_err(offs, BAD_VAR);
392 ret = regs_query_register_offset(arg + 1);
394 code->op = FETCH_OP_REG;
395 code->param = (unsigned int)ret;
398 trace_probe_log_err(offs, BAD_REG_NAME);
401 case '@': /* memory, file-offset or symbol */
402 if (isdigit(arg[1])) {
403 ret = kstrtoul(arg + 1, 0, ¶m);
405 trace_probe_log_err(offs, BAD_MEM_ADDR);
409 code->op = FETCH_OP_IMM;
410 code->immediate = param;
411 } else if (arg[1] == '+') {
412 /* kprobes don't support file offsets */
413 if (flags & TPARG_FL_KERNEL) {
414 trace_probe_log_err(offs, FILE_ON_KPROBE);
417 ret = kstrtol(arg + 2, 0, &offset);
419 trace_probe_log_err(offs, BAD_FILE_OFFS);
423 code->op = FETCH_OP_FOFFS;
424 code->immediate = (unsigned long)offset; // imm64?
426 /* uprobes don't support symbols */
427 if (!(flags & TPARG_FL_KERNEL)) {
428 trace_probe_log_err(offs, SYM_ON_UPROBE);
431 /* Preserve symbol for updating */
432 code->op = FETCH_NOP_SYMBOL;
433 code->data = kstrdup(arg + 1, GFP_KERNEL);
437 trace_probe_log_err(offs, TOO_MANY_OPS);
440 code->op = FETCH_OP_IMM;
443 /* These are fetching from memory */
445 trace_probe_log_err(offs, TOO_MANY_OPS);
449 code->op = FETCH_OP_DEREF;
450 code->offset = offset;
453 case '+': /* deref memory */
456 deref = FETCH_OP_UDEREF;
461 arg++; /* Skip '+', because kstrtol() rejects it. */
462 tmp = strchr(arg, '(');
464 trace_probe_log_err(offs, DEREF_NEED_BRACE);
468 ret = kstrtol(arg, 0, &offset);
470 trace_probe_log_err(offs, BAD_DEREF_OFFS);
473 offs += (tmp + 1 - arg) + (arg[0] != '-' ? 1 : 0);
475 tmp = strrchr(arg, ')');
477 trace_probe_log_err(offs + strlen(arg),
481 const struct fetch_type *t2 = find_fetch_type(NULL);
484 ret = parse_probe_arg(arg, t2, &code, end, flags, offs);
487 if (code->op == FETCH_OP_COMM ||
488 code->op == FETCH_OP_DATA) {
489 trace_probe_log_err(offs, COMM_CANT_DEREF);
493 trace_probe_log_err(offs, TOO_MANY_OPS);
499 code->offset = offset;
502 case '\\': /* Immediate value */
503 if (arg[1] == '"') { /* Immediate string */
504 ret = __parse_imm_string(arg + 2, &tmp, offs + 2);
507 code->op = FETCH_OP_DATA;
510 ret = str_to_immediate(arg + 1, &code->immediate);
512 trace_probe_log_err(offs + 1, BAD_IMM);
514 code->op = FETCH_OP_IMM;
518 if (!ret && code->op == FETCH_OP_NOP) {
519 /* Parsed, but do not find fetch method */
520 trace_probe_log_err(offs, BAD_FETCH_ARG);
526 #define BYTES_TO_BITS(nb) ((BITS_PER_LONG * (nb)) / sizeof(long))
528 /* Bitfield type needs to be parsed into a fetch function */
529 static int __parse_bitfield_probe_arg(const char *bf,
530 const struct fetch_type *t,
531 struct fetch_insn **pcode)
533 struct fetch_insn *code = *pcode;
534 unsigned long bw, bo;
540 bw = simple_strtoul(bf + 1, &tail, 0); /* Use simple one */
542 if (bw == 0 || *tail != '@')
546 bo = simple_strtoul(bf, &tail, 0);
548 if (tail == bf || *tail != '/')
551 if (code->op != FETCH_OP_NOP)
555 code->op = FETCH_OP_MOD_BF;
556 code->lshift = BYTES_TO_BITS(t->size) - (bw + bo);
557 code->rshift = BYTES_TO_BITS(t->size) - bw;
558 code->basesize = t->size;
560 return (BYTES_TO_BITS(t->size) < (bw + bo)) ? -EINVAL : 0;
563 /* String length checking wrapper */
564 static int traceprobe_parse_probe_arg_body(const char *argv, ssize_t *size,
565 struct probe_arg *parg, unsigned int flags, int offset)
567 struct fetch_insn *code, *scode, *tmp = NULL;
572 arg = kstrdup(argv, GFP_KERNEL);
578 if (len > MAX_ARGSTR_LEN) {
579 trace_probe_log_err(offset, ARG_TOO_LONG);
581 } else if (len == 0) {
582 trace_probe_log_err(offset, NO_ARG_BODY);
587 parg->comm = kstrdup(arg, GFP_KERNEL);
592 t = strchr(arg, ':');
595 t2 = strchr(++t, '[');
598 t3 = strchr(t2, ']');
600 offset += t2 + strlen(t2) - arg;
601 trace_probe_log_err(offset,
604 } else if (t3[1] != '\0') {
605 trace_probe_log_err(offset + t3 + 1 - arg,
610 if (kstrtouint(t2, 0, &parg->count) || !parg->count) {
611 trace_probe_log_err(offset + t2 - arg,
615 if (parg->count > MAX_ARRAY_LEN) {
616 trace_probe_log_err(offset + t2 - arg,
624 * Since $comm and immediate string can not be dereferenced,
625 * we can find those by strcmp. But ignore for eprobes.
627 if (!(flags & TPARG_FL_TPOINT) &&
628 (strcmp(arg, "$comm") == 0 || strcmp(arg, "$COMM") == 0 ||
629 strncmp(arg, "\\\"", 2) == 0)) {
630 /* The type of $comm must be "string", and not an array. */
631 if (parg->count || (t && strcmp(t, "string")))
633 parg->type = find_fetch_type("string");
635 parg->type = find_fetch_type(t);
637 trace_probe_log_err(offset + (t ? (t - arg) : 0), BAD_TYPE);
640 parg->offset = *size;
641 *size += parg->type->size * (parg->count ?: 1);
645 len = strlen(parg->type->fmttype) + 6;
646 parg->fmt = kmalloc(len, GFP_KERNEL);
649 snprintf(parg->fmt, len, "%s[%d]", parg->type->fmttype,
653 code = tmp = kcalloc(FETCH_INSN_MAX, sizeof(*code), GFP_KERNEL);
656 code[FETCH_INSN_MAX - 1].op = FETCH_OP_END;
658 ret = parse_probe_arg(arg, parg->type, &code, &code[FETCH_INSN_MAX - 1],
664 /* Store operation */
665 if (!strcmp(parg->type->name, "string") ||
666 !strcmp(parg->type->name, "ustring")) {
667 if (code->op != FETCH_OP_DEREF && code->op != FETCH_OP_UDEREF &&
668 code->op != FETCH_OP_IMM && code->op != FETCH_OP_COMM &&
669 code->op != FETCH_OP_DATA && code->op != FETCH_OP_TP_ARG) {
670 trace_probe_log_err(offset + (t ? (t - arg) : 0),
674 if ((code->op == FETCH_OP_IMM || code->op == FETCH_OP_COMM ||
675 code->op == FETCH_OP_DATA) || code->op == FETCH_OP_TP_ARG ||
678 * IMM, DATA and COMM is pointing actual address, those
679 * must be kept, and if parg->count != 0, this is an
680 * array of string pointers instead of string address
684 if (code->op != FETCH_OP_NOP) {
685 trace_probe_log_err(offset, TOO_MANY_OPS);
689 /* If op == DEREF, replace it with STRING */
690 if (!strcmp(parg->type->name, "ustring") ||
691 code->op == FETCH_OP_UDEREF)
692 code->op = FETCH_OP_ST_USTRING;
694 code->op = FETCH_OP_ST_STRING;
695 code->size = parg->type->size;
696 parg->dynamic = true;
697 } else if (code->op == FETCH_OP_DEREF) {
698 code->op = FETCH_OP_ST_MEM;
699 code->size = parg->type->size;
700 } else if (code->op == FETCH_OP_UDEREF) {
701 code->op = FETCH_OP_ST_UMEM;
702 code->size = parg->type->size;
705 if (code->op != FETCH_OP_NOP) {
706 trace_probe_log_err(offset, TOO_MANY_OPS);
709 code->op = FETCH_OP_ST_RAW;
710 code->size = parg->type->size;
713 /* Modify operation */
715 ret = __parse_bitfield_probe_arg(t, parg->type, &code);
717 trace_probe_log_err(offset + t - arg, BAD_BITFIELD);
722 /* Loop(Array) operation */
724 if (scode->op != FETCH_OP_ST_MEM &&
725 scode->op != FETCH_OP_ST_STRING &&
726 scode->op != FETCH_OP_ST_USTRING) {
727 trace_probe_log_err(offset + (t ? (t - arg) : 0),
732 if (code->op != FETCH_OP_NOP) {
733 trace_probe_log_err(offset, TOO_MANY_OPS);
736 code->op = FETCH_OP_LP_ARRAY;
737 code->param = parg->count;
740 code->op = FETCH_OP_END;
743 /* Shrink down the code buffer */
744 parg->code = kcalloc(code - tmp + 1, sizeof(*code), GFP_KERNEL);
748 memcpy(parg->code, tmp, sizeof(*code) * (code - tmp + 1));
752 for (code = tmp; code < tmp + FETCH_INSN_MAX; code++)
753 if (code->op == FETCH_NOP_SYMBOL ||
754 code->op == FETCH_OP_DATA)
764 /* Return 1 if name is reserved or already used by another argument */
765 static int traceprobe_conflict_field_name(const char *name,
766 struct probe_arg *args, int narg)
770 for (i = 0; i < ARRAY_SIZE(reserved_field_names); i++)
771 if (strcmp(reserved_field_names[i], name) == 0)
774 for (i = 0; i < narg; i++)
775 if (strcmp(args[i].name, name) == 0)
781 int traceprobe_parse_probe_arg(struct trace_probe *tp, int i, const char *arg,
784 struct probe_arg *parg = &tp->args[i];
787 /* Increment count for freeing args in error case */
790 body = strchr(arg, '=');
792 if (body - arg > MAX_ARG_NAME_LEN) {
793 trace_probe_log_err(0, ARG_NAME_TOO_LONG);
795 } else if (body == arg) {
796 trace_probe_log_err(0, NO_ARG_NAME);
799 parg->name = kmemdup_nul(arg, body - arg, GFP_KERNEL);
802 /* If argument name is omitted, set "argN" */
803 parg->name = kasprintf(GFP_KERNEL, "arg%d", i + 1);
809 if (!is_good_name(parg->name)) {
810 trace_probe_log_err(0, BAD_ARG_NAME);
813 if (traceprobe_conflict_field_name(parg->name, tp->args, i)) {
814 trace_probe_log_err(0, USED_ARG_NAME);
817 /* Parse fetch argument */
818 return traceprobe_parse_probe_arg_body(body, &tp->size, parg, flags,
822 void traceprobe_free_probe_arg(struct probe_arg *arg)
824 struct fetch_insn *code = arg->code;
826 while (code && code->op != FETCH_OP_END) {
827 if (code->op == FETCH_NOP_SYMBOL ||
828 code->op == FETCH_OP_DATA)
838 int traceprobe_update_arg(struct probe_arg *arg)
840 struct fetch_insn *code = arg->code;
846 while (code && code->op != FETCH_OP_END) {
847 if (code->op == FETCH_NOP_SYMBOL) {
848 if (code[1].op != FETCH_OP_IMM)
851 tmp = strpbrk(code->data, "+-");
854 ret = traceprobe_split_symbol_offset(code->data,
860 (unsigned long)kallsyms_lookup_name(code->data);
863 if (!code[1].immediate)
865 code[1].immediate += offset;
872 /* When len=0, we just calculate the needed length */
873 #define LEN_OR_ZERO (len ? len - pos : 0)
874 static int __set_print_fmt(struct trace_probe *tp, char *buf, int len,
875 enum probe_print_type ptype)
877 struct probe_arg *parg;
880 const char *fmt, *arg;
883 case PROBE_PRINT_NORMAL:
885 arg = ", REC->" FIELD_STRING_IP;
887 case PROBE_PRINT_RETURN:
888 fmt = "(%lx <- %lx)";
889 arg = ", REC->" FIELD_STRING_FUNC ", REC->" FIELD_STRING_RETIP;
891 case PROBE_PRINT_EVENT:
900 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", fmt);
902 for (i = 0; i < tp->nr_args; i++) {
904 pos += snprintf(buf + pos, LEN_OR_ZERO, " %s=", parg->name);
906 pos += snprintf(buf + pos, LEN_OR_ZERO, "{%s",
908 for (j = 1; j < parg->count; j++)
909 pos += snprintf(buf + pos, LEN_OR_ZERO, ",%s",
911 pos += snprintf(buf + pos, LEN_OR_ZERO, "}");
913 pos += snprintf(buf + pos, LEN_OR_ZERO, "%s",
917 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", arg);
919 for (i = 0; i < tp->nr_args; i++) {
922 if ((strcmp(parg->type->name, "string") == 0) ||
923 (strcmp(parg->type->name, "ustring") == 0))
924 fmt = ", __get_str(%s[%d])";
926 fmt = ", REC->%s[%d]";
927 for (j = 0; j < parg->count; j++)
928 pos += snprintf(buf + pos, LEN_OR_ZERO,
931 if ((strcmp(parg->type->name, "string") == 0) ||
932 (strcmp(parg->type->name, "ustring") == 0))
933 fmt = ", __get_str(%s)";
936 pos += snprintf(buf + pos, LEN_OR_ZERO,
941 /* return the length of print_fmt */
946 int traceprobe_set_print_fmt(struct trace_probe *tp, enum probe_print_type ptype)
948 struct trace_event_call *call = trace_probe_event_call(tp);
952 /* First: called with 0 length to calculate the needed length */
953 len = __set_print_fmt(tp, NULL, 0, ptype);
954 print_fmt = kmalloc(len + 1, GFP_KERNEL);
958 /* Second: actually write the @print_fmt */
959 __set_print_fmt(tp, print_fmt, len + 1, ptype);
960 call->print_fmt = print_fmt;
965 int traceprobe_define_arg_fields(struct trace_event_call *event_call,
966 size_t offset, struct trace_probe *tp)
970 /* Set argument names as fields */
971 for (i = 0; i < tp->nr_args; i++) {
972 struct probe_arg *parg = &tp->args[i];
973 const char *fmt = parg->type->fmttype;
974 int size = parg->type->size;
980 ret = trace_define_field(event_call, fmt, parg->name,
981 offset + parg->offset, size,
982 parg->type->is_signed,
990 static void trace_probe_event_free(struct trace_probe_event *tpe)
992 kfree(tpe->class.system);
993 kfree(tpe->call.name);
994 kfree(tpe->call.print_fmt);
998 int trace_probe_append(struct trace_probe *tp, struct trace_probe *to)
1000 if (trace_probe_has_sibling(tp))
1003 list_del_init(&tp->list);
1004 trace_probe_event_free(tp->event);
1006 tp->event = to->event;
1007 list_add_tail(&tp->list, trace_probe_probe_list(to));
1012 void trace_probe_unlink(struct trace_probe *tp)
1014 list_del_init(&tp->list);
1015 if (list_empty(trace_probe_probe_list(tp)))
1016 trace_probe_event_free(tp->event);
1020 void trace_probe_cleanup(struct trace_probe *tp)
1024 for (i = 0; i < tp->nr_args; i++)
1025 traceprobe_free_probe_arg(&tp->args[i]);
1028 trace_probe_unlink(tp);
1031 int trace_probe_init(struct trace_probe *tp, const char *event,
1032 const char *group, bool alloc_filter)
1034 struct trace_event_call *call;
1035 size_t size = sizeof(struct trace_probe_event);
1038 if (!event || !group)
1042 size += sizeof(struct trace_uprobe_filter);
1044 tp->event = kzalloc(size, GFP_KERNEL);
1048 INIT_LIST_HEAD(&tp->event->files);
1049 INIT_LIST_HEAD(&tp->event->class.fields);
1050 INIT_LIST_HEAD(&tp->event->probes);
1051 INIT_LIST_HEAD(&tp->list);
1052 list_add(&tp->list, &tp->event->probes);
1054 call = trace_probe_event_call(tp);
1055 call->class = &tp->event->class;
1056 call->name = kstrdup(event, GFP_KERNEL);
1062 tp->event->class.system = kstrdup(group, GFP_KERNEL);
1063 if (!tp->event->class.system) {
1071 trace_probe_cleanup(tp);
1075 static struct trace_event_call *
1076 find_trace_event_call(const char *system, const char *event_name)
1078 struct trace_event_call *tp_event;
1081 list_for_each_entry(tp_event, &ftrace_events, list) {
1082 if (!tp_event->class->system ||
1083 strcmp(system, tp_event->class->system))
1085 name = trace_event_name(tp_event);
1086 if (!name || strcmp(event_name, name))
1094 int trace_probe_register_event_call(struct trace_probe *tp)
1096 struct trace_event_call *call = trace_probe_event_call(tp);
1099 lockdep_assert_held(&event_mutex);
1101 if (find_trace_event_call(trace_probe_group_name(tp),
1102 trace_probe_name(tp)))
1105 ret = register_trace_event(&call->event);
1109 ret = trace_add_event_call(call);
1111 unregister_trace_event(&call->event);
1116 int trace_probe_add_file(struct trace_probe *tp, struct trace_event_file *file)
1118 struct event_file_link *link;
1120 link = kmalloc(sizeof(*link), GFP_KERNEL);
1125 INIT_LIST_HEAD(&link->list);
1126 list_add_tail_rcu(&link->list, &tp->event->files);
1127 trace_probe_set_flag(tp, TP_FLAG_TRACE);
1131 struct event_file_link *trace_probe_get_file_link(struct trace_probe *tp,
1132 struct trace_event_file *file)
1134 struct event_file_link *link;
1136 trace_probe_for_each_link(link, tp) {
1137 if (link->file == file)
1144 int trace_probe_remove_file(struct trace_probe *tp,
1145 struct trace_event_file *file)
1147 struct event_file_link *link;
1149 link = trace_probe_get_file_link(tp, file);
1153 list_del_rcu(&link->list);
1156 if (list_empty(&tp->event->files))
1157 trace_probe_clear_flag(tp, TP_FLAG_TRACE);
1163 * Return the smallest index of different type argument (start from 1).
1164 * If all argument types and name are same, return 0.
1166 int trace_probe_compare_arg_type(struct trace_probe *a, struct trace_probe *b)
1170 /* In case of more arguments */
1171 if (a->nr_args < b->nr_args)
1172 return a->nr_args + 1;
1173 if (a->nr_args > b->nr_args)
1174 return b->nr_args + 1;
1176 for (i = 0; i < a->nr_args; i++) {
1177 if ((b->nr_args <= i) ||
1178 ((a->args[i].type != b->args[i].type) ||
1179 (a->args[i].count != b->args[i].count) ||
1180 strcmp(a->args[i].name, b->args[i].name)))
1187 bool trace_probe_match_command_args(struct trace_probe *tp,
1188 int argc, const char **argv)
1190 char buf[MAX_ARGSTR_LEN + 1];
1193 if (tp->nr_args < argc)
1196 for (i = 0; i < argc; i++) {
1197 snprintf(buf, sizeof(buf), "%s=%s",
1198 tp->args[i].name, tp->args[i].comm);
1199 if (strcmp(buf, argv[i]))
1205 int trace_probe_create(const char *raw_command, int (*createfn)(int, const char **))
1207 int argc = 0, ret = 0;
1210 argv = argv_split(GFP_KERNEL, raw_command, &argc);
1215 ret = createfn(argc, (const char **)argv);