Linux Audio

Check our new training course

Loading...
v5.4
 1// SPDX-License-Identifier: GPL-2.0
 2// Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
 3
 4#include <linux/kernel.h>
 5#include <linux/err.h>
 6#include <linux/sched.h>
 7#include <linux/mm.h>
 8#include <linux/init.h>
 9#include <linux/binfmts.h>
10#include <linux/elf.h>
11#include <linux/vmalloc.h>
12#include <linux/unistd.h>
13#include <linux/uaccess.h>
14
15#include <asm/vdso.h>
16#include <asm/cacheflush.h>
17
18static struct page *vdso_page;
19
20static int __init init_vdso(void)
21{
22	struct csky_vdso *vdso;
23	int err = 0;
24
25	vdso_page = alloc_page(GFP_KERNEL);
26	if (!vdso_page)
27		panic("Cannot allocate vdso");
28
29	vdso = vmap(&vdso_page, 1, 0, PAGE_KERNEL);
30	if (!vdso)
31		panic("Cannot map vdso");
32
33	clear_page(vdso);
 
 
34
35	err = setup_vdso_page(vdso->rt_signal_retcode);
36	if (err)
37		panic("Cannot set signal return code, err: %x.", err);
 
 
 
 
38
39	dcache_wb_range((unsigned long)vdso, (unsigned long)vdso + 16);
 
40
41	vunmap(vdso);
 
 
42
43	return 0;
44}
45subsys_initcall(init_vdso);
46
47int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
 
48{
49	int ret;
50	unsigned long addr;
51	struct mm_struct *mm = current->mm;
52
53	down_write(&mm->mmap_sem);
54
55	addr = get_unmapped_area(NULL, STACK_TOP, PAGE_SIZE, 0, 0);
56	if (IS_ERR_VALUE(addr)) {
57		ret = addr;
58		goto up_fail;
 
 
 
 
 
 
59	}
60
61	ret = install_special_mapping(
62			mm,
63			addr,
64			PAGE_SIZE,
65			VM_READ|VM_EXEC|VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC,
66			&vdso_page);
67	if (ret)
68		goto up_fail;
69
70	mm->context.vdso = (void *)addr;
 
 
 
 
 
 
 
 
71
72up_fail:
73	up_write(&mm->mmap_sem);
 
 
74	return ret;
75}
76
77const char *arch_vma_name(struct vm_area_struct *vma)
78{
79	if (vma->vm_mm == NULL)
80		return NULL;
81
82	if (vma->vm_start == (long)vma->vm_mm->context.vdso)
83		return "[vdso]";
84	else
85		return NULL;
86}
v6.13.7
 1// SPDX-License-Identifier: GPL-2.0
 2// Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
 3
 
 
 
 
 
 4#include <linux/binfmts.h>
 5#include <linux/elf.h>
 6#include <linux/err.h>
 7#include <linux/mm.h>
 8#include <linux/slab.h>
 
 
 
 
 
 9
10#include <asm/page.h>
 
 
 
11
12extern char vdso_start[], vdso_end[];
 
 
13
14static unsigned int vdso_pages;
15static struct page **vdso_pagelist;
 
16
17static int __init vdso_init(void)
18{
19	unsigned int i;
20
21	vdso_pages = (vdso_end - vdso_start) >> PAGE_SHIFT;
22	vdso_pagelist =
23		kcalloc(vdso_pages, sizeof(struct page *), GFP_KERNEL);
24	if (unlikely(vdso_pagelist == NULL)) {
25		pr_err("vdso: pagelist allocation failed\n");
26		return -ENOMEM;
27	}
28
29	for (i = 0; i < vdso_pages; i++) {
30		struct page *pg;
31
32		pg = virt_to_page(vdso_start + (i << PAGE_SHIFT));
33		vdso_pagelist[i] = pg;
34	}
35
36	return 0;
37}
38arch_initcall(vdso_init);
39
40int arch_setup_additional_pages(struct linux_binprm *bprm,
41	int uses_interp)
42{
43	struct vm_area_struct *vma;
 
44	struct mm_struct *mm = current->mm;
45	unsigned long vdso_base, vdso_len;
46	int ret;
47	static struct vm_special_mapping vdso_mapping = {
48		.name = "[vdso]",
49	};
50
51	vdso_len = vdso_pages << PAGE_SHIFT;
52
53	mmap_write_lock(mm);
54	vdso_base = get_unmapped_area(NULL, 0, vdso_len, 0, 0);
55	if (IS_ERR_VALUE(vdso_base)) {
56		ret = vdso_base;
57		goto end;
58	}
59
60	/*
61	 * Put vDSO base into mm struct. We need to do this before calling
62	 * install_special_mapping or the perf counter mmap tracking code
63	 * will fail to recognise it as a vDSO (since arch_vma_name fails).
64	 */
65	mm->context.vdso = (void *)vdso_base;
66
67	vdso_mapping.pages = vdso_pagelist;
68	vma =
69	   _install_special_mapping(mm, vdso_base, vdso_pages << PAGE_SHIFT,
70		(VM_READ | VM_EXEC | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC),
71		&vdso_mapping);
72
73	if (IS_ERR(vma)) {
74		ret = PTR_ERR(vma);
75		mm->context.vdso = NULL;
76		goto end;
77	}
78
79	vdso_base += (vdso_pages << PAGE_SHIFT);
80	ret = 0;
81end:
82	mmap_write_unlock(mm);
83	return ret;
 
 
 
 
 
 
 
 
 
 
 
84}