All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][resend] small binfmt_elf warning fix (copy_from_user return value checking) (fwd)
@ 2004-10-24  0:49 Jesper Juhl
  2004-10-24 10:01 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Jesper Juhl @ 2004-10-24  0:49 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel


Andrew, I'm sending this to you since I can't find any maintainer for 
binfmt_elf, and mails to the list about this seem to hit some black hole.
Care to take a look and consider for inclusion (it's really small and 
simple)?
If there's something obviously stupid about this patch, then please let me 
know - I don't know if I should interpret the silence on the list as 
"noone can be bothered to look at it" or "insanely stupid, ignored". 
I'd like to get the warnings in binfmt_elf cleaned up, and I'm now trying 
to do it piece by piece (more pieces will follow when I get some sort of 
response to what I've already posted) instead of just one big chunk.

---
Jesper Juhl


---------- Forwarded message ----------
Date: Wed, 6 Oct 2004 23:39:06 +0200 (CEST)
From: Jesper Juhl <juhl-lkml@dif.dk>
To: linux-kernel <linux-kernel@vger.kernel.org>
Subject: [PATCH] small binfmt_elf warning fix (copy_from_user return value
    checking)


Since my patch to try and clean up all the warnings generated by 
fs/binfmt_elf.c all at once seems to be ignored I'll try a different 
approach; smaller patches fixing just a little bit at a time. Here's one 
such tiny fix.

This is the warning that triggered this patch :
fs/binfmt_elf.c:1226: warning: ignoring return value of `copy_from_user', declared with attribute warn_unused_result

The patch silences the warning by actually using the return value, but in 
this case there's no great harm done if the copy fails, psinfo has already 
been zeroed, so a failed copy will just result in a few psinfo->pr_psargs 
being zero (which as I read it is suboptimal but not fatal).
Even though we could safely ignore the return value we can gain a tiny 
bennefit from it by using it to decrease the 'len' variable that is used 
in the for() loop below - if copy to user failed to copy all data, then 
there's no need for the loop to iterate over any more than what was 
actually copied (and we know the rest is zeroed).

So, we get two small bennefits from this patch:
- Silence the warning by actually using the return value of copy_from_user
- If copy_from_user fails save a few loop iterations (at least then some 
good came from a bad situation).

Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>

diff -up linux-2.6.9-rc3-bk5-orig/fs/binfmt_elf.c linux-2.6.9-rc3-bk5/fs/binfmt_elf.c
--- linux-2.6.9-rc3-bk5-orig/fs/binfmt_elf.c	2004-09-30 05:04:32.000000000 +0200
+++ linux-2.6.9-rc3-bk5/fs/binfmt_elf.c	2004-10-06 23:21:22.000000000 +0200
@@ -1223,7 +1223,7 @@ static void fill_psinfo(struct elf_prpsi
 	len = mm->arg_end - mm->arg_start;
 	if (len >= ELF_PRARGSZ)
 		len = ELF_PRARGSZ-1;
-	copy_from_user(&psinfo->pr_psargs,
+	len -= copy_from_user(&psinfo->pr_psargs,
 		       (const char __user *)mm->arg_start, len);
 	for(i = 0; i < len; i++)
 		if (psinfo->pr_psargs[i] == 0)




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-10-24 10:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-24  0:49 [PATCH][resend] small binfmt_elf warning fix (copy_from_user return value checking) (fwd) Jesper Juhl
2004-10-24 10:01 ` Andrew Morton
2004-10-24 10:42   ` Jesper Juhl

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.