inode.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  1. /*
  2. * Compressed rom filesystem for Linux.
  3. *
  4. * Copyright (C) 1999 Linus Torvalds.
  5. *
  6. * This file is released under the GPL.
  7. */
  8. /*
  9. * These are the VFS interfaces to the compressed rom filesystem.
  10. * The actual compression is based on zlib, see the other files.
  11. */
  12. #include <linux/module.h>
  13. #include <linux/fs.h>
  14. #include <linux/pagemap.h>
  15. #include <linux/init.h>
  16. #include <linux/string.h>
  17. #include <linux/blkdev.h>
  18. #include <linux/cramfs_fs.h>
  19. #include <linux/slab.h>
  20. #include <linux/cramfs_fs_sb.h>
  21. #include <linux/vfs.h>
  22. #include <linux/mutex.h>
  23. #include <asm/uaccess.h>
  24. static const struct super_operations cramfs_ops;
  25. static const struct inode_operations cramfs_dir_inode_operations;
  26. static const struct file_operations cramfs_directory_operations;
  27. static const struct address_space_operations cramfs_aops;
  28. static DEFINE_MUTEX(read_mutex);
  29. /* These macros may change in future, to provide better st_ino semantics. */
  30. #define OFFSET(x) ((x)->i_ino)
  31. static unsigned long cramino(const struct cramfs_inode *cino, unsigned int offset)
  32. {
  33. if (!cino->offset)
  34. return offset + 1;
  35. if (!cino->size)
  36. return offset + 1;
  37. /*
  38. * The file mode test fixes buggy mkcramfs implementations where
  39. * cramfs_inode->offset is set to a non zero value for entries
  40. * which did not contain data, like devices node and fifos.
  41. */
  42. switch (cino->mode & S_IFMT) {
  43. case S_IFREG:
  44. case S_IFDIR:
  45. case S_IFLNK:
  46. return cino->offset << 2;
  47. default:
  48. break;
  49. }
  50. return offset + 1;
  51. }
  52. static struct inode *get_cramfs_inode(struct super_block *sb,
  53. const struct cramfs_inode *cramfs_inode, unsigned int offset)
  54. {
  55. struct inode *inode;
  56. static struct timespec zerotime;
  57. inode = iget_locked(sb, cramino(cramfs_inode, offset));
  58. if (!inode)
  59. return ERR_PTR(-ENOMEM);
  60. if (!(inode->i_state & I_NEW))
  61. return inode;
  62. switch (cramfs_inode->mode & S_IFMT) {
  63. case S_IFREG:
  64. inode->i_fop = &generic_ro_fops;
  65. inode->i_data.a_ops = &cramfs_aops;
  66. break;
  67. case S_IFDIR:
  68. inode->i_op = &cramfs_dir_inode_operations;
  69. inode->i_fop = &cramfs_directory_operations;
  70. break;
  71. case S_IFLNK:
  72. inode->i_op = &page_symlink_inode_operations;
  73. inode->i_data.a_ops = &cramfs_aops;
  74. break;
  75. default:
  76. init_special_inode(inode, cramfs_inode->mode,
  77. old_decode_dev(cramfs_inode->size));
  78. }
  79. inode->i_mode = cramfs_inode->mode;
  80. inode->i_uid = cramfs_inode->uid;
  81. inode->i_gid = cramfs_inode->gid;
  82. /* if the lower 2 bits are zero, the inode contains data */
  83. if (!(inode->i_ino & 3)) {
  84. inode->i_size = cramfs_inode->size;
  85. inode->i_blocks = (cramfs_inode->size - 1) / 512 + 1;
  86. }
  87. /* Struct copy intentional */
  88. inode->i_mtime = inode->i_atime = inode->i_ctime = zerotime;
  89. /* inode->i_nlink is left 1 - arguably wrong for directories,
  90. but it's the best we can do without reading the directory
  91. contents. 1 yields the right result in GNU find, even
  92. without -noleaf option. */
  93. unlock_new_inode(inode);
  94. return inode;
  95. }
  96. /*
  97. * We have our own block cache: don't fill up the buffer cache
  98. * with the rom-image, because the way the filesystem is set
  99. * up the accesses should be fairly regular and cached in the
  100. * page cache and dentry tree anyway..
  101. *
  102. * This also acts as a way to guarantee contiguous areas of up to
  103. * BLKS_PER_BUF*PAGE_CACHE_SIZE, so that the caller doesn't need to
  104. * worry about end-of-buffer issues even when decompressing a full
  105. * page cache.
  106. */
  107. #define READ_BUFFERS (2)
  108. /* NEXT_BUFFER(): Loop over [0..(READ_BUFFERS-1)]. */
  109. #define NEXT_BUFFER(_ix) ((_ix) ^ 1)
  110. /*
  111. * BLKS_PER_BUF_SHIFT should be at least 2 to allow for "compressed"
  112. * data that takes up more space than the original and with unlucky
  113. * alignment.
  114. */
  115. #define BLKS_PER_BUF_SHIFT (2)
  116. #define BLKS_PER_BUF (1 << BLKS_PER_BUF_SHIFT)
  117. #define BUFFER_SIZE (BLKS_PER_BUF*PAGE_CACHE_SIZE)
  118. static unsigned char read_buffers[READ_BUFFERS][BUFFER_SIZE];
  119. static unsigned buffer_blocknr[READ_BUFFERS];
  120. static struct super_block * buffer_dev[READ_BUFFERS];
  121. static int next_buffer;
  122. /*
  123. * Returns a pointer to a buffer containing at least LEN bytes of
  124. * filesystem starting at byte offset OFFSET into the filesystem.
  125. */
  126. static void *cramfs_read(struct super_block *sb, unsigned int offset, unsigned int len)
  127. {
  128. struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
  129. struct page *pages[BLKS_PER_BUF];
  130. unsigned i, blocknr, buffer;
  131. unsigned long devsize;
  132. char *data;
  133. if (!len)
  134. return NULL;
  135. blocknr = offset >> PAGE_CACHE_SHIFT;
  136. offset &= PAGE_CACHE_SIZE - 1;
  137. /* Check if an existing buffer already has the data.. */
  138. for (i = 0; i < READ_BUFFERS; i++) {
  139. unsigned int blk_offset;
  140. if (buffer_dev[i] != sb)
  141. continue;
  142. if (blocknr < buffer_blocknr[i])
  143. continue;
  144. blk_offset = (blocknr - buffer_blocknr[i]) << PAGE_CACHE_SHIFT;
  145. blk_offset += offset;
  146. if (blk_offset + len > BUFFER_SIZE)
  147. continue;
  148. return read_buffers[i] + blk_offset;
  149. }
  150. devsize = mapping->host->i_size >> PAGE_CACHE_SHIFT;
  151. /* Ok, read in BLKS_PER_BUF pages completely first. */
  152. for (i = 0; i < BLKS_PER_BUF; i++) {
  153. struct page *page = NULL;
  154. if (blocknr + i < devsize) {
  155. page = read_mapping_page_async(mapping, blocknr + i,
  156. NULL);
  157. /* synchronous error? */
  158. if (IS_ERR(page))
  159. page = NULL;
  160. }
  161. pages[i] = page;
  162. }
  163. for (i = 0; i < BLKS_PER_BUF; i++) {
  164. struct page *page = pages[i];
  165. if (page) {
  166. wait_on_page_locked(page);
  167. if (!PageUptodate(page)) {
  168. /* asynchronous error */
  169. page_cache_release(page);
  170. pages[i] = NULL;
  171. }
  172. }
  173. }
  174. buffer = next_buffer;
  175. next_buffer = NEXT_BUFFER(buffer);
  176. buffer_blocknr[buffer] = blocknr;
  177. buffer_dev[buffer] = sb;
  178. data = read_buffers[buffer];
  179. for (i = 0; i < BLKS_PER_BUF; i++) {
  180. struct page *page = pages[i];
  181. if (page) {
  182. memcpy(data, kmap(page), PAGE_CACHE_SIZE);
  183. kunmap(page);
  184. page_cache_release(page);
  185. } else
  186. memset(data, 0, PAGE_CACHE_SIZE);
  187. data += PAGE_CACHE_SIZE;
  188. }
  189. return read_buffers[buffer] + offset;
  190. }
  191. static void cramfs_put_super(struct super_block *sb)
  192. {
  193. kfree(sb->s_fs_info);
  194. sb->s_fs_info = NULL;
  195. }
  196. static int cramfs_remount(struct super_block *sb, int *flags, char *data)
  197. {
  198. *flags |= MS_RDONLY;
  199. return 0;
  200. }
  201. static int cramfs_fill_super(struct super_block *sb, void *data, int silent)
  202. {
  203. int i;
  204. struct cramfs_super super;
  205. unsigned long root_offset;
  206. struct cramfs_sb_info *sbi;
  207. struct inode *root;
  208. sb->s_flags |= MS_RDONLY;
  209. sbi = kzalloc(sizeof(struct cramfs_sb_info), GFP_KERNEL);
  210. if (!sbi)
  211. return -ENOMEM;
  212. sb->s_fs_info = sbi;
  213. /* Invalidate the read buffers on mount: think disk change.. */
  214. mutex_lock(&read_mutex);
  215. for (i = 0; i < READ_BUFFERS; i++)
  216. buffer_blocknr[i] = -1;
  217. /* Read the first block and get the superblock from it */
  218. memcpy(&super, cramfs_read(sb, 0, sizeof(super)), sizeof(super));
  219. mutex_unlock(&read_mutex);
  220. /* Do sanity checks on the superblock */
  221. if (super.magic != CRAMFS_MAGIC) {
  222. /* check for wrong endianess */
  223. if (super.magic == CRAMFS_MAGIC_WEND) {
  224. if (!silent)
  225. printk(KERN_ERR "cramfs: wrong endianess\n");
  226. goto out;
  227. }
  228. /* check at 512 byte offset */
  229. mutex_lock(&read_mutex);
  230. memcpy(&super, cramfs_read(sb, 512, sizeof(super)), sizeof(super));
  231. mutex_unlock(&read_mutex);
  232. if (super.magic != CRAMFS_MAGIC) {
  233. if (super.magic == CRAMFS_MAGIC_WEND && !silent)
  234. printk(KERN_ERR "cramfs: wrong endianess\n");
  235. else if (!silent)
  236. printk(KERN_ERR "cramfs: wrong magic\n");
  237. goto out;
  238. }
  239. }
  240. /* get feature flags first */
  241. if (super.flags & ~CRAMFS_SUPPORTED_FLAGS) {
  242. printk(KERN_ERR "cramfs: unsupported filesystem features\n");
  243. goto out;
  244. }
  245. /* Check that the root inode is in a sane state */
  246. if (!S_ISDIR(super.root.mode)) {
  247. printk(KERN_ERR "cramfs: root is not a directory\n");
  248. goto out;
  249. }
  250. /* correct strange, hard-coded permissions of mkcramfs */
  251. super.root.mode |= (S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
  252. root_offset = super.root.offset << 2;
  253. if (super.flags & CRAMFS_FLAG_FSID_VERSION_2) {
  254. sbi->size=super.size;
  255. sbi->blocks=super.fsid.blocks;
  256. sbi->files=super.fsid.files;
  257. } else {
  258. sbi->size=1<<28;
  259. sbi->blocks=0;
  260. sbi->files=0;
  261. }
  262. sbi->magic=super.magic;
  263. sbi->flags=super.flags;
  264. if (root_offset == 0)
  265. printk(KERN_INFO "cramfs: empty filesystem");
  266. else if (!(super.flags & CRAMFS_FLAG_SHIFTED_ROOT_OFFSET) &&
  267. ((root_offset != sizeof(struct cramfs_super)) &&
  268. (root_offset != 512 + sizeof(struct cramfs_super))))
  269. {
  270. printk(KERN_ERR "cramfs: bad root offset %lu\n", root_offset);
  271. goto out;
  272. }
  273. /* Set it all up.. */
  274. sb->s_op = &cramfs_ops;
  275. root = get_cramfs_inode(sb, &super.root, 0);
  276. if (IS_ERR(root))
  277. goto out;
  278. sb->s_root = d_alloc_root(root);
  279. if (!sb->s_root) {
  280. iput(root);
  281. goto out;
  282. }
  283. return 0;
  284. out:
  285. kfree(sbi);
  286. sb->s_fs_info = NULL;
  287. return -EINVAL;
  288. }
  289. static int cramfs_statfs(struct dentry *dentry, struct kstatfs *buf)
  290. {
  291. struct super_block *sb = dentry->d_sb;
  292. u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
  293. buf->f_type = CRAMFS_MAGIC;
  294. buf->f_bsize = PAGE_CACHE_SIZE;
  295. buf->f_blocks = CRAMFS_SB(sb)->blocks;
  296. buf->f_bfree = 0;
  297. buf->f_bavail = 0;
  298. buf->f_files = CRAMFS_SB(sb)->files;
  299. buf->f_ffree = 0;
  300. buf->f_fsid.val[0] = (u32)id;
  301. buf->f_fsid.val[1] = (u32)(id >> 32);
  302. buf->f_namelen = CRAMFS_MAXPATHLEN;
  303. return 0;
  304. }
  305. /*
  306. * Read a cramfs directory entry.
  307. */
  308. static int cramfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
  309. {
  310. struct inode *inode = filp->f_path.dentry->d_inode;
  311. struct super_block *sb = inode->i_sb;
  312. char *buf;
  313. unsigned int offset;
  314. int copied;
  315. /* Offset within the thing. */
  316. offset = filp->f_pos;
  317. if (offset >= inode->i_size)
  318. return 0;
  319. /* Directory entries are always 4-byte aligned */
  320. if (offset & 3)
  321. return -EINVAL;
  322. buf = kmalloc(CRAMFS_MAXPATHLEN, GFP_KERNEL);
  323. if (!buf)
  324. return -ENOMEM;
  325. copied = 0;
  326. while (offset < inode->i_size) {
  327. struct cramfs_inode *de;
  328. unsigned long nextoffset;
  329. char *name;
  330. ino_t ino;
  331. umode_t mode;
  332. int namelen, error;
  333. mutex_lock(&read_mutex);
  334. de = cramfs_read(sb, OFFSET(inode) + offset, sizeof(*de)+CRAMFS_MAXPATHLEN);
  335. name = (char *)(de+1);
  336. /*
  337. * Namelengths on disk are shifted by two
  338. * and the name padded out to 4-byte boundaries
  339. * with zeroes.
  340. */
  341. namelen = de->namelen << 2;
  342. memcpy(buf, name, namelen);
  343. ino = cramino(de, OFFSET(inode) + offset);
  344. mode = de->mode;
  345. mutex_unlock(&read_mutex);
  346. nextoffset = offset + sizeof(*de) + namelen;
  347. for (;;) {
  348. if (!namelen) {
  349. kfree(buf);
  350. return -EIO;
  351. }
  352. if (buf[namelen-1])
  353. break;
  354. namelen--;
  355. }
  356. error = filldir(dirent, buf, namelen, offset, ino, mode >> 12);
  357. if (error)
  358. break;
  359. offset = nextoffset;
  360. filp->f_pos = offset;
  361. copied++;
  362. }
  363. kfree(buf);
  364. return 0;
  365. }
  366. /*
  367. * Lookup and fill in the inode data..
  368. */
  369. static struct dentry * cramfs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
  370. {
  371. unsigned int offset = 0;
  372. struct inode *inode = NULL;
  373. int sorted;
  374. mutex_lock(&read_mutex);
  375. sorted = CRAMFS_SB(dir->i_sb)->flags & CRAMFS_FLAG_SORTED_DIRS;
  376. while (offset < dir->i_size) {
  377. struct cramfs_inode *de;
  378. char *name;
  379. int namelen, retval;
  380. int dir_off = OFFSET(dir) + offset;
  381. de = cramfs_read(dir->i_sb, dir_off, sizeof(*de)+CRAMFS_MAXPATHLEN);
  382. name = (char *)(de+1);
  383. /* Try to take advantage of sorted directories */
  384. if (sorted && (dentry->d_name.name[0] < name[0]))
  385. break;
  386. namelen = de->namelen << 2;
  387. offset += sizeof(*de) + namelen;
  388. /* Quick check that the name is roughly the right length */
  389. if (((dentry->d_name.len + 3) & ~3) != namelen)
  390. continue;
  391. for (;;) {
  392. if (!namelen) {
  393. inode = ERR_PTR(-EIO);
  394. goto out;
  395. }
  396. if (name[namelen-1])
  397. break;
  398. namelen--;
  399. }
  400. if (namelen != dentry->d_name.len)
  401. continue;
  402. retval = memcmp(dentry->d_name.name, name, namelen);
  403. if (retval > 0)
  404. continue;
  405. if (!retval) {
  406. inode = get_cramfs_inode(dir->i_sb, de, dir_off);
  407. break;
  408. }
  409. /* else (retval < 0) */
  410. if (sorted)
  411. break;
  412. }
  413. out:
  414. mutex_unlock(&read_mutex);
  415. if (IS_ERR(inode))
  416. return ERR_CAST(inode);
  417. d_add(dentry, inode);
  418. return NULL;
  419. }
  420. static int cramfs_readpage(struct file *file, struct page * page)
  421. {
  422. struct inode *inode = page->mapping->host;
  423. u32 maxblock;
  424. int bytes_filled;
  425. void *pgdata;
  426. maxblock = (inode->i_size + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  427. bytes_filled = 0;
  428. pgdata = kmap(page);
  429. if (page->index < maxblock) {
  430. struct super_block *sb = inode->i_sb;
  431. u32 blkptr_offset = OFFSET(inode) + page->index*4;
  432. u32 start_offset, compr_len;
  433. start_offset = OFFSET(inode) + maxblock*4;
  434. mutex_lock(&read_mutex);
  435. if (page->index)
  436. start_offset = *(u32 *) cramfs_read(sb, blkptr_offset-4,
  437. 4);
  438. compr_len = (*(u32 *) cramfs_read(sb, blkptr_offset, 4) -
  439. start_offset);
  440. mutex_unlock(&read_mutex);
  441. if (compr_len == 0)
  442. ; /* hole */
  443. else if (unlikely(compr_len > (PAGE_CACHE_SIZE << 1))) {
  444. pr_err("cramfs: bad compressed blocksize %u\n",
  445. compr_len);
  446. goto err;
  447. } else {
  448. mutex_lock(&read_mutex);
  449. bytes_filled = cramfs_uncompress_block(pgdata,
  450. PAGE_CACHE_SIZE,
  451. cramfs_read(sb, start_offset, compr_len),
  452. compr_len);
  453. mutex_unlock(&read_mutex);
  454. if (unlikely(bytes_filled < 0))
  455. goto err;
  456. }
  457. }
  458. memset(pgdata + bytes_filled, 0, PAGE_CACHE_SIZE - bytes_filled);
  459. flush_dcache_page(page);
  460. kunmap(page);
  461. SetPageUptodate(page);
  462. unlock_page(page);
  463. return 0;
  464. err:
  465. kunmap(page);
  466. ClearPageUptodate(page);
  467. SetPageError(page);
  468. unlock_page(page);
  469. return 0;
  470. }
  471. static const struct address_space_operations cramfs_aops = {
  472. .readpage = cramfs_readpage
  473. };
  474. /*
  475. * Our operations:
  476. */
  477. /*
  478. * A directory can only readdir
  479. */
  480. static const struct file_operations cramfs_directory_operations = {
  481. .llseek = generic_file_llseek,
  482. .read = generic_read_dir,
  483. .readdir = cramfs_readdir,
  484. };
  485. static const struct inode_operations cramfs_dir_inode_operations = {
  486. .lookup = cramfs_lookup,
  487. };
  488. static const struct super_operations cramfs_ops = {
  489. .put_super = cramfs_put_super,
  490. .remount_fs = cramfs_remount,
  491. .statfs = cramfs_statfs,
  492. };
  493. static struct dentry *cramfs_mount(struct file_system_type *fs_type,
  494. int flags, const char *dev_name, void *data)
  495. {
  496. return mount_bdev(fs_type, flags, dev_name, data, cramfs_fill_super);
  497. }
  498. static struct file_system_type cramfs_fs_type = {
  499. .owner = THIS_MODULE,
  500. .name = "cramfs",
  501. .mount = cramfs_mount,
  502. .kill_sb = kill_block_super,
  503. .fs_flags = FS_REQUIRES_DEV,
  504. };
  505. static int __init init_cramfs_fs(void)
  506. {
  507. int rv;
  508. rv = cramfs_uncompress_init();
  509. if (rv < 0)
  510. return rv;
  511. rv = register_filesystem(&cramfs_fs_type);
  512. if (rv < 0)
  513. cramfs_uncompress_exit();
  514. return rv;
  515. }
  516. static void __exit exit_cramfs_fs(void)
  517. {
  518. cramfs_uncompress_exit();
  519. unregister_filesystem(&cramfs_fs_type);
  520. }
  521. module_init(init_cramfs_fs)
  522. module_exit(exit_cramfs_fs)
  523. MODULE_LICENSE("GPL");