Release 4.7 arch/x86/entry/vdso/vma.c
/*
* Copyright 2007 Andi Kleen, SUSE Labs.
* Subject to the GPL, v.2
*
* This contains most of the x86 vDSO kernel-side code.
*/
#include <linux/mm.h>
#include <linux/err.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/random.h>
#include <linux/elf.h>
#include <linux/cpu.h>
#include <asm/pvclock.h>
#include <asm/vgtod.h>
#include <asm/proto.h>
#include <asm/vdso.h>
#include <asm/vvar.h>
#include <asm/page.h>
#include <asm/desc.h>
#include <asm/cpufeature.h>
#if defined(CONFIG_X86_64)
unsigned int __read_mostly vdso64_enabled = 1;
#endif
void __init init_vdso_image(const struct vdso_image *image)
{
BUG_ON(image->size % PAGE_SIZE != 0);
apply_alternatives((struct alt_instr *)(image->data + image->alt),
(struct alt_instr *)(image->data + image->alt +
image->alt_len));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 47 | 78.33% | 2 | 66.67% |
| h.j. lu | h.j. lu | 13 | 21.67% | 1 | 33.33% |
| Total | 60 | 100.00% | 3 | 100.00% |
struct linux_binprm;
/*
* Put the vdso above the (randomized) stack with another randomized
* offset. This way there is no hole in the middle of address space.
* To save memory make sure it is still in the same PTE as the stack
* top. This doesn't give that many random bits.
*
* Note that this algorithm is imperfect: the distribution of the vdso
* start address within a PMD is biased toward the end.
*
* Only used for the 64-bit and x32 vdsos.
*/
static unsigned long vdso_addr(unsigned long start, unsigned len)
{
#ifdef CONFIG_X86_32
return 0;
#else
unsigned long addr, end;
unsigned offset;
/*
* Round up the start address. It can start out unaligned as a result
* of stack start randomization.
*/
start = PAGE_ALIGN(start);
/* Round the lowest possible end address up to a PMD boundary. */
end = (start + len + PMD_SIZE - 1) & PMD_MASK;
if (end >= TASK_SIZE_MAX)
end = TASK_SIZE_MAX;
end -= len;
if (end > start) {
offset = get_random_int() % (((end - start) >> PAGE_SHIFT) + 1);
addr = start + (offset << PAGE_SHIFT);
} else {
addr = start;
}
/*
* Forcibly align the final address in case we have a hardware
* issue that requires alignment for performance reasons.
*/
addr = align_vdso_addr(addr);
return addr;
#endif
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andi kleen | andi kleen | 69 | 55.20% | 1 | 16.67% |
| andy lutomirski | andy lutomirski | 34 | 27.20% | 1 | 16.67% |
| jan beulich | jan beulich | 10 | 8.00% | 1 | 16.67% |
| borislav petkov | borislav petkov | 9 | 7.20% | 1 | 16.67% |
| ingo molnar | ingo molnar | 2 | 1.60% | 1 | 16.67% |
| michel lespinasse | michel lespinasse | 1 | 0.80% | 1 | 16.67% |
| Total | 125 | 100.00% | 6 | 100.00% |
static int vdso_fault(const struct vm_special_mapping *sm,
struct vm_area_struct *vma, struct vm_fault *vmf)
{
const struct vdso_image *image = vma->vm_mm->context.vdso_image;
if (!image || (vmf->pgoff << PAGE_SHIFT) >= image->size)
return VM_FAULT_SIGBUS;
vmf->page = virt_to_page(image->data + (vmf->pgoff << PAGE_SHIFT));
get_page(vmf->page);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 85 | 100.00% | 1 | 100.00% |
| Total | 85 | 100.00% | 1 | 100.00% |
static const struct vm_special_mapping text_mapping = {
.name = "[vdso]",
.fault = vdso_fault,
};
static int vvar_fault(const struct vm_special_mapping *sm,
struct vm_area_struct *vma, struct vm_fault *vmf)
{
const struct vdso_image *image = vma->vm_mm->context.vdso_image;
long sym_offset;
int ret = -EFAULT;
if (!image)
return VM_FAULT_SIGBUS;
sym_offset = (long)(vmf->pgoff << PAGE_SHIFT) +
image->sym_vvar_start;
/*
* Sanity check: a symbol offset of zero means that the page
* does not exist for this vdso image, not that the page is at
* offset zero relative to the text mapping. This should be
* impossible here, because sym_offset should only be zero for
* the page past the end of the vvar mapping.
*/
if (sym_offset == 0)
return VM_FAULT_SIGBUS;
if (sym_offset == image->sym_vvar_page) {
ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address,
__pa_symbol(&__vvar_page) >> PAGE_SHIFT);
} else if (sym_offset == image->sym_pvclock_page) {
struct pvclock_vsyscall_time_info *pvti =
pvclock_pvti_cpu0_va();
if (pvti && vclock_was_used(VCLOCK_PVCLOCK)) {
ret = vm_insert_pfn(
vma,
(unsigned long)vmf->virtual_address,
__pa(pvti) >> PAGE_SHIFT);
}
}
if (ret == 0 || ret == -EBUSY)
return VM_FAULT_NOPAGE;
return VM_FAULT_SIGBUS;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 182 | 100.00% | 2 | 100.00% |
| Total | 182 | 100.00% | 2 | 100.00% |
static int map_vdso(const struct vdso_image *image, bool calculate_addr)
{
struct mm_struct *mm = current->mm;
struct vm_area_struct *vma;
unsigned long addr, text_start;
int ret = 0;
static const struct vm_special_mapping vvar_mapping = {
.name = "[vvar]",
.fault = vvar_fault,
};
if (calculate_addr) {
addr = vdso_addr(current->mm->start_stack,
image->size - image->sym_vvar_start);
} else {
addr = 0;
}
if (down_write_killable(&mm->mmap_sem))
return -EINTR;
addr = get_unmapped_area(NULL, addr,
image->size - image->sym_vvar_start, 0, 0);
if (IS_ERR_VALUE(addr)) {
ret = addr;
goto up_fail;
}
text_start = addr - image->sym_vvar_start;
current->mm->context.vdso = (void __user *)text_start;
current->mm->context.vdso_image = image;
/*
* MAYWRITE to allow gdb to COW and set breakpoints
*/
vma = _install_special_mapping(mm,
text_start,
image->size,
VM_READ|VM_EXEC|
VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC,
&text_mapping);
if (IS_ERR(vma)) {
ret = PTR_ERR(vma);
goto up_fail;
}
vma = _install_special_mapping(mm,
addr,
-image->sym_vvar_start,
VM_READ|VM_MAYREAD|VM_IO|VM_DONTDUMP|
VM_PFNMAP,
&vvar_mapping);
if (IS_ERR(vma)) {
ret = PTR_ERR(vma);
goto up_fail;
}
up_fail:
if (ret)
current->mm->context.vdso = NULL;
up_write(&mm->mmap_sem);
return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 167 | 57.00% | 8 | 66.67% |
| andi kleen | andi kleen | 100 | 34.13% | 1 | 8.33% |
| peter zijlstra | peter zijlstra | 14 | 4.78% | 1 | 8.33% |
| michal hocko | michal hocko | 8 | 2.73% | 1 | 8.33% |
| h.j. lu | h.j. lu | 4 | 1.37% | 1 | 8.33% |
| Total | 293 | 100.00% | 12 | 100.00% |
#if defined(CONFIG_X86_32) || defined(CONFIG_IA32_EMULATION)
static int load_vdso32(void)
{
if (vdso32_enabled != 1) /* Other values all mean "disabled" */
return 0;
return map_vdso(&vdso_image_32, false);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 27 | 100.00% | 2 | 100.00% |
| Total | 27 | 100.00% | 2 | 100.00% |
#endif
#ifdef CONFIG_X86_64
int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
{
if (!vdso64_enabled)
return 0;
return map_vdso(&vdso_image_64, true);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| h.j. lu | h.j. lu | 18 | 60.00% | 1 | 33.33% |
| andy lutomirski | andy lutomirski | 12 | 40.00% | 2 | 66.67% |
| Total | 30 | 100.00% | 3 | 100.00% |
#ifdef CONFIG_COMPAT
int compat_arch_setup_additional_pages(struct linux_binprm *bprm,
int uses_interp)
{
#ifdef CONFIG_X86_X32_ABI
if (test_thread_flag(TIF_X32)) {
if (!vdso64_enabled)
return 0;
return map_vdso(&vdso_image_x32, true);
}
#endif
#ifdef CONFIG_IA32_EMULATION
return load_vdso32();
#else
return 0;
#endif
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 31 | 53.45% | 2 | 50.00% |
| h.j. lu | h.j. lu | 17 | 29.31% | 1 | 25.00% |
| brian gerst | brian gerst | 10 | 17.24% | 1 | 25.00% |
| Total | 58 | 100.00% | 4 | 100.00% |
#endif
#else
int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
{
return load_vdso32();
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 17 | 100.00% | 1 | 100.00% |
| Total | 17 | 100.00% | 1 | 100.00% |
#endif
#ifdef CONFIG_X86_64
static __init int vdso_setup(char *s)
{
vdso64_enabled = simple_strtoul(s, NULL, 0);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andi kleen | andi kleen | 24 | 96.00% | 1 | 50.00% |
| andy lutomirski | andy lutomirski | 1 | 4.00% | 1 | 50.00% |
| Total | 25 | 100.00% | 2 | 100.00% |
__setup("vdso=", vdso_setup);
#endif
#ifdef CONFIG_X86_64
static void vgetcpu_cpu_init(void *arg)
{
int cpu = smp_processor_id();
struct desc_struct d = { };
unsigned long node = 0;
#ifdef CONFIG_NUMA
node = cpu_to_node(cpu);
#endif
if (static_cpu_has(X86_FEATURE_RDTSCP))
write_rdtscp_aux((node << 12) | cpu);
/*
* Store cpu number in limit so that it can be loaded
* quickly in user space in vgetcpu. (12 bits for the CPU
* and 8 bits for the node)
*/
d.limit0 = cpu | ((node & 0xf) << 12);
d.limit = node >> 4;
d.type = 5; /* RO data, expand down, accessed */
d.dpl = 3; /* Visible to user code */
d.s = 1; /* Not a system segment */
d.p = 1; /* Present */
d.d = 1; /* 32-bit */
write_gdt_entry(get_cpu_gdt_table(cpu), GDT_ENTRY_PER_CPU, &d, DESCTYPE_S);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 117 | 87.97% | 5 | 71.43% |
| andrew morton | andrew morton | 15 | 11.28% | 1 | 14.29% |
| borislav petkov | borislav petkov | 1 | 0.75% | 1 | 14.29% |
| Total | 133 | 100.00% | 7 | 100.00% |
static int
vgetcpu_cpu_notifier(struct notifier_block *n, unsigned long action, void *arg)
{
long cpu = (long)arg;
if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
smp_call_function_single(cpu, vgetcpu_cpu_init, NULL, 1);
return NOTIFY_DONE;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 51 | 100.00% | 2 | 100.00% |
| Total | 51 | 100.00% | 2 | 100.00% |
static int __init init_vdso(void)
{
init_vdso_image(&vdso_image_64);
#ifdef CONFIG_X86_X32_ABI
init_vdso_image(&vdso_image_x32);
#endif
cpu_notifier_register_begin();
on_each_cpu(vgetcpu_cpu_init, NULL, 1);
/* notifier priority > KVM */
__hotcpu_notifier(vgetcpu_cpu_notifier, 30);
cpu_notifier_register_done();
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 52 | 100.00% | 2 | 100.00% |
| Total | 52 | 100.00% | 2 | 100.00% |
subsys_initcall(init_vdso);
#endif /* CONFIG_X86_64 */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| andy lutomirski | andy lutomirski | 904 | 71.07% | 22 | 56.41% |
| andi kleen | andi kleen | 223 | 17.53% | 1 | 2.56% |
| h.j. lu | h.j. lu | 56 | 4.40% | 1 | 2.56% |
| andrew morton | andrew morton | 15 | 1.18% | 1 | 2.56% |
| peter zijlstra | peter zijlstra | 14 | 1.10% | 1 | 2.56% |
| borislav petkov | borislav petkov | 13 | 1.02% | 3 | 7.69% |
| brian gerst | brian gerst | 11 | 0.86% | 1 | 2.56% |
| jan beulich | jan beulich | 10 | 0.79% | 1 | 2.56% |
| michal hocko | michal hocko | 8 | 0.63% | 1 | 2.56% |
| roland mcgrath | roland mcgrath | 4 | 0.31% | 1 | 2.56% |
| jaswinder singh rajput | jaswinder singh rajput | 3 | 0.24% | 1 | 2.56% |
| alexey dobriyan | alexey dobriyan | 3 | 0.24% | 1 | 2.56% |
| tejun heo | tejun heo | 3 | 0.24% | 1 | 2.56% |
| ingo molnar | ingo molnar | 2 | 0.16% | 1 | 2.56% |
| hirofumi ogawa | hirofumi ogawa | 2 | 0.16% | 1 | 2.56% |
| michel lespinasse | michel lespinasse | 1 | 0.08% | 1 | 2.56% |
| Total | 1272 | 100.00% | 39 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.