4 * Copyright (C) 2013 Hitachi, Ltd.
7 * This work is licensed under the terms of the GNU GPL, version 2. See
8 * the COPYING file in the top-level directory.
12 #include "qemu/osdep.h"
13 #include "trace/control.h"
14 #include "trace/ftrace.h"
18 static int find_mount(char *mount_point, const char *fstype)
24 fp = fopen("/proc/mounts", "r");
29 while (fscanf(fp, "%*s %" STR(PATH_MAX) "s %99s %*s %*d %*d\n",
30 mount_point, type) == 2) {
31 if (strcmp(type, fstype) == 0) {
41 bool ftrace_init(void)
43 char mount_point[PATH_MAX];
47 const char *subdir = "";
49 tracefs_found = find_mount(mount_point, "tracefs");
51 tracefs_found = find_mount(mount_point, "debugfs");
56 if (snprintf(path, PATH_MAX, "%s%s/tracing_on", mount_point, subdir)
58 fprintf(stderr, "Using tracefs mountpoint would exceed PATH_MAX\n");
61 trace_fd = open(path, O_WRONLY);
63 if (errno == EACCES) {
64 trace_marker_fd = open("/dev/null", O_WRONLY);
65 if (trace_marker_fd != -1) {
69 perror("Could not open ftrace 'tracing_on' file");
72 if (write(trace_fd, "1", 1) < 0) {
73 perror("Could not write to 'tracing_on' file");
79 if (snprintf(path, PATH_MAX, "%s%s/trace_marker", mount_point, subdir)
81 fprintf(stderr, "Using tracefs mountpoint would exceed PATH_MAX\n");
84 trace_marker_fd = open(path, O_WRONLY);
85 if (trace_marker_fd < 0) {
86 perror("Could not open ftrace 'trace_marker' file");
90 fprintf(stderr, "tracefs is not mounted\n");