2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright (C) 2001-2003 Red Hat, Inc.
6 * Created by David Woodhouse <dwmw2@infradead.org>
8 * For licensing information, see the file 'LICENCE' in this directory.
10 * $Id: scan.c,v 1.125 2005/09/30 13:59:13 dedekind Exp $
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/slab.h>
16 #include <linux/mtd/mtd.h>
17 #include <linux/pagemap.h>
18 #include <linux/crc32.h>
19 #include <linux/compiler.h>
24 #define DEFAULT_EMPTY_SCAN_SIZE 1024
26 #define noisy_printk(noise, args...) do { \
28 printk(KERN_NOTICE args); \
31 printk(KERN_NOTICE "Further such events for this erase block will not be printed\n"); \
36 static uint32_t pseudo_random
;
38 static int jffs2_scan_eraseblock (struct jffs2_sb_info
*c
, struct jffs2_eraseblock
*jeb
,
39 unsigned char *buf
, uint32_t buf_size
, struct jffs2_summary
*s
);
41 /* These helper functions _must_ increase ofs and also do the dirty/used space accounting.
42 * Returning an error will abort the mount - bad checksums etc. should just mark the space
45 static int jffs2_scan_inode_node(struct jffs2_sb_info
*c
, struct jffs2_eraseblock
*jeb
,
46 struct jffs2_raw_inode
*ri
, uint32_t ofs
, struct jffs2_summary
*s
);
47 static int jffs2_scan_dirent_node(struct jffs2_sb_info
*c
, struct jffs2_eraseblock
*jeb
,
48 struct jffs2_raw_dirent
*rd
, uint32_t ofs
, struct jffs2_summary
*s
);
50 static inline int min_free(struct jffs2_sb_info
*c
)
52 uint32_t min
= 2 * sizeof(struct jffs2_raw_inode
);
53 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
54 if (!jffs2_can_mark_obsolete(c
) && min
< c
->wbuf_pagesize
)
55 return c
->wbuf_pagesize
;
61 static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size
) {
62 if (sector_size
< DEFAULT_EMPTY_SCAN_SIZE
)
65 return DEFAULT_EMPTY_SCAN_SIZE
;
68 int jffs2_scan_medium(struct jffs2_sb_info
*c
)
71 uint32_t empty_blocks
= 0, bad_blocks
= 0;
72 unsigned char *flashbuf
= NULL
;
73 uint32_t buf_size
= 0;
74 struct jffs2_summary
*s
= NULL
; /* summary info collected by the scan process */
79 ret
= c
->mtd
->point (c
->mtd
, 0, c
->mtd
->size
, &pointlen
, &flashbuf
);
80 if (!ret
&& pointlen
< c
->mtd
->size
) {
81 /* Don't muck about if it won't let us point to the whole flash */
82 D1(printk(KERN_DEBUG
"MTD point returned len too short: 0x%zx\n", pointlen
));
83 c
->mtd
->unpoint(c
->mtd
, flashbuf
, 0, c
->mtd
->size
);
87 D1(printk(KERN_DEBUG
"MTD point failed %d\n", ret
));
91 /* For NAND it's quicker to read a whole eraseblock at a time,
93 if (jffs2_cleanmarker_oob(c
))
94 buf_size
= c
->sector_size
;
98 /* Respect kmalloc limitations */
99 if (buf_size
> 128*1024)
102 D1(printk(KERN_DEBUG
"Allocating readbuf of %d bytes\n", buf_size
));
103 flashbuf
= kmalloc(buf_size
, GFP_KERNEL
);
108 if (jffs2_sum_active()) {
109 s
= kmalloc(sizeof(struct jffs2_summary
), GFP_KERNEL
);
111 JFFS2_WARNING("Can't allocate memory for summary\n");
114 memset(s
, 0, sizeof(struct jffs2_summary
));
117 for (i
=0; i
<c
->nr_blocks
; i
++) {
118 struct jffs2_eraseblock
*jeb
= &c
->blocks
[i
];
120 /* reset summary info for next eraseblock scan */
121 jffs2_sum_reset_collected(s
);
123 ret
= jffs2_scan_eraseblock(c
, jeb
, buf_size
?flashbuf
:(flashbuf
+jeb
->offset
),
129 jffs2_dbg_acct_paranoia_check_nolock(c
, jeb
);
131 /* Now decide which list to put it on */
133 case BLK_STATE_ALLFF
:
135 * Empty block. Since we can't be sure it
136 * was entirely erased, we just queue it for erase
137 * again. It will be marked as such when the erase
138 * is complete. Meanwhile we still count it as empty
142 list_add(&jeb
->list
, &c
->erase_pending_list
);
143 c
->nr_erasing_blocks
++;
146 case BLK_STATE_CLEANMARKER
:
147 /* Only a CLEANMARKER node is valid */
148 if (!jeb
->dirty_size
) {
149 /* It's actually free */
150 list_add(&jeb
->list
, &c
->free_list
);
154 D1(printk(KERN_DEBUG
"Adding all-dirty block at 0x%08x to erase_pending_list\n", jeb
->offset
));
155 list_add(&jeb
->list
, &c
->erase_pending_list
);
156 c
->nr_erasing_blocks
++;
160 case BLK_STATE_CLEAN
:
161 /* Full (or almost full) of clean data. Clean list */
162 list_add(&jeb
->list
, &c
->clean_list
);
165 case BLK_STATE_PARTDIRTY
:
166 /* Some data, but not full. Dirty list. */
167 /* We want to remember the block with most free space
168 and stick it in the 'nextblock' position to start writing to it. */
169 if (jeb
->free_size
> min_free(c
) &&
170 (!c
->nextblock
|| c
->nextblock
->free_size
< jeb
->free_size
)) {
171 /* Better candidate for the next writes to go to */
173 c
->nextblock
->dirty_size
+= c
->nextblock
->free_size
+ c
->nextblock
->wasted_size
;
174 c
->dirty_size
+= c
->nextblock
->free_size
+ c
->nextblock
->wasted_size
;
175 c
->free_size
-= c
->nextblock
->free_size
;
176 c
->wasted_size
-= c
->nextblock
->wasted_size
;
177 c
->nextblock
->free_size
= c
->nextblock
->wasted_size
= 0;
178 if (VERYDIRTY(c
, c
->nextblock
->dirty_size
)) {
179 list_add(&c
->nextblock
->list
, &c
->very_dirty_list
);
181 list_add(&c
->nextblock
->list
, &c
->dirty_list
);
183 /* deleting summary information of the old nextblock */
184 jffs2_sum_reset_collected(c
->summary
);
186 /* update collected summary infromation for the current nextblock */
187 jffs2_sum_move_collected(c
, s
);
188 D1(printk(KERN_DEBUG
"jffs2_scan_medium(): new nextblock = 0x%08x\n", jeb
->offset
));
191 jeb
->dirty_size
+= jeb
->free_size
+ jeb
->wasted_size
;
192 c
->dirty_size
+= jeb
->free_size
+ jeb
->wasted_size
;
193 c
->free_size
-= jeb
->free_size
;
194 c
->wasted_size
-= jeb
->wasted_size
;
195 jeb
->free_size
= jeb
->wasted_size
= 0;
196 if (VERYDIRTY(c
, jeb
->dirty_size
)) {
197 list_add(&jeb
->list
, &c
->very_dirty_list
);
199 list_add(&jeb
->list
, &c
->dirty_list
);
204 case BLK_STATE_ALLDIRTY
:
205 /* Nothing valid - not even a clean marker. Needs erasing. */
206 /* For now we just put it on the erasing list. We'll start the erases later */
207 D1(printk(KERN_NOTICE
"JFFS2: Erase block at 0x%08x is not formatted. It will be erased\n", jeb
->offset
));
208 list_add(&jeb
->list
, &c
->erase_pending_list
);
209 c
->nr_erasing_blocks
++;
212 case BLK_STATE_BADBLOCK
:
213 D1(printk(KERN_NOTICE
"JFFS2: Block at 0x%08x is bad\n", jeb
->offset
));
214 list_add(&jeb
->list
, &c
->bad_list
);
215 c
->bad_size
+= c
->sector_size
;
216 c
->free_size
-= c
->sector_size
;
220 printk(KERN_WARNING
"jffs2_scan_medium(): unknown block state\n");
225 if (jffs2_sum_active() && s
)
228 /* Nextblock dirty is always seen as wasted, because we cannot recycle it now */
229 if (c
->nextblock
&& (c
->nextblock
->dirty_size
)) {
230 c
->nextblock
->wasted_size
+= c
->nextblock
->dirty_size
;
231 c
->wasted_size
+= c
->nextblock
->dirty_size
;
232 c
->dirty_size
-= c
->nextblock
->dirty_size
;
233 c
->nextblock
->dirty_size
= 0;
235 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
236 if (!jffs2_can_mark_obsolete(c
) && c
->nextblock
&& (c
->nextblock
->free_size
% c
->wbuf_pagesize
)) {
237 /* If we're going to start writing into a block which already
238 contains data, and the end of the data isn't page-aligned,
239 skip a little and align it. */
241 uint32_t skip
= c
->nextblock
->free_size
% c
->wbuf_pagesize
;
243 D1(printk(KERN_DEBUG
"jffs2_scan_medium(): Skipping %d bytes in nextblock to ensure page alignment\n",
245 c
->nextblock
->wasted_size
+= skip
;
246 c
->wasted_size
+= skip
;
248 c
->nextblock
->free_size
-= skip
;
249 c
->free_size
-= skip
;
252 if (c
->nr_erasing_blocks
) {
253 if ( !c
->used_size
&& ((c
->nr_free_blocks
+empty_blocks
+bad_blocks
)!= c
->nr_blocks
|| bad_blocks
== c
->nr_blocks
) ) {
254 printk(KERN_NOTICE
"Cowardly refusing to erase blocks on filesystem with no valid JFFS2 nodes\n");
255 printk(KERN_NOTICE
"empty_blocks %d, bad_blocks %d, c->nr_blocks %d\n",empty_blocks
,bad_blocks
,c
->nr_blocks
);
259 jffs2_erase_pending_trigger(c
);
267 c
->mtd
->unpoint(c
->mtd
, flashbuf
, 0, c
->mtd
->size
);
272 int jffs2_fill_scan_buf (struct jffs2_sb_info
*c
, void *buf
,
273 uint32_t ofs
, uint32_t len
)
278 ret
= jffs2_flash_read(c
, ofs
, len
, &retlen
, buf
);
280 D1(printk(KERN_WARNING
"mtd->read(0x%x bytes from 0x%x) returned %d\n", len
, ofs
, ret
));
284 D1(printk(KERN_WARNING
"Read at 0x%x gave only 0x%zx bytes\n", ofs
, retlen
));
290 int jffs2_scan_classify_jeb(struct jffs2_sb_info
*c
, struct jffs2_eraseblock
*jeb
)
292 if ((jeb
->used_size
+ jeb
->unchecked_size
) == PAD(c
->cleanmarker_size
) && !jeb
->dirty_size
293 && (!jeb
->first_node
|| !jeb
->first_node
->next_phys
) )
294 return BLK_STATE_CLEANMARKER
;
296 /* move blocks with max 4 byte dirty space to cleanlist */
297 else if (!ISDIRTY(c
->sector_size
- (jeb
->used_size
+ jeb
->unchecked_size
))) {
298 c
->dirty_size
-= jeb
->dirty_size
;
299 c
->wasted_size
+= jeb
->dirty_size
;
300 jeb
->wasted_size
+= jeb
->dirty_size
;
302 return BLK_STATE_CLEAN
;
303 } else if (jeb
->used_size
|| jeb
->unchecked_size
)
304 return BLK_STATE_PARTDIRTY
;
306 return BLK_STATE_ALLDIRTY
;
309 static int jffs2_scan_eraseblock (struct jffs2_sb_info
*c
, struct jffs2_eraseblock
*jeb
,
310 unsigned char *buf
, uint32_t buf_size
, struct jffs2_summary
*s
) {
311 struct jffs2_unknown_node
*node
;
312 struct jffs2_unknown_node crcnode
;
313 struct jffs2_sum_marker
*sm
;
314 uint32_t ofs
, prevofs
;
315 uint32_t hdr_crc
, buf_ofs
, buf_len
;
320 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
321 int cleanmarkerfound
= 0;
325 prevofs
= jeb
->offset
- 1;
327 D1(printk(KERN_DEBUG
"jffs2_scan_eraseblock(): Scanning block at 0x%x\n", ofs
));
329 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
330 if (jffs2_cleanmarker_oob(c
)) {
331 int ret
= jffs2_check_nand_cleanmarker(c
, jeb
);
332 D2(printk(KERN_NOTICE
"jffs_check_nand_cleanmarker returned %d\n",ret
));
333 /* Even if it's not found, we still scan to see
334 if the block is empty. We use this information
335 to decide whether to erase it or not. */
337 case 0: cleanmarkerfound
= 1; break;
339 case 2: return BLK_STATE_BADBLOCK
;
340 case 3: return BLK_STATE_ALLDIRTY
; /* Block has failed to erase min. once */
346 if (jffs2_sum_active()) {
347 sm
= kmalloc(sizeof(struct jffs2_sum_marker
), GFP_KERNEL
);
352 err
= jffs2_fill_scan_buf(c
, (unsigned char *) sm
, jeb
->offset
+ c
->sector_size
-
353 sizeof(struct jffs2_sum_marker
), sizeof(struct jffs2_sum_marker
));
359 if (je32_to_cpu(sm
->magic
) == JFFS2_SUM_MAGIC
) {
360 err
= jffs2_sum_scan_sumnode(c
, jeb
, je32_to_cpu(sm
->offset
), &pseudo_random
);
370 prevofs
= jeb
->offset
- 1;
373 buf_ofs
= jeb
->offset
;
376 buf_len
= c
->sector_size
;
378 if (jffs2_sum_active()) {
379 /* must reread because of summary test */
380 err
= jffs2_fill_scan_buf(c
, buf
, buf_ofs
, buf_len
);
386 buf_len
= EMPTY_SCAN_SIZE(c
->sector_size
);
387 err
= jffs2_fill_scan_buf(c
, buf
, buf_ofs
, buf_len
);
392 /* We temporarily use 'ofs' as a pointer into the buffer/jeb */
395 /* Scan only 4KiB of 0xFF before declaring it's empty */
396 while(ofs
< EMPTY_SCAN_SIZE(c
->sector_size
) && *(uint32_t *)(&buf
[ofs
]) == 0xFFFFFFFF)
399 if (ofs
== EMPTY_SCAN_SIZE(c
->sector_size
)) {
400 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
401 if (jffs2_cleanmarker_oob(c
)) {
402 /* scan oob, take care of cleanmarker */
403 int ret
= jffs2_check_oob_empty(c
, jeb
, cleanmarkerfound
);
404 D2(printk(KERN_NOTICE
"jffs2_check_oob_empty returned %d\n",ret
));
406 case 0: return cleanmarkerfound
? BLK_STATE_CLEANMARKER
: BLK_STATE_ALLFF
;
407 case 1: return BLK_STATE_ALLDIRTY
;
412 D1(printk(KERN_DEBUG
"Block at 0x%08x is empty (erased)\n", jeb
->offset
));
413 if (c
->cleanmarker_size
== 0)
414 return BLK_STATE_CLEANMARKER
; /* don't bother with re-erase */
416 return BLK_STATE_ALLFF
; /* OK to erase if all blocks are like this */
419 D1(printk(KERN_DEBUG
"Free space at %08x ends at %08x\n", jeb
->offset
,
424 /* Now ofs is a complete physical flash offset as it always was... */
429 dbg_summary("no summary found in jeb 0x%08x. Apply original scan.\n",jeb
->offset
);
432 while(ofs
< jeb
->offset
+ c
->sector_size
) {
434 jffs2_dbg_acct_paranoia_check_nolock(c
, jeb
);
439 printk(KERN_WARNING
"Eep. ofs 0x%08x not word-aligned!\n", ofs
);
443 if (ofs
== prevofs
) {
444 printk(KERN_WARNING
"ofs 0x%08x has already been seen. Skipping\n", ofs
);
451 if (jeb
->offset
+ c
->sector_size
< ofs
+ sizeof(*node
)) {
452 D1(printk(KERN_DEBUG
"Fewer than %zd bytes left to end of block. (%x+%x<%x+%zx) Not reading\n", sizeof(struct jffs2_unknown_node
),
453 jeb
->offset
, c
->sector_size
, ofs
, sizeof(*node
)));
454 DIRTY_SPACE((jeb
->offset
+ c
->sector_size
)-ofs
);
458 if (buf_ofs
+ buf_len
< ofs
+ sizeof(*node
)) {
459 buf_len
= min_t(uint32_t, buf_size
, jeb
->offset
+ c
->sector_size
- ofs
);
460 D1(printk(KERN_DEBUG
"Fewer than %zd bytes (node header) left to end of buf. Reading 0x%x at 0x%08x\n",
461 sizeof(struct jffs2_unknown_node
), buf_len
, ofs
));
462 err
= jffs2_fill_scan_buf(c
, buf
, ofs
, buf_len
);
468 node
= (struct jffs2_unknown_node
*)&buf
[ofs
-buf_ofs
];
470 if (*(uint32_t *)(&buf
[ofs
-buf_ofs
]) == 0xffffffff) {
472 uint32_t empty_start
;
477 D1(printk(KERN_DEBUG
"Found empty flash at 0x%08x\n", ofs
));
479 inbuf_ofs
= ofs
- buf_ofs
;
480 while (inbuf_ofs
< buf_len
) {
481 if (*(uint32_t *)(&buf
[inbuf_ofs
]) != 0xffffffff) {
482 printk(KERN_WARNING
"Empty flash at 0x%08x ends at 0x%08x\n",
484 DIRTY_SPACE(ofs
-empty_start
);
492 D1(printk(KERN_DEBUG
"Empty flash to end of buffer at 0x%08x\n", ofs
));
494 /* If we're only checking the beginning of a block with a cleanmarker,
496 if (buf_ofs
== jeb
->offset
&& jeb
->used_size
== PAD(c
->cleanmarker_size
) &&
497 c
->cleanmarker_size
&& !jeb
->dirty_size
&& !jeb
->first_node
->next_phys
) {
498 D1(printk(KERN_DEBUG
"%d bytes at start of block seems clean... assuming all clean\n", EMPTY_SCAN_SIZE(c
->sector_size
)));
499 return BLK_STATE_CLEANMARKER
;
502 /* See how much more there is to read in this eraseblock... */
503 buf_len
= min_t(uint32_t, buf_size
, jeb
->offset
+ c
->sector_size
- ofs
);
505 /* No more to read. Break out of main loop without marking
506 this range of empty space as dirty (because it's not) */
507 D1(printk(KERN_DEBUG
"Empty flash at %08x runs to end of block. Treating as free_space\n",
511 D1(printk(KERN_DEBUG
"Reading another 0x%x at 0x%08x\n", buf_len
, ofs
));
512 err
= jffs2_fill_scan_buf(c
, buf
, ofs
, buf_len
);
519 if (ofs
== jeb
->offset
&& je16_to_cpu(node
->magic
) == KSAMTIB_CIGAM_2SFFJ
) {
520 printk(KERN_WARNING
"Magic bitmask is backwards at offset 0x%08x. Wrong endian filesystem?\n", ofs
);
525 if (je16_to_cpu(node
->magic
) == JFFS2_DIRTY_BITMASK
) {
526 D1(printk(KERN_DEBUG
"Dirty bitmask at 0x%08x\n", ofs
));
531 if (je16_to_cpu(node
->magic
) == JFFS2_OLD_MAGIC_BITMASK
) {
532 printk(KERN_WARNING
"Old JFFS2 bitmask found at 0x%08x\n", ofs
);
533 printk(KERN_WARNING
"You cannot use older JFFS2 filesystems with newer kernels\n");
538 if (je16_to_cpu(node
->magic
) != JFFS2_MAGIC_BITMASK
) {
539 /* OK. We're out of possibilities. Whinge and move on */
540 noisy_printk(&noise
, "jffs2_scan_eraseblock(): Magic bitmask 0x%04x not found at 0x%08x: 0x%04x instead\n",
541 JFFS2_MAGIC_BITMASK
, ofs
,
542 je16_to_cpu(node
->magic
));
547 /* We seem to have a node of sorts. Check the CRC */
548 crcnode
.magic
= node
->magic
;
549 crcnode
.nodetype
= cpu_to_je16( je16_to_cpu(node
->nodetype
) | JFFS2_NODE_ACCURATE
);
550 crcnode
.totlen
= node
->totlen
;
551 hdr_crc
= crc32(0, &crcnode
, sizeof(crcnode
)-4);
553 if (hdr_crc
!= je32_to_cpu(node
->hdr_crc
)) {
554 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",
555 ofs
, je16_to_cpu(node
->magic
),
556 je16_to_cpu(node
->nodetype
),
557 je32_to_cpu(node
->totlen
),
558 je32_to_cpu(node
->hdr_crc
),
565 if (ofs
+ je32_to_cpu(node
->totlen
) >
566 jeb
->offset
+ c
->sector_size
) {
567 /* Eep. Node goes over the end of the erase block. */
568 printk(KERN_WARNING
"Node at 0x%08x with length 0x%08x would run over the end of the erase block\n",
569 ofs
, je32_to_cpu(node
->totlen
));
570 printk(KERN_WARNING
"Perhaps the file system was created with the wrong erase size?\n");
576 if (!(je16_to_cpu(node
->nodetype
) & JFFS2_NODE_ACCURATE
)) {
577 /* Wheee. This is an obsoleted node */
578 D2(printk(KERN_DEBUG
"Node at 0x%08x is obsolete. Skipping\n", ofs
));
579 DIRTY_SPACE(PAD(je32_to_cpu(node
->totlen
)));
580 ofs
+= PAD(je32_to_cpu(node
->totlen
));
584 switch(je16_to_cpu(node
->nodetype
)) {
585 case JFFS2_NODETYPE_INODE
:
586 if (buf_ofs
+ buf_len
< ofs
+ sizeof(struct jffs2_raw_inode
)) {
587 buf_len
= min_t(uint32_t, buf_size
, jeb
->offset
+ c
->sector_size
- ofs
);
588 D1(printk(KERN_DEBUG
"Fewer than %zd bytes (inode node) left to end of buf. Reading 0x%x at 0x%08x\n",
589 sizeof(struct jffs2_raw_inode
), buf_len
, ofs
));
590 err
= jffs2_fill_scan_buf(c
, buf
, ofs
, buf_len
);
596 err
= jffs2_scan_inode_node(c
, jeb
, (void *)node
, ofs
, s
);
598 ofs
+= PAD(je32_to_cpu(node
->totlen
));
601 case JFFS2_NODETYPE_DIRENT
:
602 if (buf_ofs
+ buf_len
< ofs
+ je32_to_cpu(node
->totlen
)) {
603 buf_len
= min_t(uint32_t, buf_size
, jeb
->offset
+ c
->sector_size
- ofs
);
604 D1(printk(KERN_DEBUG
"Fewer than %d bytes (dirent node) left to end of buf. Reading 0x%x at 0x%08x\n",
605 je32_to_cpu(node
->totlen
), buf_len
, ofs
));
606 err
= jffs2_fill_scan_buf(c
, buf
, ofs
, buf_len
);
612 err
= jffs2_scan_dirent_node(c
, jeb
, (void *)node
, ofs
, s
);
614 ofs
+= PAD(je32_to_cpu(node
->totlen
));
617 case JFFS2_NODETYPE_CLEANMARKER
:
618 D1(printk(KERN_DEBUG
"CLEANMARKER node found at 0x%08x\n", ofs
));
619 if (je32_to_cpu(node
->totlen
) != c
->cleanmarker_size
) {
620 printk(KERN_NOTICE
"CLEANMARKER node found at 0x%08x has totlen 0x%x != normal 0x%x\n",
621 ofs
, je32_to_cpu(node
->totlen
), c
->cleanmarker_size
);
622 DIRTY_SPACE(PAD(sizeof(struct jffs2_unknown_node
)));
623 ofs
+= PAD(sizeof(struct jffs2_unknown_node
));
624 } else if (jeb
->first_node
) {
625 printk(KERN_NOTICE
"CLEANMARKER node found at 0x%08x, not first node in block (0x%08x)\n", ofs
, jeb
->offset
);
626 DIRTY_SPACE(PAD(sizeof(struct jffs2_unknown_node
)));
627 ofs
+= PAD(sizeof(struct jffs2_unknown_node
));
629 struct jffs2_raw_node_ref
*marker_ref
= jffs2_alloc_raw_node_ref();
631 printk(KERN_NOTICE
"Failed to allocate node ref for clean marker\n");
634 marker_ref
->next_in_ino
= NULL
;
635 marker_ref
->next_phys
= NULL
;
636 marker_ref
->flash_offset
= ofs
| REF_NORMAL
;
637 marker_ref
->__totlen
= c
->cleanmarker_size
;
638 jeb
->first_node
= jeb
->last_node
= marker_ref
;
640 USED_SPACE(PAD(c
->cleanmarker_size
));
641 ofs
+= PAD(c
->cleanmarker_size
);
645 case JFFS2_NODETYPE_PADDING
:
646 if (jffs2_sum_active())
647 jffs2_sum_add_padding_mem(s
, je32_to_cpu(node
->totlen
));
648 DIRTY_SPACE(PAD(je32_to_cpu(node
->totlen
)));
649 ofs
+= PAD(je32_to_cpu(node
->totlen
));
653 switch (je16_to_cpu(node
->nodetype
) & JFFS2_COMPAT_MASK
) {
654 case JFFS2_FEATURE_ROCOMPAT
:
655 printk(KERN_NOTICE
"Read-only compatible feature node (0x%04x) found at offset 0x%08x\n", je16_to_cpu(node
->nodetype
), ofs
);
656 c
->flags
|= JFFS2_SB_FLAG_RO
;
657 if (!(jffs2_is_readonly(c
)))
659 DIRTY_SPACE(PAD(je32_to_cpu(node
->totlen
)));
660 ofs
+= PAD(je32_to_cpu(node
->totlen
));
663 case JFFS2_FEATURE_INCOMPAT
:
664 printk(KERN_NOTICE
"Incompatible feature node (0x%04x) found at offset 0x%08x\n", je16_to_cpu(node
->nodetype
), ofs
);
667 case JFFS2_FEATURE_RWCOMPAT_DELETE
:
668 D1(printk(KERN_NOTICE
"Unknown but compatible feature node (0x%04x) found at offset 0x%08x\n", je16_to_cpu(node
->nodetype
), ofs
));
669 DIRTY_SPACE(PAD(je32_to_cpu(node
->totlen
)));
670 ofs
+= PAD(je32_to_cpu(node
->totlen
));
673 case JFFS2_FEATURE_RWCOMPAT_COPY
:
674 D1(printk(KERN_NOTICE
"Unknown but compatible feature node (0x%04x) found at offset 0x%08x\n", je16_to_cpu(node
->nodetype
), ofs
));
675 USED_SPACE(PAD(je32_to_cpu(node
->totlen
)));
676 ofs
+= PAD(je32_to_cpu(node
->totlen
));
682 if (jffs2_sum_active()) {
683 if (PAD(s
->sum_size
+ JFFS2_SUMMARY_FRAME_SIZE
) > jeb
->free_size
) {
684 dbg_summary("There is not enough space for "
685 "summary information, disabling for this jeb!\n");
686 jffs2_sum_disable_collecting(s
);
690 D1(printk(KERN_DEBUG
"Block at 0x%08x: free 0x%08x, dirty 0x%08x, unchecked 0x%08x, used 0x%08x\n", jeb
->offset
,
691 jeb
->free_size
, jeb
->dirty_size
, jeb
->unchecked_size
, jeb
->used_size
));
693 /* mark_node_obsolete can add to wasted !! */
694 if (jeb
->wasted_size
) {
695 jeb
->dirty_size
+= jeb
->wasted_size
;
696 c
->dirty_size
+= jeb
->wasted_size
;
697 c
->wasted_size
-= jeb
->wasted_size
;
698 jeb
->wasted_size
= 0;
701 return jffs2_scan_classify_jeb(c
, jeb
);
704 struct jffs2_inode_cache
*jffs2_scan_make_ino_cache(struct jffs2_sb_info
*c
, uint32_t ino
)
706 struct jffs2_inode_cache
*ic
;
708 ic
= jffs2_get_ino_cache(c
, ino
);
712 if (ino
> c
->highest_ino
)
713 c
->highest_ino
= ino
;
715 ic
= jffs2_alloc_inode_cache();
717 printk(KERN_NOTICE
"jffs2_scan_make_inode_cache(): allocation of inode cache failed\n");
720 memset(ic
, 0, sizeof(*ic
));
723 ic
->nodes
= (void *)ic
;
724 jffs2_add_ino_cache(c
, ic
);
730 static int jffs2_scan_inode_node(struct jffs2_sb_info
*c
, struct jffs2_eraseblock
*jeb
,
731 struct jffs2_raw_inode
*ri
, uint32_t ofs
, struct jffs2_summary
*s
)
733 struct jffs2_raw_node_ref
*raw
;
734 struct jffs2_inode_cache
*ic
;
735 uint32_t ino
= je32_to_cpu(ri
->ino
);
737 D1(printk(KERN_DEBUG
"jffs2_scan_inode_node(): Node at 0x%08x\n", ofs
));
739 /* We do very little here now. Just check the ino# to which we should attribute
740 this node; we can do all the CRC checking etc. later. There's a tradeoff here --
741 we used to scan the flash once only, reading everything we want from it into
742 memory, then building all our in-core data structures and freeing the extra
743 information. Now we allow the first part of the mount to complete a lot quicker,
744 but we have to go _back_ to the flash in order to finish the CRC checking, etc.
745 Which means that the _full_ amount of time to get to proper write mode with GC
746 operational may actually be _longer_ than before. Sucks to be me. */
748 raw
= jffs2_alloc_raw_node_ref();
750 printk(KERN_NOTICE
"jffs2_scan_inode_node(): allocation of node reference failed\n");
754 ic
= jffs2_get_ino_cache(c
, ino
);
756 /* Inocache get failed. Either we read a bogus ino# or it's just genuinely the
757 first node we found for this inode. Do a CRC check to protect against the former
759 uint32_t crc
= crc32(0, ri
, sizeof(*ri
)-8);
761 if (crc
!= je32_to_cpu(ri
->node_crc
)) {
762 printk(KERN_NOTICE
"jffs2_scan_inode_node(): CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
763 ofs
, je32_to_cpu(ri
->node_crc
), crc
);
764 /* We believe totlen because the CRC on the node _header_ was OK, just the node itself failed. */
765 DIRTY_SPACE(PAD(je32_to_cpu(ri
->totlen
)));
766 jffs2_free_raw_node_ref(raw
);
769 ic
= jffs2_scan_make_ino_cache(c
, ino
);
771 jffs2_free_raw_node_ref(raw
);
776 /* Wheee. It worked */
778 raw
->flash_offset
= ofs
| REF_UNCHECKED
;
779 raw
->__totlen
= PAD(je32_to_cpu(ri
->totlen
));
780 raw
->next_phys
= NULL
;
781 raw
->next_in_ino
= ic
->nodes
;
784 if (!jeb
->first_node
)
785 jeb
->first_node
= raw
;
787 jeb
->last_node
->next_phys
= raw
;
788 jeb
->last_node
= raw
;
790 D1(printk(KERN_DEBUG
"Node is ino #%u, version %d. Range 0x%x-0x%x\n",
791 je32_to_cpu(ri
->ino
), je32_to_cpu(ri
->version
),
792 je32_to_cpu(ri
->offset
),
793 je32_to_cpu(ri
->offset
)+je32_to_cpu(ri
->dsize
)));
795 pseudo_random
+= je32_to_cpu(ri
->version
);
797 UNCHECKED_SPACE(PAD(je32_to_cpu(ri
->totlen
)));
799 if (jffs2_sum_active()) {
800 jffs2_sum_add_inode_mem(s
, ri
, ofs
- jeb
->offset
);
806 static int jffs2_scan_dirent_node(struct jffs2_sb_info
*c
, struct jffs2_eraseblock
*jeb
,
807 struct jffs2_raw_dirent
*rd
, uint32_t ofs
, struct jffs2_summary
*s
)
809 struct jffs2_raw_node_ref
*raw
;
810 struct jffs2_full_dirent
*fd
;
811 struct jffs2_inode_cache
*ic
;
814 D1(printk(KERN_DEBUG
"jffs2_scan_dirent_node(): Node at 0x%08x\n", ofs
));
816 /* We don't get here unless the node is still valid, so we don't have to
817 mask in the ACCURATE bit any more. */
818 crc
= crc32(0, rd
, sizeof(*rd
)-8);
820 if (crc
!= je32_to_cpu(rd
->node_crc
)) {
821 printk(KERN_NOTICE
"jffs2_scan_dirent_node(): Node CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
822 ofs
, je32_to_cpu(rd
->node_crc
), crc
);
823 /* We believe totlen because the CRC on the node _header_ was OK, just the node itself failed. */
824 DIRTY_SPACE(PAD(je32_to_cpu(rd
->totlen
)));
828 pseudo_random
+= je32_to_cpu(rd
->version
);
830 fd
= jffs2_alloc_full_dirent(rd
->nsize
+1);
834 memcpy(&fd
->name
, rd
->name
, rd
->nsize
);
835 fd
->name
[rd
->nsize
] = 0;
837 crc
= crc32(0, fd
->name
, rd
->nsize
);
838 if (crc
!= je32_to_cpu(rd
->name_crc
)) {
839 printk(KERN_NOTICE
"jffs2_scan_dirent_node(): Name CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
840 ofs
, je32_to_cpu(rd
->name_crc
), crc
);
841 D1(printk(KERN_NOTICE
"Name for which CRC failed is (now) '%s', ino #%d\n", fd
->name
, je32_to_cpu(rd
->ino
)));
842 jffs2_free_full_dirent(fd
);
843 /* FIXME: Why do we believe totlen? */
844 /* We believe totlen because the CRC on the node _header_ was OK, just the name failed. */
845 DIRTY_SPACE(PAD(je32_to_cpu(rd
->totlen
)));
848 raw
= jffs2_alloc_raw_node_ref();
850 jffs2_free_full_dirent(fd
);
851 printk(KERN_NOTICE
"jffs2_scan_dirent_node(): allocation of node reference failed\n");
854 ic
= jffs2_scan_make_ino_cache(c
, je32_to_cpu(rd
->pino
));
856 jffs2_free_full_dirent(fd
);
857 jffs2_free_raw_node_ref(raw
);
861 raw
->__totlen
= PAD(je32_to_cpu(rd
->totlen
));
862 raw
->flash_offset
= ofs
| REF_PRISTINE
;
863 raw
->next_phys
= NULL
;
864 raw
->next_in_ino
= ic
->nodes
;
866 if (!jeb
->first_node
)
867 jeb
->first_node
= raw
;
869 jeb
->last_node
->next_phys
= raw
;
870 jeb
->last_node
= raw
;
874 fd
->version
= je32_to_cpu(rd
->version
);
875 fd
->ino
= je32_to_cpu(rd
->ino
);
876 fd
->nhash
= full_name_hash(fd
->name
, rd
->nsize
);
878 USED_SPACE(PAD(je32_to_cpu(rd
->totlen
)));
879 jffs2_add_fd_to_list(c
, fd
, &ic
->scan_dents
);
881 if (jffs2_sum_active()) {
882 jffs2_sum_add_dirent_mem(s
, rd
, ofs
- jeb
->offset
);
888 static int count_list(struct list_head
*l
)
891 struct list_head
*tmp
;
893 list_for_each(tmp
, l
) {
899 /* Note: This breaks if list_empty(head). I don't care. You
900 might, if you copy this code and use it elsewhere :) */
901 static void rotate_list(struct list_head
*head
, uint32_t count
)
903 struct list_head
*n
= head
->next
;
912 void jffs2_rotate_lists(struct jffs2_sb_info
*c
)
917 x
= count_list(&c
->clean_list
);
919 rotateby
= pseudo_random
% x
;
920 rotate_list((&c
->clean_list
), rotateby
);
923 x
= count_list(&c
->very_dirty_list
);
925 rotateby
= pseudo_random
% x
;
926 rotate_list((&c
->very_dirty_list
), rotateby
);
929 x
= count_list(&c
->dirty_list
);
931 rotateby
= pseudo_random
% x
;
932 rotate_list((&c
->dirty_list
), rotateby
);
935 x
= count_list(&c
->erasable_list
);
937 rotateby
= pseudo_random
% x
;
938 rotate_list((&c
->erasable_list
), rotateby
);
941 if (c
->nr_erasing_blocks
) {
942 rotateby
= pseudo_random
% c
->nr_erasing_blocks
;
943 rotate_list((&c
->erase_pending_list
), rotateby
);
946 if (c
->nr_free_blocks
) {
947 rotateby
= pseudo_random
% c
->nr_free_blocks
;
948 rotate_list((&c
->free_list
), rotateby
);