perf session: Move the hist_entries rb tree to perf_session
[deliverable/linux.git] / tools / perf / util / session.c
CommitLineData
94c744b6
ACM
1#include <linux/kernel.h>
2
3#include <unistd.h>
4#include <sys/types.h>
5
6#include "session.h"
7#include "util.h"
8
9static int perf_session__open(struct perf_session *self, bool force)
10{
11 struct stat input_stat;
12
13 self->fd = open(self->filename, O_RDONLY);
14 if (self->fd < 0) {
15 pr_err("failed to open file: %s", self->filename);
16 if (!strcmp(self->filename, "perf.data"))
17 pr_err(" (try 'perf record' first)");
18 pr_err("\n");
19 return -errno;
20 }
21
22 if (fstat(self->fd, &input_stat) < 0)
23 goto out_close;
24
25 if (!force && input_stat.st_uid && (input_stat.st_uid != geteuid())) {
26 pr_err("file %s not owned by current user or root\n",
27 self->filename);
28 goto out_close;
29 }
30
31 if (!input_stat.st_size) {
32 pr_info("zero-sized file (%s), nothing to do!\n",
33 self->filename);
34 goto out_close;
35 }
36
37 if (perf_header__read(&self->header, self->fd) < 0) {
38 pr_err("incompatible file format");
39 goto out_close;
40 }
41
42 self->size = input_stat.st_size;
43 return 0;
44
45out_close:
46 close(self->fd);
47 self->fd = -1;
48 return -1;
49}
50
301a0b02 51struct perf_session *perf_session__new(const char *filename, int mode,
4aa65636 52 bool force, struct symbol_conf *conf)
94c744b6 53{
b3165f41 54 size_t len = filename ? strlen(filename) + 1 : 0;
94c744b6
ACM
55 struct perf_session *self = zalloc(sizeof(*self) + len);
56
57 if (self == NULL)
58 goto out;
59
60 if (perf_header__init(&self->header) < 0)
4aa65636 61 goto out_free;
94c744b6
ACM
62
63 memcpy(self->filename, filename, len);
b3165f41
ACM
64 self->threads = RB_ROOT;
65 self->last_match = NULL;
ec913369
ACM
66 self->mmap_window = 32;
67 self->cwd = NULL;
68 self->cwdlen = 0;
4aa65636 69 map_groups__init(&self->kmaps);
94c744b6 70
4aa65636
ACM
71 if (perf_session__create_kernel_maps(self, conf) < 0)
72 goto out_delete;
73
74 if (mode == O_RDONLY && perf_session__open(self, force) < 0)
75 goto out_delete;
94c744b6
ACM
76out:
77 return self;
4aa65636 78out_free:
94c744b6
ACM
79 free(self);
80 return NULL;
4aa65636
ACM
81out_delete:
82 perf_session__delete(self);
83 return NULL;
94c744b6
ACM
84}
85
86void perf_session__delete(struct perf_session *self)
87{
88 perf_header__exit(&self->header);
89 close(self->fd);
ec913369 90 free(self->cwd);
94c744b6
ACM
91 free(self);
92}
This page took 0.027061 seconds and 5 git commands to generate.