perf probe: Search SDT/cached event from all probe caches
[deliverable/linux.git] / tools / perf / util / cloexec.c
CommitLineData
f6edb53c 1#include <sched.h>
57480d2c
YD
2#include "util.h"
3#include "../perf.h"
4#include "cloexec.h"
5#include "asm/bug.h"
6e81c74c 6#include "debug.h"
c7007e98
ACM
7#include <unistd.h>
8#include <asm/unistd.h>
9#include <sys/syscall.h>
57480d2c
YD
10
11static unsigned long flag = PERF_FLAG_FD_CLOEXEC;
12
e1e455f4
VL
13int __weak sched_getcpu(void)
14{
c7007e98
ACM
15#ifdef __NR_getcpu
16 unsigned cpu;
17 int err = syscall(__NR_getcpu, &cpu, NULL, NULL);
18 if (!err)
19 return cpu;
20#else
e1e455f4 21 errno = ENOSYS;
c7007e98 22#endif
e1e455f4
VL
23 return -1;
24}
25
57480d2c
YD
26static int perf_flag_probe(void)
27{
28 /* use 'safest' configuration as used in perf_evsel__fallback() */
29 struct perf_event_attr attr = {
038fa0b9 30 .type = PERF_TYPE_SOFTWARE,
57480d2c 31 .config = PERF_COUNT_SW_CPU_CLOCK,
a5b0153c 32 .exclude_kernel = 1,
57480d2c
YD
33 };
34 int fd;
35 int err;
f6edb53c
AH
36 int cpu;
37 pid_t pid = -1;
6e81c74c 38 char sbuf[STRERR_BUFSIZE];
57480d2c 39
f6edb53c
AH
40 cpu = sched_getcpu();
41 if (cpu < 0)
42 cpu = 0;
43
48536c91
AH
44 /*
45 * Using -1 for the pid is a workaround to avoid gratuitous jump label
46 * changes.
47 */
f6edb53c
AH
48 while (1) {
49 /* check cloexec flag */
50 fd = sys_perf_event_open(&attr, pid, cpu, -1,
51 PERF_FLAG_FD_CLOEXEC);
52 if (fd < 0 && pid == -1 && errno == EACCES) {
53 pid = 0;
54 continue;
55 }
56 break;
57 }
57480d2c
YD
58 err = errno;
59
60 if (fd >= 0) {
61 close(fd);
62 return 1;
63 }
64
63914aca 65 WARN_ONCE(err != EINVAL && err != EBUSY,
57480d2c 66 "perf_event_open(..., PERF_FLAG_FD_CLOEXEC) failed with unexpected error %d (%s)\n",
c8b5f2c9 67 err, str_error_r(err, sbuf, sizeof(sbuf)));
57480d2c
YD
68
69 /* not supported, confirm error related to PERF_FLAG_FD_CLOEXEC */
48536c91
AH
70 while (1) {
71 fd = sys_perf_event_open(&attr, pid, cpu, -1, 0);
72 if (fd < 0 && pid == -1 && errno == EACCES) {
73 pid = 0;
74 continue;
75 }
76 break;
77 }
57480d2c
YD
78 err = errno;
79
48536c91
AH
80 if (fd >= 0)
81 close(fd);
82
63914aca 83 if (WARN_ONCE(fd < 0 && err != EBUSY,
57480d2c 84 "perf_event_open(..., 0) failed unexpectedly with error %d (%s)\n",
c8b5f2c9 85 err, str_error_r(err, sbuf, sizeof(sbuf))))
57480d2c
YD
86 return -1;
87
57480d2c
YD
88 return 0;
89}
90
91unsigned long perf_event_open_cloexec_flag(void)
92{
93 static bool probed;
94
95 if (!probed) {
96 if (perf_flag_probe() <= 0)
97 flag = 0;
98 probed = true;
99 }
100
101 return flag;
102}
This page took 0.112658 seconds and 5 git commands to generate.