vdso.c 2.6 KB
Newer Older
D
David Daney 已提交
1
/*
2 3
 * Copyright (C) 2015 Imagination Technologies
 * Author: Alex Smith <alex.smith@imgtec.com>
D
David Daney 已提交
4
 *
5 6 7 8
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation;  either version 2 of the  License, or (at your
 * option) any later version.
D
David Daney 已提交
9 10 11 12
 */

#include <linux/binfmts.h>
#include <linux/elf.h>
13 14 15 16 17
#include <linux/err.h>
#include <linux/init.h>
#include <linux/mm.h>
#include <linux/sched.h>
#include <linux/slab.h>
D
David Daney 已提交
18

19
#include <asm/abi.h>
D
David Daney 已提交
20
#include <asm/vdso.h>
21 22 23

/* Kernel-provided data used by the VDSO. */
static union mips_vdso_data vdso_data __page_aligned_data;
D
David Daney 已提交
24 25

/*
26 27 28
 * Mapping for the VDSO data pages. The real pages are mapped manually, as
 * what we map and where within the area they are mapped is determined at
 * runtime.
D
David Daney 已提交
29
 */
30 31 32 33 34
static struct page *no_pages[] = { NULL };
static struct vm_special_mapping vdso_vvar_mapping = {
	.name = "[vvar]",
	.pages = no_pages,
};
D
David Daney 已提交
35

36
static void __init init_vdso_image(struct mips_vdso_image *image)
D
David Daney 已提交
37
{
38 39 40 41 42 43 44 45 46 47 48
	unsigned long num_pages, i;

	BUG_ON(!PAGE_ALIGNED(image->data));
	BUG_ON(!PAGE_ALIGNED(image->size));

	num_pages = image->size / PAGE_SIZE;

	for (i = 0; i < num_pages; i++) {
		image->mapping.pages[i] =
			virt_to_page(image->data + (i * PAGE_SIZE));
	}
D
David Daney 已提交
49 50 51 52
}

static int __init init_vdso(void)
{
53 54 55 56
	init_vdso_image(&vdso_image);

#ifdef CONFIG_MIPS32_O32
	init_vdso_image(&vdso_image_o32);
D
David Daney 已提交
57 58
#endif

59 60 61
#ifdef CONFIG_MIPS32_N32
	init_vdso_image(&vdso_image_n32);
#endif
D
David Daney 已提交
62 63 64

	return 0;
}
65
subsys_initcall(init_vdso);
D
David Daney 已提交
66 67 68

int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
{
69
	struct mips_vdso_image *image = current->thread.abi->vdso;
D
David Daney 已提交
70
	struct mm_struct *mm = current->mm;
71 72 73
	unsigned long base, vdso_addr;
	struct vm_area_struct *vma;
	int ret;
D
David Daney 已提交
74 75 76

	down_write(&mm->mmap_sem);

77 78 79 80
	base = get_unmapped_area(NULL, 0, PAGE_SIZE + image->size, 0, 0);
	if (IS_ERR_VALUE(base)) {
		ret = base;
		goto out;
D
David Daney 已提交
81 82
	}

83 84 85 86 87 88 89 90 91
	vdso_addr = base + PAGE_SIZE;

	vma = _install_special_mapping(mm, base, PAGE_SIZE,
				       VM_READ | VM_MAYREAD,
				       &vdso_vvar_mapping);
	if (IS_ERR(vma)) {
		ret = PTR_ERR(vma);
		goto out;
	}
D
David Daney 已提交
92

93 94 95 96
	/* Map data page. */
	ret = remap_pfn_range(vma, base,
			      virt_to_phys(&vdso_data) >> PAGE_SHIFT,
			      PAGE_SIZE, PAGE_READONLY);
D
David Daney 已提交
97
	if (ret)
98 99 100 101 102 103 104 105 106 107 108
		goto out;

	/* Map VDSO image. */
	vma = _install_special_mapping(mm, vdso_addr, image->size,
				       VM_READ | VM_EXEC |
				       VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC,
				       &image->mapping);
	if (IS_ERR(vma)) {
		ret = PTR_ERR(vma);
		goto out;
	}
D
David Daney 已提交
109

110 111
	mm->context.vdso = (void *)vdso_addr;
	ret = 0;
D
David Daney 已提交
112

113
out:
D
David Daney 已提交
114 115 116
	up_write(&mm->mmap_sem);
	return ret;
}