super.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * JFFS2 -- Journalling Flash File System, Version 2.
  3.  *
  4.  * Copyright (C) 2001 Red Hat, Inc.
  5.  *
  6.  * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
  7.  *
  8.  * The original JFFS, from which the design for JFFS2 was derived,
  9.  * was designed and implemented by Axis Communications AB.
  10.  *
  11.  * The contents of this file are subject to the Red Hat eCos Public
  12.  * License Version 1.1 (the "Licence"); you may not use this file
  13.  * except in compliance with the Licence.  You may obtain a copy of
  14.  * the Licence at http://www.redhat.com/
  15.  *
  16.  * Software distributed under the Licence is distributed on an "AS IS"
  17.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
  18.  * See the Licence for the specific language governing rights and
  19.  * limitations under the Licence.
  20.  *
  21.  * The Original Code is JFFS2 - Journalling Flash File System, version 2
  22.  *
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License version 2 (the "GPL"), in
  25.  * which case the provisions of the GPL are applicable instead of the
  26.  * above.  If you wish to allow the use of your version of this file
  27.  * only under the terms of the GPL and not to allow others to use your
  28.  * version of this file under the RHEPL, indicate your decision by
  29.  * deleting the provisions above and replace them with the notice and
  30.  * other provisions required by the GPL.  If you do not delete the
  31.  * provisions above, a recipient may use your version of this file
  32.  * under either the RHEPL or the GPL.
  33.  *
  34.  * $Id: super.c,v 1.48.2.2 2002/03/12 15:36:43 dwmw2 Exp $
  35.  *
  36.  */
  37. #include <linux/config.h>
  38. #include <linux/kernel.h>
  39. #include <linux/module.h>
  40. #include <linux/version.h>
  41. #include <linux/slab.h>
  42. #include <linux/init.h>
  43. #include <linux/list.h>
  44. #include <linux/fs.h>
  45. #include <linux/jffs2.h>
  46. #include <linux/pagemap.h>
  47. #include <linux/mtd/mtd.h>
  48. #include <linux/interrupt.h>
  49. #include "nodelist.h"
  50. #ifndef MTD_BLOCK_MAJOR
  51. #define MTD_BLOCK_MAJOR 31
  52. #endif
  53. extern void jffs2_read_inode (struct inode *);
  54. void jffs2_put_super (struct super_block *);
  55. void jffs2_write_super (struct super_block *);
  56. static int jffs2_statfs (struct super_block *, struct statfs *);
  57. int jffs2_remount_fs (struct super_block *, int *, char *);
  58. extern void jffs2_clear_inode (struct inode *);
  59. static struct super_operations jffs2_super_operations =
  60. {
  61. read_inode: jffs2_read_inode,
  62. // delete_inode: jffs2_delete_inode,
  63. put_super: jffs2_put_super,
  64. write_super: jffs2_write_super,
  65. statfs: jffs2_statfs,
  66. remount_fs: jffs2_remount_fs,
  67. clear_inode: jffs2_clear_inode
  68. };
  69. static int jffs2_statfs(struct super_block *sb, struct statfs *buf)
  70. {
  71. struct jffs2_sb_info *c = JFFS2_SB_INFO(sb);
  72. unsigned long avail;
  73. buf->f_type = JFFS2_SUPER_MAGIC;
  74. buf->f_bsize = 1 << PAGE_SHIFT;
  75. buf->f_blocks = c->flash_size >> PAGE_SHIFT;
  76. buf->f_files = 0;
  77. buf->f_ffree = 0;
  78. buf->f_namelen = JFFS2_MAX_NAME_LEN;
  79. spin_lock_bh(&c->erase_completion_lock);
  80. avail = c->dirty_size + c->free_size;
  81. if (avail > c->sector_size * JFFS2_RESERVED_BLOCKS_WRITE)
  82. avail -= c->sector_size * JFFS2_RESERVED_BLOCKS_WRITE;
  83. else
  84. avail = 0;
  85. buf->f_bavail = buf->f_bfree = avail >> PAGE_SHIFT;
  86. #if CONFIG_JFFS2_FS_DEBUG > 0
  87. printk(KERN_DEBUG "STATFS:n");
  88. printk(KERN_DEBUG "flash_size: %08xn", c->flash_size);
  89. printk(KERN_DEBUG "used_size: %08xn", c->used_size);
  90. printk(KERN_DEBUG "dirty_size: %08xn", c->dirty_size);
  91. printk(KERN_DEBUG "free_size: %08xn", c->free_size);
  92. printk(KERN_DEBUG "erasing_size: %08xn", c->erasing_size);
  93. printk(KERN_DEBUG "bad_size: %08xn", c->bad_size);
  94. printk(KERN_DEBUG "sector_size: %08xn", c->sector_size);
  95. if (c->nextblock) {
  96. printk(KERN_DEBUG "nextblock: 0x%08xn", c->nextblock->offset);
  97. } else {
  98. printk(KERN_DEBUG "nextblock: NULLn");
  99. }
  100. if (c->gcblock) {
  101. printk(KERN_DEBUG "gcblock: 0x%08xn", c->gcblock->offset);
  102. } else {
  103. printk(KERN_DEBUG "gcblock: NULLn");
  104. }
  105. if (list_empty(&c->clean_list)) {
  106. printk(KERN_DEBUG "clean_list: emptyn");
  107. } else {
  108. struct list_head *this;
  109. list_for_each(this, &c->clean_list) {
  110. struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list);
  111. printk(KERN_DEBUG "clean_list: %08xn", jeb->offset);
  112. }
  113. }
  114. if (list_empty(&c->dirty_list)) {
  115. printk(KERN_DEBUG "dirty_list: emptyn");
  116. } else {
  117. struct list_head *this;
  118. list_for_each(this, &c->dirty_list) {
  119. struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list);
  120. printk(KERN_DEBUG "dirty_list: %08xn", jeb->offset);
  121. }
  122. }
  123. if (list_empty(&c->erasing_list)) {
  124. printk(KERN_DEBUG "erasing_list: emptyn");
  125. } else {
  126. struct list_head *this;
  127. list_for_each(this, &c->erasing_list) {
  128. struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list);
  129. printk(KERN_DEBUG "erasing_list: %08xn", jeb->offset);
  130. }
  131. }
  132. if (list_empty(&c->erase_pending_list)) {
  133. printk(KERN_DEBUG "erase_pending_list: emptyn");
  134. } else {
  135. struct list_head *this;
  136. list_for_each(this, &c->erase_pending_list) {
  137. struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list);
  138. printk(KERN_DEBUG "erase_pending_list: %08xn", jeb->offset);
  139. }
  140. }
  141. if (list_empty(&c->free_list)) {
  142. printk(KERN_DEBUG "free_list: emptyn");
  143. } else {
  144. struct list_head *this;
  145. list_for_each(this, &c->free_list) {
  146. struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list);
  147. printk(KERN_DEBUG "free_list: %08xn", jeb->offset);
  148. }
  149. }
  150. if (list_empty(&c->bad_list)) {
  151. printk(KERN_DEBUG "bad_list: emptyn");
  152. } else {
  153. struct list_head *this;
  154. list_for_each(this, &c->bad_list) {
  155. struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list);
  156. printk(KERN_DEBUG "bad_list: %08xn", jeb->offset);
  157. }
  158. }
  159. if (list_empty(&c->bad_used_list)) {
  160. printk(KERN_DEBUG "bad_used_list: emptyn");
  161. } else {
  162. struct list_head *this;
  163. list_for_each(this, &c->bad_used_list) {
  164. struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list);
  165. printk(KERN_DEBUG "bad_used_list: %08xn", jeb->offset);
  166. }
  167. }
  168. #endif /* CONFIG_JFFS2_FS_DEBUG */
  169. spin_unlock_bh(&c->erase_completion_lock);
  170. return 0;
  171. }
  172. static struct super_block *jffs2_read_super(struct super_block *sb, void *data, int silent)
  173. {
  174. struct jffs2_sb_info *c;
  175. struct inode *root_i;
  176. int i;
  177. D1(printk(KERN_DEBUG "jffs2: read_super for device %sn", kdevname(sb->s_dev)));
  178. if (MAJOR(sb->s_dev) != MTD_BLOCK_MAJOR) {
  179. if (!silent)
  180. printk(KERN_DEBUG "jffs2: attempt to mount non-MTD device %sn", kdevname(sb->s_dev));
  181. return NULL;
  182. }
  183. c = JFFS2_SB_INFO(sb);
  184. memset(c, 0, sizeof(*c));
  185. c->mtd = get_mtd_device(NULL, MINOR(sb->s_dev));
  186. if (!c->mtd) {
  187. D1(printk(KERN_DEBUG "jffs2: MTD device #%u doesn't appear to existn", MINOR(sb->s_dev)));
  188. return NULL;
  189. }
  190. c->sector_size = c->mtd->erasesize;
  191. c->free_size = c->flash_size = c->mtd->size;
  192. c->nr_blocks = c->mtd->size / c->mtd->erasesize;
  193. c->blocks = kmalloc(sizeof(struct jffs2_eraseblock) * c->nr_blocks, GFP_KERNEL);
  194. if (!c->blocks)
  195. goto out_mtd;
  196. for (i=0; i<c->nr_blocks; i++) {
  197. INIT_LIST_HEAD(&c->blocks[i].list);
  198. c->blocks[i].offset = i * c->sector_size;
  199. c->blocks[i].free_size = c->sector_size;
  200. c->blocks[i].dirty_size = 0;
  201. c->blocks[i].used_size = 0;
  202. c->blocks[i].first_node = NULL;
  203. c->blocks[i].last_node = NULL;
  204. }
  205. spin_lock_init(&c->nodelist_lock);
  206. init_MUTEX(&c->alloc_sem);
  207. init_waitqueue_head(&c->erase_wait);
  208. spin_lock_init(&c->erase_completion_lock);
  209. spin_lock_init(&c->inocache_lock);
  210. INIT_LIST_HEAD(&c->clean_list);
  211. INIT_LIST_HEAD(&c->dirty_list);
  212. INIT_LIST_HEAD(&c->erasing_list);
  213. INIT_LIST_HEAD(&c->erase_pending_list);
  214. INIT_LIST_HEAD(&c->erase_complete_list);
  215. INIT_LIST_HEAD(&c->free_list);
  216. INIT_LIST_HEAD(&c->bad_list);
  217. INIT_LIST_HEAD(&c->bad_used_list);
  218. c->highest_ino = 1;
  219. if (jffs2_build_filesystem(c)) {
  220. D1(printk(KERN_DEBUG "build_fs failedn"));
  221. goto out_nodes;
  222. }
  223. sb->s_op = &jffs2_super_operations;
  224. D1(printk(KERN_DEBUG "jffs2_read_super(): Getting root inoden"));
  225. root_i = iget(sb, 1);
  226. if (is_bad_inode(root_i)) {
  227. D1(printk(KERN_WARNING "get root inode failedn"));
  228. goto out_nodes;
  229. }
  230. D1(printk(KERN_DEBUG "jffs2_read_super(): d_alloc_root()n"));
  231. sb->s_root = d_alloc_root(root_i);
  232. if (!sb->s_root)
  233. goto out_root_i;
  234. #if LINUX_VERSION_CODE >= 0x20403
  235. sb->s_maxbytes = 0xFFFFFFFF;
  236. #endif
  237. sb->s_blocksize = PAGE_CACHE_SIZE;
  238. sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
  239. sb->s_magic = JFFS2_SUPER_MAGIC;
  240. if (!(sb->s_flags & MS_RDONLY))
  241. jffs2_start_garbage_collect_thread(c);
  242. return sb;
  243.  out_root_i:
  244. iput(root_i);
  245.  out_nodes:
  246. jffs2_free_ino_caches(c);
  247. jffs2_free_raw_node_refs(c);
  248. kfree(c->blocks);
  249.  out_mtd:
  250. put_mtd_device(c->mtd);
  251. return NULL;
  252. }
  253. void jffs2_put_super (struct super_block *sb)
  254. {
  255. struct jffs2_sb_info *c = JFFS2_SB_INFO(sb);
  256. D2(printk(KERN_DEBUG "jffs2: jffs2_put_super()n"));
  257. if (!(sb->s_flags & MS_RDONLY))
  258. jffs2_stop_garbage_collect_thread(c);
  259. jffs2_free_ino_caches(c);
  260. jffs2_free_raw_node_refs(c);
  261. kfree(c->blocks);
  262. if (c->mtd->sync)
  263. c->mtd->sync(c->mtd);
  264. put_mtd_device(c->mtd);
  265. D1(printk(KERN_DEBUG "jffs2_put_super returningn"));
  266. }
  267. int jffs2_remount_fs (struct super_block *sb, int *flags, char *data)
  268. {
  269. struct jffs2_sb_info *c = JFFS2_SB_INFO(sb);
  270. if (c->flags & JFFS2_SB_FLAG_RO && !(sb->s_flags & MS_RDONLY))
  271. return -EROFS;
  272. /* We stop if it was running, then restart if it needs to.
  273.    This also catches the case where it was stopped and this
  274.    is just a remount to restart it */
  275. if (!(sb->s_flags & MS_RDONLY))
  276. jffs2_stop_garbage_collect_thread(c);
  277. if (!(*flags & MS_RDONLY))
  278. jffs2_start_garbage_collect_thread(c);
  279. sb->s_flags = (sb->s_flags & ~MS_RDONLY)|(*flags & MS_RDONLY);
  280. return 0;
  281. }
  282. void jffs2_write_super (struct super_block *sb)
  283. {
  284. struct jffs2_sb_info *c = JFFS2_SB_INFO(sb);
  285. sb->s_dirt = 0;
  286. if (sb->s_flags & MS_RDONLY)
  287. return;
  288. jffs2_garbage_collect_trigger(c);
  289. jffs2_erase_pending_blocks(c);
  290. jffs2_mark_erased_blocks(c);
  291. }
  292. static DECLARE_FSTYPE_DEV(jffs2_fs_type, "jffs2", jffs2_read_super);
  293. static int __init init_jffs2_fs(void)
  294. {
  295. int ret;
  296. printk(KERN_NOTICE "JFFS2 version 2.1. (C) 2001 Red Hat, Inc., designed by Axis Communications AB.n");
  297. #ifdef JFFS2_OUT_OF_KERNEL
  298. /* sanity checks. Could we do these at compile time? */
  299. if (sizeof(struct jffs2_sb_info) > sizeof (((struct super_block *)NULL)->u)) {
  300. printk(KERN_ERR "JFFS2 error: struct jffs2_sb_info (%d bytes) doesn't fit in the super_block union (%d bytes)n", 
  301.        sizeof(struct jffs2_sb_info), sizeof (((struct super_block *)NULL)->u));
  302. return -EIO;
  303. }
  304. if (sizeof(struct jffs2_inode_info) > sizeof (((struct inode *)NULL)->u)) {
  305. printk(KERN_ERR "JFFS2 error: struct jffs2_inode_info (%d bytes) doesn't fit in the inode union (%d bytes)n", 
  306.        sizeof(struct jffs2_inode_info), sizeof (((struct inode *)NULL)->u));
  307. return -EIO;
  308. }
  309. #endif
  310. ret = jffs2_create_slab_caches();
  311. if (ret) {
  312. printk(KERN_ERR "JFFS2 error: Failed to initialise slab cachesn");
  313. return ret;
  314. }
  315. ret = register_filesystem(&jffs2_fs_type);
  316. if (ret) {
  317. printk(KERN_ERR "JFFS2 error: Failed to register filesystemn");
  318. jffs2_destroy_slab_caches();
  319. }
  320. return ret;
  321. }
  322. static void __exit exit_jffs2_fs(void)
  323. {
  324. jffs2_destroy_slab_caches();
  325. unregister_filesystem(&jffs2_fs_type);
  326. }
  327. module_init(init_jffs2_fs);
  328. module_exit(exit_jffs2_fs);
  329. MODULE_DESCRIPTION("The Journalling Flash File System, v2");
  330. MODULE_AUTHOR("Red Hat, Inc.");
  331. MODULE_LICENSE("GPL"); // Actually dual-licensed, but it doesn't matter for 
  332.        // the sake of this tag. It's Free Software.