Loading...
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(tname, type, fmt) \
40int PRINT_TYPE_FUNC_NAME(tname)(struct trace_seq *s, const char *name, \
41 void *data, void *ent) \
42{ \
43 trace_seq_printf(s, " %s=" fmt, name, *(type *)data); \
44 return !trace_seq_has_overflowed(s); \
45} \
46const char PRINT_TYPE_FMT_NAME(tname)[] = fmt; \
47NOKPROBE_SYMBOL(PRINT_TYPE_FUNC_NAME(tname));
48
49DEFINE_BASIC_PRINT_TYPE_FUNC(u8, u8, "%u")
50DEFINE_BASIC_PRINT_TYPE_FUNC(u16, u16, "%u")
51DEFINE_BASIC_PRINT_TYPE_FUNC(u32, u32, "%u")
52DEFINE_BASIC_PRINT_TYPE_FUNC(u64, u64, "%Lu")
53DEFINE_BASIC_PRINT_TYPE_FUNC(s8, s8, "%d")
54DEFINE_BASIC_PRINT_TYPE_FUNC(s16, s16, "%d")
55DEFINE_BASIC_PRINT_TYPE_FUNC(s32, s32, "%d")
56DEFINE_BASIC_PRINT_TYPE_FUNC(s64, s64, "%Ld")
57DEFINE_BASIC_PRINT_TYPE_FUNC(x8, u8, "0x%x")
58DEFINE_BASIC_PRINT_TYPE_FUNC(x16, u16, "0x%x")
59DEFINE_BASIC_PRINT_TYPE_FUNC(x32, u32, "0x%x")
60DEFINE_BASIC_PRINT_TYPE_FUNC(x64, u64, "0x%Lx")
61
62/* Print type function for string type */
63int PRINT_TYPE_FUNC_NAME(string)(struct trace_seq *s, const char *name,
64 void *data, void *ent)
65{
66 int len = *(u32 *)data >> 16;
67
68 if (!len)
69 trace_seq_printf(s, " %s=(fault)", name);
70 else
71 trace_seq_printf(s, " %s=\"%s\"", name,
72 (const char *)get_loc_data(data, ent));
73 return !trace_seq_has_overflowed(s);
74}
75NOKPROBE_SYMBOL(PRINT_TYPE_FUNC_NAME(string));
76
77const char PRINT_TYPE_FMT_NAME(string)[] = "\\\"%s\\\"";
78
79#define CHECK_FETCH_FUNCS(method, fn) \
80 (((FETCH_FUNC_NAME(method, u8) == fn) || \
81 (FETCH_FUNC_NAME(method, u16) == fn) || \
82 (FETCH_FUNC_NAME(method, u32) == fn) || \
83 (FETCH_FUNC_NAME(method, u64) == fn) || \
84 (FETCH_FUNC_NAME(method, string) == fn) || \
85 (FETCH_FUNC_NAME(method, string_size) == fn)) \
86 && (fn != NULL))
87
88/* Data fetch function templates */
89#define DEFINE_FETCH_reg(type) \
90void FETCH_FUNC_NAME(reg, type)(struct pt_regs *regs, void *offset, void *dest) \
91{ \
92 *(type *)dest = (type)regs_get_register(regs, \
93 (unsigned int)((unsigned long)offset)); \
94} \
95NOKPROBE_SYMBOL(FETCH_FUNC_NAME(reg, type));
96DEFINE_BASIC_FETCH_FUNCS(reg)
97/* No string on the register */
98#define fetch_reg_string NULL
99#define fetch_reg_string_size NULL
100
101#define DEFINE_FETCH_retval(type) \
102void FETCH_FUNC_NAME(retval, type)(struct pt_regs *regs, \
103 void *dummy, void *dest) \
104{ \
105 *(type *)dest = (type)regs_return_value(regs); \
106} \
107NOKPROBE_SYMBOL(FETCH_FUNC_NAME(retval, type));
108DEFINE_BASIC_FETCH_FUNCS(retval)
109/* No string on the retval */
110#define fetch_retval_string NULL
111#define fetch_retval_string_size NULL
112
113/* Dereference memory access function */
114struct deref_fetch_param {
115 struct fetch_param orig;
116 long offset;
117 fetch_func_t fetch;
118 fetch_func_t fetch_size;
119};
120
121#define DEFINE_FETCH_deref(type) \
122void FETCH_FUNC_NAME(deref, type)(struct pt_regs *regs, \
123 void *data, void *dest) \
124{ \
125 struct deref_fetch_param *dprm = data; \
126 unsigned long addr; \
127 call_fetch(&dprm->orig, regs, &addr); \
128 if (addr) { \
129 addr += dprm->offset; \
130 dprm->fetch(regs, (void *)addr, dest); \
131 } else \
132 *(type *)dest = 0; \
133} \
134NOKPROBE_SYMBOL(FETCH_FUNC_NAME(deref, type));
135DEFINE_BASIC_FETCH_FUNCS(deref)
136DEFINE_FETCH_deref(string)
137
138void FETCH_FUNC_NAME(deref, string_size)(struct pt_regs *regs,
139 void *data, void *dest)
140{
141 struct deref_fetch_param *dprm = data;
142 unsigned long addr;
143
144 call_fetch(&dprm->orig, regs, &addr);
145 if (addr && dprm->fetch_size) {
146 addr += dprm->offset;
147 dprm->fetch_size(regs, (void *)addr, dest);
148 } else
149 *(string_size *)dest = 0;
150}
151NOKPROBE_SYMBOL(FETCH_FUNC_NAME(deref, string_size));
152
153static void update_deref_fetch_param(struct deref_fetch_param *data)
154{
155 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
156 update_deref_fetch_param(data->orig.data);
157 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
158 update_symbol_cache(data->orig.data);
159}
160NOKPROBE_SYMBOL(update_deref_fetch_param);
161
162static void free_deref_fetch_param(struct deref_fetch_param *data)
163{
164 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
165 free_deref_fetch_param(data->orig.data);
166 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
167 free_symbol_cache(data->orig.data);
168 kfree(data);
169}
170NOKPROBE_SYMBOL(free_deref_fetch_param);
171
172/* Bitfield fetch function */
173struct bitfield_fetch_param {
174 struct fetch_param orig;
175 unsigned char hi_shift;
176 unsigned char low_shift;
177};
178
179#define DEFINE_FETCH_bitfield(type) \
180void FETCH_FUNC_NAME(bitfield, type)(struct pt_regs *regs, \
181 void *data, void *dest) \
182{ \
183 struct bitfield_fetch_param *bprm = data; \
184 type buf = 0; \
185 call_fetch(&bprm->orig, regs, &buf); \
186 if (buf) { \
187 buf <<= bprm->hi_shift; \
188 buf >>= bprm->low_shift; \
189 } \
190 *(type *)dest = buf; \
191} \
192NOKPROBE_SYMBOL(FETCH_FUNC_NAME(bitfield, type));
193DEFINE_BASIC_FETCH_FUNCS(bitfield)
194#define fetch_bitfield_string NULL
195#define fetch_bitfield_string_size NULL
196
197static void
198update_bitfield_fetch_param(struct bitfield_fetch_param *data)
199{
200 /*
201 * Don't check the bitfield itself, because this must be the
202 * last fetch function.
203 */
204 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
205 update_deref_fetch_param(data->orig.data);
206 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
207 update_symbol_cache(data->orig.data);
208}
209
210static void
211free_bitfield_fetch_param(struct bitfield_fetch_param *data)
212{
213 /*
214 * Don't check the bitfield itself, because this must be the
215 * last fetch function.
216 */
217 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
218 free_deref_fetch_param(data->orig.data);
219 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
220 free_symbol_cache(data->orig.data);
221
222 kfree(data);
223}
224
225void FETCH_FUNC_NAME(comm, string)(struct pt_regs *regs,
226 void *data, void *dest)
227{
228 int maxlen = get_rloc_len(*(u32 *)dest);
229 u8 *dst = get_rloc_data(dest);
230 long ret;
231
232 if (!maxlen)
233 return;
234
235 ret = strlcpy(dst, current->comm, maxlen);
236 *(u32 *)dest = make_data_rloc(ret, get_rloc_offs(*(u32 *)dest));
237}
238NOKPROBE_SYMBOL(FETCH_FUNC_NAME(comm, string));
239
240void FETCH_FUNC_NAME(comm, string_size)(struct pt_regs *regs,
241 void *data, void *dest)
242{
243 *(u32 *)dest = strlen(current->comm) + 1;
244}
245NOKPROBE_SYMBOL(FETCH_FUNC_NAME(comm, string_size));
246
247static const struct fetch_type *find_fetch_type(const char *type,
248 const struct fetch_type *ftbl)
249{
250 int i;
251
252 if (!type)
253 type = DEFAULT_FETCH_TYPE_STR;
254
255 /* Special case: bitfield */
256 if (*type == 'b') {
257 unsigned long bs;
258
259 type = strchr(type, '/');
260 if (!type)
261 goto fail;
262
263 type++;
264 if (kstrtoul(type, 0, &bs))
265 goto fail;
266
267 switch (bs) {
268 case 8:
269 return find_fetch_type("u8", ftbl);
270 case 16:
271 return find_fetch_type("u16", ftbl);
272 case 32:
273 return find_fetch_type("u32", ftbl);
274 case 64:
275 return find_fetch_type("u64", ftbl);
276 default:
277 goto fail;
278 }
279 }
280
281 for (i = 0; ftbl[i].name; i++) {
282 if (strcmp(type, ftbl[i].name) == 0)
283 return &ftbl[i];
284 }
285
286fail:
287 return NULL;
288}
289
290/* Special function : only accept unsigned long */
291static void fetch_kernel_stack_address(struct pt_regs *regs, void *dummy, void *dest)
292{
293 *(unsigned long *)dest = kernel_stack_pointer(regs);
294}
295NOKPROBE_SYMBOL(fetch_kernel_stack_address);
296
297static void fetch_user_stack_address(struct pt_regs *regs, void *dummy, void *dest)
298{
299 *(unsigned long *)dest = user_stack_pointer(regs);
300}
301NOKPROBE_SYMBOL(fetch_user_stack_address);
302
303static fetch_func_t get_fetch_size_function(const struct fetch_type *type,
304 fetch_func_t orig_fn,
305 const struct fetch_type *ftbl)
306{
307 int i;
308
309 if (type != &ftbl[FETCH_TYPE_STRING])
310 return NULL; /* Only string type needs size function */
311
312 for (i = 0; i < FETCH_MTD_END; i++)
313 if (type->fetch[i] == orig_fn)
314 return ftbl[FETCH_TYPE_STRSIZE].fetch[i];
315
316 WARN_ON(1); /* This should not happen */
317
318 return NULL;
319}
320
321/* Split symbol and offset. */
322int traceprobe_split_symbol_offset(char *symbol, unsigned long *offset)
323{
324 char *tmp;
325 int ret;
326
327 if (!offset)
328 return -EINVAL;
329
330 tmp = strchr(symbol, '+');
331 if (tmp) {
332 /* skip sign because kstrtoul doesn't accept '+' */
333 ret = kstrtoul(tmp + 1, 0, offset);
334 if (ret)
335 return ret;
336
337 *tmp = '\0';
338 } else
339 *offset = 0;
340
341 return 0;
342}
343
344#define PARAM_MAX_STACK (THREAD_SIZE / sizeof(unsigned long))
345
346static int parse_probe_vars(char *arg, const struct fetch_type *t,
347 struct fetch_param *f, bool is_return,
348 bool is_kprobe)
349{
350 int ret = 0;
351 unsigned long param;
352
353 if (strcmp(arg, "retval") == 0) {
354 if (is_return)
355 f->fn = t->fetch[FETCH_MTD_retval];
356 else
357 ret = -EINVAL;
358 } else if (strncmp(arg, "stack", 5) == 0) {
359 if (arg[5] == '\0') {
360 if (strcmp(t->name, DEFAULT_FETCH_TYPE_STR))
361 return -EINVAL;
362
363 if (is_kprobe)
364 f->fn = fetch_kernel_stack_address;
365 else
366 f->fn = fetch_user_stack_address;
367 } else if (isdigit(arg[5])) {
368 ret = kstrtoul(arg + 5, 10, ¶m);
369 if (ret || (is_kprobe && param > PARAM_MAX_STACK))
370 ret = -EINVAL;
371 else {
372 f->fn = t->fetch[FETCH_MTD_stack];
373 f->data = (void *)param;
374 }
375 } else
376 ret = -EINVAL;
377 } else if (strcmp(arg, "comm") == 0) {
378 if (strcmp(t->name, "string") != 0 &&
379 strcmp(t->name, "string_size") != 0)
380 return -EINVAL;
381 f->fn = t->fetch[FETCH_MTD_comm];
382 } else
383 ret = -EINVAL;
384
385 return ret;
386}
387
388/* Recursive argument parser */
389static int parse_probe_arg(char *arg, const struct fetch_type *t,
390 struct fetch_param *f, bool is_return, bool is_kprobe,
391 const struct fetch_type *ftbl)
392{
393 unsigned long param;
394 long offset;
395 char *tmp;
396 int ret = 0;
397
398 switch (arg[0]) {
399 case '$':
400 ret = parse_probe_vars(arg + 1, t, f, is_return, is_kprobe);
401 break;
402
403 case '%': /* named register */
404 ret = regs_query_register_offset(arg + 1);
405 if (ret >= 0) {
406 f->fn = t->fetch[FETCH_MTD_reg];
407 f->data = (void *)(unsigned long)ret;
408 ret = 0;
409 }
410 break;
411
412 case '@': /* memory, file-offset or symbol */
413 if (isdigit(arg[1])) {
414 ret = kstrtoul(arg + 1, 0, ¶m);
415 if (ret)
416 break;
417
418 f->fn = t->fetch[FETCH_MTD_memory];
419 f->data = (void *)param;
420 } else if (arg[1] == '+') {
421 /* kprobes don't support file offsets */
422 if (is_kprobe)
423 return -EINVAL;
424
425 ret = kstrtol(arg + 2, 0, &offset);
426 if (ret)
427 break;
428
429 f->fn = t->fetch[FETCH_MTD_file_offset];
430 f->data = (void *)offset;
431 } else {
432 /* uprobes don't support symbols */
433 if (!is_kprobe)
434 return -EINVAL;
435
436 ret = traceprobe_split_symbol_offset(arg + 1, &offset);
437 if (ret)
438 break;
439
440 f->data = alloc_symbol_cache(arg + 1, offset);
441 if (f->data)
442 f->fn = t->fetch[FETCH_MTD_symbol];
443 }
444 break;
445
446 case '+': /* deref memory */
447 arg++; /* Skip '+', because kstrtol() rejects it. */
448 case '-':
449 tmp = strchr(arg, '(');
450 if (!tmp)
451 break;
452
453 *tmp = '\0';
454 ret = kstrtol(arg, 0, &offset);
455
456 if (ret)
457 break;
458
459 arg = tmp + 1;
460 tmp = strrchr(arg, ')');
461
462 if (tmp) {
463 struct deref_fetch_param *dprm;
464 const struct fetch_type *t2;
465
466 t2 = find_fetch_type(NULL, ftbl);
467 *tmp = '\0';
468 dprm = kzalloc(sizeof(struct deref_fetch_param), GFP_KERNEL);
469
470 if (!dprm)
471 return -ENOMEM;
472
473 dprm->offset = offset;
474 dprm->fetch = t->fetch[FETCH_MTD_memory];
475 dprm->fetch_size = get_fetch_size_function(t,
476 dprm->fetch, ftbl);
477 ret = parse_probe_arg(arg, t2, &dprm->orig, is_return,
478 is_kprobe, ftbl);
479 if (ret)
480 kfree(dprm);
481 else {
482 f->fn = t->fetch[FETCH_MTD_deref];
483 f->data = (void *)dprm;
484 }
485 }
486 break;
487 }
488 if (!ret && !f->fn) { /* Parsed, but do not find fetch method */
489 pr_info("%s type has no corresponding fetch method.\n", t->name);
490 ret = -EINVAL;
491 }
492
493 return ret;
494}
495
496#define BYTES_TO_BITS(nb) ((BITS_PER_LONG * (nb)) / sizeof(long))
497
498/* Bitfield type needs to be parsed into a fetch function */
499static int __parse_bitfield_probe_arg(const char *bf,
500 const struct fetch_type *t,
501 struct fetch_param *f)
502{
503 struct bitfield_fetch_param *bprm;
504 unsigned long bw, bo;
505 char *tail;
506
507 if (*bf != 'b')
508 return 0;
509
510 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
511 if (!bprm)
512 return -ENOMEM;
513
514 bprm->orig = *f;
515 f->fn = t->fetch[FETCH_MTD_bitfield];
516 f->data = (void *)bprm;
517 bw = simple_strtoul(bf + 1, &tail, 0); /* Use simple one */
518
519 if (bw == 0 || *tail != '@')
520 return -EINVAL;
521
522 bf = tail + 1;
523 bo = simple_strtoul(bf, &tail, 0);
524
525 if (tail == bf || *tail != '/')
526 return -EINVAL;
527
528 bprm->hi_shift = BYTES_TO_BITS(t->size) - (bw + bo);
529 bprm->low_shift = bprm->hi_shift + bo;
530
531 return (BYTES_TO_BITS(t->size) < (bw + bo)) ? -EINVAL : 0;
532}
533
534/* String length checking wrapper */
535int traceprobe_parse_probe_arg(char *arg, ssize_t *size,
536 struct probe_arg *parg, bool is_return, bool is_kprobe,
537 const struct fetch_type *ftbl)
538{
539 const char *t;
540 int ret;
541
542 if (strlen(arg) > MAX_ARGSTR_LEN) {
543 pr_info("Argument is too long.: %s\n", arg);
544 return -ENOSPC;
545 }
546 parg->comm = kstrdup(arg, GFP_KERNEL);
547 if (!parg->comm) {
548 pr_info("Failed to allocate memory for command '%s'.\n", arg);
549 return -ENOMEM;
550 }
551 t = strchr(parg->comm, ':');
552 if (t) {
553 arg[t - parg->comm] = '\0';
554 t++;
555 }
556 /*
557 * The default type of $comm should be "string", and it can't be
558 * dereferenced.
559 */
560 if (!t && strcmp(arg, "$comm") == 0)
561 t = "string";
562 parg->type = find_fetch_type(t, ftbl);
563 if (!parg->type) {
564 pr_info("Unsupported type: %s\n", t);
565 return -EINVAL;
566 }
567 parg->offset = *size;
568 *size += parg->type->size;
569 ret = parse_probe_arg(arg, parg->type, &parg->fetch, is_return,
570 is_kprobe, ftbl);
571
572 if (ret >= 0 && t != NULL)
573 ret = __parse_bitfield_probe_arg(t, parg->type, &parg->fetch);
574
575 if (ret >= 0) {
576 parg->fetch_size.fn = get_fetch_size_function(parg->type,
577 parg->fetch.fn,
578 ftbl);
579 parg->fetch_size.data = parg->fetch.data;
580 }
581
582 return ret;
583}
584
585/* Return 1 if name is reserved or already used by another argument */
586int traceprobe_conflict_field_name(const char *name,
587 struct probe_arg *args, int narg)
588{
589 int i;
590
591 for (i = 0; i < ARRAY_SIZE(reserved_field_names); i++)
592 if (strcmp(reserved_field_names[i], name) == 0)
593 return 1;
594
595 for (i = 0; i < narg; i++)
596 if (strcmp(args[i].name, name) == 0)
597 return 1;
598
599 return 0;
600}
601
602void traceprobe_update_arg(struct probe_arg *arg)
603{
604 if (CHECK_FETCH_FUNCS(bitfield, arg->fetch.fn))
605 update_bitfield_fetch_param(arg->fetch.data);
606 else if (CHECK_FETCH_FUNCS(deref, arg->fetch.fn))
607 update_deref_fetch_param(arg->fetch.data);
608 else if (CHECK_FETCH_FUNCS(symbol, arg->fetch.fn))
609 update_symbol_cache(arg->fetch.data);
610}
611
612void traceprobe_free_probe_arg(struct probe_arg *arg)
613{
614 if (CHECK_FETCH_FUNCS(bitfield, arg->fetch.fn))
615 free_bitfield_fetch_param(arg->fetch.data);
616 else if (CHECK_FETCH_FUNCS(deref, arg->fetch.fn))
617 free_deref_fetch_param(arg->fetch.data);
618 else if (CHECK_FETCH_FUNCS(symbol, arg->fetch.fn))
619 free_symbol_cache(arg->fetch.data);
620
621 kfree(arg->name);
622 kfree(arg->comm);
623}
624
625int traceprobe_command(const char *buf, int (*createfn)(int, char **))
626{
627 char **argv;
628 int argc, ret;
629
630 argc = 0;
631 ret = 0;
632 argv = argv_split(GFP_KERNEL, buf, &argc);
633 if (!argv)
634 return -ENOMEM;
635
636 if (argc)
637 ret = createfn(argc, argv);
638
639 argv_free(argv);
640
641 return ret;
642}
643
644#define WRITE_BUFSIZE 4096
645
646ssize_t traceprobe_probes_write(struct file *file, const char __user *buffer,
647 size_t count, loff_t *ppos,
648 int (*createfn)(int, char **))
649{
650 char *kbuf, *tmp;
651 int ret = 0;
652 size_t done = 0;
653 size_t size;
654
655 kbuf = kmalloc(WRITE_BUFSIZE, GFP_KERNEL);
656 if (!kbuf)
657 return -ENOMEM;
658
659 while (done < count) {
660 size = count - done;
661
662 if (size >= WRITE_BUFSIZE)
663 size = WRITE_BUFSIZE - 1;
664
665 if (copy_from_user(kbuf, buffer + done, size)) {
666 ret = -EFAULT;
667 goto out;
668 }
669 kbuf[size] = '\0';
670 tmp = strchr(kbuf, '\n');
671
672 if (tmp) {
673 *tmp = '\0';
674 size = tmp - kbuf + 1;
675 } else if (done + size < count) {
676 pr_warn("Line length is too long: Should be less than %d\n",
677 WRITE_BUFSIZE);
678 ret = -EINVAL;
679 goto out;
680 }
681 done += size;
682 /* Remove comments */
683 tmp = strchr(kbuf, '#');
684
685 if (tmp)
686 *tmp = '\0';
687
688 ret = traceprobe_command(kbuf, createfn);
689 if (ret)
690 goto out;
691 }
692 ret = done;
693
694out:
695 kfree(kbuf);
696
697 return ret;
698}
699
700static int __set_print_fmt(struct trace_probe *tp, char *buf, int len,
701 bool is_return)
702{
703 int i;
704 int pos = 0;
705
706 const char *fmt, *arg;
707
708 if (!is_return) {
709 fmt = "(%lx)";
710 arg = "REC->" FIELD_STRING_IP;
711 } else {
712 fmt = "(%lx <- %lx)";
713 arg = "REC->" FIELD_STRING_FUNC ", REC->" FIELD_STRING_RETIP;
714 }
715
716 /* When len=0, we just calculate the needed length */
717#define LEN_OR_ZERO (len ? len - pos : 0)
718
719 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", fmt);
720
721 for (i = 0; i < tp->nr_args; i++) {
722 pos += snprintf(buf + pos, LEN_OR_ZERO, " %s=%s",
723 tp->args[i].name, tp->args[i].type->fmt);
724 }
725
726 pos += snprintf(buf + pos, LEN_OR_ZERO, "\", %s", arg);
727
728 for (i = 0; i < tp->nr_args; i++) {
729 if (strcmp(tp->args[i].type->name, "string") == 0)
730 pos += snprintf(buf + pos, LEN_OR_ZERO,
731 ", __get_str(%s)",
732 tp->args[i].name);
733 else
734 pos += snprintf(buf + pos, LEN_OR_ZERO, ", REC->%s",
735 tp->args[i].name);
736 }
737
738#undef LEN_OR_ZERO
739
740 /* return the length of print_fmt */
741 return pos;
742}
743
744int set_print_fmt(struct trace_probe *tp, bool is_return)
745{
746 int len;
747 char *print_fmt;
748
749 /* First: called with 0 length to calculate the needed length */
750 len = __set_print_fmt(tp, NULL, 0, is_return);
751 print_fmt = kmalloc(len + 1, GFP_KERNEL);
752 if (!print_fmt)
753 return -ENOMEM;
754
755 /* Second: actually write the @print_fmt */
756 __set_print_fmt(tp, print_fmt, len + 1, is_return);
757 tp->call.print_fmt = print_fmt;
758
759 return 0;
760}
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) \
40int PRINT_TYPE_FUNC_NAME(type)(struct trace_seq *s, const char *name, \
41 void *data, void *ent) \
42{ \
43 trace_seq_printf(s, " %s=" fmt, name, *(type *)data); \
44 return !trace_seq_has_overflowed(s); \
45} \
46const char PRINT_TYPE_FMT_NAME(type)[] = fmt; \
47NOKPROBE_SYMBOL(PRINT_TYPE_FUNC_NAME(type));
48
49DEFINE_BASIC_PRINT_TYPE_FUNC(u8 , "0x%x")
50DEFINE_BASIC_PRINT_TYPE_FUNC(u16, "0x%x")
51DEFINE_BASIC_PRINT_TYPE_FUNC(u32, "0x%x")
52DEFINE_BASIC_PRINT_TYPE_FUNC(u64, "0x%Lx")
53DEFINE_BASIC_PRINT_TYPE_FUNC(s8, "%d")
54DEFINE_BASIC_PRINT_TYPE_FUNC(s16, "%d")
55DEFINE_BASIC_PRINT_TYPE_FUNC(s32, "%d")
56DEFINE_BASIC_PRINT_TYPE_FUNC(s64, "%Ld")
57
58/* Print type function for string type */
59int PRINT_TYPE_FUNC_NAME(string)(struct trace_seq *s, const char *name,
60 void *data, void *ent)
61{
62 int len = *(u32 *)data >> 16;
63
64 if (!len)
65 trace_seq_printf(s, " %s=(fault)", name);
66 else
67 trace_seq_printf(s, " %s=\"%s\"", name,
68 (const char *)get_loc_data(data, ent));
69 return !trace_seq_has_overflowed(s);
70}
71NOKPROBE_SYMBOL(PRINT_TYPE_FUNC_NAME(string));
72
73const char PRINT_TYPE_FMT_NAME(string)[] = "\\\"%s\\\"";
74
75#define CHECK_FETCH_FUNCS(method, fn) \
76 (((FETCH_FUNC_NAME(method, u8) == fn) || \
77 (FETCH_FUNC_NAME(method, u16) == fn) || \
78 (FETCH_FUNC_NAME(method, u32) == fn) || \
79 (FETCH_FUNC_NAME(method, u64) == fn) || \
80 (FETCH_FUNC_NAME(method, string) == fn) || \
81 (FETCH_FUNC_NAME(method, string_size) == fn)) \
82 && (fn != NULL))
83
84/* Data fetch function templates */
85#define DEFINE_FETCH_reg(type) \
86void FETCH_FUNC_NAME(reg, type)(struct pt_regs *regs, void *offset, void *dest) \
87{ \
88 *(type *)dest = (type)regs_get_register(regs, \
89 (unsigned int)((unsigned long)offset)); \
90} \
91NOKPROBE_SYMBOL(FETCH_FUNC_NAME(reg, type));
92DEFINE_BASIC_FETCH_FUNCS(reg)
93/* No string on the register */
94#define fetch_reg_string NULL
95#define fetch_reg_string_size NULL
96
97#define DEFINE_FETCH_retval(type) \
98void FETCH_FUNC_NAME(retval, type)(struct pt_regs *regs, \
99 void *dummy, void *dest) \
100{ \
101 *(type *)dest = (type)regs_return_value(regs); \
102} \
103NOKPROBE_SYMBOL(FETCH_FUNC_NAME(retval, type));
104DEFINE_BASIC_FETCH_FUNCS(retval)
105/* No string on the retval */
106#define fetch_retval_string NULL
107#define fetch_retval_string_size NULL
108
109/* Dereference memory access function */
110struct deref_fetch_param {
111 struct fetch_param orig;
112 long offset;
113 fetch_func_t fetch;
114 fetch_func_t fetch_size;
115};
116
117#define DEFINE_FETCH_deref(type) \
118void FETCH_FUNC_NAME(deref, type)(struct pt_regs *regs, \
119 void *data, void *dest) \
120{ \
121 struct deref_fetch_param *dprm = data; \
122 unsigned long addr; \
123 call_fetch(&dprm->orig, regs, &addr); \
124 if (addr) { \
125 addr += dprm->offset; \
126 dprm->fetch(regs, (void *)addr, dest); \
127 } else \
128 *(type *)dest = 0; \
129} \
130NOKPROBE_SYMBOL(FETCH_FUNC_NAME(deref, type));
131DEFINE_BASIC_FETCH_FUNCS(deref)
132DEFINE_FETCH_deref(string)
133
134void FETCH_FUNC_NAME(deref, string_size)(struct pt_regs *regs,
135 void *data, void *dest)
136{
137 struct deref_fetch_param *dprm = data;
138 unsigned long addr;
139
140 call_fetch(&dprm->orig, regs, &addr);
141 if (addr && dprm->fetch_size) {
142 addr += dprm->offset;
143 dprm->fetch_size(regs, (void *)addr, dest);
144 } else
145 *(string_size *)dest = 0;
146}
147NOKPROBE_SYMBOL(FETCH_FUNC_NAME(deref, string_size));
148
149static void update_deref_fetch_param(struct deref_fetch_param *data)
150{
151 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
152 update_deref_fetch_param(data->orig.data);
153 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
154 update_symbol_cache(data->orig.data);
155}
156NOKPROBE_SYMBOL(update_deref_fetch_param);
157
158static void free_deref_fetch_param(struct deref_fetch_param *data)
159{
160 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
161 free_deref_fetch_param(data->orig.data);
162 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
163 free_symbol_cache(data->orig.data);
164 kfree(data);
165}
166NOKPROBE_SYMBOL(free_deref_fetch_param);
167
168/* Bitfield fetch function */
169struct bitfield_fetch_param {
170 struct fetch_param orig;
171 unsigned char hi_shift;
172 unsigned char low_shift;
173};
174
175#define DEFINE_FETCH_bitfield(type) \
176void FETCH_FUNC_NAME(bitfield, type)(struct pt_regs *regs, \
177 void *data, void *dest) \
178{ \
179 struct bitfield_fetch_param *bprm = data; \
180 type buf = 0; \
181 call_fetch(&bprm->orig, regs, &buf); \
182 if (buf) { \
183 buf <<= bprm->hi_shift; \
184 buf >>= bprm->low_shift; \
185 } \
186 *(type *)dest = buf; \
187} \
188NOKPROBE_SYMBOL(FETCH_FUNC_NAME(bitfield, type));
189DEFINE_BASIC_FETCH_FUNCS(bitfield)
190#define fetch_bitfield_string NULL
191#define fetch_bitfield_string_size NULL
192
193static void
194update_bitfield_fetch_param(struct bitfield_fetch_param *data)
195{
196 /*
197 * Don't check the bitfield itself, because this must be the
198 * last fetch function.
199 */
200 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
201 update_deref_fetch_param(data->orig.data);
202 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
203 update_symbol_cache(data->orig.data);
204}
205
206static void
207free_bitfield_fetch_param(struct bitfield_fetch_param *data)
208{
209 /*
210 * Don't check the bitfield itself, because this must be the
211 * last fetch function.
212 */
213 if (CHECK_FETCH_FUNCS(deref, data->orig.fn))
214 free_deref_fetch_param(data->orig.data);
215 else if (CHECK_FETCH_FUNCS(symbol, data->orig.fn))
216 free_symbol_cache(data->orig.data);
217
218 kfree(data);
219}
220
221static const struct fetch_type *find_fetch_type(const char *type,
222 const struct fetch_type *ftbl)
223{
224 int i;
225
226 if (!type)
227 type = DEFAULT_FETCH_TYPE_STR;
228
229 /* Special case: bitfield */
230 if (*type == 'b') {
231 unsigned long bs;
232
233 type = strchr(type, '/');
234 if (!type)
235 goto fail;
236
237 type++;
238 if (kstrtoul(type, 0, &bs))
239 goto fail;
240
241 switch (bs) {
242 case 8:
243 return find_fetch_type("u8", ftbl);
244 case 16:
245 return find_fetch_type("u16", ftbl);
246 case 32:
247 return find_fetch_type("u32", ftbl);
248 case 64:
249 return find_fetch_type("u64", ftbl);
250 default:
251 goto fail;
252 }
253 }
254
255 for (i = 0; ftbl[i].name; i++) {
256 if (strcmp(type, ftbl[i].name) == 0)
257 return &ftbl[i];
258 }
259
260fail:
261 return NULL;
262}
263
264/* Special function : only accept unsigned long */
265static void fetch_kernel_stack_address(struct pt_regs *regs, void *dummy, void *dest)
266{
267 *(unsigned long *)dest = kernel_stack_pointer(regs);
268}
269NOKPROBE_SYMBOL(fetch_kernel_stack_address);
270
271static void fetch_user_stack_address(struct pt_regs *regs, void *dummy, void *dest)
272{
273 *(unsigned long *)dest = user_stack_pointer(regs);
274}
275NOKPROBE_SYMBOL(fetch_user_stack_address);
276
277static fetch_func_t get_fetch_size_function(const struct fetch_type *type,
278 fetch_func_t orig_fn,
279 const struct fetch_type *ftbl)
280{
281 int i;
282
283 if (type != &ftbl[FETCH_TYPE_STRING])
284 return NULL; /* Only string type needs size function */
285
286 for (i = 0; i < FETCH_MTD_END; i++)
287 if (type->fetch[i] == orig_fn)
288 return ftbl[FETCH_TYPE_STRSIZE].fetch[i];
289
290 WARN_ON(1); /* This should not happen */
291
292 return NULL;
293}
294
295/* Split symbol and offset. */
296int traceprobe_split_symbol_offset(char *symbol, unsigned long *offset)
297{
298 char *tmp;
299 int ret;
300
301 if (!offset)
302 return -EINVAL;
303
304 tmp = strchr(symbol, '+');
305 if (tmp) {
306 /* skip sign because kstrtoul doesn't accept '+' */
307 ret = kstrtoul(tmp + 1, 0, offset);
308 if (ret)
309 return ret;
310
311 *tmp = '\0';
312 } else
313 *offset = 0;
314
315 return 0;
316}
317
318#define PARAM_MAX_STACK (THREAD_SIZE / sizeof(unsigned long))
319
320static int parse_probe_vars(char *arg, const struct fetch_type *t,
321 struct fetch_param *f, bool is_return,
322 bool is_kprobe)
323{
324 int ret = 0;
325 unsigned long param;
326
327 if (strcmp(arg, "retval") == 0) {
328 if (is_return)
329 f->fn = t->fetch[FETCH_MTD_retval];
330 else
331 ret = -EINVAL;
332 } else if (strncmp(arg, "stack", 5) == 0) {
333 if (arg[5] == '\0') {
334 if (strcmp(t->name, DEFAULT_FETCH_TYPE_STR))
335 return -EINVAL;
336
337 if (is_kprobe)
338 f->fn = fetch_kernel_stack_address;
339 else
340 f->fn = fetch_user_stack_address;
341 } else if (isdigit(arg[5])) {
342 ret = kstrtoul(arg + 5, 10, ¶m);
343 if (ret || (is_kprobe && param > PARAM_MAX_STACK))
344 ret = -EINVAL;
345 else {
346 f->fn = t->fetch[FETCH_MTD_stack];
347 f->data = (void *)param;
348 }
349 } else
350 ret = -EINVAL;
351 } else
352 ret = -EINVAL;
353
354 return ret;
355}
356
357/* Recursive argument parser */
358static int parse_probe_arg(char *arg, const struct fetch_type *t,
359 struct fetch_param *f, bool is_return, bool is_kprobe,
360 const struct fetch_type *ftbl)
361{
362 unsigned long param;
363 long offset;
364 char *tmp;
365 int ret = 0;
366
367 switch (arg[0]) {
368 case '$':
369 ret = parse_probe_vars(arg + 1, t, f, is_return, is_kprobe);
370 break;
371
372 case '%': /* named register */
373 ret = regs_query_register_offset(arg + 1);
374 if (ret >= 0) {
375 f->fn = t->fetch[FETCH_MTD_reg];
376 f->data = (void *)(unsigned long)ret;
377 ret = 0;
378 }
379 break;
380
381 case '@': /* memory, file-offset or symbol */
382 if (isdigit(arg[1])) {
383 ret = kstrtoul(arg + 1, 0, ¶m);
384 if (ret)
385 break;
386
387 f->fn = t->fetch[FETCH_MTD_memory];
388 f->data = (void *)param;
389 } else if (arg[1] == '+') {
390 /* kprobes don't support file offsets */
391 if (is_kprobe)
392 return -EINVAL;
393
394 ret = kstrtol(arg + 2, 0, &offset);
395 if (ret)
396 break;
397
398 f->fn = t->fetch[FETCH_MTD_file_offset];
399 f->data = (void *)offset;
400 } else {
401 /* uprobes don't support symbols */
402 if (!is_kprobe)
403 return -EINVAL;
404
405 ret = traceprobe_split_symbol_offset(arg + 1, &offset);
406 if (ret)
407 break;
408
409 f->data = alloc_symbol_cache(arg + 1, offset);
410 if (f->data)
411 f->fn = t->fetch[FETCH_MTD_symbol];
412 }
413 break;
414
415 case '+': /* deref memory */
416 arg++; /* Skip '+', because kstrtol() rejects it. */
417 case '-':
418 tmp = strchr(arg, '(');
419 if (!tmp)
420 break;
421
422 *tmp = '\0';
423 ret = kstrtol(arg, 0, &offset);
424
425 if (ret)
426 break;
427
428 arg = tmp + 1;
429 tmp = strrchr(arg, ')');
430
431 if (tmp) {
432 struct deref_fetch_param *dprm;
433 const struct fetch_type *t2;
434
435 t2 = find_fetch_type(NULL, ftbl);
436 *tmp = '\0';
437 dprm = kzalloc(sizeof(struct deref_fetch_param), GFP_KERNEL);
438
439 if (!dprm)
440 return -ENOMEM;
441
442 dprm->offset = offset;
443 dprm->fetch = t->fetch[FETCH_MTD_memory];
444 dprm->fetch_size = get_fetch_size_function(t,
445 dprm->fetch, ftbl);
446 ret = parse_probe_arg(arg, t2, &dprm->orig, is_return,
447 is_kprobe, ftbl);
448 if (ret)
449 kfree(dprm);
450 else {
451 f->fn = t->fetch[FETCH_MTD_deref];
452 f->data = (void *)dprm;
453 }
454 }
455 break;
456 }
457 if (!ret && !f->fn) { /* Parsed, but do not find fetch method */
458 pr_info("%s type has no corresponding fetch method.\n", t->name);
459 ret = -EINVAL;
460 }
461
462 return ret;
463}
464
465#define BYTES_TO_BITS(nb) ((BITS_PER_LONG * (nb)) / sizeof(long))
466
467/* Bitfield type needs to be parsed into a fetch function */
468static int __parse_bitfield_probe_arg(const char *bf,
469 const struct fetch_type *t,
470 struct fetch_param *f)
471{
472 struct bitfield_fetch_param *bprm;
473 unsigned long bw, bo;
474 char *tail;
475
476 if (*bf != 'b')
477 return 0;
478
479 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
480 if (!bprm)
481 return -ENOMEM;
482
483 bprm->orig = *f;
484 f->fn = t->fetch[FETCH_MTD_bitfield];
485 f->data = (void *)bprm;
486 bw = simple_strtoul(bf + 1, &tail, 0); /* Use simple one */
487
488 if (bw == 0 || *tail != '@')
489 return -EINVAL;
490
491 bf = tail + 1;
492 bo = simple_strtoul(bf, &tail, 0);
493
494 if (tail == bf || *tail != '/')
495 return -EINVAL;
496
497 bprm->hi_shift = BYTES_TO_BITS(t->size) - (bw + bo);
498 bprm->low_shift = bprm->hi_shift + bo;
499
500 return (BYTES_TO_BITS(t->size) < (bw + bo)) ? -EINVAL : 0;
501}
502
503/* String length checking wrapper */
504int traceprobe_parse_probe_arg(char *arg, ssize_t *size,
505 struct probe_arg *parg, bool is_return, bool is_kprobe,
506 const struct fetch_type *ftbl)
507{
508 const char *t;
509 int ret;
510
511 if (strlen(arg) > MAX_ARGSTR_LEN) {
512 pr_info("Argument is too long.: %s\n", arg);
513 return -ENOSPC;
514 }
515 parg->comm = kstrdup(arg, GFP_KERNEL);
516 if (!parg->comm) {
517 pr_info("Failed to allocate memory for command '%s'.\n", arg);
518 return -ENOMEM;
519 }
520 t = strchr(parg->comm, ':');
521 if (t) {
522 arg[t - parg->comm] = '\0';
523 t++;
524 }
525 parg->type = find_fetch_type(t, ftbl);
526 if (!parg->type) {
527 pr_info("Unsupported type: %s\n", t);
528 return -EINVAL;
529 }
530 parg->offset = *size;
531 *size += parg->type->size;
532 ret = parse_probe_arg(arg, parg->type, &parg->fetch, is_return,
533 is_kprobe, ftbl);
534
535 if (ret >= 0 && t != NULL)
536 ret = __parse_bitfield_probe_arg(t, parg->type, &parg->fetch);
537
538 if (ret >= 0) {
539 parg->fetch_size.fn = get_fetch_size_function(parg->type,
540 parg->fetch.fn,
541 ftbl);
542 parg->fetch_size.data = parg->fetch.data;
543 }
544
545 return ret;
546}
547
548/* Return 1 if name is reserved or already used by another argument */
549int traceprobe_conflict_field_name(const char *name,
550 struct probe_arg *args, int narg)
551{
552 int i;
553
554 for (i = 0; i < ARRAY_SIZE(reserved_field_names); i++)
555 if (strcmp(reserved_field_names[i], name) == 0)
556 return 1;
557
558 for (i = 0; i < narg; i++)
559 if (strcmp(args[i].name, name) == 0)
560 return 1;
561
562 return 0;
563}
564
565void traceprobe_update_arg(struct probe_arg *arg)
566{
567 if (CHECK_FETCH_FUNCS(bitfield, arg->fetch.fn))
568 update_bitfield_fetch_param(arg->fetch.data);
569 else if (CHECK_FETCH_FUNCS(deref, arg->fetch.fn))
570 update_deref_fetch_param(arg->fetch.data);
571 else if (CHECK_FETCH_FUNCS(symbol, arg->fetch.fn))
572 update_symbol_cache(arg->fetch.data);
573}
574
575void traceprobe_free_probe_arg(struct probe_arg *arg)
576{
577 if (CHECK_FETCH_FUNCS(bitfield, arg->fetch.fn))
578 free_bitfield_fetch_param(arg->fetch.data);
579 else if (CHECK_FETCH_FUNCS(deref, arg->fetch.fn))
580 free_deref_fetch_param(arg->fetch.data);
581 else if (CHECK_FETCH_FUNCS(symbol, arg->fetch.fn))
582 free_symbol_cache(arg->fetch.data);
583
584 kfree(arg->name);
585 kfree(arg->comm);
586}
587
588int traceprobe_command(const char *buf, int (*createfn)(int, char **))
589{
590 char **argv;
591 int argc, ret;
592
593 argc = 0;
594 ret = 0;
595 argv = argv_split(GFP_KERNEL, buf, &argc);
596 if (!argv)
597 return -ENOMEM;
598
599 if (argc)
600 ret = createfn(argc, argv);
601
602 argv_free(argv);
603
604 return ret;
605}
606
607#define WRITE_BUFSIZE 4096
608
609ssize_t traceprobe_probes_write(struct file *file, const char __user *buffer,
610 size_t count, loff_t *ppos,
611 int (*createfn)(int, char **))
612{
613 char *kbuf, *tmp;
614 int ret = 0;
615 size_t done = 0;
616 size_t size;
617
618 kbuf = kmalloc(WRITE_BUFSIZE, GFP_KERNEL);
619 if (!kbuf)
620 return -ENOMEM;
621
622 while (done < count) {
623 size = count - done;
624
625 if (size >= WRITE_BUFSIZE)
626 size = WRITE_BUFSIZE - 1;
627
628 if (copy_from_user(kbuf, buffer + done, size)) {
629 ret = -EFAULT;
630 goto out;
631 }
632 kbuf[size] = '\0';
633 tmp = strchr(kbuf, '\n');
634
635 if (tmp) {
636 *tmp = '\0';
637 size = tmp - kbuf + 1;
638 } else if (done + size < count) {
639 pr_warn("Line length is too long: Should be less than %d\n",
640 WRITE_BUFSIZE);
641 ret = -EINVAL;
642 goto out;
643 }
644 done += size;
645 /* Remove comments */
646 tmp = strchr(kbuf, '#');
647
648 if (tmp)
649 *tmp = '\0';
650
651 ret = traceprobe_command(kbuf, createfn);
652 if (ret)
653 goto out;
654 }
655 ret = done;
656
657out:
658 kfree(kbuf);
659
660 return ret;
661}
662
663static int __set_print_fmt(struct trace_probe *tp, char *buf, int len,
664 bool is_return)
665{
666 int i;
667 int pos = 0;
668
669 const char *fmt, *arg;
670
671 if (!is_return) {
672 fmt = "(%lx)";
673 arg = "REC->" FIELD_STRING_IP;
674 } else {
675 fmt = "(%lx <- %lx)";
676 arg = "REC->" FIELD_STRING_FUNC ", REC->" FIELD_STRING_RETIP;
677 }
678
679 /* When len=0, we just calculate the needed length */
680#define LEN_OR_ZERO (len ? len - pos : 0)
681
682 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", fmt);
683
684 for (i = 0; i < tp->nr_args; i++) {
685 pos += snprintf(buf + pos, LEN_OR_ZERO, " %s=%s",
686 tp->args[i].name, tp->args[i].type->fmt);
687 }
688
689 pos += snprintf(buf + pos, LEN_OR_ZERO, "\", %s", arg);
690
691 for (i = 0; i < tp->nr_args; i++) {
692 if (strcmp(tp->args[i].type->name, "string") == 0)
693 pos += snprintf(buf + pos, LEN_OR_ZERO,
694 ", __get_str(%s)",
695 tp->args[i].name);
696 else
697 pos += snprintf(buf + pos, LEN_OR_ZERO, ", REC->%s",
698 tp->args[i].name);
699 }
700
701#undef LEN_OR_ZERO
702
703 /* return the length of print_fmt */
704 return pos;
705}
706
707int set_print_fmt(struct trace_probe *tp, bool is_return)
708{
709 int len;
710 char *print_fmt;
711
712 /* First: called with 0 length to calculate the needed length */
713 len = __set_print_fmt(tp, NULL, 0, is_return);
714 print_fmt = kmalloc(len + 1, GFP_KERNEL);
715 if (!print_fmt)
716 return -ENOMEM;
717
718 /* Second: actually write the @print_fmt */
719 __set_print_fmt(tp, print_fmt, len + 1, is_return);
720 tp->call.print_fmt = print_fmt;
721
722 return 0;
723}