blob: 078cede671416a3a3dda5d954dd3d245130a6843 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
David Woodhousec00c3102007-04-25 14:16:47 +01004 * Copyright © 2001-2007 Red Hat, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Created by David Woodhouse <dwmw2@infradead.org>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
David Woodhousec00c3102007-04-25 14:16:47 +010011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
13#include <linux/sched.h>
14#include <linux/slab.h>
15#include <linux/mtd/mtd.h>
16#include <linux/pagemap.h>
17#include <linux/crc32.h>
18#include <linux/compiler.h>
19#include "nodelist.h"
Ferenc Havasie631ddb2005-09-07 09:35:26 +010020#include "summary.h"
21#include "debug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Joakim Tjernlund41bdc602010-10-07 19:09:34 +020023#define DEFAULT_EMPTY_SCAN_SIZE 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Joe Perchesda320f02012-02-15 15:56:44 -080025#define noisy_printk(noise, fmt, ...) \
26do { \
27 if (*(noise)) { \
28 pr_notice(fmt, ##__VA_ARGS__); \
29 (*(noise))--; \
30 if (!(*(noise))) \
31 pr_notice("Further such events for this erase block will not be printed\n"); \
32 } \
33} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35static uint32_t pseudo_random;
36
37static int jffs2_scan_eraseblock (struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
Ferenc Havasie631ddb2005-09-07 09:35:26 +010038 unsigned char *buf, uint32_t buf_size, struct jffs2_summary *s);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000040/* These helper functions _must_ increase ofs and also do the dirty/used space accounting.
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * Returning an error will abort the mount - bad checksums etc. should just mark the space
42 * as dirty.
43 */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000044static int jffs2_scan_inode_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
Ferenc Havasie631ddb2005-09-07 09:35:26 +010045 struct jffs2_raw_inode *ri, uint32_t ofs, struct jffs2_summary *s);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static int jffs2_scan_dirent_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
Ferenc Havasie631ddb2005-09-07 09:35:26 +010047 struct jffs2_raw_dirent *rd, uint32_t ofs, struct jffs2_summary *s);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49static inline int min_free(struct jffs2_sb_info *c)
50{
51 uint32_t min = 2 * sizeof(struct jffs2_raw_inode);
Andrew Victor2f82ce12005-02-09 09:24:26 +000052#ifdef CONFIG_JFFS2_FS_WRITEBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if (!jffs2_can_mark_obsolete(c) && min < c->wbuf_pagesize)
54 return c->wbuf_pagesize;
55#endif
56 return min;
57
58}
Andrew Victor3be36672005-02-09 09:09:05 +000059
60static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size) {
61 if (sector_size < DEFAULT_EMPTY_SCAN_SIZE)
62 return sector_size;
63 else
64 return DEFAULT_EMPTY_SCAN_SIZE;
65}
66
David Woodhouse25090a62006-05-21 03:57:56 +010067static int file_dirty(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb)
68{
David Woodhousea6a8bef2006-05-29 00:41:11 +010069 int ret;
70
71 if ((ret = jffs2_prealloc_raw_node_refs(c, jeb, 1)))
72 return ret;
73 if ((ret = jffs2_scan_dirty_space(c, jeb, jeb->free_size)))
David Woodhouse25090a62006-05-21 03:57:56 +010074 return ret;
75 /* Turned wasted size into dirty, since we apparently
76 think it's recoverable now. */
77 jeb->dirty_size += jeb->wasted_size;
78 c->dirty_size += jeb->wasted_size;
79 c->wasted_size -= jeb->wasted_size;
80 jeb->wasted_size = 0;
81 if (VERYDIRTY(c, jeb->dirty_size)) {
82 list_add(&jeb->list, &c->very_dirty_list);
83 } else {
84 list_add(&jeb->list, &c->dirty_list);
85 }
86 return 0;
87}
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089int jffs2_scan_medium(struct jffs2_sb_info *c)
90{
91 int i, ret;
92 uint32_t empty_blocks = 0, bad_blocks = 0;
93 unsigned char *flashbuf = NULL;
94 uint32_t buf_size = 0;
Ferenc Havasie631ddb2005-09-07 09:35:26 +010095 struct jffs2_summary *s = NULL; /* summary info collected by the scan process */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#ifndef __ECOS
Grant Erickson1ddd0d92011-04-08 08:51:34 -070097 size_t pointlen, try_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Artem Bityutskiyf0265452012-01-30 15:08:26 +020099 ret = mtd_point(c->mtd, 0, c->mtd->size, &pointlen,
100 (void **)&flashbuf, NULL);
101 if (!ret && pointlen < c->mtd->size) {
102 /* Don't muck about if it won't let us point to the whole flash */
Joe Perches9c261b32012-02-15 15:56:43 -0800103 jffs2_dbg(1, "MTD point returned len too short: 0x%zx\n",
104 pointlen);
Artem Bityutskiyf0265452012-01-30 15:08:26 +0200105 mtd_unpoint(c->mtd, 0, pointlen);
106 flashbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
Artem Bityutskiyf0265452012-01-30 15:08:26 +0200108 if (ret && ret != -EOPNOTSUPP)
Joe Perches9c261b32012-02-15 15:56:43 -0800109 jffs2_dbg(1, "MTD point failed %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#endif
111 if (!flashbuf) {
112 /* For NAND it's quicker to read a whole eraseblock at a time,
113 apparently */
114 if (jffs2_cleanmarker_oob(c))
Grant Erickson1ddd0d92011-04-08 08:51:34 -0700115 try_size = c->sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 else
Grant Erickson1ddd0d92011-04-08 08:51:34 -0700117 try_size = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Joe Perches9c261b32012-02-15 15:56:43 -0800119 jffs2_dbg(1, "Trying to allocate readbuf of %zu "
120 "bytes\n", try_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Grant Erickson1ddd0d92011-04-08 08:51:34 -0700122 flashbuf = mtd_kmalloc_up_to(c->mtd, &try_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (!flashbuf)
124 return -ENOMEM;
Grant Erickson1ddd0d92011-04-08 08:51:34 -0700125
Joe Perches9c261b32012-02-15 15:56:43 -0800126 jffs2_dbg(1, "Allocated readbuf of %zu bytes\n",
127 try_size);
Grant Erickson1ddd0d92011-04-08 08:51:34 -0700128
129 buf_size = (uint32_t)try_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100132 if (jffs2_sum_active()) {
Yan Burman3d375d92006-12-04 15:03:01 -0800133 s = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100134 if (!s) {
135 JFFS2_WARNING("Can't allocate memory for summary\n");
David Woodhouse48396412009-06-23 01:34:19 +0100136 ret = -ENOMEM;
137 goto out;
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100138 }
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100139 }
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 for (i=0; i<c->nr_blocks; i++) {
142 struct jffs2_eraseblock *jeb = &c->blocks[i];
143
Artem Bityutskiya2166b92006-12-28 12:01:41 +0200144 cond_resched();
145
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100146 /* reset summary info for next eraseblock scan */
147 jffs2_sum_reset_collected(s);
148
149 ret = jffs2_scan_eraseblock(c, jeb, buf_size?flashbuf:(flashbuf+jeb->offset),
150 buf_size, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 if (ret < 0)
153 goto out;
154
Artem B. Bityutskiye0c8e422005-07-24 16:14:17 +0100155 jffs2_dbg_acct_paranoia_check_nolock(c, jeb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 /* Now decide which list to put it on */
158 switch(ret) {
159 case BLK_STATE_ALLFF:
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000160 /*
161 * Empty block. Since we can't be sure it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * was entirely erased, we just queue it for erase
163 * again. It will be marked as such when the erase
164 * is complete. Meanwhile we still count it as empty
165 * for later checks.
166 */
167 empty_blocks++;
168 list_add(&jeb->list, &c->erase_pending_list);
169 c->nr_erasing_blocks++;
170 break;
171
172 case BLK_STATE_CLEANMARKER:
173 /* Only a CLEANMARKER node is valid */
174 if (!jeb->dirty_size) {
175 /* It's actually free */
176 list_add(&jeb->list, &c->free_list);
177 c->nr_free_blocks++;
178 } else {
179 /* Dirt */
Joe Perches9c261b32012-02-15 15:56:43 -0800180 jffs2_dbg(1, "Adding all-dirty block at 0x%08x to erase_pending_list\n",
181 jeb->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 list_add(&jeb->list, &c->erase_pending_list);
183 c->nr_erasing_blocks++;
184 }
185 break;
186
187 case BLK_STATE_CLEAN:
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100188 /* Full (or almost full) of clean data. Clean list */
189 list_add(&jeb->list, &c->clean_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 break;
191
192 case BLK_STATE_PARTDIRTY:
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100193 /* Some data, but not full. Dirty list. */
194 /* We want to remember the block with most free space
195 and stick it in the 'nextblock' position to start writing to it. */
196 if (jeb->free_size > min_free(c) &&
197 (!c->nextblock || c->nextblock->free_size < jeb->free_size)) {
198 /* Better candidate for the next writes to go to */
199 if (c->nextblock) {
David Woodhouse25090a62006-05-21 03:57:56 +0100200 ret = file_dirty(c, c->nextblock);
201 if (ret)
Christian Engelmayera2ab0ce2009-06-13 23:06:29 +0200202 goto out;
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100203 /* deleting summary information of the old nextblock */
204 jffs2_sum_reset_collected(c->summary);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
David Woodhouse25090a62006-05-21 03:57:56 +0100206 /* update collected summary information for the current nextblock */
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100207 jffs2_sum_move_collected(c, s);
Joe Perches9c261b32012-02-15 15:56:43 -0800208 jffs2_dbg(1, "%s(): new nextblock = 0x%08x\n",
209 __func__, jeb->offset);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100210 c->nextblock = jeb;
211 } else {
David Woodhouse25090a62006-05-21 03:57:56 +0100212 ret = file_dirty(c, jeb);
213 if (ret)
Christian Engelmayera2ab0ce2009-06-13 23:06:29 +0200214 goto out;
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 break;
217
218 case BLK_STATE_ALLDIRTY:
219 /* Nothing valid - not even a clean marker. Needs erasing. */
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100220 /* For now we just put it on the erasing list. We'll start the erases later */
Joe Perches9c261b32012-02-15 15:56:43 -0800221 jffs2_dbg(1, "JFFS2: Erase block at 0x%08x is not formatted. It will be erased\n",
222 jeb->offset);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100223 list_add(&jeb->list, &c->erase_pending_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 c->nr_erasing_blocks++;
225 break;
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 case BLK_STATE_BADBLOCK:
Joe Perches9c261b32012-02-15 15:56:43 -0800228 jffs2_dbg(1, "JFFS2: Block at 0x%08x is bad\n",
229 jeb->offset);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100230 list_add(&jeb->list, &c->bad_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 c->bad_size += c->sector_size;
232 c->free_size -= c->sector_size;
233 bad_blocks++;
234 break;
235 default:
Joe Perchesda320f02012-02-15 15:56:44 -0800236 pr_warn("%s(): unknown block state\n", __func__);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100237 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239 }
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /* Nextblock dirty is always seen as wasted, because we cannot recycle it now */
242 if (c->nextblock && (c->nextblock->dirty_size)) {
243 c->nextblock->wasted_size += c->nextblock->dirty_size;
244 c->wasted_size += c->nextblock->dirty_size;
245 c->dirty_size -= c->nextblock->dirty_size;
246 c->nextblock->dirty_size = 0;
247 }
Andrew Victor2f82ce12005-02-09 09:24:26 +0000248#ifdef CONFIG_JFFS2_FS_WRITEBUFFER
David Woodhousee96fb232006-03-07 21:55:36 -0800249 if (!jffs2_can_mark_obsolete(c) && c->wbuf_pagesize && c->nextblock && (c->nextblock->free_size % c->wbuf_pagesize)) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000250 /* If we're going to start writing into a block which already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 contains data, and the end of the data isn't page-aligned,
252 skip a little and align it. */
253
Artem B. Bityutskiydaba5cc2005-09-30 14:59:17 +0100254 uint32_t skip = c->nextblock->free_size % c->wbuf_pagesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Joe Perches9c261b32012-02-15 15:56:43 -0800256 jffs2_dbg(1, "%s(): Skipping %d bytes in nextblock to ensure page alignment\n",
257 __func__, skip);
David Woodhouse046b8b92006-05-25 01:50:35 +0100258 jffs2_prealloc_raw_node_refs(c, c->nextblock, 1);
David Woodhousef5609282006-05-25 01:37:28 +0100259 jffs2_scan_dirty_space(c, c->nextblock, skip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261#endif
262 if (c->nr_erasing_blocks) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000263 if ( !c->used_size && ((c->nr_free_blocks+empty_blocks+bad_blocks)!= c->nr_blocks || bad_blocks == c->nr_blocks) ) {
Joe Perchesda320f02012-02-15 15:56:44 -0800264 pr_notice("Cowardly refusing to erase blocks on filesystem with no valid JFFS2 nodes\n");
265 pr_notice("empty_blocks %d, bad_blocks %d, c->nr_blocks %d\n",
266 empty_blocks, bad_blocks, c->nr_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 ret = -EIO;
268 goto out;
269 }
David Woodhouseae3b6ba2010-05-19 17:05:14 +0100270 spin_lock(&c->erase_completion_lock);
271 jffs2_garbage_collect_trigger(c);
272 spin_unlock(&c->erase_completion_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274 ret = 0;
275 out:
276 if (buf_size)
277 kfree(flashbuf);
278#ifndef __ECOS
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000279 else
Artem Bityutskiy72197782011-12-23 17:05:52 +0200280 mtd_unpoint(c->mtd, 0, c->mtd->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281#endif
Jesper Juhle8a0e412011-06-13 22:16:44 +0200282 kfree(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return ret;
284}
285
Adrian Bunkc05d52c2006-06-22 12:03:35 +0200286static int jffs2_fill_scan_buf(struct jffs2_sb_info *c, void *buf,
287 uint32_t ofs, uint32_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 int ret;
290 size_t retlen;
291
292 ret = jffs2_flash_read(c, ofs, len, &retlen, buf);
293 if (ret) {
Joe Perches9c261b32012-02-15 15:56:43 -0800294 jffs2_dbg(1, "mtd->read(0x%x bytes from 0x%x) returned %d\n",
295 len, ofs, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return ret;
297 }
298 if (retlen < len) {
Joe Perches9c261b32012-02-15 15:56:43 -0800299 jffs2_dbg(1, "Read at 0x%x gave only 0x%zx bytes\n",
300 ofs, retlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return -EIO;
302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return 0;
304}
305
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100306int jffs2_scan_classify_jeb(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb)
307{
308 if ((jeb->used_size + jeb->unchecked_size) == PAD(c->cleanmarker_size) && !jeb->dirty_size
David Woodhouse99988f72006-05-24 09:04:17 +0100309 && (!jeb->first_node || !ref_next(jeb->first_node)) )
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100310 return BLK_STATE_CLEANMARKER;
311
312 /* move blocks with max 4 byte dirty space to cleanlist */
313 else if (!ISDIRTY(c->sector_size - (jeb->used_size + jeb->unchecked_size))) {
314 c->dirty_size -= jeb->dirty_size;
315 c->wasted_size += jeb->dirty_size;
316 jeb->wasted_size += jeb->dirty_size;
317 jeb->dirty_size = 0;
318 return BLK_STATE_CLEAN;
319 } else if (jeb->used_size || jeb->unchecked_size)
320 return BLK_STATE_PARTDIRTY;
321 else
322 return BLK_STATE_ALLDIRTY;
323}
324
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900325#ifdef CONFIG_JFFS2_FS_XATTR
326static int jffs2_scan_xattr_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
327 struct jffs2_raw_xattr *rx, uint32_t ofs,
328 struct jffs2_summary *s)
329{
330 struct jffs2_xattr_datum *xd;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900331 uint32_t xid, version, totlen, crc;
David Woodhouse68270992006-05-21 03:46:05 +0100332 int err;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900333
334 crc = crc32(0, rx, sizeof(struct jffs2_raw_xattr) - 4);
335 if (crc != je32_to_cpu(rx->node_crc)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900336 JFFS2_WARNING("node CRC failed at %#08x, read=%#08x, calc=%#08x\n",
337 ofs, je32_to_cpu(rx->node_crc), crc);
David Woodhouse68270992006-05-21 03:46:05 +0100338 if ((err = jffs2_scan_dirty_space(c, jeb, je32_to_cpu(rx->totlen))))
339 return err;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900340 return 0;
341 }
342
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900343 xid = je32_to_cpu(rx->xid);
344 version = je32_to_cpu(rx->version);
345
KaiGai Kohei8a136952006-06-24 09:14:13 +0900346 totlen = PAD(sizeof(struct jffs2_raw_xattr)
347 + rx->name_len + 1 + je16_to_cpu(rx->value_len));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900348 if (totlen != je32_to_cpu(rx->totlen)) {
349 JFFS2_WARNING("node length mismatch at %#08x, read=%u, calc=%u\n",
350 ofs, je32_to_cpu(rx->totlen), totlen);
David Woodhouse68270992006-05-21 03:46:05 +0100351 if ((err = jffs2_scan_dirty_space(c, jeb, je32_to_cpu(rx->totlen))))
352 return err;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900353 return 0;
354 }
355
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900356 xd = jffs2_setup_xattr_datum(c, xid, version);
357 if (IS_ERR(xd))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900358 return PTR_ERR(xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900359
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900360 if (xd->version > version) {
361 struct jffs2_raw_node_ref *raw
362 = jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, totlen, NULL);
363 raw->next_in_ino = xd->node->next_in_ino;
364 xd->node->next_in_ino = raw;
365 } else {
366 xd->version = version;
367 xd->xprefix = rx->xprefix;
368 xd->name_len = rx->name_len;
369 xd->value_len = je16_to_cpu(rx->value_len);
370 xd->data_crc = je32_to_cpu(rx->data_crc);
371
372 jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, totlen, (void *)xd);
373 }
David Woodhousef1f96712006-05-20 19:45:26 +0100374
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900375 if (jffs2_sum_active())
376 jffs2_sum_add_xattr_mem(s, rx, ofs - jeb->offset);
Masanari Iida3e341742012-01-28 00:17:28 +0900377 dbg_xattr("scanning xdatum at %#08x (xid=%u, version=%u)\n",
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900378 ofs, xd->xid, xd->version);
379 return 0;
380}
381
382static int jffs2_scan_xref_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
383 struct jffs2_raw_xref *rr, uint32_t ofs,
384 struct jffs2_summary *s)
385{
386 struct jffs2_xattr_ref *ref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900387 uint32_t crc;
David Woodhouse68270992006-05-21 03:46:05 +0100388 int err;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900389
390 crc = crc32(0, rr, sizeof(*rr) - 4);
391 if (crc != je32_to_cpu(rr->node_crc)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900392 JFFS2_WARNING("node CRC failed at %#08x, read=%#08x, calc=%#08x\n",
393 ofs, je32_to_cpu(rr->node_crc), crc);
David Woodhouse68270992006-05-21 03:46:05 +0100394 if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(rr->totlen)))))
395 return err;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900396 return 0;
397 }
398
399 if (PAD(sizeof(struct jffs2_raw_xref)) != je32_to_cpu(rr->totlen)) {
David Woodhouse89291a92006-05-25 13:30:24 +0100400 JFFS2_WARNING("node length mismatch at %#08x, read=%u, calc=%zd\n",
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900401 ofs, je32_to_cpu(rr->totlen),
402 PAD(sizeof(struct jffs2_raw_xref)));
David Woodhouse68270992006-05-21 03:46:05 +0100403 if ((err = jffs2_scan_dirty_space(c, jeb, je32_to_cpu(rr->totlen))))
404 return err;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900405 return 0;
406 }
407
408 ref = jffs2_alloc_xattr_ref();
409 if (!ref)
410 return -ENOMEM;
411
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900412 /* BEFORE jffs2_build_xattr_subsystem() called,
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900413 * and AFTER xattr_ref is marked as a dead xref,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900414 * ref->xid is used to store 32bit xid, xd is not used
415 * ref->ino is used to store 32bit inode-number, ic is not used
416 * Thoes variables are declared as union, thus using those
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900417 * are exclusive. In a similar way, ref->next is temporarily
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900418 * used to chain all xattr_ref object. It's re-chained to
419 * jffs2_inode_cache in jffs2_build_xattr_subsystem() correctly.
420 */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900421 ref->ino = je32_to_cpu(rr->ino);
422 ref->xid = je32_to_cpu(rr->xid);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900423 ref->xseqno = je32_to_cpu(rr->xseqno);
424 if (ref->xseqno > c->highest_xseqno)
425 c->highest_xseqno = (ref->xseqno & ~XREF_DELETE_MARKER);
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900426 ref->next = c->xref_temp;
427 c->xref_temp = ref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900428
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900429 jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, PAD(je32_to_cpu(rr->totlen)), (void *)ref);
David Woodhousef1f96712006-05-20 19:45:26 +0100430
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900431 if (jffs2_sum_active())
432 jffs2_sum_add_xref_mem(s, rr, ofs - jeb->offset);
433 dbg_xattr("scan xref at %#08x (xid=%u, ino=%u)\n",
434 ofs, ref->xid, ref->ino);
435 return 0;
436}
437#endif
438
David Woodhouse9641b782006-05-20 16:13:34 +0100439/* Called with 'buf_size == 0' if buf is in fact a pointer _directly_ into
440 the flash, XIP-style */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441static int jffs2_scan_eraseblock (struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
David Woodhouse9641b782006-05-20 16:13:34 +0100442 unsigned char *buf, uint32_t buf_size, struct jffs2_summary *s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 struct jffs2_unknown_node *node;
444 struct jffs2_unknown_node crcnode;
Joakim Tjernlund41bdc602010-10-07 19:09:34 +0200445 uint32_t ofs, prevofs, max_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 uint32_t hdr_crc, buf_ofs, buf_len;
447 int err;
448 int noise = 0;
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100449
450
Andrew Victor2f82ce12005-02-09 09:24:26 +0000451#ifdef CONFIG_JFFS2_FS_WRITEBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 int cleanmarkerfound = 0;
453#endif
454
455 ofs = jeb->offset;
456 prevofs = jeb->offset - 1;
457
Joe Perches9c261b32012-02-15 15:56:43 -0800458 jffs2_dbg(1, "%s(): Scanning block at 0x%x\n", __func__, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Andrew Victor2f82ce12005-02-09 09:24:26 +0000460#ifdef CONFIG_JFFS2_FS_WRITEBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (jffs2_cleanmarker_oob(c)) {
Artem Bityutskiya7a6ace12007-01-31 11:38:53 +0200462 int ret;
463
Artem Bityutskiy7086c192011-12-23 19:35:30 +0200464 if (mtd_block_isbad(c->mtd, jeb->offset))
Artem Bityutskiya7a6ace12007-01-31 11:38:53 +0200465 return BLK_STATE_BADBLOCK;
466
467 ret = jffs2_check_nand_cleanmarker(c, jeb);
Joe Perches9c261b32012-02-15 15:56:43 -0800468 jffs2_dbg(2, "jffs_check_nand_cleanmarker returned %d\n", ret);
Artem Bityutskiya7a6ace12007-01-31 11:38:53 +0200469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /* Even if it's not found, we still scan to see
471 if the block is empty. We use this information
472 to decide whether to erase it or not. */
473 switch (ret) {
474 case 0: cleanmarkerfound = 1; break;
475 case 1: break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 default: return ret;
477 }
478 }
479#endif
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100480
481 if (jffs2_sum_active()) {
David Woodhouse9641b782006-05-20 16:13:34 +0100482 struct jffs2_sum_marker *sm;
483 void *sumptr = NULL;
484 uint32_t sumlen;
485
486 if (!buf_size) {
487 /* XIP case. Just look, point at the summary if it's there */
David Woodhouse13ba42d2006-05-30 08:59:34 +0100488 sm = (void *)buf + c->sector_size - sizeof(*sm);
David Woodhouse9641b782006-05-20 16:13:34 +0100489 if (je32_to_cpu(sm->magic) == JFFS2_SUM_MAGIC) {
490 sumptr = buf + je32_to_cpu(sm->offset);
491 sumlen = c->sector_size - je32_to_cpu(sm->offset);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100492 }
David Woodhouse9641b782006-05-20 16:13:34 +0100493 } else {
494 /* If NAND flash, read a whole page of it. Else just the end */
495 if (c->wbuf_pagesize)
496 buf_len = c->wbuf_pagesize;
497 else
498 buf_len = sizeof(*sm);
499
500 /* Read as much as we want into the _end_ of the preallocated buffer */
501 err = jffs2_fill_scan_buf(c, buf + buf_size - buf_len,
502 jeb->offset + c->sector_size - buf_len,
503 buf_len);
504 if (err)
505 return err;
506
507 sm = (void *)buf + buf_size - sizeof(*sm);
508 if (je32_to_cpu(sm->magic) == JFFS2_SUM_MAGIC) {
509 sumlen = c->sector_size - je32_to_cpu(sm->offset);
510 sumptr = buf + buf_size - sumlen;
511
512 /* Now, make sure the summary itself is available */
513 if (sumlen > buf_size) {
514 /* Need to kmalloc for this. */
515 sumptr = kmalloc(sumlen, GFP_KERNEL);
516 if (!sumptr)
517 return -ENOMEM;
518 memcpy(sumptr + sumlen - buf_len, buf + buf_size - buf_len, buf_len);
519 }
520 if (buf_len < sumlen) {
521 /* Need to read more so that the entire summary node is present */
522 err = jffs2_fill_scan_buf(c, sumptr,
523 jeb->offset + c->sector_size - sumlen,
524 sumlen - buf_len);
525 if (err)
526 return err;
527 }
528 }
529
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100530 }
531
David Woodhouse9641b782006-05-20 16:13:34 +0100532 if (sumptr) {
533 err = jffs2_sum_scan_sumnode(c, jeb, sumptr, sumlen, &pseudo_random);
David Woodhouse35601602006-05-21 01:28:05 +0100534
David Woodhouse9641b782006-05-20 16:13:34 +0100535 if (buf_size && sumlen > buf_size)
536 kfree(sumptr);
David Woodhouse35601602006-05-21 01:28:05 +0100537 /* If it returns with a real error, bail.
538 If it returns positive, that's a block classification
539 (i.e. BLK_STATE_xxx) so return that too.
540 If it returns zero, fall through to full scan. */
541 if (err)
542 return err;
David Woodhouse9641b782006-05-20 16:13:34 +0100543 }
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100544 }
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 buf_ofs = jeb->offset;
547
548 if (!buf_size) {
David Woodhouse9641b782006-05-20 16:13:34 +0100549 /* This is the XIP case -- we're reading _directly_ from the flash chip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 buf_len = c->sector_size;
551 } else {
Andrew Victor3be36672005-02-09 09:09:05 +0000552 buf_len = EMPTY_SCAN_SIZE(c->sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 err = jffs2_fill_scan_buf(c, buf, buf_ofs, buf_len);
554 if (err)
555 return err;
556 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /* We temporarily use 'ofs' as a pointer into the buffer/jeb */
559 ofs = 0;
Joakim Tjernlund41bdc602010-10-07 19:09:34 +0200560 max_ofs = EMPTY_SCAN_SIZE(c->sector_size);
561 /* Scan only EMPTY_SCAN_SIZE of 0xFF before declaring it's empty */
562 while(ofs < max_ofs && *(uint32_t *)(&buf[ofs]) == 0xFFFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 ofs += 4;
564
Joakim Tjernlund41bdc602010-10-07 19:09:34 +0200565 if (ofs == max_ofs) {
Andrew Victor2f82ce12005-02-09 09:24:26 +0000566#ifdef CONFIG_JFFS2_FS_WRITEBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (jffs2_cleanmarker_oob(c)) {
568 /* scan oob, take care of cleanmarker */
569 int ret = jffs2_check_oob_empty(c, jeb, cleanmarkerfound);
Joe Perches9c261b32012-02-15 15:56:43 -0800570 jffs2_dbg(2, "jffs2_check_oob_empty returned %d\n",
571 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 switch (ret) {
573 case 0: return cleanmarkerfound ? BLK_STATE_CLEANMARKER : BLK_STATE_ALLFF;
574 case 1: return BLK_STATE_ALLDIRTY;
575 default: return ret;
576 }
577 }
578#endif
Joe Perches9c261b32012-02-15 15:56:43 -0800579 jffs2_dbg(1, "Block at 0x%08x is empty (erased)\n",
580 jeb->offset);
Andrew Victor8f15fd52005-02-09 09:17:45 +0000581 if (c->cleanmarker_size == 0)
582 return BLK_STATE_CLEANMARKER; /* don't bother with re-erase */
583 else
584 return BLK_STATE_ALLFF; /* OK to erase if all blocks are like this */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586 if (ofs) {
Joe Perches9c261b32012-02-15 15:56:43 -0800587 jffs2_dbg(1, "Free space at %08x ends at %08x\n", jeb->offset,
588 jeb->offset + ofs);
David Woodhousea6a8bef2006-05-29 00:41:11 +0100589 if ((err = jffs2_prealloc_raw_node_refs(c, jeb, 1)))
590 return err;
David Woodhouse68270992006-05-21 03:46:05 +0100591 if ((err = jffs2_scan_dirty_space(c, jeb, ofs)))
592 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594
595 /* Now ofs is a complete physical flash offset as it always was... */
596 ofs += jeb->offset;
597
598 noise = 10;
599
Artem B. Bityutskiy733802d2005-09-22 12:25:00 +0100600 dbg_summary("no summary found in jeb 0x%08x. Apply original scan.\n",jeb->offset);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100601
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000602scan_more:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 while(ofs < jeb->offset + c->sector_size) {
604
Artem B. Bityutskiye0c8e422005-07-24 16:14:17 +0100605 jffs2_dbg_acct_paranoia_check_nolock(c, jeb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
David Woodhouse2f785402006-05-24 02:04:45 +0100607 /* Make sure there are node refs available for use */
David Woodhouse046b8b92006-05-25 01:50:35 +0100608 err = jffs2_prealloc_raw_node_refs(c, jeb, 2);
David Woodhouse2f785402006-05-24 02:04:45 +0100609 if (err)
610 return err;
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 cond_resched();
613
614 if (ofs & 3) {
Joe Perchesda320f02012-02-15 15:56:44 -0800615 pr_warn("Eep. ofs 0x%08x not word-aligned!\n", ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 ofs = PAD(ofs);
617 continue;
618 }
619 if (ofs == prevofs) {
Joe Perchesda320f02012-02-15 15:56:44 -0800620 pr_warn("ofs 0x%08x has already been seen. Skipping\n",
621 ofs);
David Woodhouse68270992006-05-21 03:46:05 +0100622 if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
623 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 ofs += 4;
625 continue;
626 }
627 prevofs = ofs;
628
629 if (jeb->offset + c->sector_size < ofs + sizeof(*node)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800630 jffs2_dbg(1, "Fewer than %zd bytes left to end of block. (%x+%x<%x+%zx) Not reading\n",
631 sizeof(struct jffs2_unknown_node),
632 jeb->offset, c->sector_size, ofs,
633 sizeof(*node));
David Woodhouse68270992006-05-21 03:46:05 +0100634 if ((err = jffs2_scan_dirty_space(c, jeb, (jeb->offset + c->sector_size)-ofs)))
635 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 break;
637 }
638
639 if (buf_ofs + buf_len < ofs + sizeof(*node)) {
640 buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
Joe Perches9c261b32012-02-15 15:56:43 -0800641 jffs2_dbg(1, "Fewer than %zd bytes (node header) left to end of buf. Reading 0x%x at 0x%08x\n",
642 sizeof(struct jffs2_unknown_node),
643 buf_len, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
645 if (err)
646 return err;
647 buf_ofs = ofs;
648 }
649
650 node = (struct jffs2_unknown_node *)&buf[ofs-buf_ofs];
651
652 if (*(uint32_t *)(&buf[ofs-buf_ofs]) == 0xffffffff) {
653 uint32_t inbuf_ofs;
Joakim Tjernlundc2aecda2007-03-27 13:32:09 +0200654 uint32_t empty_start, scan_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 empty_start = ofs;
657 ofs += 4;
Joakim Tjernlundc2aecda2007-03-27 13:32:09 +0200658 scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(c->sector_size)/8, buf_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Joe Perches9c261b32012-02-15 15:56:43 -0800660 jffs2_dbg(1, "Found empty flash at 0x%08x\n", ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 more_empty:
662 inbuf_ofs = ofs - buf_ofs;
Joakim Tjernlundc2aecda2007-03-27 13:32:09 +0200663 while (inbuf_ofs < scan_end) {
664 if (unlikely(*(uint32_t *)(&buf[inbuf_ofs]) != 0xffffffff)) {
Joe Perchesda320f02012-02-15 15:56:44 -0800665 pr_warn("Empty flash at 0x%08x ends at 0x%08x\n",
666 empty_start, ofs);
David Woodhouse68270992006-05-21 03:46:05 +0100667 if ((err = jffs2_scan_dirty_space(c, jeb, ofs-empty_start)))
668 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 goto scan_more;
670 }
671
672 inbuf_ofs+=4;
673 ofs += 4;
674 }
675 /* Ran off end. */
Joe Perches9c261b32012-02-15 15:56:43 -0800676 jffs2_dbg(1, "Empty flash to end of buffer at 0x%08x\n",
677 ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 /* If we're only checking the beginning of a block with a cleanmarker,
680 bail now */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000681 if (buf_ofs == jeb->offset && jeb->used_size == PAD(c->cleanmarker_size) &&
David Woodhouse99988f72006-05-24 09:04:17 +0100682 c->cleanmarker_size && !jeb->dirty_size && !ref_next(jeb->first_node)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800683 jffs2_dbg(1, "%d bytes at start of block seems clean... assuming all clean\n",
684 EMPTY_SCAN_SIZE(c->sector_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return BLK_STATE_CLEANMARKER;
686 }
Joakim Tjernlundc2aecda2007-03-27 13:32:09 +0200687 if (!buf_size && (scan_end != buf_len)) {/* XIP/point case */
688 scan_end = buf_len;
689 goto more_empty;
690 }
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /* See how much more there is to read in this eraseblock... */
693 buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
694 if (!buf_len) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000695 /* No more to read. Break out of main loop without marking
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 this range of empty space as dirty (because it's not) */
Joe Perches9c261b32012-02-15 15:56:43 -0800697 jffs2_dbg(1, "Empty flash at %08x runs to end of block. Treating as free_space\n",
698 empty_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 break;
700 }
Joakim Tjernlundc2aecda2007-03-27 13:32:09 +0200701 /* point never reaches here */
702 scan_end = buf_len;
Joe Perches9c261b32012-02-15 15:56:43 -0800703 jffs2_dbg(1, "Reading another 0x%x at 0x%08x\n",
704 buf_len, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
706 if (err)
707 return err;
708 buf_ofs = ofs;
709 goto more_empty;
710 }
711
712 if (ofs == jeb->offset && je16_to_cpu(node->magic) == KSAMTIB_CIGAM_2SFFJ) {
Joe Perchesda320f02012-02-15 15:56:44 -0800713 pr_warn("Magic bitmask is backwards at offset 0x%08x. Wrong endian filesystem?\n",
714 ofs);
David Woodhouse68270992006-05-21 03:46:05 +0100715 if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
716 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 ofs += 4;
718 continue;
719 }
720 if (je16_to_cpu(node->magic) == JFFS2_DIRTY_BITMASK) {
Joe Perches9c261b32012-02-15 15:56:43 -0800721 jffs2_dbg(1, "Dirty bitmask at 0x%08x\n", ofs);
David Woodhouse68270992006-05-21 03:46:05 +0100722 if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
723 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 ofs += 4;
725 continue;
726 }
727 if (je16_to_cpu(node->magic) == JFFS2_OLD_MAGIC_BITMASK) {
Joe Perchesda320f02012-02-15 15:56:44 -0800728 pr_warn("Old JFFS2 bitmask found at 0x%08x\n", ofs);
729 pr_warn("You cannot use older JFFS2 filesystems with newer kernels\n");
David Woodhouse68270992006-05-21 03:46:05 +0100730 if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
731 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 ofs += 4;
733 continue;
734 }
735 if (je16_to_cpu(node->magic) != JFFS2_MAGIC_BITMASK) {
736 /* OK. We're out of possibilities. Whinge and move on */
Joe Perchesda320f02012-02-15 15:56:44 -0800737 noisy_printk(&noise, "%s(): Magic bitmask 0x%04x not found at 0x%08x: 0x%04x instead\n",
738 __func__,
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000739 JFFS2_MAGIC_BITMASK, ofs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 je16_to_cpu(node->magic));
David Woodhouse68270992006-05-21 03:46:05 +0100741 if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
742 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 ofs += 4;
744 continue;
745 }
746 /* We seem to have a node of sorts. Check the CRC */
747 crcnode.magic = node->magic;
748 crcnode.nodetype = cpu_to_je16( je16_to_cpu(node->nodetype) | JFFS2_NODE_ACCURATE);
749 crcnode.totlen = node->totlen;
750 hdr_crc = crc32(0, &crcnode, sizeof(crcnode)-4);
751
752 if (hdr_crc != je32_to_cpu(node->hdr_crc)) {
Joe Perchesda320f02012-02-15 15:56:44 -0800753 noisy_printk(&noise, "%s(): Node at 0x%08x {0x%04x, 0x%04x, 0x%08x) has invalid CRC 0x%08x (calculated 0x%08x)\n",
754 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 ofs, je16_to_cpu(node->magic),
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000756 je16_to_cpu(node->nodetype),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 je32_to_cpu(node->totlen),
758 je32_to_cpu(node->hdr_crc),
759 hdr_crc);
David Woodhouse68270992006-05-21 03:46:05 +0100760 if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
761 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 ofs += 4;
763 continue;
764 }
765
Joakim Tjernlund0dec4c82007-03-10 17:08:44 +0100766 if (ofs + je32_to_cpu(node->totlen) > jeb->offset + c->sector_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /* Eep. Node goes over the end of the erase block. */
Joe Perchesda320f02012-02-15 15:56:44 -0800768 pr_warn("Node at 0x%08x with length 0x%08x would run over the end of the erase block\n",
769 ofs, je32_to_cpu(node->totlen));
770 pr_warn("Perhaps the file system was created with the wrong erase size?\n");
David Woodhouse68270992006-05-21 03:46:05 +0100771 if ((err = jffs2_scan_dirty_space(c, jeb, 4)))
772 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 ofs += 4;
774 continue;
775 }
776
777 if (!(je16_to_cpu(node->nodetype) & JFFS2_NODE_ACCURATE)) {
778 /* Wheee. This is an obsoleted node */
Joe Perches9c261b32012-02-15 15:56:43 -0800779 jffs2_dbg(2, "Node at 0x%08x is obsolete. Skipping\n",
780 ofs);
David Woodhouse68270992006-05-21 03:46:05 +0100781 if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen)))))
782 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 ofs += PAD(je32_to_cpu(node->totlen));
784 continue;
785 }
786
787 switch(je16_to_cpu(node->nodetype)) {
788 case JFFS2_NODETYPE_INODE:
789 if (buf_ofs + buf_len < ofs + sizeof(struct jffs2_raw_inode)) {
790 buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
Joe Perches9c261b32012-02-15 15:56:43 -0800791 jffs2_dbg(1, "Fewer than %zd bytes (inode node) left to end of buf. Reading 0x%x at 0x%08x\n",
792 sizeof(struct jffs2_raw_inode),
793 buf_len, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
795 if (err)
796 return err;
797 buf_ofs = ofs;
798 node = (void *)buf;
799 }
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100800 err = jffs2_scan_inode_node(c, jeb, (void *)node, ofs, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (err) return err;
802 ofs += PAD(je32_to_cpu(node->totlen));
803 break;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 case JFFS2_NODETYPE_DIRENT:
806 if (buf_ofs + buf_len < ofs + je32_to_cpu(node->totlen)) {
807 buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
Joe Perches9c261b32012-02-15 15:56:43 -0800808 jffs2_dbg(1, "Fewer than %d bytes (dirent node) left to end of buf. Reading 0x%x at 0x%08x\n",
809 je32_to_cpu(node->totlen), buf_len,
810 ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
812 if (err)
813 return err;
814 buf_ofs = ofs;
815 node = (void *)buf;
816 }
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100817 err = jffs2_scan_dirent_node(c, jeb, (void *)node, ofs, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (err) return err;
819 ofs += PAD(je32_to_cpu(node->totlen));
820 break;
821
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900822#ifdef CONFIG_JFFS2_FS_XATTR
823 case JFFS2_NODETYPE_XATTR:
824 if (buf_ofs + buf_len < ofs + je32_to_cpu(node->totlen)) {
825 buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
Joe Perches9c261b32012-02-15 15:56:43 -0800826 jffs2_dbg(1, "Fewer than %d bytes (xattr node) left to end of buf. Reading 0x%x at 0x%08x\n",
827 je32_to_cpu(node->totlen), buf_len,
828 ofs);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900829 err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
830 if (err)
831 return err;
832 buf_ofs = ofs;
833 node = (void *)buf;
834 }
835 err = jffs2_scan_xattr_node(c, jeb, (void *)node, ofs, s);
836 if (err)
837 return err;
838 ofs += PAD(je32_to_cpu(node->totlen));
839 break;
840 case JFFS2_NODETYPE_XREF:
841 if (buf_ofs + buf_len < ofs + je32_to_cpu(node->totlen)) {
842 buf_len = min_t(uint32_t, buf_size, jeb->offset + c->sector_size - ofs);
Joe Perches9c261b32012-02-15 15:56:43 -0800843 jffs2_dbg(1, "Fewer than %d bytes (xref node) left to end of buf. Reading 0x%x at 0x%08x\n",
844 je32_to_cpu(node->totlen), buf_len,
845 ofs);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900846 err = jffs2_fill_scan_buf(c, buf, ofs, buf_len);
847 if (err)
848 return err;
849 buf_ofs = ofs;
850 node = (void *)buf;
851 }
852 err = jffs2_scan_xref_node(c, jeb, (void *)node, ofs, s);
853 if (err)
854 return err;
855 ofs += PAD(je32_to_cpu(node->totlen));
856 break;
857#endif /* CONFIG_JFFS2_FS_XATTR */
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 case JFFS2_NODETYPE_CLEANMARKER:
Joe Perches9c261b32012-02-15 15:56:43 -0800860 jffs2_dbg(1, "CLEANMARKER node found at 0x%08x\n", ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (je32_to_cpu(node->totlen) != c->cleanmarker_size) {
Joe Perchesda320f02012-02-15 15:56:44 -0800862 pr_notice("CLEANMARKER node found at 0x%08x has totlen 0x%x != normal 0x%x\n",
863 ofs, je32_to_cpu(node->totlen),
864 c->cleanmarker_size);
David Woodhouse68270992006-05-21 03:46:05 +0100865 if ((err = jffs2_scan_dirty_space(c, jeb, PAD(sizeof(struct jffs2_unknown_node)))))
866 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 ofs += PAD(sizeof(struct jffs2_unknown_node));
868 } else if (jeb->first_node) {
Joe Perchesda320f02012-02-15 15:56:44 -0800869 pr_notice("CLEANMARKER node found at 0x%08x, not first node in block (0x%08x)\n",
870 ofs, jeb->offset);
David Woodhouse68270992006-05-21 03:46:05 +0100871 if ((err = jffs2_scan_dirty_space(c, jeb, PAD(sizeof(struct jffs2_unknown_node)))))
872 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 ofs += PAD(sizeof(struct jffs2_unknown_node));
874 } else {
David Woodhouse2f785402006-05-24 02:04:45 +0100875 jffs2_link_node_ref(c, jeb, ofs | REF_NORMAL, c->cleanmarker_size, NULL);
David Woodhousef1f96712006-05-20 19:45:26 +0100876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 ofs += PAD(c->cleanmarker_size);
878 }
879 break;
880
881 case JFFS2_NODETYPE_PADDING:
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100882 if (jffs2_sum_active())
883 jffs2_sum_add_padding_mem(s, je32_to_cpu(node->totlen));
David Woodhouse68270992006-05-21 03:46:05 +0100884 if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen)))))
885 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 ofs += PAD(je32_to_cpu(node->totlen));
887 break;
888
889 default:
890 switch (je16_to_cpu(node->nodetype) & JFFS2_COMPAT_MASK) {
891 case JFFS2_FEATURE_ROCOMPAT:
Joe Perchesda320f02012-02-15 15:56:44 -0800892 pr_notice("Read-only compatible feature node (0x%04x) found at offset 0x%08x\n",
893 je16_to_cpu(node->nodetype), ofs);
David Woodhouseef53cb02007-07-10 10:01:22 +0100894 c->flags |= JFFS2_SB_FLAG_RO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (!(jffs2_is_readonly(c)))
896 return -EROFS;
David Woodhouse68270992006-05-21 03:46:05 +0100897 if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen)))))
898 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 ofs += PAD(je32_to_cpu(node->totlen));
900 break;
901
902 case JFFS2_FEATURE_INCOMPAT:
Joe Perchesda320f02012-02-15 15:56:44 -0800903 pr_notice("Incompatible feature node (0x%04x) found at offset 0x%08x\n",
904 je16_to_cpu(node->nodetype), ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return -EINVAL;
906
907 case JFFS2_FEATURE_RWCOMPAT_DELETE:
Joe Perches9c261b32012-02-15 15:56:43 -0800908 jffs2_dbg(1, "Unknown but compatible feature node (0x%04x) found at offset 0x%08x\n",
909 je16_to_cpu(node->nodetype), ofs);
David Woodhouse68270992006-05-21 03:46:05 +0100910 if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen)))))
911 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 ofs += PAD(je32_to_cpu(node->totlen));
913 break;
914
David Woodhouse61715862006-05-21 00:02:06 +0100915 case JFFS2_FEATURE_RWCOMPAT_COPY: {
Joe Perches9c261b32012-02-15 15:56:43 -0800916 jffs2_dbg(1, "Unknown but compatible feature node (0x%04x) found at offset 0x%08x\n",
917 je16_to_cpu(node->nodetype), ofs);
David Woodhouse61715862006-05-21 00:02:06 +0100918
David Woodhouse2f785402006-05-24 02:04:45 +0100919 jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, PAD(je32_to_cpu(node->totlen)), NULL);
David Woodhouse61715862006-05-21 00:02:06 +0100920
921 /* We can't summarise nodes we don't grok */
922 jffs2_sum_disable_collecting(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 ofs += PAD(je32_to_cpu(node->totlen));
924 break;
David Woodhouse61715862006-05-21 00:02:06 +0100925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927 }
928 }
929
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100930 if (jffs2_sum_active()) {
931 if (PAD(s->sum_size + JFFS2_SUMMARY_FRAME_SIZE) > jeb->free_size) {
Artem B. Bityutskiy733802d2005-09-22 12:25:00 +0100932 dbg_summary("There is not enough space for "
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100933 "summary information, disabling for this jeb!\n");
934 jffs2_sum_disable_collecting(s);
935 }
936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Joe Perches9c261b32012-02-15 15:56:43 -0800938 jffs2_dbg(1, "Block at 0x%08x: free 0x%08x, dirty 0x%08x, unchecked 0x%08x, used 0x%08x, wasted 0x%08x\n",
939 jeb->offset, jeb->free_size, jeb->dirty_size,
940 jeb->unchecked_size, jeb->used_size, jeb->wasted_size);
David Woodhouse8b9e9fe2006-05-25 01:53:09 +0100941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /* mark_node_obsolete can add to wasted !! */
943 if (jeb->wasted_size) {
944 jeb->dirty_size += jeb->wasted_size;
945 c->dirty_size += jeb->wasted_size;
946 c->wasted_size -= jeb->wasted_size;
947 jeb->wasted_size = 0;
948 }
949
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100950 return jffs2_scan_classify_jeb(c, jeb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100953struct jffs2_inode_cache *jffs2_scan_make_ino_cache(struct jffs2_sb_info *c, uint32_t ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 struct jffs2_inode_cache *ic;
956
957 ic = jffs2_get_ino_cache(c, ino);
958 if (ic)
959 return ic;
960
961 if (ino > c->highest_ino)
962 c->highest_ino = ino;
963
964 ic = jffs2_alloc_inode_cache();
965 if (!ic) {
Joe Perchesda320f02012-02-15 15:56:44 -0800966 pr_notice("%s(): allocation of inode cache failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return NULL;
968 }
969 memset(ic, 0, sizeof(*ic));
970
971 ic->ino = ino;
972 ic->nodes = (void *)ic;
973 jffs2_add_ino_cache(c, ic);
974 if (ino == 1)
David Woodhouse27c72b02008-05-01 18:47:17 +0100975 ic->pino_nlink = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return ic;
977}
978
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000979static int jffs2_scan_inode_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100980 struct jffs2_raw_inode *ri, uint32_t ofs, struct jffs2_summary *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 struct jffs2_inode_cache *ic;
Thomas Gleixner53043002007-04-05 11:09:01 +0200983 uint32_t crc, ino = je32_to_cpu(ri->ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Joe Perches9c261b32012-02-15 15:56:43 -0800985 jffs2_dbg(1, "%s(): Node at 0x%08x\n", __func__, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 /* We do very little here now. Just check the ino# to which we should attribute
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000988 this node; we can do all the CRC checking etc. later. There's a tradeoff here --
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 we used to scan the flash once only, reading everything we want from it into
990 memory, then building all our in-core data structures and freeing the extra
991 information. Now we allow the first part of the mount to complete a lot quicker,
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000992 but we have to go _back_ to the flash in order to finish the CRC checking, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 Which means that the _full_ amount of time to get to proper write mode with GC
994 operational may actually be _longer_ than before. Sucks to be me. */
995
Thomas Gleixner53043002007-04-05 11:09:01 +0200996 /* Check the node CRC in any case. */
997 crc = crc32(0, ri, sizeof(*ri)-8);
998 if (crc != je32_to_cpu(ri->node_crc)) {
Joe Perchesda320f02012-02-15 15:56:44 -0800999 pr_notice("%s(): CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
1000 __func__, ofs, je32_to_cpu(ri->node_crc), crc);
Thomas Gleixner53043002007-04-05 11:09:01 +02001001 /*
1002 * We believe totlen because the CRC on the node
1003 * _header_ was OK, just the node itself failed.
1004 */
1005 return jffs2_scan_dirty_space(c, jeb,
1006 PAD(je32_to_cpu(ri->totlen)));
1007 }
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 ic = jffs2_get_ino_cache(c, ino);
1010 if (!ic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 ic = jffs2_scan_make_ino_cache(c, ino);
David Woodhouse2f785402006-05-24 02:04:45 +01001012 if (!ic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015
1016 /* Wheee. It worked */
David Woodhouse2f785402006-05-24 02:04:45 +01001017 jffs2_link_node_ref(c, jeb, ofs | REF_UNCHECKED, PAD(je32_to_cpu(ri->totlen)), ic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Joe Perches9c261b32012-02-15 15:56:43 -08001019 jffs2_dbg(1, "Node is ino #%u, version %d. Range 0x%x-0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 je32_to_cpu(ri->ino), je32_to_cpu(ri->version),
1021 je32_to_cpu(ri->offset),
Joe Perches9c261b32012-02-15 15:56:43 -08001022 je32_to_cpu(ri->offset)+je32_to_cpu(ri->dsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 pseudo_random += je32_to_cpu(ri->version);
1025
Ferenc Havasie631ddb2005-09-07 09:35:26 +01001026 if (jffs2_sum_active()) {
1027 jffs2_sum_add_inode_mem(s, ri, ofs - jeb->offset);
1028 }
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return 0;
1031}
1032
Thomas Gleixner182ec4e2005-11-07 11:16:07 +00001033static int jffs2_scan_dirent_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
Ferenc Havasie631ddb2005-09-07 09:35:26 +01001034 struct jffs2_raw_dirent *rd, uint32_t ofs, struct jffs2_summary *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 struct jffs2_full_dirent *fd;
1037 struct jffs2_inode_cache *ic;
David Woodhouseb534e702007-10-13 11:35:58 +01001038 uint32_t checkedlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 uint32_t crc;
David Woodhouse68270992006-05-21 03:46:05 +01001040 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Joe Perches9c261b32012-02-15 15:56:43 -08001042 jffs2_dbg(1, "%s(): Node at 0x%08x\n", __func__, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 /* We don't get here unless the node is still valid, so we don't have to
1045 mask in the ACCURATE bit any more. */
1046 crc = crc32(0, rd, sizeof(*rd)-8);
1047
1048 if (crc != je32_to_cpu(rd->node_crc)) {
Joe Perchesda320f02012-02-15 15:56:44 -08001049 pr_notice("%s(): Node CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
1050 __func__, ofs, je32_to_cpu(rd->node_crc), crc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 /* We believe totlen because the CRC on the node _header_ was OK, just the node itself failed. */
David Woodhouse68270992006-05-21 03:46:05 +01001052 if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(rd->totlen)))))
1053 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return 0;
1055 }
1056
1057 pseudo_random += je32_to_cpu(rd->version);
1058
David Woodhouseb534e702007-10-13 11:35:58 +01001059 /* Should never happen. Did. (OLPC trac #4184)*/
1060 checkedlen = strnlen(rd->name, rd->nsize);
1061 if (checkedlen < rd->nsize) {
Joe Perchesda320f02012-02-15 15:56:44 -08001062 pr_err("Dirent at %08x has zeroes in name. Truncating to %d chars\n",
David Woodhouseb534e702007-10-13 11:35:58 +01001063 ofs, checkedlen);
1064 }
1065 fd = jffs2_alloc_full_dirent(checkedlen+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (!fd) {
1067 return -ENOMEM;
1068 }
David Woodhouseb534e702007-10-13 11:35:58 +01001069 memcpy(&fd->name, rd->name, checkedlen);
1070 fd->name[checkedlen] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 crc = crc32(0, fd->name, rd->nsize);
1073 if (crc != je32_to_cpu(rd->name_crc)) {
Joe Perchesda320f02012-02-15 15:56:44 -08001074 pr_notice("%s(): Name CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
1075 __func__, ofs, je32_to_cpu(rd->name_crc), crc);
Joe Perches9c261b32012-02-15 15:56:43 -08001076 jffs2_dbg(1, "Name for which CRC failed is (now) '%s', ino #%d\n",
1077 fd->name, je32_to_cpu(rd->ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 jffs2_free_full_dirent(fd);
1079 /* FIXME: Why do we believe totlen? */
1080 /* We believe totlen because the CRC on the node _header_ was OK, just the name failed. */
David Woodhouse68270992006-05-21 03:46:05 +01001081 if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(rd->totlen)))))
1082 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return 0;
1084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 ic = jffs2_scan_make_ino_cache(c, je32_to_cpu(rd->pino));
1086 if (!ic) {
1087 jffs2_free_full_dirent(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return -ENOMEM;
1089 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +00001090
David Woodhouse43dfa072007-06-29 13:39:57 +01001091 fd->raw = jffs2_link_node_ref(c, jeb, ofs | dirent_node_state(rd),
1092 PAD(je32_to_cpu(rd->totlen)), ic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 fd->next = NULL;
1095 fd->version = je32_to_cpu(rd->version);
1096 fd->ino = je32_to_cpu(rd->ino);
David Woodhouseb534e702007-10-13 11:35:58 +01001097 fd->nhash = full_name_hash(fd->name, checkedlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 fd->type = rd->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 jffs2_add_fd_to_list(c, fd, &ic->scan_dents);
1100
Ferenc Havasie631ddb2005-09-07 09:35:26 +01001101 if (jffs2_sum_active()) {
1102 jffs2_sum_add_dirent_mem(s, rd, ofs - jeb->offset);
1103 }
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return 0;
1106}
1107
1108static int count_list(struct list_head *l)
1109{
1110 uint32_t count = 0;
1111 struct list_head *tmp;
1112
1113 list_for_each(tmp, l) {
1114 count++;
1115 }
1116 return count;
1117}
1118
1119/* Note: This breaks if list_empty(head). I don't care. You
1120 might, if you copy this code and use it elsewhere :) */
1121static void rotate_list(struct list_head *head, uint32_t count)
1122{
1123 struct list_head *n = head->next;
1124
1125 list_del(head);
1126 while(count--) {
1127 n = n->next;
1128 }
1129 list_add(head, n);
1130}
1131
1132void jffs2_rotate_lists(struct jffs2_sb_info *c)
1133{
1134 uint32_t x;
1135 uint32_t rotateby;
1136
1137 x = count_list(&c->clean_list);
1138 if (x) {
1139 rotateby = pseudo_random % x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 rotate_list((&c->clean_list), rotateby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
1142
1143 x = count_list(&c->very_dirty_list);
1144 if (x) {
1145 rotateby = pseudo_random % x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 rotate_list((&c->very_dirty_list), rotateby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148
1149 x = count_list(&c->dirty_list);
1150 if (x) {
1151 rotateby = pseudo_random % x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 rotate_list((&c->dirty_list), rotateby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
1154
1155 x = count_list(&c->erasable_list);
1156 if (x) {
1157 rotateby = pseudo_random % x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 rotate_list((&c->erasable_list), rotateby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160
1161 if (c->nr_erasing_blocks) {
1162 rotateby = pseudo_random % c->nr_erasing_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 rotate_list((&c->erase_pending_list), rotateby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165
1166 if (c->nr_free_blocks) {
1167 rotateby = pseudo_random % c->nr_free_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 rotate_list((&c->free_list), rotateby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170}