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
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 (strcmp(arg, "retval") == 0) {
287 if (flags & TPARG_FL_RETURN) {
288 code->op = FETCH_OP_RETVAL;
290 trace_probe_log_err(offs, RETVAL_ON_PROBE);
293 } else if ((len = str_has_prefix(arg, "stack"))) {
294 if (arg[len] == '\0') {
295 code->op = FETCH_OP_STACKP;
296 } else if (isdigit(arg[len])) {
297 ret = kstrtoul(arg + len, 10, ¶m);
300 } else if ((flags & TPARG_FL_KERNEL) &&
301 param > PARAM_MAX_STACK) {
302 trace_probe_log_err(offs, BAD_STACK_NUM);
305 code->op = FETCH_OP_STACK;
306 code->param = (unsigned int)param;
310 } else if (strcmp(arg, "comm") == 0) {
311 code->op = FETCH_OP_COMM;
312 #ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API
313 } else if (((flags & TPARG_FL_MASK) ==
314 (TPARG_FL_KERNEL | TPARG_FL_FENTRY)) &&
315 (len = str_has_prefix(arg, "arg"))) {
316 ret = kstrtoul(arg + len, 10, ¶m);
319 } else if (!param || param > PARAM_MAX_STACK) {
320 trace_probe_log_err(offs, BAD_ARG_NUM);
323 code->op = FETCH_OP_ARG;
324 code->param = (unsigned int)param - 1;
326 } else if (flags & TPARG_FL_TPOINT) {
329 code->data = kstrdup(arg, GFP_KERNEL);
332 code->op = FETCH_OP_TP_ARG;
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 ret = regs_query_register_offset(arg + 1);
389 code->op = FETCH_OP_REG;
390 code->param = (unsigned int)ret;
393 trace_probe_log_err(offs, BAD_REG_NAME);
396 case '@': /* memory, file-offset or symbol */
397 if (isdigit(arg[1])) {
398 ret = kstrtoul(arg + 1, 0, ¶m);
400 trace_probe_log_err(offs, BAD_MEM_ADDR);
404 code->op = FETCH_OP_IMM;
405 code->immediate = param;
406 } else if (arg[1] == '+') {
407 /* kprobes don't support file offsets */
408 if (flags & TPARG_FL_KERNEL) {
409 trace_probe_log_err(offs, FILE_ON_KPROBE);
412 ret = kstrtol(arg + 2, 0, &offset);
414 trace_probe_log_err(offs, BAD_FILE_OFFS);
418 code->op = FETCH_OP_FOFFS;
419 code->immediate = (unsigned long)offset; // imm64?
421 /* uprobes don't support symbols */
422 if (!(flags & TPARG_FL_KERNEL)) {
423 trace_probe_log_err(offs, SYM_ON_UPROBE);
426 /* Preserve symbol for updating */
427 code->op = FETCH_NOP_SYMBOL;
428 code->data = kstrdup(arg + 1, GFP_KERNEL);
432 trace_probe_log_err(offs, TOO_MANY_OPS);
435 code->op = FETCH_OP_IMM;
438 /* These are fetching from memory */
440 trace_probe_log_err(offs, TOO_MANY_OPS);
444 code->op = FETCH_OP_DEREF;
445 code->offset = offset;
448 case '+': /* deref memory */
451 deref = FETCH_OP_UDEREF;
456 arg++; /* Skip '+', because kstrtol() rejects it. */
457 tmp = strchr(arg, '(');
459 trace_probe_log_err(offs, DEREF_NEED_BRACE);
463 ret = kstrtol(arg, 0, &offset);
465 trace_probe_log_err(offs, BAD_DEREF_OFFS);
468 offs += (tmp + 1 - arg) + (arg[0] != '-' ? 1 : 0);
470 tmp = strrchr(arg, ')');
472 trace_probe_log_err(offs + strlen(arg),
476 const struct fetch_type *t2 = find_fetch_type(NULL);
479 ret = parse_probe_arg(arg, t2, &code, end, flags, offs);
482 if (code->op == FETCH_OP_COMM ||
483 code->op == FETCH_OP_DATA) {
484 trace_probe_log_err(offs, COMM_CANT_DEREF);
488 trace_probe_log_err(offs, TOO_MANY_OPS);
494 code->offset = offset;
497 case '\\': /* Immediate value */
498 if (arg[1] == '"') { /* Immediate string */
499 ret = __parse_imm_string(arg + 2, &tmp, offs + 2);
502 code->op = FETCH_OP_DATA;
505 ret = str_to_immediate(arg + 1, &code->immediate);
507 trace_probe_log_err(offs + 1, BAD_IMM);
509 code->op = FETCH_OP_IMM;
513 if (!ret && code->op == FETCH_OP_NOP) {
514 /* Parsed, but do not find fetch method */
515 trace_probe_log_err(offs, BAD_FETCH_ARG);
521 #define BYTES_TO_BITS(nb) ((BITS_PER_LONG * (nb)) / sizeof(long))
523 /* Bitfield type needs to be parsed into a fetch function */
524 static int __parse_bitfield_probe_arg(const char *bf,
525 const struct fetch_type *t,
526 struct fetch_insn **pcode)
528 struct fetch_insn *code = *pcode;
529 unsigned long bw, bo;
535 bw = simple_strtoul(bf + 1, &tail, 0); /* Use simple one */
537 if (bw == 0 || *tail != '@')
541 bo = simple_strtoul(bf, &tail, 0);
543 if (tail == bf || *tail != '/')
546 if (code->op != FETCH_OP_NOP)
550 code->op = FETCH_OP_MOD_BF;
551 code->lshift = BYTES_TO_BITS(t->size) - (bw + bo);
552 code->rshift = BYTES_TO_BITS(t->size) - bw;
553 code->basesize = t->size;
555 return (BYTES_TO_BITS(t->size) < (bw + bo)) ? -EINVAL : 0;
558 /* String length checking wrapper */
559 static int traceprobe_parse_probe_arg_body(const char *argv, ssize_t *size,
560 struct probe_arg *parg, unsigned int flags, int offset)
562 struct fetch_insn *code, *scode, *tmp = NULL;
567 arg = kstrdup(argv, GFP_KERNEL);
573 if (len > MAX_ARGSTR_LEN) {
574 trace_probe_log_err(offset, ARG_TOO_LONG);
576 } else if (len == 0) {
577 trace_probe_log_err(offset, NO_ARG_BODY);
582 parg->comm = kstrdup(arg, GFP_KERNEL);
587 t = strchr(arg, ':');
590 t2 = strchr(++t, '[');
593 t3 = strchr(t2, ']');
595 offset += t2 + strlen(t2) - arg;
596 trace_probe_log_err(offset,
599 } else if (t3[1] != '\0') {
600 trace_probe_log_err(offset + t3 + 1 - arg,
605 if (kstrtouint(t2, 0, &parg->count) || !parg->count) {
606 trace_probe_log_err(offset + t2 - arg,
610 if (parg->count > MAX_ARRAY_LEN) {
611 trace_probe_log_err(offset + t2 - arg,
619 * Since $comm and immediate string can not be dereferenced,
620 * we can find those by strcmp.
622 if (strcmp(arg, "$comm") == 0 || strncmp(arg, "\\\"", 2) == 0) {
623 /* The type of $comm must be "string", and not an array. */
624 if (parg->count || (t && strcmp(t, "string")))
626 parg->type = find_fetch_type("string");
628 parg->type = find_fetch_type(t);
630 trace_probe_log_err(offset + (t ? (t - arg) : 0), BAD_TYPE);
633 parg->offset = *size;
634 *size += parg->type->size * (parg->count ?: 1);
638 len = strlen(parg->type->fmttype) + 6;
639 parg->fmt = kmalloc(len, GFP_KERNEL);
642 snprintf(parg->fmt, len, "%s[%d]", parg->type->fmttype,
646 code = tmp = kcalloc(FETCH_INSN_MAX, sizeof(*code), GFP_KERNEL);
649 code[FETCH_INSN_MAX - 1].op = FETCH_OP_END;
651 ret = parse_probe_arg(arg, parg->type, &code, &code[FETCH_INSN_MAX - 1],
657 /* Store operation */
658 if (!strcmp(parg->type->name, "string") ||
659 !strcmp(parg->type->name, "ustring")) {
660 if (code->op != FETCH_OP_DEREF && code->op != FETCH_OP_UDEREF &&
661 code->op != FETCH_OP_IMM && code->op != FETCH_OP_COMM &&
662 code->op != FETCH_OP_DATA && code->op != FETCH_OP_TP_ARG) {
663 trace_probe_log_err(offset + (t ? (t - arg) : 0),
667 if ((code->op == FETCH_OP_IMM || code->op == FETCH_OP_COMM ||
668 code->op == FETCH_OP_DATA) || code->op == FETCH_OP_TP_ARG ||
671 * IMM, DATA and COMM is pointing actual address, those
672 * must be kept, and if parg->count != 0, this is an
673 * array of string pointers instead of string address
677 if (code->op != FETCH_OP_NOP) {
678 trace_probe_log_err(offset, TOO_MANY_OPS);
682 /* If op == DEREF, replace it with STRING */
683 if (!strcmp(parg->type->name, "ustring") ||
684 code->op == FETCH_OP_UDEREF)
685 code->op = FETCH_OP_ST_USTRING;
687 code->op = FETCH_OP_ST_STRING;
688 code->size = parg->type->size;
689 parg->dynamic = true;
690 } else if (code->op == FETCH_OP_DEREF) {
691 code->op = FETCH_OP_ST_MEM;
692 code->size = parg->type->size;
693 } else if (code->op == FETCH_OP_UDEREF) {
694 code->op = FETCH_OP_ST_UMEM;
695 code->size = parg->type->size;
698 if (code->op != FETCH_OP_NOP) {
699 trace_probe_log_err(offset, TOO_MANY_OPS);
702 code->op = FETCH_OP_ST_RAW;
703 code->size = parg->type->size;
706 /* Modify operation */
708 ret = __parse_bitfield_probe_arg(t, parg->type, &code);
710 trace_probe_log_err(offset + t - arg, BAD_BITFIELD);
715 /* Loop(Array) operation */
717 if (scode->op != FETCH_OP_ST_MEM &&
718 scode->op != FETCH_OP_ST_STRING &&
719 scode->op != FETCH_OP_ST_USTRING) {
720 trace_probe_log_err(offset + (t ? (t - arg) : 0),
725 if (code->op != FETCH_OP_NOP) {
726 trace_probe_log_err(offset, TOO_MANY_OPS);
729 code->op = FETCH_OP_LP_ARRAY;
730 code->param = parg->count;
733 code->op = FETCH_OP_END;
736 /* Shrink down the code buffer */
737 parg->code = kcalloc(code - tmp + 1, sizeof(*code), GFP_KERNEL);
741 memcpy(parg->code, tmp, sizeof(*code) * (code - tmp + 1));
745 for (code = tmp; code < tmp + FETCH_INSN_MAX; code++)
746 if (code->op == FETCH_NOP_SYMBOL ||
747 code->op == FETCH_OP_DATA)
757 /* Return 1 if name is reserved or already used by another argument */
758 static int traceprobe_conflict_field_name(const char *name,
759 struct probe_arg *args, int narg)
763 for (i = 0; i < ARRAY_SIZE(reserved_field_names); i++)
764 if (strcmp(reserved_field_names[i], name) == 0)
767 for (i = 0; i < narg; i++)
768 if (strcmp(args[i].name, name) == 0)
774 int traceprobe_parse_probe_arg(struct trace_probe *tp, int i, const char *arg,
777 struct probe_arg *parg = &tp->args[i];
780 /* Increment count for freeing args in error case */
783 body = strchr(arg, '=');
785 if (body - arg > MAX_ARG_NAME_LEN) {
786 trace_probe_log_err(0, ARG_NAME_TOO_LONG);
788 } else if (body == arg) {
789 trace_probe_log_err(0, NO_ARG_NAME);
792 parg->name = kmemdup_nul(arg, body - arg, GFP_KERNEL);
795 /* If argument name is omitted, set "argN" */
796 parg->name = kasprintf(GFP_KERNEL, "arg%d", i + 1);
802 if (!is_good_name(parg->name)) {
803 trace_probe_log_err(0, BAD_ARG_NAME);
806 if (traceprobe_conflict_field_name(parg->name, tp->args, i)) {
807 trace_probe_log_err(0, USED_ARG_NAME);
810 /* Parse fetch argument */
811 return traceprobe_parse_probe_arg_body(body, &tp->size, parg, flags,
815 void traceprobe_free_probe_arg(struct probe_arg *arg)
817 struct fetch_insn *code = arg->code;
819 while (code && code->op != FETCH_OP_END) {
820 if (code->op == FETCH_NOP_SYMBOL ||
821 code->op == FETCH_OP_DATA)
831 int traceprobe_update_arg(struct probe_arg *arg)
833 struct fetch_insn *code = arg->code;
839 while (code && code->op != FETCH_OP_END) {
840 if (code->op == FETCH_NOP_SYMBOL) {
841 if (code[1].op != FETCH_OP_IMM)
844 tmp = strpbrk(code->data, "+-");
847 ret = traceprobe_split_symbol_offset(code->data,
853 (unsigned long)kallsyms_lookup_name(code->data);
856 if (!code[1].immediate)
858 code[1].immediate += offset;
865 /* When len=0, we just calculate the needed length */
866 #define LEN_OR_ZERO (len ? len - pos : 0)
867 static int __set_print_fmt(struct trace_probe *tp, char *buf, int len,
868 enum probe_print_type ptype)
870 struct probe_arg *parg;
873 const char *fmt, *arg;
876 case PROBE_PRINT_NORMAL:
878 arg = ", REC->" FIELD_STRING_IP;
880 case PROBE_PRINT_RETURN:
881 fmt = "(%lx <- %lx)";
882 arg = ", REC->" FIELD_STRING_FUNC ", REC->" FIELD_STRING_RETIP;
884 case PROBE_PRINT_EVENT:
893 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", fmt);
895 for (i = 0; i < tp->nr_args; i++) {
897 pos += snprintf(buf + pos, LEN_OR_ZERO, " %s=", parg->name);
899 pos += snprintf(buf + pos, LEN_OR_ZERO, "{%s",
901 for (j = 1; j < parg->count; j++)
902 pos += snprintf(buf + pos, LEN_OR_ZERO, ",%s",
904 pos += snprintf(buf + pos, LEN_OR_ZERO, "}");
906 pos += snprintf(buf + pos, LEN_OR_ZERO, "%s",
910 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", arg);
912 for (i = 0; i < tp->nr_args; i++) {
915 if ((strcmp(parg->type->name, "string") == 0) ||
916 (strcmp(parg->type->name, "ustring") == 0))
917 fmt = ", __get_str(%s[%d])";
919 fmt = ", REC->%s[%d]";
920 for (j = 0; j < parg->count; j++)
921 pos += snprintf(buf + pos, LEN_OR_ZERO,
924 if ((strcmp(parg->type->name, "string") == 0) ||
925 (strcmp(parg->type->name, "ustring") == 0))
926 fmt = ", __get_str(%s)";
929 pos += snprintf(buf + pos, LEN_OR_ZERO,
934 /* return the length of print_fmt */
939 int traceprobe_set_print_fmt(struct trace_probe *tp, enum probe_print_type ptype)
941 struct trace_event_call *call = trace_probe_event_call(tp);
945 /* First: called with 0 length to calculate the needed length */
946 len = __set_print_fmt(tp, NULL, 0, ptype);
947 print_fmt = kmalloc(len + 1, GFP_KERNEL);
951 /* Second: actually write the @print_fmt */
952 __set_print_fmt(tp, print_fmt, len + 1, ptype);
953 call->print_fmt = print_fmt;
958 int traceprobe_define_arg_fields(struct trace_event_call *event_call,
959 size_t offset, struct trace_probe *tp)
963 /* Set argument names as fields */
964 for (i = 0; i < tp->nr_args; i++) {
965 struct probe_arg *parg = &tp->args[i];
966 const char *fmt = parg->type->fmttype;
967 int size = parg->type->size;
973 ret = trace_define_field(event_call, fmt, parg->name,
974 offset + parg->offset, size,
975 parg->type->is_signed,
983 static void trace_probe_event_free(struct trace_probe_event *tpe)
985 kfree(tpe->class.system);
986 kfree(tpe->call.name);
987 kfree(tpe->call.print_fmt);
991 int trace_probe_append(struct trace_probe *tp, struct trace_probe *to)
993 if (trace_probe_has_sibling(tp))
996 list_del_init(&tp->list);
997 trace_probe_event_free(tp->event);
999 tp->event = to->event;
1000 list_add_tail(&tp->list, trace_probe_probe_list(to));
1005 void trace_probe_unlink(struct trace_probe *tp)
1007 list_del_init(&tp->list);
1008 if (list_empty(trace_probe_probe_list(tp)))
1009 trace_probe_event_free(tp->event);
1013 void trace_probe_cleanup(struct trace_probe *tp)
1017 for (i = 0; i < tp->nr_args; i++)
1018 traceprobe_free_probe_arg(&tp->args[i]);
1021 trace_probe_unlink(tp);
1024 int trace_probe_init(struct trace_probe *tp, const char *event,
1025 const char *group, bool alloc_filter)
1027 struct trace_event_call *call;
1028 size_t size = sizeof(struct trace_probe_event);
1031 if (!event || !group)
1035 size += sizeof(struct trace_uprobe_filter);
1037 tp->event = kzalloc(size, GFP_KERNEL);
1041 INIT_LIST_HEAD(&tp->event->files);
1042 INIT_LIST_HEAD(&tp->event->class.fields);
1043 INIT_LIST_HEAD(&tp->event->probes);
1044 INIT_LIST_HEAD(&tp->list);
1045 list_add(&tp->list, &tp->event->probes);
1047 call = trace_probe_event_call(tp);
1048 call->class = &tp->event->class;
1049 call->name = kstrdup(event, GFP_KERNEL);
1055 tp->event->class.system = kstrdup(group, GFP_KERNEL);
1056 if (!tp->event->class.system) {
1064 trace_probe_cleanup(tp);
1068 static struct trace_event_call *
1069 find_trace_event_call(const char *system, const char *event_name)
1071 struct trace_event_call *tp_event;
1074 list_for_each_entry(tp_event, &ftrace_events, list) {
1075 if (!tp_event->class->system ||
1076 strcmp(system, tp_event->class->system))
1078 name = trace_event_name(tp_event);
1079 if (!name || strcmp(event_name, name))
1087 int trace_probe_register_event_call(struct trace_probe *tp)
1089 struct trace_event_call *call = trace_probe_event_call(tp);
1092 lockdep_assert_held(&event_mutex);
1094 if (find_trace_event_call(trace_probe_group_name(tp),
1095 trace_probe_name(tp)))
1098 ret = register_trace_event(&call->event);
1102 ret = trace_add_event_call(call);
1104 unregister_trace_event(&call->event);
1109 int trace_probe_add_file(struct trace_probe *tp, struct trace_event_file *file)
1111 struct event_file_link *link;
1113 link = kmalloc(sizeof(*link), GFP_KERNEL);
1118 INIT_LIST_HEAD(&link->list);
1119 list_add_tail_rcu(&link->list, &tp->event->files);
1120 trace_probe_set_flag(tp, TP_FLAG_TRACE);
1124 struct event_file_link *trace_probe_get_file_link(struct trace_probe *tp,
1125 struct trace_event_file *file)
1127 struct event_file_link *link;
1129 trace_probe_for_each_link(link, tp) {
1130 if (link->file == file)
1137 int trace_probe_remove_file(struct trace_probe *tp,
1138 struct trace_event_file *file)
1140 struct event_file_link *link;
1142 link = trace_probe_get_file_link(tp, file);
1146 list_del_rcu(&link->list);
1149 if (list_empty(&tp->event->files))
1150 trace_probe_clear_flag(tp, TP_FLAG_TRACE);
1156 * Return the smallest index of different type argument (start from 1).
1157 * If all argument types and name are same, return 0.
1159 int trace_probe_compare_arg_type(struct trace_probe *a, struct trace_probe *b)
1163 /* In case of more arguments */
1164 if (a->nr_args < b->nr_args)
1165 return a->nr_args + 1;
1166 if (a->nr_args > b->nr_args)
1167 return b->nr_args + 1;
1169 for (i = 0; i < a->nr_args; i++) {
1170 if ((b->nr_args <= i) ||
1171 ((a->args[i].type != b->args[i].type) ||
1172 (a->args[i].count != b->args[i].count) ||
1173 strcmp(a->args[i].name, b->args[i].name)))
1180 bool trace_probe_match_command_args(struct trace_probe *tp,
1181 int argc, const char **argv)
1183 char buf[MAX_ARGSTR_LEN + 1];
1186 if (tp->nr_args < argc)
1189 for (i = 0; i < argc; i++) {
1190 snprintf(buf, sizeof(buf), "%s=%s",
1191 tp->args[i].name, tp->args[i].comm);
1192 if (strcmp(buf, argv[i]))
1198 int trace_probe_create(const char *raw_command, int (*createfn)(int, const char **))
1200 int argc = 0, ret = 0;
1203 argv = argv_split(GFP_KERNEL, raw_command, &argc);
1208 ret = createfn(argc, (const char **)argv);