projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f3e3c7
)
ext4: add check for inodes_count overflow in new resize ioctl
author
Theodore Ts'o
<
[email protected]
>
Mon, 22 Apr 2013 02:56:32 +0000
(22:56 -0400)
committer
Theodore Ts'o
<
[email protected]
>
Mon, 22 Apr 2013 02:56:32 +0000
(22:56 -0400)
Addresses-Red-Hat-Bugzilla: #913245
Reported-by: Eric Sandeen <
[email protected]
>
Signed-off-by: "Theodore Ts'o" <
[email protected]
>
Reviewed-by: Carlos Maiolino <
[email protected]
>
Cc:
[email protected]
fs/ext4/resize.c
patch
|
blob
|
history
diff --git
a/fs/ext4/resize.c
b/fs/ext4/resize.c
index 08d2312c0fd4318adcfb4363533bdbfa8cdfb819..b27c96d01965b97a1998b8542d31d9639a0b0161 100644
(file)
--- a/
fs/ext4/resize.c
+++ b/
fs/ext4/resize.c
@@
-1882,6
+1882,10
@@
retry:
return 0;
n_group = ext4_get_group_number(sb, n_blocks_count - 1);
+ if (n_group > (0xFFFFFFFFUL / EXT4_INODES_PER_GROUP(sb))) {
+ ext4_warning(sb, "resize would cause inodes_count overflow");
+ return -EINVAL;
+ }
ext4_get_group_no_and_offset(sb, o_blocks_count - 1, &o_group, &offset);
n_desc_blocks = num_desc_blocks(sb, n_group + 1);