Re: A question on kernel stack

Kasper Dupont (kasperd@daimi.au.dk)
Sun, 23 Feb 2003 15:33:21 +0100


nataraja kumar wrote:
>
> hi,
> my apologies if i am wrong. please let me know
> why does kernel use kernel stack when process jumps
> from user mode to kernel mode. why can't user stack
> be used ?

1) The user stack is in user space, which can only be
accessed by this process (or any sharing the same
vm). Trying to access the stack of another process
would fail.
2) The stack pointer is used to find the task_struct
of the current process. You'd need another location
for the task_struct, and a way to find it.
3) Various security issues as others have already
mentioned.

-- 
Kasper Dupont -- der bruger for meget tid på usenet.
For sending spam use mailto:aaarep@daimi.au.dk
for(_=52;_;(_%5)||(_/=5),(_%5)&&(_-=2))putchar(_);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/