5 static int debugfs_premounted
;
6 static char debugfs_mountpoint
[MAX_PATH
+1];
8 static const char *debugfs_known_mountpoints
[] = {
14 /* use this to force a umount */
15 void debugfs_force_cleanup(void)
17 debugfs_find_mountpoint();
18 debugfs_premounted
= 0;
22 /* construct a full path to a debugfs element */
23 int debugfs_make_path(const char *element
, char *buffer
, int size
)
27 if (strlen(debugfs_mountpoint
) == 0) {
32 len
= strlen(debugfs_mountpoint
) + strlen(element
) + 1;
36 snprintf(buffer
, size
-1, "%s/%s", debugfs_mountpoint
, element
);
40 static int debugfs_found
;
42 /* find the path to the mounted debugfs */
43 const char *debugfs_find_mountpoint(void)
50 return (const char *) debugfs_mountpoint
;
52 ptr
= debugfs_known_mountpoints
;
54 if (debugfs_valid_mountpoint(*ptr
) == 0) {
56 strcpy(debugfs_mountpoint
, *ptr
);
57 return debugfs_mountpoint
;
62 /* give up and parse /proc/mounts */
63 fp
= fopen("/proc/mounts", "r");
65 die("Can't open /proc/mounts for read");
67 while (fscanf(fp
, "%*s %"
69 "s %99s %*s %*d %*d\n",
70 debugfs_mountpoint
, type
) == 2) {
71 if (strcmp(type
, "debugfs") == 0)
76 if (strcmp(type
, "debugfs") != 0)
81 return debugfs_mountpoint
;
84 /* verify that a mountpoint is actually a debugfs instance */
86 int debugfs_valid_mountpoint(const char *debugfs
)
90 if (statfs(debugfs
, &st_fs
) < 0)
92 else if (st_fs
.f_type
!= (long) DEBUGFS_MAGIC
)
99 int debugfs_valid_entry(const char *path
)
109 /* mount the debugfs somewhere if it's not mounted */
111 char *debugfs_mount(const char *mountpoint
)
113 /* see if it's already mounted */
114 if (debugfs_find_mountpoint()) {
115 debugfs_premounted
= 1;
116 return debugfs_mountpoint
;
119 /* if not mounted and no argument */
120 if (mountpoint
== NULL
) {
121 /* see if environment variable set */
122 mountpoint
= getenv(PERF_DEBUGFS_ENVIRONMENT
);
123 /* if no environment variable, use default */
124 if (mountpoint
== NULL
)
125 mountpoint
= "/sys/kernel/debug";
128 if (mount(NULL
, mountpoint
, "debugfs", 0, NULL
) < 0)
131 /* save the mountpoint */
132 strncpy(debugfs_mountpoint
, mountpoint
, sizeof(debugfs_mountpoint
));
135 return debugfs_mountpoint
;
138 /* umount the debugfs */
140 int debugfs_umount(void)
145 /* if it was already mounted, leave it */
146 if (debugfs_premounted
)
149 /* make sure it's a valid mount point */
150 ret
= debugfs_valid_mountpoint(debugfs_mountpoint
);
154 snprintf(umountcmd
, sizeof(umountcmd
),
155 "/bin/umount %s", debugfs_mountpoint
);
156 return system(umountcmd
);
159 int debugfs_write(const char *entry
, const char *value
)
161 char path
[MAX_PATH
+1];
165 /* construct the path */
166 snprintf(path
, sizeof(path
), "%s/%s", debugfs_mountpoint
, entry
);
168 /* verify that it exists */
169 ret
= debugfs_valid_entry(path
);
173 /* get how many chars we're going to write */
174 count
= strlen(value
);
176 /* open the debugfs entry */
177 fd
= open(path
, O_RDWR
);
183 ret
= write(fd
, value
, count
);
201 * read a debugfs entry
202 * returns the number of chars read or a negative errno
204 int debugfs_read(const char *entry
, char *buffer
, size_t size
)
206 char path
[MAX_PATH
+1];
210 /* construct the path */
211 snprintf(path
, sizeof(path
), "%s/%s", debugfs_mountpoint
, entry
);
213 /* verify that it exists */
214 ret
= debugfs_valid_entry(path
);
218 /* open the debugfs entry */
219 fd
= open(path
, O_RDONLY
);
225 ret
= read(fd
, buffer
, size
);
230 } while (ret
< 0 && errno
== EAGAIN
);
235 /* make *sure* there's a null character at the end */
238 /* return the number of chars read */