1 // SPDX-License-Identifier: GPL-2.0
4 #include <subcmd/parse-options.h>
8 #include <linux/stringify.h>
16 cgroupfs_find_mountpoint(char *buf
, size_t maxlen
)
19 char mountpoint
[PATH_MAX
+ 1], tokens
[PATH_MAX
+ 1], type
[PATH_MAX
+ 1];
20 char path_v1
[PATH_MAX
+ 1], path_v2
[PATH_MAX
+ 2], *path
;
21 char *token
, *saved_ptr
= NULL
;
23 fp
= fopen("/proc/mounts", "r");
28 * in order to handle split hierarchy, we need to scan /proc/mounts
29 * and inspect every cgroupfs mount point to find one that has
30 * perf_event subsystem
35 while (fscanf(fp
, "%*s %"__stringify(PATH_MAX
)"s %"__stringify(PATH_MAX
)"s %"
36 __stringify(PATH_MAX
)"s %*d %*d\n",
37 mountpoint
, type
, tokens
) == 3) {
39 if (!path_v1
[0] && !strcmp(type
, "cgroup")) {
41 token
= strtok_r(tokens
, ",", &saved_ptr
);
43 while (token
!= NULL
) {
44 if (!strcmp(token
, "perf_event")) {
45 strcpy(path_v1
, mountpoint
);
48 token
= strtok_r(NULL
, ",", &saved_ptr
);
52 if (!path_v2
[0] && !strcmp(type
, "cgroup2"))
53 strcpy(path_v2
, mountpoint
);
55 if (path_v1
[0] && path_v2
[0])
67 if (strlen(path
) < maxlen
) {
74 static int open_cgroup(char *name
)
76 char path
[PATH_MAX
+ 1];
77 char mnt
[PATH_MAX
+ 1];
81 if (cgroupfs_find_mountpoint(mnt
, PATH_MAX
+ 1))
84 snprintf(path
, PATH_MAX
, "%s/%s", mnt
, name
);
86 fd
= open(path
, O_RDONLY
);
88 fprintf(stderr
, "no access to cgroup %s\n", path
);
93 static int add_cgroup(struct perf_evlist
*evlist
, char *str
)
95 struct perf_evsel
*counter
;
96 struct cgroup_sel
*cgrp
= NULL
;
99 * check if cgrp is already defined, if so we reuse it
101 evlist__for_each_entry(evlist
, counter
) {
102 cgrp
= counter
->cgrp
;
105 if (!strcmp(cgrp
->name
, str
)) {
106 refcount_inc(&cgrp
->refcnt
);
114 cgrp
= zalloc(sizeof(*cgrp
));
119 refcount_set(&cgrp
->refcnt
, 1);
121 cgrp
->fd
= open_cgroup(str
);
122 if (cgrp
->fd
== -1) {
129 * find corresponding event
130 * if add cgroup N, then need to find event N
133 evlist__for_each_entry(evlist
, counter
) {
138 if (refcount_dec_and_test(&cgrp
->refcnt
))
143 counter
->cgrp
= cgrp
;
147 void close_cgroup(struct cgroup_sel
*cgrp
)
149 if (cgrp
&& refcount_dec_and_test(&cgrp
->refcnt
)) {
156 int parse_cgroups(const struct option
*opt __maybe_unused
, const char *str
,
157 int unset __maybe_unused
)
159 struct perf_evlist
*evlist
= *(struct perf_evlist
**)opt
->value
;
160 const char *p
, *e
, *eos
= str
+ strlen(str
);
164 if (list_empty(&evlist
->entries
)) {
165 fprintf(stderr
, "must define events before cgroups\n");
170 p
= strchr(str
, ',');
173 /* allow empty cgroups, i.e., skip */
175 /* termination added */
176 s
= strndup(str
, e
- str
);
179 ret
= add_cgroup(evlist
, s
);
185 /* nr_cgroups is increased een for empty cgroups */