Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * JFFS2 -- Journalling Flash File System, Version 2. |
| 3 | * |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 4 | * Copyright © 2001-2007 Red Hat, Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Created by David Woodhouse <dwmw2@infradead.org> |
| 7 | * |
| 8 | * For licensing information, see the file 'LICENCE' in this directory. |
| 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #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 Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 20 | #include "summary.h" |
| 21 | #include "debug.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Joakim Tjernlund | 41bdc60 | 2010-10-07 19:09:34 +0200 | [diff] [blame] | 23 | #define DEFAULT_EMPTY_SCAN_SIZE 256 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 25 | #define noisy_printk(noise, fmt, ...) \ |
| 26 | do { \ |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | static uint32_t pseudo_random; |
| 36 | |
| 37 | static int jffs2_scan_eraseblock (struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 38 | unsigned char *buf, uint32_t buf_size, struct jffs2_summary *s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 40 | /* These helper functions _must_ increase ofs and also do the dirty/used space accounting. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | * Returning an error will abort the mount - bad checksums etc. should just mark the space |
| 42 | * as dirty. |
| 43 | */ |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 44 | static int jffs2_scan_inode_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 45 | struct jffs2_raw_inode *ri, uint32_t ofs, struct jffs2_summary *s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | static int jffs2_scan_dirent_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 47 | struct jffs2_raw_dirent *rd, uint32_t ofs, struct jffs2_summary *s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | static inline int min_free(struct jffs2_sb_info *c) |
| 50 | { |
| 51 | uint32_t min = 2 * sizeof(struct jffs2_raw_inode); |
Andrew Victor | 2f82ce1 | 2005-02-09 09:24:26 +0000 | [diff] [blame] | 52 | #ifdef CONFIG_JFFS2_FS_WRITEBUFFER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | if (!jffs2_can_mark_obsolete(c) && min < c->wbuf_pagesize) |
| 54 | return c->wbuf_pagesize; |
| 55 | #endif |
| 56 | return min; |
| 57 | |
| 58 | } |
Andrew Victor | 3be3667 | 2005-02-09 09:09:05 +0000 | [diff] [blame] | 59 | |
| 60 | static 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 Woodhouse | 25090a6 | 2006-05-21 03:57:56 +0100 | [diff] [blame] | 67 | static int file_dirty(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb) |
| 68 | { |
David Woodhouse | a6a8bef | 2006-05-29 00:41:11 +0100 | [diff] [blame] | 69 | 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 Woodhouse | 25090a6 | 2006-05-21 03:57:56 +0100 | [diff] [blame] | 74 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | int 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 Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 95 | struct jffs2_summary *s = NULL; /* summary info collected by the scan process */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | #ifndef __ECOS |
Grant Erickson | 1ddd0d9 | 2011-04-08 08:51:34 -0700 | [diff] [blame] | 97 | size_t pointlen, try_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
Artem Bityutskiy | f026545 | 2012-01-30 15:08:26 +0200 | [diff] [blame] | 99 | 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 Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 103 | jffs2_dbg(1, "MTD point returned len too short: 0x%zx\n", |
| 104 | pointlen); |
Artem Bityutskiy | f026545 | 2012-01-30 15:08:26 +0200 | [diff] [blame] | 105 | mtd_unpoint(c->mtd, 0, pointlen); |
| 106 | flashbuf = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
Artem Bityutskiy | f026545 | 2012-01-30 15:08:26 +0200 | [diff] [blame] | 108 | if (ret && ret != -EOPNOTSUPP) |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 109 | jffs2_dbg(1, "MTD point failed %d\n", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | #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 Erickson | 1ddd0d9 | 2011-04-08 08:51:34 -0700 | [diff] [blame] | 115 | try_size = c->sector_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | else |
Grant Erickson | 1ddd0d9 | 2011-04-08 08:51:34 -0700 | [diff] [blame] | 117 | try_size = PAGE_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 119 | jffs2_dbg(1, "Trying to allocate readbuf of %zu " |
| 120 | "bytes\n", try_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Grant Erickson | 1ddd0d9 | 2011-04-08 08:51:34 -0700 | [diff] [blame] | 122 | flashbuf = mtd_kmalloc_up_to(c->mtd, &try_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | if (!flashbuf) |
| 124 | return -ENOMEM; |
Grant Erickson | 1ddd0d9 | 2011-04-08 08:51:34 -0700 | [diff] [blame] | 125 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 126 | jffs2_dbg(1, "Allocated readbuf of %zu bytes\n", |
| 127 | try_size); |
Grant Erickson | 1ddd0d9 | 2011-04-08 08:51:34 -0700 | [diff] [blame] | 128 | |
| 129 | buf_size = (uint32_t)try_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } |
| 131 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 132 | if (jffs2_sum_active()) { |
Yan Burman | 3d375d9 | 2006-12-04 15:03:01 -0800 | [diff] [blame] | 133 | s = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 134 | if (!s) { |
| 135 | JFFS2_WARNING("Can't allocate memory for summary\n"); |
David Woodhouse | 4839641 | 2009-06-23 01:34:19 +0100 | [diff] [blame] | 136 | ret = -ENOMEM; |
| 137 | goto out; |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 138 | } |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 139 | } |
| 140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | for (i=0; i<c->nr_blocks; i++) { |
| 142 | struct jffs2_eraseblock *jeb = &c->blocks[i]; |
| 143 | |
Artem Bityutskiy | a2166b9 | 2006-12-28 12:01:41 +0200 | [diff] [blame] | 144 | cond_resched(); |
| 145 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 146 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | if (ret < 0) |
| 153 | goto out; |
| 154 | |
Artem B. Bityutskiy | e0c8e42 | 2005-07-24 16:14:17 +0100 | [diff] [blame] | 155 | jffs2_dbg_acct_paranoia_check_nolock(c, jeb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
| 157 | /* Now decide which list to put it on */ |
| 158 | switch(ret) { |
| 159 | case BLK_STATE_ALLFF: |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 160 | /* |
| 161 | * Empty block. Since we can't be sure it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | * 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 Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 180 | jffs2_dbg(1, "Adding all-dirty block at 0x%08x to erase_pending_list\n", |
| 181 | jeb->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | list_add(&jeb->list, &c->erase_pending_list); |
| 183 | c->nr_erasing_blocks++; |
| 184 | } |
| 185 | break; |
| 186 | |
| 187 | case BLK_STATE_CLEAN: |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 188 | /* Full (or almost full) of clean data. Clean list */ |
| 189 | list_add(&jeb->list, &c->clean_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | break; |
| 191 | |
| 192 | case BLK_STATE_PARTDIRTY: |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 193 | /* 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 Woodhouse | 25090a6 | 2006-05-21 03:57:56 +0100 | [diff] [blame] | 200 | ret = file_dirty(c, c->nextblock); |
| 201 | if (ret) |
Christian Engelmayer | a2ab0ce | 2009-06-13 23:06:29 +0200 | [diff] [blame] | 202 | goto out; |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 203 | /* deleting summary information of the old nextblock */ |
| 204 | jffs2_sum_reset_collected(c->summary); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
David Woodhouse | 25090a6 | 2006-05-21 03:57:56 +0100 | [diff] [blame] | 206 | /* update collected summary information for the current nextblock */ |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 207 | jffs2_sum_move_collected(c, s); |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 208 | jffs2_dbg(1, "%s(): new nextblock = 0x%08x\n", |
| 209 | __func__, jeb->offset); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 210 | c->nextblock = jeb; |
| 211 | } else { |
David Woodhouse | 25090a6 | 2006-05-21 03:57:56 +0100 | [diff] [blame] | 212 | ret = file_dirty(c, jeb); |
| 213 | if (ret) |
Christian Engelmayer | a2ab0ce | 2009-06-13 23:06:29 +0200 | [diff] [blame] | 214 | goto out; |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 215 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | break; |
| 217 | |
| 218 | case BLK_STATE_ALLDIRTY: |
| 219 | /* Nothing valid - not even a clean marker. Needs erasing. */ |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 220 | /* For now we just put it on the erasing list. We'll start the erases later */ |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 221 | jffs2_dbg(1, "JFFS2: Erase block at 0x%08x is not formatted. It will be erased\n", |
| 222 | jeb->offset); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 223 | list_add(&jeb->list, &c->erase_pending_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | c->nr_erasing_blocks++; |
| 225 | break; |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | case BLK_STATE_BADBLOCK: |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 228 | jffs2_dbg(1, "JFFS2: Block at 0x%08x is bad\n", |
| 229 | jeb->offset); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 230 | list_add(&jeb->list, &c->bad_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | c->bad_size += c->sector_size; |
| 232 | c->free_size -= c->sector_size; |
| 233 | bad_blocks++; |
| 234 | break; |
| 235 | default: |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 236 | pr_warn("%s(): unknown block state\n", __func__); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 237 | BUG(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | } |
| 239 | } |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | /* 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 Victor | 2f82ce1 | 2005-02-09 09:24:26 +0000 | [diff] [blame] | 248 | #ifdef CONFIG_JFFS2_FS_WRITEBUFFER |
David Woodhouse | e96fb23 | 2006-03-07 21:55:36 -0800 | [diff] [blame] | 249 | if (!jffs2_can_mark_obsolete(c) && c->wbuf_pagesize && c->nextblock && (c->nextblock->free_size % c->wbuf_pagesize)) { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 250 | /* If we're going to start writing into a block which already |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | contains data, and the end of the data isn't page-aligned, |
| 252 | skip a little and align it. */ |
| 253 | |
Artem B. Bityutskiy | daba5cc | 2005-09-30 14:59:17 +0100 | [diff] [blame] | 254 | uint32_t skip = c->nextblock->free_size % c->wbuf_pagesize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 256 | jffs2_dbg(1, "%s(): Skipping %d bytes in nextblock to ensure page alignment\n", |
| 257 | __func__, skip); |
David Woodhouse | 046b8b9 | 2006-05-25 01:50:35 +0100 | [diff] [blame] | 258 | jffs2_prealloc_raw_node_refs(c, c->nextblock, 1); |
David Woodhouse | f560928 | 2006-05-25 01:37:28 +0100 | [diff] [blame] | 259 | jffs2_scan_dirty_space(c, c->nextblock, skip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
| 261 | #endif |
| 262 | if (c->nr_erasing_blocks) { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 263 | if ( !c->used_size && ((c->nr_free_blocks+empty_blocks+bad_blocks)!= c->nr_blocks || bad_blocks == c->nr_blocks) ) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 264 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | ret = -EIO; |
| 268 | goto out; |
| 269 | } |
David Woodhouse | ae3b6ba | 2010-05-19 17:05:14 +0100 | [diff] [blame] | 270 | spin_lock(&c->erase_completion_lock); |
| 271 | jffs2_garbage_collect_trigger(c); |
| 272 | spin_unlock(&c->erase_completion_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } |
| 274 | ret = 0; |
| 275 | out: |
| 276 | if (buf_size) |
| 277 | kfree(flashbuf); |
| 278 | #ifndef __ECOS |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 279 | else |
Artem Bityutskiy | 7219778 | 2011-12-23 17:05:52 +0200 | [diff] [blame] | 280 | mtd_unpoint(c->mtd, 0, c->mtd->size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | #endif |
Jesper Juhl | e8a0e41 | 2011-06-13 22:16:44 +0200 | [diff] [blame] | 282 | kfree(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | return ret; |
| 284 | } |
| 285 | |
Adrian Bunk | c05d52c | 2006-06-22 12:03:35 +0200 | [diff] [blame] | 286 | static int jffs2_fill_scan_buf(struct jffs2_sb_info *c, void *buf, |
| 287 | uint32_t ofs, uint32_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | { |
| 289 | int ret; |
| 290 | size_t retlen; |
| 291 | |
| 292 | ret = jffs2_flash_read(c, ofs, len, &retlen, buf); |
| 293 | if (ret) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 294 | jffs2_dbg(1, "mtd->read(0x%x bytes from 0x%x) returned %d\n", |
| 295 | len, ofs, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | return ret; |
| 297 | } |
| 298 | if (retlen < len) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 299 | jffs2_dbg(1, "Read at 0x%x gave only 0x%zx bytes\n", |
| 300 | ofs, retlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | return -EIO; |
| 302 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | return 0; |
| 304 | } |
| 305 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 306 | int 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 Woodhouse | 99988f7 | 2006-05-24 09:04:17 +0100 | [diff] [blame] | 309 | && (!jeb->first_node || !ref_next(jeb->first_node)) ) |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 310 | 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 Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 325 | #ifdef CONFIG_JFFS2_FS_XATTR |
| 326 | static 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 Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 331 | uint32_t xid, version, totlen, crc; |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 332 | int err; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 333 | |
| 334 | crc = crc32(0, rx, sizeof(struct jffs2_raw_xattr) - 4); |
| 335 | if (crc != je32_to_cpu(rx->node_crc)) { |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 336 | JFFS2_WARNING("node CRC failed at %#08x, read=%#08x, calc=%#08x\n", |
| 337 | ofs, je32_to_cpu(rx->node_crc), crc); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 338 | if ((err = jffs2_scan_dirty_space(c, jeb, je32_to_cpu(rx->totlen)))) |
| 339 | return err; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 340 | return 0; |
| 341 | } |
| 342 | |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 343 | xid = je32_to_cpu(rx->xid); |
| 344 | version = je32_to_cpu(rx->version); |
| 345 | |
KaiGai Kohei | 8a13695 | 2006-06-24 09:14:13 +0900 | [diff] [blame] | 346 | totlen = PAD(sizeof(struct jffs2_raw_xattr) |
| 347 | + rx->name_len + 1 + je16_to_cpu(rx->value_len)); |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 348 | 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 Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 351 | if ((err = jffs2_scan_dirty_space(c, jeb, je32_to_cpu(rx->totlen)))) |
| 352 | return err; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 353 | return 0; |
| 354 | } |
| 355 | |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 356 | xd = jffs2_setup_xattr_datum(c, xid, version); |
| 357 | if (IS_ERR(xd)) |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 358 | return PTR_ERR(xd); |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 359 | |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 360 | 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 Woodhouse | f1f9671 | 2006-05-20 19:45:26 +0100 | [diff] [blame] | 374 | |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 375 | if (jffs2_sum_active()) |
| 376 | jffs2_sum_add_xattr_mem(s, rx, ofs - jeb->offset); |
Masanari Iida | 3e34174 | 2012-01-28 00:17:28 +0900 | [diff] [blame] | 377 | dbg_xattr("scanning xdatum at %#08x (xid=%u, version=%u)\n", |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 378 | ofs, xd->xid, xd->version); |
| 379 | return 0; |
| 380 | } |
| 381 | |
| 382 | static 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 Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 387 | uint32_t crc; |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 388 | int err; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 389 | |
| 390 | crc = crc32(0, rr, sizeof(*rr) - 4); |
| 391 | if (crc != je32_to_cpu(rr->node_crc)) { |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 392 | JFFS2_WARNING("node CRC failed at %#08x, read=%#08x, calc=%#08x\n", |
| 393 | ofs, je32_to_cpu(rr->node_crc), crc); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 394 | if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(rr->totlen))))) |
| 395 | return err; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 396 | return 0; |
| 397 | } |
| 398 | |
| 399 | if (PAD(sizeof(struct jffs2_raw_xref)) != je32_to_cpu(rr->totlen)) { |
David Woodhouse | 89291a9 | 2006-05-25 13:30:24 +0100 | [diff] [blame] | 400 | JFFS2_WARNING("node length mismatch at %#08x, read=%u, calc=%zd\n", |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 401 | ofs, je32_to_cpu(rr->totlen), |
| 402 | PAD(sizeof(struct jffs2_raw_xref))); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 403 | if ((err = jffs2_scan_dirty_space(c, jeb, je32_to_cpu(rr->totlen)))) |
| 404 | return err; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 405 | return 0; |
| 406 | } |
| 407 | |
| 408 | ref = jffs2_alloc_xattr_ref(); |
| 409 | if (!ref) |
| 410 | return -ENOMEM; |
| 411 | |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 412 | /* BEFORE jffs2_build_xattr_subsystem() called, |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 413 | * and AFTER xattr_ref is marked as a dead xref, |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 414 | * 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 Kohei | 8f2b6f4 | 2006-05-13 15:15:07 +0900 | [diff] [blame] | 417 | * are exclusive. In a similar way, ref->next is temporarily |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 418 | * used to chain all xattr_ref object. It's re-chained to |
| 419 | * jffs2_inode_cache in jffs2_build_xattr_subsystem() correctly. |
| 420 | */ |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 421 | ref->ino = je32_to_cpu(rr->ino); |
| 422 | ref->xid = je32_to_cpu(rr->xid); |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 423 | ref->xseqno = je32_to_cpu(rr->xseqno); |
| 424 | if (ref->xseqno > c->highest_xseqno) |
| 425 | c->highest_xseqno = (ref->xseqno & ~XREF_DELETE_MARKER); |
KaiGai Kohei | 8f2b6f4 | 2006-05-13 15:15:07 +0900 | [diff] [blame] | 426 | ref->next = c->xref_temp; |
| 427 | c->xref_temp = ref; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 428 | |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 429 | jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, PAD(je32_to_cpu(rr->totlen)), (void *)ref); |
David Woodhouse | f1f9671 | 2006-05-20 19:45:26 +0100 | [diff] [blame] | 430 | |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 431 | 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 Woodhouse | 9641b78 | 2006-05-20 16:13:34 +0100 | [diff] [blame] | 439 | /* Called with 'buf_size == 0' if buf is in fact a pointer _directly_ into |
| 440 | the flash, XIP-style */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | static int jffs2_scan_eraseblock (struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, |
David Woodhouse | 9641b78 | 2006-05-20 16:13:34 +0100 | [diff] [blame] | 442 | unsigned char *buf, uint32_t buf_size, struct jffs2_summary *s) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | struct jffs2_unknown_node *node; |
| 444 | struct jffs2_unknown_node crcnode; |
Joakim Tjernlund | 41bdc60 | 2010-10-07 19:09:34 +0200 | [diff] [blame] | 445 | uint32_t ofs, prevofs, max_ofs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | uint32_t hdr_crc, buf_ofs, buf_len; |
| 447 | int err; |
| 448 | int noise = 0; |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 449 | |
| 450 | |
Andrew Victor | 2f82ce1 | 2005-02-09 09:24:26 +0000 | [diff] [blame] | 451 | #ifdef CONFIG_JFFS2_FS_WRITEBUFFER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | int cleanmarkerfound = 0; |
| 453 | #endif |
| 454 | |
| 455 | ofs = jeb->offset; |
| 456 | prevofs = jeb->offset - 1; |
| 457 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 458 | jffs2_dbg(1, "%s(): Scanning block at 0x%x\n", __func__, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
Andrew Victor | 2f82ce1 | 2005-02-09 09:24:26 +0000 | [diff] [blame] | 460 | #ifdef CONFIG_JFFS2_FS_WRITEBUFFER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | if (jffs2_cleanmarker_oob(c)) { |
Artem Bityutskiy | a7a6ace1 | 2007-01-31 11:38:53 +0200 | [diff] [blame] | 462 | int ret; |
| 463 | |
Artem Bityutskiy | 7086c19 | 2011-12-23 19:35:30 +0200 | [diff] [blame] | 464 | if (mtd_block_isbad(c->mtd, jeb->offset)) |
Artem Bityutskiy | a7a6ace1 | 2007-01-31 11:38:53 +0200 | [diff] [blame] | 465 | return BLK_STATE_BADBLOCK; |
| 466 | |
| 467 | ret = jffs2_check_nand_cleanmarker(c, jeb); |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 468 | jffs2_dbg(2, "jffs_check_nand_cleanmarker returned %d\n", ret); |
Artem Bityutskiy | a7a6ace1 | 2007-01-31 11:38:53 +0200 | [diff] [blame] | 469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | default: return ret; |
| 477 | } |
| 478 | } |
| 479 | #endif |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 480 | |
| 481 | if (jffs2_sum_active()) { |
David Woodhouse | 9641b78 | 2006-05-20 16:13:34 +0100 | [diff] [blame] | 482 | 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 Woodhouse | 13ba42d | 2006-05-30 08:59:34 +0100 | [diff] [blame] | 488 | sm = (void *)buf + c->sector_size - sizeof(*sm); |
David Woodhouse | 9641b78 | 2006-05-20 16:13:34 +0100 | [diff] [blame] | 489 | 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 Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 492 | } |
David Woodhouse | 9641b78 | 2006-05-20 16:13:34 +0100 | [diff] [blame] | 493 | } 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 Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 530 | } |
| 531 | |
David Woodhouse | 9641b78 | 2006-05-20 16:13:34 +0100 | [diff] [blame] | 532 | if (sumptr) { |
| 533 | err = jffs2_sum_scan_sumnode(c, jeb, sumptr, sumlen, &pseudo_random); |
David Woodhouse | 3560160 | 2006-05-21 01:28:05 +0100 | [diff] [blame] | 534 | |
David Woodhouse | 9641b78 | 2006-05-20 16:13:34 +0100 | [diff] [blame] | 535 | if (buf_size && sumlen > buf_size) |
| 536 | kfree(sumptr); |
David Woodhouse | 3560160 | 2006-05-21 01:28:05 +0100 | [diff] [blame] | 537 | /* 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 Woodhouse | 9641b78 | 2006-05-20 16:13:34 +0100 | [diff] [blame] | 543 | } |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 544 | } |
| 545 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | buf_ofs = jeb->offset; |
| 547 | |
| 548 | if (!buf_size) { |
David Woodhouse | 9641b78 | 2006-05-20 16:13:34 +0100 | [diff] [blame] | 549 | /* This is the XIP case -- we're reading _directly_ from the flash chip */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | buf_len = c->sector_size; |
| 551 | } else { |
Andrew Victor | 3be3667 | 2005-02-09 09:09:05 +0000 | [diff] [blame] | 552 | buf_len = EMPTY_SCAN_SIZE(c->sector_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | err = jffs2_fill_scan_buf(c, buf, buf_ofs, buf_len); |
| 554 | if (err) |
| 555 | return err; |
| 556 | } |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | /* We temporarily use 'ofs' as a pointer into the buffer/jeb */ |
| 559 | ofs = 0; |
Joakim Tjernlund | 41bdc60 | 2010-10-07 19:09:34 +0200 | [diff] [blame] | 560 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | ofs += 4; |
| 564 | |
Joakim Tjernlund | 41bdc60 | 2010-10-07 19:09:34 +0200 | [diff] [blame] | 565 | if (ofs == max_ofs) { |
Andrew Victor | 2f82ce1 | 2005-02-09 09:24:26 +0000 | [diff] [blame] | 566 | #ifdef CONFIG_JFFS2_FS_WRITEBUFFER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | if (jffs2_cleanmarker_oob(c)) { |
| 568 | /* scan oob, take care of cleanmarker */ |
| 569 | int ret = jffs2_check_oob_empty(c, jeb, cleanmarkerfound); |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 570 | jffs2_dbg(2, "jffs2_check_oob_empty returned %d\n", |
| 571 | ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | 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 Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 579 | jffs2_dbg(1, "Block at 0x%08x is empty (erased)\n", |
| 580 | jeb->offset); |
Andrew Victor | 8f15fd5 | 2005-02-09 09:17:45 +0000 | [diff] [blame] | 581 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | } |
| 586 | if (ofs) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 587 | jffs2_dbg(1, "Free space at %08x ends at %08x\n", jeb->offset, |
| 588 | jeb->offset + ofs); |
David Woodhouse | a6a8bef | 2006-05-29 00:41:11 +0100 | [diff] [blame] | 589 | if ((err = jffs2_prealloc_raw_node_refs(c, jeb, 1))) |
| 590 | return err; |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 591 | if ((err = jffs2_scan_dirty_space(c, jeb, ofs))) |
| 592 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | } |
| 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. Bityutskiy | 733802d | 2005-09-22 12:25:00 +0100 | [diff] [blame] | 600 | dbg_summary("no summary found in jeb 0x%08x. Apply original scan.\n",jeb->offset); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 601 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 602 | scan_more: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | while(ofs < jeb->offset + c->sector_size) { |
| 604 | |
Artem B. Bityutskiy | e0c8e42 | 2005-07-24 16:14:17 +0100 | [diff] [blame] | 605 | jffs2_dbg_acct_paranoia_check_nolock(c, jeb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 607 | /* Make sure there are node refs available for use */ |
David Woodhouse | 046b8b9 | 2006-05-25 01:50:35 +0100 | [diff] [blame] | 608 | err = jffs2_prealloc_raw_node_refs(c, jeb, 2); |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 609 | if (err) |
| 610 | return err; |
| 611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | cond_resched(); |
| 613 | |
| 614 | if (ofs & 3) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 615 | pr_warn("Eep. ofs 0x%08x not word-aligned!\n", ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | ofs = PAD(ofs); |
| 617 | continue; |
| 618 | } |
| 619 | if (ofs == prevofs) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 620 | pr_warn("ofs 0x%08x has already been seen. Skipping\n", |
| 621 | ofs); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 622 | if ((err = jffs2_scan_dirty_space(c, jeb, 4))) |
| 623 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | ofs += 4; |
| 625 | continue; |
| 626 | } |
| 627 | prevofs = ofs; |
| 628 | |
| 629 | if (jeb->offset + c->sector_size < ofs + sizeof(*node)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 630 | 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 Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 634 | if ((err = jffs2_scan_dirty_space(c, jeb, (jeb->offset + c->sector_size)-ofs))) |
| 635 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | 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 Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 641 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | 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 Tjernlund | c2aecda | 2007-03-27 13:32:09 +0200 | [diff] [blame] | 654 | uint32_t empty_start, scan_end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | |
| 656 | empty_start = ofs; |
| 657 | ofs += 4; |
Joakim Tjernlund | c2aecda | 2007-03-27 13:32:09 +0200 | [diff] [blame] | 658 | scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(c->sector_size)/8, buf_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 660 | jffs2_dbg(1, "Found empty flash at 0x%08x\n", ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | more_empty: |
| 662 | inbuf_ofs = ofs - buf_ofs; |
Joakim Tjernlund | c2aecda | 2007-03-27 13:32:09 +0200 | [diff] [blame] | 663 | while (inbuf_ofs < scan_end) { |
| 664 | if (unlikely(*(uint32_t *)(&buf[inbuf_ofs]) != 0xffffffff)) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 665 | pr_warn("Empty flash at 0x%08x ends at 0x%08x\n", |
| 666 | empty_start, ofs); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 667 | if ((err = jffs2_scan_dirty_space(c, jeb, ofs-empty_start))) |
| 668 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | goto scan_more; |
| 670 | } |
| 671 | |
| 672 | inbuf_ofs+=4; |
| 673 | ofs += 4; |
| 674 | } |
| 675 | /* Ran off end. */ |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 676 | jffs2_dbg(1, "Empty flash to end of buffer at 0x%08x\n", |
| 677 | ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
| 679 | /* If we're only checking the beginning of a block with a cleanmarker, |
| 680 | bail now */ |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 681 | if (buf_ofs == jeb->offset && jeb->used_size == PAD(c->cleanmarker_size) && |
David Woodhouse | 99988f7 | 2006-05-24 09:04:17 +0100 | [diff] [blame] | 682 | c->cleanmarker_size && !jeb->dirty_size && !ref_next(jeb->first_node)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 683 | jffs2_dbg(1, "%d bytes at start of block seems clean... assuming all clean\n", |
| 684 | EMPTY_SCAN_SIZE(c->sector_size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | return BLK_STATE_CLEANMARKER; |
| 686 | } |
Joakim Tjernlund | c2aecda | 2007-03-27 13:32:09 +0200 | [diff] [blame] | 687 | if (!buf_size && (scan_end != buf_len)) {/* XIP/point case */ |
| 688 | scan_end = buf_len; |
| 689 | goto more_empty; |
| 690 | } |
| 691 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | /* 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 Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 695 | /* No more to read. Break out of main loop without marking |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | this range of empty space as dirty (because it's not) */ |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 697 | jffs2_dbg(1, "Empty flash at %08x runs to end of block. Treating as free_space\n", |
| 698 | empty_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | break; |
| 700 | } |
Joakim Tjernlund | c2aecda | 2007-03-27 13:32:09 +0200 | [diff] [blame] | 701 | /* point never reaches here */ |
| 702 | scan_end = buf_len; |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 703 | jffs2_dbg(1, "Reading another 0x%x at 0x%08x\n", |
| 704 | buf_len, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | 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 Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 713 | pr_warn("Magic bitmask is backwards at offset 0x%08x. Wrong endian filesystem?\n", |
| 714 | ofs); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 715 | if ((err = jffs2_scan_dirty_space(c, jeb, 4))) |
| 716 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | ofs += 4; |
| 718 | continue; |
| 719 | } |
| 720 | if (je16_to_cpu(node->magic) == JFFS2_DIRTY_BITMASK) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 721 | jffs2_dbg(1, "Dirty bitmask at 0x%08x\n", ofs); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 722 | if ((err = jffs2_scan_dirty_space(c, jeb, 4))) |
| 723 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | ofs += 4; |
| 725 | continue; |
| 726 | } |
| 727 | if (je16_to_cpu(node->magic) == JFFS2_OLD_MAGIC_BITMASK) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 728 | 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 Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 730 | if ((err = jffs2_scan_dirty_space(c, jeb, 4))) |
| 731 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | 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 Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 737 | noisy_printk(&noise, "%s(): Magic bitmask 0x%04x not found at 0x%08x: 0x%04x instead\n", |
| 738 | __func__, |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 739 | JFFS2_MAGIC_BITMASK, ofs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | je16_to_cpu(node->magic)); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 741 | if ((err = jffs2_scan_dirty_space(c, jeb, 4))) |
| 742 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | 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 Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 753 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | ofs, je16_to_cpu(node->magic), |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 756 | je16_to_cpu(node->nodetype), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | je32_to_cpu(node->totlen), |
| 758 | je32_to_cpu(node->hdr_crc), |
| 759 | hdr_crc); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 760 | if ((err = jffs2_scan_dirty_space(c, jeb, 4))) |
| 761 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | ofs += 4; |
| 763 | continue; |
| 764 | } |
| 765 | |
Joakim Tjernlund | 0dec4c8 | 2007-03-10 17:08:44 +0100 | [diff] [blame] | 766 | if (ofs + je32_to_cpu(node->totlen) > jeb->offset + c->sector_size) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | /* Eep. Node goes over the end of the erase block. */ |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 768 | 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 Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 771 | if ((err = jffs2_scan_dirty_space(c, jeb, 4))) |
| 772 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | ofs += 4; |
| 774 | continue; |
| 775 | } |
| 776 | |
| 777 | if (!(je16_to_cpu(node->nodetype) & JFFS2_NODE_ACCURATE)) { |
| 778 | /* Wheee. This is an obsoleted node */ |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 779 | jffs2_dbg(2, "Node at 0x%08x is obsolete. Skipping\n", |
| 780 | ofs); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 781 | if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen))))) |
| 782 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | 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 Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 791 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | 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 Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 800 | err = jffs2_scan_inode_node(c, jeb, (void *)node, ofs, s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | if (err) return err; |
| 802 | ofs += PAD(je32_to_cpu(node->totlen)); |
| 803 | break; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 804 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | 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 Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 808 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | 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 Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 817 | err = jffs2_scan_dirent_node(c, jeb, (void *)node, ofs, s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | if (err) return err; |
| 819 | ofs += PAD(je32_to_cpu(node->totlen)); |
| 820 | break; |
| 821 | |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 822 | #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 Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 826 | 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 Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 829 | 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 Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 843 | 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 Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 846 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | case JFFS2_NODETYPE_CLEANMARKER: |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 860 | jffs2_dbg(1, "CLEANMARKER node found at 0x%08x\n", ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | if (je32_to_cpu(node->totlen) != c->cleanmarker_size) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 862 | 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 Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 865 | if ((err = jffs2_scan_dirty_space(c, jeb, PAD(sizeof(struct jffs2_unknown_node))))) |
| 866 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | ofs += PAD(sizeof(struct jffs2_unknown_node)); |
| 868 | } else if (jeb->first_node) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 869 | pr_notice("CLEANMARKER node found at 0x%08x, not first node in block (0x%08x)\n", |
| 870 | ofs, jeb->offset); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 871 | if ((err = jffs2_scan_dirty_space(c, jeb, PAD(sizeof(struct jffs2_unknown_node))))) |
| 872 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | ofs += PAD(sizeof(struct jffs2_unknown_node)); |
| 874 | } else { |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 875 | jffs2_link_node_ref(c, jeb, ofs | REF_NORMAL, c->cleanmarker_size, NULL); |
David Woodhouse | f1f9671 | 2006-05-20 19:45:26 +0100 | [diff] [blame] | 876 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | ofs += PAD(c->cleanmarker_size); |
| 878 | } |
| 879 | break; |
| 880 | |
| 881 | case JFFS2_NODETYPE_PADDING: |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 882 | if (jffs2_sum_active()) |
| 883 | jffs2_sum_add_padding_mem(s, je32_to_cpu(node->totlen)); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 884 | if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen))))) |
| 885 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | 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 Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 892 | pr_notice("Read-only compatible feature node (0x%04x) found at offset 0x%08x\n", |
| 893 | je16_to_cpu(node->nodetype), ofs); |
David Woodhouse | ef53cb0 | 2007-07-10 10:01:22 +0100 | [diff] [blame] | 894 | c->flags |= JFFS2_SB_FLAG_RO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | if (!(jffs2_is_readonly(c))) |
| 896 | return -EROFS; |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 897 | if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen))))) |
| 898 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | ofs += PAD(je32_to_cpu(node->totlen)); |
| 900 | break; |
| 901 | |
| 902 | case JFFS2_FEATURE_INCOMPAT: |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 903 | pr_notice("Incompatible feature node (0x%04x) found at offset 0x%08x\n", |
| 904 | je16_to_cpu(node->nodetype), ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | return -EINVAL; |
| 906 | |
| 907 | case JFFS2_FEATURE_RWCOMPAT_DELETE: |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 908 | jffs2_dbg(1, "Unknown but compatible feature node (0x%04x) found at offset 0x%08x\n", |
| 909 | je16_to_cpu(node->nodetype), ofs); |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 910 | if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(node->totlen))))) |
| 911 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | ofs += PAD(je32_to_cpu(node->totlen)); |
| 913 | break; |
| 914 | |
David Woodhouse | 6171586 | 2006-05-21 00:02:06 +0100 | [diff] [blame] | 915 | case JFFS2_FEATURE_RWCOMPAT_COPY: { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 916 | jffs2_dbg(1, "Unknown but compatible feature node (0x%04x) found at offset 0x%08x\n", |
| 917 | je16_to_cpu(node->nodetype), ofs); |
David Woodhouse | 6171586 | 2006-05-21 00:02:06 +0100 | [diff] [blame] | 918 | |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 919 | jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, PAD(je32_to_cpu(node->totlen)), NULL); |
David Woodhouse | 6171586 | 2006-05-21 00:02:06 +0100 | [diff] [blame] | 920 | |
| 921 | /* We can't summarise nodes we don't grok */ |
| 922 | jffs2_sum_disable_collecting(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | ofs += PAD(je32_to_cpu(node->totlen)); |
| 924 | break; |
David Woodhouse | 6171586 | 2006-05-21 00:02:06 +0100 | [diff] [blame] | 925 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | } |
| 927 | } |
| 928 | } |
| 929 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 930 | if (jffs2_sum_active()) { |
| 931 | if (PAD(s->sum_size + JFFS2_SUMMARY_FRAME_SIZE) > jeb->free_size) { |
Artem B. Bityutskiy | 733802d | 2005-09-22 12:25:00 +0100 | [diff] [blame] | 932 | dbg_summary("There is not enough space for " |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 933 | "summary information, disabling for this jeb!\n"); |
| 934 | jffs2_sum_disable_collecting(s); |
| 935 | } |
| 936 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 938 | 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 Woodhouse | 8b9e9fe | 2006-05-25 01:53:09 +0100 | [diff] [blame] | 941 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | /* 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 Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 950 | return jffs2_scan_classify_jeb(c, jeb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | } |
| 952 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 953 | struct jffs2_inode_cache *jffs2_scan_make_ino_cache(struct jffs2_sb_info *c, uint32_t ino) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | { |
| 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 Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 966 | pr_notice("%s(): allocation of inode cache failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | 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 Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 975 | ic->pino_nlink = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | return ic; |
| 977 | } |
| 978 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 979 | static int jffs2_scan_inode_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 980 | struct jffs2_raw_inode *ri, uint32_t ofs, struct jffs2_summary *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | struct jffs2_inode_cache *ic; |
Thomas Gleixner | 5304300 | 2007-04-05 11:09:01 +0200 | [diff] [blame] | 983 | uint32_t crc, ino = je32_to_cpu(ri->ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 985 | jffs2_dbg(1, "%s(): Node at 0x%08x\n", __func__, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | |
| 987 | /* We do very little here now. Just check the ino# to which we should attribute |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 988 | this node; we can do all the CRC checking etc. later. There's a tradeoff here -- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | 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 Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 992 | but we have to go _back_ to the flash in order to finish the CRC checking, etc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | 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 Gleixner | 5304300 | 2007-04-05 11:09:01 +0200 | [diff] [blame] | 996 | /* 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 Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 999 | 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 Gleixner | 5304300 | 2007-04-05 11:09:01 +0200 | [diff] [blame] | 1001 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | ic = jffs2_get_ino_cache(c, ino); |
| 1010 | if (!ic) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | ic = jffs2_scan_make_ino_cache(c, ino); |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 1012 | if (!ic) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | } |
| 1015 | |
| 1016 | /* Wheee. It worked */ |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 1017 | jffs2_link_node_ref(c, jeb, ofs | REF_UNCHECKED, PAD(je32_to_cpu(ri->totlen)), ic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 1019 | jffs2_dbg(1, "Node is ino #%u, version %d. Range 0x%x-0x%x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | je32_to_cpu(ri->ino), je32_to_cpu(ri->version), |
| 1021 | je32_to_cpu(ri->offset), |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 1022 | je32_to_cpu(ri->offset)+je32_to_cpu(ri->dsize)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | |
| 1024 | pseudo_random += je32_to_cpu(ri->version); |
| 1025 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 1026 | if (jffs2_sum_active()) { |
| 1027 | jffs2_sum_add_inode_mem(s, ri, ofs - jeb->offset); |
| 1028 | } |
| 1029 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | return 0; |
| 1031 | } |
| 1032 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 1033 | static int jffs2_scan_dirent_node(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 1034 | struct jffs2_raw_dirent *rd, uint32_t ofs, struct jffs2_summary *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | struct jffs2_full_dirent *fd; |
| 1037 | struct jffs2_inode_cache *ic; |
David Woodhouse | b534e70 | 2007-10-13 11:35:58 +0100 | [diff] [blame] | 1038 | uint32_t checkedlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | uint32_t crc; |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 1040 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 1042 | jffs2_dbg(1, "%s(): Node at 0x%08x\n", __func__, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | |
| 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 Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 1049 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | /* We believe totlen because the CRC on the node _header_ was OK, just the node itself failed. */ |
David Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 1052 | if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(rd->totlen))))) |
| 1053 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | return 0; |
| 1055 | } |
| 1056 | |
| 1057 | pseudo_random += je32_to_cpu(rd->version); |
| 1058 | |
David Woodhouse | b534e70 | 2007-10-13 11:35:58 +0100 | [diff] [blame] | 1059 | /* Should never happen. Did. (OLPC trac #4184)*/ |
| 1060 | checkedlen = strnlen(rd->name, rd->nsize); |
| 1061 | if (checkedlen < rd->nsize) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 1062 | pr_err("Dirent at %08x has zeroes in name. Truncating to %d chars\n", |
David Woodhouse | b534e70 | 2007-10-13 11:35:58 +0100 | [diff] [blame] | 1063 | ofs, checkedlen); |
| 1064 | } |
| 1065 | fd = jffs2_alloc_full_dirent(checkedlen+1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | if (!fd) { |
| 1067 | return -ENOMEM; |
| 1068 | } |
David Woodhouse | b534e70 | 2007-10-13 11:35:58 +0100 | [diff] [blame] | 1069 | memcpy(&fd->name, rd->name, checkedlen); |
| 1070 | fd->name[checkedlen] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | |
| 1072 | crc = crc32(0, fd->name, rd->nsize); |
| 1073 | if (crc != je32_to_cpu(rd->name_crc)) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 1074 | 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 Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 1076 | jffs2_dbg(1, "Name for which CRC failed is (now) '%s', ino #%d\n", |
| 1077 | fd->name, je32_to_cpu(rd->ino)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | 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 Woodhouse | 6827099 | 2006-05-21 03:46:05 +0100 | [diff] [blame] | 1081 | if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(rd->totlen))))) |
| 1082 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | return 0; |
| 1084 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | ic = jffs2_scan_make_ino_cache(c, je32_to_cpu(rd->pino)); |
| 1086 | if (!ic) { |
| 1087 | jffs2_free_full_dirent(fd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | return -ENOMEM; |
| 1089 | } |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 1090 | |
David Woodhouse | 43dfa07 | 2007-06-29 13:39:57 +0100 | [diff] [blame] | 1091 | fd->raw = jffs2_link_node_ref(c, jeb, ofs | dirent_node_state(rd), |
| 1092 | PAD(je32_to_cpu(rd->totlen)), ic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | fd->next = NULL; |
| 1095 | fd->version = je32_to_cpu(rd->version); |
| 1096 | fd->ino = je32_to_cpu(rd->ino); |
David Woodhouse | b534e70 | 2007-10-13 11:35:58 +0100 | [diff] [blame] | 1097 | fd->nhash = full_name_hash(fd->name, checkedlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | fd->type = rd->type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | jffs2_add_fd_to_list(c, fd, &ic->scan_dents); |
| 1100 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 1101 | if (jffs2_sum_active()) { |
| 1102 | jffs2_sum_add_dirent_mem(s, rd, ofs - jeb->offset); |
| 1103 | } |
| 1104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | return 0; |
| 1106 | } |
| 1107 | |
| 1108 | static 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 :) */ |
| 1121 | static 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 | |
| 1132 | void 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | rotate_list((&c->clean_list), rotateby); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | } |
| 1142 | |
| 1143 | x = count_list(&c->very_dirty_list); |
| 1144 | if (x) { |
| 1145 | rotateby = pseudo_random % x; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | rotate_list((&c->very_dirty_list), rotateby); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | } |
| 1148 | |
| 1149 | x = count_list(&c->dirty_list); |
| 1150 | if (x) { |
| 1151 | rotateby = pseudo_random % x; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | rotate_list((&c->dirty_list), rotateby); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | } |
| 1154 | |
| 1155 | x = count_list(&c->erasable_list); |
| 1156 | if (x) { |
| 1157 | rotateby = pseudo_random % x; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | rotate_list((&c->erasable_list), rotateby); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | } |
| 1160 | |
| 1161 | if (c->nr_erasing_blocks) { |
| 1162 | rotateby = pseudo_random % c->nr_erasing_blocks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | rotate_list((&c->erase_pending_list), rotateby); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | } |
| 1165 | |
| 1166 | if (c->nr_free_blocks) { |
| 1167 | rotateby = pseudo_random % c->nr_free_blocks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | rotate_list((&c->free_list), rotateby); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | } |
| 1170 | } |