mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] enclosure: fix oops while iterating enclosure_status array
@ 2009-11-20  0:23 Jeff Mahoney
  2009-11-20  3:33 ` James Bottomley
  2009-11-20 21:43 ` James Bottomley
  0 siblings, 2 replies; 4+ messages in thread
From: Jeff Mahoney @ 2009-11-20  0:23 UTC (permalink / raw)
  To: James Bottomley, Linux Kernel Mailing List, Linus Torvalds

 enclosure_status is expected to be a NULL terminated array of strings
 but isn't actually NULL terminated. When writing an invalid value to
 /sys/class/enclosure/.../.../status, it goes off the end of the array
 and Oopses.

 This patch uses the array size instead.

Reported-by: Artur Wojcik <artur.wojcik@intel.com>
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
---
 drivers/misc/enclosure.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

--- a/drivers/misc/enclosure.c
+++ b/drivers/misc/enclosure.c
@@ -412,8 +412,9 @@ static ssize_t set_component_status(stru
 	struct enclosure_component *ecomp = to_enclosure_component(cdev);
 	int i;
 
-	for (i = 0; enclosure_status[i]; i++) {
-		if (strncmp(buf, enclosure_status[i],
+	for (i = 0; i < ARRAY_SIZE(enclosure_status); i++) {
+		if (enclosure_status[i] &&
+		    strncmp(buf, enclosure_status[i],
 			    strlen(enclosure_status[i])) == 0 &&
 		    (buf[strlen(enclosure_status[i])] == '\n' ||
 		     buf[strlen(enclosure_status[i])] == '\0'))
-- 
Jeff Mahoney

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

end of thread, other threads:[~2009-11-26 15:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-20  0:23 [PATCH] enclosure: fix oops while iterating enclosure_status array Jeff Mahoney
2009-11-20  3:33 ` James Bottomley
2009-11-20 21:43 ` James Bottomley
2009-11-26 15:50   ` James Bottomley

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®