From: Stefani Seibold <stefani@seibold.net>
To: Andy Lutomirski <luto@amacapital.net>
Cc: Greg KH <gregkh@linuxfoundation.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
X86 ML <x86@kernel.org>, Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, "H. Peter Anvin" <hpa@zytor.com>,
Andi Kleen <ak@linux.intel.com>,
Andrea Arcangeli <aarcange@redhat.com>,
John Stultz <john.stultz@linaro.org>,
Pavel Emelyanov <xemul@parallels.com>,
Cyrill Gorcunov <gorcunov@openvz.org>,
andriy.shevchenko@linux.intel.com,
Martin.Runge@rohde-schwarz.com, Andreas.Brief@rohde-schwarz.com
Subject: Re: [PATCH 3/4] Add 32 bit VDSO support for 32 kernel
Date: Thu, 30 Jan 2014 20:39:21 +0100 [thread overview]
Message-ID: <1391110761.945.15.camel@wall-e.seibold.net> (raw)
In-Reply-To: <CALCETrWCgLYS0_+EjpxuFFgQ_wpRAihQM_fX0uHAezmp82upTw@mail.gmail.com>
Am Donnerstag, den 30.01.2014, 10:17 -0800 schrieb Andy Lutomirski:
> > +struct vsyscall_gtod_data vvar_vsyscall_gtod_data
> > + __attribute__((visibility("hidden")));
> > +
> > +u32 hpet_counter
> > + __attribute__((visibility("hidden")));
> > +
> > +#define gtod (&vvar_vsyscall_gtod_data)
>
> Is it possible to keep the VVAR macro working for this? It'll keep
> this code more unified and make it easier for anyone who tries to add
> vgetcpu support.
>
Nope, since the access to the VVAR area differs in a 32 bit VDSO differ.
64 Bit VDSO always use FIXMAP Address, 32 bit VDSO depends on the sysctl
parameter vsyscall32 and the vdso32= kernel parameter.
In the origin code there is still gtod macro in the vclock_gettime.c,
but there is a mixed used of the gtod macro and
VVAR(vsyscall_gtod_data), so i cleaned it up only use the gtod Macro.
This has also nothing to do with vgetcpu, this is locate in a own file
called vgetcpu.c
> > if (compat_uses_vma || !compat) {
> > - /*
> > - * MAYWRITE to allow gdb to COW and set breakpoints
> > - */
> > - ret = install_special_mapping(mm, addr, PAGE_SIZE,
> > - VM_READ|VM_EXEC|
> > - VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC,
> > - vdso32_pages);
> > +
> > + vma = _install_special_mapping(mm,
> > + addr,
> > + VDSO_OFFSET(VDSO_PAGES),
> > + VM_READ|VM_EXEC,
> > + vdso32_pages);
> > +
> > + if (IS_ERR(vma)) {
> > + ret = PTR_ERR(vma);
> > + goto up_fail;
> > + }
> > +
> > + ret = remap_pfn_range(vma,
> > + vma->vm_start + VDSO_OFFSET(VDSO_VVAR_PAGE),
> > + __pa_symbol(&__vvar_page) >> PAGE_SHIFT,
> > + PAGE_SIZE,
> > + PAGE_READONLY);
> >
> > if (ret)
> > goto up_fail;
> > +
> > +#ifdef CONFIG_HPET_TIMER
> > + if (hpet_address) {
> > + ret = io_remap_pfn_range(vma,
> > + vma->vm_start + VDSO_OFFSET(VDSO_HPET_PAGE),
> > + hpet_address >> PAGE_SHIFT,
> > + PAGE_SIZE,
> > + pgprot_noncached(PAGE_READONLY));
> > +
> > + if (ret)
> > + goto up_fail;
> > + }
> > +#endif
> > }
>
> Now I'm confused. What's the fixmap stuff for? Isn't this sufficient?
>
> Also, presumably remap_pfn_range is already smart enough to prevent
> mprotect and ptrace from doing evil things.
>
The fixmap code is for the original behaviour. It saves address space
and does not change the layout. Never break user space.
> >
> > @@ -19,11 +22,17 @@ ENTRY(__kernel_vsyscall);
> > */
> > VERSION
> > {
> > - LINUX_2.5 {
> > + LINUX_2.6 {
> > global:
> > __kernel_vsyscall;
> > __kernel_sigreturn;
> > __kernel_rt_sigreturn;
> > + clock_gettime;
> > + __vdso_clock_gettime;
> > + gettimeofday;
> > + __vdso_gettimeofday;
> > + time;
> > + __vdso_time;
> > local: *;
>
> Please remove the functions that don't start with __vdso -- I don't
> think they serve any purpose. They can be confusing, since they're
> not interchangeable with the glibc functions of the same name. (The
> 64-bit vdso needs them for historical reasons.)
I can do this...
next prev parent reply other threads:[~2014-01-30 19:38 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-30 10:49 [PATCH 0/4] Add 32 bit VDSO time function support stefani
2014-01-30 10:49 ` [PATCH 1/4] Make vsyscall_gtod_data handling x86 generic stefani
2014-01-30 18:05 ` Andy Lutomirski
2014-01-30 19:27 ` Stefani Seibold
2014-01-30 19:51 ` Andy Lutomirski
2014-01-30 20:19 ` Stefani Seibold
2014-01-31 0:10 ` Andi Kleen
2014-02-01 14:51 ` Stefani Seibold
2014-01-30 10:49 ` [PATCH 2/4] Add new func _install_special_mapping() to mmap.c stefani
2014-01-30 10:49 ` [PATCH 3/4] Add 32 bit VDSO support for 32 kernel stefani
2014-01-30 15:30 ` H. Peter Anvin
2014-01-30 15:53 ` Stefani Seibold
2014-01-30 18:17 ` Andy Lutomirski
2014-01-30 19:39 ` Stefani Seibold [this message]
2014-01-30 19:50 ` Andy Lutomirski
2014-01-30 10:49 ` [PATCH 4/4] Add 32 bit VDSO support for 64 kernel stefani
2014-01-30 18:21 ` Andy Lutomirski
2014-01-30 19:43 ` Stefani Seibold
2014-01-31 23:12 ` Andy Lutomirski
2014-01-30 15:31 ` [PATCH 0/4] Add 32 bit VDSO time function support H. Peter Anvin
2014-01-30 15:52 ` Stefani Seibold
2014-01-30 15:54 ` H. Peter Anvin
2014-01-30 17:57 ` Andy Lutomirski
2014-01-30 18:03 ` H. Peter Anvin
2014-01-30 18:08 ` Andy Lutomirski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1391110761.945.15.camel@wall-e.seibold.net \
--to=stefani@seibold.net \
--cc=Andreas.Brief@rohde-schwarz.com \
--cc=Martin.Runge@rohde-schwarz.com \
--cc=aarcange@redhat.com \
--cc=ak@linux.intel.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=gorcunov@openvz.org \
--cc=gregkh@linuxfoundation.org \
--cc=hpa@zytor.com \
--cc=john.stultz@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@amacapital.net \
--cc=mingo@redhat.com \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
--cc=xemul@parallels.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®