vdso.c 2.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13

#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <linux/kernel.h>

#include "vdso.h"
#include "util.h"
#include "symbol.h"
14
#include "machine.h"
15
#include "linux/string.h"
16
#include "debug.h"
17

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
#define VDSO__TEMP_FILE_NAME "/tmp/perf-vdso.so-XXXXXX"

struct vdso_file {
	bool found;
	bool error;
	char temp_file_name[sizeof(VDSO__TEMP_FILE_NAME)];
	const char *dso_name;
};

struct vdso_info {
	struct vdso_file vdso;
};

static struct vdso_info vdso_info_ = {
	.vdso = {
		.temp_file_name = VDSO__TEMP_FILE_NAME,
		.dso_name = VDSO__MAP_NAME,
	},
};

static struct vdso_info *vdso_info = &vdso_info_;
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

static int find_vdso_map(void **start, void **end)
{
	FILE *maps;
	char line[128];
	int found = 0;

	maps = fopen("/proc/self/maps", "r");
	if (!maps) {
		pr_err("vdso: cannot open maps\n");
		return -1;
	}

	while (!found && fgets(line, sizeof(line), maps)) {
		int m = -1;

		/* We care only about private r-x mappings. */
		if (2 != sscanf(line, "%p-%p r-xp %*x %*x:%*x %*u %n",
				start, end, &m))
			continue;
		if (m < 0)
			continue;

		if (!strncmp(&line[m], VDSO__MAP_NAME,
			     sizeof(VDSO__MAP_NAME) - 1))
			found = 1;
	}

	fclose(maps);
	return !found;
}

71
static char *get_file(struct vdso_file *vdso_file)
72 73 74 75 76 77 78
{
	char *vdso = NULL;
	char *buf = NULL;
	void *start, *end;
	size_t size;
	int fd;

79 80
	if (vdso_file->found)
		return vdso_file->temp_file_name;
81

82
	if (vdso_file->error || find_vdso_map(&start, &end))
83 84 85 86 87 88 89 90
		return NULL;

	size = end - start;

	buf = memdup(start, size);
	if (!buf)
		return NULL;

91
	fd = mkstemp(vdso_file->temp_file_name);
92 93 94 95
	if (fd < 0)
		goto out;

	if (size == (size_t) write(fd, buf, size))
96
		vdso = vdso_file->temp_file_name;
97 98 99 100 101 102

	close(fd);

 out:
	free(buf);

103 104
	vdso_file->found = (vdso != NULL);
	vdso_file->error = !vdso_file->found;
105 106 107 108 109
	return vdso;
}

void vdso__exit(void)
{
110 111
	if (vdso_info->vdso.found)
		unlink(vdso_info->vdso.temp_file_name);
112 113
}

114
struct dso *vdso__dso_findnew(struct machine *machine)
115
{
116
	struct dso *dso = dsos__find(&machine->user_dsos, VDSO__MAP_NAME, true);
117 118 119 120

	if (!dso) {
		char *file;

121
		file = get_file(&vdso_info->vdso);
122 123 124 125 126
		if (!file)
			return NULL;

		dso = dso__new(VDSO__MAP_NAME);
		if (dso != NULL) {
127
			dsos__add(&machine->user_dsos, dso);
128
			dso__set_long_name(dso, file, false);
129 130 131 132 133
		}
	}

	return dso;
}