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