Re: A question on kernel stack

From: Kasper Dupont (kasperd@daimi.au.dk)
Date: Sun Feb 23 2003 - 09:33:21 EST


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/



This archive was generated by hypermail 2b29 : Sun Feb 23 2003 - 22:00:38 EST