11 #include <sys/mount.h>
12 #include <linux/kernel.h>
16 #ifndef DEBUGFS_DEFAULT_PATH
17 #define DEBUGFS_DEFAULT_PATH "/sys/kernel/debug"
20 char debugfs_mountpoint
[PATH_MAX
+ 1] = DEBUGFS_DEFAULT_PATH
;
22 static const char * const debugfs_known_mountpoints
[] = {
28 static bool debugfs_found
;
30 bool debugfs_configured(void)
32 return debugfs_find_mountpoint() != NULL
;
35 /* find the path to the mounted debugfs */
36 const char *debugfs_find_mountpoint(void)
41 return (const char *)debugfs_mountpoint
;
43 ret
= find_mountpoint("debugfs", (long) DEBUGFS_MAGIC
,
44 debugfs_mountpoint
, PATH_MAX
+ 1,
45 debugfs_known_mountpoints
);
52 /* mount the debugfs somewhere if it's not mounted */
53 char *debugfs_mount(const char *mountpoint
)
55 /* see if it's already mounted */
56 if (debugfs_find_mountpoint())
59 /* if not mounted and no argument */
60 if (mountpoint
== NULL
) {
61 /* see if environment variable set */
62 mountpoint
= getenv(PERF_DEBUGFS_ENVIRONMENT
);
63 /* if no environment variable, use default */
64 if (mountpoint
== NULL
)
65 mountpoint
= DEBUGFS_DEFAULT_PATH
;
68 if (mount(NULL
, mountpoint
, "debugfs", 0, NULL
) < 0)
71 /* save the mountpoint */
73 strncpy(debugfs_mountpoint
, mountpoint
, sizeof(debugfs_mountpoint
));
75 return debugfs_mountpoint
;
78 int debugfs__strerror_open(int err
, char *buf
, size_t size
, const char *filename
)
86 "Error:\tFile %s/%s not found.\n"
87 "Hint:\tPerhaps this kernel misses some CONFIG_ setting to enable this feature?.\n",
88 debugfs_mountpoint
, filename
);
91 snprintf(buf
, size
, "%s",
92 "Error:\tUnable to find debugfs\n"
93 "Hint:\tWas your kernel compiled with debugfs support?\n"
94 "Hint:\tIs the debugfs filesystem mounted?\n"
95 "Hint:\tTry 'sudo mount -t debugfs nodev /sys/kernel/debug'");
99 "Error:\tNo permissions to read %s/%s\n"
100 "Hint:\tTry 'sudo mount -o remount,mode=755 %s'\n",
101 debugfs_mountpoint
, filename
, debugfs_mountpoint
);
104 snprintf(buf
, size
, "%s", strerror_r(err
, sbuf
, sizeof(sbuf
)));
111 int debugfs__strerror_open_tp(int err
, char *buf
, size_t size
, const char *sys
, const char *name
)
115 snprintf(path
, PATH_MAX
, "tracing/events/%s/%s", sys
, name
?: "*");
117 return debugfs__strerror_open(err
, buf
, size
, path
);