[PATCH] md: Remove risk of overflow via sprintf) by using snprintf() in md_check_recovery()

Subsystems: software raid (multiple disks) support, the rest

STALE5656d

5 messages, 3 authors, 2011-02-13 · open the first message on its own page

[PATCH] md: Remove risk of overflow via sprintf) by using snprintf() in md_check_recovery()

From: Jesper Juhl <hidden>
Date: 2011-02-11 21:32:10

sprintf() is dangerous - given the wrong source string it will overflow 
the destination. snprintf() is safer in that at least we'll never overflow 
the destination. Even if overflow will never happen today, code changes 
over time and snprintf() is just safer in the long run.

Signed-off-by: Jesper Juhl <redacted>
---
 md.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

 just compile tested
diff --git a/drivers/md/md.c b/drivers/md/md.c
index 0cc30ec..6283658 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -7164,7 +7164,7 @@ void md_check_recovery(mddev_t *mddev)
 					if (mddev->pers->hot_remove_disk(
 						    mddev, rdev->raid_disk)==0) {
 						char nm[20];
-						sprintf(nm,"rd%d", rdev->raid_disk);
+						snprintf(nm, sizeof(nm), "rd%d", rdev->raid_disk);
 						sysfs_remove_link(&mddev->kobj, nm);
 						rdev->raid_disk = -1;
 					}

-- 
Jesper Juhl <jj@chaosbits.net>            http://www.chaosbits.net/
Plain text mails only, please.
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html

Re: [PATCH] md: Remove risk of overflow via sprintf) by using snprintf() in md_check_recovery()

From: Daniel K. <hidden>
Date: 2011-02-12 09:38:54

Jesper Juhl wrote:
sprintf() is dangerous - given the wrong source string it will overflow 
the destination. snprintf() is safer in that at least we'll never overflow 
the destination. Even if overflow will never happen today, code changes 
over time and snprintf() is just safer in the long run.
-						sprintf(nm,"rd%d", rdev->raid_disk);
+						snprintf(nm, sizeof(nm), "rd%d", rdev->raid_disk);
 						sysfs_remove_link(&mddev->kobj, nm);
What if "rd1234" get truncated to "rd123" and you remove the wrong link.
(No, I didn't actually bother to check how much room was allocated.)

Isn't it better to overflow than silently to unlink the wrong file?

What will happen when you try to unlink the "rd123" file again, when the 
actual 123 is meant?

Whatever the real fix is, should this be checked for at create_link time 
as well?


Daniel K.

Re: [PATCH] md: Remove risk of overflow via sprintf) by using snprintf() in md_check_recovery()

From: Michael Tokarev <hidden>
Date: 2011-02-12 13:49:05

12.02.2011 12:34, Daniel K. wrote:
Jesper Juhl wrote:
quoted
sprintf() is dangerous - given the wrong source string it will
overflow the destination. snprintf() is safer in that at least we'll
never overflow the destination. Even if overflow will never happen
today, code changes over time and snprintf() is just safer in the long
run.
quoted
-                        sprintf(nm,"rd%d", rdev->raid_disk);
+                        snprintf(nm, sizeof(nm), "rd%d",
rdev->raid_disk);
                         sysfs_remove_link(&mddev->kobj, nm);
What if "rd1234" get truncated to "rd123" and you remove the wrong link.
(No, I didn't actually bother to check how much room was allocated.)
That allocation is in the line above first sprintf which you deleted.
Sure, didn't bother, it's very difficult.

C'mon guys, this is pointless.  20 bytes allocated for the device
name, and this is for raid disk number.  It is impossible to have
more than 10^17 (20 bytes total, 2 for "rd" and on for the zero
terminator) drives in a single array.

/mjt

Re: [PATCH] md: Remove risk of overflow via sprintf) by using snprintf() in md_check_recovery()

From: Daniel K. <hidden>
Date: 2011-02-12 14:11:11

Michael Tokarev wrote:
12.02.2011 12:34, Daniel K. wrote:
quoted
Jesper Juhl wrote:
quoted
sprintf() is dangerous - given the wrong source string it will
overflow the destination. snprintf() is safer in that at least we'll
never overflow the destination. Even if overflow will never happen
today, code changes over time and snprintf() is just safer in the long
run.
-                        sprintf(nm,"rd%d", rdev->raid_disk);
+                        snprintf(nm, sizeof(nm), "rd%d", rdev->raid_disk);
                         sysfs_remove_link(&mddev->kobj, nm);
What if "rd1234" get truncated to "rd123" and you remove the wrong link.
(No, I didn't actually bother to check how much room was allocated.)
That allocation is in the line above first sprintf which you deleted.
Sure, didn't bother, it's very difficult.
Yeah, early morning, I cut to much, and I didn't bother to look it up 
again, sorry for being lazy. Nevertheless, the actual size is of the 
allocation is of no particular importance. As you've shown, the current 
allocation of 20 bytes is more than enough.
C'mon guys, this is pointless.  20 bytes allocated for the device
name, and this is for raid disk number.  It is impossible to have
more than 10^17 (20 bytes total, 2 for "rd" and on for the zero
terminator) drives in a single array.
Agreed, and this was sort of the point.

In all probability it would not overflow, and if it did, it would be 
better for it to crash and burn, than to unlink the wrong files.


Daniel K.

Re: [PATCH] md: Remove risk of overflow via sprintf) by using snprintf() in md_check_recovery()

From: Jesper Juhl <hidden>
Date: 2011-02-13 20:20:05

On Sat, 12 Feb 2011, Daniel K. wrote:
Michael Tokarev wrote:
quoted
12.02.2011 12:34, Daniel K. wrote:
quoted
Jesper Juhl wrote:
quoted
sprintf() is dangerous - given the wrong source string it will
overflow the destination. snprintf() is safer in that at least we'll
never overflow the destination. Even if overflow will never happen
today, code changes over time and snprintf() is just safer in the long
run.
-                        sprintf(nm,"rd%d", rdev->raid_disk);
+                        snprintf(nm, sizeof(nm), "rd%d",
rdev->raid_disk);
                         sysfs_remove_link(&mddev->kobj, nm);
What if "rd1234" get truncated to "rd123" and you remove the wrong link.
(No, I didn't actually bother to check how much room was allocated.)
That allocation is in the line above first sprintf which you deleted.
Sure, didn't bother, it's very difficult.
Yeah, early morning, I cut to much, and I didn't bother to look it up again,
sorry for being lazy. Nevertheless, the actual size is of the allocation is of
no particular importance. As you've shown, the current allocation of 20 bytes
is more than enough.
quoted
C'mon guys, this is pointless.  20 bytes allocated for the device
name, and this is for raid disk number.  It is impossible to have
more than 10^17 (20 bytes total, 2 for "rd" and on for the zero
terminator) drives in a single array.
Agreed, and this was sort of the point.

In all probability it would not overflow, and if it did, it would be better
for it to crash and burn, than to unlink the wrong files.
Point taken. Ignore the patch.

-- 
Jesper Juhl [off-list ref]            http://www.chaosbits.net/
Plain text mails only, please.
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help