cache.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. /*
  2. * linux/fs/fat/cache.c
  3. *
  4. * Written 1992,1993 by Werner Almesberger
  5. *
  6. * Mar 1999. AV. Changed cache, so that it uses the starting cluster instead
  7. * of inode number.
  8. * May 1999. AV. Fixed the bogosity with FAT32 (read "FAT28"). Fscking lusers.
  9. */
  10. #include <linux/fs.h>
  11. #include <linux/slab.h>
  12. #include <linux/buffer_head.h>
  13. #include "fat.h"
  14. /* this must be > 0. */
  15. #define FAT_MAX_CACHE 8
  16. struct fat_cache {
  17. struct list_head cache_list;
  18. int nr_contig; /* number of contiguous clusters */
  19. int fcluster; /* cluster number in the file. */
  20. int dcluster; /* cluster number on disk. */
  21. };
  22. struct fat_cache_id {
  23. unsigned int id;
  24. int nr_contig;
  25. int fcluster;
  26. int dcluster;
  27. };
  28. static inline int fat_max_cache(struct inode *inode)
  29. {
  30. return FAT_MAX_CACHE;
  31. }
  32. static struct kmem_cache *fat_cache_cachep;
  33. static void init_once(void *foo)
  34. {
  35. struct fat_cache *cache = (struct fat_cache *)foo;
  36. INIT_LIST_HEAD(&cache->cache_list);
  37. }
  38. int __init fat_cache_init(void)
  39. {
  40. fat_cache_cachep = kmem_cache_create("fat_cache",
  41. sizeof(struct fat_cache),
  42. 0, SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
  43. init_once);
  44. if (fat_cache_cachep == NULL)
  45. return -ENOMEM;
  46. return 0;
  47. }
  48. void fat_cache_destroy(void)
  49. {
  50. kmem_cache_destroy(fat_cache_cachep);
  51. }
  52. static inline struct fat_cache *fat_cache_alloc(struct inode *inode)
  53. {
  54. return kmem_cache_alloc(fat_cache_cachep, GFP_NOFS);
  55. }
  56. static inline void fat_cache_free(struct fat_cache *cache)
  57. {
  58. BUG_ON(!list_empty(&cache->cache_list));
  59. kmem_cache_free(fat_cache_cachep, cache);
  60. }
  61. static inline void fat_cache_update_lru(struct inode *inode,
  62. struct fat_cache *cache)
  63. {
  64. if (MSDOS_I(inode)->cache_lru.next != &cache->cache_list)
  65. list_move(&cache->cache_list, &MSDOS_I(inode)->cache_lru);
  66. }
  67. static int fat_cache_lookup(struct inode *inode, int fclus,
  68. struct fat_cache_id *cid,
  69. int *cached_fclus, int *cached_dclus)
  70. {
  71. static struct fat_cache nohit = { .fcluster = 0, };
  72. struct fat_cache *hit = &nohit, *p;
  73. int offset = -1;
  74. spin_lock(&MSDOS_I(inode)->cache_lru_lock);
  75. list_for_each_entry(p, &MSDOS_I(inode)->cache_lru, cache_list) {
  76. /* Find the cache of "fclus" or nearest cache. */
  77. if (p->fcluster <= fclus && hit->fcluster < p->fcluster) {
  78. hit = p;
  79. if ((hit->fcluster + hit->nr_contig) < fclus) {
  80. offset = hit->nr_contig;
  81. } else {
  82. offset = fclus - hit->fcluster;
  83. break;
  84. }
  85. }
  86. }
  87. if (hit != &nohit) {
  88. fat_cache_update_lru(inode, hit);
  89. cid->id = MSDOS_I(inode)->cache_valid_id;
  90. cid->nr_contig = hit->nr_contig;
  91. cid->fcluster = hit->fcluster;
  92. cid->dcluster = hit->dcluster;
  93. *cached_fclus = cid->fcluster + offset;
  94. *cached_dclus = cid->dcluster + offset;
  95. }
  96. spin_unlock(&MSDOS_I(inode)->cache_lru_lock);
  97. return offset;
  98. }
  99. static struct fat_cache *fat_cache_merge(struct inode *inode,
  100. struct fat_cache_id *new)
  101. {
  102. struct fat_cache *p;
  103. list_for_each_entry(p, &MSDOS_I(inode)->cache_lru, cache_list) {
  104. /* Find the same part as "new" in cluster-chain. */
  105. if (p->fcluster == new->fcluster) {
  106. BUG_ON(p->dcluster != new->dcluster);
  107. if (new->nr_contig > p->nr_contig)
  108. p->nr_contig = new->nr_contig;
  109. return p;
  110. }
  111. }
  112. return NULL;
  113. }
  114. static void fat_cache_add(struct inode *inode, struct fat_cache_id *new)
  115. {
  116. struct fat_cache *cache, *tmp;
  117. if (new->fcluster == -1) /* dummy cache */
  118. return;
  119. spin_lock(&MSDOS_I(inode)->cache_lru_lock);
  120. if (new->id != FAT_CACHE_VALID &&
  121. new->id != MSDOS_I(inode)->cache_valid_id)
  122. goto out; /* this cache was invalidated */
  123. cache = fat_cache_merge(inode, new);
  124. if (cache == NULL) {
  125. if (MSDOS_I(inode)->nr_caches < fat_max_cache(inode)) {
  126. MSDOS_I(inode)->nr_caches++;
  127. spin_unlock(&MSDOS_I(inode)->cache_lru_lock);
  128. tmp = fat_cache_alloc(inode);
  129. if (!tmp) {
  130. spin_lock(&MSDOS_I(inode)->cache_lru_lock);
  131. MSDOS_I(inode)->nr_caches--;
  132. spin_unlock(&MSDOS_I(inode)->cache_lru_lock);
  133. return;
  134. }
  135. spin_lock(&MSDOS_I(inode)->cache_lru_lock);
  136. cache = fat_cache_merge(inode, new);
  137. if (cache != NULL) {
  138. MSDOS_I(inode)->nr_caches--;
  139. fat_cache_free(tmp);
  140. goto out_update_lru;
  141. }
  142. cache = tmp;
  143. } else {
  144. struct list_head *p = MSDOS_I(inode)->cache_lru.prev;
  145. cache = list_entry(p, struct fat_cache, cache_list);
  146. }
  147. cache->fcluster = new->fcluster;
  148. cache->dcluster = new->dcluster;
  149. cache->nr_contig = new->nr_contig;
  150. }
  151. out_update_lru:
  152. fat_cache_update_lru(inode, cache);
  153. out:
  154. spin_unlock(&MSDOS_I(inode)->cache_lru_lock);
  155. }
  156. /*
  157. * Cache invalidation occurs rarely, thus the LRU chain is not updated. It
  158. * fixes itself after a while.
  159. */
  160. static void __fat_cache_inval_inode(struct inode *inode)
  161. {
  162. struct msdos_inode_info *i = MSDOS_I(inode);
  163. struct fat_cache *cache;
  164. while (!list_empty(&i->cache_lru)) {
  165. cache = list_entry(i->cache_lru.next, struct fat_cache, cache_list);
  166. list_del_init(&cache->cache_list);
  167. i->nr_caches--;
  168. fat_cache_free(cache);
  169. }
  170. /* Update. The copy of caches before this id is discarded. */
  171. i->cache_valid_id++;
  172. if (i->cache_valid_id == FAT_CACHE_VALID)
  173. i->cache_valid_id++;
  174. }
  175. void fat_cache_inval_inode(struct inode *inode)
  176. {
  177. spin_lock(&MSDOS_I(inode)->cache_lru_lock);
  178. __fat_cache_inval_inode(inode);
  179. spin_unlock(&MSDOS_I(inode)->cache_lru_lock);
  180. }
  181. static inline int cache_contiguous(struct fat_cache_id *cid, int dclus)
  182. {
  183. cid->nr_contig++;
  184. return ((cid->dcluster + cid->nr_contig) == dclus);
  185. }
  186. static inline void cache_init(struct fat_cache_id *cid, int fclus, int dclus)
  187. {
  188. cid->id = FAT_CACHE_VALID;
  189. cid->fcluster = fclus;
  190. cid->dcluster = dclus;
  191. cid->nr_contig = 0;
  192. }
  193. int fat_get_cluster(struct inode *inode, int cluster, int *fclus, int *dclus)
  194. {
  195. struct super_block *sb = inode->i_sb;
  196. const int limit = sb->s_maxbytes >> MSDOS_SB(sb)->cluster_bits;
  197. struct fat_entry fatent;
  198. struct fat_cache_id cid;
  199. int nr;
  200. BUG_ON(MSDOS_I(inode)->i_start == 0);
  201. *fclus = 0;
  202. *dclus = MSDOS_I(inode)->i_start;
  203. if (cluster == 0)
  204. return 0;
  205. if (fat_cache_lookup(inode, cluster, &cid, fclus, dclus) < 0) {
  206. /*
  207. * dummy, always not contiguous
  208. * This is reinitialized by cache_init(), later.
  209. */
  210. cache_init(&cid, -1, -1);
  211. }
  212. fatent_init(&fatent);
  213. while (*fclus < cluster) {
  214. /* prevent the infinite loop of cluster chain */
  215. if (*fclus > limit) {
  216. fat_fs_error_ratelimit(sb,
  217. "%s: detected the cluster chain loop"
  218. " (i_pos %lld)", __func__,
  219. MSDOS_I(inode)->i_pos);
  220. nr = -EIO;
  221. goto out;
  222. }
  223. nr = fat_ent_read(inode, &fatent, *dclus);
  224. if (nr < 0)
  225. goto out;
  226. else if (nr == FAT_ENT_FREE) {
  227. fat_fs_error_ratelimit(sb, "%s: invalid cluster chain"
  228. " (i_pos %lld)", __func__,
  229. MSDOS_I(inode)->i_pos);
  230. nr = -EIO;
  231. goto out;
  232. } else if (nr == FAT_ENT_EOF) {
  233. fat_cache_add(inode, &cid);
  234. goto out;
  235. }
  236. (*fclus)++;
  237. *dclus = nr;
  238. if (!cache_contiguous(&cid, *dclus))
  239. cache_init(&cid, *fclus, *dclus);
  240. }
  241. nr = 0;
  242. fat_cache_add(inode, &cid);
  243. out:
  244. fatent_brelse(&fatent);
  245. return nr;
  246. }
  247. static int fat_bmap_cluster(struct inode *inode, int cluster)
  248. {
  249. struct super_block *sb = inode->i_sb;
  250. int ret, fclus, dclus;
  251. if (MSDOS_I(inode)->i_start == 0)
  252. return 0;
  253. ret = fat_get_cluster(inode, cluster, &fclus, &dclus);
  254. if (ret < 0)
  255. return ret;
  256. else if (ret == FAT_ENT_EOF) {
  257. fat_fs_error(sb, "%s: request beyond EOF (i_pos %lld)",
  258. __func__, MSDOS_I(inode)->i_pos);
  259. return -EIO;
  260. }
  261. return dclus;
  262. }
  263. int fat_bmap(struct inode *inode, sector_t sector, sector_t *phys,
  264. unsigned long *mapped_blocks, int create)
  265. {
  266. struct super_block *sb = inode->i_sb;
  267. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  268. const unsigned long blocksize = sb->s_blocksize;
  269. const unsigned char blocksize_bits = sb->s_blocksize_bits;
  270. sector_t last_block;
  271. int cluster, offset;
  272. *phys = 0;
  273. *mapped_blocks = 0;
  274. if ((sbi->fat_bits != 32) && (inode->i_ino == MSDOS_ROOT_INO)) {
  275. if (sector < (sbi->dir_entries >> sbi->dir_per_block_bits)) {
  276. *phys = sector + sbi->dir_start;
  277. *mapped_blocks = 1;
  278. }
  279. return 0;
  280. }
  281. last_block = (i_size_read(inode) + (blocksize - 1)) >> blocksize_bits;
  282. if (sector >= last_block) {
  283. if (!create)
  284. return 0;
  285. /*
  286. * ->mmu_private can access on only allocation path.
  287. * (caller must hold ->i_mutex)
  288. */
  289. last_block = (MSDOS_I(inode)->mmu_private + (blocksize - 1))
  290. >> blocksize_bits;
  291. if (sector >= last_block)
  292. return 0;
  293. }
  294. cluster = sector >> (sbi->cluster_bits - sb->s_blocksize_bits);
  295. offset = sector & (sbi->sec_per_clus - 1);
  296. cluster = fat_bmap_cluster(inode, cluster);
  297. if (cluster < 0)
  298. return cluster;
  299. else if (cluster) {
  300. *phys = fat_clus_to_blknr(sbi, cluster) + offset;
  301. *mapped_blocks = sbi->sec_per_clus - offset;
  302. if (*mapped_blocks > last_block - sector)
  303. *mapped_blocks = last_block - sector;
  304. }
  305. return 0;
  306. }