cloexec.c 1.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
#include "util.h"
#include "../perf.h"
#include "cloexec.h"
#include "asm/bug.h"

static unsigned long flag = PERF_FLAG_FD_CLOEXEC;

static int perf_flag_probe(void)
{
	/* use 'safest' configuration as used in perf_evsel__fallback() */
	struct perf_event_attr attr = {
12
		.type = PERF_TYPE_SOFTWARE,
13
		.config = PERF_COUNT_SW_CPU_CLOCK,
14
		.exclude_kernel = 1,
15 16 17 18 19
	};
	int fd;
	int err;

	/* check cloexec flag */
20
	fd = sys_perf_event_open(&attr, 0, -1, -1,
21 22 23 24 25 26 27 28
				 PERF_FLAG_FD_CLOEXEC);
	err = errno;

	if (fd >= 0) {
		close(fd);
		return 1;
	}

29
	WARN_ONCE(err != EINVAL && err != EBUSY,
30 31 32 33
		  "perf_event_open(..., PERF_FLAG_FD_CLOEXEC) failed with unexpected error %d (%s)\n",
		  err, strerror(err));

	/* not supported, confirm error related to PERF_FLAG_FD_CLOEXEC */
34
	fd = sys_perf_event_open(&attr, 0, -1, -1, 0);
35 36
	err = errno;

37
	if (WARN_ONCE(fd < 0 && err != EBUSY,
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
		      "perf_event_open(..., 0) failed unexpectedly with error %d (%s)\n",
		      err, strerror(err)))
		return -1;

	close(fd);

	return 0;
}

unsigned long perf_event_open_cloexec_flag(void)
{
	static bool probed;

	if (!probed) {
		if (perf_flag_probe() <= 0)
			flag = 0;
		probed = true;
	}

	return flag;
}