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

嵌入式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: build.c,v 1.16.2.2 2002/03/12 15:36:43 dwmw2 Exp $
  35.  *
  36.  */
  37. #include <linux/kernel.h>
  38. #include <linux/jffs2.h>
  39. #include <linux/slab.h>
  40. #include "nodelist.h"
  41. int jffs2_build_inode_pass1(struct jffs2_sb_info *, struct jffs2_inode_cache *);
  42. int jffs2_build_remove_unlinked_inode(struct jffs2_sb_info *, struct jffs2_inode_cache *);
  43. #define for_each_inode(i, c, ic) for (i=0; i<INOCACHE_HASHSIZE; i++) for (ic=c->inocache_list[i]; ic; ic=ic->next) 
  44. /* Scan plan:
  45.  - Scan physical nodes. Build map of inodes/dirents. Allocate inocaches as we go
  46.  - Scan directory tree from top down, setting nlink in inocaches
  47.  - Scan inocaches for inodes with nlink==0
  48. */
  49. int jffs2_build_filesystem(struct jffs2_sb_info *c)
  50. {
  51. int ret;
  52. int i;
  53. struct jffs2_inode_cache *ic;
  54. /* First, scan the medium and build all the inode caches with
  55.    lists of physical nodes */
  56. c->flags |= JFFS2_SB_FLAG_MOUNTING;
  57. ret = jffs2_scan_medium(c);
  58. c->flags &= ~JFFS2_SB_FLAG_MOUNTING;
  59. if (ret)
  60. return ret;
  61. D1(printk(KERN_DEBUG "Scanned flash completelyn"));
  62. /* Now build the data map for each inode, marking obsoleted nodes
  63.    as such, and also increase nlink of any children. */
  64. for_each_inode(i, c, ic) {
  65. D1(printk(KERN_DEBUG "Pass 1: ino #%un", ic->ino));
  66. ret = jffs2_build_inode_pass1(c, ic);
  67. if (ret) {
  68. D1(printk(KERN_WARNING "Eep. jffs2_build_inode_pass1 for ino %d returned %dn", ic->ino, ret));
  69. return ret;
  70. }
  71. }
  72. D1(printk(KERN_DEBUG "Pass 1 completen"));
  73. /* Next, scan for inodes with nlink == 0 and remove them. If
  74.    they were directories, then decrement the nlink of their
  75.    children too, and repeat the scan. As that's going to be
  76.    a fairly uncommon occurrence, it's not so evil to do it this
  77.    way. Recursion bad. */
  78. do { 
  79. D1(printk(KERN_DEBUG "Pass 2 (re)startingn"));
  80. ret = 0;
  81. for_each_inode(i, c, ic) {
  82. D1(printk(KERN_DEBUG "Pass 2: ino #%u, nlink %d, ic %p, nodes %pn", ic->ino, ic->nlink, ic, ic->nodes));
  83. if (ic->nlink)
  84. continue;
  85. ret = jffs2_build_remove_unlinked_inode(c, ic);
  86. if (ret)
  87. break;
  88. /* -EAGAIN means the inode's nlink was zero, so we deleted it,
  89.    and furthermore that it had children and their nlink has now
  90.    gone to zero too. So we have to restart the scan. */
  91. } while(ret == -EAGAIN);
  92. D1(printk(KERN_DEBUG "Pass 2 completen"));
  93. /* Finally, we can scan again and free the dirent nodes and scan_info structs */
  94. for_each_inode(i, c, ic) {
  95. struct jffs2_scan_info *scan = ic->scan;
  96. struct jffs2_full_dirent *fd;
  97. D1(printk(KERN_DEBUG "Pass 3: ino #%u, ic %p, nodes %pn", ic->ino, ic, ic->nodes));
  98. if (!scan) {
  99. if (ic->nlink) {
  100. D1(printk(KERN_WARNING "Why no scan struct for ino #%u which has nlink %d?n", ic->ino, ic->nlink));
  101. }
  102. continue;
  103. }
  104. ic->scan = NULL;
  105. while(scan->dents) {
  106. fd = scan->dents;
  107. scan->dents = fd->next;
  108. jffs2_free_full_dirent(fd);
  109. }
  110. kfree(scan);
  111. }
  112. D1(printk(KERN_DEBUG "Pass 3 completen"));
  113. return ret;
  114. }
  115. int jffs2_build_inode_pass1(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic)
  116. {
  117. struct jffs2_tmp_dnode_info *tn;
  118. struct jffs2_full_dirent *fd;
  119. struct jffs2_node_frag *fraglist = NULL;
  120. struct jffs2_tmp_dnode_info *metadata = NULL;
  121. D1(printk(KERN_DEBUG "jffs2_build_inode building inode #%un", ic->ino));
  122. if (ic->ino > c->highest_ino)
  123. c->highest_ino = ic->ino;
  124. if (!ic->scan->tmpnodes && ic->ino != 1) {
  125. D1(printk(KERN_DEBUG "jffs2_build_inode: ino #%u has no data nodes!n", ic->ino));
  126. }
  127. /* Build the list to make sure any obsolete nodes are marked as such */
  128. while(ic->scan->tmpnodes) {
  129. tn = ic->scan->tmpnodes;
  130. ic->scan->tmpnodes = tn->next;
  131. if (metadata && tn->version > metadata->version) {
  132. D1(printk(KERN_DEBUG "jffs2_build_inode_pass1 ignoring old metadata at 0x%08xn",
  133.   metadata->fn->raw->flash_offset &~3));
  134. jffs2_free_full_dnode(metadata->fn);
  135. jffs2_free_tmp_dnode_info(metadata);
  136. metadata = NULL;
  137. }
  138. if (tn->fn->size) {
  139. jffs2_add_full_dnode_to_fraglist (c, &fraglist, tn->fn);
  140. jffs2_free_tmp_dnode_info(tn);
  141. } else {
  142. if (!metadata) {
  143. metadata = tn;
  144. } else {
  145. D1(printk(KERN_DEBUG "jffs2_build_inode_pass1 ignoring new metadata at 0x%08xn",
  146.   tn->fn->raw->flash_offset &~3));
  147. jffs2_free_full_dnode(tn->fn);
  148. jffs2_free_tmp_dnode_info(tn);
  149. }
  150. }
  151. }
  152. /* OK. Now clear up */
  153. if (metadata) {
  154. jffs2_free_full_dnode(metadata->fn);
  155. jffs2_free_tmp_dnode_info(metadata);
  156. }
  157. metadata = NULL;
  158. while (fraglist) {
  159. struct jffs2_node_frag *frag;
  160. frag = fraglist;
  161. fraglist = fraglist->next;
  162. if (frag->node && !(--frag->node->frags)) {
  163. jffs2_free_full_dnode(frag->node);
  164. }
  165. jffs2_free_node_frag(frag);
  166. }
  167. /* Now for each child, increase nlink */
  168. for(fd=ic->scan->dents; fd; fd = fd->next) {
  169. struct jffs2_inode_cache *child_ic;
  170. if (!fd->ino)
  171. continue;
  172. child_ic = jffs2_get_ino_cache(c, fd->ino);
  173. if (!child_ic) {
  174. printk(KERN_NOTICE "Eep. Child "%s" (ino #%u) of dir ino #%u doesn't exist!n",
  175.   fd->name, fd->ino, ic->ino);
  176. continue;
  177. }
  178. if (child_ic->nlink++ && fd->type == DT_DIR) {
  179. printk(KERN_NOTICE "Child dir "%s" (ino #%u) of dir ino #%u appears to be a hard linkn", fd->name, fd->ino, ic->ino);
  180. if (fd->ino == 1 && ic->ino == 1) {
  181. printk(KERN_NOTICE "This is mostly harmless, and probably caused by creating a JFFS2 imagen");
  182. printk(KERN_NOTICE "using a buggy version of mkfs.jffs2. Use at least v1.17.n");
  183. }
  184. /* What do we do about it? */
  185. }
  186. D1(printk(KERN_DEBUG "Increased nlink for child "%s" (ino #%u)n", fd->name, fd->ino));
  187. /* Can't free them. We might need them in pass 2 */
  188. }
  189. return 0;
  190. }
  191. int jffs2_build_remove_unlinked_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic)
  192. {
  193. struct jffs2_raw_node_ref *raw;
  194. struct jffs2_full_dirent *fd;
  195. int ret = 0;
  196. if(!ic->scan) {
  197. D1(printk(KERN_DEBUG "ino #%u was already removedn", ic->ino));
  198. return 0;
  199. }
  200. D1(printk(KERN_DEBUG "JFFS2: Removing ino #%u with nlink == zero.n", ic->ino));
  201. for (raw = ic->nodes; raw != (void *)ic; raw = raw->next_in_ino) {
  202. D1(printk(KERN_DEBUG "obsoleting node at 0x%08xn", raw->flash_offset&~3));
  203. jffs2_mark_node_obsolete(c, raw);
  204. }
  205. if (ic->scan->dents) {
  206. printk(KERN_NOTICE "Inode #%u was a directory with children - removing those too...n", ic->ino);
  207. while(ic->scan->dents) {
  208. struct jffs2_inode_cache *child_ic;
  209. fd = ic->scan->dents;
  210. ic->scan->dents = fd->next;
  211. D1(printk(KERN_DEBUG "Removing child "%s", ino #%un",
  212.   fd->name, fd->ino));
  213. child_ic = jffs2_get_ino_cache(c, fd->ino);
  214. if (!child_ic) {
  215. printk(KERN_NOTICE "Cannot remove child "%s", ino #%u, because it doesn't existn", fd->name, fd->ino);
  216. continue;
  217. }
  218. jffs2_free_full_dirent(fd);
  219. child_ic->nlink--;
  220. }
  221. ret = -EAGAIN;
  222. }
  223. kfree(ic->scan);
  224. ic->scan = NULL;
  225. // jffs2_del_ino_cache(c, ic);
  226. // jffs2_free_inode_cache(ic);
  227. return ret;
  228. }