[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20160526151902.GC7456@e104818-lin.cambridge.arm.com>
Date: Thu, 26 May 2016 16:19:02 +0100
From: Catalin Marinas <catalin.marinas@....com>
To: Szabolcs Nagy <szabolcs.nagy@....com>
Cc: David Miller <davem@...emloft.net>, nd@....com, arnd@...db.de,
ynorov@...iumnetworks.com, linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org, linux-doc@...r.kernel.org,
linux-arch@...r.kernel.org, linux-s390@...r.kernel.org,
libc-alpha@...rceware.org, schwidefsky@...ibm.com,
heiko.carstens@...ibm.com, pinskia@...il.com, broonie@...nel.org,
joseph@...esourcery.com, christoph.muellner@...obroma-systems.com,
bamvor.zhangjian@...wei.com, klimov.linux@...il.com,
Nathan_Lynch@...tor.com, agraf@...e.de,
Prasun.Kapoor@...iumnetworks.com, kilobyte@...band.pl,
geert@...ux-m68k.org, philipp.tomsich@...obroma-systems.com
Subject: Re: [PATCH 01/23] all: syscall wrappers: add documentation
On Thu, May 26, 2016 at 03:50:01PM +0100, Szabolcs Nagy wrote:
> On 26/05/16 15:20, Catalin Marinas wrote:
> > While writing the above, I realised the current ILP32 patches still miss
> > on converting pointers passed from user space (unless I got myself
> > confused in macros). The new __SC_WRAP() and COMPAT_SYSCALL_WRAPx()
> > macros take care of zero or sign extension via __SC_COMPAT_CAST().
> > However, we have two more existing cases which I don't see covered:
> >
> > a) Native syscalls taking a pointer argument and invoked directly from
> > ILP32. For example, sys_read() takes a pointer but I don't see any
> > __SC_WRAP added by patch 5
> >
> > b) Current compat syscalls taking a pointer argument. For example,
> > compat_sys_vmsplice() gets the iov32 pointer and the compiler assumes
> > it is a 64-bit variable. I don't see where the upper half is zeroed
>
> on x32 sign/zero extension is currently left to userspace,
> which is difficult to deal with, (long long)arg does the
> wrong thing for pointer args.
I agree, I don't think we should leave sign/zero extension to user. We
should do it in the kernel either in a way similar to s390 (specific
__SC_COMPAT_CAST, __SC_DELOUSE) or by always zeroing the arguments upper
half on kernel entry with a few additional wrappers (where we have
64-bit arguments or they require sign extension). The latter has the
disadvantage of having to split 64-bit arguments in user space while the
former adds more maintenance burden to the kernel.
I can't comment on performance aspects without some real numbers.
--
Catalin
Powered by blists - more mailing lists