Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) International Business Machines Corp., 2006 |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 12 | * the GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Artem Bityutskiy (Битюцкий Артём) |
| 19 | */ |
| 20 | |
| 21 | /* |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 22 | * UBI attaching sub-system. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 23 | * |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 24 | * This sub-system is responsible for attaching MTD devices and it also |
| 25 | * implements flash media scanning. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 26 | * |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 27 | * The attaching information is represented by a &struct ubi_attach_info' |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 28 | * object. Information about volumes is represented by &struct ubi_ainf_volume |
| 29 | * objects which are kept in volume RB-tree with root at the @volumes field. |
| 30 | * The RB-tree is indexed by the volume ID. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 31 | * |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 32 | * Logical eraseblocks are represented by &struct ubi_ainf_peb objects. These |
| 33 | * objects are kept in per-volume RB-trees with the root at the corresponding |
| 34 | * &struct ubi_ainf_volume object. To put it differently, we keep an RB-tree of |
| 35 | * per-volume objects and each of these objects is the root of RB-tree of |
| 36 | * per-LEB objects. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 37 | * |
| 38 | * Corrupted physical eraseblocks are put to the @corr list, free physical |
| 39 | * eraseblocks are put to the @free list and the physical eraseblock to be |
| 40 | * erased are put to the @erase list. |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 41 | * |
Artem Bityutskiy | fef2deb | 2010-10-29 08:34:50 +0300 | [diff] [blame] | 42 | * About corruptions |
| 43 | * ~~~~~~~~~~~~~~~~~ |
| 44 | * |
| 45 | * UBI protects EC and VID headers with CRC-32 checksums, so it can detect |
| 46 | * whether the headers are corrupted or not. Sometimes UBI also protects the |
| 47 | * data with CRC-32, e.g., when it executes the atomic LEB change operation, or |
| 48 | * when it moves the contents of a PEB for wear-leveling purposes. |
| 49 | * |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 50 | * UBI tries to distinguish between 2 types of corruptions. |
Artem Bityutskiy | fef2deb | 2010-10-29 08:34:50 +0300 | [diff] [blame] | 51 | * |
| 52 | * 1. Corruptions caused by power cuts. These are expected corruptions and UBI |
| 53 | * tries to handle them gracefully, without printing too many warnings and |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 54 | * error messages. The idea is that we do not lose important data in these |
| 55 | * cases - we may lose only the data which were being written to the media just |
| 56 | * before the power cut happened, and the upper layers (e.g., UBIFS) are |
| 57 | * supposed to handle such data losses (e.g., by using the FS journal). |
Artem Bityutskiy | fef2deb | 2010-10-29 08:34:50 +0300 | [diff] [blame] | 58 | * |
| 59 | * When UBI detects a corruption (CRC-32 mismatch) in a PEB, and it looks like |
| 60 | * the reason is a power cut, UBI puts this PEB to the @erase list, and all |
| 61 | * PEBs in the @erase list are scheduled for erasure later. |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 62 | * |
| 63 | * 2. Unexpected corruptions which are not caused by power cuts. During |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 64 | * attaching, such PEBs are put to the @corr list and UBI preserves them. |
Artem Bityutskiy | fef2deb | 2010-10-29 08:34:50 +0300 | [diff] [blame] | 65 | * Obviously, this lessens the amount of available PEBs, and if at some point |
| 66 | * UBI runs out of free PEBs, it switches to R/O mode. UBI also loudly informs |
| 67 | * about such PEBs every time the MTD device is attached. |
Artem Bityutskiy | 45aafd3 | 2010-10-20 11:54:58 +0300 | [diff] [blame] | 68 | * |
| 69 | * However, it is difficult to reliably distinguish between these types of |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 70 | * corruptions and UBI's strategy is as follows (in case of attaching by |
| 71 | * scanning). UBI assumes corruption type 2 if the VID header is corrupted and |
| 72 | * the data area does not contain all 0xFFs, and there were no bit-flips or |
| 73 | * integrity errors (e.g., ECC errors in case of NAND) while reading the data |
| 74 | * area. Otherwise UBI assumes corruption type 1. So the decision criteria |
| 75 | * are as follows. |
| 76 | * o If the data area contains only 0xFFs, there are no data, and it is safe |
Artem Bityutskiy | fef2deb | 2010-10-29 08:34:50 +0300 | [diff] [blame] | 77 | * to just erase this PEB - this is corruption type 1. |
| 78 | * o If the data area has bit-flips or data integrity errors (ECC errors on |
Artem Bityutskiy | 45aafd3 | 2010-10-20 11:54:58 +0300 | [diff] [blame] | 79 | * NAND), it is probably a PEB which was being erased when power cut |
Artem Bityutskiy | fef2deb | 2010-10-29 08:34:50 +0300 | [diff] [blame] | 80 | * happened, so this is corruption type 1. However, this is just a guess, |
| 81 | * which might be wrong. |
Brian Norris | 55393ba | 2012-08-31 14:43:41 -0700 | [diff] [blame] | 82 | * o Otherwise this is corruption type 2. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 83 | */ |
| 84 | |
| 85 | #include <linux/err.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 86 | #include <linux/slab.h> |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 87 | #include <linux/crc32.h> |
Artem Bityutskiy | 3013ee3 | 2009-01-16 19:08:43 +0200 | [diff] [blame] | 88 | #include <linux/math64.h> |
Matthieu CASTET | 095751a | 2010-06-03 16:14:27 +0200 | [diff] [blame] | 89 | #include <linux/random.h> |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 90 | #include "ubi.h" |
| 91 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 92 | static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 93 | |
Boris Brezillon | de4c455 | 2016-09-16 16:59:14 +0200 | [diff] [blame] | 94 | #define AV_FIND BIT(0) |
| 95 | #define AV_ADD BIT(1) |
| 96 | #define AV_FIND_OR_ADD (AV_FIND | AV_ADD) |
| 97 | |
| 98 | /** |
| 99 | * find_or_add_av - internal function to find a volume, add a volume or do |
| 100 | * both (find and add if missing). |
| 101 | * @ai: attaching information |
| 102 | * @vol_id: the requested volume ID |
| 103 | * @flags: a combination of the %AV_FIND and %AV_ADD flags describing the |
| 104 | * expected operation. If only %AV_ADD is set, -EEXIST is returned |
| 105 | * if the volume already exists. If only %AV_FIND is set, NULL is |
| 106 | * returned if the volume does not exist. And if both flags are |
| 107 | * set, the helper first tries to find an existing volume, and if |
| 108 | * it does not exist it creates a new one. |
| 109 | * @created: in value used to inform the caller whether it"s a newly created |
| 110 | * volume or not. |
| 111 | * |
| 112 | * This function returns a pointer to a volume description or an ERR_PTR if |
| 113 | * the operation failed. It can also return NULL if only %AV_FIND is set and |
| 114 | * the volume does not exist. |
| 115 | */ |
| 116 | static struct ubi_ainf_volume *find_or_add_av(struct ubi_attach_info *ai, |
| 117 | int vol_id, unsigned int flags, |
| 118 | bool *created) |
| 119 | { |
| 120 | struct ubi_ainf_volume *av; |
| 121 | struct rb_node **p = &ai->volumes.rb_node, *parent = NULL; |
| 122 | |
| 123 | /* Walk the volume RB-tree to look if this volume is already present */ |
| 124 | while (*p) { |
| 125 | parent = *p; |
| 126 | av = rb_entry(parent, struct ubi_ainf_volume, rb); |
| 127 | |
| 128 | if (vol_id == av->vol_id) { |
| 129 | *created = false; |
| 130 | |
| 131 | if (!(flags & AV_FIND)) |
| 132 | return ERR_PTR(-EEXIST); |
| 133 | |
| 134 | return av; |
| 135 | } |
| 136 | |
| 137 | if (vol_id > av->vol_id) |
| 138 | p = &(*p)->rb_left; |
| 139 | else |
| 140 | p = &(*p)->rb_right; |
| 141 | } |
| 142 | |
| 143 | if (!(flags & AV_ADD)) |
| 144 | return NULL; |
| 145 | |
| 146 | /* The volume is absent - add it */ |
| 147 | av = kzalloc(sizeof(*av), GFP_KERNEL); |
| 148 | if (!av) |
| 149 | return ERR_PTR(-ENOMEM); |
| 150 | |
| 151 | av->vol_id = vol_id; |
| 152 | |
| 153 | if (vol_id > ai->highest_vol_id) |
| 154 | ai->highest_vol_id = vol_id; |
| 155 | |
| 156 | rb_link_node(&av->rb, parent, p); |
| 157 | rb_insert_color(&av->rb, &ai->volumes); |
| 158 | ai->vols_found += 1; |
| 159 | *created = true; |
| 160 | dbg_bld("added volume %d", vol_id); |
| 161 | return av; |
| 162 | } |
| 163 | |
| 164 | /** |
| 165 | * ubi_find_or_add_av - search for a volume in the attaching information and |
| 166 | * add one if it does not exist. |
| 167 | * @ai: attaching information |
| 168 | * @vol_id: the requested volume ID |
| 169 | * @created: whether the volume has been created or not |
| 170 | * |
| 171 | * This function returns a pointer to the new volume description or an |
| 172 | * ERR_PTR if the operation failed. |
| 173 | */ |
| 174 | static struct ubi_ainf_volume *ubi_find_or_add_av(struct ubi_attach_info *ai, |
| 175 | int vol_id, bool *created) |
| 176 | { |
| 177 | return find_or_add_av(ai, vol_id, AV_FIND_OR_ADD, created); |
| 178 | } |
| 179 | |
Artem Bityutskiy | 941dfb0 | 2007-05-05 16:33:13 +0300 | [diff] [blame] | 180 | /** |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 181 | * ubi_alloc_aeb - allocate an aeb element |
| 182 | * @ai: attaching information |
| 183 | * @pnum: physical eraseblock number |
| 184 | * @ec: erase counter of the physical eraseblock |
| 185 | * |
| 186 | * Allocate an aeb object and initialize the pnum and ec information. |
| 187 | * vol_id and lnum are set to UBI_UNKNOWN, and the other fields are |
| 188 | * initialized to zero. |
| 189 | * Note that the element is not added in any list or RB tree. |
| 190 | */ |
| 191 | struct ubi_ainf_peb *ubi_alloc_aeb(struct ubi_attach_info *ai, int pnum, |
| 192 | int ec) |
| 193 | { |
| 194 | struct ubi_ainf_peb *aeb; |
| 195 | |
| 196 | aeb = kmem_cache_zalloc(ai->aeb_slab_cache, GFP_KERNEL); |
| 197 | if (!aeb) |
| 198 | return NULL; |
| 199 | |
| 200 | aeb->pnum = pnum; |
| 201 | aeb->ec = ec; |
| 202 | aeb->vol_id = UBI_UNKNOWN; |
| 203 | aeb->lnum = UBI_UNKNOWN; |
| 204 | |
| 205 | return aeb; |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * ubi_free_aeb - free an aeb element |
| 210 | * @ai: attaching information |
| 211 | * @aeb: the element to free |
| 212 | * |
| 213 | * Free an aeb object. The caller must have removed the element from any list |
| 214 | * or RB tree. |
| 215 | */ |
| 216 | void ubi_free_aeb(struct ubi_attach_info *ai, struct ubi_ainf_peb *aeb) |
| 217 | { |
| 218 | kmem_cache_free(ai->aeb_slab_cache, aeb); |
| 219 | } |
| 220 | |
| 221 | /** |
Artem Bityutskiy | 78d87c9 | 2007-05-05 11:24:02 +0300 | [diff] [blame] | 222 | * add_to_list - add physical eraseblock to a list. |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 223 | * @ai: attaching information |
Artem Bityutskiy | 78d87c9 | 2007-05-05 11:24:02 +0300 | [diff] [blame] | 224 | * @pnum: physical eraseblock number to add |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 225 | * @vol_id: the last used volume id for the PEB |
| 226 | * @lnum: the last used LEB number for the PEB |
Artem Bityutskiy | 78d87c9 | 2007-05-05 11:24:02 +0300 | [diff] [blame] | 227 | * @ec: erase counter of the physical eraseblock |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 228 | * @to_head: if not zero, add to the head of the list |
Artem Bityutskiy | 78d87c9 | 2007-05-05 11:24:02 +0300 | [diff] [blame] | 229 | * @list: the list to add to |
| 230 | * |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 231 | * This function allocates a 'struct ubi_ainf_peb' object for physical |
| 232 | * eraseblock @pnum and adds it to the "free", "erase", or "alien" lists. |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 233 | * It stores the @lnum and @vol_id alongside, which can both be |
| 234 | * %UBI_UNKNOWN if they are not available, not readable, or not assigned. |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 235 | * If @to_head is not zero, PEB will be added to the head of the list, which |
| 236 | * basically means it will be processed first later. E.g., we add corrupted |
| 237 | * PEBs (corrupted due to power cuts) to the head of the erase list to make |
| 238 | * sure we erase them first and get rid of corruptions ASAP. This function |
| 239 | * returns zero in case of success and a negative error code in case of |
Artem Bityutskiy | 3fb3412 | 2010-09-03 15:36:12 +0300 | [diff] [blame] | 240 | * failure. |
Artem Bityutskiy | 78d87c9 | 2007-05-05 11:24:02 +0300 | [diff] [blame] | 241 | */ |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 242 | static int add_to_list(struct ubi_attach_info *ai, int pnum, int vol_id, |
| 243 | int lnum, int ec, int to_head, struct list_head *list) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 244 | { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 245 | struct ubi_ainf_peb *aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 246 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 247 | if (list == &ai->free) { |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 248 | dbg_bld("add to free: PEB %d, EC %d", pnum, ec); |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 249 | } else if (list == &ai->erase) { |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 250 | dbg_bld("add to erase: PEB %d, EC %d", pnum, ec); |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 251 | } else if (list == &ai->alien) { |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 252 | dbg_bld("add to alien: PEB %d, EC %d", pnum, ec); |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 253 | ai->alien_peb_count += 1; |
Artem Bityutskiy | 33789fb | 2010-04-30 12:31:26 +0300 | [diff] [blame] | 254 | } else |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 255 | BUG(); |
| 256 | |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 257 | aeb = ubi_alloc_aeb(ai, pnum, ec); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 258 | if (!aeb) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 259 | return -ENOMEM; |
| 260 | |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 261 | aeb->vol_id = vol_id; |
| 262 | aeb->lnum = lnum; |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 263 | if (to_head) |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 264 | list_add(&aeb->u.list, list); |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 265 | else |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 266 | list_add_tail(&aeb->u.list, list); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 267 | return 0; |
| 268 | } |
| 269 | |
| 270 | /** |
Artem Bityutskiy | 3fb3412 | 2010-09-03 15:36:12 +0300 | [diff] [blame] | 271 | * add_corrupted - add a corrupted physical eraseblock. |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 272 | * @ai: attaching information |
Artem Bityutskiy | 3fb3412 | 2010-09-03 15:36:12 +0300 | [diff] [blame] | 273 | * @pnum: physical eraseblock number to add |
| 274 | * @ec: erase counter of the physical eraseblock |
| 275 | * |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 276 | * This function allocates a 'struct ubi_ainf_peb' object for a corrupted |
| 277 | * physical eraseblock @pnum and adds it to the 'corr' list. The corruption |
| 278 | * was presumably not caused by a power cut. Returns zero in case of success |
| 279 | * and a negative error code in case of failure. |
Artem Bityutskiy | 3fb3412 | 2010-09-03 15:36:12 +0300 | [diff] [blame] | 280 | */ |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 281 | static int add_corrupted(struct ubi_attach_info *ai, int pnum, int ec) |
Artem Bityutskiy | 3fb3412 | 2010-09-03 15:36:12 +0300 | [diff] [blame] | 282 | { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 283 | struct ubi_ainf_peb *aeb; |
Artem Bityutskiy | 3fb3412 | 2010-09-03 15:36:12 +0300 | [diff] [blame] | 284 | |
| 285 | dbg_bld("add to corrupted: PEB %d, EC %d", pnum, ec); |
| 286 | |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 287 | aeb = ubi_alloc_aeb(ai, pnum, ec); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 288 | if (!aeb) |
Artem Bityutskiy | 3fb3412 | 2010-09-03 15:36:12 +0300 | [diff] [blame] | 289 | return -ENOMEM; |
| 290 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 291 | ai->corr_peb_count += 1; |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 292 | list_add(&aeb->u.list, &ai->corr); |
Artem Bityutskiy | 3fb3412 | 2010-09-03 15:36:12 +0300 | [diff] [blame] | 293 | return 0; |
| 294 | } |
| 295 | |
| 296 | /** |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 297 | * add_fastmap - add a Fastmap related physical eraseblock. |
| 298 | * @ai: attaching information |
| 299 | * @pnum: physical eraseblock number the VID header came from |
| 300 | * @vid_hdr: the volume identifier header |
| 301 | * @ec: erase counter of the physical eraseblock |
| 302 | * |
| 303 | * This function allocates a 'struct ubi_ainf_peb' object for a Fastamp |
| 304 | * physical eraseblock @pnum and adds it to the 'fastmap' list. |
| 305 | * Such blocks can be Fastmap super and data blocks from both the most |
| 306 | * recent Fastmap we're attaching from or from old Fastmaps which will |
| 307 | * be erased. |
| 308 | */ |
| 309 | static int add_fastmap(struct ubi_attach_info *ai, int pnum, |
| 310 | struct ubi_vid_hdr *vid_hdr, int ec) |
| 311 | { |
| 312 | struct ubi_ainf_peb *aeb; |
| 313 | |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 314 | aeb = ubi_alloc_aeb(ai, pnum, ec); |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 315 | if (!aeb) |
| 316 | return -ENOMEM; |
| 317 | |
Boris Brezillon | 3f84e45 | 2016-09-16 16:59:10 +0200 | [diff] [blame] | 318 | aeb->vol_id = be32_to_cpu(vid_hdr->vol_id); |
| 319 | aeb->sqnum = be64_to_cpu(vid_hdr->sqnum); |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 320 | list_add(&aeb->u.list, &ai->fastmap); |
| 321 | |
| 322 | dbg_bld("add to fastmap list: PEB %d, vol_id %d, sqnum: %llu", pnum, |
| 323 | aeb->vol_id, aeb->sqnum); |
| 324 | |
| 325 | return 0; |
| 326 | } |
| 327 | |
| 328 | /** |
Artem Bityutskiy | ebaaf1a | 2008-07-18 13:34:32 +0300 | [diff] [blame] | 329 | * validate_vid_hdr - check volume identifier header. |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 330 | * @ubi: UBI device description object |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 331 | * @vid_hdr: the volume identifier header to check |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 332 | * @av: information about the volume this logical eraseblock belongs to |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 333 | * @pnum: physical eraseblock number the VID header came from |
| 334 | * |
| 335 | * This function checks that data stored in @vid_hdr is consistent. Returns |
| 336 | * non-zero if an inconsistency was found and zero if not. |
| 337 | * |
| 338 | * Note, UBI does sanity check of everything it reads from the flash media. |
Artem Bityutskiy | 85c6e6e | 2008-07-16 10:25:56 +0300 | [diff] [blame] | 339 | * Most of the checks are done in the I/O sub-system. Here we check that the |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 340 | * information in the VID header is consistent to the information in other VID |
| 341 | * headers of the same volume. |
| 342 | */ |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 343 | static int validate_vid_hdr(const struct ubi_device *ubi, |
| 344 | const struct ubi_vid_hdr *vid_hdr, |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 345 | const struct ubi_ainf_volume *av, int pnum) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 346 | { |
| 347 | int vol_type = vid_hdr->vol_type; |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 348 | int vol_id = be32_to_cpu(vid_hdr->vol_id); |
| 349 | int used_ebs = be32_to_cpu(vid_hdr->used_ebs); |
| 350 | int data_pad = be32_to_cpu(vid_hdr->data_pad); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 351 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 352 | if (av->leb_count != 0) { |
| 353 | int av_vol_type; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 354 | |
| 355 | /* |
| 356 | * This is not the first logical eraseblock belonging to this |
| 357 | * volume. Ensure that the data in its VID header is consistent |
| 358 | * to the data in previous logical eraseblock headers. |
| 359 | */ |
| 360 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 361 | if (vol_id != av->vol_id) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 362 | ubi_err(ubi, "inconsistent vol_id"); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 363 | goto bad; |
| 364 | } |
| 365 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 366 | if (av->vol_type == UBI_STATIC_VOLUME) |
| 367 | av_vol_type = UBI_VID_STATIC; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 368 | else |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 369 | av_vol_type = UBI_VID_DYNAMIC; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 370 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 371 | if (vol_type != av_vol_type) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 372 | ubi_err(ubi, "inconsistent vol_type"); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 373 | goto bad; |
| 374 | } |
| 375 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 376 | if (used_ebs != av->used_ebs) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 377 | ubi_err(ubi, "inconsistent used_ebs"); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 378 | goto bad; |
| 379 | } |
| 380 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 381 | if (data_pad != av->data_pad) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 382 | ubi_err(ubi, "inconsistent data_pad"); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 383 | goto bad; |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | return 0; |
| 388 | |
| 389 | bad: |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 390 | ubi_err(ubi, "inconsistent VID header at PEB %d", pnum); |
Artem Bityutskiy | a904e3f | 2012-04-25 09:02:44 +0300 | [diff] [blame] | 391 | ubi_dump_vid_hdr(vid_hdr); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 392 | ubi_dump_av(av); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 393 | return -EINVAL; |
| 394 | } |
| 395 | |
| 396 | /** |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 397 | * add_volume - add volume to the attaching information. |
| 398 | * @ai: attaching information |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 399 | * @vol_id: ID of the volume to add |
| 400 | * @pnum: physical eraseblock number |
| 401 | * @vid_hdr: volume identifier header |
| 402 | * |
| 403 | * If the volume corresponding to the @vid_hdr logical eraseblock is already |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 404 | * present in the attaching information, this function does nothing. Otherwise |
| 405 | * it adds corresponding volume to the attaching information. Returns a pointer |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 406 | * to the allocated "av" object in case of success and a negative error code in |
| 407 | * case of failure. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 408 | */ |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 409 | static struct ubi_ainf_volume *add_volume(struct ubi_attach_info *ai, |
Artem Bityutskiy | afc15a8 | 2012-05-17 07:46:17 +0300 | [diff] [blame] | 410 | int vol_id, int pnum, |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 411 | const struct ubi_vid_hdr *vid_hdr) |
| 412 | { |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 413 | struct ubi_ainf_volume *av; |
Boris Brezillon | de4c455 | 2016-09-16 16:59:14 +0200 | [diff] [blame] | 414 | bool created; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 415 | |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 416 | ubi_assert(vol_id == be32_to_cpu(vid_hdr->vol_id)); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 417 | |
Boris Brezillon | de4c455 | 2016-09-16 16:59:14 +0200 | [diff] [blame] | 418 | av = ubi_find_or_add_av(ai, vol_id, &created); |
| 419 | if (IS_ERR(av) || !created) |
| 420 | return av; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 421 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 422 | av->used_ebs = be32_to_cpu(vid_hdr->used_ebs); |
| 423 | av->data_pad = be32_to_cpu(vid_hdr->data_pad); |
| 424 | av->compat = vid_hdr->compat; |
| 425 | av->vol_type = vid_hdr->vol_type == UBI_VID_DYNAMIC ? UBI_DYNAMIC_VOLUME |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 426 | : UBI_STATIC_VOLUME; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 427 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 428 | return av; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | /** |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 432 | * ubi_compare_lebs - find out which logical eraseblock is newer. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 433 | * @ubi: UBI device description object |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 434 | * @aeb: first logical eraseblock to compare |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 435 | * @pnum: physical eraseblock number of the second logical eraseblock to |
| 436 | * compare |
| 437 | * @vid_hdr: volume identifier header of the second logical eraseblock |
| 438 | * |
| 439 | * This function compares 2 copies of a LEB and informs which one is newer. In |
| 440 | * case of success this function returns a positive value, in case of failure, a |
| 441 | * negative error code is returned. The success return codes use the following |
| 442 | * bits: |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 443 | * o bit 0 is cleared: the first PEB (described by @aeb) is newer than the |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 444 | * second PEB (described by @pnum and @vid_hdr); |
| 445 | * o bit 0 is set: the second PEB is newer; |
| 446 | * o bit 1 is cleared: no bit-flips were detected in the newer LEB; |
| 447 | * o bit 1 is set: bit-flips were detected in the newer LEB; |
| 448 | * o bit 2 is cleared: the older LEB is not corrupted; |
| 449 | * o bit 2 is set: the older LEB is corrupted. |
| 450 | */ |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 451 | int ubi_compare_lebs(struct ubi_device *ubi, const struct ubi_ainf_peb *aeb, |
Artem Bityutskiy | e88d6e10 | 2007-08-29 14:51:52 +0300 | [diff] [blame] | 452 | int pnum, const struct ubi_vid_hdr *vid_hdr) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 453 | { |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 454 | int len, err, second_is_newer, bitflips = 0, corrupted = 0; |
| 455 | uint32_t data_crc, crc; |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 456 | struct ubi_vid_io_buf *vidb = NULL; |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 457 | unsigned long long sqnum2 = be64_to_cpu(vid_hdr->sqnum); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 458 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 459 | if (sqnum2 == aeb->sqnum) { |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 460 | /* |
Artem Bityutskiy | 9869cd8 | 2008-07-18 13:53:39 +0300 | [diff] [blame] | 461 | * This must be a really ancient UBI image which has been |
| 462 | * created before sequence numbers support has been added. At |
| 463 | * that times we used 32-bit LEB versions stored in logical |
| 464 | * eraseblocks. That was before UBI got into mainline. We do not |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 465 | * support these images anymore. Well, those images still work, |
| 466 | * but only if no unclean reboots happened. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 467 | */ |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 468 | ubi_err(ubi, "unsupported on-flash UBI format"); |
Artem Bityutskiy | 9869cd8 | 2008-07-18 13:53:39 +0300 | [diff] [blame] | 469 | return -EINVAL; |
| 470 | } |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 471 | |
Artem Bityutskiy | 9869cd8 | 2008-07-18 13:53:39 +0300 | [diff] [blame] | 472 | /* Obviously the LEB with lower sequence counter is older */ |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 473 | second_is_newer = (sqnum2 > aeb->sqnum); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 474 | |
| 475 | /* |
| 476 | * Now we know which copy is newer. If the copy flag of the PEB with |
| 477 | * newer version is not set, then we just return, otherwise we have to |
| 478 | * check data CRC. For the second PEB we already have the VID header, |
| 479 | * for the first one - we'll need to re-read it from flash. |
| 480 | * |
Artem Bityutskiy | 9869cd8 | 2008-07-18 13:53:39 +0300 | [diff] [blame] | 481 | * Note: this may be optimized so that we wouldn't read twice. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 482 | */ |
| 483 | |
| 484 | if (second_is_newer) { |
| 485 | if (!vid_hdr->copy_flag) { |
| 486 | /* It is not a copy, so it is newer */ |
| 487 | dbg_bld("second PEB %d is newer, copy_flag is unset", |
| 488 | pnum); |
| 489 | return 1; |
| 490 | } |
| 491 | } else { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 492 | if (!aeb->copy_flag) { |
Artem Bityutskiy | fb22b59 | 2010-10-19 22:00:11 +0300 | [diff] [blame] | 493 | /* It is not a copy, so it is newer */ |
| 494 | dbg_bld("first PEB %d is newer, copy_flag is unset", |
| 495 | pnum); |
| 496 | return bitflips << 1; |
| 497 | } |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 498 | |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 499 | vidb = ubi_alloc_vid_buf(ubi, GFP_KERNEL); |
| 500 | if (!vidb) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 501 | return -ENOMEM; |
| 502 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 503 | pnum = aeb->pnum; |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 504 | err = ubi_io_read_vid_hdr(ubi, pnum, vidb, 0); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 505 | if (err) { |
| 506 | if (err == UBI_IO_BITFLIPS) |
| 507 | bitflips = 1; |
| 508 | else { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 509 | ubi_err(ubi, "VID of PEB %d header is bad, but it was OK earlier, err %d", |
Artem Bityutskiy | 049333c | 2012-08-27 14:43:54 +0300 | [diff] [blame] | 510 | pnum, err); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 511 | if (err > 0) |
| 512 | err = -EIO; |
| 513 | |
| 514 | goto out_free_vidh; |
| 515 | } |
| 516 | } |
| 517 | |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 518 | vid_hdr = ubi_get_vid_hdr(vidb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 519 | } |
| 520 | |
| 521 | /* Read the data of the copy and check the CRC */ |
| 522 | |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 523 | len = be32_to_cpu(vid_hdr->data_size); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 524 | |
Artem Bityutskiy | d125a75 | 2012-10-26 16:11:26 +0300 | [diff] [blame] | 525 | mutex_lock(&ubi->buf_mutex); |
| 526 | err = ubi_io_read_data(ubi, ubi->peb_buf, pnum, 0, len); |
Brian Norris | d57f4054 | 2011-09-20 18:34:25 -0700 | [diff] [blame] | 527 | if (err && err != UBI_IO_BITFLIPS && !mtd_is_eccerr(err)) |
Artem Bityutskiy | d125a75 | 2012-10-26 16:11:26 +0300 | [diff] [blame] | 528 | goto out_unlock; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 529 | |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 530 | data_crc = be32_to_cpu(vid_hdr->data_crc); |
Artem Bityutskiy | d125a75 | 2012-10-26 16:11:26 +0300 | [diff] [blame] | 531 | crc = crc32(UBI_CRC32_INIT, ubi->peb_buf, len); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 532 | if (crc != data_crc) { |
| 533 | dbg_bld("PEB %d CRC error: calculated %#08x, must be %#08x", |
| 534 | pnum, crc, data_crc); |
| 535 | corrupted = 1; |
| 536 | bitflips = 0; |
| 537 | second_is_newer = !second_is_newer; |
| 538 | } else { |
| 539 | dbg_bld("PEB %d CRC is OK", pnum); |
Brian Norris | 8eef7d7 | 2015-02-28 02:23:25 -0800 | [diff] [blame] | 540 | bitflips |= !!err; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 541 | } |
Artem Bityutskiy | d125a75 | 2012-10-26 16:11:26 +0300 | [diff] [blame] | 542 | mutex_unlock(&ubi->buf_mutex); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 543 | |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 544 | ubi_free_vid_buf(vidb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 545 | |
| 546 | if (second_is_newer) |
| 547 | dbg_bld("second PEB %d is newer, copy_flag is set", pnum); |
| 548 | else |
| 549 | dbg_bld("first PEB %d is newer, copy_flag is set", pnum); |
| 550 | |
| 551 | return second_is_newer | (bitflips << 1) | (corrupted << 2); |
| 552 | |
Artem Bityutskiy | d125a75 | 2012-10-26 16:11:26 +0300 | [diff] [blame] | 553 | out_unlock: |
| 554 | mutex_unlock(&ubi->buf_mutex); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 555 | out_free_vidh: |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 556 | ubi_free_vid_buf(vidb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 557 | return err; |
| 558 | } |
| 559 | |
| 560 | /** |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 561 | * ubi_add_to_av - add used physical eraseblock to the attaching information. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 562 | * @ubi: UBI device description object |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 563 | * @ai: attaching information |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 564 | * @pnum: the physical eraseblock number |
| 565 | * @ec: erase counter |
| 566 | * @vid_hdr: the volume identifier header |
| 567 | * @bitflips: if bit-flips were detected when this physical eraseblock was read |
| 568 | * |
Artem Bityutskiy | 79b510c | 2007-05-05 17:36:17 +0300 | [diff] [blame] | 569 | * This function adds information about a used physical eraseblock to the |
| 570 | * 'used' tree of the corresponding volume. The function is rather complex |
| 571 | * because it has to handle cases when this is not the first physical |
| 572 | * eraseblock belonging to the same logical eraseblock, and the newer one has |
| 573 | * to be picked, while the older one has to be dropped. This function returns |
| 574 | * zero in case of success and a negative error code in case of failure. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 575 | */ |
Artem Bityutskiy | 3561188 | 2012-05-17 15:31:31 +0300 | [diff] [blame] | 576 | int ubi_add_to_av(struct ubi_device *ubi, struct ubi_attach_info *ai, int pnum, |
| 577 | int ec, const struct ubi_vid_hdr *vid_hdr, int bitflips) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 578 | { |
| 579 | int err, vol_id, lnum; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 580 | unsigned long long sqnum; |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 581 | struct ubi_ainf_volume *av; |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 582 | struct ubi_ainf_peb *aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 583 | struct rb_node **p, *parent = NULL; |
| 584 | |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 585 | vol_id = be32_to_cpu(vid_hdr->vol_id); |
| 586 | lnum = be32_to_cpu(vid_hdr->lnum); |
| 587 | sqnum = be64_to_cpu(vid_hdr->sqnum); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 588 | |
Artem Bityutskiy | 9869cd8 | 2008-07-18 13:53:39 +0300 | [diff] [blame] | 589 | dbg_bld("PEB %d, LEB %d:%d, EC %d, sqnum %llu, bitflips %d", |
| 590 | pnum, vol_id, lnum, ec, sqnum, bitflips); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 591 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 592 | av = add_volume(ai, vol_id, pnum, vid_hdr); |
| 593 | if (IS_ERR(av)) |
| 594 | return PTR_ERR(av); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 595 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 596 | if (ai->max_sqnum < sqnum) |
| 597 | ai->max_sqnum = sqnum; |
Brijesh Singh | 76eafe4 | 2007-07-06 14:35:43 +0300 | [diff] [blame] | 598 | |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 599 | /* |
| 600 | * Walk the RB-tree of logical eraseblocks of volume @vol_id to look |
| 601 | * if this is the first instance of this logical eraseblock or not. |
| 602 | */ |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 603 | p = &av->root.rb_node; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 604 | while (*p) { |
| 605 | int cmp_res; |
| 606 | |
| 607 | parent = *p; |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 608 | aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb); |
| 609 | if (lnum != aeb->lnum) { |
| 610 | if (lnum < aeb->lnum) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 611 | p = &(*p)->rb_left; |
| 612 | else |
| 613 | p = &(*p)->rb_right; |
| 614 | continue; |
| 615 | } |
| 616 | |
| 617 | /* |
| 618 | * There is already a physical eraseblock describing the same |
| 619 | * logical eraseblock present. |
| 620 | */ |
| 621 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 622 | dbg_bld("this LEB already exists: PEB %d, sqnum %llu, EC %d", |
| 623 | aeb->pnum, aeb->sqnum, aeb->ec); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 624 | |
| 625 | /* |
| 626 | * Make sure that the logical eraseblocks have different |
| 627 | * sequence numbers. Otherwise the image is bad. |
| 628 | * |
Artem Bityutskiy | 9869cd8 | 2008-07-18 13:53:39 +0300 | [diff] [blame] | 629 | * However, if the sequence number is zero, we assume it must |
| 630 | * be an ancient UBI image from the era when UBI did not have |
| 631 | * sequence numbers. We still can attach these images, unless |
| 632 | * there is a need to distinguish between old and new |
| 633 | * eraseblocks, in which case we'll refuse the image in |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 634 | * 'ubi_compare_lebs()'. In other words, we attach old clean |
Artem Bityutskiy | 9869cd8 | 2008-07-18 13:53:39 +0300 | [diff] [blame] | 635 | * images, but refuse attaching old images with duplicated |
| 636 | * logical eraseblocks because there was an unclean reboot. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 637 | */ |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 638 | if (aeb->sqnum == sqnum && sqnum != 0) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 639 | ubi_err(ubi, "two LEBs with same sequence number %llu", |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 640 | sqnum); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 641 | ubi_dump_aeb(aeb, 0); |
Artem Bityutskiy | a904e3f | 2012-04-25 09:02:44 +0300 | [diff] [blame] | 642 | ubi_dump_vid_hdr(vid_hdr); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 643 | return -EINVAL; |
| 644 | } |
| 645 | |
| 646 | /* |
| 647 | * Now we have to drop the older one and preserve the newer |
| 648 | * one. |
| 649 | */ |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 650 | cmp_res = ubi_compare_lebs(ubi, aeb, pnum, vid_hdr); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 651 | if (cmp_res < 0) |
| 652 | return cmp_res; |
| 653 | |
| 654 | if (cmp_res & 1) { |
| 655 | /* |
Shinya Kuribayashi | 3f50262 | 2010-05-06 19:21:47 +0900 | [diff] [blame] | 656 | * This logical eraseblock is newer than the one |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 657 | * found earlier. |
| 658 | */ |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 659 | err = validate_vid_hdr(ubi, vid_hdr, av, pnum); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 660 | if (err) |
| 661 | return err; |
| 662 | |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 663 | err = add_to_list(ai, aeb->pnum, aeb->vol_id, |
| 664 | aeb->lnum, aeb->ec, cmp_res & 4, |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 665 | &ai->erase); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 666 | if (err) |
| 667 | return err; |
| 668 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 669 | aeb->ec = ec; |
| 670 | aeb->pnum = pnum; |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 671 | aeb->vol_id = vol_id; |
| 672 | aeb->lnum = lnum; |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 673 | aeb->scrub = ((cmp_res & 2) || bitflips); |
| 674 | aeb->copy_flag = vid_hdr->copy_flag; |
| 675 | aeb->sqnum = sqnum; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 676 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 677 | if (av->highest_lnum == lnum) |
| 678 | av->last_data_size = |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 679 | be32_to_cpu(vid_hdr->data_size); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 680 | |
| 681 | return 0; |
| 682 | } else { |
| 683 | /* |
Frederik Schwarzer | 025dfda | 2008-10-16 19:02:37 +0200 | [diff] [blame] | 684 | * This logical eraseblock is older than the one found |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 685 | * previously. |
| 686 | */ |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 687 | return add_to_list(ai, pnum, vol_id, lnum, ec, |
| 688 | cmp_res & 4, &ai->erase); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 689 | } |
| 690 | } |
| 691 | |
| 692 | /* |
| 693 | * We've met this logical eraseblock for the first time, add it to the |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 694 | * attaching information. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 695 | */ |
| 696 | |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 697 | err = validate_vid_hdr(ubi, vid_hdr, av, pnum); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 698 | if (err) |
| 699 | return err; |
| 700 | |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 701 | aeb = ubi_alloc_aeb(ai, pnum, ec); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 702 | if (!aeb) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 703 | return -ENOMEM; |
| 704 | |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 705 | aeb->vol_id = vol_id; |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 706 | aeb->lnum = lnum; |
| 707 | aeb->scrub = bitflips; |
| 708 | aeb->copy_flag = vid_hdr->copy_flag; |
| 709 | aeb->sqnum = sqnum; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 710 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 711 | if (av->highest_lnum <= lnum) { |
| 712 | av->highest_lnum = lnum; |
| 713 | av->last_data_size = be32_to_cpu(vid_hdr->data_size); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 714 | } |
| 715 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 716 | av->leb_count += 1; |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 717 | rb_link_node(&aeb->u.rb, parent, p); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 718 | rb_insert_color(&aeb->u.rb, &av->root); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 719 | return 0; |
| 720 | } |
| 721 | |
| 722 | /** |
Boris Brezillon | de4c455 | 2016-09-16 16:59:14 +0200 | [diff] [blame] | 723 | * ubi_add_av - add volume to the attaching information. |
| 724 | * @ai: attaching information |
| 725 | * @vol_id: the requested volume ID |
| 726 | * |
| 727 | * This function returns a pointer to the new volume description or an |
| 728 | * ERR_PTR if the operation failed. |
| 729 | */ |
| 730 | struct ubi_ainf_volume *ubi_add_av(struct ubi_attach_info *ai, int vol_id) |
| 731 | { |
| 732 | bool created; |
| 733 | |
| 734 | return find_or_add_av(ai, vol_id, AV_ADD, &created); |
| 735 | } |
| 736 | |
| 737 | /** |
Artem Bityutskiy | dcd85fd | 2012-05-17 15:33:20 +0300 | [diff] [blame] | 738 | * ubi_find_av - find volume in the attaching information. |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 739 | * @ai: attaching information |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 740 | * @vol_id: the requested volume ID |
| 741 | * |
| 742 | * This function returns a pointer to the volume description or %NULL if there |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 743 | * are no data about this volume in the attaching information. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 744 | */ |
Artem Bityutskiy | dcd85fd | 2012-05-17 15:33:20 +0300 | [diff] [blame] | 745 | struct ubi_ainf_volume *ubi_find_av(const struct ubi_attach_info *ai, |
| 746 | int vol_id) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 747 | { |
Boris Brezillon | de4c455 | 2016-09-16 16:59:14 +0200 | [diff] [blame] | 748 | bool created; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 749 | |
Boris Brezillon | de4c455 | 2016-09-16 16:59:14 +0200 | [diff] [blame] | 750 | return find_or_add_av((struct ubi_attach_info *)ai, vol_id, AV_FIND, |
| 751 | &created); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 752 | } |
| 753 | |
Boris Brezillon | f9efe8d | 2016-09-16 16:59:15 +0200 | [diff] [blame] | 754 | static void destroy_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av, |
| 755 | struct list_head *list); |
| 756 | |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 757 | /** |
Artem Bityutskiy | d717dc2 | 2012-05-17 15:36:39 +0300 | [diff] [blame] | 758 | * ubi_remove_av - delete attaching information about a volume. |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 759 | * @ai: attaching information |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 760 | * @av: the volume attaching information to delete |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 761 | */ |
Artem Bityutskiy | d717dc2 | 2012-05-17 15:36:39 +0300 | [diff] [blame] | 762 | void ubi_remove_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 763 | { |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 764 | dbg_bld("remove attaching information about volume %d", av->vol_id); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 765 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 766 | rb_erase(&av->rb, &ai->volumes); |
Boris Brezillon | f9efe8d | 2016-09-16 16:59:15 +0200 | [diff] [blame] | 767 | destroy_av(ai, av, &ai->erase); |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 768 | ai->vols_found -= 1; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 769 | } |
| 770 | |
| 771 | /** |
Artem Bityutskiy | 13d33da | 2012-05-17 15:20:28 +0300 | [diff] [blame] | 772 | * early_erase_peb - erase a physical eraseblock. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 773 | * @ubi: UBI device description object |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 774 | * @ai: attaching information |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 775 | * @pnum: physical eraseblock number to erase; |
Artem Bityutskiy | 9c47fb2 | 2012-05-18 12:54:58 +0300 | [diff] [blame] | 776 | * @ec: erase counter value to write (%UBI_UNKNOWN if it is unknown) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 777 | * |
| 778 | * This function erases physical eraseblock 'pnum', and writes the erase |
| 779 | * counter header to it. This function should only be used on UBI device |
Artem Bityutskiy | 85c6e6e | 2008-07-16 10:25:56 +0300 | [diff] [blame] | 780 | * initialization stages, when the EBA sub-system had not been yet initialized. |
| 781 | * This function returns zero in case of success and a negative error code in |
| 782 | * case of failure. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 783 | */ |
Artem Bityutskiy | 13d33da | 2012-05-17 15:20:28 +0300 | [diff] [blame] | 784 | static int early_erase_peb(struct ubi_device *ubi, |
| 785 | const struct ubi_attach_info *ai, int pnum, int ec) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 786 | { |
| 787 | int err; |
| 788 | struct ubi_ec_hdr *ec_hdr; |
| 789 | |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 790 | if ((long long)ec >= UBI_MAX_ERASECOUNTER) { |
| 791 | /* |
| 792 | * Erase counter overflow. Upgrade UBI and use 64-bit |
| 793 | * erase counters internally. |
| 794 | */ |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 795 | ubi_err(ubi, "erase counter overflow at PEB %d, EC %d", |
| 796 | pnum, ec); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 797 | return -EINVAL; |
| 798 | } |
| 799 | |
Florin Malita | dcec4c3 | 2007-07-19 15:22:41 -0400 | [diff] [blame] | 800 | ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL); |
| 801 | if (!ec_hdr) |
| 802 | return -ENOMEM; |
| 803 | |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 804 | ec_hdr->ec = cpu_to_be64(ec); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 805 | |
| 806 | err = ubi_io_sync_erase(ubi, pnum, 0); |
| 807 | if (err < 0) |
| 808 | goto out_free; |
| 809 | |
| 810 | err = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr); |
| 811 | |
| 812 | out_free: |
| 813 | kfree(ec_hdr); |
| 814 | return err; |
| 815 | } |
| 816 | |
| 817 | /** |
Artem Bityutskiy | c87fbd7 | 2012-05-17 15:38:56 +0300 | [diff] [blame] | 818 | * ubi_early_get_peb - get a free physical eraseblock. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 819 | * @ubi: UBI device description object |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 820 | * @ai: attaching information |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 821 | * |
| 822 | * This function returns a free physical eraseblock. It is supposed to be |
Artem Bityutskiy | 85c6e6e | 2008-07-16 10:25:56 +0300 | [diff] [blame] | 823 | * called on the UBI initialization stages when the wear-leveling sub-system is |
| 824 | * not initialized yet. This function picks a physical eraseblocks from one of |
| 825 | * the lists, writes the EC header if it is needed, and removes it from the |
| 826 | * list. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 827 | * |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 828 | * This function returns a pointer to the "aeb" of the found free PEB in case |
| 829 | * of success and an error code in case of failure. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 830 | */ |
Artem Bityutskiy | c87fbd7 | 2012-05-17 15:38:56 +0300 | [diff] [blame] | 831 | struct ubi_ainf_peb *ubi_early_get_peb(struct ubi_device *ubi, |
| 832 | struct ubi_attach_info *ai) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 833 | { |
Artem Bityutskiy | 5fc01ab | 2010-09-03 23:08:15 +0300 | [diff] [blame] | 834 | int err = 0; |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 835 | struct ubi_ainf_peb *aeb, *tmp_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 836 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 837 | if (!list_empty(&ai->free)) { |
| 838 | aeb = list_entry(ai->free.next, struct ubi_ainf_peb, u.list); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 839 | list_del(&aeb->u.list); |
| 840 | dbg_bld("return free PEB %d, EC %d", aeb->pnum, aeb->ec); |
| 841 | return aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 842 | } |
| 843 | |
Artem Bityutskiy | 5fc01ab | 2010-09-03 23:08:15 +0300 | [diff] [blame] | 844 | /* |
| 845 | * We try to erase the first physical eraseblock from the erase list |
| 846 | * and pick it if we succeed, or try to erase the next one if not. And |
| 847 | * so forth. We don't want to take care about bad eraseblocks here - |
| 848 | * they'll be handled later. |
| 849 | */ |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 850 | list_for_each_entry_safe(aeb, tmp_aeb, &ai->erase, u.list) { |
Artem Bityutskiy | 9c47fb2 | 2012-05-18 12:54:58 +0300 | [diff] [blame] | 851 | if (aeb->ec == UBI_UNKNOWN) |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 852 | aeb->ec = ai->mean_ec; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 853 | |
Artem Bityutskiy | 13d33da | 2012-05-17 15:20:28 +0300 | [diff] [blame] | 854 | err = early_erase_peb(ubi, ai, aeb->pnum, aeb->ec+1); |
Artem Bityutskiy | 5fc01ab | 2010-09-03 23:08:15 +0300 | [diff] [blame] | 855 | if (err) |
| 856 | continue; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 857 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 858 | aeb->ec += 1; |
| 859 | list_del(&aeb->u.list); |
| 860 | dbg_bld("return PEB %d, EC %d", aeb->pnum, aeb->ec); |
| 861 | return aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 862 | } |
| 863 | |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 864 | ubi_err(ubi, "no free eraseblocks"); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 865 | return ERR_PTR(-ENOSPC); |
| 866 | } |
| 867 | |
| 868 | /** |
Artem Bityutskiy | 45aafd3 | 2010-10-20 11:54:58 +0300 | [diff] [blame] | 869 | * check_corruption - check the data area of PEB. |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 870 | * @ubi: UBI device description object |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 871 | * @vid_hdr: the (corrupted) VID header of this PEB |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 872 | * @pnum: the physical eraseblock number to check |
| 873 | * |
| 874 | * This is a helper function which is used to distinguish between VID header |
| 875 | * corruptions caused by power cuts and other reasons. If the PEB contains only |
Artem Bityutskiy | 45aafd3 | 2010-10-20 11:54:58 +0300 | [diff] [blame] | 876 | * 0xFF bytes in the data area, the VID header is most probably corrupted |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 877 | * because of a power cut (%0 is returned in this case). Otherwise, it was |
Artem Bityutskiy | 45aafd3 | 2010-10-20 11:54:58 +0300 | [diff] [blame] | 878 | * probably corrupted for some other reasons (%1 is returned in this case). A |
| 879 | * negative error code is returned if a read error occurred. |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 880 | * |
| 881 | * If the corruption reason was a power cut, UBI can safely erase this PEB. |
| 882 | * Otherwise, it should preserve it to avoid possibly destroying important |
| 883 | * information. |
| 884 | */ |
Artem Bityutskiy | 45aafd3 | 2010-10-20 11:54:58 +0300 | [diff] [blame] | 885 | static int check_corruption(struct ubi_device *ubi, struct ubi_vid_hdr *vid_hdr, |
| 886 | int pnum) |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 887 | { |
| 888 | int err; |
| 889 | |
| 890 | mutex_lock(&ubi->buf_mutex); |
Artem Bityutskiy | 0ca39d7 | 2012-03-08 15:29:37 +0200 | [diff] [blame] | 891 | memset(ubi->peb_buf, 0x00, ubi->leb_size); |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 892 | |
Artem Bityutskiy | 0ca39d7 | 2012-03-08 15:29:37 +0200 | [diff] [blame] | 893 | err = ubi_io_read(ubi, ubi->peb_buf, pnum, ubi->leb_start, |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 894 | ubi->leb_size); |
Brian Norris | d57f4054 | 2011-09-20 18:34:25 -0700 | [diff] [blame] | 895 | if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err)) { |
Artem Bityutskiy | 45aafd3 | 2010-10-20 11:54:58 +0300 | [diff] [blame] | 896 | /* |
| 897 | * Bit-flips or integrity errors while reading the data area. |
| 898 | * It is difficult to say for sure what type of corruption is |
| 899 | * this, but presumably a power cut happened while this PEB was |
| 900 | * erased, so it became unstable and corrupted, and should be |
| 901 | * erased. |
| 902 | */ |
Dan Carpenter | 1b1d76e | 2010-11-18 06:58:04 +0300 | [diff] [blame] | 903 | err = 0; |
| 904 | goto out_unlock; |
Artem Bityutskiy | 45aafd3 | 2010-10-20 11:54:58 +0300 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | if (err) |
Dan Carpenter | 1b1d76e | 2010-11-18 06:58:04 +0300 | [diff] [blame] | 908 | goto out_unlock; |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 909 | |
Artem Bityutskiy | 0ca39d7 | 2012-03-08 15:29:37 +0200 | [diff] [blame] | 910 | if (ubi_check_pattern(ubi->peb_buf, 0xFF, ubi->leb_size)) |
Dan Carpenter | 1b1d76e | 2010-11-18 06:58:04 +0300 | [diff] [blame] | 911 | goto out_unlock; |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 912 | |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 913 | ubi_err(ubi, "PEB %d contains corrupted VID header, and the data does not contain all 0xFF", |
Artem Bityutskiy | 049333c | 2012-08-27 14:43:54 +0300 | [diff] [blame] | 914 | pnum); |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 915 | ubi_err(ubi, "this may be a non-UBI PEB or a severe VID header corruption which requires manual inspection"); |
Artem Bityutskiy | a904e3f | 2012-04-25 09:02:44 +0300 | [diff] [blame] | 916 | ubi_dump_vid_hdr(vid_hdr); |
Artem Bityutskiy | 719bb84 | 2012-08-27 17:14:58 +0300 | [diff] [blame] | 917 | pr_err("hexdump of PEB %d offset %d, length %d", |
| 918 | pnum, ubi->leb_start, ubi->leb_size); |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 919 | ubi_dbg_print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1, |
Artem Bityutskiy | 0ca39d7 | 2012-03-08 15:29:37 +0200 | [diff] [blame] | 920 | ubi->peb_buf, ubi->leb_size, 1); |
Dan Carpenter | 1b1d76e | 2010-11-18 06:58:04 +0300 | [diff] [blame] | 921 | err = 1; |
| 922 | |
| 923 | out_unlock: |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 924 | mutex_unlock(&ubi->buf_mutex); |
Dan Carpenter | 1b1d76e | 2010-11-18 06:58:04 +0300 | [diff] [blame] | 925 | return err; |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 926 | } |
| 927 | |
Richard Weinberger | 243a4f8 | 2016-06-14 10:12:13 +0200 | [diff] [blame] | 928 | static bool vol_ignored(int vol_id) |
| 929 | { |
| 930 | switch (vol_id) { |
| 931 | case UBI_LAYOUT_VOLUME_ID: |
| 932 | return true; |
| 933 | } |
| 934 | |
| 935 | #ifdef CONFIG_MTD_UBI_FASTMAP |
| 936 | return ubi_is_fm_vol(vol_id); |
| 937 | #else |
| 938 | return false; |
| 939 | #endif |
| 940 | } |
| 941 | |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 942 | /** |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 943 | * scan_peb - scan and process UBI headers of a PEB. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 944 | * @ubi: UBI device description object |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 945 | * @ai: attaching information |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 946 | * @pnum: the physical eraseblock number |
Richard Weinberger | 74f2c6e | 2016-06-14 10:12:17 +0200 | [diff] [blame] | 947 | * @fast: true if we're scanning for a Fastmap |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 948 | * |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 949 | * This function reads UBI headers of PEB @pnum, checks them, and adds |
| 950 | * information about this PEB to the corresponding list or RB-tree in the |
| 951 | * "attaching info" structure. Returns zero if the physical eraseblock was |
| 952 | * successfully handled and a negative error code in case of failure. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 953 | */ |
Richard Weinberger | 74f2c6e | 2016-06-14 10:12:17 +0200 | [diff] [blame] | 954 | static int scan_peb(struct ubi_device *ubi, struct ubi_attach_info *ai, |
| 955 | int pnum, bool fast) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 956 | { |
Boris Brezillon | 7b6b749 | 2016-09-16 16:59:19 +0200 | [diff] [blame] | 957 | struct ubi_ec_hdr *ech = ai->ech; |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 958 | struct ubi_vid_io_buf *vidb = ai->vidb; |
| 959 | struct ubi_vid_hdr *vidh = ubi_get_vid_hdr(vidb); |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 960 | long long ec; |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 961 | int err, bitflips = 0, vol_id = -1, ec_err = 0; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 962 | |
| 963 | dbg_bld("scan PEB %d", pnum); |
| 964 | |
| 965 | /* Skip bad physical eraseblocks */ |
| 966 | err = ubi_io_is_bad(ubi, pnum); |
| 967 | if (err < 0) |
| 968 | return err; |
| 969 | else if (err) { |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 970 | ai->bad_peb_count += 1; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 971 | return 0; |
| 972 | } |
| 973 | |
| 974 | err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0); |
| 975 | if (err < 0) |
| 976 | return err; |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 977 | switch (err) { |
| 978 | case 0: |
| 979 | break; |
| 980 | case UBI_IO_BITFLIPS: |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 981 | bitflips = 1; |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 982 | break; |
| 983 | case UBI_IO_FF: |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 984 | ai->empty_peb_count += 1; |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 985 | return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN, |
| 986 | UBI_UNKNOWN, 0, &ai->erase); |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 987 | case UBI_IO_FF_BITFLIPS: |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 988 | ai->empty_peb_count += 1; |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 989 | return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN, |
| 990 | UBI_UNKNOWN, 1, &ai->erase); |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 991 | case UBI_IO_BAD_HDR_EBADMSG: |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 992 | case UBI_IO_BAD_HDR: |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 993 | /* |
| 994 | * We have to also look at the VID header, possibly it is not |
| 995 | * corrupted. Set %bitflips flag in order to make this PEB be |
| 996 | * moved and EC be re-created. |
| 997 | */ |
Artem Bityutskiy | e0e718c | 2010-09-03 14:53:23 +0300 | [diff] [blame] | 998 | ec_err = err; |
Artem Bityutskiy | 9c47fb2 | 2012-05-18 12:54:58 +0300 | [diff] [blame] | 999 | ec = UBI_UNKNOWN; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1000 | bitflips = 1; |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 1001 | break; |
| 1002 | default: |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1003 | ubi_err(ubi, "'ubi_io_read_ec_hdr()' returned unknown code %d", |
| 1004 | err); |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 1005 | return -EINVAL; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1006 | } |
| 1007 | |
Artem Bityutskiy | e0e718c | 2010-09-03 14:53:23 +0300 | [diff] [blame] | 1008 | if (!ec_err) { |
Artem Bityutskiy | fe96efc | 2009-06-30 16:11:59 +0300 | [diff] [blame] | 1009 | int image_seq; |
| 1010 | |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1011 | /* Make sure UBI version is OK */ |
| 1012 | if (ech->version != UBI_VERSION) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1013 | ubi_err(ubi, "this UBI version is %d, image version is %d", |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1014 | UBI_VERSION, (int)ech->version); |
| 1015 | return -EINVAL; |
| 1016 | } |
| 1017 | |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 1018 | ec = be64_to_cpu(ech->ec); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1019 | if (ec > UBI_MAX_ERASECOUNTER) { |
| 1020 | /* |
| 1021 | * Erase counter overflow. The EC headers have 64 bits |
| 1022 | * reserved, but we anyway make use of only 31 bit |
| 1023 | * values, as this seems to be enough for any existing |
| 1024 | * flash. Upgrade UBI and use 64-bit erase counters |
| 1025 | * internally. |
| 1026 | */ |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1027 | ubi_err(ubi, "erase counter overflow, max is %d", |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1028 | UBI_MAX_ERASECOUNTER); |
Artem Bityutskiy | a904e3f | 2012-04-25 09:02:44 +0300 | [diff] [blame] | 1029 | ubi_dump_ec_hdr(ech); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1030 | return -EINVAL; |
| 1031 | } |
Artem Bityutskiy | fe96efc | 2009-06-30 16:11:59 +0300 | [diff] [blame] | 1032 | |
Adrian Hunter | 32bc482 | 2009-07-24 19:16:04 +0300 | [diff] [blame] | 1033 | /* |
| 1034 | * Make sure that all PEBs have the same image sequence number. |
| 1035 | * This allows us to detect situations when users flash UBI |
| 1036 | * images incorrectly, so that the flash has the new UBI image |
| 1037 | * and leftovers from the old one. This feature was added |
| 1038 | * relatively recently, and the sequence number was always |
| 1039 | * zero, because old UBI implementations always set it to zero. |
| 1040 | * For this reasons, we do not panic if some PEBs have zero |
| 1041 | * sequence number, while other PEBs have non-zero sequence |
| 1042 | * number. |
| 1043 | */ |
Holger Brunck | 3dc948d | 2009-07-13 16:47:57 +0200 | [diff] [blame] | 1044 | image_seq = be32_to_cpu(ech->image_seq); |
Richard Genoud | 55b80c4 | 2013-09-28 15:55:14 +0200 | [diff] [blame] | 1045 | if (!ubi->image_seq) |
Artem Bityutskiy | fe96efc | 2009-06-30 16:11:59 +0300 | [diff] [blame] | 1046 | ubi->image_seq = image_seq; |
Richard Genoud | 55b80c4 | 2013-09-28 15:55:14 +0200 | [diff] [blame] | 1047 | if (image_seq && ubi->image_seq != image_seq) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1048 | ubi_err(ubi, "bad image sequence number %d in PEB %d, expected %d", |
Artem Bityutskiy | 049333c | 2012-08-27 14:43:54 +0300 | [diff] [blame] | 1049 | image_seq, pnum, ubi->image_seq); |
Artem Bityutskiy | a904e3f | 2012-04-25 09:02:44 +0300 | [diff] [blame] | 1050 | ubi_dump_ec_hdr(ech); |
Artem Bityutskiy | fe96efc | 2009-06-30 16:11:59 +0300 | [diff] [blame] | 1051 | return -EINVAL; |
| 1052 | } |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1053 | } |
| 1054 | |
| 1055 | /* OK, we've done with the EC header, let's look at the VID header */ |
| 1056 | |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 1057 | err = ubi_io_read_vid_hdr(ubi, pnum, vidb, 0); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1058 | if (err < 0) |
| 1059 | return err; |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 1060 | switch (err) { |
| 1061 | case 0: |
| 1062 | break; |
| 1063 | case UBI_IO_BITFLIPS: |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1064 | bitflips = 1; |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 1065 | break; |
| 1066 | case UBI_IO_BAD_HDR_EBADMSG: |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 1067 | if (ec_err == UBI_IO_BAD_HDR_EBADMSG) |
| 1068 | /* |
| 1069 | * Both EC and VID headers are corrupted and were read |
| 1070 | * with data integrity error, probably this is a bad |
| 1071 | * PEB, bit it is not marked as bad yet. This may also |
| 1072 | * be a result of power cut during erasure. |
| 1073 | */ |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1074 | ai->maybe_bad_peb_count += 1; |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 1075 | case UBI_IO_BAD_HDR: |
Richard Weinberger | 74f2c6e | 2016-06-14 10:12:17 +0200 | [diff] [blame] | 1076 | /* |
| 1077 | * If we're facing a bad VID header we have to drop *all* |
| 1078 | * Fastmap data structures we find. The most recent Fastmap |
| 1079 | * could be bad and therefore there is a chance that we attach |
| 1080 | * from an old one. On a fine MTD stack a PEB must not render |
| 1081 | * bad all of a sudden, but the reality is different. |
| 1082 | * So, let's be paranoid and help finding the root cause by |
| 1083 | * falling back to scanning mode instead of attaching with a |
| 1084 | * bad EBA table and cause data corruption which is hard to |
| 1085 | * analyze. |
| 1086 | */ |
| 1087 | if (fast) |
| 1088 | ai->force_full_scan = 1; |
| 1089 | |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 1090 | if (ec_err) |
| 1091 | /* |
| 1092 | * Both headers are corrupted. There is a possibility |
| 1093 | * that this a valid UBI PEB which has corresponding |
| 1094 | * LEB, but the headers are corrupted. However, it is |
| 1095 | * impossible to distinguish it from a PEB which just |
Artem Bityutskiy | 45aafd3 | 2010-10-20 11:54:58 +0300 | [diff] [blame] | 1096 | * contains garbage because of a power cut during erase |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 1097 | * operation. So we just schedule this PEB for erasure. |
Artem Bityutskiy | 7ac760c | 2010-12-02 06:34:01 +0200 | [diff] [blame] | 1098 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1099 | * Besides, in case of NOR flash, we deliberately |
Artem Bityutskiy | 7ac760c | 2010-12-02 06:34:01 +0200 | [diff] [blame] | 1100 | * corrupt both headers because NOR flash erasure is |
| 1101 | * slow and can start from the end. |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 1102 | */ |
| 1103 | err = 0; |
| 1104 | else |
| 1105 | /* |
| 1106 | * The EC was OK, but the VID header is corrupted. We |
| 1107 | * have to check what is in the data area. |
| 1108 | */ |
Artem Bityutskiy | 45aafd3 | 2010-10-20 11:54:58 +0300 | [diff] [blame] | 1109 | err = check_corruption(ubi, vidh, pnum); |
Artem Bityutskiy | df3fca4 | 2010-10-20 11:51:21 +0300 | [diff] [blame] | 1110 | |
| 1111 | if (err < 0) |
| 1112 | return err; |
| 1113 | else if (!err) |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 1114 | /* This corruption is caused by a power cut */ |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 1115 | err = add_to_list(ai, pnum, UBI_UNKNOWN, |
| 1116 | UBI_UNKNOWN, ec, 1, &ai->erase); |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 1117 | else |
| 1118 | /* This is an unexpected corruption */ |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1119 | err = add_corrupted(ai, pnum, ec); |
Artem Bityutskiy | feeba4b | 2010-09-03 22:50:53 +0300 | [diff] [blame] | 1120 | if (err) |
| 1121 | return err; |
| 1122 | goto adjust_mean_ec; |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 1123 | case UBI_IO_FF_BITFLIPS: |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 1124 | err = add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN, |
| 1125 | ec, 1, &ai->erase); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1126 | if (err) |
| 1127 | return err; |
| 1128 | goto adjust_mean_ec; |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 1129 | case UBI_IO_FF: |
Matthieu CASTET | 193819c | 2012-08-22 16:03:46 +0200 | [diff] [blame] | 1130 | if (ec_err || bitflips) |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 1131 | err = add_to_list(ai, pnum, UBI_UNKNOWN, |
| 1132 | UBI_UNKNOWN, ec, 1, &ai->erase); |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 1133 | else |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 1134 | err = add_to_list(ai, pnum, UBI_UNKNOWN, |
| 1135 | UBI_UNKNOWN, ec, 0, &ai->free); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1136 | if (err) |
| 1137 | return err; |
| 1138 | goto adjust_mean_ec; |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 1139 | default: |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1140 | ubi_err(ubi, "'ubi_io_read_vid_hdr()' returned unknown code %d", |
Artem Bityutskiy | b332150 | 2010-09-03 14:40:55 +0300 | [diff] [blame] | 1141 | err); |
| 1142 | return -EINVAL; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1143 | } |
| 1144 | |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 1145 | vol_id = be32_to_cpu(vidh->vol_id); |
Richard Weinberger | 243a4f8 | 2016-06-14 10:12:13 +0200 | [diff] [blame] | 1146 | if (vol_id > UBI_MAX_VOLUMES && !vol_ignored(vol_id)) { |
Christoph Hellwig | 3261ebd | 2007-05-21 17:41:46 +0300 | [diff] [blame] | 1147 | int lnum = be32_to_cpu(vidh->lnum); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1148 | |
| 1149 | /* Unsupported internal volume */ |
| 1150 | switch (vidh->compat) { |
| 1151 | case UBI_COMPAT_DELETE: |
Richard Weinberger | 243a4f8 | 2016-06-14 10:12:13 +0200 | [diff] [blame] | 1152 | ubi_msg(ubi, "\"delete\" compatible internal volume %d:%d found, will remove it", |
| 1153 | vol_id, lnum); |
| 1154 | |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 1155 | err = add_to_list(ai, pnum, vol_id, lnum, |
| 1156 | ec, 1, &ai->erase); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1157 | if (err) |
| 1158 | return err; |
Brijesh Singh | 158132c | 2010-06-16 09:28:26 +0300 | [diff] [blame] | 1159 | return 0; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1160 | |
| 1161 | case UBI_COMPAT_RO: |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1162 | ubi_msg(ubi, "read-only compatible internal volume %d:%d found, switch to read-only mode", |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1163 | vol_id, lnum); |
| 1164 | ubi->ro_mode = 1; |
| 1165 | break; |
| 1166 | |
| 1167 | case UBI_COMPAT_PRESERVE: |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1168 | ubi_msg(ubi, "\"preserve\" compatible internal volume %d:%d found", |
Artem Bityutskiy | 049333c | 2012-08-27 14:43:54 +0300 | [diff] [blame] | 1169 | vol_id, lnum); |
Joel Reardon | 6dd3bc7 | 2012-05-16 14:20:56 +0200 | [diff] [blame] | 1170 | err = add_to_list(ai, pnum, vol_id, lnum, |
| 1171 | ec, 0, &ai->alien); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1172 | if (err) |
| 1173 | return err; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1174 | return 0; |
| 1175 | |
| 1176 | case UBI_COMPAT_REJECT: |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1177 | ubi_err(ubi, "incompatible internal volume %d:%d found", |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1178 | vol_id, lnum); |
| 1179 | return -EINVAL; |
| 1180 | } |
| 1181 | } |
| 1182 | |
Artem Bityutskiy | e0e718c | 2010-09-03 14:53:23 +0300 | [diff] [blame] | 1183 | if (ec_err) |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1184 | ubi_warn(ubi, "valid VID header but corrupted EC header at PEB %d", |
Artem Bityutskiy | 29a88c9 | 2009-07-19 14:03:16 +0300 | [diff] [blame] | 1185 | pnum); |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 1186 | |
| 1187 | if (ubi_is_fm_vol(vol_id)) |
| 1188 | err = add_fastmap(ai, pnum, vidh, ec); |
| 1189 | else |
| 1190 | err = ubi_add_to_av(ubi, ai, pnum, ec, vidh, bitflips); |
| 1191 | |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1192 | if (err) |
| 1193 | return err; |
| 1194 | |
| 1195 | adjust_mean_ec: |
Artem Bityutskiy | e0e718c | 2010-09-03 14:53:23 +0300 | [diff] [blame] | 1196 | if (!ec_err) { |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1197 | ai->ec_sum += ec; |
| 1198 | ai->ec_count += 1; |
| 1199 | if (ec > ai->max_ec) |
| 1200 | ai->max_ec = ec; |
| 1201 | if (ec < ai->min_ec) |
| 1202 | ai->min_ec = ec; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1203 | } |
| 1204 | |
| 1205 | return 0; |
| 1206 | } |
| 1207 | |
| 1208 | /** |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 1209 | * late_analysis - analyze the overall situation with PEB. |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1210 | * @ubi: UBI device description object |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1211 | * @ai: attaching information |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1212 | * |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 1213 | * This is a helper function which takes a look what PEBs we have after we |
| 1214 | * gather information about all of them ("ai" is compete). It decides whether |
| 1215 | * the flash is empty and should be formatted of whether there are too many |
| 1216 | * corrupted PEBs and we should not attach this MTD device. Returns zero if we |
| 1217 | * should proceed with attaching the MTD device, and %-EINVAL if we should not. |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1218 | */ |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 1219 | static int late_analysis(struct ubi_device *ubi, struct ubi_attach_info *ai) |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1220 | { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1221 | struct ubi_ainf_peb *aeb; |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 1222 | int max_corr, peb_count; |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1223 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1224 | peb_count = ubi->peb_count - ai->bad_peb_count - ai->alien_peb_count; |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 1225 | max_corr = peb_count / 20 ?: 8; |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1226 | |
| 1227 | /* |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 1228 | * Few corrupted PEBs is not a problem and may be just a result of |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1229 | * unclean reboots. However, many of them may indicate some problems |
| 1230 | * with the flash HW or driver. |
| 1231 | */ |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1232 | if (ai->corr_peb_count) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1233 | ubi_err(ubi, "%d PEBs are corrupted and preserved", |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1234 | ai->corr_peb_count); |
Artem Bityutskiy | e28453b | 2012-08-27 15:13:05 +0300 | [diff] [blame] | 1235 | pr_err("Corrupted PEBs are:"); |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1236 | list_for_each_entry(aeb, &ai->corr, u.list) |
Artem Bityutskiy | e28453b | 2012-08-27 15:13:05 +0300 | [diff] [blame] | 1237 | pr_cont(" %d", aeb->pnum); |
| 1238 | pr_cont("\n"); |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1239 | |
| 1240 | /* |
| 1241 | * If too many PEBs are corrupted, we refuse attaching, |
| 1242 | * otherwise, only print a warning. |
| 1243 | */ |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1244 | if (ai->corr_peb_count >= max_corr) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1245 | ubi_err(ubi, "too many corrupted PEBs, refusing"); |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1246 | return -EINVAL; |
| 1247 | } |
| 1248 | } |
| 1249 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1250 | if (ai->empty_peb_count + ai->maybe_bad_peb_count == peb_count) { |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 1251 | /* |
| 1252 | * All PEBs are empty, or almost all - a couple PEBs look like |
| 1253 | * they may be bad PEBs which were not marked as bad yet. |
| 1254 | * |
| 1255 | * This piece of code basically tries to distinguish between |
| 1256 | * the following situations: |
| 1257 | * |
| 1258 | * 1. Flash is empty, but there are few bad PEBs, which are not |
| 1259 | * marked as bad so far, and which were read with error. We |
| 1260 | * want to go ahead and format this flash. While formatting, |
| 1261 | * the faulty PEBs will probably be marked as bad. |
| 1262 | * |
| 1263 | * 2. Flash contains non-UBI data and we do not want to format |
| 1264 | * it and destroy possibly important information. |
| 1265 | */ |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1266 | if (ai->maybe_bad_peb_count <= 2) { |
| 1267 | ai->is_empty = 1; |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1268 | ubi_msg(ubi, "empty MTD device detected"); |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 1269 | get_random_bytes(&ubi->image_seq, |
| 1270 | sizeof(ubi->image_seq)); |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1271 | } else { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1272 | ubi_err(ubi, "MTD device is not UBI-formatted and possibly contains non-UBI data - refusing it"); |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1273 | return -EINVAL; |
| 1274 | } |
Artem Bityutskiy | 0525dac | 2010-09-03 17:11:37 +0300 | [diff] [blame] | 1275 | |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1276 | } |
| 1277 | |
Artem Bityutskiy | 0798cea | 2010-04-30 13:02:33 +0300 | [diff] [blame] | 1278 | return 0; |
| 1279 | } |
| 1280 | |
| 1281 | /** |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 1282 | * destroy_av - free volume attaching information. |
| 1283 | * @av: volume attaching information |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1284 | * @ai: attaching information |
Boris Brezillon | f9efe8d | 2016-09-16 16:59:15 +0200 | [diff] [blame] | 1285 | * @list: put the aeb elements in there if !NULL, otherwise free them |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1286 | * |
Artem Bityutskiy | fbd0107 | 2012-05-17 16:12:26 +0300 | [diff] [blame] | 1287 | * This function destroys the volume attaching information. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1288 | */ |
Boris Brezillon | f9efe8d | 2016-09-16 16:59:15 +0200 | [diff] [blame] | 1289 | static void destroy_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av, |
| 1290 | struct list_head *list) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1291 | { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1292 | struct ubi_ainf_peb *aeb; |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1293 | struct rb_node *this = av->root.rb_node; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1294 | |
| 1295 | while (this) { |
| 1296 | if (this->rb_left) |
| 1297 | this = this->rb_left; |
| 1298 | else if (this->rb_right) |
| 1299 | this = this->rb_right; |
| 1300 | else { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1301 | aeb = rb_entry(this, struct ubi_ainf_peb, u.rb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1302 | this = rb_parent(this); |
| 1303 | if (this) { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1304 | if (this->rb_left == &aeb->u.rb) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1305 | this->rb_left = NULL; |
| 1306 | else |
| 1307 | this->rb_right = NULL; |
| 1308 | } |
| 1309 | |
Boris Brezillon | f9efe8d | 2016-09-16 16:59:15 +0200 | [diff] [blame] | 1310 | if (list) |
| 1311 | list_add_tail(&aeb->u.list, list); |
| 1312 | else |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 1313 | ubi_free_aeb(ai, aeb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1314 | } |
| 1315 | } |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1316 | kfree(av); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1317 | } |
| 1318 | |
| 1319 | /** |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1320 | * destroy_ai - destroy attaching information. |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1321 | * @ai: attaching information |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1322 | */ |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1323 | static void destroy_ai(struct ubi_attach_info *ai) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1324 | { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1325 | struct ubi_ainf_peb *aeb, *aeb_tmp; |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1326 | struct ubi_ainf_volume *av; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1327 | struct rb_node *rb; |
| 1328 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1329 | list_for_each_entry_safe(aeb, aeb_tmp, &ai->alien, u.list) { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1330 | list_del(&aeb->u.list); |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 1331 | ubi_free_aeb(ai, aeb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1332 | } |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1333 | list_for_each_entry_safe(aeb, aeb_tmp, &ai->erase, u.list) { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1334 | list_del(&aeb->u.list); |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 1335 | ubi_free_aeb(ai, aeb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1336 | } |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1337 | list_for_each_entry_safe(aeb, aeb_tmp, &ai->corr, u.list) { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1338 | list_del(&aeb->u.list); |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 1339 | ubi_free_aeb(ai, aeb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1340 | } |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1341 | list_for_each_entry_safe(aeb, aeb_tmp, &ai->free, u.list) { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1342 | list_del(&aeb->u.list); |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 1343 | ubi_free_aeb(ai, aeb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1344 | } |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 1345 | list_for_each_entry_safe(aeb, aeb_tmp, &ai->fastmap, u.list) { |
| 1346 | list_del(&aeb->u.list); |
Boris Brezillon | 91f4285 | 2016-09-16 16:59:18 +0200 | [diff] [blame] | 1347 | ubi_free_aeb(ai, aeb); |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 1348 | } |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1349 | |
| 1350 | /* Destroy the volume RB-tree */ |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1351 | rb = ai->volumes.rb_node; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1352 | while (rb) { |
| 1353 | if (rb->rb_left) |
| 1354 | rb = rb->rb_left; |
| 1355 | else if (rb->rb_right) |
| 1356 | rb = rb->rb_right; |
| 1357 | else { |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1358 | av = rb_entry(rb, struct ubi_ainf_volume, rb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1359 | |
| 1360 | rb = rb_parent(rb); |
| 1361 | if (rb) { |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1362 | if (rb->rb_left == &av->rb) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1363 | rb->rb_left = NULL; |
| 1364 | else |
| 1365 | rb->rb_right = NULL; |
| 1366 | } |
| 1367 | |
Boris Brezillon | f9efe8d | 2016-09-16 16:59:15 +0200 | [diff] [blame] | 1368 | destroy_av(ai, av, NULL); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1369 | } |
| 1370 | } |
| 1371 | |
Julia Lawall | f9a113d | 2015-09-13 14:15:16 +0200 | [diff] [blame] | 1372 | kmem_cache_destroy(ai->aeb_slab_cache); |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1373 | kfree(ai); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1374 | } |
| 1375 | |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1376 | /** |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1377 | * scan_all - scan entire MTD device. |
| 1378 | * @ubi: UBI device description object |
| 1379 | * @ai: attach info object |
| 1380 | * @start: start scanning at this PEB |
| 1381 | * |
| 1382 | * This function does full scanning of an MTD device and returns complete |
| 1383 | * information about it in form of a "struct ubi_attach_info" object. In case |
| 1384 | * of failure, an error code is returned. |
| 1385 | */ |
| 1386 | static int scan_all(struct ubi_device *ubi, struct ubi_attach_info *ai, |
| 1387 | int start) |
| 1388 | { |
| 1389 | int err, pnum; |
| 1390 | struct rb_node *rb1, *rb2; |
| 1391 | struct ubi_ainf_volume *av; |
| 1392 | struct ubi_ainf_peb *aeb; |
| 1393 | |
| 1394 | err = -ENOMEM; |
| 1395 | |
Boris Brezillon | 7b6b749 | 2016-09-16 16:59:19 +0200 | [diff] [blame] | 1396 | ai->ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL); |
| 1397 | if (!ai->ech) |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1398 | return err; |
| 1399 | |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 1400 | ai->vidb = ubi_alloc_vid_buf(ubi, GFP_KERNEL); |
| 1401 | if (!ai->vidb) |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1402 | goto out_ech; |
| 1403 | |
| 1404 | for (pnum = start; pnum < ubi->peb_count; pnum++) { |
| 1405 | cond_resched(); |
| 1406 | |
| 1407 | dbg_gen("process PEB %d", pnum); |
Richard Weinberger | 74f2c6e | 2016-06-14 10:12:17 +0200 | [diff] [blame] | 1408 | err = scan_peb(ubi, ai, pnum, false); |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1409 | if (err < 0) |
| 1410 | goto out_vidh; |
| 1411 | } |
| 1412 | |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1413 | ubi_msg(ubi, "scanning is finished"); |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1414 | |
| 1415 | /* Calculate mean erase counter */ |
| 1416 | if (ai->ec_count) |
| 1417 | ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count); |
| 1418 | |
| 1419 | err = late_analysis(ubi, ai); |
| 1420 | if (err) |
| 1421 | goto out_vidh; |
| 1422 | |
| 1423 | /* |
| 1424 | * In case of unknown erase counter we use the mean erase counter |
| 1425 | * value. |
| 1426 | */ |
| 1427 | ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) { |
| 1428 | ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) |
| 1429 | if (aeb->ec == UBI_UNKNOWN) |
| 1430 | aeb->ec = ai->mean_ec; |
| 1431 | } |
| 1432 | |
| 1433 | list_for_each_entry(aeb, &ai->free, u.list) { |
| 1434 | if (aeb->ec == UBI_UNKNOWN) |
| 1435 | aeb->ec = ai->mean_ec; |
| 1436 | } |
| 1437 | |
| 1438 | list_for_each_entry(aeb, &ai->corr, u.list) |
| 1439 | if (aeb->ec == UBI_UNKNOWN) |
| 1440 | aeb->ec = ai->mean_ec; |
| 1441 | |
| 1442 | list_for_each_entry(aeb, &ai->erase, u.list) |
| 1443 | if (aeb->ec == UBI_UNKNOWN) |
| 1444 | aeb->ec = ai->mean_ec; |
| 1445 | |
| 1446 | err = self_check_ai(ubi, ai); |
| 1447 | if (err) |
| 1448 | goto out_vidh; |
| 1449 | |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 1450 | ubi_free_vid_buf(ai->vidb); |
Boris Brezillon | 7b6b749 | 2016-09-16 16:59:19 +0200 | [diff] [blame] | 1451 | kfree(ai->ech); |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1452 | |
| 1453 | return 0; |
| 1454 | |
| 1455 | out_vidh: |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 1456 | ubi_free_vid_buf(ai->vidb); |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1457 | out_ech: |
Boris Brezillon | 7b6b749 | 2016-09-16 16:59:19 +0200 | [diff] [blame] | 1458 | kfree(ai->ech); |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1459 | return err; |
| 1460 | } |
| 1461 | |
Richard Weinberger | d2158f6 | 2014-10-06 15:58:07 +0200 | [diff] [blame] | 1462 | static struct ubi_attach_info *alloc_ai(void) |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1463 | { |
| 1464 | struct ubi_attach_info *ai; |
| 1465 | |
| 1466 | ai = kzalloc(sizeof(struct ubi_attach_info), GFP_KERNEL); |
| 1467 | if (!ai) |
| 1468 | return ai; |
| 1469 | |
| 1470 | INIT_LIST_HEAD(&ai->corr); |
| 1471 | INIT_LIST_HEAD(&ai->free); |
| 1472 | INIT_LIST_HEAD(&ai->erase); |
| 1473 | INIT_LIST_HEAD(&ai->alien); |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 1474 | INIT_LIST_HEAD(&ai->fastmap); |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1475 | ai->volumes = RB_ROOT; |
Richard Weinberger | d2158f6 | 2014-10-06 15:58:07 +0200 | [diff] [blame] | 1476 | ai->aeb_slab_cache = kmem_cache_create("ubi_aeb_slab_cache", |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1477 | sizeof(struct ubi_ainf_peb), |
| 1478 | 0, 0, NULL); |
| 1479 | if (!ai->aeb_slab_cache) { |
| 1480 | kfree(ai); |
| 1481 | ai = NULL; |
| 1482 | } |
| 1483 | |
| 1484 | return ai; |
| 1485 | } |
| 1486 | |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1487 | #ifdef CONFIG_MTD_UBI_FASTMAP |
| 1488 | |
| 1489 | /** |
Richard Weinberger | d139d30 | 2016-06-14 10:12:12 +0200 | [diff] [blame] | 1490 | * scan_fast - try to find a fastmap and attach from it. |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1491 | * @ubi: UBI device description object |
| 1492 | * @ai: attach info object |
| 1493 | * |
| 1494 | * Returns 0 on success, negative return values indicate an internal |
| 1495 | * error. |
| 1496 | * UBI_NO_FASTMAP denotes that no fastmap was found. |
| 1497 | * UBI_BAD_FASTMAP denotes that the found fastmap was invalid. |
| 1498 | */ |
| 1499 | static int scan_fast(struct ubi_device *ubi, struct ubi_attach_info **ai) |
| 1500 | { |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 1501 | int err, pnum; |
| 1502 | struct ubi_attach_info *scan_ai; |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1503 | |
| 1504 | err = -ENOMEM; |
| 1505 | |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 1506 | scan_ai = alloc_ai(); |
| 1507 | if (!scan_ai) |
| 1508 | goto out; |
| 1509 | |
Boris Brezillon | 7b6b749 | 2016-09-16 16:59:19 +0200 | [diff] [blame] | 1510 | scan_ai->ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL); |
| 1511 | if (!scan_ai->ech) |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 1512 | goto out_ai; |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1513 | |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 1514 | scan_ai->vidb = ubi_alloc_vid_buf(ubi, GFP_KERNEL); |
| 1515 | if (!scan_ai->vidb) |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1516 | goto out_ech; |
| 1517 | |
| 1518 | for (pnum = 0; pnum < UBI_FM_MAX_START; pnum++) { |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1519 | cond_resched(); |
| 1520 | |
| 1521 | dbg_gen("process PEB %d", pnum); |
Richard Weinberger | 74f2c6e | 2016-06-14 10:12:17 +0200 | [diff] [blame] | 1522 | err = scan_peb(ubi, scan_ai, pnum, true); |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1523 | if (err < 0) |
| 1524 | goto out_vidh; |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1525 | } |
| 1526 | |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 1527 | ubi_free_vid_buf(scan_ai->vidb); |
Boris Brezillon | 7b6b749 | 2016-09-16 16:59:19 +0200 | [diff] [blame] | 1528 | kfree(scan_ai->ech); |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1529 | |
Richard Weinberger | 74f2c6e | 2016-06-14 10:12:17 +0200 | [diff] [blame] | 1530 | if (scan_ai->force_full_scan) |
| 1531 | err = UBI_NO_FASTMAP; |
| 1532 | else |
| 1533 | err = ubi_scan_fastmap(ubi, *ai, scan_ai); |
| 1534 | |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 1535 | if (err) { |
| 1536 | /* |
| 1537 | * Didn't attach via fastmap, do a full scan but reuse what |
| 1538 | * we've aready scanned. |
| 1539 | */ |
| 1540 | destroy_ai(*ai); |
| 1541 | *ai = scan_ai; |
| 1542 | } else |
| 1543 | destroy_ai(scan_ai); |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1544 | |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 1545 | return err; |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1546 | |
| 1547 | out_vidh: |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 1548 | ubi_free_vid_buf(scan_ai->vidb); |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1549 | out_ech: |
Boris Brezillon | 7b6b749 | 2016-09-16 16:59:19 +0200 | [diff] [blame] | 1550 | kfree(scan_ai->ech); |
Richard Weinberger | fdf10ed | 2016-06-14 10:12:15 +0200 | [diff] [blame] | 1551 | out_ai: |
| 1552 | destroy_ai(scan_ai); |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1553 | out: |
| 1554 | return err; |
| 1555 | } |
| 1556 | |
| 1557 | #endif |
| 1558 | |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1559 | /** |
| 1560 | * ubi_attach - attach an MTD device. |
| 1561 | * @ubi: UBI device descriptor |
| 1562 | * @force_scan: if set to non-zero attach by scanning |
| 1563 | * |
| 1564 | * This function returns zero in case of success and a negative error code in |
| 1565 | * case of failure. |
| 1566 | */ |
| 1567 | int ubi_attach(struct ubi_device *ubi, int force_scan) |
| 1568 | { |
| 1569 | int err; |
| 1570 | struct ubi_attach_info *ai; |
| 1571 | |
Richard Weinberger | d2158f6 | 2014-10-06 15:58:07 +0200 | [diff] [blame] | 1572 | ai = alloc_ai(); |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1573 | if (!ai) |
| 1574 | return -ENOMEM; |
| 1575 | |
| 1576 | #ifdef CONFIG_MTD_UBI_FASTMAP |
| 1577 | /* On small flash devices we disable fastmap in any case. */ |
| 1578 | if ((int)mtd_div_by_eb(ubi->mtd->size, ubi->mtd) <= UBI_FM_MAX_START) { |
| 1579 | ubi->fm_disabled = 1; |
| 1580 | force_scan = 1; |
| 1581 | } |
| 1582 | |
| 1583 | if (force_scan) |
| 1584 | err = scan_all(ubi, ai, 0); |
| 1585 | else { |
Richard Weinberger | 98105d0 | 2014-10-06 15:39:01 +0200 | [diff] [blame] | 1586 | err = scan_fast(ubi, &ai); |
Richard Weinberger | 180a535 | 2015-03-09 10:04:09 +0100 | [diff] [blame] | 1587 | if (err > 0 || mtd_is_eccerr(err)) { |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1588 | if (err != UBI_NO_FASTMAP) { |
| 1589 | destroy_ai(ai); |
Richard Weinberger | d2158f6 | 2014-10-06 15:58:07 +0200 | [diff] [blame] | 1590 | ai = alloc_ai(); |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1591 | if (!ai) |
| 1592 | return -ENOMEM; |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1593 | |
Richard Weinberger | 4b3e0a2 | 2013-09-28 15:55:12 +0200 | [diff] [blame] | 1594 | err = scan_all(ubi, ai, 0); |
| 1595 | } else { |
| 1596 | err = scan_all(ubi, ai, UBI_FM_MAX_START); |
| 1597 | } |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1598 | } |
| 1599 | } |
| 1600 | #else |
| 1601 | err = scan_all(ubi, ai, 0); |
| 1602 | #endif |
| 1603 | if (err) |
| 1604 | goto out_ai; |
| 1605 | |
| 1606 | ubi->bad_peb_count = ai->bad_peb_count; |
| 1607 | ubi->good_peb_count = ubi->peb_count - ubi->bad_peb_count; |
| 1608 | ubi->corr_peb_count = ai->corr_peb_count; |
| 1609 | ubi->max_ec = ai->max_ec; |
| 1610 | ubi->mean_ec = ai->mean_ec; |
| 1611 | dbg_gen("max. sequence number: %llu", ai->max_sqnum); |
| 1612 | |
| 1613 | err = ubi_read_volume_table(ubi, ai); |
| 1614 | if (err) |
| 1615 | goto out_ai; |
| 1616 | |
| 1617 | err = ubi_wl_init(ubi, ai); |
| 1618 | if (err) |
| 1619 | goto out_vtbl; |
| 1620 | |
| 1621 | err = ubi_eba_init(ubi, ai); |
| 1622 | if (err) |
| 1623 | goto out_wl; |
| 1624 | |
| 1625 | #ifdef CONFIG_MTD_UBI_FASTMAP |
Richard Weinberger | 560d86a | 2014-10-27 13:00:26 +0100 | [diff] [blame] | 1626 | if (ubi->fm && ubi_dbg_chk_fastmap(ubi)) { |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1627 | struct ubi_attach_info *scan_ai; |
| 1628 | |
Richard Weinberger | d2158f6 | 2014-10-06 15:58:07 +0200 | [diff] [blame] | 1629 | scan_ai = alloc_ai(); |
Julia Lawall | 4d52514 | 2013-12-29 23:47:19 +0100 | [diff] [blame] | 1630 | if (!scan_ai) { |
| 1631 | err = -ENOMEM; |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1632 | goto out_wl; |
Julia Lawall | 4d52514 | 2013-12-29 23:47:19 +0100 | [diff] [blame] | 1633 | } |
Richard Weinberger | dac6e20 | 2012-09-26 17:51:47 +0200 | [diff] [blame] | 1634 | |
| 1635 | err = scan_all(ubi, scan_ai, 0); |
| 1636 | if (err) { |
| 1637 | destroy_ai(scan_ai); |
| 1638 | goto out_wl; |
| 1639 | } |
| 1640 | |
| 1641 | err = self_check_eba(ubi, ai, scan_ai); |
| 1642 | destroy_ai(scan_ai); |
| 1643 | |
| 1644 | if (err) |
| 1645 | goto out_wl; |
| 1646 | } |
| 1647 | #endif |
| 1648 | |
| 1649 | destroy_ai(ai); |
| 1650 | return 0; |
| 1651 | |
| 1652 | out_wl: |
| 1653 | ubi_wl_close(ubi); |
| 1654 | out_vtbl: |
| 1655 | ubi_free_internal_volumes(ubi); |
| 1656 | vfree(ubi->vtbl); |
| 1657 | out_ai: |
| 1658 | destroy_ai(ai); |
| 1659 | return err; |
| 1660 | } |
| 1661 | |
| 1662 | /** |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1663 | * self_check_ai - check the attaching information. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1664 | * @ubi: UBI device description object |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1665 | * @ai: attaching information |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1666 | * |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1667 | * This function returns zero if the attaching information is all right, and a |
Artem Bityutskiy | adbf05e | 2010-01-20 10:28:58 +0200 | [diff] [blame] | 1668 | * negative error code if not or if an error occurred. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1669 | */ |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1670 | static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1671 | { |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 1672 | struct ubi_vid_io_buf *vidb = ai->vidb; |
| 1673 | struct ubi_vid_hdr *vidh = ubi_get_vid_hdr(vidb); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1674 | int pnum, err, vols_found = 0; |
| 1675 | struct rb_node *rb1, *rb2; |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1676 | struct ubi_ainf_volume *av; |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1677 | struct ubi_ainf_peb *aeb, *last_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1678 | uint8_t *buf; |
| 1679 | |
Ezequiel Garcia | 6457557 | 2012-11-28 09:18:29 -0300 | [diff] [blame] | 1680 | if (!ubi_dbg_chk_gen(ubi)) |
Artem Bityutskiy | 92d124f | 2011-03-14 18:17:40 +0200 | [diff] [blame] | 1681 | return 0; |
| 1682 | |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1683 | /* |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1684 | * At first, check that attaching information is OK. |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1685 | */ |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1686 | ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) { |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1687 | int leb_count = 0; |
| 1688 | |
| 1689 | cond_resched(); |
| 1690 | |
| 1691 | vols_found += 1; |
| 1692 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1693 | if (ai->is_empty) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1694 | ubi_err(ubi, "bad is_empty flag"); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1695 | goto bad_av; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1696 | } |
| 1697 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1698 | if (av->vol_id < 0 || av->highest_lnum < 0 || |
| 1699 | av->leb_count < 0 || av->vol_type < 0 || av->used_ebs < 0 || |
| 1700 | av->data_pad < 0 || av->last_data_size < 0) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1701 | ubi_err(ubi, "negative values"); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1702 | goto bad_av; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1703 | } |
| 1704 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1705 | if (av->vol_id >= UBI_MAX_VOLUMES && |
| 1706 | av->vol_id < UBI_INTERNAL_VOL_START) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1707 | ubi_err(ubi, "bad vol_id"); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1708 | goto bad_av; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1709 | } |
| 1710 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1711 | if (av->vol_id > ai->highest_vol_id) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1712 | ubi_err(ubi, "highest_vol_id is %d, but vol_id %d is there", |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1713 | ai->highest_vol_id, av->vol_id); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1714 | goto out; |
| 1715 | } |
| 1716 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1717 | if (av->vol_type != UBI_DYNAMIC_VOLUME && |
| 1718 | av->vol_type != UBI_STATIC_VOLUME) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1719 | ubi_err(ubi, "bad vol_type"); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1720 | goto bad_av; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1721 | } |
| 1722 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1723 | if (av->data_pad > ubi->leb_size / 2) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1724 | ubi_err(ubi, "bad data_pad"); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1725 | goto bad_av; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1726 | } |
| 1727 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1728 | last_aeb = NULL; |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1729 | ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) { |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1730 | cond_resched(); |
| 1731 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1732 | last_aeb = aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1733 | leb_count += 1; |
| 1734 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1735 | if (aeb->pnum < 0 || aeb->ec < 0) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1736 | ubi_err(ubi, "negative values"); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1737 | goto bad_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1738 | } |
| 1739 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1740 | if (aeb->ec < ai->min_ec) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1741 | ubi_err(ubi, "bad ai->min_ec (%d), %d found", |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1742 | ai->min_ec, aeb->ec); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1743 | goto bad_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1744 | } |
| 1745 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1746 | if (aeb->ec > ai->max_ec) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1747 | ubi_err(ubi, "bad ai->max_ec (%d), %d found", |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1748 | ai->max_ec, aeb->ec); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1749 | goto bad_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1750 | } |
| 1751 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1752 | if (aeb->pnum >= ubi->peb_count) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1753 | ubi_err(ubi, "too high PEB number %d, total PEBs %d", |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1754 | aeb->pnum, ubi->peb_count); |
| 1755 | goto bad_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1756 | } |
| 1757 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1758 | if (av->vol_type == UBI_STATIC_VOLUME) { |
| 1759 | if (aeb->lnum >= av->used_ebs) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1760 | ubi_err(ubi, "bad lnum or used_ebs"); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1761 | goto bad_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1762 | } |
| 1763 | } else { |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1764 | if (av->used_ebs != 0) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1765 | ubi_err(ubi, "non-zero used_ebs"); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1766 | goto bad_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1767 | } |
| 1768 | } |
| 1769 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1770 | if (aeb->lnum > av->highest_lnum) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1771 | ubi_err(ubi, "incorrect highest_lnum or lnum"); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1772 | goto bad_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1773 | } |
| 1774 | } |
| 1775 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1776 | if (av->leb_count != leb_count) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1777 | ubi_err(ubi, "bad leb_count, %d objects in the tree", |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1778 | leb_count); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1779 | goto bad_av; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1780 | } |
| 1781 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1782 | if (!last_aeb) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1783 | continue; |
| 1784 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1785 | aeb = last_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1786 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1787 | if (aeb->lnum != av->highest_lnum) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1788 | ubi_err(ubi, "bad highest_lnum"); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1789 | goto bad_aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1790 | } |
| 1791 | } |
| 1792 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1793 | if (vols_found != ai->vols_found) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1794 | ubi_err(ubi, "bad ai->vols_found %d, should be %d", |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1795 | ai->vols_found, vols_found); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1796 | goto out; |
| 1797 | } |
| 1798 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1799 | /* Check that attaching information is correct */ |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1800 | ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) { |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1801 | last_aeb = NULL; |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1802 | ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) { |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1803 | int vol_type; |
| 1804 | |
| 1805 | cond_resched(); |
| 1806 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1807 | last_aeb = aeb; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1808 | |
Boris Brezillon | 3291b52 | 2016-09-16 16:59:26 +0200 | [diff] [blame] | 1809 | err = ubi_io_read_vid_hdr(ubi, aeb->pnum, vidb, 1); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1810 | if (err && err != UBI_IO_BITFLIPS) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1811 | ubi_err(ubi, "VID header is not OK (%d)", |
| 1812 | err); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1813 | if (err > 0) |
| 1814 | err = -EIO; |
| 1815 | return err; |
| 1816 | } |
| 1817 | |
| 1818 | vol_type = vidh->vol_type == UBI_VID_DYNAMIC ? |
| 1819 | UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME; |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1820 | if (av->vol_type != vol_type) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1821 | ubi_err(ubi, "bad vol_type"); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1822 | goto bad_vid_hdr; |
| 1823 | } |
| 1824 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1825 | if (aeb->sqnum != be64_to_cpu(vidh->sqnum)) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1826 | ubi_err(ubi, "bad sqnum %llu", aeb->sqnum); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1827 | goto bad_vid_hdr; |
| 1828 | } |
| 1829 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1830 | if (av->vol_id != be32_to_cpu(vidh->vol_id)) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1831 | ubi_err(ubi, "bad vol_id %d", av->vol_id); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1832 | goto bad_vid_hdr; |
| 1833 | } |
| 1834 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1835 | if (av->compat != vidh->compat) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1836 | ubi_err(ubi, "bad compat %d", vidh->compat); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1837 | goto bad_vid_hdr; |
| 1838 | } |
| 1839 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1840 | if (aeb->lnum != be32_to_cpu(vidh->lnum)) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1841 | ubi_err(ubi, "bad lnum %d", aeb->lnum); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1842 | goto bad_vid_hdr; |
| 1843 | } |
| 1844 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1845 | if (av->used_ebs != be32_to_cpu(vidh->used_ebs)) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1846 | ubi_err(ubi, "bad used_ebs %d", av->used_ebs); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1847 | goto bad_vid_hdr; |
| 1848 | } |
| 1849 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1850 | if (av->data_pad != be32_to_cpu(vidh->data_pad)) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1851 | ubi_err(ubi, "bad data_pad %d", av->data_pad); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1852 | goto bad_vid_hdr; |
| 1853 | } |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1854 | } |
| 1855 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1856 | if (!last_aeb) |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1857 | continue; |
| 1858 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1859 | if (av->highest_lnum != be32_to_cpu(vidh->lnum)) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1860 | ubi_err(ubi, "bad highest_lnum %d", av->highest_lnum); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1861 | goto bad_vid_hdr; |
| 1862 | } |
| 1863 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1864 | if (av->last_data_size != be32_to_cpu(vidh->data_size)) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1865 | ubi_err(ubi, "bad last_data_size %d", |
| 1866 | av->last_data_size); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1867 | goto bad_vid_hdr; |
| 1868 | } |
| 1869 | } |
| 1870 | |
| 1871 | /* |
| 1872 | * Make sure that all the physical eraseblocks are in one of the lists |
| 1873 | * or trees. |
| 1874 | */ |
Mariusz Kozlowski | d9b0744 | 2007-08-01 00:02:10 +0200 | [diff] [blame] | 1875 | buf = kzalloc(ubi->peb_count, GFP_KERNEL); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1876 | if (!buf) |
| 1877 | return -ENOMEM; |
| 1878 | |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1879 | for (pnum = 0; pnum < ubi->peb_count; pnum++) { |
| 1880 | err = ubi_io_is_bad(ubi, pnum); |
Artem Bityutskiy | 341e1a0 | 2007-05-03 11:59:51 +0300 | [diff] [blame] | 1881 | if (err < 0) { |
| 1882 | kfree(buf); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1883 | return err; |
Artem Bityutskiy | 9c9ec14 | 2008-07-18 13:19:52 +0300 | [diff] [blame] | 1884 | } else if (err) |
Mariusz Kozlowski | d9b0744 | 2007-08-01 00:02:10 +0200 | [diff] [blame] | 1885 | buf[pnum] = 1; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1886 | } |
| 1887 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1888 | ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) |
| 1889 | ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1890 | buf[aeb->pnum] = 1; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1891 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1892 | list_for_each_entry(aeb, &ai->free, u.list) |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1893 | buf[aeb->pnum] = 1; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1894 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1895 | list_for_each_entry(aeb, &ai->corr, u.list) |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1896 | buf[aeb->pnum] = 1; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1897 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1898 | list_for_each_entry(aeb, &ai->erase, u.list) |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1899 | buf[aeb->pnum] = 1; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1900 | |
Artem Bityutskiy | a4e6042 | 2012-05-17 13:09:08 +0300 | [diff] [blame] | 1901 | list_for_each_entry(aeb, &ai->alien, u.list) |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1902 | buf[aeb->pnum] = 1; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1903 | |
| 1904 | err = 0; |
| 1905 | for (pnum = 0; pnum < ubi->peb_count; pnum++) |
Mariusz Kozlowski | d9b0744 | 2007-08-01 00:02:10 +0200 | [diff] [blame] | 1906 | if (!buf[pnum]) { |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1907 | ubi_err(ubi, "PEB %d is not referred", pnum); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1908 | err = 1; |
| 1909 | } |
| 1910 | |
| 1911 | kfree(buf); |
| 1912 | if (err) |
| 1913 | goto out; |
| 1914 | return 0; |
| 1915 | |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1916 | bad_aeb: |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1917 | ubi_err(ubi, "bad attaching information about LEB %d", aeb->lnum); |
Artem Bityutskiy | 2c5ec5c | 2012-05-17 08:26:24 +0300 | [diff] [blame] | 1918 | ubi_dump_aeb(aeb, 0); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1919 | ubi_dump_av(av); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1920 | goto out; |
| 1921 | |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1922 | bad_av: |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1923 | ubi_err(ubi, "bad attaching information about volume %d", av->vol_id); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1924 | ubi_dump_av(av); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1925 | goto out; |
| 1926 | |
| 1927 | bad_vid_hdr: |
Tanya Brokhman | 32608703 | 2014-10-20 19:57:00 +0300 | [diff] [blame] | 1928 | ubi_err(ubi, "bad attaching information about volume %d", av->vol_id); |
Artem Bityutskiy | 517af48 | 2012-05-17 14:38:34 +0300 | [diff] [blame] | 1929 | ubi_dump_av(av); |
Artem Bityutskiy | a904e3f | 2012-04-25 09:02:44 +0300 | [diff] [blame] | 1930 | ubi_dump_vid_hdr(vidh); |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1931 | |
| 1932 | out: |
Artem Bityutskiy | 25886a3 | 2012-04-24 06:59:49 +0300 | [diff] [blame] | 1933 | dump_stack(); |
Artem Bityutskiy | adbf05e | 2010-01-20 10:28:58 +0200 | [diff] [blame] | 1934 | return -EINVAL; |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 1935 | } |