Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 | /* * linux/fs/fat/cache.c * * Written 1992,1993 by Werner Almesberger * * Mar 1999. AV. Changed cache, so that it uses the starting cluster instead * of inode number. * May 1999. AV. Fixed the bogosity with FAT32 (read "FAT28"). Fscking lusers. */ #include <linux/fs.h> #include <linux/msdos_fs.h> #include <linux/fat_cvf.h> #if 0 # define PRINTK(x) printk x #else # define PRINTK(x) #endif static struct fat_cache *fat_cache,cache[FAT_CACHE]; static spinlock_t fat_cache_lock = SPIN_LOCK_UNLOCKED; /* Returns the this'th FAT entry, -1 if it is an end-of-file entry. If new_value is != -1, that FAT entry is replaced by it. */ int fat_access(struct super_block *sb,int nr,int new_value) { return MSDOS_SB(sb)->cvf_format->fat_access(sb,nr,new_value); } int fat_bmap(struct inode *inode,int sector) { return MSDOS_SB(inode->i_sb)->cvf_format->cvf_bmap(inode,sector); } int __fat_access(struct super_block *sb, int nr, int new_value) { struct msdos_sb_info *sbi = MSDOS_SB(sb); struct buffer_head *bh, *bh2, *c_bh, *c_bh2; unsigned char *p_first, *p_last; int copy, first, last, next, b; if (sbi->fat_bits == 32) { first = last = nr*4; } else if (sbi->fat_bits == 16) { first = last = nr*2; } else { first = nr*3/2; last = first+1; } b = sbi->fat_start + (first >> sb->s_blocksize_bits); if (!(bh = fat_bread(sb, b))) { printk("FAT: bread(block %d) in fat_access failed\n", b); return -EIO; } if ((first >> sb->s_blocksize_bits) == (last >> sb->s_blocksize_bits)) { bh2 = bh; } else { if (!(bh2 = fat_bread(sb, b+1))) { fat_brelse(sb, bh); printk("FAT: bread(block %d) in fat_access failed\n", b + 1); return -EIO; } } if (sbi->fat_bits == 32) { p_first = p_last = NULL; /* GCC needs that stuff */ next = CF_LE_L(((__u32 *) bh->b_data)[(first & (sb->s_blocksize - 1)) >> 2]); /* Fscking Microsoft marketing department. Their "32" is 28. */ next &= 0x0fffffff; } else if (sbi->fat_bits == 16) { p_first = p_last = NULL; /* GCC needs that stuff */ next = CF_LE_W(((__u16 *) bh->b_data)[(first & (sb->s_blocksize - 1)) >> 1]); } else { p_first = &((__u8 *)bh->b_data)[first & (sb->s_blocksize - 1)]; p_last = &((__u8 *)bh2->b_data)[(first + 1) & (sb->s_blocksize - 1)]; if (nr & 1) next = ((*p_first >> 4) | (*p_last << 4)) & 0xfff; else next = (*p_first+(*p_last << 8)) & 0xfff; } if (new_value != -1) { if (sbi->fat_bits == 32) { ((__u32 *)bh->b_data)[(first & (sb->s_blocksize - 1)) >> 2] = CT_LE_L(new_value); } else if (sbi->fat_bits == 16) { ((__u16 *)bh->b_data)[(first & (sb->s_blocksize - 1)) >> 1] = CT_LE_W(new_value); } else { if (nr & 1) { *p_first = (*p_first & 0xf) | (new_value << 4); *p_last = new_value >> 4; } else { *p_first = new_value & 0xff; *p_last = (*p_last & 0xf0) | (new_value >> 8); } fat_mark_buffer_dirty(sb, bh2); } fat_mark_buffer_dirty(sb, bh); for (copy = 1; copy < sbi->fats; copy++) { b = sbi->fat_start + (first >> sb->s_blocksize_bits) + sbi->fat_length * copy; if (!(c_bh = fat_bread(sb, b))) break; if (bh != bh2) { if (!(c_bh2 = fat_bread(sb, b+1))) { fat_brelse(sb, c_bh); break; } memcpy(c_bh2->b_data, bh2->b_data, sb->s_blocksize); fat_mark_buffer_dirty(sb, c_bh2); fat_brelse(sb, c_bh2); } memcpy(c_bh->b_data, bh->b_data, sb->s_blocksize); fat_mark_buffer_dirty(sb, c_bh); fat_brelse(sb, c_bh); } } fat_brelse(sb, bh); if (bh != bh2) fat_brelse(sb, bh2); return next; } int default_fat_access(struct super_block *sb, int nr, int new_value) { int next; next = -EIO; if (nr < 2 || MSDOS_SB(sb)->clusters + 2 <= nr) { fat_fs_panic(sb, "invalid access to FAT (entry 0x%08x)", nr); goto out; } if (new_value == FAT_ENT_EOF) new_value = EOF_FAT(sb); next = __fat_access(sb, nr, new_value); if (next < 0) goto out; if (next >= BAD_FAT(sb)) next = FAT_ENT_EOF; out: return next; } void fat_cache_init(void) { static int initialized = 0; int count; spin_lock(&fat_cache_lock); if (initialized) { spin_unlock(&fat_cache_lock); return; } fat_cache = &cache[0]; for (count = 0; count < FAT_CACHE; count++) { cache[count].sb = NULL; cache[count].next = count == FAT_CACHE-1 ? NULL : &cache[count+1]; } initialized = 1; spin_unlock(&fat_cache_lock); } void fat_cache_lookup(struct inode *inode,int cluster,int *f_clu,int *d_clu) { struct fat_cache *walk; int first = MSDOS_I(inode)->i_start; if (!first) return; spin_lock(&fat_cache_lock); for (walk = fat_cache; walk; walk = walk->next) if (inode->i_sb == walk->sb && walk->start_cluster == first && walk->file_cluster <= cluster && walk->file_cluster > *f_clu) { *d_clu = walk->disk_cluster; #ifdef DEBUG printk("cache hit: %d (%d)\n",walk->file_cluster,*d_clu); #endif if ((*f_clu = walk->file_cluster) == cluster) { spin_unlock(&fat_cache_lock); return; } } spin_unlock(&fat_cache_lock); #ifdef DEBUG printk("cache miss\n"); #endif } #ifdef DEBUG static void list_cache(void) { struct fat_cache *walk; for (walk = fat_cache; walk; walk = walk->next) { if (walk->sb) printk("<%s,%d>(%d,%d) ", walk->sb->s_id, walk->start_cluster, walk->file_cluster, walk->disk_cluster); else printk("-- "); } printk("\n"); } #endif void fat_cache_add(struct inode *inode,int f_clu,int d_clu) { struct fat_cache *walk,*last; int first = MSDOS_I(inode)->i_start; last = NULL; spin_lock(&fat_cache_lock); for (walk = fat_cache; walk->next; walk = (last = walk)->next) if (inode->i_sb == walk->sb && walk->start_cluster == first && walk->file_cluster == f_clu) { if (walk->disk_cluster != d_clu) { printk("FAT: cache corruption inode=%lu\n", inode->i_ino); spin_unlock(&fat_cache_lock); fat_cache_inval_inode(inode); return; } /* update LRU */ if (last == NULL) { spin_unlock(&fat_cache_lock); return; } last->next = walk->next; walk->next = fat_cache; fat_cache = walk; #ifdef DEBUG list_cache(); #endif spin_unlock(&fat_cache_lock); return; } walk->sb = inode->i_sb; walk->start_cluster = first; walk->file_cluster = f_clu; walk->disk_cluster = d_clu; last->next = NULL; walk->next = fat_cache; fat_cache = walk; spin_unlock(&fat_cache_lock); #ifdef DEBUG list_cache(); #endif } /* Cache invalidation occurs rarely, thus the LRU chain is not updated. It fixes itself after a while. */ void fat_cache_inval_inode(struct inode *inode) { struct fat_cache *walk; int first = MSDOS_I(inode)->i_start; spin_lock(&fat_cache_lock); for (walk = fat_cache; walk; walk = walk->next) if (walk->sb == inode->i_sb && walk->start_cluster == first) walk->sb = NULL; spin_unlock(&fat_cache_lock); } void fat_cache_inval_dev(struct super_block *sb) { struct fat_cache *walk; spin_lock(&fat_cache_lock); for (walk = fat_cache; walk; walk = walk->next) if (walk->sb == sb) walk->sb = 0; spin_unlock(&fat_cache_lock); } static int fat_get_cluster(struct inode *inode, int cluster) { struct super_block *sb = inode->i_sb; int nr,count; if (!(nr = MSDOS_I(inode)->i_start)) return 0; if (!cluster) return nr; count = 0; for (fat_cache_lookup(inode, cluster, &count, &nr); count < cluster; count++) { nr = fat_access(sb, nr, -1); if (nr == FAT_ENT_EOF) { fat_fs_panic(sb, "%s: request beyond EOF (ino %lu)", __FUNCTION__, inode->i_ino); return -EIO; } else if (nr == FAT_ENT_FREE) { fat_fs_panic(sb, "%s: invalid cluster chain (ino %lu)", __FUNCTION__, inode->i_ino); return -EIO; } else if (nr < 0) return nr; } fat_cache_add(inode, cluster, nr); return nr; } int default_fat_bmap(struct inode *inode,int sector) { struct super_block *sb = inode->i_sb; struct msdos_sb_info *sbi = MSDOS_SB(sb); int cluster, offset, last_block; if ((sbi->fat_bits != 32) && (inode->i_ino == MSDOS_ROOT_INO || (S_ISDIR(inode->i_mode) && !MSDOS_I(inode)->i_start))) { if (sector >= sbi->dir_entries >> sbi->dir_per_block_bits) return 0; return sector + sbi->dir_start; } last_block = (MSDOS_I(inode)->mmu_private + (sb->s_blocksize - 1)) >> sb->s_blocksize_bits; if (sector >= last_block) return 0; cluster = sector / sbi->cluster_size; offset = sector % sbi->cluster_size; cluster = fat_get_cluster(inode, cluster); if (cluster < 0) return cluster; else if (!cluster) return 0; return (cluster - 2) * sbi->cluster_size + sbi->data_start + offset; } /* Free all clusters after the skip'th cluster. Doesn't use the cache, because this way we get an additional sanity check. */ int fat_free(struct inode *inode,int skip) { struct super_block *sb = inode->i_sb; int nr,last; if (!(nr = MSDOS_I(inode)->i_start)) return 0; last = 0; while (skip--) { last = nr; nr = fat_access(sb, nr, -1); if (nr == FAT_ENT_EOF) return 0; else if (nr == FAT_ENT_FREE) { fat_fs_panic(sb, "%s: invalid cluster chain (ino %lu)", __FUNCTION__, inode->i_ino); return -EIO; } else if (nr < 0) return nr; } if (last) { fat_access(sb, last, FAT_ENT_EOF); fat_cache_inval_inode(inode); } else { fat_cache_inval_inode(inode); MSDOS_I(inode)->i_start = 0; MSDOS_I(inode)->i_logstart = 0; mark_inode_dirty(inode); } lock_fat(sb); while (nr != FAT_ENT_EOF) { nr = fat_access(sb, nr, FAT_ENT_FREE); if (nr < 0) goto error; else if (nr == FAT_ENT_FREE) { fat_fs_panic(sb, "%s: deleting beyond EOF (ino %lu)", __FUNCTION__, inode->i_ino); nr = -EIO; goto error; } if (MSDOS_SB(sb)->free_clusters != -1) MSDOS_SB(sb)->free_clusters++; inode->i_blocks -= (1 << MSDOS_SB(sb)->cluster_bits) >> 9; } fat_clusters_flush(sb); nr = 0; error: unlock_fat(sb); return nr; } |