scan.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:24k
源码类别:

Linux/Unix编程

开发平台:

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: scan.c,v 1.51.2.3 2002/07/25 20:49:06 dwmw2 Exp $
  35.  *
  36.  */
  37. #include <linux/kernel.h>
  38. #include <linux/slab.h>
  39. #include <linux/jffs2.h>
  40. #include <linux/mtd/mtd.h>
  41. #include <linux/pagemap.h>
  42. #include "nodelist.h"
  43. #include "crc32.h"
  44. #define DIRTY_SPACE(x) do { typeof(x) _x = (x); 
  45. c->free_size -= _x; c->dirty_size += _x; 
  46. jeb->free_size -= _x ; jeb->dirty_size += _x; 
  47. }while(0)
  48. #define USED_SPACE(x) do { typeof(x) _x = (x); 
  49. c->free_size -= _x; c->used_size += _x; 
  50. jeb->free_size -= _x ; jeb->used_size += _x; 
  51. }while(0)
  52. #define noisy_printk(noise, args...) do { 
  53. if (*(noise)) { 
  54. printk(KERN_NOTICE args); 
  55.  (*(noise))--; 
  56.  if (!(*(noise))) { 
  57.  printk(KERN_NOTICE "Further such events for this erase block will not be printedn"); 
  58.  } 
  59. } while(0)
  60. static uint32_t pseudo_random;
  61. static void jffs2_rotate_lists(struct jffs2_sb_info *c);
  62. static int jffs2_scan_eraseblock (struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
  63. /* These helper functions _must_ increase ofs and also do the dirty/used space accounting. 
  64.  * Returning an error will abort the mount - bad checksums etc. should just mark the space
  65.  * as dirty.
  66.  */
  67. static int jffs2_scan_empty(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, __u32 *ofs, int *noise);
  68. static int jffs2_scan_inode_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, __u32 *ofs);
  69. static int jffs2_scan_dirent_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, __u32 *ofs);
  70. int jffs2_scan_medium(struct jffs2_sb_info *c)
  71. {
  72. int i, ret;
  73. __u32 empty_blocks = 0;
  74. if (!c->blocks) {
  75. printk(KERN_WARNING "EEEK! c->blocks is NULL!n");
  76. return -EINVAL;
  77. }
  78. for (i=0; i<c->nr_blocks; i++) {
  79. struct jffs2_eraseblock *jeb = &c->blocks[i];
  80. ret = jffs2_scan_eraseblock(c, jeb);
  81. if (ret < 0)
  82. return ret;
  83. ACCT_PARANOIA_CHECK(jeb);
  84. /* Now decide which list to put it on */
  85. if (ret == 1) {
  86. /* 
  87.  * Empty block.   Since we can't be sure it 
  88.  * was entirely erased, we just queue it for erase
  89.  * again.  It will be marked as such when the erase
  90.  * is complete.  Meanwhile we still count it as empty
  91.  * for later checks.
  92.  */
  93. list_add(&jeb->list, &c->erase_pending_list);
  94. empty_blocks++;
  95. c->nr_erasing_blocks++;
  96. } else if (jeb->used_size == PAD(sizeof(struct jffs2_unknown_node)) && !jeb->first_node->next_in_ino) {
  97. /* Only a CLEANMARKER node is valid */
  98. if (!jeb->dirty_size) {
  99. /* It's actually free */
  100. list_add(&jeb->list, &c->free_list);
  101. c->nr_free_blocks++;
  102. } else {
  103. /* Dirt */
  104. D1(printk(KERN_DEBUG "Adding all-dirty block at 0x%08x to erase_pending_listn", jeb->offset));
  105. list_add(&jeb->list, &c->erase_pending_list);
  106. c->nr_erasing_blocks++;
  107. }
  108. } else if (jeb->used_size > c->sector_size - (2*sizeof(struct jffs2_raw_inode))) {
  109.                         /* Full (or almost full) of clean data. Clean list */
  110.                         list_add(&jeb->list, &c->clean_list);
  111.                 } else if (jeb->used_size) {
  112.                         /* Some data, but not full. Dirty list. */
  113.                         /* Except that we want to remember the block with most free space,
  114.                            and stick it in the 'nextblock' position to start writing to it.
  115.                            Later when we do snapshots, this must be the most recent block,
  116.                            not the one with most free space.
  117.                         */
  118.                         if (jeb->free_size > 2*sizeof(struct jffs2_raw_inode) && 
  119.                                 (!c->nextblock || c->nextblock->free_size < jeb->free_size)) {
  120.                                 /* Better candidate for the next writes to go to */
  121.                                 if (c->nextblock)
  122.                                         list_add(&c->nextblock->list, &c->dirty_list);
  123.                                 c->nextblock = jeb;
  124.                         } else {
  125.                                 list_add(&jeb->list, &c->dirty_list);
  126.                         }
  127. } else {
  128. /* Nothing valid - not even a clean marker. Needs erasing. */
  129.                         /* For now we just put it on the erasing list. We'll start the erases later */
  130. printk(KERN_NOTICE "JFFS2: Erase block at 0x%08x is not formatted. It will be erasedn", jeb->offset);
  131.                         list_add(&jeb->list, &c->erase_pending_list);
  132. c->nr_erasing_blocks++;
  133. }
  134. }
  135. /* Rotate the lists by some number to ensure wear levelling */
  136. jffs2_rotate_lists(c);
  137. if (c->nr_erasing_blocks) {
  138. if (!c->used_size && empty_blocks != c->nr_blocks) {
  139. printk(KERN_NOTICE "Cowardly refusing to erase blocks on filesystem with no valid JFFS2 nodesn");
  140. return -EIO;
  141. }
  142. jffs2_erase_pending_trigger(c);
  143. }
  144. return 0;
  145. }
  146. static int jffs2_scan_eraseblock (struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb) {
  147. struct jffs2_unknown_node node;
  148. __u32 ofs, prevofs;
  149. __u32 hdr_crc, nodetype;
  150. int err;
  151. int noise = 0;
  152. ofs = jeb->offset;
  153. prevofs = jeb->offset - 1;
  154. D1(printk(KERN_DEBUG "jffs2_scan_eraseblock(): Scanning block at 0x%xn", ofs));
  155. err = jffs2_scan_empty(c, jeb, &ofs, &noise);
  156. if (err) return err;
  157. if (ofs == jeb->offset + c->sector_size) {
  158. D1(printk(KERN_DEBUG "Block at 0x%08x is empty (erased)n", jeb->offset));
  159. return 1; /* special return code */
  160. }
  161. noise = 10;
  162. while(ofs < jeb->offset + c->sector_size) {
  163. ssize_t retlen;
  164. ACCT_PARANOIA_CHECK(jeb);
  165. if (ofs & 3) {
  166. printk(KERN_WARNING "Eep. ofs 0x%08x not word-aligned!n", ofs);
  167. ofs = (ofs+3)&~3;
  168. continue;
  169. }
  170. if (ofs == prevofs) {
  171. printk(KERN_WARNING "ofs 0x%08x has already been seen. Skippingn", ofs);
  172. DIRTY_SPACE(4);
  173. ofs += 4;
  174. continue;
  175. }
  176. prevofs = ofs;
  177. if (jeb->offset + c->sector_size < ofs + sizeof(node)) {
  178. D1(printk(KERN_DEBUG "Fewer than %d bytes left to end of block. Not readingn", sizeof(struct jffs2_unknown_node)));
  179. DIRTY_SPACE((jeb->offset + c->sector_size)-ofs);
  180. break;
  181. }
  182. err = c->mtd->read(c->mtd, ofs, sizeof(node), &retlen, (char *)&node);
  183. if (err) {
  184. D1(printk(KERN_WARNING "mtd->read(0x%x bytes from 0x%x) returned %dn", sizeof(node), ofs, err));
  185. return err;
  186. }
  187. if (retlen < sizeof(node)) {
  188. D1(printk(KERN_WARNING "Read at 0x%x gave only 0x%x bytesn", ofs, retlen));
  189. DIRTY_SPACE(retlen);
  190. ofs += retlen;
  191. continue;
  192. }
  193. if (node.magic == JFFS2_EMPTY_BITMASK && node.nodetype == JFFS2_EMPTY_BITMASK) {
  194. D1(printk(KERN_DEBUG "Found empty flash at 0x%xn", ofs));
  195. err = jffs2_scan_empty(c, jeb, &ofs, &noise);
  196. if (err) return err;
  197. continue;
  198. }
  199. if (ofs == jeb->offset && node.magic == KSAMTIB_CIGAM_2SFFJ) {
  200. printk(KERN_WARNING "Magic bitmask is backwards at offset 0x%08x. Wrong endian filesystem?n", ofs);
  201. DIRTY_SPACE(4);
  202. ofs += 4;
  203. continue;
  204. }
  205. if (node.magic == JFFS2_DIRTY_BITMASK) {
  206. D1(printk(KERN_DEBUG "Empty bitmask at 0x%08xn", ofs));
  207. DIRTY_SPACE(4);
  208. ofs += 4;
  209. continue;
  210. }
  211. if (node.magic == JFFS2_OLD_MAGIC_BITMASK) {
  212. printk(KERN_WARNING "Old JFFS2 bitmask found at 0x%08xn", ofs);
  213. printk(KERN_WARNING "You cannot use older JFFS2 filesystems with newer kernelsn");
  214. DIRTY_SPACE(4);
  215. ofs += 4;
  216. continue;
  217. }
  218. if (node.magic != JFFS2_MAGIC_BITMASK) {
  219. /* OK. We're out of possibilities. Whinge and move on */
  220. noisy_printk(&noise, "jffs2_scan_eraseblock(): Magic bitmask 0x%04x not found at 0x%08x: 0x%04x insteadn", JFFS2_MAGIC_BITMASK, ofs, node.magic);
  221. DIRTY_SPACE(4);
  222. ofs += 4;
  223. continue;
  224. }
  225. /* We seem to have a node of sorts. Check the CRC */
  226. nodetype = node.nodetype;
  227. node.nodetype |= JFFS2_NODE_ACCURATE;
  228. hdr_crc = crc32(0, &node, sizeof(node)-4);
  229. node.nodetype = nodetype;
  230. if (hdr_crc != node.hdr_crc) {
  231. noisy_printk(&noise, "jffs2_scan_eraseblock(): Node at 0x%08x {0x%04x, 0x%04x, 0x%08x) has invalid CRC 0x%08x (calculated 0x%08x)n",
  232.      ofs, node.magic, node.nodetype, node.totlen, node.hdr_crc, hdr_crc);
  233. DIRTY_SPACE(4);
  234. ofs += 4;
  235. continue;
  236. }
  237. if (ofs + node.totlen > jeb->offset + c->sector_size) {
  238. /* Eep. Node goes over the end of the erase block. */
  239. printk(KERN_WARNING "Node at 0x%08x with length 0x%08x would run over the end of the erase blockn",
  240.        ofs, node.totlen);
  241. printk(KERN_WARNING "Perhaps the file system was created with the wrong erase size?n");
  242. DIRTY_SPACE(4);
  243. ofs += 4;
  244. continue;
  245. }
  246. switch(node.nodetype | JFFS2_NODE_ACCURATE) {
  247. case JFFS2_NODETYPE_INODE:
  248. err = jffs2_scan_inode_node(c, jeb, &ofs);
  249. if (err) return err;
  250. break;
  251. case JFFS2_NODETYPE_DIRENT:
  252. err = jffs2_scan_dirent_node(c, jeb, &ofs);
  253. if (err) return err;
  254. break;
  255. case JFFS2_NODETYPE_CLEANMARKER:
  256. if (node.totlen != sizeof(struct jffs2_unknown_node)) {
  257. printk(KERN_NOTICE "CLEANMARKER node found at 0x%08x has totlen 0x%x != normal 0x%xn", 
  258.        ofs, node.totlen, sizeof(struct jffs2_unknown_node));
  259. DIRTY_SPACE(PAD(sizeof(struct jffs2_unknown_node)));
  260. } else if (jeb->first_node) {
  261. printk(KERN_NOTICE "CLEANMARKER node found at 0x%08x, not first node in block (0x%08x)n", ofs, jeb->offset);
  262. DIRTY_SPACE(PAD(sizeof(struct jffs2_unknown_node)));
  263. ofs += PAD(sizeof(struct jffs2_unknown_node));
  264. continue;
  265. } else {
  266. struct jffs2_raw_node_ref *marker_ref = jffs2_alloc_raw_node_ref();
  267. if (!marker_ref) {
  268. printk(KERN_NOTICE "Failed to allocate node ref for clean markern");
  269. return -ENOMEM;
  270. }
  271. marker_ref->next_in_ino = NULL;
  272. marker_ref->next_phys = NULL;
  273. marker_ref->flash_offset = ofs;
  274. marker_ref->totlen = sizeof(struct jffs2_unknown_node);
  275. jeb->first_node = jeb->last_node = marker_ref;
  276.      
  277. USED_SPACE(PAD(sizeof(struct jffs2_unknown_node)));
  278. }
  279. ofs += PAD(sizeof(struct jffs2_unknown_node));
  280. break;
  281. default:
  282. switch (node.nodetype & JFFS2_COMPAT_MASK) {
  283. case JFFS2_FEATURE_ROCOMPAT:
  284. printk(KERN_NOTICE "Read-only compatible feature node (0x%04x) found at offset 0x%08xn", node.nodetype, ofs);
  285.         c->flags |= JFFS2_SB_FLAG_RO;
  286. if (!(OFNI_BS_2SFFJ(c)->s_flags & MS_RDONLY))
  287. return -EROFS;
  288. DIRTY_SPACE(PAD(node.totlen));
  289. ofs += PAD(node.totlen);
  290. continue;
  291. case JFFS2_FEATURE_INCOMPAT:
  292. printk(KERN_NOTICE "Incompatible feature node (0x%04x) found at offset 0x%08xn", node.nodetype, ofs);
  293. return -EINVAL;
  294. case JFFS2_FEATURE_RWCOMPAT_DELETE:
  295. printk(KERN_NOTICE "Unknown but compatible feature node (0x%04x) found at offset 0x%08xn", node.nodetype, ofs);
  296. DIRTY_SPACE(PAD(node.totlen));
  297. ofs += PAD(node.totlen);
  298. break;
  299. case JFFS2_FEATURE_RWCOMPAT_COPY:
  300. printk(KERN_NOTICE "Unknown but compatible feature node (0x%04x) found at offset 0x%08xn", node.nodetype, ofs);
  301. USED_SPACE(PAD(node.totlen));
  302. ofs += PAD(node.totlen);
  303. break;
  304. }
  305. }
  306. }
  307. D1(printk(KERN_DEBUG "Block at 0x%08x: free 0x%08x, dirty 0x%08x, used 0x%08xn", jeb->offset, 
  308.   jeb->free_size, jeb->dirty_size, jeb->used_size));
  309. return 0;
  310. }
  311. /* We're pointing at the first empty word on the flash. Scan and account for the whole dirty region */
  312. static int jffs2_scan_empty(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, __u32 *startofs, int *noise)
  313. {
  314. __u32 *buf;
  315. __u32 scanlen = (jeb->offset + c->sector_size) - *startofs;
  316. __u32 curofs = *startofs;
  317. buf = kmalloc(min((__u32)PAGE_SIZE, scanlen), GFP_KERNEL);
  318. if (!buf) {
  319. printk(KERN_WARNING "Scan buffer allocation failedn");
  320. return -ENOMEM;
  321. }
  322. while(scanlen) {
  323. ssize_t retlen;
  324. int ret, i;
  325. ret = c->mtd->read(c->mtd, curofs, min((__u32)PAGE_SIZE, scanlen), &retlen, (char *)buf);
  326. if(ret) {
  327. D1(printk(KERN_WARNING "jffs2_scan_empty(): Read 0x%x bytes at 0x%08x returned %dn", min((__u32)PAGE_SIZE, scanlen), curofs, ret));
  328. kfree(buf);
  329. return ret;
  330. }
  331. if (retlen < 4) {
  332. D1(printk(KERN_WARNING "Eep. too few bytes read in scan_empty()n"));
  333. kfree(buf);
  334. return -EIO;
  335. }
  336. for (i=0; i<(retlen / 4); i++) {
  337. if (buf[i] != 0xffffffff) {
  338. curofs += i*4;
  339. noisy_printk(noise, "jffs2_scan_empty(): Empty block at 0x%08x ends at 0x%08x (with 0x%08x)! Marking dirtyn", *startofs, curofs, buf[i]);
  340. DIRTY_SPACE(curofs - (*startofs));
  341. *startofs = curofs;
  342. kfree(buf);
  343. return 0;
  344. }
  345. }
  346. scanlen -= retlen&~3;
  347. curofs += retlen&~3;
  348. }
  349. D1(printk(KERN_DEBUG "Empty flash detected from 0x%08x to 0x%08xn", *startofs, curofs));
  350. kfree(buf);
  351. *startofs = curofs;
  352. return 0;
  353. }
  354. static struct jffs2_inode_cache *jffs2_scan_make_ino_cache(struct jffs2_sb_info *c, __u32 ino)
  355. {
  356. struct jffs2_inode_cache *ic;
  357. ic = jffs2_get_ino_cache(c, ino);
  358. if (ic)
  359. return ic;
  360. ic = jffs2_alloc_inode_cache();
  361. if (!ic) {
  362. printk(KERN_NOTICE "jffs2_scan_make_inode_cache(): allocation of inode cache failedn");
  363. return NULL;
  364. }
  365. memset(ic, 0, sizeof(*ic));
  366. ic->scan = kmalloc(sizeof(struct jffs2_scan_info), GFP_KERNEL);
  367. if (!ic->scan) {
  368. printk(KERN_NOTICE "jffs2_scan_make_inode_cache(): allocation of scan info for inode cache failedn");
  369. jffs2_free_inode_cache(ic);
  370. return NULL;
  371. }
  372. memset(ic->scan, 0, sizeof(*ic->scan));
  373. ic->ino = ino;
  374. ic->nodes = (void *)ic;
  375. jffs2_add_ino_cache(c, ic);
  376. if (ino == 1)
  377. ic->nlink=1;
  378. return ic;
  379. }
  380. static int jffs2_scan_inode_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, __u32 *ofs)
  381. {
  382. struct jffs2_raw_node_ref *raw;
  383. struct jffs2_full_dnode *fn;
  384. struct jffs2_tmp_dnode_info *tn, **tn_list;
  385. struct jffs2_inode_cache *ic;
  386. struct jffs2_raw_inode ri;
  387. __u32 crc;
  388. __u16 oldnodetype;
  389. int ret;
  390. ssize_t retlen;
  391. D1(printk(KERN_DEBUG "jffs2_scan_inode_node(): Node at 0x%08xn", *ofs));
  392. ret = c->mtd->read(c->mtd, *ofs, sizeof(ri), &retlen, (char *)&ri);
  393. if (ret) {
  394. printk(KERN_NOTICE "jffs2_scan_inode_node(): Read error at 0x%08x: %dn", *ofs, ret);
  395. return ret;
  396. }
  397. if (retlen != sizeof(ri)) {
  398. printk(KERN_NOTICE "Short read: 0x%x bytes at 0x%08x instead of requested %xn", 
  399.        retlen, *ofs, sizeof(ri));
  400. return -EIO;
  401. }
  402. /* We sort of assume that the node was accurate when it was 
  403.    first written to the medium :) */
  404. oldnodetype = ri.nodetype;
  405. ri.nodetype |= JFFS2_NODE_ACCURATE;
  406. crc = crc32(0, &ri, sizeof(ri)-8);
  407. ri.nodetype = oldnodetype;
  408. if(crc != ri.node_crc) {
  409. printk(KERN_NOTICE "jffs2_scan_inode_node(): CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08xn",
  410.        *ofs, ri.node_crc, crc);
  411. /* FIXME: Why do we believe totlen? */
  412. DIRTY_SPACE(4);
  413. *ofs += 4;
  414. return 0;
  415. }
  416. /* There was a bug where we wrote hole nodes out with csize/dsize
  417.    swapped. Deal with it */
  418. if (ri.compr == JFFS2_COMPR_ZERO && !ri.dsize && ri.csize) {
  419. ri.dsize = ri.csize;
  420. ri.csize = 0;
  421. }
  422. if (ri.csize) {
  423. /* Check data CRC too */
  424. unsigned char *dbuf;
  425. __u32 crc;
  426. dbuf = kmalloc(PAGE_CACHE_SIZE, GFP_KERNEL);
  427. if (!dbuf) {
  428. printk(KERN_NOTICE "jffs2_scan_inode_node(): allocation of temporary data buffer for CRC check failedn");
  429. return -ENOMEM;
  430. }
  431. ret = c->mtd->read(c->mtd, *ofs+sizeof(ri), ri.csize, &retlen, dbuf);
  432. if (ret) {
  433. printk(KERN_NOTICE "jffs2_scan_inode_node(): Read error at 0x%08x: %dn", *ofs+sizeof(ri), ret);
  434. kfree(dbuf);
  435. return ret;
  436. }
  437. if (retlen != ri.csize) {
  438. printk(KERN_NOTICE "Short read: 0x%x bytes at 0x%08x instead of requested %xn", 
  439.        retlen, *ofs+ sizeof(ri), ri.csize);
  440. kfree(dbuf);
  441. return -EIO;
  442. }
  443. crc = crc32(0, dbuf, ri.csize);
  444. kfree(dbuf);
  445. if (crc != ri.data_crc) {
  446. printk(KERN_NOTICE "jffs2_scan_inode_node(): Data CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08xn",
  447.        *ofs, ri.data_crc, crc);
  448. DIRTY_SPACE(PAD(ri.totlen));
  449. *ofs += PAD(ri.totlen);
  450. return 0;
  451. }
  452. }
  453. /* Wheee. It worked */
  454. raw = jffs2_alloc_raw_node_ref();
  455. if (!raw) {
  456. printk(KERN_NOTICE "jffs2_scan_inode_node(): allocation of node reference failedn");
  457. return -ENOMEM;
  458. }
  459. tn = jffs2_alloc_tmp_dnode_info();
  460. if (!tn) {
  461. jffs2_free_raw_node_ref(raw);
  462. return -ENOMEM;
  463. }
  464. fn = jffs2_alloc_full_dnode();
  465. if (!fn) {
  466. jffs2_free_tmp_dnode_info(tn);
  467. jffs2_free_raw_node_ref(raw);
  468. return -ENOMEM;
  469. }
  470. ic = jffs2_scan_make_ino_cache(c, ri.ino);
  471. if (!ic) {
  472. jffs2_free_full_dnode(fn);
  473. jffs2_free_tmp_dnode_info(tn);
  474. jffs2_free_raw_node_ref(raw);
  475. return -ENOMEM;
  476. }
  477. /* Build the data structures and file them for later */
  478. raw->flash_offset = *ofs;
  479. raw->totlen = PAD(ri.totlen);
  480. raw->next_phys = NULL;
  481. raw->next_in_ino = ic->nodes;
  482. ic->nodes = raw;
  483. if (!jeb->first_node)
  484. jeb->first_node = raw;
  485. if (jeb->last_node)
  486. jeb->last_node->next_phys = raw;
  487. jeb->last_node = raw;
  488. D1(printk(KERN_DEBUG "Node is ino #%u, version %d. Range 0x%x-0x%xn", 
  489.   ri.ino, ri.version, ri.offset, ri.offset+ri.dsize));
  490. pseudo_random += ri.version;
  491. for (tn_list = &ic->scan->tmpnodes; *tn_list; tn_list = &((*tn_list)->next)) {
  492. if ((*tn_list)->version < ri.version)
  493. continue;
  494. if ((*tn_list)->version > ri.version) 
  495. break;
  496. /* Wheee. We've found another instance of the same version number.
  497.    We should obsolete one of them. 
  498. */
  499. D1(printk(KERN_DEBUG "Duplicate version %d found in ino #%u. Previous one is at 0x%08xn", ri.version, ic->ino, (*tn_list)->fn->raw->flash_offset &~3));
  500. if (!jeb->used_size) {
  501. D1(printk(KERN_DEBUG "No valid nodes yet found in this eraseblock 0x%08x, so obsoleting the new instance at 0x%08xn", 
  502.   jeb->offset, raw->flash_offset & ~3));
  503. ri.nodetype &= ~JFFS2_NODE_ACCURATE;
  504. /* Perhaps we could also mark it as such on the medium. Maybe later */
  505. }
  506. break;
  507. }
  508. if (ri.nodetype & JFFS2_NODE_ACCURATE) {
  509. memset(fn,0,sizeof(*fn));
  510. fn->ofs = ri.offset;
  511. fn->size = ri.dsize;
  512. fn->frags = 0;
  513. fn->raw = raw;
  514. tn->next = NULL;
  515. tn->fn = fn;
  516. tn->version = ri.version;
  517. USED_SPACE(PAD(ri.totlen));
  518. jffs2_add_tn_to_list(tn, &ic->scan->tmpnodes);
  519. /* Make sure the one we just added is the _last_ in the list
  520.    with this version number, so the older ones get obsoleted */
  521. while (tn->next && tn->next->version == tn->version) {
  522. D1(printk(KERN_DEBUG "Shifting new node at 0x%08x after other node at 0x%08x for version %d in listn",
  523.   fn->raw->flash_offset&~3, tn->next->fn->raw->flash_offset &~3, ri.version));
  524. if(tn->fn != fn)
  525. BUG();
  526. tn->fn = tn->next->fn;
  527. tn->next->fn = fn;
  528. tn = tn->next;
  529. }
  530. } else {
  531. jffs2_free_full_dnode(fn);
  532. jffs2_free_tmp_dnode_info(tn);
  533. raw->flash_offset |= 1;
  534. DIRTY_SPACE(PAD(ri.totlen));
  535. }
  536. *ofs += PAD(ri.totlen);
  537. return 0;
  538. }
  539. static int jffs2_scan_dirent_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, __u32 *ofs)
  540. {
  541. struct jffs2_raw_node_ref *raw;
  542. struct jffs2_full_dirent *fd;
  543. struct jffs2_inode_cache *ic;
  544. struct jffs2_raw_dirent rd;
  545. __u16 oldnodetype;
  546. int ret;
  547. __u32 crc;
  548. ssize_t retlen;
  549. D1(printk(KERN_DEBUG "jffs2_scan_dirent_node(): Node at 0x%08xn", *ofs));
  550. ret = c->mtd->read(c->mtd, *ofs, sizeof(rd), &retlen, (char *)&rd);
  551. if (ret) {
  552. printk(KERN_NOTICE "jffs2_scan_dirent_node(): Read error at 0x%08x: %dn", *ofs, ret);
  553. return ret;
  554. }
  555. if (retlen != sizeof(rd)) {
  556. printk(KERN_NOTICE "Short read: 0x%x bytes at 0x%08x instead of requested %xn", 
  557.        retlen, *ofs, sizeof(rd));
  558. return -EIO;
  559. }
  560. /* We sort of assume that the node was accurate when it was 
  561.    first written to the medium :) */
  562. oldnodetype = rd.nodetype;
  563. rd.nodetype |= JFFS2_NODE_ACCURATE;
  564. crc = crc32(0, &rd, sizeof(rd)-8);
  565. rd.nodetype = oldnodetype;
  566. if (crc != rd.node_crc) {
  567. printk(KERN_NOTICE "jffs2_scan_dirent_node(): Node CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08xn",
  568.        *ofs, rd.node_crc, crc);
  569. /* FIXME: Why do we believe totlen? */
  570. DIRTY_SPACE(4);
  571. *ofs += 4;
  572. return 0;
  573. }
  574. pseudo_random += rd.version;
  575. fd = jffs2_alloc_full_dirent(rd.nsize+1);
  576. if (!fd) {
  577. return -ENOMEM;
  578. }
  579. ret = c->mtd->read(c->mtd, *ofs + sizeof(rd), rd.nsize, &retlen, &fd->name[0]);
  580. if (ret) {
  581. jffs2_free_full_dirent(fd);
  582. printk(KERN_NOTICE "jffs2_scan_dirent_node(): Read error at 0x%08x: %dn", 
  583.        *ofs + sizeof(rd), ret);
  584. return ret;
  585. }
  586. if (retlen != rd.nsize) {
  587. jffs2_free_full_dirent(fd);
  588. printk(KERN_NOTICE "Short read: 0x%x bytes at 0x%08x instead of requested %xn", 
  589.        retlen, *ofs + sizeof(rd), rd.nsize);
  590. return -EIO;
  591. }
  592. crc = crc32(0, fd->name, rd.nsize);
  593. if (crc != rd.name_crc) {
  594. printk(KERN_NOTICE "jffs2_scan_dirent_node(): Name CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08xn",
  595.        *ofs, rd.name_crc, crc);
  596. fd->name[rd.nsize]=0;
  597. D1(printk(KERN_NOTICE "Name for which CRC failed is (now) '%s', ino #%dn", fd->name, rd.ino));
  598. jffs2_free_full_dirent(fd);
  599. /* FIXME: Why do we believe totlen? */
  600. DIRTY_SPACE(PAD(rd.totlen));
  601. *ofs += PAD(rd.totlen);
  602. return 0;
  603. }
  604. raw = jffs2_alloc_raw_node_ref();
  605. if (!raw) {
  606. jffs2_free_full_dirent(fd);
  607. printk(KERN_NOTICE "jffs2_scan_dirent_node(): allocation of node reference failedn");
  608. return -ENOMEM;
  609. }
  610. ic = jffs2_scan_make_ino_cache(c, rd.pino);
  611. if (!ic) {
  612. jffs2_free_full_dirent(fd);
  613. jffs2_free_raw_node_ref(raw);
  614. return -ENOMEM;
  615. }
  616. raw->totlen = PAD(rd.totlen);
  617. raw->flash_offset = *ofs;
  618. raw->next_phys = NULL;
  619. raw->next_in_ino = ic->nodes;
  620. ic->nodes = raw;
  621. if (!jeb->first_node)
  622. jeb->first_node = raw;
  623. if (jeb->last_node)
  624. jeb->last_node->next_phys = raw;
  625. jeb->last_node = raw;
  626. if (rd.nodetype & JFFS2_NODE_ACCURATE) {
  627. fd->raw = raw;
  628. fd->next = NULL;
  629. fd->version = rd.version;
  630. fd->ino = rd.ino;
  631. fd->name[rd.nsize]=0;
  632. fd->nhash = full_name_hash(fd->name, rd.nsize);
  633. fd->type = rd.type;
  634. USED_SPACE(PAD(rd.totlen));
  635. jffs2_add_fd_to_list(c, fd, &ic->scan->dents);
  636. } else {
  637. raw->flash_offset |= 1;
  638. jffs2_free_full_dirent(fd);
  639. DIRTY_SPACE(PAD(rd.totlen));
  640. *ofs += PAD(rd.totlen);
  641. return 0;
  642. }
  643. static int count_list(struct list_head *l)
  644. {
  645. uint32_t count = 0;
  646. struct list_head *tmp;
  647. list_for_each(tmp, l) {
  648. count++;
  649. }
  650. return count;
  651. }
  652. /* Note: This breaks if list_empty(head). I don't care. You
  653.    might, if you copy this code and use it elsewhere :) */
  654. static void rotate_list(struct list_head *head, uint32_t count)
  655. {
  656. struct list_head *n = head->next;
  657. list_del(head);
  658. while(count--)
  659. n = n->next;
  660. list_add(head, n);
  661. }
  662. static void jffs2_rotate_lists(struct jffs2_sb_info *c)
  663. {
  664. uint32_t x;
  665. x = count_list(&c->clean_list);
  666. if (x)
  667. rotate_list((&c->clean_list), pseudo_random % x);
  668. x = count_list(&c->dirty_list);
  669. if (x)
  670. rotate_list((&c->dirty_list), pseudo_random % x);
  671. if (c->nr_erasing_blocks)
  672. rotate_list((&c->erase_pending_list), pseudo_random % c->nr_erasing_blocks);
  673. if (c->nr_free_blocks) /* Not that it should ever be zero */
  674. rotate_list((&c->free_list), pseudo_random % c->nr_free_blocks);
  675. }