blob: 3a372686ffcaa58079d9d92040e699b18986d907 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Daneyc52d0d32010-02-18 16:13:04 -08002/*
Alex Smithebb5e782015-10-21 09:54:38 +01003 * Copyright (C) 2015 Imagination Technologies
4 * Author: Alex Smith <alex.smith@imgtec.com>
David Daneyc52d0d32010-02-18 16:13:04 -08005 */
6
David Daneyc52d0d32010-02-18 16:13:04 -08007#include <linux/binfmts.h>
8#include <linux/elf.h>
Alex Smithebb5e782015-10-21 09:54:38 +01009#include <linux/err.h>
10#include <linux/init.h>
Alex Smitha7f4df42015-10-21 09:57:44 +010011#include <linux/ioport.h>
Paul Burton0f02cfb2018-08-30 11:01:21 -070012#include <linux/kernel.h>
Alex Smithebb5e782015-10-21 09:54:38 +010013#include <linux/mm.h>
Paul Burtonea7e0482018-09-25 15:51:26 -070014#include <linux/random.h>
Alex Smithebb5e782015-10-21 09:54:38 +010015#include <linux/sched.h>
16#include <linux/slab.h>
Alex Smitha7f4df42015-10-21 09:57:44 +010017#include <linux/timekeeper_internal.h>
David Daneyc52d0d32010-02-18 16:13:04 -080018
Alex Smithebb5e782015-10-21 09:54:38 +010019#include <asm/abi.h>
Paul Burton00578cd2017-08-12 21:36:30 -070020#include <asm/mips-cps.h>
Paul Burton0f02cfb2018-08-30 11:01:21 -070021#include <asm/page.h>
David Daneyc52d0d32010-02-18 16:13:04 -080022#include <asm/vdso.h>
Alex Smithebb5e782015-10-21 09:54:38 +010023
24/* Kernel-provided data used by the VDSO. */
25static union mips_vdso_data vdso_data __page_aligned_data;
David Daneyc52d0d32010-02-18 16:13:04 -080026
27/*
Alex Smitha7f4df42015-10-21 09:57:44 +010028 * Mapping for the VDSO data/GIC pages. The real pages are mapped manually, as
Alex Smithebb5e782015-10-21 09:54:38 +010029 * what we map and where within the area they are mapped is determined at
30 * runtime.
David Daneyc52d0d32010-02-18 16:13:04 -080031 */
Alex Smithebb5e782015-10-21 09:54:38 +010032static struct page *no_pages[] = { NULL };
33static struct vm_special_mapping vdso_vvar_mapping = {
34 .name = "[vvar]",
35 .pages = no_pages,
36};
David Daneyc52d0d32010-02-18 16:13:04 -080037
Alex Smithebb5e782015-10-21 09:54:38 +010038static void __init init_vdso_image(struct mips_vdso_image *image)
David Daneyc52d0d32010-02-18 16:13:04 -080039{
Alex Smithebb5e782015-10-21 09:54:38 +010040 unsigned long num_pages, i;
James Hogan554af0c2016-09-07 13:37:01 +010041 unsigned long data_pfn;
Alex Smithebb5e782015-10-21 09:54:38 +010042
43 BUG_ON(!PAGE_ALIGNED(image->data));
44 BUG_ON(!PAGE_ALIGNED(image->size));
45
46 num_pages = image->size / PAGE_SIZE;
47
James Hogan554af0c2016-09-07 13:37:01 +010048 data_pfn = __phys_to_pfn(__pa_symbol(image->data));
49 for (i = 0; i < num_pages; i++)
50 image->mapping.pages[i] = pfn_to_page(data_pfn + i);
David Daneyc52d0d32010-02-18 16:13:04 -080051}
52
53static int __init init_vdso(void)
54{
Alex Smithebb5e782015-10-21 09:54:38 +010055 init_vdso_image(&vdso_image);
David Daneyc52d0d32010-02-18 16:13:04 -080056
Alex Smithebb5e782015-10-21 09:54:38 +010057#ifdef CONFIG_MIPS32_O32
58 init_vdso_image(&vdso_image_o32);
David Daneyc52d0d32010-02-18 16:13:04 -080059#endif
60
Alex Smithebb5e782015-10-21 09:54:38 +010061#ifdef CONFIG_MIPS32_N32
62 init_vdso_image(&vdso_image_n32);
63#endif
David Daneyc52d0d32010-02-18 16:13:04 -080064
David Daneyc52d0d32010-02-18 16:13:04 -080065 return 0;
66}
David Daney1ed84532010-06-16 15:00:28 -070067subsys_initcall(init_vdso);
David Daneyc52d0d32010-02-18 16:13:04 -080068
Alex Smitha7f4df42015-10-21 09:57:44 +010069void update_vsyscall(struct timekeeper *tk)
70{
71 vdso_data_write_begin(&vdso_data);
72
73 vdso_data.xtime_sec = tk->xtime_sec;
74 vdso_data.xtime_nsec = tk->tkr_mono.xtime_nsec;
75 vdso_data.wall_to_mono_sec = tk->wall_to_monotonic.tv_sec;
76 vdso_data.wall_to_mono_nsec = tk->wall_to_monotonic.tv_nsec;
77 vdso_data.cs_shift = tk->tkr_mono.shift;
78
79 vdso_data.clock_mode = tk->tkr_mono.clock->archdata.vdso_clock_mode;
80 if (vdso_data.clock_mode != VDSO_CLOCK_NONE) {
81 vdso_data.cs_mult = tk->tkr_mono.mult;
82 vdso_data.cs_cycle_last = tk->tkr_mono.cycle_last;
83 vdso_data.cs_mask = tk->tkr_mono.mask;
84 }
85
86 vdso_data_write_end(&vdso_data);
87}
88
89void update_vsyscall_tz(void)
90{
91 if (vdso_data.clock_mode != VDSO_CLOCK_NONE) {
92 vdso_data.tz_minuteswest = sys_tz.tz_minuteswest;
93 vdso_data.tz_dsttime = sys_tz.tz_dsttime;
94 }
95}
96
Paul Burtonea7e0482018-09-25 15:51:26 -070097static unsigned long vdso_base(void)
98{
99 unsigned long base;
100
101 /* Skip the delay slot emulation page */
102 base = STACK_TOP + PAGE_SIZE;
103
104 if (current->flags & PF_RANDOMIZE) {
105 base += get_random_int() & (VDSO_RANDOMIZE_SIZE - 1);
106 base = PAGE_ALIGN(base);
107 }
108
109 return base;
110}
111
David Daneyc52d0d32010-02-18 16:13:04 -0800112int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
113{
Alex Smithebb5e782015-10-21 09:54:38 +0100114 struct mips_vdso_image *image = current->thread.abi->vdso;
David Daneyc52d0d32010-02-18 16:13:04 -0800115 struct mm_struct *mm = current->mm;
Paul Burton00578cd2017-08-12 21:36:30 -0700116 unsigned long gic_size, vvar_size, size, base, data_addr, vdso_addr, gic_pfn;
Alex Smithebb5e782015-10-21 09:54:38 +0100117 struct vm_area_struct *vma;
118 int ret;
David Daneyc52d0d32010-02-18 16:13:04 -0800119
Michal Hocko69048172016-05-23 16:25:54 -0700120 if (down_write_killable(&mm->mmap_sem))
121 return -EINTR;
David Daneyc52d0d32010-02-18 16:13:04 -0800122
Paul Burton432c6ba2016-07-08 11:06:19 +0100123 /* Map delay slot emulation page */
124 base = mmap_region(NULL, STACK_TOP, PAGE_SIZE,
Paul Burtonadcc81f2018-12-20 17:45:43 +0000125 VM_READ | VM_EXEC |
126 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC,
Mike Rapoport897ab3e2017-02-24 14:58:22 -0800127 0, NULL);
Paul Burton432c6ba2016-07-08 11:06:19 +0100128 if (IS_ERR_VALUE(base)) {
129 ret = base;
130 goto out;
131 }
132
Alex Smitha7f4df42015-10-21 09:57:44 +0100133 /*
134 * Determine total area size. This includes the VDSO data itself, the
135 * data page, and the GIC user page if present. Always create a mapping
136 * for the GIC user area if the GIC is present regardless of whether it
137 * is the current clocksource, in case it comes into use later on. We
138 * only map a page even though the total area is 64K, as we only need
139 * the counter registers at the start.
140 */
Paul Burton00578cd2017-08-12 21:36:30 -0700141 gic_size = mips_gic_present() ? PAGE_SIZE : 0;
Alex Smitha7f4df42015-10-21 09:57:44 +0100142 vvar_size = gic_size + PAGE_SIZE;
143 size = vvar_size + image->size;
144
Paul Burton0f02cfb2018-08-30 11:01:21 -0700145 /*
146 * Find a region that's large enough for us to perform the
147 * colour-matching alignment below.
148 */
149 if (cpu_has_dc_aliases)
150 size += shm_align_mask + 1;
151
Paul Burtonea7e0482018-09-25 15:51:26 -0700152 base = get_unmapped_area(NULL, vdso_base(), size, 0, 0);
Alex Smithebb5e782015-10-21 09:54:38 +0100153 if (IS_ERR_VALUE(base)) {
154 ret = base;
155 goto out;
David Daneyc52d0d32010-02-18 16:13:04 -0800156 }
157
Paul Burton0f02cfb2018-08-30 11:01:21 -0700158 /*
159 * If we suffer from dcache aliasing, ensure that the VDSO data page
160 * mapping is coloured the same as the kernel's mapping of that memory.
161 * This ensures that when the kernel updates the VDSO data userland
162 * will observe it without requiring cache invalidations.
163 */
164 if (cpu_has_dc_aliases) {
165 base = __ALIGN_MASK(base, shm_align_mask);
166 base += ((unsigned long)&vdso_data - gic_size) & shm_align_mask;
167 }
168
Alex Smitha7f4df42015-10-21 09:57:44 +0100169 data_addr = base + gic_size;
170 vdso_addr = data_addr + PAGE_SIZE;
David Daneyc52d0d32010-02-18 16:13:04 -0800171
Alex Smitha7f4df42015-10-21 09:57:44 +0100172 vma = _install_special_mapping(mm, base, vvar_size,
Alex Smithebb5e782015-10-21 09:54:38 +0100173 VM_READ | VM_MAYREAD,
174 &vdso_vvar_mapping);
175 if (IS_ERR(vma)) {
176 ret = PTR_ERR(vma);
177 goto out;
178 }
179
Alex Smitha7f4df42015-10-21 09:57:44 +0100180 /* Map GIC user page. */
181 if (gic_size) {
Paul Burton00578cd2017-08-12 21:36:30 -0700182 gic_pfn = virt_to_phys(mips_gic_base + MIPS_GIC_USER_OFS) >> PAGE_SHIFT;
Alex Smitha7f4df42015-10-21 09:57:44 +0100183
Paul Burton00578cd2017-08-12 21:36:30 -0700184 ret = io_remap_pfn_range(vma, base, gic_pfn, gic_size,
Alex Smitha7f4df42015-10-21 09:57:44 +0100185 pgprot_noncached(PAGE_READONLY));
186 if (ret)
187 goto out;
188 }
189
Alex Smithebb5e782015-10-21 09:54:38 +0100190 /* Map data page. */
Alex Smitha7f4df42015-10-21 09:57:44 +0100191 ret = remap_pfn_range(vma, data_addr,
Alex Smithebb5e782015-10-21 09:54:38 +0100192 virt_to_phys(&vdso_data) >> PAGE_SHIFT,
193 PAGE_SIZE, PAGE_READONLY);
David Daneyc52d0d32010-02-18 16:13:04 -0800194 if (ret)
Alex Smithebb5e782015-10-21 09:54:38 +0100195 goto out;
David Daneyc52d0d32010-02-18 16:13:04 -0800196
Alex Smithebb5e782015-10-21 09:54:38 +0100197 /* Map VDSO image. */
198 vma = _install_special_mapping(mm, vdso_addr, image->size,
199 VM_READ | VM_EXEC |
200 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC,
201 &image->mapping);
202 if (IS_ERR(vma)) {
203 ret = PTR_ERR(vma);
204 goto out;
205 }
David Daneyc52d0d32010-02-18 16:13:04 -0800206
Alex Smithebb5e782015-10-21 09:54:38 +0100207 mm->context.vdso = (void *)vdso_addr;
208 ret = 0;
209
210out:
David Daneyc52d0d32010-02-18 16:13:04 -0800211 up_write(&mm->mmap_sem);
212 return ret;
213}