ARM: 8060/1: mm: allow sub-architectures to override PCI I/O memory type
[linux/fpc-iii.git] / tools / perf / util / data.c
blob1fbcd8bdc11b8b387c4f9f2f1a57ae6807e9e92c
1 #include <linux/compiler.h>
2 #include <linux/kernel.h>
3 #include <sys/types.h>
4 #include <sys/stat.h>
5 #include <unistd.h>
6 #include <string.h>
8 #include "data.h"
9 #include "util.h"
11 static bool check_pipe(struct perf_data_file *file)
13 struct stat st;
14 bool is_pipe = false;
15 int fd = perf_data_file__is_read(file) ?
16 STDIN_FILENO : STDOUT_FILENO;
18 if (!file->path) {
19 if (!fstat(fd, &st) && S_ISFIFO(st.st_mode))
20 is_pipe = true;
21 } else {
22 if (!strcmp(file->path, "-"))
23 is_pipe = true;
26 if (is_pipe)
27 file->fd = fd;
29 return file->is_pipe = is_pipe;
32 static int check_backup(struct perf_data_file *file)
34 struct stat st;
36 if (!stat(file->path, &st) && st.st_size) {
37 /* TODO check errors properly */
38 char oldname[PATH_MAX];
39 snprintf(oldname, sizeof(oldname), "%s.old",
40 file->path);
41 unlink(oldname);
42 rename(file->path, oldname);
45 return 0;
48 static int open_file_read(struct perf_data_file *file)
50 struct stat st;
51 int fd;
53 fd = open(file->path, O_RDONLY);
54 if (fd < 0) {
55 int err = errno;
57 pr_err("failed to open %s: %s", file->path, strerror(err));
58 if (err == ENOENT && !strcmp(file->path, "perf.data"))
59 pr_err(" (try 'perf record' first)");
60 pr_err("\n");
61 return -err;
64 if (fstat(fd, &st) < 0)
65 goto out_close;
67 if (!file->force && st.st_uid && (st.st_uid != geteuid())) {
68 pr_err("file %s not owned by current user or root\n",
69 file->path);
70 goto out_close;
73 if (!st.st_size) {
74 pr_info("zero-sized file (%s), nothing to do!\n",
75 file->path);
76 goto out_close;
79 file->size = st.st_size;
80 return fd;
82 out_close:
83 close(fd);
84 return -1;
87 static int open_file_write(struct perf_data_file *file)
89 if (check_backup(file))
90 return -1;
92 return open(file->path, O_CREAT|O_RDWR|O_TRUNC, S_IRUSR|S_IWUSR);
95 static int open_file(struct perf_data_file *file)
97 int fd;
99 fd = perf_data_file__is_read(file) ?
100 open_file_read(file) : open_file_write(file);
102 file->fd = fd;
103 return fd < 0 ? -1 : 0;
106 int perf_data_file__open(struct perf_data_file *file)
108 if (check_pipe(file))
109 return 0;
111 if (!file->path)
112 file->path = "perf.data";
114 return open_file(file);
117 void perf_data_file__close(struct perf_data_file *file)
119 close(file->fd);
122 ssize_t perf_data_file__write(struct perf_data_file *file,
123 void *buf, size_t size)
125 return writen(file->fd, buf, size);