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