1 /*
2  * JFFS2 -- Journalling Flash File System, Version 2.
3  *
4  * Copyright © 2001-2007 Red Hat, Inc.
5  *
6  * Created by David Woodhouse <dwmw2@infradead.org>
7  *
8  * For licensing information, see the file 'LICENCE' in this directory.
9  *
10  */
11 
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 
14 #include <linux/kernel.h>
15 #include <linux/sched.h>
16 #include <linux/slab.h>
17 #include <linux/mtd/mtd.h>
18 #include <linux/pagemap.h>
19 #include <linux/crc32.h>
20 #include <linux/compiler.h>
21 #include "nodelist.h"
22 #include "summary.h"
23 #include "debug.h"
24 
25 #define DEFAULT_EMPTY_SCAN_SIZE 256
26 
27 #define noisy_printk(noise, fmt, ...)					\
28 do {									\
29 	if (*(noise)) {							\
30 		pr_notice(fmt, ##__VA_ARGS__);				\
31 		(*(noise))--;						\
32 		if (!(*(noise)))					\
33 			pr_notice("Further such events for this erase block will not be printed\n"); \
34 	}								\
35 } while (0)
36 
37 static uint32_t pseudo_random;
38 
39 static int jffs2_scan_eraseblock (struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
40 				  unsigned char *buf, uint32_t buf_size, struct jffs2_summary *s);
41 
42 /* These helper functions _must_ increase ofs and also do the dirty/used space accounting.
43  * Returning an error will abort the mount - bad checksums etc. should just mark the space
44  * as dirty.
45  */
46 static int jffs2_scan_inode_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
47 				 struct jffs2_raw_inode *ri, uint32_t ofs, struct jffs2_summary *s);
48 static int jffs2_scan_dirent_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
49 				 struct jffs2_raw_dirent *rd, uint32_t ofs, struct jffs2_summary *s);
50 
min_free(struct jffs2_sb_info * c)51 static inline int min_free(struct jffs2_sb_info *c)
52 {
53 	uint32_t min = 2 * sizeof(struct jffs2_raw_inode);
54 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
55 	if (!jffs2_can_mark_obsolete(c) && min < c->wbuf_pagesize)
56 		return c->wbuf_pagesize;
57 #endif
58 	return min;
59 
60 }
61 
EMPTY_SCAN_SIZE(uint32_t sector_size)62 static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size) {
63 	if (sector_size < DEFAULT_EMPTY_SCAN_SIZE)
64 		return sector_size;
65 	else
66 		return DEFAULT_EMPTY_SCAN_SIZE;
67 }
68 
file_dirty(struct jffs2_sb_info * c,struct jffs2_eraseblock * jeb)69 static int file_dirty(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb)
70 {
71 	int ret;
72 
73 	if ((ret = jffs2_prealloc_raw_node_refs(c, jeb, 1)))
74 		return ret;
75 	if ((ret = jffs2_scan_dirty_space(c, jeb, jeb->free_size)))
76 		return ret;
77 	/* Turned wasted size into dirty, since we apparently
78 	   think it's recoverable now. */
79 	jeb->dirty_size += jeb->wasted_size;
80 	c->dirty_size += jeb->wasted_size;
81 	c->wasted_size -= jeb->wasted_size;
82 	jeb->wasted_size = 0;
83 	if (VERYDIRTY(c, jeb->dirty_size)) {
84 		list_add(&jeb->list, &c->very_dirty_list);
85 	} else {
86 		list_add(&jeb->list, &c->dirty_list);
87 	}
88 	return 0;
89 }
90 
jffs2_scan_medium(struct jffs2_sb_info * c)91 int jffs2_scan_medium(struct jffs2_sb_info *c)
92 {
93 	int i, ret;
94 	uint32_t empty_blocks = 0, bad_blocks = 0;
95 	unsigned char *flashbuf = NULL;
96 	uint32_t buf_size = 0;
97 	struct jffs2_summary *s = NULL; /* summary info collected by the scan process */
98 #ifndef __ECOS
99 	size_t pointlen, try_size;
100 
101 	ret = mtd_point(c->mtd, 0, c->mtd->size, &pointlen,
102 			(void **)&flashbuf, NULL);
103 	if (!ret && pointlen < c->mtd->size) {
104 		/* Don't muck about if it won't let us point to the whole flash */
105 		jffs2_dbg(1, "MTD point returned len too short: 0x%zx\n",
106 			  pointlen);
107 		mtd_unpoint(c->mtd, 0, pointlen);
108 		flashbuf = NULL;
109 	}
110 	if (ret && ret != -EOPNOTSUPP)
111 		jffs2_dbg(1, "MTD point failed %d\n", ret);
112 #endif
113 	if (!flashbuf) {
114 		/* For NAND it's quicker to read a whole eraseblock at a time,
115 		   apparently */
116 		if (jffs2_cleanmarker_oob(c))
117 			try_size = c->sector_size;
118 		else
119 			try_size = PAGE_SIZE;
120 
121 		jffs2_dbg(1, "Trying to allocate readbuf of %zu "
122 			  "bytes\n", try_size);
123 
124 		flashbuf = mtd_kmalloc_up_to(c->mtd, &try_size);
125 		if (!flashbuf)
126 			return -ENOMEM;
127 
128 		jffs2_dbg(1, "Allocated readbuf of %zu bytes\n",
129 			  try_size);
130 
131 		buf_size = (uint32_t)try_size;
132 	}
133 
134 	if (jffs2_sum_active()) {
135 		s = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL);
136 		if (!s) {
137 			JFFS2_WARNING("Can't allocate memory for summary\n");
138 			ret = -ENOMEM;
139 			goto out_buf;
140 		}
141 	}
142 
143 	for (i=0; i<c->nr_blocks; i++) {
144 		struct jffs2_eraseblock *jeb = &c->blocks[i];
145 
146 		cond_resched();
147 
148 		/* reset summary info for next eraseblock scan */
149 		jffs2_sum_reset_collected(s);
150 
151 		ret = jffs2_scan_eraseblock(c, jeb, buf_size?flashbuf:(flashbuf+jeb->offset),
152 						buf_size, s);
153 
154 		if (ret < 0)
155 			goto out;
156 
157 		jffs2_dbg_acct_paranoia_check_nolock(c, jeb);
158 
159 		/* Now decide which list to put it on */
160 		switch(ret) {
161 		case BLK_STATE_ALLFF:
162 			/*
163 			 * Empty block.   Since we can't be sure it
164 			 * was entirely erased, we just queue it for erase
165 			 * again.  It will be marked as such when the erase
166 			 * is complete.  Meanwhile we still count it as empty
167 			 * for later checks.
168 			 */
169 			empty_blocks++;
170 			list_add(&jeb->list, &c->erase_pending_list);
171 			c->nr_erasing_blocks++;
172 			break;
173 
174 		case BLK_STATE_CLEANMARKER:
175 			/* Only a CLEANMARKER node is valid */
176 			if (!jeb->dirty_size) {
177 				/* It's actually free */
178 				list_add(&jeb->list, &c->free_list);
179 				c->nr_free_blocks++;
180 			} else {
181 				/* Dirt */
182 				jffs2_dbg(1, "Adding all-dirty block at 0x%08x to erase_pending_list\n",
183 					  jeb->offset);
184 				list_add(&jeb->list, &c->erase_pending_list);
185 				c->nr_erasing_blocks++;
186 			}
187 			break;
188 
189 		case BLK_STATE_CLEAN:
190 			/* Full (or almost full) of clean data. Clean list */
191 			list_add(&jeb->list, &c->clean_list);
192 			break;
193 
194 		case BLK_STATE_PARTDIRTY:
195 			/* Some data, but not full. Dirty list. */
196 			/* We want to remember the block with most free space
197 			and stick it in the 'nextblock' position to start writing to it. */
198 			if (jeb->free_size > min_free(c) &&
199 					(!c->nextblock || c->nextblock->free_size < jeb->free_size)) {
200 				/* Better candidate for the next writes to go to */
201 				if (c->nextblock) {
202 					ret = file_dirty(c, c->nextblock);
203 					if (ret)
204 						goto out;
205 					/* deleting summary information of the old nextblock */
206 					jffs2_sum_reset_collected(c->summary);
207 				}
208 				/* update collected summary information for the current nextblock */
209 				jffs2_sum_move_collected(c, s);
210 				jffs2_dbg(1, "%s(): new nextblock = 0x%08x\n",
211 					  __func__, jeb->offset);
212 				c->nextblock = jeb;
213 			} else {
214 				ret = file_dirty(c, jeb);
215 				if (ret)
216 					goto out;
217 			}
218 			break;
219 
220 		case BLK_STATE_ALLDIRTY:
221 			/* Nothing valid - not even a clean marker. Needs erasing. */
222 			/* For now we just put it on the erasing list. We'll start the erases later */
223 			jffs2_dbg(1, "Erase block at 0x%08x is not formatted. It will be erased\n",
224 				  jeb->offset);
225 			list_add(&jeb->list, &c->erase_pending_list);
226 			c->nr_erasing_blocks++;
227 			break;
228 
229 		case BLK_STATE_BADBLOCK:
230 			jffs2_dbg(1, "Block at 0x%08x is bad\n", jeb->offset);
231 			list_add(&jeb->list, &c->bad_list);
232 			c->bad_size += c->sector_size;
233 			c->free_size -= c->sector_size;
234 			bad_blocks++;
235 			break;
236 		default:
237 			pr_warn("%s(): unknown block state\n", __func__);
238 			BUG();
239 		}
240 	}
241 
242 	/* Nextblock dirty is always seen as wasted, because we cannot recycle it now */
243 	if (c->nextblock && (c->nextblock->dirty_size)) {
244 		c->nextblock->wasted_size += c->nextblock->dirty_size;
245 		c->wasted_size += c->nextblock->dirty_size;
246 		c->dirty_size -= c->nextblock->dirty_size;
247 		c->nextblock->dirty_size = 0;
248 	}
249 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
250 	if (!jffs2_can_mark_obsolete(c) && c->wbuf_pagesize && c->nextblock && (c->nextblock->free_size % c->wbuf_pagesize)) {
251 		/* If we're going to start writing into a block which already
252 		   contains data, and the end of the data isn't page-aligned,
253 		   skip a little and align it. */
254 
255 		uint32_t skip = c->nextblock->free_size % c->wbuf_pagesize;
256 
257 		jffs2_dbg(1, "%s(): Skipping %d bytes in nextblock to ensure page alignment\n",
258 			  __func__, skip);
259 		jffs2_prealloc_raw_node_refs(c, c->nextblock, 1);
260 		jffs2_scan_dirty_space(c, c->nextblock, skip);
261 	}
262 #endif
263 	if (c->nr_erasing_blocks) {
264 		if ( !c->used_size && ((c->nr_free_blocks+empty_blocks+bad_blocks)!= c->nr_blocks || bad_blocks == c->nr_blocks) ) {
265 			pr_notice("Cowardly refusing to erase blocks on filesystem with no valid JFFS2 nodes\n");
266 			pr_notice("empty_blocks %d, bad_blocks %d, c->nr_blocks %d\n",
267 				  empty_blocks, bad_blocks, c->nr_blocks);
268 			ret = -EIO;
269 			goto out;
270 		}
271 		spin_lock(&c->erase_completion_lock);
272 		jffs2_garbage_collect_trigger(c);
273 		spin_unlock(&c->erase_completion_lock);
274 	}
275 	ret = 0;
276  out:
277 	jffs2_sum_reset_collected(s);
278 	kfree(s);
279  out_buf:
280 	if (buf_size)
281 		kfree(flashbuf);
282 #ifndef __ECOS
283 	else
284 		mtd_unpoint(c->mtd, 0, c->mtd->size);
285 #endif
286 	return ret;
287 }
288 
jffs2_fill_scan_buf(struct jffs2_sb_info * c,void * buf,uint32_t ofs,uint32_t len)289 static int jffs2_fill_scan_buf(struct jffs2_sb_info *c, void *buf,
290 			       uint32_t ofs, uint32_t len)
291 {
292 	int ret;
293 	size_t retlen;
294 
295 	ret = jffs2_flash_read(c, ofs, len, &retlen, buf);
296 	if (ret) {
297 		jffs2_dbg(1, "mtd->read(0x%x bytes from 0x%x) returned %d\n",
298 			  len, ofs, ret);
299 		return ret;
300 	}
301 	if (retlen < len) {
302 		jffs2_dbg(1, "Read at 0x%x gave only 0x%zx bytes\n",
303 			  ofs, retlen);
304 		return -EIO;
305 	}
306 	return 0;
307 }
308 
jffs2_scan_classify_jeb(struct jffs2_sb_info * c,struct jffs2_eraseblock * jeb)309 int jffs2_scan_classify_jeb(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb)
310 {
311 	if ((jeb->used_size + jeb->unchecked_size) == PAD(c->cleanmarker_size) && !jeb->dirty_size
312 	    && (!jeb->first_node || !ref_next(jeb->first_node)) )
313 		return BLK_STATE_CLEANMARKER;
314 
315 	/* move blocks with max 4 byte dirty space to cleanlist */
316 	else if (!ISDIRTY(c->sector_size - (jeb->used_size + jeb->unchecked_size))) {
317 		c->dirty_size -= jeb->dirty_size;
318 		c->wasted_size += jeb->dirty_size;
319 		jeb->wasted_size += jeb->dirty_size;
320 		jeb->dirty_size = 0;
321 		return BLK_STATE_CLEAN;
322 	} else if (jeb->used_size || jeb->unchecked_size)
323 		return BLK_STATE_PARTDIRTY;
324 	else
325 		return BLK_STATE_ALLDIRTY;
326 }
327 
328 #ifdef CONFIG_JFFS2_FS_XATTR
jffs2_scan_xattr_node(struct jffs2_sb_info * c,struct jffs2_eraseblock * jeb,struct jffs2_raw_xattr * rx,uint32_t ofs,struct jffs2_summary * s)329 static int jffs2_scan_xattr_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
330 				 struct jffs2_raw_xattr *rx, uint32_t ofs,
331 				 struct jffs2_summary *s)
332 {
333 	struct jffs2_xattr_datum *xd;
334 	uint32_t xid, version, totlen, crc;
335 	int err;
336 
337 	crc = crc32(0, rx, sizeof(struct jffs2_raw_xattr) - 4);
338 	if (crc != je32_to_cpu(rx->node_crc)) {
339 		JFFS2_WARNING("node CRC failed at %#08x, read=%#08x, calc=%#08x\n",
340 			      ofs, je32_to_cpu(rx->node_crc), crc);
341 		if ((err = jffs2_scan_dirty_space(c, jeb, je32_to_cpu(rx->totlen))))
342 			return err;
343 		return 0;
344 	}
345 
346 	xid = je32_to_cpu(rx->xid);
347 	version = je32_to_cpu(rx->version);
348 
349 	totlen = PAD(sizeof(struct jffs2_raw_xattr)
350 			+ rx->name_len + 1 + je16_to_cpu(rx->value_len));
351 	if (totlen != je32_to_cpu(rx->totlen)) {
352 		JFFS2_WARNING("node length mismatch at %#08x, read=%u, calc=%u\n",
353 			      ofs, je32_to_cpu(rx->totlen), totlen);
354 		if ((err = jffs2_scan_dirty_space(c, jeb, je32_to_cpu(rx->totlen))))
355 			return err;
356 		return 0;
357 	}
358 
359 	xd = jffs2_setup_xattr_datum(c, xid, version);
360 	if (IS_ERR(xd))
361 		return PTR_ERR(xd);
362 
363 	if (xd->version > version) {
364 		struct jffs2_raw_node_ref *raw
365 			= jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, totlen, NULL);
366 		raw->next_in_ino = xd->node->next_in_ino;
367 		xd->node->next_in_ino = raw;
368 	} else {
369 		xd->version = version;
370 		xd->xprefix = rx->xprefix;
371 		xd->name_len = rx->name_len;
372 		xd->value_len = je16_to_cpu(rx->value_len);
373 		xd->data_crc = je32_to_cpu(rx->data_crc);
374 
375 		jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, totlen, (void *)xd);
376 	}
377 
378 	if (jffs2_sum_active())
379 		jffs2_sum_add_xattr_mem(s, rx, ofs - jeb->offset);
380 	dbg_xattr("scanning xdatum at %#08x (xid=%u, version=%u)\n",
381 		  ofs, xd->xid, xd->version);
382 	return 0;
383 }
384 
jffs2_scan_xref_node(struct jffs2_sb_info * c,struct jffs2_eraseblock * jeb,struct jffs2_raw_xref * rr,uint32_t ofs,struct jffs2_summary * s)385 static int jffs2_scan_xref_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
386 				struct jffs2_raw_xref *rr, uint32_t ofs,
387 				struct jffs2_summary *s)
388 {
389 	struct jffs2_xattr_ref *ref;
390 	uint32_t crc;
391 	int err;
392 
393 	crc = crc32(0, rr, sizeof(*rr) - 4);
394 	if (crc != je32_to_cpu(rr->node_crc)) {
395 		JFFS2_WARNING("node CRC failed at %#08x, read=%#08x, calc=%#08x\n",
396 			      ofs, je32_to_cpu(rr->node_crc), crc);
397 		if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(rr->totlen)))))
398 			return err;
399 		return 0;
400 	}
401 
402 	if (PAD(sizeof(struct jffs2_raw_xref)) != je32_to_cpu(rr->totlen)) {
403 		JFFS2_WARNING("node length mismatch at %#08x, read=%u, calc=%zd\n",
404 			      ofs, je32_to_cpu(rr->totlen),
405 			      PAD(sizeof(struct jffs2_raw_xref)));
406 		if ((err = jffs2_scan_dirty_space(c, jeb, je32_to_cpu(rr->totlen))))
407 			return err;
408 		return 0;
409 	}
410 
411 	ref = jffs2_alloc_xattr_ref();
412 	if (!ref)
413 		return -ENOMEM;
414 
415 	/* BEFORE jffs2_build_xattr_subsystem() called,
416 	 * and AFTER xattr_ref is marked as a dead xref,
417 	 * ref->xid is used to store 32bit xid, xd is not used
418 	 * ref->ino is used to store 32bit inode-number, ic is not used
419 	 * Thoes variables are declared as union, thus using those
420 	 * are exclusive. In a similar way, ref->next is temporarily
421 	 * used to chain all xattr_ref object. It's re-chained to
422 	 * jffs2_inode_cache in jffs2_build_xattr_subsystem() correctly.
423 	 */
424 	ref->ino = je32_to_cpu(rr->ino);
425 	ref->xid = je32_to_cpu(rr->xid);
426 	ref->xseqno = je32_to_cpu(rr->xseqno);
427 	if (ref->xseqno > c->highest_xseqno)
428 		c->highest_xseqno = (ref->xseqno & ~XREF_DELETE_MARKER);
429 	ref->next = c->xref_temp;
430 	c->xref_temp = ref;
431 
432 	jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, PAD(je32_to_cpu(rr->totlen)), (void *)ref);
433 
434 	if (jffs2_sum_active())
435 		jffs2_sum_add_xref_mem(s, rr, ofs - jeb->offset);
436 	dbg_xattr("scan xref at %#08x (xid=%u, ino=%u)\n",
437 		  ofs, ref->xid, ref->ino);
438 	return 0;
439 }
440 #endif
441 
442 /* Called with 'buf_size == 0' if buf is in fact a pointer _directly_ into
443    the flash, XIP-style */
jffs2_scan_eraseblock(struct jffs2_sb_info * c,struct jffs2_eraseblock * jeb,unsigned char * buf,uint32_t buf_size,struct jffs2_summary * s)444 static int jffs2_scan_eraseblock (struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
445 				  unsigned char *buf, uint32_t buf_size, struct jffs2_summary *s) {
446 	struct jffs2_unknown_node *node;
447 	struct jffs2_unknown_node crcnode;
448 	uint32_t ofs, prevofs, max_ofs;
449 	uint32_t hdr_crc, buf_ofs, buf_len;
450 	int err;
451 	int noise = 0;
452 
453 
454 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
455 	int cleanmarkerfound = 0;
456 #endif
457 
458 	ofs = jeb->offset;
459 	prevofs = jeb->offset - 1;
460 
461 	jffs2_dbg(1, "%s(): Scanning block at 0x%x\n", __func__, ofs);
462 
463 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
464 	if (jffs2_cleanmarker_oob(c)) {
465 		int ret;
466 
467 		if (mtd_block_isbad(c->mtd, jeb->offset))
468 			return BLK_STATE_BADBLOCK;
469 
470 		ret = jffs2_check_nand_cleanmarker(c, jeb);
471 		jffs2_dbg(2, "jffs_check_nand_cleanmarker returned %d\n", ret);
472 
473 		/* Even if it's not found, we still scan to see
474 		   if the block is empty. We use this information
475 		   to decide whether to erase it or not. */
476 		switch (ret) {
477 		case 0:		cleanmarkerfound = 1; break;
478 		case 1: 	break;
479 		default: 	return ret;
480 		}
481 	}
482 #endif
483 
484 	if (jffs2_sum_active()) {
485 		struct jffs2_sum_marker *sm;
486 		void *sumptr = NULL;
487 		uint32_t sumlen;
488 
489 		if (!buf_size) {
490 			/* XIP case. Just look, point at the summary if it's there */
491 			sm = (void *)buf + c->sector_size - sizeof(*sm);
492 			if (je32_to_cpu(sm->magic) == JFFS2_SUM_MAGIC) {
493 				sumptr = buf + je32_to_cpu(sm->offset);
494 				sumlen = c->sector_size - je32_to_cpu(sm->offset);
495 			}
496 		} else {
497 			/* If NAND flash, read a whole page of it. Else just the end */
498 			if (c->wbuf_pagesize)
499 				buf_len = c->wbuf_pagesize;
500 			else
501 				buf_len = sizeof(*sm);
502 
503 			/* Read as much as we want into the _end_ of the preallocated buffer */
504 			err = jffs2_fill_scan_buf(c, buf + buf_size - buf_len,
505 						  jeb->offset + c->sector_size - buf_len,
506 						  buf_len);
507 			if (err)
508 				return err;
509 
510 			sm = (void *)buf + buf_size - sizeof(*sm);
511 			if (je32_to_cpu(sm->magic) == JFFS2_SUM_MAGIC) {
512 				sumlen = c->sector_size - je32_to_cpu(sm->offset);
513 				sumptr = buf + buf_size - sumlen;
514 
515 				/* sm->offset maybe wrong but MAGIC maybe right */
516 				if (sumlen > c->sector_size)
517 					goto full_scan;
518 
519 				/* Now, make sure the summary itself is available */
520 				if (sumlen > buf_size) {
521 					/* Need to kmalloc for this. */
522 					sumptr = kmalloc(sumlen, GFP_KERNEL);
523 					if (!sumptr)
524 						return -ENOMEM;
525 					memcpy(sumptr + sumlen - buf_len, buf + buf_size - buf_len, buf_len);
526 				}
527 				if (buf_len < sumlen) {
528 					/* Need to read more so that the entire summary node is present */
529 					err = jffs2_fill_scan_buf(c, sumptr,
530 								  jeb->offset + c->sector_size - sumlen,
531 								  sumlen - buf_len);
532 					if (err)
533 						return err;
534 				}
535 			}
536 
537 		}
538 
539 		if (sumptr) {
540 			err = jffs2_sum_scan_sumnode(c, jeb, sumptr, sumlen, &pseudo_random);
541 
542 			if (buf_size && sumlen > buf_size)
543 				kfree(sumptr);
544 			/* If it returns with a real error, bail.
545 			   If it returns positive, that's a block classification
546 			   (i.e. BLK_STATE_xxx) so return that too.
547 			   If it returns zero, fall through to full scan. */
548 			if (err)
549 				return err;
550 		}
551 	}
552 
553 full_scan:
554 	buf_ofs = jeb->offset;
555 
556 	if (!buf_size) {
557 		/* This is the XIP case -- we're reading _directly_ from the flash chip */
558 		buf_len = c->sector_size;
559 	} else {
560 		buf_len = EMPTY_SCAN_SIZE(c->sector_size);
561 		err = jffs2_fill_scan_buf(c, buf, buf_ofs, buf_len);
562 		if (err)
563 			return err;
564 	}
565 
566 	/* We temporarily use 'ofs' as a pointer into the buffer/jeb */
567 	ofs = 0;
568 	max_ofs = EMPTY_SCAN_SIZE(c->sector_size);
569 	/* Scan only EMPTY_SCAN_SIZE of 0xFF before declaring it's empty */
570 	while(ofs < max_ofs && *(uint32_t *)(&buf[ofs]) == 0xFFFFFFFF)
571 		ofs += 4;
572 
573 	if (ofs == max_ofs) {
574 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
575 		if (jffs2_cleanmarker_oob(c)) {
576 			/* scan oob, take care of cleanmarker */
577 			int ret = jffs2_check_oob_empty(c, jeb, cleanmarkerfound);
578 			jffs2_dbg(2, "jffs2_check_oob_empty returned %d\n",
579 				  ret);
580 			switch (ret) {
581 			case 0:		return cleanmarkerfound ? BLK_STATE_CLEANMARKER : BLK_STATE_ALLFF;
582 			case 1: 	return BLK_STATE_ALLDIRTY;
583 			default: 	return ret;
584 			}
585 		}
586 #endif
587 		jffs2_dbg(1, "Block at 0x%08x is empty (erased)\n",
588 			  jeb->offset);
589 		if (c->cleanmarker_size == 0)
590 			return BLK_STATE_CLEANMARKER;	/* don't bother with re-erase */
591 		else
592 			return BLK_STATE_ALLFF;	/* OK to erase if all blocks are like this */
593 	}
594 	if (ofs) {
595 		jffs2_dbg(1, "Free space at %08x ends at %08x\n", jeb->offset,
596 			  jeb->offset + ofs);
597 		if ((err = jffs2_prealloc_raw_node_refs(c, jeb, 1)))
598 			return err;
599 		if ((err = jffs2_scan_dirty_space(c, jeb, ofs)))
600 			return err;
601 	}
602 
603 	/* Now ofs is a complete physical flash offset as it always was... */
604 	ofs += jeb->offset;
605 
606 	noise = 10;
607 
608 	dbg_summary("no summary found in jeb 0x%08x. Apply original scan.\n",jeb->offset);
609 
610 scan_more:
611 	while(ofs < jeb->offset + c->sector_size) {
612 
613 		jffs2_dbg_acct_paranoia_check_nolock(c, jeb);
614 
615 		/* Make sure there are node refs available for use */
616 		err = jffs2_prealloc_raw_node_refs(c, jeb, 2);
617 		if (err)
618 			return err;
619 
620 		cond_resched();
621 
622 		if (ofs & 3) {
623 			pr_warn("Eep. ofs 0x%08x not word-aligned!\n", ofs);
624 			ofs = PAD(ofs);
625 			continue;
626 		}
627 		if (ofs == prevofs) {
628 			pr_warn("ofs 0x%08x has already been seen. Skipping\n",
629 				ofs);
630 			if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
631 				return err;
632 			ofs += 4;
633 			continue;
634 		}
635 		prevofs = ofs;
636 
637 		if (jeb->offset + c->sector_size < ofs + sizeof(*node)) {
638 			jffs2_dbg(1, "Fewer than %zd bytes left to end of block. (%x+%x<%x+%zx) Not reading\n",
639 				  sizeof(struct jffs2_unknown_node),
640 				  jeb->offset, c->sector_size, ofs,
641 				  sizeof(*node));
642 			if ((err = jffs2_scan_dirty_space(c, jeb, (jeb->offset + c->sector_size)-ofs)))
643 				return err;
644 			break;
645 		}
646 
647 		if (buf_ofs + buf_len < ofs + sizeof(*node)) {
648 			buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
649 			jffs2_dbg(1, "Fewer than %zd bytes (node header) left to end of buf. Reading 0x%x at 0x%08x\n",
650 				  sizeof(struct jffs2_unknown_node),
651 				  buf_len, ofs);
652 			err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
653 			if (err)
654 				return err;
655 			buf_ofs = ofs;
656 		}
657 
658 		node = (struct jffs2_unknown_node *)&buf[ofs-buf_ofs];
659 
660 		if (*(uint32_t *)(&buf[ofs-buf_ofs]) == 0xffffffff) {
661 			uint32_t inbuf_ofs;
662 			uint32_t empty_start, scan_end;
663 
664 			empty_start = ofs;
665 			ofs += 4;
666 			scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(c->sector_size)/8, buf_len);
667 
668 			jffs2_dbg(1, "Found empty flash at 0x%08x\n", ofs);
669 		more_empty:
670 			inbuf_ofs = ofs - buf_ofs;
671 			while (inbuf_ofs < scan_end) {
672 				if (unlikely(*(uint32_t *)(&buf[inbuf_ofs]) != 0xffffffff)) {
673 					pr_warn("Empty flash at 0x%08x ends at 0x%08x\n",
674 						empty_start, ofs);
675 					if ((err = jffs2_scan_dirty_space(c, jeb, ofs-empty_start)))
676 						return err;
677 					goto scan_more;
678 				}
679 
680 				inbuf_ofs+=4;
681 				ofs += 4;
682 			}
683 			/* Ran off end. */
684 			jffs2_dbg(1, "Empty flash to end of buffer at 0x%08x\n",
685 				  ofs);
686 
687 			/* If we're only checking the beginning of a block with a cleanmarker,
688 			   bail now */
689 			if (buf_ofs == jeb->offset && jeb->used_size == PAD(c->cleanmarker_size) &&
690 			    c->cleanmarker_size && !jeb->dirty_size && !ref_next(jeb->first_node)) {
691 				jffs2_dbg(1, "%d bytes at start of block seems clean... assuming all clean\n",
692 					  EMPTY_SCAN_SIZE(c->sector_size));
693 				return BLK_STATE_CLEANMARKER;
694 			}
695 			if (!buf_size && (scan_end != buf_len)) {/* XIP/point case */
696 				scan_end = buf_len;
697 				goto more_empty;
698 			}
699 
700 			/* See how much more there is to read in this eraseblock... */
701 			buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
702 			if (!buf_len) {
703 				/* No more to read. Break out of main loop without marking
704 				   this range of empty space as dirty (because it's not) */
705 				jffs2_dbg(1, "Empty flash at %08x runs to end of block. Treating as free_space\n",
706 					  empty_start);
707 				break;
708 			}
709 			/* point never reaches here */
710 			scan_end = buf_len;
711 			jffs2_dbg(1, "Reading another 0x%x at 0x%08x\n",
712 				  buf_len, ofs);
713 			err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
714 			if (err)
715 				return err;
716 			buf_ofs = ofs;
717 			goto more_empty;
718 		}
719 
720 		if (ofs == jeb->offset && je16_to_cpu(node->magic) == KSAMTIB_CIGAM_2SFFJ) {
721 			pr_warn("Magic bitmask is backwards at offset 0x%08x. Wrong endian filesystem?\n",
722 				ofs);
723 			if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
724 				return err;
725 			ofs += 4;
726 			continue;
727 		}
728 		if (je16_to_cpu(node->magic) == JFFS2_DIRTY_BITMASK) {
729 			jffs2_dbg(1, "Dirty bitmask at 0x%08x\n", ofs);
730 			if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
731 				return err;
732 			ofs += 4;
733 			continue;
734 		}
735 		if (je16_to_cpu(node->magic) == JFFS2_OLD_MAGIC_BITMASK) {
736 			pr_warn("Old JFFS2 bitmask found at 0x%08x\n", ofs);
737 			pr_warn("You cannot use older JFFS2 filesystems with newer kernels\n");
738 			if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
739 				return err;
740 			ofs += 4;
741 			continue;
742 		}
743 		if (je16_to_cpu(node->magic) != JFFS2_MAGIC_BITMASK) {
744 			/* OK. We're out of possibilities. Whinge and move on */
745 			noisy_printk(&noise, "%s(): Magic bitmask 0x%04x not found at 0x%08x: 0x%04x instead\n",
746 				     __func__,
747 				     JFFS2_MAGIC_BITMASK, ofs,
748 				     je16_to_cpu(node->magic));
749 			if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
750 				return err;
751 			ofs += 4;
752 			continue;
753 		}
754 		/* We seem to have a node of sorts. Check the CRC */
755 		crcnode.magic = node->magic;
756 		crcnode.nodetype = cpu_to_je16( je16_to_cpu(node->nodetype) | JFFS2_NODE_ACCURATE);
757 		crcnode.totlen = node->totlen;
758 		hdr_crc = crc32(0, &crcnode, sizeof(crcnode)-4);
759 
760 		if (hdr_crc != je32_to_cpu(node->hdr_crc)) {
761 			noisy_printk(&noise, "%s(): Node at 0x%08x {0x%04x, 0x%04x, 0x%08x) has invalid CRC 0x%08x (calculated 0x%08x)\n",
762 				     __func__,
763 				     ofs, je16_to_cpu(node->magic),
764 				     je16_to_cpu(node->nodetype),
765 				     je32_to_cpu(node->totlen),
766 				     je32_to_cpu(node->hdr_crc),
767 				     hdr_crc);
768 			if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
769 				return err;
770 			ofs += 4;
771 			continue;
772 		}
773 
774 		if (ofs + je32_to_cpu(node->totlen) > jeb->offset + c->sector_size) {
775 			/* Eep. Node goes over the end of the erase block. */
776 			pr_warn("Node at 0x%08x with length 0x%08x would run over the end of the erase block\n",
777 				ofs, je32_to_cpu(node->totlen));
778 			pr_warn("Perhaps the file system was created with the wrong erase size?\n");
779 			if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
780 				return err;
781 			ofs += 4;
782 			continue;
783 		}
784 
785 		if (!(je16_to_cpu(node->nodetype) & JFFS2_NODE_ACCURATE)) {
786 			/* Wheee. This is an obsoleted node */
787 			jffs2_dbg(2, "Node at 0x%08x is obsolete. Skipping\n",
788 				  ofs);
789 			if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen)))))
790 				return err;
791 			ofs += PAD(je32_to_cpu(node->totlen));
792 			continue;
793 		}
794 
795 		switch(je16_to_cpu(node->nodetype)) {
796 		case JFFS2_NODETYPE_INODE:
797 			if (buf_ofs + buf_len < ofs + sizeof(struct jffs2_raw_inode)) {
798 				buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
799 				jffs2_dbg(1, "Fewer than %zd bytes (inode node) left to end of buf. Reading 0x%x at 0x%08x\n",
800 					  sizeof(struct jffs2_raw_inode),
801 					  buf_len, ofs);
802 				err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
803 				if (err)
804 					return err;
805 				buf_ofs = ofs;
806 				node = (void *)buf;
807 			}
808 			err = jffs2_scan_inode_node(c, jeb, (void *)node, ofs, s);
809 			if (err) return err;
810 			ofs += PAD(je32_to_cpu(node->totlen));
811 			break;
812 
813 		case JFFS2_NODETYPE_DIRENT:
814 			if (buf_ofs + buf_len < ofs + je32_to_cpu(node->totlen)) {
815 				buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
816 				jffs2_dbg(1, "Fewer than %d bytes (dirent node) left to end of buf. Reading 0x%x at 0x%08x\n",
817 					  je32_to_cpu(node->totlen), buf_len,
818 					  ofs);
819 				err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
820 				if (err)
821 					return err;
822 				buf_ofs = ofs;
823 				node = (void *)buf;
824 			}
825 			err = jffs2_scan_dirent_node(c, jeb, (void *)node, ofs, s);
826 			if (err) return err;
827 			ofs += PAD(je32_to_cpu(node->totlen));
828 			break;
829 
830 #ifdef CONFIG_JFFS2_FS_XATTR
831 		case JFFS2_NODETYPE_XATTR:
832 			if (buf_ofs + buf_len < ofs + je32_to_cpu(node->totlen)) {
833 				buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
834 				jffs2_dbg(1, "Fewer than %d bytes (xattr node) left to end of buf. Reading 0x%x at 0x%08x\n",
835 					  je32_to_cpu(node->totlen), buf_len,
836 					  ofs);
837 				err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
838 				if (err)
839 					return err;
840 				buf_ofs = ofs;
841 				node = (void *)buf;
842 			}
843 			err = jffs2_scan_xattr_node(c, jeb, (void *)node, ofs, s);
844 			if (err)
845 				return err;
846 			ofs += PAD(je32_to_cpu(node->totlen));
847 			break;
848 		case JFFS2_NODETYPE_XREF:
849 			if (buf_ofs + buf_len < ofs + je32_to_cpu(node->totlen)) {
850 				buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
851 				jffs2_dbg(1, "Fewer than %d bytes (xref node) left to end of buf. Reading 0x%x at 0x%08x\n",
852 					  je32_to_cpu(node->totlen), buf_len,
853 					  ofs);
854 				err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
855 				if (err)
856 					return err;
857 				buf_ofs = ofs;
858 				node = (void *)buf;
859 			}
860 			err = jffs2_scan_xref_node(c, jeb, (void *)node, ofs, s);
861 			if (err)
862 				return err;
863 			ofs += PAD(je32_to_cpu(node->totlen));
864 			break;
865 #endif	/* CONFIG_JFFS2_FS_XATTR */
866 
867 		case JFFS2_NODETYPE_CLEANMARKER:
868 			jffs2_dbg(1, "CLEANMARKER node found at 0x%08x\n", ofs);
869 			if (je32_to_cpu(node->totlen) != c->cleanmarker_size) {
870 				pr_notice("CLEANMARKER node found at 0x%08x has totlen 0x%x != normal 0x%x\n",
871 					  ofs, je32_to_cpu(node->totlen),
872 					  c->cleanmarker_size);
873 				if ((err = jffs2_scan_dirty_space(c, jeb, PAD(sizeof(struct jffs2_unknown_node)))))
874 					return err;
875 				ofs += PAD(sizeof(struct jffs2_unknown_node));
876 			} else if (jeb->first_node) {
877 				pr_notice("CLEANMARKER node found at 0x%08x, not first node in block (0x%08x)\n",
878 					  ofs, jeb->offset);
879 				if ((err = jffs2_scan_dirty_space(c, jeb, PAD(sizeof(struct jffs2_unknown_node)))))
880 					return err;
881 				ofs += PAD(sizeof(struct jffs2_unknown_node));
882 			} else {
883 				jffs2_link_node_ref(c, jeb, ofs | REF_NORMAL, c->cleanmarker_size, NULL);
884 
885 				ofs += PAD(c->cleanmarker_size);
886 			}
887 			break;
888 
889 		case JFFS2_NODETYPE_PADDING:
890 			if (jffs2_sum_active())
891 				jffs2_sum_add_padding_mem(s, je32_to_cpu(node->totlen));
892 			if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen)))))
893 				return err;
894 			ofs += PAD(je32_to_cpu(node->totlen));
895 			break;
896 
897 		default:
898 			switch (je16_to_cpu(node->nodetype) & JFFS2_COMPAT_MASK) {
899 			case JFFS2_FEATURE_ROCOMPAT:
900 				pr_notice("Read-only compatible feature node (0x%04x) found at offset 0x%08x\n",
901 					  je16_to_cpu(node->nodetype), ofs);
902 				c->flags |= JFFS2_SB_FLAG_RO;
903 				if (!(jffs2_is_readonly(c)))
904 					return -EROFS;
905 				if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen)))))
906 					return err;
907 				ofs += PAD(je32_to_cpu(node->totlen));
908 				break;
909 
910 			case JFFS2_FEATURE_INCOMPAT:
911 				pr_notice("Incompatible feature node (0x%04x) found at offset 0x%08x\n",
912 					  je16_to_cpu(node->nodetype), ofs);
913 				return -EINVAL;
914 
915 			case JFFS2_FEATURE_RWCOMPAT_DELETE:
916 				jffs2_dbg(1, "Unknown but compatible feature node (0x%04x) found at offset 0x%08x\n",
917 					  je16_to_cpu(node->nodetype), ofs);
918 				if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen)))))
919 					return err;
920 				ofs += PAD(je32_to_cpu(node->totlen));
921 				break;
922 
923 			case JFFS2_FEATURE_RWCOMPAT_COPY: {
924 				jffs2_dbg(1, "Unknown but compatible feature node (0x%04x) found at offset 0x%08x\n",
925 					  je16_to_cpu(node->nodetype), ofs);
926 
927 				jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, PAD(je32_to_cpu(node->totlen)), NULL);
928 
929 				/* We can't summarise nodes we don't grok */
930 				jffs2_sum_disable_collecting(s);
931 				ofs += PAD(je32_to_cpu(node->totlen));
932 				break;
933 				}
934 			}
935 		}
936 	}
937 
938 	if (jffs2_sum_active()) {
939 		if (PAD(s->sum_size + JFFS2_SUMMARY_FRAME_SIZE) > jeb->free_size) {
940 			dbg_summary("There is not enough space for "
941 				"summary information, disabling for this jeb!\n");
942 			jffs2_sum_disable_collecting(s);
943 		}
944 	}
945 
946 	jffs2_dbg(1, "Block at 0x%08x: free 0x%08x, dirty 0x%08x, unchecked 0x%08x, used 0x%08x, wasted 0x%08x\n",
947 		  jeb->offset, jeb->free_size, jeb->dirty_size,
948 		  jeb->unchecked_size, jeb->used_size, jeb->wasted_size);
949 
950 	/* mark_node_obsolete can add to wasted !! */
951 	if (jeb->wasted_size) {
952 		jeb->dirty_size += jeb->wasted_size;
953 		c->dirty_size += jeb->wasted_size;
954 		c->wasted_size -= jeb->wasted_size;
955 		jeb->wasted_size = 0;
956 	}
957 
958 	return jffs2_scan_classify_jeb(c, jeb);
959 }
960 
jffs2_scan_make_ino_cache(struct jffs2_sb_info * c,uint32_t ino)961 struct jffs2_inode_cache *jffs2_scan_make_ino_cache(struct jffs2_sb_info *c, uint32_t ino)
962 {
963 	struct jffs2_inode_cache *ic;
964 
965 	ic = jffs2_get_ino_cache(c, ino);
966 	if (ic)
967 		return ic;
968 
969 	if (ino > c->highest_ino)
970 		c->highest_ino = ino;
971 
972 	ic = jffs2_alloc_inode_cache();
973 	if (!ic) {
974 		pr_notice("%s(): allocation of inode cache failed\n", __func__);
975 		return NULL;
976 	}
977 	memset(ic, 0, sizeof(*ic));
978 
979 	ic->ino = ino;
980 	ic->nodes = (void *)ic;
981 	jffs2_add_ino_cache(c, ic);
982 	if (ino == 1)
983 		ic->pino_nlink = 1;
984 	return ic;
985 }
986 
jffs2_scan_inode_node(struct jffs2_sb_info * c,struct jffs2_eraseblock * jeb,struct jffs2_raw_inode * ri,uint32_t ofs,struct jffs2_summary * s)987 static int jffs2_scan_inode_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
988 				 struct jffs2_raw_inode *ri, uint32_t ofs, struct jffs2_summary *s)
989 {
990 	struct jffs2_inode_cache *ic;
991 	uint32_t crc, ino = je32_to_cpu(ri->ino);
992 
993 	jffs2_dbg(1, "%s(): Node at 0x%08x\n", __func__, ofs);
994 
995 	/* We do very little here now. Just check the ino# to which we should attribute
996 	   this node; we can do all the CRC checking etc. later. There's a tradeoff here --
997 	   we used to scan the flash once only, reading everything we want from it into
998 	   memory, then building all our in-core data structures and freeing the extra
999 	   information. Now we allow the first part of the mount to complete a lot quicker,
1000 	   but we have to go _back_ to the flash in order to finish the CRC checking, etc.
1001 	   Which means that the _full_ amount of time to get to proper write mode with GC
1002 	   operational may actually be _longer_ than before. Sucks to be me. */
1003 
1004 	/* Check the node CRC in any case. */
1005 	crc = crc32(0, ri, sizeof(*ri)-8);
1006 	if (crc != je32_to_cpu(ri->node_crc)) {
1007 		pr_notice("%s(): CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
1008 			  __func__, ofs, je32_to_cpu(ri->node_crc), crc);
1009 		/*
1010 		 * We believe totlen because the CRC on the node
1011 		 * _header_ was OK, just the node itself failed.
1012 		 */
1013 		return jffs2_scan_dirty_space(c, jeb,
1014 					      PAD(je32_to_cpu(ri->totlen)));
1015 	}
1016 
1017 	ic = jffs2_get_ino_cache(c, ino);
1018 	if (!ic) {
1019 		ic = jffs2_scan_make_ino_cache(c, ino);
1020 		if (!ic)
1021 			return -ENOMEM;
1022 	}
1023 
1024 	/* Wheee. It worked */
1025 	jffs2_link_node_ref(c, jeb, ofs | REF_UNCHECKED, PAD(je32_to_cpu(ri->totlen)), ic);
1026 
1027 	jffs2_dbg(1, "Node is ino #%u, version %d. Range 0x%x-0x%x\n",
1028 		  je32_to_cpu(ri->ino), je32_to_cpu(ri->version),
1029 		  je32_to_cpu(ri->offset),
1030 		  je32_to_cpu(ri->offset)+je32_to_cpu(ri->dsize));
1031 
1032 	pseudo_random += je32_to_cpu(ri->version);
1033 
1034 	if (jffs2_sum_active()) {
1035 		jffs2_sum_add_inode_mem(s, ri, ofs - jeb->offset);
1036 	}
1037 
1038 	return 0;
1039 }
1040 
jffs2_scan_dirent_node(struct jffs2_sb_info * c,struct jffs2_eraseblock * jeb,struct jffs2_raw_dirent * rd,uint32_t ofs,struct jffs2_summary * s)1041 static int jffs2_scan_dirent_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
1042 				  struct jffs2_raw_dirent *rd, uint32_t ofs, struct jffs2_summary *s)
1043 {
1044 	struct jffs2_full_dirent *fd;
1045 	struct jffs2_inode_cache *ic;
1046 	uint32_t checkedlen;
1047 	uint32_t crc;
1048 	int err;
1049 
1050 	jffs2_dbg(1, "%s(): Node at 0x%08x\n", __func__, ofs);
1051 
1052 	/* We don't get here unless the node is still valid, so we don't have to
1053 	   mask in the ACCURATE bit any more. */
1054 	crc = crc32(0, rd, sizeof(*rd)-8);
1055 
1056 	if (crc != je32_to_cpu(rd->node_crc)) {
1057 		pr_notice("%s(): Node CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
1058 			  __func__, ofs, je32_to_cpu(rd->node_crc), crc);
1059 		/* We believe totlen because the CRC on the node _header_ was OK, just the node itself failed. */
1060 		if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(rd->totlen)))))
1061 			return err;
1062 		return 0;
1063 	}
1064 
1065 	pseudo_random += je32_to_cpu(rd->version);
1066 
1067 	/* Should never happen. Did. (OLPC trac #4184)*/
1068 	checkedlen = strnlen(rd->name, rd->nsize);
1069 	if (checkedlen < rd->nsize) {
1070 		pr_err("Dirent at %08x has zeroes in name. Truncating to %d chars\n",
1071 		       ofs, checkedlen);
1072 	}
1073 	fd = jffs2_alloc_full_dirent(checkedlen+1);
1074 	if (!fd) {
1075 		return -ENOMEM;
1076 	}
1077 	memcpy(&fd->name, rd->name, checkedlen);
1078 	fd->name[checkedlen] = 0;
1079 
1080 	crc = crc32(0, fd->name, checkedlen);
1081 	if (crc != je32_to_cpu(rd->name_crc)) {
1082 		pr_notice("%s(): Name CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
1083 			  __func__, ofs, je32_to_cpu(rd->name_crc), crc);
1084 		jffs2_dbg(1, "Name for which CRC failed is (now) '%s', ino #%d\n",
1085 			  fd->name, je32_to_cpu(rd->ino));
1086 		jffs2_free_full_dirent(fd);
1087 		/* FIXME: Why do we believe totlen? */
1088 		/* We believe totlen because the CRC on the node _header_ was OK, just the name failed. */
1089 		if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(rd->totlen)))))
1090 			return err;
1091 		return 0;
1092 	}
1093 	ic = jffs2_scan_make_ino_cache(c, je32_to_cpu(rd->pino));
1094 	if (!ic) {
1095 		jffs2_free_full_dirent(fd);
1096 		return -ENOMEM;
1097 	}
1098 
1099 	fd->raw = jffs2_link_node_ref(c, jeb, ofs | dirent_node_state(rd),
1100 				      PAD(je32_to_cpu(rd->totlen)), ic);
1101 
1102 	fd->next = NULL;
1103 	fd->version = je32_to_cpu(rd->version);
1104 	fd->ino = je32_to_cpu(rd->ino);
1105 	fd->nhash = full_name_hash(NULL, fd->name, checkedlen);
1106 	fd->type = rd->type;
1107 	jffs2_add_fd_to_list(c, fd, &ic->scan_dents);
1108 
1109 	if (jffs2_sum_active()) {
1110 		jffs2_sum_add_dirent_mem(s, rd, ofs - jeb->offset);
1111 	}
1112 
1113 	return 0;
1114 }
1115 
count_list(struct list_head * l)1116 static int count_list(struct list_head *l)
1117 {
1118 	uint32_t count = 0;
1119 	struct list_head *tmp;
1120 
1121 	list_for_each(tmp, l) {
1122 		count++;
1123 	}
1124 	return count;
1125 }
1126 
1127 /* Note: This breaks if list_empty(head). I don't care. You
1128    might, if you copy this code and use it elsewhere :) */
rotate_list(struct list_head * head,uint32_t count)1129 static void rotate_list(struct list_head *head, uint32_t count)
1130 {
1131 	struct list_head *n = head->next;
1132 
1133 	list_del(head);
1134 	while(count--) {
1135 		n = n->next;
1136 	}
1137 	list_add(head, n);
1138 }
1139 
jffs2_rotate_lists(struct jffs2_sb_info * c)1140 void jffs2_rotate_lists(struct jffs2_sb_info *c)
1141 {
1142 	uint32_t x;
1143 	uint32_t rotateby;
1144 
1145 	x = count_list(&c->clean_list);
1146 	if (x) {
1147 		rotateby = pseudo_random % x;
1148 		rotate_list((&c->clean_list), rotateby);
1149 	}
1150 
1151 	x = count_list(&c->very_dirty_list);
1152 	if (x) {
1153 		rotateby = pseudo_random % x;
1154 		rotate_list((&c->very_dirty_list), rotateby);
1155 	}
1156 
1157 	x = count_list(&c->dirty_list);
1158 	if (x) {
1159 		rotateby = pseudo_random % x;
1160 		rotate_list((&c->dirty_list), rotateby);
1161 	}
1162 
1163 	x = count_list(&c->erasable_list);
1164 	if (x) {
1165 		rotateby = pseudo_random % x;
1166 		rotate_list((&c->erasable_list), rotateby);
1167 	}
1168 
1169 	if (c->nr_erasing_blocks) {
1170 		rotateby = pseudo_random % c->nr_erasing_blocks;
1171 		rotate_list((&c->erase_pending_list), rotateby);
1172 	}
1173 
1174 	if (c->nr_free_blocks) {
1175 		rotateby = pseudo_random % c->nr_free_blocks;
1176 		rotate_list((&c->free_list), rotateby);
1177 	}
1178 }
1179