blob: 903becd3141051d23142baa75f52df1939a2bc94 [file] [log] [blame]
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001/*
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 Bityutskiyfbd01072012-05-17 16:12:26 +030022 * UBI attaching sub-system.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040023 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030024 * This sub-system is responsible for attaching MTD devices and it also
25 * implements flash media scanning.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040026 *
Artem Bityutskiya4e60422012-05-17 13:09:08 +030027 * The attaching information is represented by a &struct ubi_attach_info'
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030028 * 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. Bityutskiy801c1352006-06-27 12:22:22 +040031 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030032 * 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. Bityutskiy801c1352006-06-27 12:22:22 +040037 *
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 Bityutskiy0525dac2010-09-03 17:11:37 +030041 *
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030042 * 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 Bityutskiy0525dac2010-09-03 17:11:37 +030050 * UBI tries to distinguish between 2 types of corruptions.
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030051 *
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 Bityutskiyfbd01072012-05-17 16:12:26 +030054 * 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 Bityutskiyfef2deb2010-10-29 08:34:50 +030058 *
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 Bityutskiy0525dac2010-09-03 17:11:37 +030062 *
63 * 2. Unexpected corruptions which are not caused by power cuts. During
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030064 * attaching, such PEBs are put to the @corr list and UBI preserves them.
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030065 * 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 Bityutskiy45aafd32010-10-20 11:54:58 +030068 *
69 * However, it is difficult to reliably distinguish between these types of
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030070 * 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 Bityutskiyfef2deb2010-10-29 08:34:50 +030077 * 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 Bityutskiy45aafd32010-10-20 11:54:58 +030079 * NAND), it is probably a PEB which was being erased when power cut
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030080 * happened, so this is corruption type 1. However, this is just a guess,
81 * which might be wrong.
Brian Norris55393ba2012-08-31 14:43:41 -070082 * o Otherwise this is corruption type 2.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040083 */
84
85#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090086#include <linux/slab.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040087#include <linux/crc32.h>
Artem Bityutskiy3013ee32009-01-16 19:08:43 +020088#include <linux/math64.h>
Matthieu CASTET095751a2010-06-03 16:14:27 +020089#include <linux/random.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040090#include "ubi.h"
91
Artem Bityutskiya4e60422012-05-17 13:09:08 +030092static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040093
94/* Temporary variables used during scanning */
95static struct ubi_ec_hdr *ech;
96static struct ubi_vid_hdr *vidh;
97
Artem Bityutskiy941dfb02007-05-05 16:33:13 +030098/**
Artem Bityutskiy78d87c92007-05-05 11:24:02 +030099 * add_to_list - add physical eraseblock to a list.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300100 * @ai: attaching information
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300101 * @pnum: physical eraseblock number to add
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200102 * @vol_id: the last used volume id for the PEB
103 * @lnum: the last used LEB number for the PEB
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300104 * @ec: erase counter of the physical eraseblock
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300105 * @to_head: if not zero, add to the head of the list
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300106 * @list: the list to add to
107 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300108 * 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 Reardon6dd3bc72012-05-16 14:20:56 +0200110 * 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 Bityutskiy0525dac2010-09-03 17:11:37 +0300112 * 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 Bityutskiy3fb34122010-09-03 15:36:12 +0300117 * failure.
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300118 */
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200119static 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. Bityutskiy801c1352006-06-27 12:22:22 +0400121{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300122 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400123
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300124 if (list == &ai->free) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400125 dbg_bld("add to free: PEB %d, EC %d", pnum, ec);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300126 } else if (list == &ai->erase) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400127 dbg_bld("add to erase: PEB %d, EC %d", pnum, ec);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300128 } else if (list == &ai->alien) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400129 dbg_bld("add to alien: PEB %d, EC %d", pnum, ec);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300130 ai->alien_peb_count += 1;
Artem Bityutskiy33789fb2010-04-30 12:31:26 +0300131 } else
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400132 BUG();
133
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +0300134 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300135 if (!aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400136 return -ENOMEM;
137
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300138 aeb->pnum = pnum;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200139 aeb->vol_id = vol_id;
140 aeb->lnum = lnum;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300141 aeb->ec = ec;
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300142 if (to_head)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300143 list_add(&aeb->u.list, list);
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300144 else
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300145 list_add_tail(&aeb->u.list, list);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400146 return 0;
147}
148
149/**
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300150 * add_corrupted - add a corrupted physical eraseblock.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300151 * @ai: attaching information
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300152 * @pnum: physical eraseblock number to add
153 * @ec: erase counter of the physical eraseblock
154 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300155 * 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 Bityutskiy3fb34122010-09-03 15:36:12 +0300159 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300160static int add_corrupted(struct ubi_attach_info *ai, int pnum, int ec)
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300161{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300162 struct ubi_ainf_peb *aeb;
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300163
164 dbg_bld("add to corrupted: PEB %d, EC %d", pnum, ec);
165
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +0300166 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300167 if (!aeb)
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300168 return -ENOMEM;
169
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300170 ai->corr_peb_count += 1;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300171 aeb->pnum = pnum;
172 aeb->ec = ec;
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300173 list_add(&aeb->u.list, &ai->corr);
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300174 return 0;
175}
176
177/**
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +0200178 * 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 */
190static 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 Bityutskiyebaaf1a2008-07-18 13:34:32 +0300212 * validate_vid_hdr - check volume identifier header.
Tanya Brokhman326087032014-10-20 19:57:00 +0300213 * @ubi: UBI device description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400214 * @vid_hdr: the volume identifier header to check
Artem Bityutskiy517af482012-05-17 14:38:34 +0300215 * @av: information about the volume this logical eraseblock belongs to
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400216 * @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 Bityutskiy85c6e6e2008-07-16 10:25:56 +0300222 * Most of the checks are done in the I/O sub-system. Here we check that the
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400223 * information in the VID header is consistent to the information in other VID
224 * headers of the same volume.
225 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300226static int validate_vid_hdr(const struct ubi_device *ubi,
227 const struct ubi_vid_hdr *vid_hdr,
Artem Bityutskiy517af482012-05-17 14:38:34 +0300228 const struct ubi_ainf_volume *av, int pnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400229{
230 int vol_type = vid_hdr->vol_type;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300231 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. Bityutskiy801c1352006-06-27 12:22:22 +0400234
Artem Bityutskiy517af482012-05-17 14:38:34 +0300235 if (av->leb_count != 0) {
236 int av_vol_type;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400237
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 Bityutskiy517af482012-05-17 14:38:34 +0300244 if (vol_id != av->vol_id) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300245 ubi_err(ubi, "inconsistent vol_id");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400246 goto bad;
247 }
248
Artem Bityutskiy517af482012-05-17 14:38:34 +0300249 if (av->vol_type == UBI_STATIC_VOLUME)
250 av_vol_type = UBI_VID_STATIC;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400251 else
Artem Bityutskiy517af482012-05-17 14:38:34 +0300252 av_vol_type = UBI_VID_DYNAMIC;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400253
Artem Bityutskiy517af482012-05-17 14:38:34 +0300254 if (vol_type != av_vol_type) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300255 ubi_err(ubi, "inconsistent vol_type");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400256 goto bad;
257 }
258
Artem Bityutskiy517af482012-05-17 14:38:34 +0300259 if (used_ebs != av->used_ebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300260 ubi_err(ubi, "inconsistent used_ebs");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400261 goto bad;
262 }
263
Artem Bityutskiy517af482012-05-17 14:38:34 +0300264 if (data_pad != av->data_pad) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300265 ubi_err(ubi, "inconsistent data_pad");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400266 goto bad;
267 }
268 }
269
270 return 0;
271
272bad:
Tanya Brokhman326087032014-10-20 19:57:00 +0300273 ubi_err(ubi, "inconsistent VID header at PEB %d", pnum);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300274 ubi_dump_vid_hdr(vid_hdr);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300275 ubi_dump_av(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400276 return -EINVAL;
277}
278
279/**
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300280 * add_volume - add volume to the attaching information.
281 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400282 * @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 Bityutskiya4e60422012-05-17 13:09:08 +0300287 * present in the attaching information, this function does nothing. Otherwise
288 * it adds corresponding volume to the attaching information. Returns a pointer
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300289 * to the allocated "av" object in case of success and a negative error code in
290 * case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400291 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300292static struct ubi_ainf_volume *add_volume(struct ubi_attach_info *ai,
Artem Bityutskiyafc15a82012-05-17 07:46:17 +0300293 int vol_id, int pnum,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400294 const struct ubi_vid_hdr *vid_hdr)
295{
Artem Bityutskiy517af482012-05-17 14:38:34 +0300296 struct ubi_ainf_volume *av;
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300297 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400298
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300299 ubi_assert(vol_id == be32_to_cpu(vid_hdr->vol_id));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400300
301 /* Walk the volume RB-tree to look if this volume is already present */
302 while (*p) {
303 parent = *p;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300304 av = rb_entry(parent, struct ubi_ainf_volume, rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400305
Artem Bityutskiy517af482012-05-17 14:38:34 +0300306 if (vol_id == av->vol_id)
307 return av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400308
Artem Bityutskiy517af482012-05-17 14:38:34 +0300309 if (vol_id > av->vol_id)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400310 p = &(*p)->rb_left;
311 else
312 p = &(*p)->rb_right;
313 }
314
315 /* The volume is absent - add it */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300316 av = kmalloc(sizeof(struct ubi_ainf_volume), GFP_KERNEL);
317 if (!av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400318 return ERR_PTR(-ENOMEM);
319
Artem Bityutskiy517af482012-05-17 14:38:34 +0300320 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. Bityutskiy801c1352006-06-27 12:22:22 +0400327 : UBI_STATIC_VOLUME;
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300328 if (vol_id > ai->highest_vol_id)
329 ai->highest_vol_id = vol_id;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400330
Artem Bityutskiy517af482012-05-17 14:38:34 +0300331 rb_link_node(&av->rb, parent, p);
332 rb_insert_color(&av->rb, &ai->volumes);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300333 ai->vols_found += 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400334 dbg_bld("added volume %d", vol_id);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300335 return av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400336}
337
338/**
Richard Weinbergerdac6e202012-09-26 17:51:47 +0200339 * ubi_compare_lebs - find out which logical eraseblock is newer.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400340 * @ubi: UBI device description object
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300341 * @aeb: first logical eraseblock to compare
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400342 * @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 Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300350 * o bit 0 is cleared: the first PEB (described by @aeb) is newer than the
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400351 * 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 Weinbergerdac6e202012-09-26 17:51:47 +0200358int ubi_compare_lebs(struct ubi_device *ubi, const struct ubi_ainf_peb *aeb,
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300359 int pnum, const struct ubi_vid_hdr *vid_hdr)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400360{
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400361 int len, err, second_is_newer, bitflips = 0, corrupted = 0;
362 uint32_t data_crc, crc;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300363 struct ubi_vid_hdr *vh = NULL;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300364 unsigned long long sqnum2 = be64_to_cpu(vid_hdr->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400365
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300366 if (sqnum2 == aeb->sqnum) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400367 /*
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300368 * 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 Bityutskiy0525dac2010-09-03 17:11:37 +0300372 * support these images anymore. Well, those images still work,
373 * but only if no unclean reboots happened.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400374 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300375 ubi_err(ubi, "unsupported on-flash UBI format");
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300376 return -EINVAL;
377 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400378
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300379 /* Obviously the LEB with lower sequence counter is older */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300380 second_is_newer = (sqnum2 > aeb->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400381
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 Bityutskiy9869cd82008-07-18 13:53:39 +0300388 * Note: this may be optimized so that we wouldn't read twice.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400389 */
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 Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300399 if (!aeb->copy_flag) {
Artem Bityutskiyfb22b592010-10-19 22:00:11 +0300400 /* 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. Bityutskiy801c1352006-06-27 12:22:22 +0400405
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300406 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300407 if (!vh)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400408 return -ENOMEM;
409
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300410 pnum = aeb->pnum;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300411 err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400412 if (err) {
413 if (err == UBI_IO_BITFLIPS)
414 bitflips = 1;
415 else {
Tanya Brokhman326087032014-10-20 19:57:00 +0300416 ubi_err(ubi, "VID of PEB %d header is bad, but it was OK earlier, err %d",
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300417 pnum, err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400418 if (err > 0)
419 err = -EIO;
420
421 goto out_free_vidh;
422 }
423 }
424
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300425 vid_hdr = vh;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400426 }
427
428 /* Read the data of the copy and check the CRC */
429
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300430 len = be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400431
Artem Bityutskiyd125a752012-10-26 16:11:26 +0300432 mutex_lock(&ubi->buf_mutex);
433 err = ubi_io_read_data(ubi, ubi->peb_buf, pnum, 0, len);
Brian Norrisd57f40542011-09-20 18:34:25 -0700434 if (err && err != UBI_IO_BITFLIPS && !mtd_is_eccerr(err))
Artem Bityutskiyd125a752012-10-26 16:11:26 +0300435 goto out_unlock;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400436
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300437 data_crc = be32_to_cpu(vid_hdr->data_crc);
Artem Bityutskiyd125a752012-10-26 16:11:26 +0300438 crc = crc32(UBI_CRC32_INIT, ubi->peb_buf, len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400439 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 Norris8eef7d72015-02-28 02:23:25 -0800447 bitflips |= !!err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400448 }
Artem Bityutskiyd125a752012-10-26 16:11:26 +0300449 mutex_unlock(&ubi->buf_mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400450
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300451 ubi_free_vid_hdr(ubi, vh);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400452
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 Bityutskiyd125a752012-10-26 16:11:26 +0300460out_unlock:
461 mutex_unlock(&ubi->buf_mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400462out_free_vidh:
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300463 ubi_free_vid_hdr(ubi, vh);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400464 return err;
465}
466
467/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300468 * ubi_add_to_av - add used physical eraseblock to the attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400469 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300470 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400471 * @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 Bityutskiy79b510c2007-05-05 17:36:17 +0300476 * 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. Bityutskiy801c1352006-06-27 12:22:22 +0400482 */
Artem Bityutskiy35611882012-05-17 15:31:31 +0300483int 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. Bityutskiy801c1352006-06-27 12:22:22 +0400485{
486 int err, vol_id, lnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400487 unsigned long long sqnum;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300488 struct ubi_ainf_volume *av;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300489 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400490 struct rb_node **p, *parent = NULL;
491
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300492 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. Bityutskiy801c1352006-06-27 12:22:22 +0400495
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300496 dbg_bld("PEB %d, LEB %d:%d, EC %d, sqnum %llu, bitflips %d",
497 pnum, vol_id, lnum, ec, sqnum, bitflips);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400498
Artem Bityutskiy517af482012-05-17 14:38:34 +0300499 av = add_volume(ai, vol_id, pnum, vid_hdr);
500 if (IS_ERR(av))
501 return PTR_ERR(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400502
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300503 if (ai->max_sqnum < sqnum)
504 ai->max_sqnum = sqnum;
Brijesh Singh76eafe42007-07-06 14:35:43 +0300505
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400506 /*
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 Bityutskiy517af482012-05-17 14:38:34 +0300510 p = &av->root.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400511 while (*p) {
512 int cmp_res;
513
514 parent = *p;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300515 aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
516 if (lnum != aeb->lnum) {
517 if (lnum < aeb->lnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400518 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 Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300529 dbg_bld("this LEB already exists: PEB %d, sqnum %llu, EC %d",
530 aeb->pnum, aeb->sqnum, aeb->ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400531
532 /*
533 * Make sure that the logical eraseblocks have different
534 * sequence numbers. Otherwise the image is bad.
535 *
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300536 * 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 Weinbergerdac6e202012-09-26 17:51:47 +0200541 * 'ubi_compare_lebs()'. In other words, we attach old clean
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300542 * images, but refuse attaching old images with duplicated
543 * logical eraseblocks because there was an unclean reboot.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400544 */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300545 if (aeb->sqnum == sqnum && sqnum != 0) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300546 ubi_err(ubi, "two LEBs with same sequence number %llu",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400547 sqnum);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300548 ubi_dump_aeb(aeb, 0);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300549 ubi_dump_vid_hdr(vid_hdr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400550 return -EINVAL;
551 }
552
553 /*
554 * Now we have to drop the older one and preserve the newer
555 * one.
556 */
Richard Weinbergerdac6e202012-09-26 17:51:47 +0200557 cmp_res = ubi_compare_lebs(ubi, aeb, pnum, vid_hdr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400558 if (cmp_res < 0)
559 return cmp_res;
560
561 if (cmp_res & 1) {
562 /*
Shinya Kuribayashi3f502622010-05-06 19:21:47 +0900563 * This logical eraseblock is newer than the one
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400564 * found earlier.
565 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300566 err = validate_vid_hdr(ubi, vid_hdr, av, pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400567 if (err)
568 return err;
569
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200570 err = add_to_list(ai, aeb->pnum, aeb->vol_id,
571 aeb->lnum, aeb->ec, cmp_res & 4,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300572 &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400573 if (err)
574 return err;
575
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300576 aeb->ec = ec;
577 aeb->pnum = pnum;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200578 aeb->vol_id = vol_id;
579 aeb->lnum = lnum;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300580 aeb->scrub = ((cmp_res & 2) || bitflips);
581 aeb->copy_flag = vid_hdr->copy_flag;
582 aeb->sqnum = sqnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400583
Artem Bityutskiy517af482012-05-17 14:38:34 +0300584 if (av->highest_lnum == lnum)
585 av->last_data_size =
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300586 be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400587
588 return 0;
589 } else {
590 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200591 * This logical eraseblock is older than the one found
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400592 * previously.
593 */
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200594 return add_to_list(ai, pnum, vol_id, lnum, ec,
595 cmp_res & 4, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400596 }
597 }
598
599 /*
600 * We've met this logical eraseblock for the first time, add it to the
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300601 * attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400602 */
603
Tanya Brokhman326087032014-10-20 19:57:00 +0300604 err = validate_vid_hdr(ubi, vid_hdr, av, pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400605 if (err)
606 return err;
607
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +0300608 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300609 if (!aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400610 return -ENOMEM;
611
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300612 aeb->ec = ec;
613 aeb->pnum = pnum;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200614 aeb->vol_id = vol_id;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300615 aeb->lnum = lnum;
616 aeb->scrub = bitflips;
617 aeb->copy_flag = vid_hdr->copy_flag;
618 aeb->sqnum = sqnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400619
Artem Bityutskiy517af482012-05-17 14:38:34 +0300620 if (av->highest_lnum <= lnum) {
621 av->highest_lnum = lnum;
622 av->last_data_size = be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400623 }
624
Artem Bityutskiy517af482012-05-17 14:38:34 +0300625 av->leb_count += 1;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300626 rb_link_node(&aeb->u.rb, parent, p);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300627 rb_insert_color(&aeb->u.rb, &av->root);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400628 return 0;
629}
630
631/**
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300632 * ubi_find_av - find volume in the attaching information.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300633 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400634 * @vol_id: the requested volume ID
635 *
636 * This function returns a pointer to the volume description or %NULL if there
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300637 * are no data about this volume in the attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400638 */
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300639struct ubi_ainf_volume *ubi_find_av(const struct ubi_attach_info *ai,
640 int vol_id)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400641{
Artem Bityutskiy517af482012-05-17 14:38:34 +0300642 struct ubi_ainf_volume *av;
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300643 struct rb_node *p = ai->volumes.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400644
645 while (p) {
Artem Bityutskiy517af482012-05-17 14:38:34 +0300646 av = rb_entry(p, struct ubi_ainf_volume, rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400647
Artem Bityutskiy517af482012-05-17 14:38:34 +0300648 if (vol_id == av->vol_id)
649 return av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400650
Artem Bityutskiy517af482012-05-17 14:38:34 +0300651 if (vol_id > av->vol_id)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400652 p = p->rb_left;
653 else
654 p = p->rb_right;
655 }
656
657 return NULL;
658}
659
660/**
Artem Bityutskiyd717dc22012-05-17 15:36:39 +0300661 * ubi_remove_av - delete attaching information about a volume.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300662 * @ai: attaching information
Artem Bityutskiy517af482012-05-17 14:38:34 +0300663 * @av: the volume attaching information to delete
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400664 */
Artem Bityutskiyd717dc22012-05-17 15:36:39 +0300665void ubi_remove_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400666{
667 struct rb_node *rb;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300668 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400669
Artem Bityutskiy517af482012-05-17 14:38:34 +0300670 dbg_bld("remove attaching information about volume %d", av->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400671
Artem Bityutskiy517af482012-05-17 14:38:34 +0300672 while ((rb = rb_first(&av->root))) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300673 aeb = rb_entry(rb, struct ubi_ainf_peb, u.rb);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300674 rb_erase(&aeb->u.rb, &av->root);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300675 list_add_tail(&aeb->u.list, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400676 }
677
Artem Bityutskiy517af482012-05-17 14:38:34 +0300678 rb_erase(&av->rb, &ai->volumes);
679 kfree(av);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300680 ai->vols_found -= 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400681}
682
683/**
Artem Bityutskiy13d33da2012-05-17 15:20:28 +0300684 * early_erase_peb - erase a physical eraseblock.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400685 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300686 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400687 * @pnum: physical eraseblock number to erase;
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +0300688 * @ec: erase counter value to write (%UBI_UNKNOWN if it is unknown)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400689 *
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 Bityutskiy85c6e6e2008-07-16 10:25:56 +0300692 * 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. Bityutskiy801c1352006-06-27 12:22:22 +0400695 */
Artem Bityutskiy13d33da2012-05-17 15:20:28 +0300696static int early_erase_peb(struct ubi_device *ubi,
697 const struct ubi_attach_info *ai, int pnum, int ec)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400698{
699 int err;
700 struct ubi_ec_hdr *ec_hdr;
701
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400702 if ((long long)ec >= UBI_MAX_ERASECOUNTER) {
703 /*
704 * Erase counter overflow. Upgrade UBI and use 64-bit
705 * erase counters internally.
706 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300707 ubi_err(ubi, "erase counter overflow at PEB %d, EC %d",
708 pnum, ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400709 return -EINVAL;
710 }
711
Florin Malitadcec4c32007-07-19 15:22:41 -0400712 ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
713 if (!ec_hdr)
714 return -ENOMEM;
715
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300716 ec_hdr->ec = cpu_to_be64(ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400717
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
724out_free:
725 kfree(ec_hdr);
726 return err;
727}
728
729/**
Artem Bityutskiyc87fbd72012-05-17 15:38:56 +0300730 * ubi_early_get_peb - get a free physical eraseblock.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400731 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300732 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400733 *
734 * This function returns a free physical eraseblock. It is supposed to be
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300735 * 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. Bityutskiy801c1352006-06-27 12:22:22 +0400739 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300740 * 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. Bityutskiy801c1352006-06-27 12:22:22 +0400742 */
Artem Bityutskiyc87fbd72012-05-17 15:38:56 +0300743struct ubi_ainf_peb *ubi_early_get_peb(struct ubi_device *ubi,
744 struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400745{
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300746 int err = 0;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300747 struct ubi_ainf_peb *aeb, *tmp_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400748
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300749 if (!list_empty(&ai->free)) {
750 aeb = list_entry(ai->free.next, struct ubi_ainf_peb, u.list);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300751 list_del(&aeb->u.list);
752 dbg_bld("return free PEB %d, EC %d", aeb->pnum, aeb->ec);
753 return aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400754 }
755
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300756 /*
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 Bityutskiya4e60422012-05-17 13:09:08 +0300762 list_for_each_entry_safe(aeb, tmp_aeb, &ai->erase, u.list) {
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +0300763 if (aeb->ec == UBI_UNKNOWN)
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300764 aeb->ec = ai->mean_ec;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400765
Artem Bityutskiy13d33da2012-05-17 15:20:28 +0300766 err = early_erase_peb(ubi, ai, aeb->pnum, aeb->ec+1);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300767 if (err)
768 continue;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400769
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300770 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. Bityutskiy801c1352006-06-27 12:22:22 +0400774 }
775
Tanya Brokhman326087032014-10-20 19:57:00 +0300776 ubi_err(ubi, "no free eraseblocks");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400777 return ERR_PTR(-ENOSPC);
778}
779
780/**
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300781 * check_corruption - check the data area of PEB.
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300782 * @ubi: UBI device description object
Richard Weinbergerdac6e202012-09-26 17:51:47 +0200783 * @vid_hdr: the (corrupted) VID header of this PEB
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300784 * @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 Bityutskiy45aafd32010-10-20 11:54:58 +0300788 * 0xFF bytes in the data area, the VID header is most probably corrupted
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300789 * because of a power cut (%0 is returned in this case). Otherwise, it was
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300790 * 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 Bityutskiyfeeba4b2010-09-03 22:50:53 +0300792 *
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 Bityutskiy45aafd32010-10-20 11:54:58 +0300797static int check_corruption(struct ubi_device *ubi, struct ubi_vid_hdr *vid_hdr,
798 int pnum)
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300799{
800 int err;
801
802 mutex_lock(&ubi->buf_mutex);
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200803 memset(ubi->peb_buf, 0x00, ubi->leb_size);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300804
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200805 err = ubi_io_read(ubi, ubi->peb_buf, pnum, ubi->leb_start,
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300806 ubi->leb_size);
Brian Norrisd57f40542011-09-20 18:34:25 -0700807 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err)) {
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300808 /*
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 Carpenter1b1d76e2010-11-18 06:58:04 +0300815 err = 0;
816 goto out_unlock;
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300817 }
818
819 if (err)
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300820 goto out_unlock;
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300821
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200822 if (ubi_check_pattern(ubi->peb_buf, 0xFF, ubi->leb_size))
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300823 goto out_unlock;
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300824
Tanya Brokhman326087032014-10-20 19:57:00 +0300825 ubi_err(ubi, "PEB %d contains corrupted VID header, and the data does not contain all 0xFF",
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300826 pnum);
Tanya Brokhman326087032014-10-20 19:57:00 +0300827 ubi_err(ubi, "this may be a non-UBI PEB or a severe VID header corruption which requires manual inspection");
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300828 ubi_dump_vid_hdr(vid_hdr);
Artem Bityutskiy719bb842012-08-27 17:14:58 +0300829 pr_err("hexdump of PEB %d offset %d, length %d",
830 pnum, ubi->leb_start, ubi->leb_size);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300831 ubi_dbg_print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1,
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200832 ubi->peb_buf, ubi->leb_size, 1);
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300833 err = 1;
834
835out_unlock:
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300836 mutex_unlock(&ubi->buf_mutex);
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300837 return err;
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300838}
839
Richard Weinberger243a4f82016-06-14 10:12:13 +0200840static 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 Bityutskiyfeeba4b2010-09-03 22:50:53 +0300854/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300855 * scan_peb - scan and process UBI headers of a PEB.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400856 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300857 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400858 * @pnum: the physical eraseblock number
Richard Weinberger74f2c6e2016-06-14 10:12:17 +0200859 * @fast: true if we're scanning for a Fastmap
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400860 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300861 * This function reads UBI headers of PEB @pnum, checks them, and adds
862 * information about this PEB to the corresponding list or RB-tree in the
863 * "attaching info" structure. Returns zero if the physical eraseblock was
864 * successfully handled and a negative error code in case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400865 */
Richard Weinberger74f2c6e2016-06-14 10:12:17 +0200866static int scan_peb(struct ubi_device *ubi, struct ubi_attach_info *ai,
867 int pnum, bool fast)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400868{
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +0200869 long long ec;
Richard Weinbergerdac6e202012-09-26 17:51:47 +0200870 int err, bitflips = 0, vol_id = -1, ec_err = 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400871
872 dbg_bld("scan PEB %d", pnum);
873
874 /* Skip bad physical eraseblocks */
875 err = ubi_io_is_bad(ubi, pnum);
876 if (err < 0)
877 return err;
878 else if (err) {
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300879 ai->bad_peb_count += 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400880 return 0;
881 }
882
883 err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
884 if (err < 0)
885 return err;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300886 switch (err) {
887 case 0:
888 break;
889 case UBI_IO_BITFLIPS:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400890 bitflips = 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300891 break;
892 case UBI_IO_FF:
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300893 ai->empty_peb_count += 1;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200894 return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
895 UBI_UNKNOWN, 0, &ai->erase);
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300896 case UBI_IO_FF_BITFLIPS:
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300897 ai->empty_peb_count += 1;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200898 return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
899 UBI_UNKNOWN, 1, &ai->erase);
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300900 case UBI_IO_BAD_HDR_EBADMSG:
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300901 case UBI_IO_BAD_HDR:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400902 /*
903 * We have to also look at the VID header, possibly it is not
904 * corrupted. Set %bitflips flag in order to make this PEB be
905 * moved and EC be re-created.
906 */
Artem Bityutskiye0e718c2010-09-03 14:53:23 +0300907 ec_err = err;
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +0300908 ec = UBI_UNKNOWN;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400909 bitflips = 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300910 break;
911 default:
Tanya Brokhman326087032014-10-20 19:57:00 +0300912 ubi_err(ubi, "'ubi_io_read_ec_hdr()' returned unknown code %d",
913 err);
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300914 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400915 }
916
Artem Bityutskiye0e718c2010-09-03 14:53:23 +0300917 if (!ec_err) {
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300918 int image_seq;
919
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400920 /* Make sure UBI version is OK */
921 if (ech->version != UBI_VERSION) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300922 ubi_err(ubi, "this UBI version is %d, image version is %d",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400923 UBI_VERSION, (int)ech->version);
924 return -EINVAL;
925 }
926
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300927 ec = be64_to_cpu(ech->ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400928 if (ec > UBI_MAX_ERASECOUNTER) {
929 /*
930 * Erase counter overflow. The EC headers have 64 bits
931 * reserved, but we anyway make use of only 31 bit
932 * values, as this seems to be enough for any existing
933 * flash. Upgrade UBI and use 64-bit erase counters
934 * internally.
935 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300936 ubi_err(ubi, "erase counter overflow, max is %d",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400937 UBI_MAX_ERASECOUNTER);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300938 ubi_dump_ec_hdr(ech);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400939 return -EINVAL;
940 }
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300941
Adrian Hunter32bc4822009-07-24 19:16:04 +0300942 /*
943 * Make sure that all PEBs have the same image sequence number.
944 * This allows us to detect situations when users flash UBI
945 * images incorrectly, so that the flash has the new UBI image
946 * and leftovers from the old one. This feature was added
947 * relatively recently, and the sequence number was always
948 * zero, because old UBI implementations always set it to zero.
949 * For this reasons, we do not panic if some PEBs have zero
950 * sequence number, while other PEBs have non-zero sequence
951 * number.
952 */
Holger Brunck3dc948d2009-07-13 16:47:57 +0200953 image_seq = be32_to_cpu(ech->image_seq);
Richard Genoud55b80c42013-09-28 15:55:14 +0200954 if (!ubi->image_seq)
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300955 ubi->image_seq = image_seq;
Richard Genoud55b80c42013-09-28 15:55:14 +0200956 if (image_seq && ubi->image_seq != image_seq) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300957 ubi_err(ubi, "bad image sequence number %d in PEB %d, expected %d",
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300958 image_seq, pnum, ubi->image_seq);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300959 ubi_dump_ec_hdr(ech);
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300960 return -EINVAL;
961 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400962 }
963
964 /* OK, we've done with the EC header, let's look at the VID header */
965
966 err = ubi_io_read_vid_hdr(ubi, pnum, vidh, 0);
967 if (err < 0)
968 return err;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300969 switch (err) {
970 case 0:
971 break;
972 case UBI_IO_BITFLIPS:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400973 bitflips = 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300974 break;
975 case UBI_IO_BAD_HDR_EBADMSG:
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300976 if (ec_err == UBI_IO_BAD_HDR_EBADMSG)
977 /*
978 * Both EC and VID headers are corrupted and were read
979 * with data integrity error, probably this is a bad
980 * PEB, bit it is not marked as bad yet. This may also
981 * be a result of power cut during erasure.
982 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300983 ai->maybe_bad_peb_count += 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300984 case UBI_IO_BAD_HDR:
Richard Weinberger74f2c6e2016-06-14 10:12:17 +0200985 /*
986 * If we're facing a bad VID header we have to drop *all*
987 * Fastmap data structures we find. The most recent Fastmap
988 * could be bad and therefore there is a chance that we attach
989 * from an old one. On a fine MTD stack a PEB must not render
990 * bad all of a sudden, but the reality is different.
991 * So, let's be paranoid and help finding the root cause by
992 * falling back to scanning mode instead of attaching with a
993 * bad EBA table and cause data corruption which is hard to
994 * analyze.
995 */
996 if (fast)
997 ai->force_full_scan = 1;
998
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300999 if (ec_err)
1000 /*
1001 * Both headers are corrupted. There is a possibility
1002 * that this a valid UBI PEB which has corresponding
1003 * LEB, but the headers are corrupted. However, it is
1004 * impossible to distinguish it from a PEB which just
Artem Bityutskiy45aafd32010-10-20 11:54:58 +03001005 * contains garbage because of a power cut during erase
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001006 * operation. So we just schedule this PEB for erasure.
Artem Bityutskiy7ac760c2010-12-02 06:34:01 +02001007 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001008 * Besides, in case of NOR flash, we deliberately
Artem Bityutskiy7ac760c2010-12-02 06:34:01 +02001009 * corrupt both headers because NOR flash erasure is
1010 * slow and can start from the end.
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001011 */
1012 err = 0;
1013 else
1014 /*
1015 * The EC was OK, but the VID header is corrupted. We
1016 * have to check what is in the data area.
1017 */
Artem Bityutskiy45aafd32010-10-20 11:54:58 +03001018 err = check_corruption(ubi, vidh, pnum);
Artem Bityutskiydf3fca42010-10-20 11:51:21 +03001019
1020 if (err < 0)
1021 return err;
1022 else if (!err)
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001023 /* This corruption is caused by a power cut */
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001024 err = add_to_list(ai, pnum, UBI_UNKNOWN,
1025 UBI_UNKNOWN, ec, 1, &ai->erase);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001026 else
1027 /* This is an unexpected corruption */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001028 err = add_corrupted(ai, pnum, ec);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001029 if (err)
1030 return err;
1031 goto adjust_mean_ec;
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001032 case UBI_IO_FF_BITFLIPS:
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001033 err = add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
1034 ec, 1, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001035 if (err)
1036 return err;
1037 goto adjust_mean_ec;
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001038 case UBI_IO_FF:
Matthieu CASTET193819c2012-08-22 16:03:46 +02001039 if (ec_err || bitflips)
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001040 err = add_to_list(ai, pnum, UBI_UNKNOWN,
1041 UBI_UNKNOWN, ec, 1, &ai->erase);
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001042 else
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001043 err = add_to_list(ai, pnum, UBI_UNKNOWN,
1044 UBI_UNKNOWN, ec, 0, &ai->free);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001045 if (err)
1046 return err;
1047 goto adjust_mean_ec;
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001048 default:
Tanya Brokhman326087032014-10-20 19:57:00 +03001049 ubi_err(ubi, "'ubi_io_read_vid_hdr()' returned unknown code %d",
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001050 err);
1051 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001052 }
1053
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001054 vol_id = be32_to_cpu(vidh->vol_id);
Richard Weinberger243a4f82016-06-14 10:12:13 +02001055 if (vol_id > UBI_MAX_VOLUMES && !vol_ignored(vol_id)) {
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001056 int lnum = be32_to_cpu(vidh->lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001057
1058 /* Unsupported internal volume */
1059 switch (vidh->compat) {
1060 case UBI_COMPAT_DELETE:
Richard Weinberger243a4f82016-06-14 10:12:13 +02001061 ubi_msg(ubi, "\"delete\" compatible internal volume %d:%d found, will remove it",
1062 vol_id, lnum);
1063
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001064 err = add_to_list(ai, pnum, vol_id, lnum,
1065 ec, 1, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001066 if (err)
1067 return err;
Brijesh Singh158132c2010-06-16 09:28:26 +03001068 return 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001069
1070 case UBI_COMPAT_RO:
Tanya Brokhman326087032014-10-20 19:57:00 +03001071 ubi_msg(ubi, "read-only compatible internal volume %d:%d found, switch to read-only mode",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001072 vol_id, lnum);
1073 ubi->ro_mode = 1;
1074 break;
1075
1076 case UBI_COMPAT_PRESERVE:
Tanya Brokhman326087032014-10-20 19:57:00 +03001077 ubi_msg(ubi, "\"preserve\" compatible internal volume %d:%d found",
Artem Bityutskiy049333c2012-08-27 14:43:54 +03001078 vol_id, lnum);
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001079 err = add_to_list(ai, pnum, vol_id, lnum,
1080 ec, 0, &ai->alien);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001081 if (err)
1082 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001083 return 0;
1084
1085 case UBI_COMPAT_REJECT:
Tanya Brokhman326087032014-10-20 19:57:00 +03001086 ubi_err(ubi, "incompatible internal volume %d:%d found",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001087 vol_id, lnum);
1088 return -EINVAL;
1089 }
1090 }
1091
Artem Bityutskiye0e718c2010-09-03 14:53:23 +03001092 if (ec_err)
Tanya Brokhman326087032014-10-20 19:57:00 +03001093 ubi_warn(ubi, "valid VID header but corrupted EC header at PEB %d",
Artem Bityutskiy29a88c92009-07-19 14:03:16 +03001094 pnum);
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001095
1096 if (ubi_is_fm_vol(vol_id))
1097 err = add_fastmap(ai, pnum, vidh, ec);
1098 else
1099 err = ubi_add_to_av(ubi, ai, pnum, ec, vidh, bitflips);
1100
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001101 if (err)
1102 return err;
1103
1104adjust_mean_ec:
Artem Bityutskiye0e718c2010-09-03 14:53:23 +03001105 if (!ec_err) {
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001106 ai->ec_sum += ec;
1107 ai->ec_count += 1;
1108 if (ec > ai->max_ec)
1109 ai->max_ec = ec;
1110 if (ec < ai->min_ec)
1111 ai->min_ec = ec;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001112 }
1113
1114 return 0;
1115}
1116
1117/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001118 * late_analysis - analyze the overall situation with PEB.
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001119 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001120 * @ai: attaching information
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001121 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001122 * This is a helper function which takes a look what PEBs we have after we
1123 * gather information about all of them ("ai" is compete). It decides whether
1124 * the flash is empty and should be formatted of whether there are too many
1125 * corrupted PEBs and we should not attach this MTD device. Returns zero if we
1126 * should proceed with attaching the MTD device, and %-EINVAL if we should not.
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001127 */
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001128static int late_analysis(struct ubi_device *ubi, struct ubi_attach_info *ai)
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001129{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001130 struct ubi_ainf_peb *aeb;
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001131 int max_corr, peb_count;
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001132
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001133 peb_count = ubi->peb_count - ai->bad_peb_count - ai->alien_peb_count;
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001134 max_corr = peb_count / 20 ?: 8;
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001135
1136 /*
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001137 * Few corrupted PEBs is not a problem and may be just a result of
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001138 * unclean reboots. However, many of them may indicate some problems
1139 * with the flash HW or driver.
1140 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001141 if (ai->corr_peb_count) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001142 ubi_err(ubi, "%d PEBs are corrupted and preserved",
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001143 ai->corr_peb_count);
Artem Bityutskiye28453b2012-08-27 15:13:05 +03001144 pr_err("Corrupted PEBs are:");
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001145 list_for_each_entry(aeb, &ai->corr, u.list)
Artem Bityutskiye28453b2012-08-27 15:13:05 +03001146 pr_cont(" %d", aeb->pnum);
1147 pr_cont("\n");
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001148
1149 /*
1150 * If too many PEBs are corrupted, we refuse attaching,
1151 * otherwise, only print a warning.
1152 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001153 if (ai->corr_peb_count >= max_corr) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001154 ubi_err(ubi, "too many corrupted PEBs, refusing");
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001155 return -EINVAL;
1156 }
1157 }
1158
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001159 if (ai->empty_peb_count + ai->maybe_bad_peb_count == peb_count) {
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001160 /*
1161 * All PEBs are empty, or almost all - a couple PEBs look like
1162 * they may be bad PEBs which were not marked as bad yet.
1163 *
1164 * This piece of code basically tries to distinguish between
1165 * the following situations:
1166 *
1167 * 1. Flash is empty, but there are few bad PEBs, which are not
1168 * marked as bad so far, and which were read with error. We
1169 * want to go ahead and format this flash. While formatting,
1170 * the faulty PEBs will probably be marked as bad.
1171 *
1172 * 2. Flash contains non-UBI data and we do not want to format
1173 * it and destroy possibly important information.
1174 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001175 if (ai->maybe_bad_peb_count <= 2) {
1176 ai->is_empty = 1;
Tanya Brokhman326087032014-10-20 19:57:00 +03001177 ubi_msg(ubi, "empty MTD device detected");
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001178 get_random_bytes(&ubi->image_seq,
1179 sizeof(ubi->image_seq));
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001180 } else {
Tanya Brokhman326087032014-10-20 19:57:00 +03001181 ubi_err(ubi, "MTD device is not UBI-formatted and possibly contains non-UBI data - refusing it");
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001182 return -EINVAL;
1183 }
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001184
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001185 }
1186
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001187 return 0;
1188}
1189
1190/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001191 * destroy_av - free volume attaching information.
1192 * @av: volume attaching information
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001193 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001194 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001195 * This function destroys the volume attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001196 */
Artem Bityutskiy517af482012-05-17 14:38:34 +03001197static void destroy_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001198{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001199 struct ubi_ainf_peb *aeb;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001200 struct rb_node *this = av->root.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001201
1202 while (this) {
1203 if (this->rb_left)
1204 this = this->rb_left;
1205 else if (this->rb_right)
1206 this = this->rb_right;
1207 else {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001208 aeb = rb_entry(this, struct ubi_ainf_peb, u.rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001209 this = rb_parent(this);
1210 if (this) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001211 if (this->rb_left == &aeb->u.rb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001212 this->rb_left = NULL;
1213 else
1214 this->rb_right = NULL;
1215 }
1216
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001217 kmem_cache_free(ai->aeb_slab_cache, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001218 }
1219 }
Artem Bityutskiy517af482012-05-17 14:38:34 +03001220 kfree(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001221}
1222
1223/**
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001224 * destroy_ai - destroy attaching information.
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001225 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001226 */
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001227static void destroy_ai(struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001228{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001229 struct ubi_ainf_peb *aeb, *aeb_tmp;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001230 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001231 struct rb_node *rb;
1232
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001233 list_for_each_entry_safe(aeb, aeb_tmp, &ai->alien, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001234 list_del(&aeb->u.list);
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001235 kmem_cache_free(ai->aeb_slab_cache, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001236 }
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001237 list_for_each_entry_safe(aeb, aeb_tmp, &ai->erase, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001238 list_del(&aeb->u.list);
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001239 kmem_cache_free(ai->aeb_slab_cache, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001240 }
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001241 list_for_each_entry_safe(aeb, aeb_tmp, &ai->corr, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001242 list_del(&aeb->u.list);
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001243 kmem_cache_free(ai->aeb_slab_cache, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001244 }
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001245 list_for_each_entry_safe(aeb, aeb_tmp, &ai->free, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001246 list_del(&aeb->u.list);
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001247 kmem_cache_free(ai->aeb_slab_cache, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001248 }
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001249 list_for_each_entry_safe(aeb, aeb_tmp, &ai->fastmap, u.list) {
1250 list_del(&aeb->u.list);
1251 kmem_cache_free(ai->aeb_slab_cache, aeb);
1252 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001253
1254 /* Destroy the volume RB-tree */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001255 rb = ai->volumes.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001256 while (rb) {
1257 if (rb->rb_left)
1258 rb = rb->rb_left;
1259 else if (rb->rb_right)
1260 rb = rb->rb_right;
1261 else {
Artem Bityutskiy517af482012-05-17 14:38:34 +03001262 av = rb_entry(rb, struct ubi_ainf_volume, rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001263
1264 rb = rb_parent(rb);
1265 if (rb) {
Artem Bityutskiy517af482012-05-17 14:38:34 +03001266 if (rb->rb_left == &av->rb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001267 rb->rb_left = NULL;
1268 else
1269 rb->rb_right = NULL;
1270 }
1271
Artem Bityutskiy517af482012-05-17 14:38:34 +03001272 destroy_av(ai, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001273 }
1274 }
1275
Julia Lawallf9a113d2015-09-13 14:15:16 +02001276 kmem_cache_destroy(ai->aeb_slab_cache);
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001277 kfree(ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001278}
1279
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001280/**
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001281 * scan_all - scan entire MTD device.
1282 * @ubi: UBI device description object
1283 * @ai: attach info object
1284 * @start: start scanning at this PEB
1285 *
1286 * This function does full scanning of an MTD device and returns complete
1287 * information about it in form of a "struct ubi_attach_info" object. In case
1288 * of failure, an error code is returned.
1289 */
1290static int scan_all(struct ubi_device *ubi, struct ubi_attach_info *ai,
1291 int start)
1292{
1293 int err, pnum;
1294 struct rb_node *rb1, *rb2;
1295 struct ubi_ainf_volume *av;
1296 struct ubi_ainf_peb *aeb;
1297
1298 err = -ENOMEM;
1299
1300 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1301 if (!ech)
1302 return err;
1303
1304 vidh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
1305 if (!vidh)
1306 goto out_ech;
1307
1308 for (pnum = start; pnum < ubi->peb_count; pnum++) {
1309 cond_resched();
1310
1311 dbg_gen("process PEB %d", pnum);
Richard Weinberger74f2c6e2016-06-14 10:12:17 +02001312 err = scan_peb(ubi, ai, pnum, false);
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001313 if (err < 0)
1314 goto out_vidh;
1315 }
1316
Tanya Brokhman326087032014-10-20 19:57:00 +03001317 ubi_msg(ubi, "scanning is finished");
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001318
1319 /* Calculate mean erase counter */
1320 if (ai->ec_count)
1321 ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count);
1322
1323 err = late_analysis(ubi, ai);
1324 if (err)
1325 goto out_vidh;
1326
1327 /*
1328 * In case of unknown erase counter we use the mean erase counter
1329 * value.
1330 */
1331 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
1332 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
1333 if (aeb->ec == UBI_UNKNOWN)
1334 aeb->ec = ai->mean_ec;
1335 }
1336
1337 list_for_each_entry(aeb, &ai->free, u.list) {
1338 if (aeb->ec == UBI_UNKNOWN)
1339 aeb->ec = ai->mean_ec;
1340 }
1341
1342 list_for_each_entry(aeb, &ai->corr, u.list)
1343 if (aeb->ec == UBI_UNKNOWN)
1344 aeb->ec = ai->mean_ec;
1345
1346 list_for_each_entry(aeb, &ai->erase, u.list)
1347 if (aeb->ec == UBI_UNKNOWN)
1348 aeb->ec = ai->mean_ec;
1349
1350 err = self_check_ai(ubi, ai);
1351 if (err)
1352 goto out_vidh;
1353
1354 ubi_free_vid_hdr(ubi, vidh);
1355 kfree(ech);
1356
1357 return 0;
1358
1359out_vidh:
1360 ubi_free_vid_hdr(ubi, vidh);
1361out_ech:
1362 kfree(ech);
1363 return err;
1364}
1365
Richard Weinbergerd2158f62014-10-06 15:58:07 +02001366static struct ubi_attach_info *alloc_ai(void)
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001367{
1368 struct ubi_attach_info *ai;
1369
1370 ai = kzalloc(sizeof(struct ubi_attach_info), GFP_KERNEL);
1371 if (!ai)
1372 return ai;
1373
1374 INIT_LIST_HEAD(&ai->corr);
1375 INIT_LIST_HEAD(&ai->free);
1376 INIT_LIST_HEAD(&ai->erase);
1377 INIT_LIST_HEAD(&ai->alien);
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001378 INIT_LIST_HEAD(&ai->fastmap);
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001379 ai->volumes = RB_ROOT;
Richard Weinbergerd2158f62014-10-06 15:58:07 +02001380 ai->aeb_slab_cache = kmem_cache_create("ubi_aeb_slab_cache",
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001381 sizeof(struct ubi_ainf_peb),
1382 0, 0, NULL);
1383 if (!ai->aeb_slab_cache) {
1384 kfree(ai);
1385 ai = NULL;
1386 }
1387
1388 return ai;
1389}
1390
Richard Weinberger98105d02014-10-06 15:39:01 +02001391#ifdef CONFIG_MTD_UBI_FASTMAP
1392
1393/**
Richard Weinbergerd139d302016-06-14 10:12:12 +02001394 * scan_fast - try to find a fastmap and attach from it.
Richard Weinberger98105d02014-10-06 15:39:01 +02001395 * @ubi: UBI device description object
1396 * @ai: attach info object
1397 *
1398 * Returns 0 on success, negative return values indicate an internal
1399 * error.
1400 * UBI_NO_FASTMAP denotes that no fastmap was found.
1401 * UBI_BAD_FASTMAP denotes that the found fastmap was invalid.
1402 */
1403static int scan_fast(struct ubi_device *ubi, struct ubi_attach_info **ai)
1404{
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001405 int err, pnum;
1406 struct ubi_attach_info *scan_ai;
Richard Weinberger98105d02014-10-06 15:39:01 +02001407
1408 err = -ENOMEM;
1409
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001410 scan_ai = alloc_ai();
1411 if (!scan_ai)
1412 goto out;
1413
Richard Weinberger98105d02014-10-06 15:39:01 +02001414 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1415 if (!ech)
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001416 goto out_ai;
Richard Weinberger98105d02014-10-06 15:39:01 +02001417
1418 vidh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
1419 if (!vidh)
1420 goto out_ech;
1421
1422 for (pnum = 0; pnum < UBI_FM_MAX_START; pnum++) {
Richard Weinberger98105d02014-10-06 15:39:01 +02001423 cond_resched();
1424
1425 dbg_gen("process PEB %d", pnum);
Richard Weinberger74f2c6e2016-06-14 10:12:17 +02001426 err = scan_peb(ubi, scan_ai, pnum, true);
Richard Weinberger98105d02014-10-06 15:39:01 +02001427 if (err < 0)
1428 goto out_vidh;
Richard Weinberger98105d02014-10-06 15:39:01 +02001429 }
1430
1431 ubi_free_vid_hdr(ubi, vidh);
1432 kfree(ech);
1433
Richard Weinberger74f2c6e2016-06-14 10:12:17 +02001434 if (scan_ai->force_full_scan)
1435 err = UBI_NO_FASTMAP;
1436 else
1437 err = ubi_scan_fastmap(ubi, *ai, scan_ai);
1438
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001439 if (err) {
1440 /*
1441 * Didn't attach via fastmap, do a full scan but reuse what
1442 * we've aready scanned.
1443 */
1444 destroy_ai(*ai);
1445 *ai = scan_ai;
1446 } else
1447 destroy_ai(scan_ai);
Richard Weinberger98105d02014-10-06 15:39:01 +02001448
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001449 return err;
Richard Weinberger98105d02014-10-06 15:39:01 +02001450
1451out_vidh:
1452 ubi_free_vid_hdr(ubi, vidh);
1453out_ech:
1454 kfree(ech);
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001455out_ai:
1456 destroy_ai(scan_ai);
Richard Weinberger98105d02014-10-06 15:39:01 +02001457out:
1458 return err;
1459}
1460
1461#endif
1462
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001463/**
1464 * ubi_attach - attach an MTD device.
1465 * @ubi: UBI device descriptor
1466 * @force_scan: if set to non-zero attach by scanning
1467 *
1468 * This function returns zero in case of success and a negative error code in
1469 * case of failure.
1470 */
1471int ubi_attach(struct ubi_device *ubi, int force_scan)
1472{
1473 int err;
1474 struct ubi_attach_info *ai;
1475
Richard Weinbergerd2158f62014-10-06 15:58:07 +02001476 ai = alloc_ai();
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001477 if (!ai)
1478 return -ENOMEM;
1479
1480#ifdef CONFIG_MTD_UBI_FASTMAP
1481 /* On small flash devices we disable fastmap in any case. */
1482 if ((int)mtd_div_by_eb(ubi->mtd->size, ubi->mtd) <= UBI_FM_MAX_START) {
1483 ubi->fm_disabled = 1;
1484 force_scan = 1;
1485 }
1486
1487 if (force_scan)
1488 err = scan_all(ubi, ai, 0);
1489 else {
Richard Weinberger98105d02014-10-06 15:39:01 +02001490 err = scan_fast(ubi, &ai);
Richard Weinberger180a5352015-03-09 10:04:09 +01001491 if (err > 0 || mtd_is_eccerr(err)) {
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001492 if (err != UBI_NO_FASTMAP) {
1493 destroy_ai(ai);
Richard Weinbergerd2158f62014-10-06 15:58:07 +02001494 ai = alloc_ai();
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001495 if (!ai)
1496 return -ENOMEM;
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001497
Richard Weinberger4b3e0a22013-09-28 15:55:12 +02001498 err = scan_all(ubi, ai, 0);
1499 } else {
1500 err = scan_all(ubi, ai, UBI_FM_MAX_START);
1501 }
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001502 }
1503 }
1504#else
1505 err = scan_all(ubi, ai, 0);
1506#endif
1507 if (err)
1508 goto out_ai;
1509
1510 ubi->bad_peb_count = ai->bad_peb_count;
1511 ubi->good_peb_count = ubi->peb_count - ubi->bad_peb_count;
1512 ubi->corr_peb_count = ai->corr_peb_count;
1513 ubi->max_ec = ai->max_ec;
1514 ubi->mean_ec = ai->mean_ec;
1515 dbg_gen("max. sequence number: %llu", ai->max_sqnum);
1516
1517 err = ubi_read_volume_table(ubi, ai);
1518 if (err)
1519 goto out_ai;
1520
1521 err = ubi_wl_init(ubi, ai);
1522 if (err)
1523 goto out_vtbl;
1524
1525 err = ubi_eba_init(ubi, ai);
1526 if (err)
1527 goto out_wl;
1528
1529#ifdef CONFIG_MTD_UBI_FASTMAP
Richard Weinberger560d86a2014-10-27 13:00:26 +01001530 if (ubi->fm && ubi_dbg_chk_fastmap(ubi)) {
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001531 struct ubi_attach_info *scan_ai;
1532
Richard Weinbergerd2158f62014-10-06 15:58:07 +02001533 scan_ai = alloc_ai();
Julia Lawall4d525142013-12-29 23:47:19 +01001534 if (!scan_ai) {
1535 err = -ENOMEM;
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001536 goto out_wl;
Julia Lawall4d525142013-12-29 23:47:19 +01001537 }
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001538
1539 err = scan_all(ubi, scan_ai, 0);
1540 if (err) {
1541 destroy_ai(scan_ai);
1542 goto out_wl;
1543 }
1544
1545 err = self_check_eba(ubi, ai, scan_ai);
1546 destroy_ai(scan_ai);
1547
1548 if (err)
1549 goto out_wl;
1550 }
1551#endif
1552
1553 destroy_ai(ai);
1554 return 0;
1555
1556out_wl:
1557 ubi_wl_close(ubi);
1558out_vtbl:
1559 ubi_free_internal_volumes(ubi);
1560 vfree(ubi->vtbl);
1561out_ai:
1562 destroy_ai(ai);
1563 return err;
1564}
1565
1566/**
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001567 * self_check_ai - check the attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001568 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001569 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001570 *
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001571 * This function returns zero if the attaching information is all right, and a
Artem Bityutskiyadbf05e2010-01-20 10:28:58 +02001572 * negative error code if not or if an error occurred.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001573 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001574static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001575{
1576 int pnum, err, vols_found = 0;
1577 struct rb_node *rb1, *rb2;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001578 struct ubi_ainf_volume *av;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001579 struct ubi_ainf_peb *aeb, *last_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001580 uint8_t *buf;
1581
Ezequiel Garcia64575572012-11-28 09:18:29 -03001582 if (!ubi_dbg_chk_gen(ubi))
Artem Bityutskiy92d124f2011-03-14 18:17:40 +02001583 return 0;
1584
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001585 /*
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001586 * At first, check that attaching information is OK.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001587 */
Artem Bityutskiy517af482012-05-17 14:38:34 +03001588 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001589 int leb_count = 0;
1590
1591 cond_resched();
1592
1593 vols_found += 1;
1594
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001595 if (ai->is_empty) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001596 ubi_err(ubi, "bad is_empty flag");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001597 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001598 }
1599
Artem Bityutskiy517af482012-05-17 14:38:34 +03001600 if (av->vol_id < 0 || av->highest_lnum < 0 ||
1601 av->leb_count < 0 || av->vol_type < 0 || av->used_ebs < 0 ||
1602 av->data_pad < 0 || av->last_data_size < 0) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001603 ubi_err(ubi, "negative values");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001604 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001605 }
1606
Artem Bityutskiy517af482012-05-17 14:38:34 +03001607 if (av->vol_id >= UBI_MAX_VOLUMES &&
1608 av->vol_id < UBI_INTERNAL_VOL_START) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001609 ubi_err(ubi, "bad vol_id");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001610 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001611 }
1612
Artem Bityutskiy517af482012-05-17 14:38:34 +03001613 if (av->vol_id > ai->highest_vol_id) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001614 ubi_err(ubi, "highest_vol_id is %d, but vol_id %d is there",
Artem Bityutskiy517af482012-05-17 14:38:34 +03001615 ai->highest_vol_id, av->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001616 goto out;
1617 }
1618
Artem Bityutskiy517af482012-05-17 14:38:34 +03001619 if (av->vol_type != UBI_DYNAMIC_VOLUME &&
1620 av->vol_type != UBI_STATIC_VOLUME) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001621 ubi_err(ubi, "bad vol_type");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001622 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001623 }
1624
Artem Bityutskiy517af482012-05-17 14:38:34 +03001625 if (av->data_pad > ubi->leb_size / 2) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001626 ubi_err(ubi, "bad data_pad");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001627 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001628 }
1629
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001630 last_aeb = NULL;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001631 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001632 cond_resched();
1633
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001634 last_aeb = aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001635 leb_count += 1;
1636
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001637 if (aeb->pnum < 0 || aeb->ec < 0) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001638 ubi_err(ubi, "negative values");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001639 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001640 }
1641
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001642 if (aeb->ec < ai->min_ec) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001643 ubi_err(ubi, "bad ai->min_ec (%d), %d found",
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001644 ai->min_ec, aeb->ec);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001645 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001646 }
1647
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001648 if (aeb->ec > ai->max_ec) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001649 ubi_err(ubi, "bad ai->max_ec (%d), %d found",
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001650 ai->max_ec, aeb->ec);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001651 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001652 }
1653
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001654 if (aeb->pnum >= ubi->peb_count) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001655 ubi_err(ubi, "too high PEB number %d, total PEBs %d",
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001656 aeb->pnum, ubi->peb_count);
1657 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001658 }
1659
Artem Bityutskiy517af482012-05-17 14:38:34 +03001660 if (av->vol_type == UBI_STATIC_VOLUME) {
1661 if (aeb->lnum >= av->used_ebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001662 ubi_err(ubi, "bad lnum or used_ebs");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001663 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001664 }
1665 } else {
Artem Bityutskiy517af482012-05-17 14:38:34 +03001666 if (av->used_ebs != 0) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001667 ubi_err(ubi, "non-zero used_ebs");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001668 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001669 }
1670 }
1671
Artem Bityutskiy517af482012-05-17 14:38:34 +03001672 if (aeb->lnum > av->highest_lnum) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001673 ubi_err(ubi, "incorrect highest_lnum or lnum");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001674 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001675 }
1676 }
1677
Artem Bityutskiy517af482012-05-17 14:38:34 +03001678 if (av->leb_count != leb_count) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001679 ubi_err(ubi, "bad leb_count, %d objects in the tree",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001680 leb_count);
Artem Bityutskiy517af482012-05-17 14:38:34 +03001681 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001682 }
1683
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001684 if (!last_aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001685 continue;
1686
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001687 aeb = last_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001688
Artem Bityutskiy517af482012-05-17 14:38:34 +03001689 if (aeb->lnum != av->highest_lnum) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001690 ubi_err(ubi, "bad highest_lnum");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001691 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001692 }
1693 }
1694
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001695 if (vols_found != ai->vols_found) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001696 ubi_err(ubi, "bad ai->vols_found %d, should be %d",
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001697 ai->vols_found, vols_found);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001698 goto out;
1699 }
1700
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001701 /* Check that attaching information is correct */
Artem Bityutskiy517af482012-05-17 14:38:34 +03001702 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001703 last_aeb = NULL;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001704 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001705 int vol_type;
1706
1707 cond_resched();
1708
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001709 last_aeb = aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001710
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001711 err = ubi_io_read_vid_hdr(ubi, aeb->pnum, vidh, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001712 if (err && err != UBI_IO_BITFLIPS) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001713 ubi_err(ubi, "VID header is not OK (%d)",
1714 err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001715 if (err > 0)
1716 err = -EIO;
1717 return err;
1718 }
1719
1720 vol_type = vidh->vol_type == UBI_VID_DYNAMIC ?
1721 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001722 if (av->vol_type != vol_type) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001723 ubi_err(ubi, "bad vol_type");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001724 goto bad_vid_hdr;
1725 }
1726
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001727 if (aeb->sqnum != be64_to_cpu(vidh->sqnum)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001728 ubi_err(ubi, "bad sqnum %llu", aeb->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001729 goto bad_vid_hdr;
1730 }
1731
Artem Bityutskiy517af482012-05-17 14:38:34 +03001732 if (av->vol_id != be32_to_cpu(vidh->vol_id)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001733 ubi_err(ubi, "bad vol_id %d", av->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001734 goto bad_vid_hdr;
1735 }
1736
Artem Bityutskiy517af482012-05-17 14:38:34 +03001737 if (av->compat != vidh->compat) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001738 ubi_err(ubi, "bad compat %d", vidh->compat);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001739 goto bad_vid_hdr;
1740 }
1741
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001742 if (aeb->lnum != be32_to_cpu(vidh->lnum)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001743 ubi_err(ubi, "bad lnum %d", aeb->lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001744 goto bad_vid_hdr;
1745 }
1746
Artem Bityutskiy517af482012-05-17 14:38:34 +03001747 if (av->used_ebs != be32_to_cpu(vidh->used_ebs)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001748 ubi_err(ubi, "bad used_ebs %d", av->used_ebs);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001749 goto bad_vid_hdr;
1750 }
1751
Artem Bityutskiy517af482012-05-17 14:38:34 +03001752 if (av->data_pad != be32_to_cpu(vidh->data_pad)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001753 ubi_err(ubi, "bad data_pad %d", av->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001754 goto bad_vid_hdr;
1755 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001756 }
1757
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001758 if (!last_aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001759 continue;
1760
Artem Bityutskiy517af482012-05-17 14:38:34 +03001761 if (av->highest_lnum != be32_to_cpu(vidh->lnum)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001762 ubi_err(ubi, "bad highest_lnum %d", av->highest_lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001763 goto bad_vid_hdr;
1764 }
1765
Artem Bityutskiy517af482012-05-17 14:38:34 +03001766 if (av->last_data_size != be32_to_cpu(vidh->data_size)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001767 ubi_err(ubi, "bad last_data_size %d",
1768 av->last_data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001769 goto bad_vid_hdr;
1770 }
1771 }
1772
1773 /*
1774 * Make sure that all the physical eraseblocks are in one of the lists
1775 * or trees.
1776 */
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001777 buf = kzalloc(ubi->peb_count, GFP_KERNEL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001778 if (!buf)
1779 return -ENOMEM;
1780
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001781 for (pnum = 0; pnum < ubi->peb_count; pnum++) {
1782 err = ubi_io_is_bad(ubi, pnum);
Artem Bityutskiy341e1a02007-05-03 11:59:51 +03001783 if (err < 0) {
1784 kfree(buf);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001785 return err;
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +03001786 } else if (err)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001787 buf[pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001788 }
1789
Artem Bityutskiy517af482012-05-17 14:38:34 +03001790 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb)
1791 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001792 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001793
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001794 list_for_each_entry(aeb, &ai->free, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001795 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001796
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001797 list_for_each_entry(aeb, &ai->corr, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001798 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001799
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001800 list_for_each_entry(aeb, &ai->erase, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001801 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001802
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001803 list_for_each_entry(aeb, &ai->alien, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001804 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001805
1806 err = 0;
1807 for (pnum = 0; pnum < ubi->peb_count; pnum++)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001808 if (!buf[pnum]) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001809 ubi_err(ubi, "PEB %d is not referred", pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001810 err = 1;
1811 }
1812
1813 kfree(buf);
1814 if (err)
1815 goto out;
1816 return 0;
1817
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001818bad_aeb:
Tanya Brokhman326087032014-10-20 19:57:00 +03001819 ubi_err(ubi, "bad attaching information about LEB %d", aeb->lnum);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001820 ubi_dump_aeb(aeb, 0);
Artem Bityutskiy517af482012-05-17 14:38:34 +03001821 ubi_dump_av(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001822 goto out;
1823
Artem Bityutskiy517af482012-05-17 14:38:34 +03001824bad_av:
Tanya Brokhman326087032014-10-20 19:57:00 +03001825 ubi_err(ubi, "bad attaching information about volume %d", av->vol_id);
Artem Bityutskiy517af482012-05-17 14:38:34 +03001826 ubi_dump_av(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001827 goto out;
1828
1829bad_vid_hdr:
Tanya Brokhman326087032014-10-20 19:57:00 +03001830 ubi_err(ubi, "bad attaching information about volume %d", av->vol_id);
Artem Bityutskiy517af482012-05-17 14:38:34 +03001831 ubi_dump_av(av);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +03001832 ubi_dump_vid_hdr(vidh);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001833
1834out:
Artem Bityutskiy25886a32012-04-24 06:59:49 +03001835 dump_stack();
Artem Bityutskiyadbf05e2010-01-20 10:28:58 +02001836 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001837}