From: David Mosberger <davidm@napali.hpl.hp.com>
To: Russell King <rmk@arm.linux.org.uk>
Cc: Linux Kernel List <linux-kernel@vger.kernel.org>
Subject: Re: force_successful_syscall_return() buggy?
Date: Mon, 16 Jun 2003 10:38:27 -0700 [thread overview]
Message-ID: <16110.147.422432.486761@napali.hpl.hp.com> (raw)
In-Reply-To: <20030615193604.L5417@flint.arm.linux.org.uk>
>>>>> On Sun, 15 Jun 2003 19:36:04 +0100, Russell King <rmk@arm.linux.org.uk> said:
Russell> Consider what happens when a userspace program is started
Russell> from kernel space, eg the init(8) or hotplug programs. In
Russell> these, we call execve() from within kernel space function.
Russell> This implies that we have some frames already on the stack.
Russell> AFAIK, sys_execve() does not ensure that the kernel stack
Russell> will be empty before starting the user space thread, so
Russell> these programs are running with a slightly reduced kernel
Russell> stack.
Russell> In turn, this means that the user registers are not stored
Russell> at the top of the kernel stack when the user space program
Russell> subsequently calls a kernel system call, which means the
Russell> *_task_regs() macro doesn't point at the saved user
Russell> registers.
That's a limitation that was described in the change log entry:
The only limitation of force_successful_syscall_return() is
that it doesn't help with system calls performed by the
kernel. But the kernel does that so rarely and for such a
limited set of syscalls that this is not a real problem.
Alpha and ia64 have used pt_regs for "force-success" purposes for a
long time, but if you want to add support to another platform, I'd
also recommend using the task_info instead. Dave Miller proposed a
scheme that could work nicely: force_success flag is off by default
and turned on by force_successful_syscall_return(). When you
"consume" the flag in the syscall exit path, you turn it off
afterwards. The advantage of this scheme is that you don't have any
extra stores on the performance-critical syscall entry path. The
disadvantage is that you'll have to check the flag even when the
return-value is non-negative (probably not much of a disadvantage if
you store the flag along with the other flags).
Having said that, there is one real problem: Linus pointed out that
the current scheme may be in correct for certain platforms: if
sizeof(loff_t) > sizeof(off_t) then drivers/char/mem.c:memory_lseek()
may do force_successful_syscall_return() yet sys_lseek() would have to
return EOVERFLOW if it turns out that the offset doesn't fit in off_t.
I think this would only affect 32-bit platforms with some sort of
physical address-extensions. So it would affect x86, but perhaps
nothing else (but of course, x86 doesn't use
force_successful_syscall() anyhow, so for now, that's OK).
The clean way to fix this would probably be to return the offset via a
pointer argument.
--david
next prev parent reply other threads:[~2003-06-16 17:24 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-06-15 18:36 Russell King
2003-06-15 23:11 ` Richard Henderson
2003-06-16 2:30 ` Paul Mackerras
2003-06-16 17:38 ` David Mosberger [this message]
2003-06-16 17:55 ` Russell King
2003-06-16 18:02 ` David S. Miller
2003-06-16 18:25 ` David Mosberger
[not found] <fa.it5uct2.s4s8om@ifi.uio.no>
[not found] ` <fa.gvpfoqi.ngk8p2@ifi.uio.no>
2003-06-17 6:54 ` Aneesh Kumar K.V
2003-06-17 19:01 ` David Mosberger
2003-06-17 18:58 ` David S. Miller
2003-06-19 17:35 ` Richard Henderson
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=16110.147.422432.486761@napali.hpl.hp.com \
--to=davidm@napali.hpl.hp.com \
--cc=davidm@hpl.hp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rmk@arm.linux.org.uk \
/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®