2 * probe-file.c : operate ftrace k/uprobe events files
4 * Written by Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
20 #include <sys/types.h>
26 #include "strfilter.h"
32 #include <api/fs/tracing_path.h>
33 #include "probe-event.h"
34 #include "probe-file.h"
36 #include "perf_regs.h"
39 /* 4096 - 2 ('\n' + '\0') */
40 #define MAX_CMDLEN 4094
42 static void print_open_warning(int err
, bool uprobe
)
44 char sbuf
[STRERR_BUFSIZE
];
50 config
= "CONFIG_UPROBE_EVENTS";
52 config
= "CONFIG_KPROBE_EVENTS";
54 pr_warning("%cprobe_events file does not exist"
55 " - please rebuild kernel with %s.\n",
56 uprobe
? 'u' : 'k', config
);
57 } else if (err
== -ENOTSUP
)
58 pr_warning("Tracefs or debugfs is not mounted.\n");
60 pr_warning("Failed to open %cprobe_events: %s\n",
62 str_error_r(-err
, sbuf
, sizeof(sbuf
)));
65 static void print_both_open_warning(int kerr
, int uerr
)
67 /* Both kprobes and uprobes are disabled, warn it. */
68 if (kerr
== -ENOTSUP
&& uerr
== -ENOTSUP
)
69 pr_warning("Tracefs or debugfs is not mounted.\n");
70 else if (kerr
== -ENOENT
&& uerr
== -ENOENT
)
71 pr_warning("Please rebuild kernel with CONFIG_KPROBE_EVENTS "
72 "or/and CONFIG_UPROBE_EVENTS.\n");
74 char sbuf
[STRERR_BUFSIZE
];
75 pr_warning("Failed to open kprobe events: %s.\n",
76 str_error_r(-kerr
, sbuf
, sizeof(sbuf
)));
77 pr_warning("Failed to open uprobe events: %s.\n",
78 str_error_r(-uerr
, sbuf
, sizeof(sbuf
)));
82 int open_trace_file(const char *trace_file
, bool readwrite
)
87 ret
= e_snprintf(buf
, PATH_MAX
, "%s/%s", tracing_path_mount(), trace_file
);
89 pr_debug("Opening %s write=%d\n", buf
, readwrite
);
90 if (readwrite
&& !probe_event_dry_run
)
91 ret
= open(buf
, O_RDWR
| O_APPEND
, 0);
93 ret
= open(buf
, O_RDONLY
, 0);
101 static int open_kprobe_events(bool readwrite
)
103 return open_trace_file("kprobe_events", readwrite
);
106 static int open_uprobe_events(bool readwrite
)
108 return open_trace_file("uprobe_events", readwrite
);
111 int probe_file__open(int flag
)
115 if (flag
& PF_FL_UPROBE
)
116 fd
= open_uprobe_events(flag
& PF_FL_RW
);
118 fd
= open_kprobe_events(flag
& PF_FL_RW
);
120 print_open_warning(fd
, flag
& PF_FL_UPROBE
);
125 int probe_file__open_both(int *kfd
, int *ufd
, int flag
)
130 *kfd
= open_kprobe_events(flag
& PF_FL_RW
);
131 *ufd
= open_uprobe_events(flag
& PF_FL_RW
);
132 if (*kfd
< 0 && *ufd
< 0) {
133 print_both_open_warning(*kfd
, *ufd
);
140 /* Get raw string list of current kprobe_events or uprobe_events */
141 struct strlist
*probe_file__get_rawlist(int fd
)
145 char buf
[MAX_CMDLEN
];
152 sl
= strlist__new(NULL
, NULL
);
160 fp
= fdopen(fddup
, "r");
162 goto out_close_fddup
;
165 p
= fgets(buf
, MAX_CMDLEN
, fp
);
172 ret
= strlist__add(sl
, buf
);
174 pr_debug("strlist__add failed (%d)\n", ret
);
192 static struct strlist
*__probe_file__get_namelist(int fd
, bool include_group
)
195 struct strlist
*sl
, *rawlist
;
196 struct str_node
*ent
;
197 struct probe_trace_event tev
;
200 memset(&tev
, 0, sizeof(tev
));
201 rawlist
= probe_file__get_rawlist(fd
);
204 sl
= strlist__new(NULL
, NULL
);
205 strlist__for_each_entry(ent
, rawlist
) {
206 ret
= parse_probe_trace_command(ent
->s
, &tev
);
210 ret
= e_snprintf(buf
, 128, "%s:%s", tev
.group
,
213 ret
= strlist__add(sl
, buf
);
215 ret
= strlist__add(sl
, tev
.event
);
216 clear_probe_trace_event(&tev
);
220 strlist__delete(rawlist
);
229 /* Get current perf-probe event names */
230 struct strlist
*probe_file__get_namelist(int fd
)
232 return __probe_file__get_namelist(fd
, false);
235 int probe_file__add_event(int fd
, struct probe_trace_event
*tev
)
238 char *buf
= synthesize_probe_trace_command(tev
);
239 char sbuf
[STRERR_BUFSIZE
];
242 pr_debug("Failed to synthesize probe trace event.\n");
246 pr_debug("Writing event: %s\n", buf
);
247 if (!probe_event_dry_run
) {
248 if (write(fd
, buf
, strlen(buf
)) < (int)strlen(buf
)) {
250 pr_warning("Failed to write event: %s\n",
251 str_error_r(errno
, sbuf
, sizeof(sbuf
)));
259 static int __del_trace_probe_event(int fd
, struct str_node
*ent
)
265 /* Convert from perf-probe event to trace-probe event */
266 ret
= e_snprintf(buf
, 128, "-:%s", ent
->s
);
270 p
= strchr(buf
+ 2, ':');
272 pr_debug("Internal error: %s should have ':' but not.\n",
279 pr_debug("Writing event: %s\n", buf
);
280 ret
= write(fd
, buf
, strlen(buf
));
288 pr_warning("Failed to delete event: %s\n",
289 str_error_r(-ret
, buf
, sizeof(buf
)));
293 int probe_file__get_events(int fd
, struct strfilter
*filter
,
294 struct strlist
*plist
)
296 struct strlist
*namelist
;
297 struct str_node
*ent
;
304 namelist
= __probe_file__get_namelist(fd
, true);
308 strlist__for_each_entry(ent
, namelist
) {
309 p
= strchr(ent
->s
, ':');
310 if ((p
&& strfilter__compare(filter
, p
+ 1)) ||
311 strfilter__compare(filter
, ent
->s
)) {
312 strlist__add(plist
, ent
->s
);
316 strlist__delete(namelist
);
321 int probe_file__del_strlist(int fd
, struct strlist
*namelist
)
324 struct str_node
*ent
;
326 strlist__for_each_entry(ent
, namelist
) {
327 ret
= __del_trace_probe_event(fd
, ent
);
334 int probe_file__del_events(int fd
, struct strfilter
*filter
)
336 struct strlist
*namelist
;
339 namelist
= strlist__new(NULL
, NULL
);
343 ret
= probe_file__get_events(fd
, filter
, namelist
);
347 ret
= probe_file__del_strlist(fd
, namelist
);
348 strlist__delete(namelist
);
353 /* Caller must ensure to remove this entry from list */
354 static void probe_cache_entry__delete(struct probe_cache_entry
*entry
)
357 BUG_ON(!list_empty(&entry
->node
));
359 strlist__delete(entry
->tevlist
);
360 clear_perf_probe_event(&entry
->pev
);
366 static struct probe_cache_entry
*
367 probe_cache_entry__new(struct perf_probe_event
*pev
)
369 struct probe_cache_entry
*entry
= zalloc(sizeof(*entry
));
372 INIT_LIST_HEAD(&entry
->node
);
373 entry
->tevlist
= strlist__new(NULL
, NULL
);
377 entry
->spev
= synthesize_perf_probe_command(pev
);
379 perf_probe_event__copy(&entry
->pev
, pev
) < 0) {
380 probe_cache_entry__delete(entry
);
389 int probe_cache_entry__get_event(struct probe_cache_entry
*entry
,
390 struct probe_trace_event
**tevs
)
392 struct probe_trace_event
*tev
;
393 struct str_node
*node
;
396 ret
= strlist__nr_entries(entry
->tevlist
);
397 if (ret
> probe_conf
.max_probes
)
400 *tevs
= zalloc(ret
* sizeof(*tev
));
405 strlist__for_each_entry(node
, entry
->tevlist
) {
407 ret
= parse_probe_trace_command(node
->s
, tev
);
414 /* For the kernel probe caches, pass target = NULL or DSO__NAME_KALLSYMS */
415 static int probe_cache__open(struct probe_cache
*pcache
, const char *target
,
418 char cpath
[PATH_MAX
];
419 char sbuildid
[SBUILD_ID_SIZE
];
420 char *dir_name
= NULL
;
421 bool is_kallsyms
= false;
425 if (target
&& build_id_cache__cached(target
)) {
426 /* This is a cached buildid */
427 strncpy(sbuildid
, target
, SBUILD_ID_SIZE
);
428 dir_name
= build_id_cache__linkname(sbuildid
, NULL
, 0);
432 if (!target
|| !strcmp(target
, DSO__NAME_KALLSYMS
)) {
433 target
= DSO__NAME_KALLSYMS
;
435 ret
= sysfs__sprintf_build_id("/", sbuildid
);
437 nsinfo__mountns_enter(nsi
, &nsc
);
438 ret
= filename__sprintf_build_id(target
, sbuildid
);
439 nsinfo__mountns_exit(&nsc
);
443 pr_debug("Failed to get build-id from %s.\n", target
);
447 /* If we have no buildid cache, make it */
448 if (!build_id_cache__cached(sbuildid
)) {
449 ret
= build_id_cache__add_s(sbuildid
, target
, nsi
,
452 pr_debug("Failed to add build-id cache: %s\n", target
);
457 dir_name
= build_id_cache__cachedir(sbuildid
, target
, nsi
, is_kallsyms
,
461 pr_debug("Failed to get cache from %s\n", target
);
465 snprintf(cpath
, PATH_MAX
, "%s/probes", dir_name
);
466 fd
= open(cpath
, O_CREAT
| O_RDWR
, 0644);
468 pr_debug("Failed to open cache(%d): %s\n", fd
, cpath
);
475 static int probe_cache__load(struct probe_cache
*pcache
)
477 struct probe_cache_entry
*entry
= NULL
;
478 char buf
[MAX_CMDLEN
], *p
;
482 fddup
= dup(pcache
->fd
);
485 fp
= fdopen(fddup
, "r");
492 if (!fgets(buf
, MAX_CMDLEN
, fp
))
494 p
= strchr(buf
, '\n');
497 /* #perf_probe_event or %sdt_event */
498 if (buf
[0] == '#' || buf
[0] == '%') {
499 entry
= probe_cache_entry__new(NULL
);
506 entry
->spev
= strdup(buf
+ 1);
508 ret
= parse_perf_probe_command(buf
+ 1,
513 probe_cache_entry__delete(entry
);
516 list_add_tail(&entry
->node
, &pcache
->entries
);
517 } else { /* trace_probe_event */
522 strlist__add(entry
->tevlist
, buf
);
530 static struct probe_cache
*probe_cache__alloc(void)
532 struct probe_cache
*pcache
= zalloc(sizeof(*pcache
));
535 INIT_LIST_HEAD(&pcache
->entries
);
536 pcache
->fd
= -EINVAL
;
541 void probe_cache__purge(struct probe_cache
*pcache
)
543 struct probe_cache_entry
*entry
, *n
;
545 list_for_each_entry_safe(entry
, n
, &pcache
->entries
, node
) {
546 list_del_init(&entry
->node
);
547 probe_cache_entry__delete(entry
);
551 void probe_cache__delete(struct probe_cache
*pcache
)
556 probe_cache__purge(pcache
);
562 struct probe_cache
*probe_cache__new(const char *target
, struct nsinfo
*nsi
)
564 struct probe_cache
*pcache
= probe_cache__alloc();
570 ret
= probe_cache__open(pcache
, target
, nsi
);
572 pr_debug("Cache open error: %d\n", ret
);
576 ret
= probe_cache__load(pcache
);
578 pr_debug("Cache read error: %d\n", ret
);
585 probe_cache__delete(pcache
);
589 static bool streql(const char *a
, const char *b
)
597 return !strcmp(a
, b
);
600 struct probe_cache_entry
*
601 probe_cache__find(struct probe_cache
*pcache
, struct perf_probe_event
*pev
)
603 struct probe_cache_entry
*entry
= NULL
;
604 char *cmd
= synthesize_perf_probe_command(pev
);
609 for_each_probe_cache_entry(entry
, pcache
) {
611 if (entry
->pev
.event
&&
612 streql(entry
->pev
.event
, pev
->event
) &&
614 streql(entry
->pev
.group
, pev
->group
)))
619 /* Hit if same event name or same command-string */
621 (streql(entry
->pev
.group
, pev
->group
) &&
622 streql(entry
->pev
.event
, pev
->event
))) ||
623 (!strcmp(entry
->spev
, cmd
)))
633 struct probe_cache_entry
*
634 probe_cache__find_by_name(struct probe_cache
*pcache
,
635 const char *group
, const char *event
)
637 struct probe_cache_entry
*entry
= NULL
;
639 for_each_probe_cache_entry(entry
, pcache
) {
640 /* Hit if same event name or same command-string */
641 if (streql(entry
->pev
.group
, group
) &&
642 streql(entry
->pev
.event
, event
))
651 int probe_cache__add_entry(struct probe_cache
*pcache
,
652 struct perf_probe_event
*pev
,
653 struct probe_trace_event
*tevs
, int ntevs
)
655 struct probe_cache_entry
*entry
= NULL
;
659 if (!pcache
|| !pev
|| !tevs
|| ntevs
<= 0) {
664 /* Remove old cache entry */
665 entry
= probe_cache__find(pcache
, pev
);
667 list_del_init(&entry
->node
);
668 probe_cache_entry__delete(entry
);
672 entry
= probe_cache_entry__new(pev
);
676 for (i
= 0; i
< ntevs
; i
++) {
677 if (!tevs
[i
].point
.symbol
)
680 command
= synthesize_probe_trace_command(&tevs
[i
]);
683 strlist__add(entry
->tevlist
, command
);
686 list_add_tail(&entry
->node
, &pcache
->entries
);
687 pr_debug("Added probe cache: %d\n", ntevs
);
691 pr_debug("Failed to add probe caches\n");
692 probe_cache_entry__delete(entry
);
696 #ifdef HAVE_GELF_GETNOTE_SUPPORT
697 static unsigned long long sdt_note__get_addr(struct sdt_note
*note
)
700 (unsigned long long)note
->addr
.a32
[SDT_NOTE_IDX_LOC
] :
701 (unsigned long long)note
->addr
.a64
[SDT_NOTE_IDX_LOC
];
704 static unsigned long long sdt_note__get_ref_ctr_offset(struct sdt_note
*note
)
707 (unsigned long long)note
->addr
.a32
[SDT_NOTE_IDX_REFCTR
] :
708 (unsigned long long)note
->addr
.a64
[SDT_NOTE_IDX_REFCTR
];
711 static const char * const type_to_suffix
[] = {
712 ":s64", "", "", "", ":s32", "", ":s16", ":s8",
713 "", ":u8", ":u16", "", ":u32", "", "", "", ":u64"
717 * Isolate the string number and convert it into a decimal value;
718 * this will be an index to get suffix of the uprobe name (defining
721 static int sdt_arg_parse_size(char *n_ptr
, const char **suffix
)
725 type_idx
= strtol(n_ptr
, NULL
, 10);
726 if (type_idx
< -8 || type_idx
> 8) {
727 pr_debug4("Failed to get a valid sdt type\n");
731 *suffix
= type_to_suffix
[type_idx
+ 8];
735 static int synthesize_sdt_probe_arg(struct strbuf
*buf
, int i
, const char *arg
)
737 char *op
, *desc
= strdup(arg
), *new_op
= NULL
;
738 const char *suffix
= "";
742 pr_debug4("Allocation error\n");
747 * Argument is in N@OP format. N is size of the argument and OP is
748 * the actual assembly operand. N can be omitted; in that case
749 * argument is just OP(without @).
751 op
= strchr(desc
, '@');
756 if (sdt_arg_parse_size(desc
, &suffix
))
762 ret
= arch_sdt_arg_parse_op(op
, &new_op
);
767 if (ret
== SDT_ARG_VALID
) {
768 ret
= strbuf_addf(buf
, " arg%d=%s%s", i
+ 1, new_op
, suffix
);
780 static char *synthesize_sdt_probe_command(struct sdt_note
*note
,
781 const char *pathname
,
785 char *ret
= NULL
, **args
;
786 int i
, args_count
, err
;
787 unsigned long long ref_ctr_offset
;
789 if (strbuf_init(&buf
, 32) < 0)
792 err
= strbuf_addf(&buf
, "p:%s/%s %s:0x%llx",
793 sdtgrp
, note
->name
, pathname
,
794 sdt_note__get_addr(note
));
796 ref_ctr_offset
= sdt_note__get_ref_ctr_offset(note
);
797 if (ref_ctr_offset
&& err
>= 0)
798 err
= strbuf_addf(&buf
, "(0x%llx)", ref_ctr_offset
);
807 args
= argv_split(note
->args
, &args_count
);
809 for (i
= 0; i
< args_count
; ++i
) {
810 if (synthesize_sdt_probe_arg(&buf
, i
, args
[i
]) < 0)
816 ret
= strbuf_detach(&buf
, NULL
);
818 strbuf_release(&buf
);
822 int probe_cache__scan_sdt(struct probe_cache
*pcache
, const char *pathname
)
824 struct probe_cache_entry
*entry
= NULL
;
825 struct list_head sdtlist
;
826 struct sdt_note
*note
;
831 INIT_LIST_HEAD(&sdtlist
);
832 ret
= get_sdt_note_list(&sdtlist
, pathname
);
834 pr_debug4("Failed to get sdt note: %d\n", ret
);
837 list_for_each_entry(note
, &sdtlist
, note_list
) {
838 ret
= snprintf(sdtgrp
, 64, "sdt_%s", note
->provider
);
841 /* Try to find same-name entry */
842 entry
= probe_cache__find_by_name(pcache
, sdtgrp
, note
->name
);
844 entry
= probe_cache_entry__new(NULL
);
850 ret
= asprintf(&entry
->spev
, "%s:%s=%s", sdtgrp
,
851 note
->name
, note
->name
);
854 entry
->pev
.event
= strdup(note
->name
);
855 entry
->pev
.group
= strdup(sdtgrp
);
856 list_add_tail(&entry
->node
, &pcache
->entries
);
858 buf
= synthesize_sdt_probe_command(note
, pathname
, sdtgrp
);
864 strlist__add(entry
->tevlist
, buf
);
869 list_del_init(&entry
->node
);
870 probe_cache_entry__delete(entry
);
872 cleanup_sdt_note_list(&sdtlist
);
877 static int probe_cache_entry__write(struct probe_cache_entry
*entry
, int fd
)
879 struct str_node
*snode
;
882 const char *prefix
= entry
->sdt
? "%" : "#";
884 /* Save stat for rollback */
885 ret
= fstat(fd
, &st
);
889 pr_debug("Writing cache: %s%s\n", prefix
, entry
->spev
);
890 iov
[0].iov_base
= (void *)prefix
; iov
[0].iov_len
= 1;
891 iov
[1].iov_base
= entry
->spev
; iov
[1].iov_len
= strlen(entry
->spev
);
892 iov
[2].iov_base
= (void *)"\n"; iov
[2].iov_len
= 1;
893 ret
= writev(fd
, iov
, 3);
894 if (ret
< (int)iov
[1].iov_len
+ 2)
897 strlist__for_each_entry(snode
, entry
->tevlist
) {
898 iov
[0].iov_base
= (void *)snode
->s
;
899 iov
[0].iov_len
= strlen(snode
->s
);
900 iov
[1].iov_base
= (void *)"\n"; iov
[1].iov_len
= 1;
901 ret
= writev(fd
, iov
, 2);
902 if (ret
< (int)iov
[0].iov_len
+ 1)
908 /* Rollback to avoid cache file corruption */
911 if (ftruncate(fd
, st
.st_size
) < 0)
917 int probe_cache__commit(struct probe_cache
*pcache
)
919 struct probe_cache_entry
*entry
;
922 /* TBD: if we do not update existing entries, skip it */
923 ret
= lseek(pcache
->fd
, 0, SEEK_SET
);
927 ret
= ftruncate(pcache
->fd
, 0);
931 for_each_probe_cache_entry(entry
, pcache
) {
932 ret
= probe_cache_entry__write(entry
, pcache
->fd
);
933 pr_debug("Cache committed: %d\n", ret
);
941 static bool probe_cache_entry__compare(struct probe_cache_entry
*entry
,
942 struct strfilter
*filter
)
944 char buf
[128], *ptr
= entry
->spev
;
946 if (entry
->pev
.event
) {
947 snprintf(buf
, 128, "%s:%s", entry
->pev
.group
, entry
->pev
.event
);
950 return strfilter__compare(filter
, ptr
);
953 int probe_cache__filter_purge(struct probe_cache
*pcache
,
954 struct strfilter
*filter
)
956 struct probe_cache_entry
*entry
, *tmp
;
958 list_for_each_entry_safe(entry
, tmp
, &pcache
->entries
, node
) {
959 if (probe_cache_entry__compare(entry
, filter
)) {
960 pr_info("Removed cached event: %s\n", entry
->spev
);
961 list_del_init(&entry
->node
);
962 probe_cache_entry__delete(entry
);
968 static int probe_cache__show_entries(struct probe_cache
*pcache
,
969 struct strfilter
*filter
)
971 struct probe_cache_entry
*entry
;
973 for_each_probe_cache_entry(entry
, pcache
) {
974 if (probe_cache_entry__compare(entry
, filter
))
975 printf("%s\n", entry
->spev
);
980 /* Show all cached probes */
981 int probe_cache__show_all_caches(struct strfilter
*filter
)
983 struct probe_cache
*pcache
;
984 struct strlist
*bidlist
;
986 char *buf
= strfilter__string(filter
);
988 pr_debug("list cache with filter: %s\n", buf
);
991 bidlist
= build_id_cache__list_all(true);
993 pr_debug("Failed to get buildids: %d\n", errno
);
996 strlist__for_each_entry(nd
, bidlist
) {
997 pcache
= probe_cache__new(nd
->s
, NULL
);
1000 if (!list_empty(&pcache
->entries
)) {
1001 buf
= build_id_cache__origname(nd
->s
);
1002 printf("%s (%s):\n", buf
, nd
->s
);
1004 probe_cache__show_entries(pcache
, filter
);
1006 probe_cache__delete(pcache
);
1008 strlist__delete(bidlist
);
1013 enum ftrace_readme
{
1014 FTRACE_README_PROBE_TYPE_X
= 0,
1015 FTRACE_README_KRETPROBE_OFFSET
,
1016 FTRACE_README_UPROBE_REF_CTR
,
1021 const char *pattern
;
1023 } ftrace_readme_table
[] = {
1024 #define DEFINE_TYPE(idx, pat) \
1025 [idx] = {.pattern = pat, .avail = false}
1026 DEFINE_TYPE(FTRACE_README_PROBE_TYPE_X
, "*type: * x8/16/32/64,*"),
1027 DEFINE_TYPE(FTRACE_README_KRETPROBE_OFFSET
, "*place (kretprobe): *"),
1028 DEFINE_TYPE(FTRACE_README_UPROBE_REF_CTR
, "*ref_ctr_offset*"),
1031 static bool scan_ftrace_readme(enum ftrace_readme type
)
1038 static bool scanned
= false;
1043 fd
= open_trace_file("README", false);
1047 fp
= fdopen(fd
, "r");
1053 while (getline(&buf
, &len
, fp
) > 0)
1054 for (enum ftrace_readme i
= 0; i
< FTRACE_README_END
; i
++)
1055 if (!ftrace_readme_table
[i
].avail
)
1056 ftrace_readme_table
[i
].avail
=
1057 strglobmatch(buf
, ftrace_readme_table
[i
].pattern
);
1064 if (type
>= FTRACE_README_END
)
1067 return ftrace_readme_table
[type
].avail
;
1070 bool probe_type_is_available(enum probe_type type
)
1072 if (type
>= PROBE_TYPE_END
)
1074 else if (type
== PROBE_TYPE_X
)
1075 return scan_ftrace_readme(FTRACE_README_PROBE_TYPE_X
);
1080 bool kretprobe_offset_is_supported(void)
1082 return scan_ftrace_readme(FTRACE_README_KRETPROBE_OFFSET
);
1085 bool uprobe_ref_ctr_is_supported(void)
1087 return scan_ftrace_readme(FTRACE_README_UPROBE_REF_CTR
);