Commit 2bdf67eb1631f30e2f3f5d49e4007c76e88877a8
Committed by
Linus Torvalds
1 parent
0e75f5da06
Exists in
master
and in
39 other branches
fat: mmu_private race fix
mmu_private is 64bits value, hence it's not atomic to update. So, the access rule for mmu_private is we must hold ->i_mutex. But, fat_get_block() path doesn't follow the rule on non-allocation path. This fixes by using i_size instead if non-allocation path. Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Showing 4 changed files with 25 additions and 10 deletions Side-by-side Diff
fs/fat/cache.c
... | ... | @@ -293,10 +293,12 @@ |
293 | 293 | } |
294 | 294 | |
295 | 295 | int fat_bmap(struct inode *inode, sector_t sector, sector_t *phys, |
296 | - unsigned long *mapped_blocks) | |
296 | + unsigned long *mapped_blocks, int create) | |
297 | 297 | { |
298 | 298 | struct super_block *sb = inode->i_sb; |
299 | 299 | struct msdos_sb_info *sbi = MSDOS_SB(sb); |
300 | + const unsigned long blocksize = sb->s_blocksize; | |
301 | + const unsigned char blocksize_bits = sb->s_blocksize_bits; | |
300 | 302 | sector_t last_block; |
301 | 303 | int cluster, offset; |
302 | 304 | |
... | ... | @@ -309,10 +311,21 @@ |
309 | 311 | } |
310 | 312 | return 0; |
311 | 313 | } |
312 | - last_block = (MSDOS_I(inode)->mmu_private + (sb->s_blocksize - 1)) | |
313 | - >> sb->s_blocksize_bits; | |
314 | - if (sector >= last_block) | |
315 | - return 0; | |
314 | + | |
315 | + last_block = (i_size_read(inode) + (blocksize - 1)) >> blocksize_bits; | |
316 | + if (sector >= last_block) { | |
317 | + if (!create) | |
318 | + return 0; | |
319 | + | |
320 | + /* | |
321 | + * ->mmu_private can access on only allocation path. | |
322 | + * (caller must hold ->i_mutex) | |
323 | + */ | |
324 | + last_block = (MSDOS_I(inode)->mmu_private + (blocksize - 1)) | |
325 | + >> blocksize_bits; | |
326 | + if (sector >= last_block) | |
327 | + return 0; | |
328 | + } | |
316 | 329 | |
317 | 330 | cluster = sector >> (sbi->cluster_bits - sb->s_blocksize_bits); |
318 | 331 | offset = sector & (sbi->sec_per_clus - 1); |
fs/fat/dir.c
fs/fat/fat.h
... | ... | @@ -91,7 +91,9 @@ |
91 | 91 | /* for avoiding the race between fat_free() and fat_get_cluster() */ |
92 | 92 | unsigned int cache_valid_id; |
93 | 93 | |
94 | - loff_t mmu_private; | |
94 | + /* NOTE: mmu_private is 64bits, so must hold ->i_mutex to access */ | |
95 | + loff_t mmu_private; /* physically allocated size */ | |
96 | + | |
95 | 97 | int i_start; /* first cluster or 0 */ |
96 | 98 | int i_logstart; /* logical first cluster */ |
97 | 99 | int i_attrs; /* unused attribute bits */ |
... | ... | @@ -222,7 +224,7 @@ |
222 | 224 | extern int fat_get_cluster(struct inode *inode, int cluster, |
223 | 225 | int *fclus, int *dclus); |
224 | 226 | extern int fat_bmap(struct inode *inode, sector_t sector, sector_t *phys, |
225 | - unsigned long *mapped_blocks); | |
227 | + unsigned long *mapped_blocks, int create); | |
226 | 228 | |
227 | 229 | /* fat/dir.c */ |
228 | 230 | extern const struct file_operations fat_dir_operations; |
fs/fat/inode.c
... | ... | @@ -64,7 +64,7 @@ |
64 | 64 | sector_t phys; |
65 | 65 | int err, offset; |
66 | 66 | |
67 | - err = fat_bmap(inode, iblock, &phys, &mapped_blocks); | |
67 | + err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create); | |
68 | 68 | if (err) |
69 | 69 | return err; |
70 | 70 | if (phys) { |
... | ... | @@ -94,7 +94,7 @@ |
94 | 94 | *max_blocks = min(mapped_blocks, *max_blocks); |
95 | 95 | MSDOS_I(inode)->mmu_private += *max_blocks << sb->s_blocksize_bits; |
96 | 96 | |
97 | - err = fat_bmap(inode, iblock, &phys, &mapped_blocks); | |
97 | + err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create); | |
98 | 98 | if (err) |
99 | 99 | return err; |
100 | 100 |