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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * JFFS2 -- Journalling Flash File System, Version 2.
  3.  *
  4.  * Copyright (C) 2001, 2002 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: nodelist.c,v 1.30.2.3 2002/02/23 14:04:44 dwmw2 Exp $
  35.  *
  36.  */
  37. #include <linux/kernel.h>
  38. #include <linux/jffs2.h>
  39. #include <linux/fs.h>
  40. #include <linux/mtd/mtd.h>
  41. #include "nodelist.h"
  42. void jffs2_add_fd_to_list(struct jffs2_sb_info *c, struct jffs2_full_dirent *new, struct jffs2_full_dirent **list)
  43. {
  44. struct jffs2_full_dirent **prev = list;
  45. D1(printk(KERN_DEBUG "jffs2_add_fd_to_list( %p, %p (->%p))n", new, list, *list));
  46. while ((*prev) && (*prev)->nhash <= new->nhash) {
  47. if ((*prev)->nhash == new->nhash && !strcmp((*prev)->name, new->name)) {
  48. /* Duplicate. Free one */
  49. if (new->version < (*prev)->version) {
  50. D1(printk(KERN_DEBUG "Eep! Marking new dirent node obsoleten"));
  51. D1(printk(KERN_DEBUG "New dirent is "%s"->ino #%u. Old is "%s"->ino #%un", new->name, new->ino, (*prev)->name, (*prev)->ino));
  52. jffs2_mark_node_obsolete(c, new->raw);
  53. jffs2_free_full_dirent(new);
  54. } else {
  55. D1(printk(KERN_DEBUG "Marking old dirent node (ino #%u) obsoleten", (*prev)->ino));
  56. new->next = (*prev)->next;
  57. jffs2_mark_node_obsolete(c, ((*prev)->raw));
  58. jffs2_free_full_dirent(*prev);
  59. *prev = new;
  60. }
  61. goto out;
  62. }
  63. prev = &((*prev)->next);
  64. }
  65. new->next = *prev;
  66. *prev = new;
  67.  out:
  68. D2(while(*list) {
  69. printk(KERN_DEBUG "Dirent "%s" (hash 0x%08x, ino #%un", (*list)->name, (*list)->nhash, (*list)->ino);
  70. list = &(*list)->next;
  71. });
  72. }
  73. /* Put a new tmp_dnode_info into the list, keeping the list in 
  74.    order of increasing version
  75. */
  76. void jffs2_add_tn_to_list(struct jffs2_tmp_dnode_info *tn, struct jffs2_tmp_dnode_info **list)
  77. {
  78. struct jffs2_tmp_dnode_info **prev = list;
  79. while ((*prev) && (*prev)->version < tn->version) {
  80. prev = &((*prev)->next);
  81. }
  82. tn->next = (*prev);
  83.         *prev = tn;
  84. }
  85. /* Get tmp_dnode_info and full_dirent for all non-obsolete nodes associated
  86.    with this ino, returning the former in order of version */
  87. int jffs2_get_inode_nodes(struct jffs2_sb_info *c, ino_t ino, struct jffs2_inode_info *f,
  88.   struct jffs2_tmp_dnode_info **tnp, struct jffs2_full_dirent **fdp,
  89.   __u32 *highest_version, __u32 *latest_mctime,
  90.   __u32 *mctime_ver)
  91. {
  92. struct jffs2_raw_node_ref *ref = f->inocache->nodes;
  93. struct jffs2_tmp_dnode_info *tn, *ret_tn = NULL;
  94. struct jffs2_full_dirent *fd, *ret_fd = NULL;
  95. union jffs2_node_union node;
  96. size_t retlen;
  97. int err;
  98. *mctime_ver = 0;
  99. D1(printk(KERN_DEBUG "jffs2_get_inode_nodes(): ino #%lun", ino));
  100. if (!f->inocache->nodes) {
  101. printk(KERN_WARNING "Eep. no nodes for ino #%lun", ino);
  102. }
  103. for (ref = f->inocache->nodes; ref && ref->next_in_ino; ref = ref->next_in_ino) {
  104. /* Work out whether it's a data node or a dirent node */
  105. if (ref->flash_offset & 1) {
  106. /* FIXME: On NAND flash we may need to read these */
  107. D1(printk(KERN_DEBUG "node at 0x%08x is obsoleted. Ignoring.n", ref->flash_offset &~3));
  108. continue;
  109. }
  110. err = c->mtd->read(c->mtd, (ref->flash_offset & ~3), min(ref->totlen, sizeof(node)), &retlen, (void *)&node);
  111. if (err) {
  112. printk(KERN_WARNING "error %d reading node at 0x%08x in get_inode_nodes()n", err, (ref->flash_offset) & ~3);
  113. goto free_out;
  114. }
  115. /* Check we've managed to read at least the common node header */
  116. if (retlen < min(ref->totlen, sizeof(node.u))) {
  117. printk(KERN_WARNING "short read in get_inode_nodes()n");
  118. err = -EIO;
  119. goto free_out;
  120. }
  121. switch (node.u.nodetype) {
  122. case JFFS2_NODETYPE_DIRENT:
  123. D1(printk(KERN_DEBUG "Node at %08x is a dirent noden", ref->flash_offset &~3));
  124. if (retlen < sizeof(node.d)) {
  125. printk(KERN_WARNING "short read in get_inode_nodes()n");
  126. err = -EIO;
  127. goto free_out;
  128. }
  129. if (node.d.version > *highest_version)
  130. *highest_version = node.d.version;
  131. if (ref->flash_offset & 1) {
  132. /* Obsoleted */
  133. continue;
  134. }
  135. fd = jffs2_alloc_full_dirent(node.d.nsize+1);
  136. if (!fd) {
  137. err = -ENOMEM;
  138. goto free_out;
  139. }
  140. memset(fd,0,sizeof(struct jffs2_full_dirent) + node.d.nsize+1);
  141. fd->raw = ref;
  142. fd->version = node.d.version;
  143. fd->ino = node.d.ino;
  144. fd->type = node.d.type;
  145. /* Pick out the mctime of the latest dirent */
  146. if(fd->version > *mctime_ver) {
  147. *mctime_ver = fd->version;
  148. *latest_mctime = node.d.mctime;
  149. }
  150. /* memcpy as much of the name as possible from the raw
  151.    dirent we've already read from the flash
  152. */
  153. if (retlen > sizeof(struct jffs2_raw_dirent))
  154. memcpy(&fd->name[0], &node.d.name[0], min((__u32)node.d.nsize, (retlen-sizeof(struct jffs2_raw_dirent))));
  155. /* Do we need to copy any more of the name directly
  156.    from the flash?
  157. */
  158. if (node.d.nsize + sizeof(struct jffs2_raw_dirent) > retlen) {
  159. int already = retlen - sizeof(struct jffs2_raw_dirent);
  160. err = c->mtd->read(c->mtd, (ref->flash_offset & ~3) + retlen, 
  161.    node.d.nsize - already, &retlen, &fd->name[already]);
  162. if (!err && retlen != node.d.nsize - already)
  163. err = -EIO;
  164. if (err) {
  165. printk(KERN_WARNING "Read remainder of name in jffs2_get_inode_nodes(): error %dn", err);
  166. jffs2_free_full_dirent(fd);
  167. goto free_out;
  168. }
  169. }
  170. fd->nhash = full_name_hash(fd->name, node.d.nsize);
  171. fd->next = NULL;
  172. /* Wheee. We now have a complete jffs2_full_dirent structure, with
  173.    the name in it and everything. Link it into the list 
  174. */
  175. D1(printk(KERN_DEBUG "Adding fd "%s", ino #%un", fd->name, fd->ino));
  176. jffs2_add_fd_to_list(c, fd, &ret_fd);
  177. break;
  178. case JFFS2_NODETYPE_INODE:
  179. D1(printk(KERN_DEBUG "Node at %08x is a data noden", ref->flash_offset &~3));
  180. if (retlen < sizeof(node.i)) {
  181. printk(KERN_WARNING "read too short for dnoden");
  182. err = -EIO;
  183. goto free_out;
  184. }
  185. if (node.d.version > *highest_version)
  186. *highest_version = node.i.version;
  187. D1(printk(KERN_DEBUG "version %d, highest_version now %dn", node.d.version, *highest_version));
  188. if (ref->flash_offset & 1) {
  189. D1(printk(KERN_DEBUG "obsoletedn"));
  190. /* Obsoleted */
  191. continue;
  192. }
  193. tn = jffs2_alloc_tmp_dnode_info();
  194. if (!tn) {
  195. D1(printk(KERN_DEBUG "alloc tn failedn"));
  196. err = -ENOMEM;
  197. goto free_out;
  198. }
  199. tn->fn = jffs2_alloc_full_dnode();
  200. if (!tn->fn) {
  201. D1(printk(KERN_DEBUG "alloc fn failedn"));
  202. err = -ENOMEM;
  203. jffs2_free_tmp_dnode_info(tn);
  204. goto free_out;
  205. }
  206. tn->version = node.i.version;
  207. tn->fn->ofs = node.i.offset;
  208. /* There was a bug where we wrote hole nodes out with
  209.    csize/dsize swapped. Deal with it */
  210. if (node.i.compr == JFFS2_COMPR_ZERO && !node.i.dsize && node.i.csize)
  211. tn->fn->size = node.i.csize;
  212. else // normal case...
  213. tn->fn->size = node.i.dsize;
  214. tn->fn->raw = ref;
  215. D1(printk(KERN_DEBUG "dnode @%08x: ver %u, offset %04x, dsize %04xn", ref->flash_offset &~3, node.i.version, node.i.offset, node.i.dsize));
  216. jffs2_add_tn_to_list(tn, &ret_tn);
  217. break;
  218. default:
  219. switch(node.u.nodetype & JFFS2_COMPAT_MASK) {
  220. case JFFS2_FEATURE_INCOMPAT:
  221. printk(KERN_NOTICE "Unknown INCOMPAT nodetype %04X at %08Xn", node.u.nodetype, ref->flash_offset & ~3);
  222. break;
  223. case JFFS2_FEATURE_ROCOMPAT:
  224. printk(KERN_NOTICE "Unknown ROCOMPAT nodetype %04X at %08Xn", node.u.nodetype, ref->flash_offset & ~3);
  225. break;
  226. case JFFS2_FEATURE_RWCOMPAT_COPY:
  227. printk(KERN_NOTICE "Unknown RWCOMPAT_COPY nodetype %04X at %08Xn", node.u.nodetype, ref->flash_offset & ~3);
  228. break;
  229. case JFFS2_FEATURE_RWCOMPAT_DELETE:
  230. printk(KERN_NOTICE "Unknown RWCOMPAT_DELETE nodetype %04X at %08Xn", node.u.nodetype, ref->flash_offset & ~3);
  231. break;
  232. }
  233. }
  234. }
  235. *tnp = ret_tn;
  236. *fdp = ret_fd;
  237. return 0;
  238.  free_out:
  239. jffs2_free_tmp_dnode_info_list(ret_tn);
  240. jffs2_free_full_dirent_list(ret_fd);
  241. return err;
  242. }
  243. struct jffs2_inode_cache *jffs2_get_ino_cache(struct jffs2_sb_info *c, int ino)
  244. {
  245. struct jffs2_inode_cache *ret;
  246. D2(printk(KERN_DEBUG "jffs2_get_ino_cache(): ino %un", ino));
  247. spin_lock (&c->inocache_lock);
  248. ret = c->inocache_list[ino % INOCACHE_HASHSIZE];
  249. while (ret && ret->ino < ino) {
  250. ret = ret->next;
  251. }
  252. spin_unlock(&c->inocache_lock);
  253. if (ret && ret->ino != ino)
  254. ret = NULL;
  255. D2(printk(KERN_DEBUG "jffs2_get_ino_cache found %p for ino %un", ret, ino));
  256. return ret;
  257. }
  258. void jffs2_add_ino_cache (struct jffs2_sb_info *c, struct jffs2_inode_cache *new)
  259. {
  260. struct jffs2_inode_cache **prev;
  261. D2(printk(KERN_DEBUG "jffs2_add_ino_cache: Add %p (ino #%u)n", new, new->ino));
  262. spin_lock(&c->inocache_lock);
  263. prev = &c->inocache_list[new->ino % INOCACHE_HASHSIZE];
  264. while ((*prev) && (*prev)->ino < new->ino) {
  265. prev = &(*prev)->next;
  266. }
  267. new->next = *prev;
  268. *prev = new;
  269. spin_unlock(&c->inocache_lock);
  270. }
  271. void jffs2_del_ino_cache(struct jffs2_sb_info *c, struct jffs2_inode_cache *old)
  272. {
  273. struct jffs2_inode_cache **prev;
  274. D2(printk(KERN_DEBUG "jffs2_del_ino_cache: Del %p (ino #%u)n", old, old->ino));
  275. spin_lock(&c->inocache_lock);
  276. prev = &c->inocache_list[old->ino % INOCACHE_HASHSIZE];
  277. while ((*prev) && (*prev)->ino < old->ino) {
  278. prev = &(*prev)->next;
  279. }
  280. if ((*prev) == old) {
  281. *prev = old->next;
  282. }
  283. spin_unlock(&c->inocache_lock);
  284. }
  285. void jffs2_free_ino_caches(struct jffs2_sb_info *c)
  286. {
  287. int i;
  288. struct jffs2_inode_cache *this, *next;
  289. for (i=0; i<INOCACHE_HASHSIZE; i++) {
  290. this = c->inocache_list[i];
  291. while (this) {
  292. next = this->next;
  293. D2(printk(KERN_DEBUG "jffs2_free_ino_caches: Freeing ino #%u at %pn", this->ino, this));
  294. jffs2_free_inode_cache(this);
  295. this = next;
  296. }
  297. c->inocache_list[i] = NULL;
  298. }
  299. }
  300. void jffs2_free_raw_node_refs(struct jffs2_sb_info *c)
  301. {
  302. int i;
  303. struct jffs2_raw_node_ref *this, *next;
  304. for (i=0; i<c->nr_blocks; i++) {
  305. this = c->blocks[i].first_node;
  306. while(this) {
  307. next = this->next_phys;
  308. jffs2_free_raw_node_ref(this);
  309. this = next;
  310. }
  311. c->blocks[i].first_node = c->blocks[i].last_node = NULL;
  312. }
  313. }