blob: 969ae560dad984f1b873caaef05eda351e758a71 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Arnaldo Carvalho de Melo4cf40132009-12-27 21:37:06 -02002#include "util.h"
Jiri Olsa84f5d362014-07-14 23:46:48 +02003#include "debug.h"
Arnaldo Carvalho de Melo8520a982019-08-29 16:18:59 -03004#include "event.h"
Borislav Petkovcd0cfad2013-12-09 17:14:24 +01005#include <api/fs/fs.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -03006#include <sys/stat.h>
Wang Nan07bc5c62015-11-06 13:55:35 +00007#include <sys/utsname.h>
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -03008#include <dirent.h>
Arnaldo Carvalho de Meloc23c2a02017-09-11 10:50:26 -03009#include <fcntl.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030010#include <inttypes.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030011#include <signal.h>
Arnaldo Carvalho de Melodc4552b2012-08-07 23:32:05 -030012#include <stdio.h>
13#include <stdlib.h>
Jiri Olsacef82c92013-12-03 14:09:22 +010014#include <string.h>
15#include <errno.h>
Adrian Hunter1a472452013-12-11 14:36:23 +020016#include <limits.h>
Igor Lubashevc22e1502019-08-07 10:44:14 -040017#include <linux/capability.h>
Jiri Olsa838d1452013-11-28 11:30:15 +010018#include <linux/kernel.h>
Wang Nanc339b1a2016-02-24 11:20:44 +000019#include <linux/log2.h>
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030020#include <linux/time64.h>
Jiri Olsa9398c482014-08-11 10:50:02 +020021#include <unistd.h>
Igor Lubashevc22e1502019-08-07 10:44:14 -040022#include "cap.h"
Namhyung Kim14cbfbe2016-01-07 20:41:53 +090023#include "strlist.h"
Jiri Olsacdb6b022019-02-24 20:06:38 +010024#include "string2.h"
Jiri Olsa23aadb12014-10-01 18:00:26 +020025
Joerg Roedel1aed2672012-01-04 17:54:20 +010026/*
27 * XXX We need to find a better place for these things...
28 */
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -030029
30bool perf_singlethreaded = true;
31
32void perf_set_singlethreaded(void)
33{
34 perf_singlethreaded = true;
35}
36
37void perf_set_multithreaded(void)
38{
39 perf_singlethreaded = false;
40}
41
Arnaldo Carvalho de Meloa29d5c92016-05-16 21:16:54 -030042int sysctl_perf_event_max_stack = PERF_MAX_STACK_DEPTH;
43int sysctl_perf_event_max_contexts_per_stack = PERF_MAX_CONTEXTS_PER_STACK;
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -030044
Arnaldo Carvalho de Melo029c75e2018-05-17 16:31:32 -030045int sysctl__max_stack(void)
46{
47 int value;
48
49 if (sysctl__read_int("kernel/perf_event_max_stack", &value) == 0)
50 sysctl_perf_event_max_stack = value;
51
52 if (sysctl__read_int("kernel/perf_event_max_contexts_per_stack", &value) == 0)
53 sysctl_perf_event_max_contexts_per_stack = value;
54
55 return sysctl_perf_event_max_stack;
56}
57
Arnaldo Carvalho de Melo0c6332e2012-12-13 16:43:04 -030058bool test_attr__enabled;
59
Joerg Roedel1aed2672012-01-04 17:54:20 +010060bool perf_host = true;
Joerg Roedelc4a7dca2012-02-10 18:05:05 +010061bool perf_guest = false;
Joerg Roedel1aed2672012-01-04 17:54:20 +010062
63void event_attr_init(struct perf_event_attr *attr)
64{
65 if (!perf_host)
66 attr->exclude_host = 1;
67 if (!perf_guest)
68 attr->exclude_guest = 1;
Stephane Eranian7e1ccd32012-02-09 16:12:38 +010069 /* to capture ABI version */
70 attr->size = sizeof(*attr);
Joerg Roedel1aed2672012-01-04 17:54:20 +010071}
72
Arnaldo Carvalho de Melo4cf40132009-12-27 21:37:06 -020073int mkdir_p(char *path, mode_t mode)
74{
75 struct stat st;
76 int err;
77 char *d = path;
78
79 if (*d != '/')
80 return -1;
81
82 if (stat(path, &st) == 0)
83 return 0;
84
85 while (*++d == '/');
86
87 while ((d = strchr(d, '/'))) {
88 *d = '\0';
89 err = stat(path, &st) && mkdir(path, mode);
90 *d++ = '/';
91 if (err)
92 return -1;
93 while (*d == '/')
94 ++d;
95 }
96 return (stat(path, &st) && mkdir(path, mode)) ? -1 : 0;
97}
98
Jiri Olsacdb6b022019-02-24 20:06:38 +010099static bool match_pat(char *file, const char **pat)
100{
101 int i = 0;
102
103 if (!pat)
104 return true;
105
106 while (pat[i]) {
107 if (strglobmatch(file, pat[i]))
108 return true;
109
110 i++;
111 }
112
113 return false;
114}
115
Jiri Olsa05a48652019-02-24 20:06:37 +0100116/*
117 * The depth specify how deep the removal will go.
118 * 0 - will remove only files under the 'path' directory
119 * 1 .. x - will dive in x-level deep under the 'path' directory
Jiri Olsacdb6b022019-02-24 20:06:38 +0100120 *
121 * If specified the pat is array of string patterns ended with NULL,
122 * which are checked upon every file/directory found. Only matching
123 * ones are removed.
124 *
125 * The function returns:
126 * 0 on success
127 * -1 on removal failure with errno set
128 * -2 on pattern failure
Jiri Olsa05a48652019-02-24 20:06:37 +0100129 */
Jiri Olsacdb6b022019-02-24 20:06:38 +0100130static int rm_rf_depth_pat(const char *path, int depth, const char **pat)
Namhyung Kim0b1de0be2015-05-18 09:30:17 +0900131{
132 DIR *dir;
Jiri Olsab4409ae2019-02-20 13:28:00 +0100133 int ret;
Namhyung Kim0b1de0be2015-05-18 09:30:17 +0900134 struct dirent *d;
135 char namebuf[PATH_MAX];
Jiri Olsab4409ae2019-02-20 13:28:00 +0100136 struct stat statbuf;
Namhyung Kim0b1de0be2015-05-18 09:30:17 +0900137
Jiri Olsab4409ae2019-02-20 13:28:00 +0100138 /* Do not fail if there's no file. */
139 ret = lstat(path, &statbuf);
140 if (ret)
Namhyung Kim0b1de0be2015-05-18 09:30:17 +0900141 return 0;
142
Jiri Olsab4409ae2019-02-20 13:28:00 +0100143 /* Try to remove any file we get. */
144 if (!(statbuf.st_mode & S_IFDIR))
145 return unlink(path);
146
147 /* We have directory in path. */
148 dir = opendir(path);
149 if (dir == NULL)
150 return -1;
151
Namhyung Kim0b1de0be2015-05-18 09:30:17 +0900152 while ((d = readdir(dir)) != NULL && !ret) {
Namhyung Kim0b1de0be2015-05-18 09:30:17 +0900153
154 if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
155 continue;
156
Yunfeng Ye60807282019-10-15 16:30:08 +0800157 if (!match_pat(d->d_name, pat)) {
158 ret = -2;
159 break;
160 }
Jiri Olsacdb6b022019-02-24 20:06:38 +0100161
Namhyung Kim0b1de0be2015-05-18 09:30:17 +0900162 scnprintf(namebuf, sizeof(namebuf), "%s/%s",
163 path, d->d_name);
164
Masami Hiramatsu2a1ef032016-06-08 18:29:11 +0900165 /* We have to check symbolic link itself */
166 ret = lstat(namebuf, &statbuf);
Namhyung Kim0b1de0be2015-05-18 09:30:17 +0900167 if (ret < 0) {
168 pr_debug("stat failed: %s\n", namebuf);
169 break;
170 }
171
Masami Hiramatsu2a1ef032016-06-08 18:29:11 +0900172 if (S_ISDIR(statbuf.st_mode))
Jiri Olsacdb6b022019-02-24 20:06:38 +0100173 ret = depth ? rm_rf_depth_pat(namebuf, depth - 1, pat) : 0;
Masami Hiramatsu2a1ef032016-06-08 18:29:11 +0900174 else
175 ret = unlink(namebuf);
Namhyung Kim0b1de0be2015-05-18 09:30:17 +0900176 }
177 closedir(dir);
178
179 if (ret < 0)
180 return ret;
181
182 return rmdir(path);
183}
184
Adrian Huntereeb399b2019-10-04 11:31:21 +0300185static int rm_rf_kcore_dir(const char *path)
186{
187 char kcore_dir_path[PATH_MAX];
188 const char *pat[] = {
189 "kcore",
190 "kallsyms",
191 "modules",
192 NULL,
193 };
194
195 snprintf(kcore_dir_path, sizeof(kcore_dir_path), "%s/kcore_dir", path);
196
197 return rm_rf_depth_pat(kcore_dir_path, 0, pat);
198}
199
Jiri Olsac69e4c32019-02-24 20:06:39 +0100200int rm_rf_perf_data(const char *path)
201{
202 const char *pat[] = {
Adrian Hunter9b70b9d2019-10-04 11:31:19 +0300203 "data",
Jiri Olsac69e4c32019-02-24 20:06:39 +0100204 "data.*",
205 NULL,
206 };
207
Adrian Huntereeb399b2019-10-04 11:31:21 +0300208 rm_rf_kcore_dir(path);
209
Jiri Olsac69e4c32019-02-24 20:06:39 +0100210 return rm_rf_depth_pat(path, 0, pat);
211}
212
Jiri Olsa05a48652019-02-24 20:06:37 +0100213int rm_rf(const char *path)
214{
Jiri Olsacdb6b022019-02-24 20:06:38 +0100215 return rm_rf_depth_pat(path, INT_MAX, NULL);
Jiri Olsa05a48652019-02-24 20:06:37 +0100216}
217
Masami Hiramatsue1ce7262016-04-26 18:02:42 +0900218/* A filter which removes dot files */
219bool lsdir_no_dot_filter(const char *name __maybe_unused, struct dirent *d)
220{
221 return d->d_name[0] != '.';
222}
223
224/* lsdir reads a directory and store it in strlist */
225struct strlist *lsdir(const char *name,
226 bool (*filter)(const char *, struct dirent *))
227{
228 struct strlist *list = NULL;
229 DIR *dir;
230 struct dirent *d;
231
232 dir = opendir(name);
233 if (!dir)
234 return NULL;
235
236 list = strlist__new(NULL, NULL);
237 if (!list) {
Masami Hiramatsu357a54f2016-05-11 22:51:27 +0900238 errno = ENOMEM;
Masami Hiramatsue1ce7262016-04-26 18:02:42 +0900239 goto out;
240 }
241
242 while ((d = readdir(dir)) != NULL) {
243 if (!filter || filter(name, d))
244 strlist__add(list, d->d_name);
245 }
246
247out:
248 closedir(dir);
249 return list;
250}
251
Arnaldo Carvalho de Melo61e04b32012-04-19 13:15:24 -0300252size_t hex_width(u64 v)
253{
254 size_t n = 1;
255
256 while ((v >>= 4))
257 ++n;
258
259 return n;
260}
Arnaldo Carvalho de Melodc4552b2012-08-07 23:32:05 -0300261
Adrian Hunter1a472452013-12-11 14:36:23 +0200262int perf_event_paranoid(void)
263{
Adrian Hunter1a472452013-12-11 14:36:23 +0200264 int value;
265
Arnaldo Carvalho de Meloce273092014-12-11 13:37:59 -0300266 if (sysctl__read_int("kernel/perf_event_paranoid", &value))
Adrian Hunter1a472452013-12-11 14:36:23 +0200267 return INT_MAX;
268
269 return value;
270}
Igor Lubashevc22e1502019-08-07 10:44:14 -0400271
272bool perf_event_paranoid_check(int max_level)
273{
274 return perf_cap__capable(CAP_SYS_ADMIN) ||
275 perf_event_paranoid() <= max_level;
276}
277
Wang Nand18acd12016-11-15 04:05:44 +0000278static int
279fetch_ubuntu_kernel_version(unsigned int *puint)
280{
281 ssize_t len;
282 size_t line_len = 0;
283 char *ptr, *line = NULL;
284 int version, patchlevel, sublevel, err;
Arnaldo Carvalho de Melo44b58e02017-06-20 12:19:16 -0300285 FILE *vsig;
Wang Nand18acd12016-11-15 04:05:44 +0000286
Arnaldo Carvalho de Melo44b58e02017-06-20 12:19:16 -0300287 if (!puint)
288 return 0;
289
290 vsig = fopen("/proc/version_signature", "r");
Wang Nand18acd12016-11-15 04:05:44 +0000291 if (!vsig) {
292 pr_debug("Open /proc/version_signature failed: %s\n",
293 strerror(errno));
294 return -1;
295 }
296
297 len = getline(&line, &line_len, vsig);
298 fclose(vsig);
299 err = -1;
300 if (len <= 0) {
301 pr_debug("Reading from /proc/version_signature failed: %s\n",
302 strerror(errno));
303 goto errout;
304 }
305
306 ptr = strrchr(line, ' ');
307 if (!ptr) {
308 pr_debug("Parsing /proc/version_signature failed: %s\n", line);
309 goto errout;
310 }
311
312 err = sscanf(ptr + 1, "%d.%d.%d",
313 &version, &patchlevel, &sublevel);
314 if (err != 3) {
315 pr_debug("Unable to get kernel version from /proc/version_signature '%s'\n",
316 line);
317 goto errout;
318 }
319
Arnaldo Carvalho de Melo44b58e02017-06-20 12:19:16 -0300320 *puint = (version << 16) + (patchlevel << 8) + sublevel;
Wang Nand18acd12016-11-15 04:05:44 +0000321 err = 0;
322errout:
323 free(line);
324 return err;
325}
326
Wang Nan07bc5c62015-11-06 13:55:35 +0000327int
328fetch_kernel_version(unsigned int *puint, char *str,
329 size_t str_size)
330{
331 struct utsname utsname;
332 int version, patchlevel, sublevel, err;
Wang Nand18acd12016-11-15 04:05:44 +0000333 bool int_ver_ready = false;
334
335 if (access("/proc/version_signature", R_OK) == 0)
336 if (!fetch_ubuntu_kernel_version(puint))
337 int_ver_ready = true;
Wang Nan07bc5c62015-11-06 13:55:35 +0000338
339 if (uname(&utsname))
340 return -1;
341
342 if (str && str_size) {
343 strncpy(str, utsname.release, str_size);
344 str[str_size - 1] = '\0';
345 }
346
Arnaldo Carvalho de Melo44b58e02017-06-20 12:19:16 -0300347 if (!puint || int_ver_ready)
348 return 0;
349
Wang Nan07bc5c62015-11-06 13:55:35 +0000350 err = sscanf(utsname.release, "%d.%d.%d",
351 &version, &patchlevel, &sublevel);
352
353 if (err != 3) {
Wang Nand18acd12016-11-15 04:05:44 +0000354 pr_debug("Unable to get kernel version from uname '%s'\n",
Wang Nan07bc5c62015-11-06 13:55:35 +0000355 utsname.release);
356 return -1;
357 }
358
Arnaldo Carvalho de Melo44b58e02017-06-20 12:19:16 -0300359 *puint = (version << 16) + (patchlevel << 8) + sublevel;
Wang Nan07bc5c62015-11-06 13:55:35 +0000360 return 0;
361}
Namhyung Kim14cbfbe2016-01-07 20:41:53 +0900362
363const char *perf_tip(const char *dirpath)
364{
365 struct strlist *tips;
366 struct str_node *node;
367 char *tip = NULL;
368 struct strlist_config conf = {
Namhyung Kim34b7b0f2016-01-09 19:16:29 +0900369 .dirname = dirpath,
370 .file_only = true,
Namhyung Kim14cbfbe2016-01-07 20:41:53 +0900371 };
372
373 tips = strlist__new("tips.txt", &conf);
Namhyung Kim34b7b0f2016-01-09 19:16:29 +0900374 if (tips == NULL)
David Carrillo-Cisneros570eda02017-04-11 23:49:16 -0700375 return errno == ENOENT ? NULL :
376 "Tip: check path of tips.txt or get more memory! ;-p";
Namhyung Kim34b7b0f2016-01-09 19:16:29 +0900377
378 if (strlist__nr_entries(tips) == 0)
Namhyung Kim14cbfbe2016-01-07 20:41:53 +0900379 goto out;
Namhyung Kim14cbfbe2016-01-07 20:41:53 +0900380
381 node = strlist__entry(tips, random() % strlist__nr_entries(tips));
382 if (asprintf(&tip, "Tip: %s", node->s) < 0)
383 tip = (char *)"Tip: get more memory! ;-)";
384
385out:
386 strlist__delete(tips);
387
388 return tip;
389}
Andi Kleen94816ad2019-02-24 07:37:19 -0800390
391char *perf_exe(char *buf, int len)
392{
393 int n = readlink("/proc/self/exe", buf, len);
394 if (n > 0) {
395 buf[n] = 0;
396 return buf;
397 }
398 return strcpy(buf, "perf");
399}