[PATCH 2/2] CRED: Must initialise the new creds inprepare_kernel_cred()

From: David Howells
Date: Fri Jan 09 2009 - 11:15:00 EST


The newly allocated creds in prepare_kernel_cred() must be initialised before
get_uid() and get_group_info() can access them. They should be copied from
the old credentials.

Reported-by: Steve Dickson <steved@xxxxxxxxxx>
Signed-off-by: David Howells <dhowells@xxxxxxxxxx>
Acked-by: Steve Dickson <steved@xxxxxxxxxx>
---

kernel/cred.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/kernel/cred.c b/kernel/cred.c
index 400e608..3a03918 100644
--- a/kernel/cred.c
+++ b/kernel/cred.c
@@ -507,6 +507,7 @@ struct cred *prepare_kernel_cred(struct task_struct *daemon)
else
old = get_cred(&init_cred);

+ *new = *old;
get_uid(new->user);
get_group_info(new->group_info);


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/