Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Common code for probe-based Dynamic events.
4 *
5 * This code was copied from kernel/trace/trace_kprobe.c written by
6 * Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
7 *
8 * Updates to make this generic:
9 * Copyright (C) IBM Corporation, 2010-2011
10 * Author: Srikar Dronamraju
11 */
12#define pr_fmt(fmt) "trace_probe: " fmt
13
14#include "trace_probe.h"
15
16#undef C
17#define C(a, b) b
18
19static const char *trace_probe_err_text[] = { ERRORS };
20
21static const char *reserved_field_names[] = {
22 "common_type",
23 "common_flags",
24 "common_preempt_count",
25 "common_pid",
26 "common_tgid",
27 FIELD_STRING_IP,
28 FIELD_STRING_RETIP,
29 FIELD_STRING_FUNC,
30};
31
32/* Printing in basic type function template */
33#define DEFINE_BASIC_PRINT_TYPE_FUNC(tname, type, fmt) \
34int PRINT_TYPE_FUNC_NAME(tname)(struct trace_seq *s, void *data, void *ent)\
35{ \
36 trace_seq_printf(s, fmt, *(type *)data); \
37 return !trace_seq_has_overflowed(s); \
38} \
39const char PRINT_TYPE_FMT_NAME(tname)[] = fmt;
40
41DEFINE_BASIC_PRINT_TYPE_FUNC(u8, u8, "%u")
42DEFINE_BASIC_PRINT_TYPE_FUNC(u16, u16, "%u")
43DEFINE_BASIC_PRINT_TYPE_FUNC(u32, u32, "%u")
44DEFINE_BASIC_PRINT_TYPE_FUNC(u64, u64, "%Lu")
45DEFINE_BASIC_PRINT_TYPE_FUNC(s8, s8, "%d")
46DEFINE_BASIC_PRINT_TYPE_FUNC(s16, s16, "%d")
47DEFINE_BASIC_PRINT_TYPE_FUNC(s32, s32, "%d")
48DEFINE_BASIC_PRINT_TYPE_FUNC(s64, s64, "%Ld")
49DEFINE_BASIC_PRINT_TYPE_FUNC(x8, u8, "0x%x")
50DEFINE_BASIC_PRINT_TYPE_FUNC(x16, u16, "0x%x")
51DEFINE_BASIC_PRINT_TYPE_FUNC(x32, u32, "0x%x")
52DEFINE_BASIC_PRINT_TYPE_FUNC(x64, u64, "0x%Lx")
53
54int PRINT_TYPE_FUNC_NAME(symbol)(struct trace_seq *s, void *data, void *ent)
55{
56 trace_seq_printf(s, "%pS", (void *)*(unsigned long *)data);
57 return !trace_seq_has_overflowed(s);
58}
59const char PRINT_TYPE_FMT_NAME(symbol)[] = "%pS";
60
61/* Print type function for string type */
62int PRINT_TYPE_FUNC_NAME(string)(struct trace_seq *s, void *data, void *ent)
63{
64 int len = *(u32 *)data >> 16;
65
66 if (!len)
67 trace_seq_puts(s, "(fault)");
68 else
69 trace_seq_printf(s, "\"%s\"",
70 (const char *)get_loc_data(data, ent));
71 return !trace_seq_has_overflowed(s);
72}
73
74const char PRINT_TYPE_FMT_NAME(string)[] = "\\\"%s\\\"";
75
76/* Fetch type information table */
77static const struct fetch_type probe_fetch_types[] = {
78 /* Special types */
79 __ASSIGN_FETCH_TYPE("string", string, string, sizeof(u32), 1, 1,
80 "__data_loc char[]"),
81 __ASSIGN_FETCH_TYPE("ustring", string, string, sizeof(u32), 1, 1,
82 "__data_loc char[]"),
83 __ASSIGN_FETCH_TYPE("symstr", string, string, sizeof(u32), 1, 1,
84 "__data_loc char[]"),
85 /* Basic types */
86 ASSIGN_FETCH_TYPE(u8, u8, 0),
87 ASSIGN_FETCH_TYPE(u16, u16, 0),
88 ASSIGN_FETCH_TYPE(u32, u32, 0),
89 ASSIGN_FETCH_TYPE(u64, u64, 0),
90 ASSIGN_FETCH_TYPE(s8, u8, 1),
91 ASSIGN_FETCH_TYPE(s16, u16, 1),
92 ASSIGN_FETCH_TYPE(s32, u32, 1),
93 ASSIGN_FETCH_TYPE(s64, u64, 1),
94 ASSIGN_FETCH_TYPE_ALIAS(x8, u8, u8, 0),
95 ASSIGN_FETCH_TYPE_ALIAS(x16, u16, u16, 0),
96 ASSIGN_FETCH_TYPE_ALIAS(x32, u32, u32, 0),
97 ASSIGN_FETCH_TYPE_ALIAS(x64, u64, u64, 0),
98 ASSIGN_FETCH_TYPE_ALIAS(symbol, ADDR_FETCH_TYPE, ADDR_FETCH_TYPE, 0),
99
100 ASSIGN_FETCH_TYPE_END
101};
102
103static const struct fetch_type *find_fetch_type(const char *type, unsigned long flags)
104{
105 int i;
106
107 /* Reject the symbol/symstr for uprobes */
108 if (type && (flags & TPARG_FL_USER) &&
109 (!strcmp(type, "symbol") || !strcmp(type, "symstr")))
110 return NULL;
111
112 if (!type)
113 type = DEFAULT_FETCH_TYPE_STR;
114
115 /* Special case: bitfield */
116 if (*type == 'b') {
117 unsigned long bs;
118
119 type = strchr(type, '/');
120 if (!type)
121 goto fail;
122
123 type++;
124 if (kstrtoul(type, 0, &bs))
125 goto fail;
126
127 switch (bs) {
128 case 8:
129 return find_fetch_type("u8", flags);
130 case 16:
131 return find_fetch_type("u16", flags);
132 case 32:
133 return find_fetch_type("u32", flags);
134 case 64:
135 return find_fetch_type("u64", flags);
136 default:
137 goto fail;
138 }
139 }
140
141 for (i = 0; probe_fetch_types[i].name; i++) {
142 if (strcmp(type, probe_fetch_types[i].name) == 0)
143 return &probe_fetch_types[i];
144 }
145
146fail:
147 return NULL;
148}
149
150static struct trace_probe_log trace_probe_log;
151
152void trace_probe_log_init(const char *subsystem, int argc, const char **argv)
153{
154 trace_probe_log.subsystem = subsystem;
155 trace_probe_log.argc = argc;
156 trace_probe_log.argv = argv;
157 trace_probe_log.index = 0;
158}
159
160void trace_probe_log_clear(void)
161{
162 memset(&trace_probe_log, 0, sizeof(trace_probe_log));
163}
164
165void trace_probe_log_set_index(int index)
166{
167 trace_probe_log.index = index;
168}
169
170void __trace_probe_log_err(int offset, int err_type)
171{
172 char *command, *p;
173 int i, len = 0, pos = 0;
174
175 if (!trace_probe_log.argv)
176 return;
177
178 /* Recalculate the length and allocate buffer */
179 for (i = 0; i < trace_probe_log.argc; i++) {
180 if (i == trace_probe_log.index)
181 pos = len;
182 len += strlen(trace_probe_log.argv[i]) + 1;
183 }
184 command = kzalloc(len, GFP_KERNEL);
185 if (!command)
186 return;
187
188 if (trace_probe_log.index >= trace_probe_log.argc) {
189 /**
190 * Set the error position is next to the last arg + space.
191 * Note that len includes the terminal null and the cursor
192 * appears at pos + 1.
193 */
194 pos = len;
195 offset = 0;
196 }
197
198 /* And make a command string from argv array */
199 p = command;
200 for (i = 0; i < trace_probe_log.argc; i++) {
201 len = strlen(trace_probe_log.argv[i]);
202 strcpy(p, trace_probe_log.argv[i]);
203 p[len] = ' ';
204 p += len + 1;
205 }
206 *(p - 1) = '\0';
207
208 tracing_log_err(NULL, trace_probe_log.subsystem, command,
209 trace_probe_err_text, err_type, pos + offset);
210
211 kfree(command);
212}
213
214/* Split symbol and offset. */
215int traceprobe_split_symbol_offset(char *symbol, long *offset)
216{
217 char *tmp;
218 int ret;
219
220 if (!offset)
221 return -EINVAL;
222
223 tmp = strpbrk(symbol, "+-");
224 if (tmp) {
225 ret = kstrtol(tmp, 0, offset);
226 if (ret)
227 return ret;
228 *tmp = '\0';
229 } else
230 *offset = 0;
231
232 return 0;
233}
234
235/* @buf must has MAX_EVENT_NAME_LEN size */
236int traceprobe_parse_event_name(const char **pevent, const char **pgroup,
237 char *buf, int offset)
238{
239 const char *slash, *event = *pevent;
240 int len;
241
242 slash = strchr(event, '/');
243 if (!slash)
244 slash = strchr(event, '.');
245
246 if (slash) {
247 if (slash == event) {
248 trace_probe_log_err(offset, NO_GROUP_NAME);
249 return -EINVAL;
250 }
251 if (slash - event + 1 > MAX_EVENT_NAME_LEN) {
252 trace_probe_log_err(offset, GROUP_TOO_LONG);
253 return -EINVAL;
254 }
255 strlcpy(buf, event, slash - event + 1);
256 if (!is_good_system_name(buf)) {
257 trace_probe_log_err(offset, BAD_GROUP_NAME);
258 return -EINVAL;
259 }
260 *pgroup = buf;
261 *pevent = slash + 1;
262 offset += slash - event + 1;
263 event = *pevent;
264 }
265 len = strlen(event);
266 if (len == 0) {
267 if (slash) {
268 *pevent = NULL;
269 return 0;
270 }
271 trace_probe_log_err(offset, NO_EVENT_NAME);
272 return -EINVAL;
273 } else if (len > MAX_EVENT_NAME_LEN) {
274 trace_probe_log_err(offset, EVENT_TOO_LONG);
275 return -EINVAL;
276 }
277 if (!is_good_name(event)) {
278 trace_probe_log_err(offset, BAD_EVENT_NAME);
279 return -EINVAL;
280 }
281 return 0;
282}
283
284#define PARAM_MAX_STACK (THREAD_SIZE / sizeof(unsigned long))
285
286static int parse_probe_vars(char *arg, const struct fetch_type *t,
287 struct fetch_insn *code, unsigned int flags, int offs)
288{
289 unsigned long param;
290 int ret = 0;
291 int len;
292
293 if (flags & TPARG_FL_TPOINT) {
294 if (code->data)
295 return -EFAULT;
296 code->data = kstrdup(arg, GFP_KERNEL);
297 if (!code->data)
298 return -ENOMEM;
299 code->op = FETCH_OP_TP_ARG;
300 } else if (strcmp(arg, "retval") == 0) {
301 if (flags & TPARG_FL_RETURN) {
302 code->op = FETCH_OP_RETVAL;
303 } else {
304 trace_probe_log_err(offs, RETVAL_ON_PROBE);
305 ret = -EINVAL;
306 }
307 } else if ((len = str_has_prefix(arg, "stack"))) {
308 if (arg[len] == '\0') {
309 code->op = FETCH_OP_STACKP;
310 } else if (isdigit(arg[len])) {
311 ret = kstrtoul(arg + len, 10, ¶m);
312 if (ret) {
313 goto inval_var;
314 } else if ((flags & TPARG_FL_KERNEL) &&
315 param > PARAM_MAX_STACK) {
316 trace_probe_log_err(offs, BAD_STACK_NUM);
317 ret = -EINVAL;
318 } else {
319 code->op = FETCH_OP_STACK;
320 code->param = (unsigned int)param;
321 }
322 } else
323 goto inval_var;
324 } else if (strcmp(arg, "comm") == 0 || strcmp(arg, "COMM") == 0) {
325 code->op = FETCH_OP_COMM;
326#ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API
327 } else if (((flags & TPARG_FL_MASK) ==
328 (TPARG_FL_KERNEL | TPARG_FL_FENTRY)) &&
329 (len = str_has_prefix(arg, "arg"))) {
330 ret = kstrtoul(arg + len, 10, ¶m);
331 if (ret) {
332 goto inval_var;
333 } else if (!param || param > PARAM_MAX_STACK) {
334 trace_probe_log_err(offs, BAD_ARG_NUM);
335 return -EINVAL;
336 }
337 code->op = FETCH_OP_ARG;
338 code->param = (unsigned int)param - 1;
339#endif
340 } else
341 goto inval_var;
342
343 return ret;
344
345inval_var:
346 trace_probe_log_err(offs, BAD_VAR);
347 return -EINVAL;
348}
349
350static int str_to_immediate(char *str, unsigned long *imm)
351{
352 if (isdigit(str[0]))
353 return kstrtoul(str, 0, imm);
354 else if (str[0] == '-')
355 return kstrtol(str, 0, (long *)imm);
356 else if (str[0] == '+')
357 return kstrtol(str + 1, 0, (long *)imm);
358 return -EINVAL;
359}
360
361static int __parse_imm_string(char *str, char **pbuf, int offs)
362{
363 size_t len = strlen(str);
364
365 if (str[len - 1] != '"') {
366 trace_probe_log_err(offs + len, IMMSTR_NO_CLOSE);
367 return -EINVAL;
368 }
369 *pbuf = kstrndup(str, len - 1, GFP_KERNEL);
370 if (!*pbuf)
371 return -ENOMEM;
372 return 0;
373}
374
375/* Recursive argument parser */
376static int
377parse_probe_arg(char *arg, const struct fetch_type *type,
378 struct fetch_insn **pcode, struct fetch_insn *end,
379 unsigned int flags, int offs)
380{
381 struct fetch_insn *code = *pcode;
382 unsigned long param;
383 int deref = FETCH_OP_DEREF;
384 long offset = 0;
385 char *tmp;
386 int ret = 0;
387
388 switch (arg[0]) {
389 case '$':
390 ret = parse_probe_vars(arg + 1, type, code, flags, offs);
391 break;
392
393 case '%': /* named register */
394 if (flags & TPARG_FL_TPOINT) {
395 /* eprobes do not handle registers */
396 trace_probe_log_err(offs, BAD_VAR);
397 break;
398 }
399 ret = regs_query_register_offset(arg + 1);
400 if (ret >= 0) {
401 code->op = FETCH_OP_REG;
402 code->param = (unsigned int)ret;
403 ret = 0;
404 } else
405 trace_probe_log_err(offs, BAD_REG_NAME);
406 break;
407
408 case '@': /* memory, file-offset or symbol */
409 if (isdigit(arg[1])) {
410 ret = kstrtoul(arg + 1, 0, ¶m);
411 if (ret) {
412 trace_probe_log_err(offs, BAD_MEM_ADDR);
413 break;
414 }
415 /* load address */
416 code->op = FETCH_OP_IMM;
417 code->immediate = param;
418 } else if (arg[1] == '+') {
419 /* kprobes don't support file offsets */
420 if (flags & TPARG_FL_KERNEL) {
421 trace_probe_log_err(offs, FILE_ON_KPROBE);
422 return -EINVAL;
423 }
424 ret = kstrtol(arg + 2, 0, &offset);
425 if (ret) {
426 trace_probe_log_err(offs, BAD_FILE_OFFS);
427 break;
428 }
429
430 code->op = FETCH_OP_FOFFS;
431 code->immediate = (unsigned long)offset; // imm64?
432 } else {
433 /* uprobes don't support symbols */
434 if (!(flags & TPARG_FL_KERNEL)) {
435 trace_probe_log_err(offs, SYM_ON_UPROBE);
436 return -EINVAL;
437 }
438 /* Preserve symbol for updating */
439 code->op = FETCH_NOP_SYMBOL;
440 code->data = kstrdup(arg + 1, GFP_KERNEL);
441 if (!code->data)
442 return -ENOMEM;
443 if (++code == end) {
444 trace_probe_log_err(offs, TOO_MANY_OPS);
445 return -EINVAL;
446 }
447 code->op = FETCH_OP_IMM;
448 code->immediate = 0;
449 }
450 /* These are fetching from memory */
451 if (++code == end) {
452 trace_probe_log_err(offs, TOO_MANY_OPS);
453 return -EINVAL;
454 }
455 *pcode = code;
456 code->op = FETCH_OP_DEREF;
457 code->offset = offset;
458 break;
459
460 case '+': /* deref memory */
461 case '-':
462 if (arg[1] == 'u') {
463 deref = FETCH_OP_UDEREF;
464 arg[1] = arg[0];
465 arg++;
466 }
467 if (arg[0] == '+')
468 arg++; /* Skip '+', because kstrtol() rejects it. */
469 tmp = strchr(arg, '(');
470 if (!tmp) {
471 trace_probe_log_err(offs, DEREF_NEED_BRACE);
472 return -EINVAL;
473 }
474 *tmp = '\0';
475 ret = kstrtol(arg, 0, &offset);
476 if (ret) {
477 trace_probe_log_err(offs, BAD_DEREF_OFFS);
478 break;
479 }
480 offs += (tmp + 1 - arg) + (arg[0] != '-' ? 1 : 0);
481 arg = tmp + 1;
482 tmp = strrchr(arg, ')');
483 if (!tmp) {
484 trace_probe_log_err(offs + strlen(arg),
485 DEREF_OPEN_BRACE);
486 return -EINVAL;
487 } else {
488 const struct fetch_type *t2 = find_fetch_type(NULL, flags);
489
490 *tmp = '\0';
491 ret = parse_probe_arg(arg, t2, &code, end, flags, offs);
492 if (ret)
493 break;
494 if (code->op == FETCH_OP_COMM ||
495 code->op == FETCH_OP_DATA) {
496 trace_probe_log_err(offs, COMM_CANT_DEREF);
497 return -EINVAL;
498 }
499 if (++code == end) {
500 trace_probe_log_err(offs, TOO_MANY_OPS);
501 return -EINVAL;
502 }
503 *pcode = code;
504
505 code->op = deref;
506 code->offset = offset;
507 }
508 break;
509 case '\\': /* Immediate value */
510 if (arg[1] == '"') { /* Immediate string */
511 ret = __parse_imm_string(arg + 2, &tmp, offs + 2);
512 if (ret)
513 break;
514 code->op = FETCH_OP_DATA;
515 code->data = tmp;
516 } else {
517 ret = str_to_immediate(arg + 1, &code->immediate);
518 if (ret)
519 trace_probe_log_err(offs + 1, BAD_IMM);
520 else
521 code->op = FETCH_OP_IMM;
522 }
523 break;
524 }
525 if (!ret && code->op == FETCH_OP_NOP) {
526 /* Parsed, but do not find fetch method */
527 trace_probe_log_err(offs, BAD_FETCH_ARG);
528 ret = -EINVAL;
529 }
530 return ret;
531}
532
533#define BYTES_TO_BITS(nb) ((BITS_PER_LONG * (nb)) / sizeof(long))
534
535/* Bitfield type needs to be parsed into a fetch function */
536static int __parse_bitfield_probe_arg(const char *bf,
537 const struct fetch_type *t,
538 struct fetch_insn **pcode)
539{
540 struct fetch_insn *code = *pcode;
541 unsigned long bw, bo;
542 char *tail;
543
544 if (*bf != 'b')
545 return 0;
546
547 bw = simple_strtoul(bf + 1, &tail, 0); /* Use simple one */
548
549 if (bw == 0 || *tail != '@')
550 return -EINVAL;
551
552 bf = tail + 1;
553 bo = simple_strtoul(bf, &tail, 0);
554
555 if (tail == bf || *tail != '/')
556 return -EINVAL;
557 code++;
558 if (code->op != FETCH_OP_NOP)
559 return -EINVAL;
560 *pcode = code;
561
562 code->op = FETCH_OP_MOD_BF;
563 code->lshift = BYTES_TO_BITS(t->size) - (bw + bo);
564 code->rshift = BYTES_TO_BITS(t->size) - bw;
565 code->basesize = t->size;
566
567 return (BYTES_TO_BITS(t->size) < (bw + bo)) ? -EINVAL : 0;
568}
569
570/* String length checking wrapper */
571static int traceprobe_parse_probe_arg_body(const char *argv, ssize_t *size,
572 struct probe_arg *parg, unsigned int flags, int offset)
573{
574 struct fetch_insn *code, *scode, *tmp = NULL;
575 char *t, *t2, *t3;
576 char *arg;
577 int ret, len;
578
579 arg = kstrdup(argv, GFP_KERNEL);
580 if (!arg)
581 return -ENOMEM;
582
583 ret = -EINVAL;
584 len = strlen(arg);
585 if (len > MAX_ARGSTR_LEN) {
586 trace_probe_log_err(offset, ARG_TOO_LONG);
587 goto out;
588 } else if (len == 0) {
589 trace_probe_log_err(offset, NO_ARG_BODY);
590 goto out;
591 }
592
593 ret = -ENOMEM;
594 parg->comm = kstrdup(arg, GFP_KERNEL);
595 if (!parg->comm)
596 goto out;
597
598 ret = -EINVAL;
599 t = strchr(arg, ':');
600 if (t) {
601 *t = '\0';
602 t2 = strchr(++t, '[');
603 if (t2) {
604 *t2++ = '\0';
605 t3 = strchr(t2, ']');
606 if (!t3) {
607 offset += t2 + strlen(t2) - arg;
608 trace_probe_log_err(offset,
609 ARRAY_NO_CLOSE);
610 goto out;
611 } else if (t3[1] != '\0') {
612 trace_probe_log_err(offset + t3 + 1 - arg,
613 BAD_ARRAY_SUFFIX);
614 goto out;
615 }
616 *t3 = '\0';
617 if (kstrtouint(t2, 0, &parg->count) || !parg->count) {
618 trace_probe_log_err(offset + t2 - arg,
619 BAD_ARRAY_NUM);
620 goto out;
621 }
622 if (parg->count > MAX_ARRAY_LEN) {
623 trace_probe_log_err(offset + t2 - arg,
624 ARRAY_TOO_BIG);
625 goto out;
626 }
627 }
628 }
629
630 /*
631 * Since $comm and immediate string can not be dereferenced,
632 * we can find those by strcmp. But ignore for eprobes.
633 */
634 if (!(flags & TPARG_FL_TPOINT) &&
635 (strcmp(arg, "$comm") == 0 || strcmp(arg, "$COMM") == 0 ||
636 strncmp(arg, "\\\"", 2) == 0)) {
637 /* The type of $comm must be "string", and not an array. */
638 if (parg->count || (t && strcmp(t, "string")))
639 goto out;
640 parg->type = find_fetch_type("string", flags);
641 } else
642 parg->type = find_fetch_type(t, flags);
643 if (!parg->type) {
644 trace_probe_log_err(offset + (t ? (t - arg) : 0), BAD_TYPE);
645 goto out;
646 }
647 parg->offset = *size;
648 *size += parg->type->size * (parg->count ?: 1);
649
650 ret = -ENOMEM;
651 if (parg->count) {
652 len = strlen(parg->type->fmttype) + 6;
653 parg->fmt = kmalloc(len, GFP_KERNEL);
654 if (!parg->fmt)
655 goto out;
656 snprintf(parg->fmt, len, "%s[%d]", parg->type->fmttype,
657 parg->count);
658 }
659
660 code = tmp = kcalloc(FETCH_INSN_MAX, sizeof(*code), GFP_KERNEL);
661 if (!code)
662 goto out;
663 code[FETCH_INSN_MAX - 1].op = FETCH_OP_END;
664
665 ret = parse_probe_arg(arg, parg->type, &code, &code[FETCH_INSN_MAX - 1],
666 flags, offset);
667 if (ret)
668 goto fail;
669
670 ret = -EINVAL;
671 /* Store operation */
672 if (parg->type->is_string) {
673 if (!strcmp(parg->type->name, "symstr")) {
674 if (code->op != FETCH_OP_REG && code->op != FETCH_OP_STACK &&
675 code->op != FETCH_OP_RETVAL && code->op != FETCH_OP_ARG &&
676 code->op != FETCH_OP_DEREF && code->op != FETCH_OP_TP_ARG) {
677 trace_probe_log_err(offset + (t ? (t - arg) : 0),
678 BAD_SYMSTRING);
679 goto fail;
680 }
681 } else {
682 if (code->op != FETCH_OP_DEREF && code->op != FETCH_OP_UDEREF &&
683 code->op != FETCH_OP_IMM && code->op != FETCH_OP_COMM &&
684 code->op != FETCH_OP_DATA && code->op != FETCH_OP_TP_ARG) {
685 trace_probe_log_err(offset + (t ? (t - arg) : 0),
686 BAD_STRING);
687 goto fail;
688 }
689 }
690 if (!strcmp(parg->type->name, "symstr") ||
691 (code->op == FETCH_OP_IMM || code->op == FETCH_OP_COMM ||
692 code->op == FETCH_OP_DATA) || code->op == FETCH_OP_TP_ARG ||
693 parg->count) {
694 /*
695 * IMM, DATA and COMM is pointing actual address, those
696 * must be kept, and if parg->count != 0, this is an
697 * array of string pointers instead of string address
698 * itself.
699 * For the symstr, it doesn't need to dereference, thus
700 * it just get the value.
701 */
702 code++;
703 if (code->op != FETCH_OP_NOP) {
704 trace_probe_log_err(offset, TOO_MANY_OPS);
705 goto fail;
706 }
707 }
708 /* If op == DEREF, replace it with STRING */
709 if (!strcmp(parg->type->name, "ustring") ||
710 code->op == FETCH_OP_UDEREF)
711 code->op = FETCH_OP_ST_USTRING;
712 else if (!strcmp(parg->type->name, "symstr"))
713 code->op = FETCH_OP_ST_SYMSTR;
714 else
715 code->op = FETCH_OP_ST_STRING;
716 code->size = parg->type->size;
717 parg->dynamic = true;
718 } else if (code->op == FETCH_OP_DEREF) {
719 code->op = FETCH_OP_ST_MEM;
720 code->size = parg->type->size;
721 } else if (code->op == FETCH_OP_UDEREF) {
722 code->op = FETCH_OP_ST_UMEM;
723 code->size = parg->type->size;
724 } else {
725 code++;
726 if (code->op != FETCH_OP_NOP) {
727 trace_probe_log_err(offset, TOO_MANY_OPS);
728 goto fail;
729 }
730 code->op = FETCH_OP_ST_RAW;
731 code->size = parg->type->size;
732 }
733 scode = code;
734 /* Modify operation */
735 if (t != NULL) {
736 ret = __parse_bitfield_probe_arg(t, parg->type, &code);
737 if (ret) {
738 trace_probe_log_err(offset + t - arg, BAD_BITFIELD);
739 goto fail;
740 }
741 }
742 ret = -EINVAL;
743 /* Loop(Array) operation */
744 if (parg->count) {
745 if (scode->op != FETCH_OP_ST_MEM &&
746 scode->op != FETCH_OP_ST_STRING &&
747 scode->op != FETCH_OP_ST_USTRING) {
748 trace_probe_log_err(offset + (t ? (t - arg) : 0),
749 BAD_STRING);
750 goto fail;
751 }
752 code++;
753 if (code->op != FETCH_OP_NOP) {
754 trace_probe_log_err(offset, TOO_MANY_OPS);
755 goto fail;
756 }
757 code->op = FETCH_OP_LP_ARRAY;
758 code->param = parg->count;
759 }
760 code++;
761 code->op = FETCH_OP_END;
762
763 ret = 0;
764 /* Shrink down the code buffer */
765 parg->code = kcalloc(code - tmp + 1, sizeof(*code), GFP_KERNEL);
766 if (!parg->code)
767 ret = -ENOMEM;
768 else
769 memcpy(parg->code, tmp, sizeof(*code) * (code - tmp + 1));
770
771fail:
772 if (ret) {
773 for (code = tmp; code < tmp + FETCH_INSN_MAX; code++)
774 if (code->op == FETCH_NOP_SYMBOL ||
775 code->op == FETCH_OP_DATA)
776 kfree(code->data);
777 }
778 kfree(tmp);
779out:
780 kfree(arg);
781
782 return ret;
783}
784
785/* Return 1 if name is reserved or already used by another argument */
786static int traceprobe_conflict_field_name(const char *name,
787 struct probe_arg *args, int narg)
788{
789 int i;
790
791 for (i = 0; i < ARRAY_SIZE(reserved_field_names); i++)
792 if (strcmp(reserved_field_names[i], name) == 0)
793 return 1;
794
795 for (i = 0; i < narg; i++)
796 if (strcmp(args[i].name, name) == 0)
797 return 1;
798
799 return 0;
800}
801
802int traceprobe_parse_probe_arg(struct trace_probe *tp, int i, const char *arg,
803 unsigned int flags)
804{
805 struct probe_arg *parg = &tp->args[i];
806 const char *body;
807
808 /* Increment count for freeing args in error case */
809 tp->nr_args++;
810
811 body = strchr(arg, '=');
812 if (body) {
813 if (body - arg > MAX_ARG_NAME_LEN) {
814 trace_probe_log_err(0, ARG_NAME_TOO_LONG);
815 return -EINVAL;
816 } else if (body == arg) {
817 trace_probe_log_err(0, NO_ARG_NAME);
818 return -EINVAL;
819 }
820 parg->name = kmemdup_nul(arg, body - arg, GFP_KERNEL);
821 body++;
822 } else {
823 /* If argument name is omitted, set "argN" */
824 parg->name = kasprintf(GFP_KERNEL, "arg%d", i + 1);
825 body = arg;
826 }
827 if (!parg->name)
828 return -ENOMEM;
829
830 if (!is_good_name(parg->name)) {
831 trace_probe_log_err(0, BAD_ARG_NAME);
832 return -EINVAL;
833 }
834 if (traceprobe_conflict_field_name(parg->name, tp->args, i)) {
835 trace_probe_log_err(0, USED_ARG_NAME);
836 return -EINVAL;
837 }
838 /* Parse fetch argument */
839 return traceprobe_parse_probe_arg_body(body, &tp->size, parg, flags,
840 body - arg);
841}
842
843void traceprobe_free_probe_arg(struct probe_arg *arg)
844{
845 struct fetch_insn *code = arg->code;
846
847 while (code && code->op != FETCH_OP_END) {
848 if (code->op == FETCH_NOP_SYMBOL ||
849 code->op == FETCH_OP_DATA)
850 kfree(code->data);
851 code++;
852 }
853 kfree(arg->code);
854 kfree(arg->name);
855 kfree(arg->comm);
856 kfree(arg->fmt);
857}
858
859int traceprobe_update_arg(struct probe_arg *arg)
860{
861 struct fetch_insn *code = arg->code;
862 long offset;
863 char *tmp;
864 char c;
865 int ret = 0;
866
867 while (code && code->op != FETCH_OP_END) {
868 if (code->op == FETCH_NOP_SYMBOL) {
869 if (code[1].op != FETCH_OP_IMM)
870 return -EINVAL;
871
872 tmp = strpbrk(code->data, "+-");
873 if (tmp)
874 c = *tmp;
875 ret = traceprobe_split_symbol_offset(code->data,
876 &offset);
877 if (ret)
878 return ret;
879
880 code[1].immediate =
881 (unsigned long)kallsyms_lookup_name(code->data);
882 if (tmp)
883 *tmp = c;
884 if (!code[1].immediate)
885 return -ENOENT;
886 code[1].immediate += offset;
887 }
888 code++;
889 }
890 return 0;
891}
892
893/* When len=0, we just calculate the needed length */
894#define LEN_OR_ZERO (len ? len - pos : 0)
895static int __set_print_fmt(struct trace_probe *tp, char *buf, int len,
896 enum probe_print_type ptype)
897{
898 struct probe_arg *parg;
899 int i, j;
900 int pos = 0;
901 const char *fmt, *arg;
902
903 switch (ptype) {
904 case PROBE_PRINT_NORMAL:
905 fmt = "(%lx)";
906 arg = ", REC->" FIELD_STRING_IP;
907 break;
908 case PROBE_PRINT_RETURN:
909 fmt = "(%lx <- %lx)";
910 arg = ", REC->" FIELD_STRING_FUNC ", REC->" FIELD_STRING_RETIP;
911 break;
912 case PROBE_PRINT_EVENT:
913 fmt = "";
914 arg = "";
915 break;
916 default:
917 WARN_ON_ONCE(1);
918 return 0;
919 }
920
921 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", fmt);
922
923 for (i = 0; i < tp->nr_args; i++) {
924 parg = tp->args + i;
925 pos += snprintf(buf + pos, LEN_OR_ZERO, " %s=", parg->name);
926 if (parg->count) {
927 pos += snprintf(buf + pos, LEN_OR_ZERO, "{%s",
928 parg->type->fmt);
929 for (j = 1; j < parg->count; j++)
930 pos += snprintf(buf + pos, LEN_OR_ZERO, ",%s",
931 parg->type->fmt);
932 pos += snprintf(buf + pos, LEN_OR_ZERO, "}");
933 } else
934 pos += snprintf(buf + pos, LEN_OR_ZERO, "%s",
935 parg->type->fmt);
936 }
937
938 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", arg);
939
940 for (i = 0; i < tp->nr_args; i++) {
941 parg = tp->args + i;
942 if (parg->count) {
943 if (parg->type->is_string)
944 fmt = ", __get_str(%s[%d])";
945 else
946 fmt = ", REC->%s[%d]";
947 for (j = 0; j < parg->count; j++)
948 pos += snprintf(buf + pos, LEN_OR_ZERO,
949 fmt, parg->name, j);
950 } else {
951 if (parg->type->is_string)
952 fmt = ", __get_str(%s)";
953 else
954 fmt = ", REC->%s";
955 pos += snprintf(buf + pos, LEN_OR_ZERO,
956 fmt, parg->name);
957 }
958 }
959
960 /* return the length of print_fmt */
961 return pos;
962}
963#undef LEN_OR_ZERO
964
965int traceprobe_set_print_fmt(struct trace_probe *tp, enum probe_print_type ptype)
966{
967 struct trace_event_call *call = trace_probe_event_call(tp);
968 int len;
969 char *print_fmt;
970
971 /* First: called with 0 length to calculate the needed length */
972 len = __set_print_fmt(tp, NULL, 0, ptype);
973 print_fmt = kmalloc(len + 1, GFP_KERNEL);
974 if (!print_fmt)
975 return -ENOMEM;
976
977 /* Second: actually write the @print_fmt */
978 __set_print_fmt(tp, print_fmt, len + 1, ptype);
979 call->print_fmt = print_fmt;
980
981 return 0;
982}
983
984int traceprobe_define_arg_fields(struct trace_event_call *event_call,
985 size_t offset, struct trace_probe *tp)
986{
987 int ret, i;
988
989 /* Set argument names as fields */
990 for (i = 0; i < tp->nr_args; i++) {
991 struct probe_arg *parg = &tp->args[i];
992 const char *fmt = parg->type->fmttype;
993 int size = parg->type->size;
994
995 if (parg->fmt)
996 fmt = parg->fmt;
997 if (parg->count)
998 size *= parg->count;
999 ret = trace_define_field(event_call, fmt, parg->name,
1000 offset + parg->offset, size,
1001 parg->type->is_signed,
1002 FILTER_OTHER);
1003 if (ret)
1004 return ret;
1005 }
1006 return 0;
1007}
1008
1009static void trace_probe_event_free(struct trace_probe_event *tpe)
1010{
1011 kfree(tpe->class.system);
1012 kfree(tpe->call.name);
1013 kfree(tpe->call.print_fmt);
1014 kfree(tpe);
1015}
1016
1017int trace_probe_append(struct trace_probe *tp, struct trace_probe *to)
1018{
1019 if (trace_probe_has_sibling(tp))
1020 return -EBUSY;
1021
1022 list_del_init(&tp->list);
1023 trace_probe_event_free(tp->event);
1024
1025 tp->event = to->event;
1026 list_add_tail(&tp->list, trace_probe_probe_list(to));
1027
1028 return 0;
1029}
1030
1031void trace_probe_unlink(struct trace_probe *tp)
1032{
1033 list_del_init(&tp->list);
1034 if (list_empty(trace_probe_probe_list(tp)))
1035 trace_probe_event_free(tp->event);
1036 tp->event = NULL;
1037}
1038
1039void trace_probe_cleanup(struct trace_probe *tp)
1040{
1041 int i;
1042
1043 for (i = 0; i < tp->nr_args; i++)
1044 traceprobe_free_probe_arg(&tp->args[i]);
1045
1046 if (tp->event)
1047 trace_probe_unlink(tp);
1048}
1049
1050int trace_probe_init(struct trace_probe *tp, const char *event,
1051 const char *group, bool alloc_filter)
1052{
1053 struct trace_event_call *call;
1054 size_t size = sizeof(struct trace_probe_event);
1055 int ret = 0;
1056
1057 if (!event || !group)
1058 return -EINVAL;
1059
1060 if (alloc_filter)
1061 size += sizeof(struct trace_uprobe_filter);
1062
1063 tp->event = kzalloc(size, GFP_KERNEL);
1064 if (!tp->event)
1065 return -ENOMEM;
1066
1067 INIT_LIST_HEAD(&tp->event->files);
1068 INIT_LIST_HEAD(&tp->event->class.fields);
1069 INIT_LIST_HEAD(&tp->event->probes);
1070 INIT_LIST_HEAD(&tp->list);
1071 list_add(&tp->list, &tp->event->probes);
1072
1073 call = trace_probe_event_call(tp);
1074 call->class = &tp->event->class;
1075 call->name = kstrdup(event, GFP_KERNEL);
1076 if (!call->name) {
1077 ret = -ENOMEM;
1078 goto error;
1079 }
1080
1081 tp->event->class.system = kstrdup(group, GFP_KERNEL);
1082 if (!tp->event->class.system) {
1083 ret = -ENOMEM;
1084 goto error;
1085 }
1086
1087 return 0;
1088
1089error:
1090 trace_probe_cleanup(tp);
1091 return ret;
1092}
1093
1094static struct trace_event_call *
1095find_trace_event_call(const char *system, const char *event_name)
1096{
1097 struct trace_event_call *tp_event;
1098 const char *name;
1099
1100 list_for_each_entry(tp_event, &ftrace_events, list) {
1101 if (!tp_event->class->system ||
1102 strcmp(system, tp_event->class->system))
1103 continue;
1104 name = trace_event_name(tp_event);
1105 if (!name || strcmp(event_name, name))
1106 continue;
1107 return tp_event;
1108 }
1109
1110 return NULL;
1111}
1112
1113int trace_probe_register_event_call(struct trace_probe *tp)
1114{
1115 struct trace_event_call *call = trace_probe_event_call(tp);
1116 int ret;
1117
1118 lockdep_assert_held(&event_mutex);
1119
1120 if (find_trace_event_call(trace_probe_group_name(tp),
1121 trace_probe_name(tp)))
1122 return -EEXIST;
1123
1124 ret = register_trace_event(&call->event);
1125 if (!ret)
1126 return -ENODEV;
1127
1128 ret = trace_add_event_call(call);
1129 if (ret)
1130 unregister_trace_event(&call->event);
1131
1132 return ret;
1133}
1134
1135int trace_probe_add_file(struct trace_probe *tp, struct trace_event_file *file)
1136{
1137 struct event_file_link *link;
1138
1139 link = kmalloc(sizeof(*link), GFP_KERNEL);
1140 if (!link)
1141 return -ENOMEM;
1142
1143 link->file = file;
1144 INIT_LIST_HEAD(&link->list);
1145 list_add_tail_rcu(&link->list, &tp->event->files);
1146 trace_probe_set_flag(tp, TP_FLAG_TRACE);
1147 return 0;
1148}
1149
1150struct event_file_link *trace_probe_get_file_link(struct trace_probe *tp,
1151 struct trace_event_file *file)
1152{
1153 struct event_file_link *link;
1154
1155 trace_probe_for_each_link(link, tp) {
1156 if (link->file == file)
1157 return link;
1158 }
1159
1160 return NULL;
1161}
1162
1163int trace_probe_remove_file(struct trace_probe *tp,
1164 struct trace_event_file *file)
1165{
1166 struct event_file_link *link;
1167
1168 link = trace_probe_get_file_link(tp, file);
1169 if (!link)
1170 return -ENOENT;
1171
1172 list_del_rcu(&link->list);
1173 kvfree_rcu(link);
1174
1175 if (list_empty(&tp->event->files))
1176 trace_probe_clear_flag(tp, TP_FLAG_TRACE);
1177
1178 return 0;
1179}
1180
1181/*
1182 * Return the smallest index of different type argument (start from 1).
1183 * If all argument types and name are same, return 0.
1184 */
1185int trace_probe_compare_arg_type(struct trace_probe *a, struct trace_probe *b)
1186{
1187 int i;
1188
1189 /* In case of more arguments */
1190 if (a->nr_args < b->nr_args)
1191 return a->nr_args + 1;
1192 if (a->nr_args > b->nr_args)
1193 return b->nr_args + 1;
1194
1195 for (i = 0; i < a->nr_args; i++) {
1196 if ((b->nr_args <= i) ||
1197 ((a->args[i].type != b->args[i].type) ||
1198 (a->args[i].count != b->args[i].count) ||
1199 strcmp(a->args[i].name, b->args[i].name)))
1200 return i + 1;
1201 }
1202
1203 return 0;
1204}
1205
1206bool trace_probe_match_command_args(struct trace_probe *tp,
1207 int argc, const char **argv)
1208{
1209 char buf[MAX_ARGSTR_LEN + 1];
1210 int i;
1211
1212 if (tp->nr_args < argc)
1213 return false;
1214
1215 for (i = 0; i < argc; i++) {
1216 snprintf(buf, sizeof(buf), "%s=%s",
1217 tp->args[i].name, tp->args[i].comm);
1218 if (strcmp(buf, argv[i]))
1219 return false;
1220 }
1221 return true;
1222}
1223
1224int trace_probe_create(const char *raw_command, int (*createfn)(int, const char **))
1225{
1226 int argc = 0, ret = 0;
1227 char **argv;
1228
1229 argv = argv_split(GFP_KERNEL, raw_command, &argc);
1230 if (!argv)
1231 return -ENOMEM;
1232
1233 if (argc)
1234 ret = createfn(argc, (const char **)argv);
1235
1236 argv_free(argv);
1237
1238 return ret;
1239}
1/*
2 * Common code for probe-based Dynamic events.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * This code was copied from kernel/trace/trace_kprobe.c written by
18 * Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
19 *
20 * Updates to make this generic:
21 * Copyright (C) IBM Corporation, 2010-2011
22 * Author: Srikar Dronamraju
23 */
24
25#include "trace_probe.h"
26
27const char *reserved_field_names[] = {
28 "common_type",
29 "common_flags",
30 "common_preempt_count",
31 "common_pid",
32 "common_tgid",
33 FIELD_STRING_IP,
34 FIELD_STRING_RETIP,
35 FIELD_STRING_FUNC,
36};
37
38/* Printing in basic type function template */
39#define DEFINE_BASIC_PRINT_TYPE_FUNC(type, fmt) \
40__kprobes int PRINT_TYPE_FUNC_NAME(type)(struct trace_seq *s, \
41 const char *name, \
42 void *data, void *ent) \
43{ \
44 return trace_seq_printf(s, " %s=" fmt, name, *(type *)data); \
45} \
46const char PRINT_TYPE_FMT_NAME(type)[] = fmt;
47
48DEFINE_BASIC_PRINT_TYPE_FUNC(u8 , "0x%x")
49DEFINE_BASIC_PRINT_TYPE_FUNC(u16, "0x%x")
50DEFINE_BASIC_PRINT_TYPE_FUNC(u32, "0x%x")
51DEFINE_BASIC_PRINT_TYPE_FUNC(u64, "0x%Lx")
52DEFINE_BASIC_PRINT_TYPE_FUNC(s8, "%d")
53DEFINE_BASIC_PRINT_TYPE_FUNC(s16, "%d")
54DEFINE_BASIC_PRINT_TYPE_FUNC(s32, "%d")
55DEFINE_BASIC_PRINT_TYPE_FUNC(s64, "%Ld")
56
57/* Print type function for string type */
58__kprobes int PRINT_TYPE_FUNC_NAME(string)(struct trace_seq *s,
59 const char *name,
60 void *data, void *ent)
61{
62 int len = *(u32 *)data >> 16;
63
64 if (!len)
65 return trace_seq_printf(s, " %s=(fault)", name);
66 else
67 return trace_seq_printf(s, " %s=\"%s\"", name,
68 (const char *)get_loc_data(data, ent));
69}
70
71const char PRINT_TYPE_FMT_NAME(string)[] = "\\\"%s\\\"";
72
73#define CHECK_FETCH_FUNCS(method, fn) \
74 (((FETCH_FUNC_NAME(method, u8) == fn) || \
75 (FETCH_FUNC_NAME(method, u16) == fn) || \
76 (FETCH_FUNC_NAME(method, u32) == fn) || \
77 (FETCH_FUNC_NAME(method, u64) == fn) || \
78 (FETCH_FUNC_NAME(method, string) == fn) || \
79 (FETCH_FUNC_NAME(method, string_size) == fn)) \
80 && (fn != NULL))
81
82/* Data fetch function templates */
83#define DEFINE_FETCH_reg(type) \
84__kprobes void FETCH_FUNC_NAME(reg, type)(struct pt_regs *regs, \
85 void *offset, void *dest) \
86{ \
87 *(type *)dest = (type)regs_get_register(regs, \
88 (unsigned int)((unsigned long)offset)); \
89}
90DEFINE_BASIC_FETCH_FUNCS(reg)
91/* No string on the register */
92#define fetch_reg_string NULL
93#define fetch_reg_string_size NULL
94
95#define DEFINE_FETCH_retval(type) \
96__kprobes void FETCH_FUNC_NAME(retval, type)(struct pt_regs *regs, \
97 void *dummy, void *dest) \
98{ \
99 *(type *)dest = (type)regs_return_value(regs); \
100}
101DEFINE_BASIC_FETCH_FUNCS(retval)
102/* No string on the retval */
103#define fetch_retval_string NULL
104#define fetch_retval_string_size NULL
105
106/* Dereference memory access function */
107struct deref_fetch_param {
108 struct fetch_param orig;
109 long offset;
110 fetch_func_t fetch;
111 fetch_func_t fetch_size;
112};
113
114#define DEFINE_FETCH_deref(type) \
115__kprobes void FETCH_FUNC_NAME(deref, type)(struct pt_regs *regs, \
116 void *data, void *dest) \
117{ \
118 struct deref_fetch_param *dprm = data; \
119 unsigned long addr; \
120 call_fetch(&dprm->orig, regs, &addr); \
121 if (addr) { \
122 addr += dprm->offset; \
123 dprm->fetch(regs, (void *)addr, dest); \
124 } else \
125 *(type *)dest = 0; \
126}
127DEFINE_BASIC_FETCH_FUNCS(deref)
128DEFINE_FETCH_deref(string)
129
130__kprobes void FETCH_FUNC_NAME(deref, string_size)(struct pt_regs *regs,
131 void *data, void *dest)
132{
133 struct deref_fetch_param *dprm = data;
134 unsigned long addr;
135
136 call_fetch(&dprm->orig, regs, &addr);
137 if (addr && dprm->fetch_size) {
138 addr += dprm->offset;
139 dprm->fetch_size(regs, (void *)addr, dest);
140 } else
141 *(string_size *)dest = 0;
142}
143
144static __kprobes void update_deref_fetch_param(struct deref_fetch_param *data)
145{
146 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
147 update_deref_fetch_param(data->orig.data);
148 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
149 update_symbol_cache(data->orig.data);
150}
151
152static __kprobes void free_deref_fetch_param(struct deref_fetch_param *data)
153{
154 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
155 free_deref_fetch_param(data->orig.data);
156 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
157 free_symbol_cache(data->orig.data);
158 kfree(data);
159}
160
161/* Bitfield fetch function */
162struct bitfield_fetch_param {
163 struct fetch_param orig;
164 unsigned char hi_shift;
165 unsigned char low_shift;
166};
167
168#define DEFINE_FETCH_bitfield(type) \
169__kprobes void FETCH_FUNC_NAME(bitfield, type)(struct pt_regs *regs, \
170 void *data, void *dest) \
171{ \
172 struct bitfield_fetch_param *bprm = data; \
173 type buf = 0; \
174 call_fetch(&bprm->orig, regs, &buf); \
175 if (buf) { \
176 buf <<= bprm->hi_shift; \
177 buf >>= bprm->low_shift; \
178 } \
179 *(type *)dest = buf; \
180}
181
182DEFINE_BASIC_FETCH_FUNCS(bitfield)
183#define fetch_bitfield_string NULL
184#define fetch_bitfield_string_size NULL
185
186static __kprobes void
187update_bitfield_fetch_param(struct bitfield_fetch_param *data)
188{
189 /*
190 * Don't check the bitfield itself, because this must be the
191 * last fetch function.
192 */
193 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
194 update_deref_fetch_param(data->orig.data);
195 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
196 update_symbol_cache(data->orig.data);
197}
198
199static __kprobes void
200free_bitfield_fetch_param(struct bitfield_fetch_param *data)
201{
202 /*
203 * Don't check the bitfield itself, because this must be the
204 * last fetch function.
205 */
206 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
207 free_deref_fetch_param(data->orig.data);
208 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
209 free_symbol_cache(data->orig.data);
210
211 kfree(data);
212}
213
214static const struct fetch_type *find_fetch_type(const char *type,
215 const struct fetch_type *ftbl)
216{
217 int i;
218
219 if (!type)
220 type = DEFAULT_FETCH_TYPE_STR;
221
222 /* Special case: bitfield */
223 if (*type == 'b') {
224 unsigned long bs;
225
226 type = strchr(type, '/');
227 if (!type)
228 goto fail;
229
230 type++;
231 if (kstrtoul(type, 0, &bs))
232 goto fail;
233
234 switch (bs) {
235 case 8:
236 return find_fetch_type("u8", ftbl);
237 case 16:
238 return find_fetch_type("u16", ftbl);
239 case 32:
240 return find_fetch_type("u32", ftbl);
241 case 64:
242 return find_fetch_type("u64", ftbl);
243 default:
244 goto fail;
245 }
246 }
247
248 for (i = 0; ftbl[i].name; i++) {
249 if (strcmp(type, ftbl[i].name) == 0)
250 return &ftbl[i];
251 }
252
253fail:
254 return NULL;
255}
256
257/* Special function : only accept unsigned long */
258static __kprobes void fetch_kernel_stack_address(struct pt_regs *regs,
259 void *dummy, void *dest)
260{
261 *(unsigned long *)dest = kernel_stack_pointer(regs);
262}
263
264static __kprobes void fetch_user_stack_address(struct pt_regs *regs,
265 void *dummy, void *dest)
266{
267 *(unsigned long *)dest = user_stack_pointer(regs);
268}
269
270static fetch_func_t get_fetch_size_function(const struct fetch_type *type,
271 fetch_func_t orig_fn,
272 const struct fetch_type *ftbl)
273{
274 int i;
275
276 if (type != &ftbl[FETCH_TYPE_STRING])
277 return NULL; /* Only string type needs size function */
278
279 for (i = 0; i < FETCH_MTD_END; i++)
280 if (type->fetch[i] == orig_fn)
281 return ftbl[FETCH_TYPE_STRSIZE].fetch[i];
282
283 WARN_ON(1); /* This should not happen */
284
285 return NULL;
286}
287
288/* Split symbol and offset. */
289int traceprobe_split_symbol_offset(char *symbol, unsigned long *offset)
290{
291 char *tmp;
292 int ret;
293
294 if (!offset)
295 return -EINVAL;
296
297 tmp = strchr(symbol, '+');
298 if (tmp) {
299 /* skip sign because kstrtoul doesn't accept '+' */
300 ret = kstrtoul(tmp + 1, 0, offset);
301 if (ret)
302 return ret;
303
304 *tmp = '\0';
305 } else
306 *offset = 0;
307
308 return 0;
309}
310
311#define PARAM_MAX_STACK (THREAD_SIZE / sizeof(unsigned long))
312
313static int parse_probe_vars(char *arg, const struct fetch_type *t,
314 struct fetch_param *f, bool is_return,
315 bool is_kprobe)
316{
317 int ret = 0;
318 unsigned long param;
319
320 if (strcmp(arg, "retval") == 0) {
321 if (is_return)
322 f->fn = t->fetch[FETCH_MTD_retval];
323 else
324 ret = -EINVAL;
325 } else if (strncmp(arg, "stack", 5) == 0) {
326 if (arg[5] == '\0') {
327 if (strcmp(t->name, DEFAULT_FETCH_TYPE_STR))
328 return -EINVAL;
329
330 if (is_kprobe)
331 f->fn = fetch_kernel_stack_address;
332 else
333 f->fn = fetch_user_stack_address;
334 } else if (isdigit(arg[5])) {
335 ret = kstrtoul(arg + 5, 10, ¶m);
336 if (ret || (is_kprobe && param > PARAM_MAX_STACK))
337 ret = -EINVAL;
338 else {
339 f->fn = t->fetch[FETCH_MTD_stack];
340 f->data = (void *)param;
341 }
342 } else
343 ret = -EINVAL;
344 } else
345 ret = -EINVAL;
346
347 return ret;
348}
349
350/* Recursive argument parser */
351static int parse_probe_arg(char *arg, const struct fetch_type *t,
352 struct fetch_param *f, bool is_return, bool is_kprobe)
353{
354 const struct fetch_type *ftbl;
355 unsigned long param;
356 long offset;
357 char *tmp;
358 int ret = 0;
359
360 ftbl = is_kprobe ? kprobes_fetch_type_table : uprobes_fetch_type_table;
361 BUG_ON(ftbl == NULL);
362
363 switch (arg[0]) {
364 case '$':
365 ret = parse_probe_vars(arg + 1, t, f, is_return, is_kprobe);
366 break;
367
368 case '%': /* named register */
369 ret = regs_query_register_offset(arg + 1);
370 if (ret >= 0) {
371 f->fn = t->fetch[FETCH_MTD_reg];
372 f->data = (void *)(unsigned long)ret;
373 ret = 0;
374 }
375 break;
376
377 case '@': /* memory, file-offset or symbol */
378 if (isdigit(arg[1])) {
379 ret = kstrtoul(arg + 1, 0, ¶m);
380 if (ret)
381 break;
382
383 f->fn = t->fetch[FETCH_MTD_memory];
384 f->data = (void *)param;
385 } else if (arg[1] == '+') {
386 /* kprobes don't support file offsets */
387 if (is_kprobe)
388 return -EINVAL;
389
390 ret = kstrtol(arg + 2, 0, &offset);
391 if (ret)
392 break;
393
394 f->fn = t->fetch[FETCH_MTD_file_offset];
395 f->data = (void *)offset;
396 } else {
397 /* uprobes don't support symbols */
398 if (!is_kprobe)
399 return -EINVAL;
400
401 ret = traceprobe_split_symbol_offset(arg + 1, &offset);
402 if (ret)
403 break;
404
405 f->data = alloc_symbol_cache(arg + 1, offset);
406 if (f->data)
407 f->fn = t->fetch[FETCH_MTD_symbol];
408 }
409 break;
410
411 case '+': /* deref memory */
412 arg++; /* Skip '+', because kstrtol() rejects it. */
413 case '-':
414 tmp = strchr(arg, '(');
415 if (!tmp)
416 break;
417
418 *tmp = '\0';
419 ret = kstrtol(arg, 0, &offset);
420
421 if (ret)
422 break;
423
424 arg = tmp + 1;
425 tmp = strrchr(arg, ')');
426
427 if (tmp) {
428 struct deref_fetch_param *dprm;
429 const struct fetch_type *t2;
430
431 t2 = find_fetch_type(NULL, ftbl);
432 *tmp = '\0';
433 dprm = kzalloc(sizeof(struct deref_fetch_param), GFP_KERNEL);
434
435 if (!dprm)
436 return -ENOMEM;
437
438 dprm->offset = offset;
439 dprm->fetch = t->fetch[FETCH_MTD_memory];
440 dprm->fetch_size = get_fetch_size_function(t,
441 dprm->fetch, ftbl);
442 ret = parse_probe_arg(arg, t2, &dprm->orig, is_return,
443 is_kprobe);
444 if (ret)
445 kfree(dprm);
446 else {
447 f->fn = t->fetch[FETCH_MTD_deref];
448 f->data = (void *)dprm;
449 }
450 }
451 break;
452 }
453 if (!ret && !f->fn) { /* Parsed, but do not find fetch method */
454 pr_info("%s type has no corresponding fetch method.\n", t->name);
455 ret = -EINVAL;
456 }
457
458 return ret;
459}
460
461#define BYTES_TO_BITS(nb) ((BITS_PER_LONG * (nb)) / sizeof(long))
462
463/* Bitfield type needs to be parsed into a fetch function */
464static int __parse_bitfield_probe_arg(const char *bf,
465 const struct fetch_type *t,
466 struct fetch_param *f)
467{
468 struct bitfield_fetch_param *bprm;
469 unsigned long bw, bo;
470 char *tail;
471
472 if (*bf != 'b')
473 return 0;
474
475 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
476 if (!bprm)
477 return -ENOMEM;
478
479 bprm->orig = *f;
480 f->fn = t->fetch[FETCH_MTD_bitfield];
481 f->data = (void *)bprm;
482 bw = simple_strtoul(bf + 1, &tail, 0); /* Use simple one */
483
484 if (bw == 0 || *tail != '@')
485 return -EINVAL;
486
487 bf = tail + 1;
488 bo = simple_strtoul(bf, &tail, 0);
489
490 if (tail == bf || *tail != '/')
491 return -EINVAL;
492
493 bprm->hi_shift = BYTES_TO_BITS(t->size) - (bw + bo);
494 bprm->low_shift = bprm->hi_shift + bo;
495
496 return (BYTES_TO_BITS(t->size) < (bw + bo)) ? -EINVAL : 0;
497}
498
499/* String length checking wrapper */
500int traceprobe_parse_probe_arg(char *arg, ssize_t *size,
501 struct probe_arg *parg, bool is_return, bool is_kprobe)
502{
503 const struct fetch_type *ftbl;
504 const char *t;
505 int ret;
506
507 ftbl = is_kprobe ? kprobes_fetch_type_table : uprobes_fetch_type_table;
508 BUG_ON(ftbl == NULL);
509
510 if (strlen(arg) > MAX_ARGSTR_LEN) {
511 pr_info("Argument is too long.: %s\n", arg);
512 return -ENOSPC;
513 }
514 parg->comm = kstrdup(arg, GFP_KERNEL);
515 if (!parg->comm) {
516 pr_info("Failed to allocate memory for command '%s'.\n", arg);
517 return -ENOMEM;
518 }
519 t = strchr(parg->comm, ':');
520 if (t) {
521 arg[t - parg->comm] = '\0';
522 t++;
523 }
524 parg->type = find_fetch_type(t, ftbl);
525 if (!parg->type) {
526 pr_info("Unsupported type: %s\n", t);
527 return -EINVAL;
528 }
529 parg->offset = *size;
530 *size += parg->type->size;
531 ret = parse_probe_arg(arg, parg->type, &parg->fetch, is_return, is_kprobe);
532
533 if (ret >= 0 && t != NULL)
534 ret = __parse_bitfield_probe_arg(t, parg->type, &parg->fetch);
535
536 if (ret >= 0) {
537 parg->fetch_size.fn = get_fetch_size_function(parg->type,
538 parg->fetch.fn,
539 ftbl);
540 parg->fetch_size.data = parg->fetch.data;
541 }
542
543 return ret;
544}
545
546/* Return 1 if name is reserved or already used by another argument */
547int traceprobe_conflict_field_name(const char *name,
548 struct probe_arg *args, int narg)
549{
550 int i;
551
552 for (i = 0; i < ARRAY_SIZE(reserved_field_names); i++)
553 if (strcmp(reserved_field_names[i], name) == 0)
554 return 1;
555
556 for (i = 0; i < narg; i++)
557 if (strcmp(args[i].name, name) == 0)
558 return 1;
559
560 return 0;
561}
562
563void traceprobe_update_arg(struct probe_arg *arg)
564{
565 if (CHECK_FETCH_FUNCS(bitfield, arg->fetch.fn))
566 update_bitfield_fetch_param(arg->fetch.data);
567 else if (CHECK_FETCH_FUNCS(deref, arg->fetch.fn))
568 update_deref_fetch_param(arg->fetch.data);
569 else if (CHECK_FETCH_FUNCS(symbol, arg->fetch.fn))
570 update_symbol_cache(arg->fetch.data);
571}
572
573void traceprobe_free_probe_arg(struct probe_arg *arg)
574{
575 if (CHECK_FETCH_FUNCS(bitfield, arg->fetch.fn))
576 free_bitfield_fetch_param(arg->fetch.data);
577 else if (CHECK_FETCH_FUNCS(deref, arg->fetch.fn))
578 free_deref_fetch_param(arg->fetch.data);
579 else if (CHECK_FETCH_FUNCS(symbol, arg->fetch.fn))
580 free_symbol_cache(arg->fetch.data);
581
582 kfree(arg->name);
583 kfree(arg->comm);
584}
585
586int traceprobe_command(const char *buf, int (*createfn)(int, char **))
587{
588 char **argv;
589 int argc, ret;
590
591 argc = 0;
592 ret = 0;
593 argv = argv_split(GFP_KERNEL, buf, &argc);
594 if (!argv)
595 return -ENOMEM;
596
597 if (argc)
598 ret = createfn(argc, argv);
599
600 argv_free(argv);
601
602 return ret;
603}
604
605#define WRITE_BUFSIZE 4096
606
607ssize_t traceprobe_probes_write(struct file *file, const char __user *buffer,
608 size_t count, loff_t *ppos,
609 int (*createfn)(int, char **))
610{
611 char *kbuf, *tmp;
612 int ret = 0;
613 size_t done = 0;
614 size_t size;
615
616 kbuf = kmalloc(WRITE_BUFSIZE, GFP_KERNEL);
617 if (!kbuf)
618 return -ENOMEM;
619
620 while (done < count) {
621 size = count - done;
622
623 if (size >= WRITE_BUFSIZE)
624 size = WRITE_BUFSIZE - 1;
625
626 if (copy_from_user(kbuf, buffer + done, size)) {
627 ret = -EFAULT;
628 goto out;
629 }
630 kbuf[size] = '\0';
631 tmp = strchr(kbuf, '\n');
632
633 if (tmp) {
634 *tmp = '\0';
635 size = tmp - kbuf + 1;
636 } else if (done + size < count) {
637 pr_warning("Line length is too long: "
638 "Should be less than %d.", WRITE_BUFSIZE);
639 ret = -EINVAL;
640 goto out;
641 }
642 done += size;
643 /* Remove comments */
644 tmp = strchr(kbuf, '#');
645
646 if (tmp)
647 *tmp = '\0';
648
649 ret = traceprobe_command(kbuf, createfn);
650 if (ret)
651 goto out;
652 }
653 ret = done;
654
655out:
656 kfree(kbuf);
657
658 return ret;
659}
660
661static int __set_print_fmt(struct trace_probe *tp, char *buf, int len,
662 bool is_return)
663{
664 int i;
665 int pos = 0;
666
667 const char *fmt, *arg;
668
669 if (!is_return) {
670 fmt = "(%lx)";
671 arg = "REC->" FIELD_STRING_IP;
672 } else {
673 fmt = "(%lx <- %lx)";
674 arg = "REC->" FIELD_STRING_FUNC ", REC->" FIELD_STRING_RETIP;
675 }
676
677 /* When len=0, we just calculate the needed length */
678#define LEN_OR_ZERO (len ? len - pos : 0)
679
680 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", fmt);
681
682 for (i = 0; i < tp->nr_args; i++) {
683 pos += snprintf(buf + pos, LEN_OR_ZERO, " %s=%s",
684 tp->args[i].name, tp->args[i].type->fmt);
685 }
686
687 pos += snprintf(buf + pos, LEN_OR_ZERO, "\", %s", arg);
688
689 for (i = 0; i < tp->nr_args; i++) {
690 if (strcmp(tp->args[i].type->name, "string") == 0)
691 pos += snprintf(buf + pos, LEN_OR_ZERO,
692 ", __get_str(%s)",
693 tp->args[i].name);
694 else
695 pos += snprintf(buf + pos, LEN_OR_ZERO, ", REC->%s",
696 tp->args[i].name);
697 }
698
699#undef LEN_OR_ZERO
700
701 /* return the length of print_fmt */
702 return pos;
703}
704
705int set_print_fmt(struct trace_probe *tp, bool is_return)
706{
707 int len;
708 char *print_fmt;
709
710 /* First: called with 0 length to calculate the needed length */
711 len = __set_print_fmt(tp, NULL, 0, is_return);
712 print_fmt = kmalloc(len + 1, GFP_KERNEL);
713 if (!print_fmt)
714 return -ENOMEM;
715
716 /* Second: actually write the @print_fmt */
717 __set_print_fmt(tp, print_fmt, len + 1, is_return);
718 tp->call.print_fmt = print_fmt;
719
720 return 0;
721}