/kern_oII/fs/squashfs/file.c

http://omnia2droid.googlecode.com/ · C · 502 lines · 311 code · 73 blank · 118 comment · 54 complexity · 4c2d6d497d60bb02c5eca0d1f05357a1 MD5 · raw file

  1. /*
  2. * Squashfs - a compressed read only filesystem for Linux
  3. *
  4. * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
  5. * Phillip Lougher <phillip@lougher.demon.co.uk>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2,
  10. * or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  20. *
  21. * file.c
  22. */
  23. /*
  24. * This file contains code for handling regular files. A regular file
  25. * consists of a sequence of contiguous compressed blocks, and/or a
  26. * compressed fragment block (tail-end packed block). The compressed size
  27. * of each datablock is stored in a block list contained within the
  28. * file inode (itself stored in one or more compressed metadata blocks).
  29. *
  30. * To speed up access to datablocks when reading 'large' files (256 Mbytes or
  31. * larger), the code implements an index cache that caches the mapping from
  32. * block index to datablock location on disk.
  33. *
  34. * The index cache allows Squashfs to handle large files (up to 1.75 TiB) while
  35. * retaining a simple and space-efficient block list on disk. The cache
  36. * is split into slots, caching up to eight 224 GiB files (128 KiB blocks).
  37. * Larger files use multiple slots, with 1.75 TiB files using all 8 slots.
  38. * The index cache is designed to be memory efficient, and by default uses
  39. * 16 KiB.
  40. */
  41. #include <linux/fs.h>
  42. #include <linux/vfs.h>
  43. #include <linux/kernel.h>
  44. #include <linux/slab.h>
  45. #include <linux/string.h>
  46. #include <linux/pagemap.h>
  47. #include <linux/mutex.h>
  48. #include <linux/zlib.h>
  49. #include "squashfs_fs.h"
  50. #include "squashfs_fs_sb.h"
  51. #include "squashfs_fs_i.h"
  52. #include "squashfs.h"
  53. /*
  54. * Locate cache slot in range [offset, index] for specified inode. If
  55. * there's more than one return the slot closest to index.
  56. */
  57. static struct meta_index *locate_meta_index(struct inode *inode, int offset,
  58. int index)
  59. {
  60. struct meta_index *meta = NULL;
  61. struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
  62. int i;
  63. mutex_lock(&msblk->meta_index_mutex);
  64. TRACE("locate_meta_index: index %d, offset %d\n", index, offset);
  65. if (msblk->meta_index == NULL)
  66. goto not_allocated;
  67. for (i = 0; i < SQUASHFS_META_SLOTS; i++) {
  68. if (msblk->meta_index[i].inode_number == inode->i_ino &&
  69. msblk->meta_index[i].offset >= offset &&
  70. msblk->meta_index[i].offset <= index &&
  71. msblk->meta_index[i].locked == 0) {
  72. TRACE("locate_meta_index: entry %d, offset %d\n", i,
  73. msblk->meta_index[i].offset);
  74. meta = &msblk->meta_index[i];
  75. offset = meta->offset;
  76. }
  77. }
  78. if (meta)
  79. meta->locked = 1;
  80. not_allocated:
  81. mutex_unlock(&msblk->meta_index_mutex);
  82. return meta;
  83. }
  84. /*
  85. * Find and initialise an empty cache slot for index offset.
  86. */
  87. static struct meta_index *empty_meta_index(struct inode *inode, int offset,
  88. int skip)
  89. {
  90. struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
  91. struct meta_index *meta = NULL;
  92. int i;
  93. mutex_lock(&msblk->meta_index_mutex);
  94. TRACE("empty_meta_index: offset %d, skip %d\n", offset, skip);
  95. if (msblk->meta_index == NULL) {
  96. /*
  97. * First time cache index has been used, allocate and
  98. * initialise. The cache index could be allocated at
  99. * mount time but doing it here means it is allocated only
  100. * if a 'large' file is read.
  101. */
  102. msblk->meta_index = kcalloc(SQUASHFS_META_SLOTS,
  103. sizeof(*(msblk->meta_index)), GFP_KERNEL);
  104. if (msblk->meta_index == NULL) {
  105. ERROR("Failed to allocate meta_index\n");
  106. goto failed;
  107. }
  108. for (i = 0; i < SQUASHFS_META_SLOTS; i++) {
  109. msblk->meta_index[i].inode_number = 0;
  110. msblk->meta_index[i].locked = 0;
  111. }
  112. msblk->next_meta_index = 0;
  113. }
  114. for (i = SQUASHFS_META_SLOTS; i &&
  115. msblk->meta_index[msblk->next_meta_index].locked; i--)
  116. msblk->next_meta_index = (msblk->next_meta_index + 1) %
  117. SQUASHFS_META_SLOTS;
  118. if (i == 0) {
  119. TRACE("empty_meta_index: failed!\n");
  120. goto failed;
  121. }
  122. TRACE("empty_meta_index: returned meta entry %d, %p\n",
  123. msblk->next_meta_index,
  124. &msblk->meta_index[msblk->next_meta_index]);
  125. meta = &msblk->meta_index[msblk->next_meta_index];
  126. msblk->next_meta_index = (msblk->next_meta_index + 1) %
  127. SQUASHFS_META_SLOTS;
  128. meta->inode_number = inode->i_ino;
  129. meta->offset = offset;
  130. meta->skip = skip;
  131. meta->entries = 0;
  132. meta->locked = 1;
  133. failed:
  134. mutex_unlock(&msblk->meta_index_mutex);
  135. return meta;
  136. }
  137. static void release_meta_index(struct inode *inode, struct meta_index *meta)
  138. {
  139. struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
  140. mutex_lock(&msblk->meta_index_mutex);
  141. meta->locked = 0;
  142. mutex_unlock(&msblk->meta_index_mutex);
  143. }
  144. /*
  145. * Read the next n blocks from the block list, starting from
  146. * metadata block <start_block, offset>.
  147. */
  148. static long long read_indexes(struct super_block *sb, int n,
  149. u64 *start_block, int *offset)
  150. {
  151. int err, i;
  152. long long block = 0;
  153. __le32 *blist = kmalloc(PAGE_CACHE_SIZE, GFP_KERNEL);
  154. if (blist == NULL) {
  155. ERROR("read_indexes: Failed to allocate block_list\n");
  156. return -ENOMEM;
  157. }
  158. while (n) {
  159. int blocks = min_t(int, n, PAGE_CACHE_SIZE >> 2);
  160. err = squashfs_read_metadata(sb, blist, start_block,
  161. offset, blocks << 2);
  162. if (err < 0) {
  163. ERROR("read_indexes: reading block [%llx:%x]\n",
  164. *start_block, *offset);
  165. goto failure;
  166. }
  167. for (i = 0; i < blocks; i++) {
  168. int size = le32_to_cpu(blist[i]);
  169. block += SQUASHFS_COMPRESSED_SIZE_BLOCK(size);
  170. }
  171. n -= blocks;
  172. }
  173. kfree(blist);
  174. return block;
  175. failure:
  176. kfree(blist);
  177. return err;
  178. }
  179. /*
  180. * Each cache index slot has SQUASHFS_META_ENTRIES, each of which
  181. * can cache one index -> datablock/blocklist-block mapping. We wish
  182. * to distribute these over the length of the file, entry[0] maps index x,
  183. * entry[1] maps index x + skip, entry[2] maps index x + 2 * skip, and so on.
  184. * The larger the file, the greater the skip factor. The skip factor is
  185. * limited to the size of the metadata cache (SQUASHFS_CACHED_BLKS) to ensure
  186. * the number of metadata blocks that need to be read fits into the cache.
  187. * If the skip factor is limited in this way then the file will use multiple
  188. * slots.
  189. */
  190. static inline int calculate_skip(int blocks)
  191. {
  192. int skip = blocks / ((SQUASHFS_META_ENTRIES + 1)
  193. * SQUASHFS_META_INDEXES);
  194. return min(SQUASHFS_CACHED_BLKS - 1, skip + 1);
  195. }
  196. /*
  197. * Search and grow the index cache for the specified inode, returning the
  198. * on-disk locations of the datablock and block list metadata block
  199. * <index_block, index_offset> for index (scaled to nearest cache index).
  200. */
  201. static int fill_meta_index(struct inode *inode, int index,
  202. u64 *index_block, int *index_offset, u64 *data_block)
  203. {
  204. struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
  205. int skip = calculate_skip(i_size_read(inode) >> msblk->block_log);
  206. int offset = 0;
  207. struct meta_index *meta;
  208. struct meta_entry *meta_entry;
  209. u64 cur_index_block = squashfs_i(inode)->block_list_start;
  210. int cur_offset = squashfs_i(inode)->offset;
  211. u64 cur_data_block = squashfs_i(inode)->start;
  212. int err, i;
  213. /*
  214. * Scale index to cache index (cache slot entry)
  215. */
  216. index /= SQUASHFS_META_INDEXES * skip;
  217. while (offset < index) {
  218. meta = locate_meta_index(inode, offset + 1, index);
  219. if (meta == NULL) {
  220. meta = empty_meta_index(inode, offset + 1, skip);
  221. if (meta == NULL)
  222. goto all_done;
  223. } else {
  224. offset = index < meta->offset + meta->entries ? index :
  225. meta->offset + meta->entries - 1;
  226. meta_entry = &meta->meta_entry[offset - meta->offset];
  227. cur_index_block = meta_entry->index_block +
  228. msblk->inode_table;
  229. cur_offset = meta_entry->offset;
  230. cur_data_block = meta_entry->data_block;
  231. TRACE("get_meta_index: offset %d, meta->offset %d, "
  232. "meta->entries %d\n", offset, meta->offset,
  233. meta->entries);
  234. TRACE("get_meta_index: index_block 0x%llx, offset 0x%x"
  235. " data_block 0x%llx\n", cur_index_block,
  236. cur_offset, cur_data_block);
  237. }
  238. /*
  239. * If necessary grow cache slot by reading block list. Cache
  240. * slot is extended up to index or to the end of the slot, in
  241. * which case further slots will be used.
  242. */
  243. for (i = meta->offset + meta->entries; i <= index &&
  244. i < meta->offset + SQUASHFS_META_ENTRIES; i++) {
  245. int blocks = skip * SQUASHFS_META_INDEXES;
  246. long long res = read_indexes(inode->i_sb, blocks,
  247. &cur_index_block, &cur_offset);
  248. if (res < 0) {
  249. if (meta->entries == 0)
  250. /*
  251. * Don't leave an empty slot on read
  252. * error allocated to this inode...
  253. */
  254. meta->inode_number = 0;
  255. err = res;
  256. goto failed;
  257. }
  258. cur_data_block += res;
  259. meta_entry = &meta->meta_entry[i - meta->offset];
  260. meta_entry->index_block = cur_index_block -
  261. msblk->inode_table;
  262. meta_entry->offset = cur_offset;
  263. meta_entry->data_block = cur_data_block;
  264. meta->entries++;
  265. offset++;
  266. }
  267. TRACE("get_meta_index: meta->offset %d, meta->entries %d\n",
  268. meta->offset, meta->entries);
  269. release_meta_index(inode, meta);
  270. }
  271. all_done:
  272. *index_block = cur_index_block;
  273. *index_offset = cur_offset;
  274. *data_block = cur_data_block;
  275. /*
  276. * Scale cache index (cache slot entry) to index
  277. */
  278. return offset * SQUASHFS_META_INDEXES * skip;
  279. failed:
  280. release_meta_index(inode, meta);
  281. return err;
  282. }
  283. /*
  284. * Get the on-disk location and compressed size of the datablock
  285. * specified by index. Fill_meta_index() does most of the work.
  286. */
  287. static int read_blocklist(struct inode *inode, int index, u64 *block)
  288. {
  289. u64 start;
  290. long long blks;
  291. int offset;
  292. __le32 size;
  293. int res = fill_meta_index(inode, index, &start, &offset, block);
  294. TRACE("read_blocklist: res %d, index %d, start 0x%llx, offset"
  295. " 0x%x, block 0x%llx\n", res, index, start, offset,
  296. *block);
  297. if (res < 0)
  298. return res;
  299. /*
  300. * res contains the index of the mapping returned by fill_meta_index(),
  301. * this will likely be less than the desired index (because the
  302. * meta_index cache works at a higher granularity). Read any
  303. * extra block indexes needed.
  304. */
  305. if (res < index) {
  306. blks = read_indexes(inode->i_sb, index - res, &start, &offset);
  307. if (blks < 0)
  308. return (int) blks;
  309. *block += blks;
  310. }
  311. /*
  312. * Read length of block specified by index.
  313. */
  314. res = squashfs_read_metadata(inode->i_sb, &size, &start, &offset,
  315. sizeof(size));
  316. if (res < 0)
  317. return res;
  318. return le32_to_cpu(size);
  319. }
  320. static int squashfs_readpage(struct file *file, struct page *page)
  321. {
  322. struct inode *inode = page->mapping->host;
  323. struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
  324. int bytes, i, offset = 0, sparse = 0;
  325. struct squashfs_cache_entry *buffer = NULL;
  326. void *pageaddr;
  327. int mask = (1 << (msblk->block_log - PAGE_CACHE_SHIFT)) - 1;
  328. int index = page->index >> (msblk->block_log - PAGE_CACHE_SHIFT);
  329. int start_index = page->index & ~mask;
  330. int end_index = start_index | mask;
  331. int file_end = i_size_read(inode) >> msblk->block_log;
  332. TRACE("Entered squashfs_readpage, page index %lx, start block %llx\n",
  333. page->index, squashfs_i(inode)->start);
  334. if (page->index >= ((i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
  335. PAGE_CACHE_SHIFT))
  336. goto out;
  337. if (index < file_end || squashfs_i(inode)->fragment_block ==
  338. SQUASHFS_INVALID_BLK) {
  339. /*
  340. * Reading a datablock from disk. Need to read block list
  341. * to get location and block size.
  342. */
  343. u64 block = 0;
  344. int bsize = read_blocklist(inode, index, &block);
  345. if (bsize < 0)
  346. goto error_out;
  347. if (bsize == 0) { /* hole */
  348. bytes = index == file_end ?
  349. (i_size_read(inode) & (msblk->block_size - 1)) :
  350. msblk->block_size;
  351. sparse = 1;
  352. } else {
  353. /*
  354. * Read and decompress datablock.
  355. */
  356. buffer = squashfs_get_datablock(inode->i_sb,
  357. block, bsize);
  358. if (buffer->error) {
  359. ERROR("Unable to read page, block %llx, size %x"
  360. "\n", block, bsize);
  361. squashfs_cache_put(buffer);
  362. goto error_out;
  363. }
  364. bytes = buffer->length;
  365. }
  366. } else {
  367. /*
  368. * Datablock is stored inside a fragment (tail-end packed
  369. * block).
  370. */
  371. buffer = squashfs_get_fragment(inode->i_sb,
  372. squashfs_i(inode)->fragment_block,
  373. squashfs_i(inode)->fragment_size);
  374. if (buffer->error) {
  375. ERROR("Unable to read page, block %llx, size %x\n",
  376. squashfs_i(inode)->fragment_block,
  377. squashfs_i(inode)->fragment_size);
  378. squashfs_cache_put(buffer);
  379. goto error_out;
  380. }
  381. bytes = i_size_read(inode) & (msblk->block_size - 1);
  382. offset = squashfs_i(inode)->fragment_offset;
  383. }
  384. /*
  385. * Loop copying datablock into pages. As the datablock likely covers
  386. * many PAGE_CACHE_SIZE pages (default block size is 128 KiB) explicitly
  387. * grab the pages from the page cache, except for the page that we've
  388. * been called to fill.
  389. */
  390. for (i = start_index; i <= end_index && bytes > 0; i++,
  391. bytes -= PAGE_CACHE_SIZE, offset += PAGE_CACHE_SIZE) {
  392. struct page *push_page;
  393. int avail = sparse ? 0 : min_t(int, bytes, PAGE_CACHE_SIZE);
  394. TRACE("bytes %d, i %d, available_bytes %d\n", bytes, i, avail);
  395. push_page = (i == page->index) ? page :
  396. grab_cache_page_nowait(page->mapping, i);
  397. if (!push_page)
  398. continue;
  399. if (PageUptodate(push_page))
  400. goto skip_page;
  401. pageaddr = kmap_atomic(push_page, KM_USER0);
  402. squashfs_copy_data(pageaddr, buffer, offset, avail);
  403. memset(pageaddr + avail, 0, PAGE_CACHE_SIZE - avail);
  404. kunmap_atomic(pageaddr, KM_USER0);
  405. flush_dcache_page(push_page);
  406. SetPageUptodate(push_page);
  407. skip_page:
  408. unlock_page(push_page);
  409. if (i != page->index)
  410. page_cache_release(push_page);
  411. }
  412. if (!sparse)
  413. squashfs_cache_put(buffer);
  414. return 0;
  415. error_out:
  416. SetPageError(page);
  417. out:
  418. pageaddr = kmap_atomic(page, KM_USER0);
  419. memset(pageaddr, 0, PAGE_CACHE_SIZE);
  420. kunmap_atomic(pageaddr, KM_USER0);
  421. flush_dcache_page(page);
  422. if (!PageError(page))
  423. SetPageUptodate(page);
  424. unlock_page(page);
  425. return 0;
  426. }
  427. const struct address_space_operations squashfs_aops = {
  428. .readpage = squashfs_readpage
  429. };