]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/mtd/ubi/attach.c
UBI: fix add_fastmap() to use the vid_hdr passed in argument
[mirror_ubuntu-zesty-kernel.git] / drivers / mtd / ubi / attach.c
CommitLineData
801c135c
AB
1/*
2 * Copyright (c) International Business Machines Corp., 2006
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Artem Bityutskiy (Битюцкий Артём)
19 */
20
21/*
fbd0107f 22 * UBI attaching sub-system.
801c135c 23 *
fbd0107f
AB
24 * This sub-system is responsible for attaching MTD devices and it also
25 * implements flash media scanning.
801c135c 26 *
a4e6042f 27 * The attaching information is represented by a &struct ubi_attach_info'
fbd0107f
AB
28 * object. Information about volumes is represented by &struct ubi_ainf_volume
29 * objects which are kept in volume RB-tree with root at the @volumes field.
30 * The RB-tree is indexed by the volume ID.
801c135c 31 *
fbd0107f
AB
32 * Logical eraseblocks are represented by &struct ubi_ainf_peb objects. These
33 * objects are kept in per-volume RB-trees with the root at the corresponding
34 * &struct ubi_ainf_volume object. To put it differently, we keep an RB-tree of
35 * per-volume objects and each of these objects is the root of RB-tree of
36 * per-LEB objects.
801c135c
AB
37 *
38 * Corrupted physical eraseblocks are put to the @corr list, free physical
39 * eraseblocks are put to the @free list and the physical eraseblock to be
40 * erased are put to the @erase list.
0525dac9 41 *
fef2deb3
AB
42 * About corruptions
43 * ~~~~~~~~~~~~~~~~~
44 *
45 * UBI protects EC and VID headers with CRC-32 checksums, so it can detect
46 * whether the headers are corrupted or not. Sometimes UBI also protects the
47 * data with CRC-32, e.g., when it executes the atomic LEB change operation, or
48 * when it moves the contents of a PEB for wear-leveling purposes.
49 *
0525dac9 50 * UBI tries to distinguish between 2 types of corruptions.
fef2deb3
AB
51 *
52 * 1. Corruptions caused by power cuts. These are expected corruptions and UBI
53 * tries to handle them gracefully, without printing too many warnings and
fbd0107f
AB
54 * error messages. The idea is that we do not lose important data in these
55 * cases - we may lose only the data which were being written to the media just
56 * before the power cut happened, and the upper layers (e.g., UBIFS) are
57 * supposed to handle such data losses (e.g., by using the FS journal).
fef2deb3
AB
58 *
59 * When UBI detects a corruption (CRC-32 mismatch) in a PEB, and it looks like
60 * the reason is a power cut, UBI puts this PEB to the @erase list, and all
61 * PEBs in the @erase list are scheduled for erasure later.
0525dac9
AB
62 *
63 * 2. Unexpected corruptions which are not caused by power cuts. During
fbd0107f 64 * attaching, such PEBs are put to the @corr list and UBI preserves them.
fef2deb3
AB
65 * Obviously, this lessens the amount of available PEBs, and if at some point
66 * UBI runs out of free PEBs, it switches to R/O mode. UBI also loudly informs
67 * about such PEBs every time the MTD device is attached.
45aafd32
AB
68 *
69 * However, it is difficult to reliably distinguish between these types of
fbd0107f
AB
70 * corruptions and UBI's strategy is as follows (in case of attaching by
71 * scanning). UBI assumes corruption type 2 if the VID header is corrupted and
72 * the data area does not contain all 0xFFs, and there were no bit-flips or
73 * integrity errors (e.g., ECC errors in case of NAND) while reading the data
74 * area. Otherwise UBI assumes corruption type 1. So the decision criteria
75 * are as follows.
76 * o If the data area contains only 0xFFs, there are no data, and it is safe
fef2deb3
AB
77 * to just erase this PEB - this is corruption type 1.
78 * o If the data area has bit-flips or data integrity errors (ECC errors on
45aafd32 79 * NAND), it is probably a PEB which was being erased when power cut
fef2deb3
AB
80 * happened, so this is corruption type 1. However, this is just a guess,
81 * which might be wrong.
55393ba1 82 * o Otherwise this is corruption type 2.
801c135c
AB
83 */
84
85#include <linux/err.h>
5a0e3ad6 86#include <linux/slab.h>
801c135c 87#include <linux/crc32.h>
3013ee31 88#include <linux/math64.h>
095751a6 89#include <linux/random.h>
801c135c
AB
90#include "ubi.h"
91
a4e6042f 92static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai);
801c135c
AB
93
94/* Temporary variables used during scanning */
95static struct ubi_ec_hdr *ech;
96static struct ubi_vid_hdr *vidh;
97
941dfb07 98/**
78d87c95 99 * add_to_list - add physical eraseblock to a list.
a4e6042f 100 * @ai: attaching information
78d87c95 101 * @pnum: physical eraseblock number to add
6dd3bc7e
JR
102 * @vol_id: the last used volume id for the PEB
103 * @lnum: the last used LEB number for the PEB
78d87c95 104 * @ec: erase counter of the physical eraseblock
0525dac9 105 * @to_head: if not zero, add to the head of the list
78d87c95
AB
106 * @list: the list to add to
107 *
fbd0107f
AB
108 * This function allocates a 'struct ubi_ainf_peb' object for physical
109 * eraseblock @pnum and adds it to the "free", "erase", or "alien" lists.
6dd3bc7e
JR
110 * It stores the @lnum and @vol_id alongside, which can both be
111 * %UBI_UNKNOWN if they are not available, not readable, or not assigned.
0525dac9
AB
112 * If @to_head is not zero, PEB will be added to the head of the list, which
113 * basically means it will be processed first later. E.g., we add corrupted
114 * PEBs (corrupted due to power cuts) to the head of the erase list to make
115 * sure we erase them first and get rid of corruptions ASAP. This function
116 * returns zero in case of success and a negative error code in case of
3fb34124 117 * failure.
78d87c95 118 */
6dd3bc7e
JR
119static 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)
801c135c 121{
2c5ec5ce 122 struct ubi_ainf_peb *aeb;
801c135c 123
a4e6042f 124 if (list == &ai->free) {
801c135c 125 dbg_bld("add to free: PEB %d, EC %d", pnum, ec);
a4e6042f 126 } else if (list == &ai->erase) {
801c135c 127 dbg_bld("add to erase: PEB %d, EC %d", pnum, ec);
a4e6042f 128 } else if (list == &ai->alien) {
801c135c 129 dbg_bld("add to alien: PEB %d, EC %d", pnum, ec);
a4e6042f 130 ai->alien_peb_count += 1;
33789fb9 131 } else
801c135c
AB
132 BUG();
133
1fc2e3e5 134 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
2c5ec5ce 135 if (!aeb)
801c135c
AB
136 return -ENOMEM;
137
2c5ec5ce 138 aeb->pnum = pnum;
6dd3bc7e
JR
139 aeb->vol_id = vol_id;
140 aeb->lnum = lnum;
2c5ec5ce 141 aeb->ec = ec;
0525dac9 142 if (to_head)
2c5ec5ce 143 list_add(&aeb->u.list, list);
0525dac9 144 else
2c5ec5ce 145 list_add_tail(&aeb->u.list, list);
801c135c
AB
146 return 0;
147}
148
3fb34124
AB
149/**
150 * add_corrupted - add a corrupted physical eraseblock.
a4e6042f 151 * @ai: attaching information
3fb34124
AB
152 * @pnum: physical eraseblock number to add
153 * @ec: erase counter of the physical eraseblock
154 *
fbd0107f
AB
155 * This function allocates a 'struct ubi_ainf_peb' object for a corrupted
156 * physical eraseblock @pnum and adds it to the 'corr' list. The corruption
157 * was presumably not caused by a power cut. Returns zero in case of success
158 * and a negative error code in case of failure.
3fb34124 159 */
a4e6042f 160static int add_corrupted(struct ubi_attach_info *ai, int pnum, int ec)
3fb34124 161{
2c5ec5ce 162 struct ubi_ainf_peb *aeb;
3fb34124
AB
163
164 dbg_bld("add to corrupted: PEB %d, EC %d", pnum, ec);
165
1fc2e3e5 166 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
2c5ec5ce 167 if (!aeb)
3fb34124
AB
168 return -ENOMEM;
169
a4e6042f 170 ai->corr_peb_count += 1;
2c5ec5ce
AB
171 aeb->pnum = pnum;
172 aeb->ec = ec;
a4e6042f 173 list_add(&aeb->u.list, &ai->corr);
3fb34124
AB
174 return 0;
175}
176
fdf10ed7
RW
177/**
178 * add_fastmap - add a Fastmap related physical eraseblock.
179 * @ai: attaching information
180 * @pnum: physical eraseblock number the VID header came from
181 * @vid_hdr: the volume identifier header
182 * @ec: erase counter of the physical eraseblock
183 *
184 * This function allocates a 'struct ubi_ainf_peb' object for a Fastamp
185 * physical eraseblock @pnum and adds it to the 'fastmap' list.
186 * Such blocks can be Fastmap super and data blocks from both the most
187 * recent Fastmap we're attaching from or from old Fastmaps which will
188 * be erased.
189 */
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;
3f84e454
BB
200 aeb->vol_id = be32_to_cpu(vid_hdr->vol_id);
201 aeb->sqnum = be64_to_cpu(vid_hdr->sqnum);
fdf10ed7
RW
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
801c135c 211/**
ebaaf1af 212 * validate_vid_hdr - check volume identifier header.
32608703 213 * @ubi: UBI device description object
801c135c 214 * @vid_hdr: the volume identifier header to check
517af48c 215 * @av: information about the volume this logical eraseblock belongs to
801c135c
AB
216 * @pnum: physical eraseblock number the VID header came from
217 *
218 * This function checks that data stored in @vid_hdr is consistent. Returns
219 * non-zero if an inconsistency was found and zero if not.
220 *
221 * Note, UBI does sanity check of everything it reads from the flash media.
85c6e6e2 222 * Most of the checks are done in the I/O sub-system. Here we check that the
801c135c
AB
223 * information in the VID header is consistent to the information in other VID
224 * headers of the same volume.
225 */
32608703
TB
226static int validate_vid_hdr(const struct ubi_device *ubi,
227 const struct ubi_vid_hdr *vid_hdr,
517af48c 228 const struct ubi_ainf_volume *av, int pnum)
801c135c
AB
229{
230 int vol_type = vid_hdr->vol_type;
3261ebd7
CH
231 int vol_id = be32_to_cpu(vid_hdr->vol_id);
232 int used_ebs = be32_to_cpu(vid_hdr->used_ebs);
233 int data_pad = be32_to_cpu(vid_hdr->data_pad);
801c135c 234
517af48c
AB
235 if (av->leb_count != 0) {
236 int av_vol_type;
801c135c
AB
237
238 /*
239 * This is not the first logical eraseblock belonging to this
240 * volume. Ensure that the data in its VID header is consistent
241 * to the data in previous logical eraseblock headers.
242 */
243
517af48c 244 if (vol_id != av->vol_id) {
32608703 245 ubi_err(ubi, "inconsistent vol_id");
801c135c
AB
246 goto bad;
247 }
248
517af48c
AB
249 if (av->vol_type == UBI_STATIC_VOLUME)
250 av_vol_type = UBI_VID_STATIC;
801c135c 251 else
517af48c 252 av_vol_type = UBI_VID_DYNAMIC;
801c135c 253
517af48c 254 if (vol_type != av_vol_type) {
32608703 255 ubi_err(ubi, "inconsistent vol_type");
801c135c
AB
256 goto bad;
257 }
258
517af48c 259 if (used_ebs != av->used_ebs) {
32608703 260 ubi_err(ubi, "inconsistent used_ebs");
801c135c
AB
261 goto bad;
262 }
263
517af48c 264 if (data_pad != av->data_pad) {
32608703 265 ubi_err(ubi, "inconsistent data_pad");
801c135c
AB
266 goto bad;
267 }
268 }
269
270 return 0;
271
272bad:
32608703 273 ubi_err(ubi, "inconsistent VID header at PEB %d", pnum);
a904e3f1 274 ubi_dump_vid_hdr(vid_hdr);
517af48c 275 ubi_dump_av(av);
801c135c
AB
276 return -EINVAL;
277}
278
279/**
a4e6042f
AB
280 * add_volume - add volume to the attaching information.
281 * @ai: attaching information
801c135c
AB
282 * @vol_id: ID of the volume to add
283 * @pnum: physical eraseblock number
284 * @vid_hdr: volume identifier header
285 *
286 * If the volume corresponding to the @vid_hdr logical eraseblock is already
a4e6042f
AB
287 * present in the attaching information, this function does nothing. Otherwise
288 * it adds corresponding volume to the attaching information. Returns a pointer
fbd0107f
AB
289 * to the allocated "av" object in case of success and a negative error code in
290 * case of failure.
801c135c 291 */
a4e6042f 292static struct ubi_ainf_volume *add_volume(struct ubi_attach_info *ai,
afc15a81 293 int vol_id, int pnum,
801c135c
AB
294 const struct ubi_vid_hdr *vid_hdr)
295{
517af48c 296 struct ubi_ainf_volume *av;
a4e6042f 297 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
801c135c 298
3261ebd7 299 ubi_assert(vol_id == be32_to_cpu(vid_hdr->vol_id));
801c135c
AB
300
301 /* Walk the volume RB-tree to look if this volume is already present */
302 while (*p) {
303 parent = *p;
517af48c 304 av = rb_entry(parent, struct ubi_ainf_volume, rb);
801c135c 305
517af48c
AB
306 if (vol_id == av->vol_id)
307 return av;
801c135c 308
517af48c 309 if (vol_id > av->vol_id)
801c135c
AB
310 p = &(*p)->rb_left;
311 else
312 p = &(*p)->rb_right;
313 }
314
315 /* The volume is absent - add it */
517af48c
AB
316 av = kmalloc(sizeof(struct ubi_ainf_volume), GFP_KERNEL);
317 if (!av)
801c135c
AB
318 return ERR_PTR(-ENOMEM);
319
517af48c
AB
320 av->highest_lnum = av->leb_count = 0;
321 av->vol_id = vol_id;
322 av->root = RB_ROOT;
323 av->used_ebs = be32_to_cpu(vid_hdr->used_ebs);
324 av->data_pad = be32_to_cpu(vid_hdr->data_pad);
325 av->compat = vid_hdr->compat;
326 av->vol_type = vid_hdr->vol_type == UBI_VID_DYNAMIC ? UBI_DYNAMIC_VOLUME
801c135c 327 : UBI_STATIC_VOLUME;
a4e6042f
AB
328 if (vol_id > ai->highest_vol_id)
329 ai->highest_vol_id = vol_id;
801c135c 330
517af48c
AB
331 rb_link_node(&av->rb, parent, p);
332 rb_insert_color(&av->rb, &ai->volumes);
a4e6042f 333 ai->vols_found += 1;
801c135c 334 dbg_bld("added volume %d", vol_id);
517af48c 335 return av;
801c135c
AB
336}
337
338/**
dac6e208 339 * ubi_compare_lebs - find out which logical eraseblock is newer.
801c135c 340 * @ubi: UBI device description object
2c5ec5ce 341 * @aeb: first logical eraseblock to compare
801c135c
AB
342 * @pnum: physical eraseblock number of the second logical eraseblock to
343 * compare
344 * @vid_hdr: volume identifier header of the second logical eraseblock
345 *
346 * This function compares 2 copies of a LEB and informs which one is newer. In
347 * case of success this function returns a positive value, in case of failure, a
348 * negative error code is returned. The success return codes use the following
349 * bits:
2c5ec5ce 350 * o bit 0 is cleared: the first PEB (described by @aeb) is newer than the
801c135c
AB
351 * second PEB (described by @pnum and @vid_hdr);
352 * o bit 0 is set: the second PEB is newer;
353 * o bit 1 is cleared: no bit-flips were detected in the newer LEB;
354 * o bit 1 is set: bit-flips were detected in the newer LEB;
355 * o bit 2 is cleared: the older LEB is not corrupted;
356 * o bit 2 is set: the older LEB is corrupted.
357 */
dac6e208 358int ubi_compare_lebs(struct ubi_device *ubi, const struct ubi_ainf_peb *aeb,
e88d6e10 359 int pnum, const struct ubi_vid_hdr *vid_hdr)
801c135c 360{
801c135c
AB
361 int len, err, second_is_newer, bitflips = 0, corrupted = 0;
362 uint32_t data_crc, crc;
8bc22961 363 struct ubi_vid_hdr *vh = NULL;
3261ebd7 364 unsigned long long sqnum2 = be64_to_cpu(vid_hdr->sqnum);
801c135c 365
2c5ec5ce 366 if (sqnum2 == aeb->sqnum) {
801c135c 367 /*
9869cd80
AB
368 * This must be a really ancient UBI image which has been
369 * created before sequence numbers support has been added. At
370 * that times we used 32-bit LEB versions stored in logical
371 * eraseblocks. That was before UBI got into mainline. We do not
0525dac9
AB
372 * support these images anymore. Well, those images still work,
373 * but only if no unclean reboots happened.
801c135c 374 */
32608703 375 ubi_err(ubi, "unsupported on-flash UBI format");
9869cd80
AB
376 return -EINVAL;
377 }
64203195 378
9869cd80 379 /* Obviously the LEB with lower sequence counter is older */
2c5ec5ce 380 second_is_newer = (sqnum2 > aeb->sqnum);
801c135c
AB
381
382 /*
383 * Now we know which copy is newer. If the copy flag of the PEB with
384 * newer version is not set, then we just return, otherwise we have to
385 * check data CRC. For the second PEB we already have the VID header,
386 * for the first one - we'll need to re-read it from flash.
387 *
9869cd80 388 * Note: this may be optimized so that we wouldn't read twice.
801c135c
AB
389 */
390
391 if (second_is_newer) {
392 if (!vid_hdr->copy_flag) {
393 /* It is not a copy, so it is newer */
394 dbg_bld("second PEB %d is newer, copy_flag is unset",
395 pnum);
396 return 1;
397 }
398 } else {
2c5ec5ce 399 if (!aeb->copy_flag) {
fb22b59b
AB
400 /* It is not a copy, so it is newer */
401 dbg_bld("first PEB %d is newer, copy_flag is unset",
402 pnum);
403 return bitflips << 1;
404 }
801c135c 405
33818bbb 406 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
8bc22961 407 if (!vh)
801c135c
AB
408 return -ENOMEM;
409
2c5ec5ce 410 pnum = aeb->pnum;
8bc22961 411 err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
801c135c
AB
412 if (err) {
413 if (err == UBI_IO_BITFLIPS)
414 bitflips = 1;
415 else {
32608703 416 ubi_err(ubi, "VID of PEB %d header is bad, but it was OK earlier, err %d",
049333ce 417 pnum, err);
801c135c
AB
418 if (err > 0)
419 err = -EIO;
420
421 goto out_free_vidh;
422 }
423 }
424
8bc22961 425 vid_hdr = vh;
801c135c
AB
426 }
427
428 /* Read the data of the copy and check the CRC */
429
3261ebd7 430 len = be32_to_cpu(vid_hdr->data_size);
801c135c 431
d125a753
AB
432 mutex_lock(&ubi->buf_mutex);
433 err = ubi_io_read_data(ubi, ubi->peb_buf, pnum, 0, len);
d57f4054 434 if (err && err != UBI_IO_BITFLIPS && !mtd_is_eccerr(err))
d125a753 435 goto out_unlock;
801c135c 436
3261ebd7 437 data_crc = be32_to_cpu(vid_hdr->data_crc);
d125a753 438 crc = crc32(UBI_CRC32_INIT, ubi->peb_buf, len);
801c135c
AB
439 if (crc != data_crc) {
440 dbg_bld("PEB %d CRC error: calculated %#08x, must be %#08x",
441 pnum, crc, data_crc);
442 corrupted = 1;
443 bitflips = 0;
444 second_is_newer = !second_is_newer;
445 } else {
446 dbg_bld("PEB %d CRC is OK", pnum);
8eef7d70 447 bitflips |= !!err;
801c135c 448 }
d125a753 449 mutex_unlock(&ubi->buf_mutex);
801c135c 450
8bc22961 451 ubi_free_vid_hdr(ubi, vh);
801c135c
AB
452
453 if (second_is_newer)
454 dbg_bld("second PEB %d is newer, copy_flag is set", pnum);
455 else
456 dbg_bld("first PEB %d is newer, copy_flag is set", pnum);
457
458 return second_is_newer | (bitflips << 1) | (corrupted << 2);
459
d125a753
AB
460out_unlock:
461 mutex_unlock(&ubi->buf_mutex);
801c135c 462out_free_vidh:
8bc22961 463 ubi_free_vid_hdr(ubi, vh);
801c135c
AB
464 return err;
465}
466
467/**
fbd0107f 468 * ubi_add_to_av - add used physical eraseblock to the attaching information.
801c135c 469 * @ubi: UBI device description object
a4e6042f 470 * @ai: attaching information
801c135c
AB
471 * @pnum: the physical eraseblock number
472 * @ec: erase counter
473 * @vid_hdr: the volume identifier header
474 * @bitflips: if bit-flips were detected when this physical eraseblock was read
475 *
79b510c0
AB
476 * This function adds information about a used physical eraseblock to the
477 * 'used' tree of the corresponding volume. The function is rather complex
478 * because it has to handle cases when this is not the first physical
479 * eraseblock belonging to the same logical eraseblock, and the newer one has
480 * to be picked, while the older one has to be dropped. This function returns
481 * zero in case of success and a negative error code in case of failure.
801c135c 482 */
3561188a
AB
483int 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)
801c135c
AB
485{
486 int err, vol_id, lnum;
801c135c 487 unsigned long long sqnum;
517af48c 488 struct ubi_ainf_volume *av;
2c5ec5ce 489 struct ubi_ainf_peb *aeb;
801c135c
AB
490 struct rb_node **p, *parent = NULL;
491
3261ebd7
CH
492 vol_id = be32_to_cpu(vid_hdr->vol_id);
493 lnum = be32_to_cpu(vid_hdr->lnum);
494 sqnum = be64_to_cpu(vid_hdr->sqnum);
801c135c 495
9869cd80
AB
496 dbg_bld("PEB %d, LEB %d:%d, EC %d, sqnum %llu, bitflips %d",
497 pnum, vol_id, lnum, ec, sqnum, bitflips);
801c135c 498
517af48c
AB
499 av = add_volume(ai, vol_id, pnum, vid_hdr);
500 if (IS_ERR(av))
501 return PTR_ERR(av);
801c135c 502
a4e6042f
AB
503 if (ai->max_sqnum < sqnum)
504 ai->max_sqnum = sqnum;
76eafe47 505
801c135c
AB
506 /*
507 * Walk the RB-tree of logical eraseblocks of volume @vol_id to look
508 * if this is the first instance of this logical eraseblock or not.
509 */
517af48c 510 p = &av->root.rb_node;
801c135c
AB
511 while (*p) {
512 int cmp_res;
513
514 parent = *p;
2c5ec5ce
AB
515 aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
516 if (lnum != aeb->lnum) {
517 if (lnum < aeb->lnum)
801c135c
AB
518 p = &(*p)->rb_left;
519 else
520 p = &(*p)->rb_right;
521 continue;
522 }
523
524 /*
525 * There is already a physical eraseblock describing the same
526 * logical eraseblock present.
527 */
528
2c5ec5ce
AB
529 dbg_bld("this LEB already exists: PEB %d, sqnum %llu, EC %d",
530 aeb->pnum, aeb->sqnum, aeb->ec);
801c135c
AB
531
532 /*
533 * Make sure that the logical eraseblocks have different
534 * sequence numbers. Otherwise the image is bad.
535 *
9869cd80
AB
536 * However, if the sequence number is zero, we assume it must
537 * be an ancient UBI image from the era when UBI did not have
538 * sequence numbers. We still can attach these images, unless
539 * there is a need to distinguish between old and new
540 * eraseblocks, in which case we'll refuse the image in
dac6e208 541 * 'ubi_compare_lebs()'. In other words, we attach old clean
9869cd80
AB
542 * images, but refuse attaching old images with duplicated
543 * logical eraseblocks because there was an unclean reboot.
801c135c 544 */
2c5ec5ce 545 if (aeb->sqnum == sqnum && sqnum != 0) {
32608703 546 ubi_err(ubi, "two LEBs with same sequence number %llu",
801c135c 547 sqnum);
2c5ec5ce 548 ubi_dump_aeb(aeb, 0);
a904e3f1 549 ubi_dump_vid_hdr(vid_hdr);
801c135c
AB
550 return -EINVAL;
551 }
552
553 /*
554 * Now we have to drop the older one and preserve the newer
555 * one.
556 */
dac6e208 557 cmp_res = ubi_compare_lebs(ubi, aeb, pnum, vid_hdr);
801c135c
AB
558 if (cmp_res < 0)
559 return cmp_res;
560
561 if (cmp_res & 1) {
562 /*
3f502622 563 * This logical eraseblock is newer than the one
801c135c
AB
564 * found earlier.
565 */
32608703 566 err = validate_vid_hdr(ubi, vid_hdr, av, pnum);
801c135c
AB
567 if (err)
568 return err;
569
6dd3bc7e
JR
570 err = add_to_list(ai, aeb->pnum, aeb->vol_id,
571 aeb->lnum, aeb->ec, cmp_res & 4,
a4e6042f 572 &ai->erase);
801c135c
AB
573 if (err)
574 return err;
575
2c5ec5ce
AB
576 aeb->ec = ec;
577 aeb->pnum = pnum;
6dd3bc7e
JR
578 aeb->vol_id = vol_id;
579 aeb->lnum = lnum;
2c5ec5ce
AB
580 aeb->scrub = ((cmp_res & 2) || bitflips);
581 aeb->copy_flag = vid_hdr->copy_flag;
582 aeb->sqnum = sqnum;
801c135c 583
517af48c
AB
584 if (av->highest_lnum == lnum)
585 av->last_data_size =
3261ebd7 586 be32_to_cpu(vid_hdr->data_size);
801c135c
AB
587
588 return 0;
589 } else {
590 /*
025dfdaf 591 * This logical eraseblock is older than the one found
801c135c
AB
592 * previously.
593 */
6dd3bc7e
JR
594 return add_to_list(ai, pnum, vol_id, lnum, ec,
595 cmp_res & 4, &ai->erase);
801c135c
AB
596 }
597 }
598
599 /*
600 * We've met this logical eraseblock for the first time, add it to the
a4e6042f 601 * attaching information.
801c135c
AB
602 */
603
32608703 604 err = validate_vid_hdr(ubi, vid_hdr, av, pnum);
801c135c
AB
605 if (err)
606 return err;
607
1fc2e3e5 608 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
2c5ec5ce 609 if (!aeb)
801c135c
AB
610 return -ENOMEM;
611
2c5ec5ce
AB
612 aeb->ec = ec;
613 aeb->pnum = pnum;
6dd3bc7e 614 aeb->vol_id = vol_id;
2c5ec5ce
AB
615 aeb->lnum = lnum;
616 aeb->scrub = bitflips;
617 aeb->copy_flag = vid_hdr->copy_flag;
618 aeb->sqnum = sqnum;
801c135c 619
517af48c
AB
620 if (av->highest_lnum <= lnum) {
621 av->highest_lnum = lnum;
622 av->last_data_size = be32_to_cpu(vid_hdr->data_size);
801c135c
AB
623 }
624
517af48c 625 av->leb_count += 1;
2c5ec5ce 626 rb_link_node(&aeb->u.rb, parent, p);
517af48c 627 rb_insert_color(&aeb->u.rb, &av->root);
801c135c
AB
628 return 0;
629}
630
631/**
dcd85fdd 632 * ubi_find_av - find volume in the attaching information.
a4e6042f 633 * @ai: attaching information
801c135c
AB
634 * @vol_id: the requested volume ID
635 *
636 * This function returns a pointer to the volume description or %NULL if there
a4e6042f 637 * are no data about this volume in the attaching information.
801c135c 638 */
dcd85fdd
AB
639struct ubi_ainf_volume *ubi_find_av(const struct ubi_attach_info *ai,
640 int vol_id)
801c135c 641{
517af48c 642 struct ubi_ainf_volume *av;
a4e6042f 643 struct rb_node *p = ai->volumes.rb_node;
801c135c
AB
644
645 while (p) {
517af48c 646 av = rb_entry(p, struct ubi_ainf_volume, rb);
801c135c 647
517af48c
AB
648 if (vol_id == av->vol_id)
649 return av;
801c135c 650
517af48c 651 if (vol_id > av->vol_id)
801c135c
AB
652 p = p->rb_left;
653 else
654 p = p->rb_right;
655 }
656
657 return NULL;
658}
659
801c135c 660/**
d717dc2f 661 * ubi_remove_av - delete attaching information about a volume.
a4e6042f 662 * @ai: attaching information
517af48c 663 * @av: the volume attaching information to delete
801c135c 664 */
d717dc2f 665void ubi_remove_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av)
801c135c
AB
666{
667 struct rb_node *rb;
2c5ec5ce 668 struct ubi_ainf_peb *aeb;
801c135c 669
517af48c 670 dbg_bld("remove attaching information about volume %d", av->vol_id);
801c135c 671
517af48c 672 while ((rb = rb_first(&av->root))) {
2c5ec5ce 673 aeb = rb_entry(rb, struct ubi_ainf_peb, u.rb);
517af48c 674 rb_erase(&aeb->u.rb, &av->root);
a4e6042f 675 list_add_tail(&aeb->u.list, &ai->erase);
801c135c
AB
676 }
677
517af48c
AB
678 rb_erase(&av->rb, &ai->volumes);
679 kfree(av);
a4e6042f 680 ai->vols_found -= 1;
801c135c
AB
681}
682
683/**
13d33dad 684 * early_erase_peb - erase a physical eraseblock.
801c135c 685 * @ubi: UBI device description object
a4e6042f 686 * @ai: attaching information
801c135c 687 * @pnum: physical eraseblock number to erase;
9c47fb2f 688 * @ec: erase counter value to write (%UBI_UNKNOWN if it is unknown)
801c135c
AB
689 *
690 * This function erases physical eraseblock 'pnum', and writes the erase
691 * counter header to it. This function should only be used on UBI device
85c6e6e2
AB
692 * initialization stages, when the EBA sub-system had not been yet initialized.
693 * This function returns zero in case of success and a negative error code in
694 * case of failure.
801c135c 695 */
13d33dad
AB
696static int early_erase_peb(struct ubi_device *ubi,
697 const struct ubi_attach_info *ai, int pnum, int ec)
801c135c
AB
698{
699 int err;
700 struct ubi_ec_hdr *ec_hdr;
701
801c135c
AB
702 if ((long long)ec >= UBI_MAX_ERASECOUNTER) {
703 /*
704 * Erase counter overflow. Upgrade UBI and use 64-bit
705 * erase counters internally.
706 */
32608703
TB
707 ubi_err(ubi, "erase counter overflow at PEB %d, EC %d",
708 pnum, ec);
801c135c
AB
709 return -EINVAL;
710 }
711
dcec4c3b
FM
712 ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
713 if (!ec_hdr)
714 return -ENOMEM;
715
3261ebd7 716 ec_hdr->ec = cpu_to_be64(ec);
801c135c
AB
717
718 err = ubi_io_sync_erase(ubi, pnum, 0);
719 if (err < 0)
720 goto out_free;
721
722 err = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr);
723
724out_free:
725 kfree(ec_hdr);
726 return err;
727}
728
729/**
c87fbd7d 730 * ubi_early_get_peb - get a free physical eraseblock.
801c135c 731 * @ubi: UBI device description object
a4e6042f 732 * @ai: attaching information
801c135c
AB
733 *
734 * This function returns a free physical eraseblock. It is supposed to be
85c6e6e2
AB
735 * called on the UBI initialization stages when the wear-leveling sub-system is
736 * not initialized yet. This function picks a physical eraseblocks from one of
737 * the lists, writes the EC header if it is needed, and removes it from the
738 * list.
801c135c 739 *
fbd0107f
AB
740 * This function returns a pointer to the "aeb" of the found free PEB in case
741 * of success and an error code in case of failure.
801c135c 742 */
c87fbd7d
AB
743struct ubi_ainf_peb *ubi_early_get_peb(struct ubi_device *ubi,
744 struct ubi_attach_info *ai)
801c135c 745{
5fc01ab6 746 int err = 0;
2c5ec5ce 747 struct ubi_ainf_peb *aeb, *tmp_aeb;
801c135c 748
a4e6042f
AB
749 if (!list_empty(&ai->free)) {
750 aeb = list_entry(ai->free.next, struct ubi_ainf_peb, u.list);
2c5ec5ce
AB
751 list_del(&aeb->u.list);
752 dbg_bld("return free PEB %d, EC %d", aeb->pnum, aeb->ec);
753 return aeb;
801c135c
AB
754 }
755
5fc01ab6
AB
756 /*
757 * We try to erase the first physical eraseblock from the erase list
758 * and pick it if we succeed, or try to erase the next one if not. And
759 * so forth. We don't want to take care about bad eraseblocks here -
760 * they'll be handled later.
761 */
a4e6042f 762 list_for_each_entry_safe(aeb, tmp_aeb, &ai->erase, u.list) {
9c47fb2f 763 if (aeb->ec == UBI_UNKNOWN)
a4e6042f 764 aeb->ec = ai->mean_ec;
801c135c 765
13d33dad 766 err = early_erase_peb(ubi, ai, aeb->pnum, aeb->ec+1);
5fc01ab6
AB
767 if (err)
768 continue;
801c135c 769
2c5ec5ce
AB
770 aeb->ec += 1;
771 list_del(&aeb->u.list);
772 dbg_bld("return PEB %d, EC %d", aeb->pnum, aeb->ec);
773 return aeb;
801c135c
AB
774 }
775
32608703 776 ubi_err(ubi, "no free eraseblocks");
801c135c
AB
777 return ERR_PTR(-ENOSPC);
778}
779
feeba4b8 780/**
45aafd32 781 * check_corruption - check the data area of PEB.
feeba4b8 782 * @ubi: UBI device description object
dac6e208 783 * @vid_hdr: the (corrupted) VID header of this PEB
feeba4b8
AB
784 * @pnum: the physical eraseblock number to check
785 *
786 * This is a helper function which is used to distinguish between VID header
787 * corruptions caused by power cuts and other reasons. If the PEB contains only
45aafd32 788 * 0xFF bytes in the data area, the VID header is most probably corrupted
feeba4b8 789 * because of a power cut (%0 is returned in this case). Otherwise, it was
45aafd32
AB
790 * probably corrupted for some other reasons (%1 is returned in this case). A
791 * negative error code is returned if a read error occurred.
feeba4b8
AB
792 *
793 * If the corruption reason was a power cut, UBI can safely erase this PEB.
794 * Otherwise, it should preserve it to avoid possibly destroying important
795 * information.
796 */
45aafd32
AB
797static int check_corruption(struct ubi_device *ubi, struct ubi_vid_hdr *vid_hdr,
798 int pnum)
feeba4b8
AB
799{
800 int err;
801
802 mutex_lock(&ubi->buf_mutex);
0ca39d74 803 memset(ubi->peb_buf, 0x00, ubi->leb_size);
feeba4b8 804
0ca39d74 805 err = ubi_io_read(ubi, ubi->peb_buf, pnum, ubi->leb_start,
feeba4b8 806 ubi->leb_size);
d57f4054 807 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err)) {
45aafd32
AB
808 /*
809 * Bit-flips or integrity errors while reading the data area.
810 * It is difficult to say for sure what type of corruption is
811 * this, but presumably a power cut happened while this PEB was
812 * erased, so it became unstable and corrupted, and should be
813 * erased.
814 */
1b1d76e2
DC
815 err = 0;
816 goto out_unlock;
45aafd32
AB
817 }
818
819 if (err)
1b1d76e2 820 goto out_unlock;
feeba4b8 821
0ca39d74 822 if (ubi_check_pattern(ubi->peb_buf, 0xFF, ubi->leb_size))
1b1d76e2 823 goto out_unlock;
feeba4b8 824
32608703 825 ubi_err(ubi, "PEB %d contains corrupted VID header, and the data does not contain all 0xFF",
049333ce 826 pnum);
32608703 827 ubi_err(ubi, "this may be a non-UBI PEB or a severe VID header corruption which requires manual inspection");
a904e3f1 828 ubi_dump_vid_hdr(vid_hdr);
719bb840
AB
829 pr_err("hexdump of PEB %d offset %d, length %d",
830 pnum, ubi->leb_start, ubi->leb_size);
feeba4b8 831 ubi_dbg_print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1,
0ca39d74 832 ubi->peb_buf, ubi->leb_size, 1);
1b1d76e2
DC
833 err = 1;
834
835out_unlock:
feeba4b8 836 mutex_unlock(&ubi->buf_mutex);
1b1d76e2 837 return err;
feeba4b8
AB
838}
839
243a4f81
RW
840static 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
801c135c 854/**
fbd0107f 855 * scan_peb - scan and process UBI headers of a PEB.
801c135c 856 * @ubi: UBI device description object
a4e6042f 857 * @ai: attaching information
801c135c 858 * @pnum: the physical eraseblock number
74f2c6e9 859 * @fast: true if we're scanning for a Fastmap
801c135c 860 *
fbd0107f
AB
861 * 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.
801c135c 865 */
74f2c6e9
RW
866static int scan_peb(struct ubi_device *ubi, struct ubi_attach_info *ai,
867 int pnum, bool fast)
801c135c 868{
fdf10ed7 869 long long ec;
dac6e208 870 int err, bitflips = 0, vol_id = -1, ec_err = 0;
801c135c
AB
871
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) {
a4e6042f 879 ai->bad_peb_count += 1;
801c135c
AB
880 return 0;
881 }
882
883 err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
884 if (err < 0)
885 return err;
b3321508
AB
886 switch (err) {
887 case 0:
888 break;
889 case UBI_IO_BITFLIPS:
801c135c 890 bitflips = 1;
b3321508
AB
891 break;
892 case UBI_IO_FF:
a4e6042f 893 ai->empty_peb_count += 1;
6dd3bc7e
JR
894 return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
895 UBI_UNKNOWN, 0, &ai->erase);
b3321508 896 case UBI_IO_FF_BITFLIPS:
a4e6042f 897 ai->empty_peb_count += 1;
6dd3bc7e
JR
898 return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
899 UBI_UNKNOWN, 1, &ai->erase);
b3321508 900 case UBI_IO_BAD_HDR_EBADMSG:
b3321508 901 case UBI_IO_BAD_HDR:
801c135c
AB
902 /*
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 */
e0e718c2 907 ec_err = err;
9c47fb2f 908 ec = UBI_UNKNOWN;
801c135c 909 bitflips = 1;
b3321508
AB
910 break;
911 default:
32608703
TB
912 ubi_err(ubi, "'ubi_io_read_ec_hdr()' returned unknown code %d",
913 err);
b3321508 914 return -EINVAL;
801c135c
AB
915 }
916
e0e718c2 917 if (!ec_err) {
fe96efc1
AB
918 int image_seq;
919
801c135c
AB
920 /* Make sure UBI version is OK */
921 if (ech->version != UBI_VERSION) {
32608703 922 ubi_err(ubi, "this UBI version is %d, image version is %d",
801c135c
AB
923 UBI_VERSION, (int)ech->version);
924 return -EINVAL;
925 }
926
3261ebd7 927 ec = be64_to_cpu(ech->ec);
801c135c
AB
928 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 */
32608703 936 ubi_err(ubi, "erase counter overflow, max is %d",
801c135c 937 UBI_MAX_ERASECOUNTER);
a904e3f1 938 ubi_dump_ec_hdr(ech);
801c135c
AB
939 return -EINVAL;
940 }
fe96efc1 941
32bc4820
AH
942 /*
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 */
3dc948da 953 image_seq = be32_to_cpu(ech->image_seq);
55b80c40 954 if (!ubi->image_seq)
fe96efc1 955 ubi->image_seq = image_seq;
55b80c40 956 if (image_seq && ubi->image_seq != image_seq) {
32608703 957 ubi_err(ubi, "bad image sequence number %d in PEB %d, expected %d",
049333ce 958 image_seq, pnum, ubi->image_seq);
a904e3f1 959 ubi_dump_ec_hdr(ech);
fe96efc1
AB
960 return -EINVAL;
961 }
801c135c
AB
962 }
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;
b3321508
AB
969 switch (err) {
970 case 0:
971 break;
972 case UBI_IO_BITFLIPS:
801c135c 973 bitflips = 1;
b3321508
AB
974 break;
975 case UBI_IO_BAD_HDR_EBADMSG:
0525dac9
AB
976 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 */
a4e6042f 983 ai->maybe_bad_peb_count += 1;
b3321508 984 case UBI_IO_BAD_HDR:
74f2c6e9
RW
985 /*
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
feeba4b8
AB
999 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
45aafd32 1005 * contains garbage because of a power cut during erase
feeba4b8 1006 * operation. So we just schedule this PEB for erasure.
7ac760c2 1007 *
25985edc 1008 * Besides, in case of NOR flash, we deliberately
7ac760c2
AB
1009 * corrupt both headers because NOR flash erasure is
1010 * slow and can start from the end.
feeba4b8
AB
1011 */
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 */
45aafd32 1018 err = check_corruption(ubi, vidh, pnum);
df3fca4c
AB
1019
1020 if (err < 0)
1021 return err;
1022 else if (!err)
feeba4b8 1023 /* This corruption is caused by a power cut */
6dd3bc7e
JR
1024 err = add_to_list(ai, pnum, UBI_UNKNOWN,
1025 UBI_UNKNOWN, ec, 1, &ai->erase);
feeba4b8
AB
1026 else
1027 /* This is an unexpected corruption */
a4e6042f 1028 err = add_corrupted(ai, pnum, ec);
feeba4b8
AB
1029 if (err)
1030 return err;
1031 goto adjust_mean_ec;
b3321508 1032 case UBI_IO_FF_BITFLIPS:
6dd3bc7e
JR
1033 err = add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
1034 ec, 1, &ai->erase);
801c135c
AB
1035 if (err)
1036 return err;
1037 goto adjust_mean_ec;
b3321508 1038 case UBI_IO_FF:
193819cf 1039 if (ec_err || bitflips)
6dd3bc7e
JR
1040 err = add_to_list(ai, pnum, UBI_UNKNOWN,
1041 UBI_UNKNOWN, ec, 1, &ai->erase);
b3321508 1042 else
6dd3bc7e
JR
1043 err = add_to_list(ai, pnum, UBI_UNKNOWN,
1044 UBI_UNKNOWN, ec, 0, &ai->free);
801c135c
AB
1045 if (err)
1046 return err;
1047 goto adjust_mean_ec;
b3321508 1048 default:
32608703 1049 ubi_err(ubi, "'ubi_io_read_vid_hdr()' returned unknown code %d",
b3321508
AB
1050 err);
1051 return -EINVAL;
801c135c
AB
1052 }
1053
3261ebd7 1054 vol_id = be32_to_cpu(vidh->vol_id);
243a4f81 1055 if (vol_id > UBI_MAX_VOLUMES && !vol_ignored(vol_id)) {
3261ebd7 1056 int lnum = be32_to_cpu(vidh->lnum);
801c135c
AB
1057
1058 /* Unsupported internal volume */
1059 switch (vidh->compat) {
1060 case UBI_COMPAT_DELETE:
243a4f81
RW
1061 ubi_msg(ubi, "\"delete\" compatible internal volume %d:%d found, will remove it",
1062 vol_id, lnum);
1063
6dd3bc7e
JR
1064 err = add_to_list(ai, pnum, vol_id, lnum,
1065 ec, 1, &ai->erase);
801c135c
AB
1066 if (err)
1067 return err;
158132c9 1068 return 0;
801c135c
AB
1069
1070 case UBI_COMPAT_RO:
32608703 1071 ubi_msg(ubi, "read-only compatible internal volume %d:%d found, switch to read-only mode",
801c135c
AB
1072 vol_id, lnum);
1073 ubi->ro_mode = 1;
1074 break;
1075
1076 case UBI_COMPAT_PRESERVE:
32608703 1077 ubi_msg(ubi, "\"preserve\" compatible internal volume %d:%d found",
049333ce 1078 vol_id, lnum);
6dd3bc7e
JR
1079 err = add_to_list(ai, pnum, vol_id, lnum,
1080 ec, 0, &ai->alien);
801c135c
AB
1081 if (err)
1082 return err;
801c135c
AB
1083 return 0;
1084
1085 case UBI_COMPAT_REJECT:
32608703 1086 ubi_err(ubi, "incompatible internal volume %d:%d found",
801c135c
AB
1087 vol_id, lnum);
1088 return -EINVAL;
1089 }
1090 }
1091
e0e718c2 1092 if (ec_err)
32608703 1093 ubi_warn(ubi, "valid VID header but corrupted EC header at PEB %d",
29a88c99 1094 pnum);
fdf10ed7
RW
1095
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
801c135c
AB
1101 if (err)
1102 return err;
1103
1104adjust_mean_ec:
e0e718c2 1105 if (!ec_err) {
a4e6042f
AB
1106 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;
801c135c
AB
1112 }
1113
1114 return 0;
1115}
1116
0798cea8 1117/**
fbd0107f 1118 * late_analysis - analyze the overall situation with PEB.
0798cea8 1119 * @ubi: UBI device description object
a4e6042f 1120 * @ai: attaching information
0798cea8 1121 *
fbd0107f
AB
1122 * 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.
0798cea8 1127 */
fbd0107f 1128static int late_analysis(struct ubi_device *ubi, struct ubi_attach_info *ai)
0798cea8 1129{
2c5ec5ce 1130 struct ubi_ainf_peb *aeb;
0525dac9 1131 int max_corr, peb_count;
0798cea8 1132
a4e6042f 1133 peb_count = ubi->peb_count - ai->bad_peb_count - ai->alien_peb_count;
0525dac9 1134 max_corr = peb_count / 20 ?: 8;
0798cea8
AB
1135
1136 /*
0525dac9 1137 * Few corrupted PEBs is not a problem and may be just a result of
0798cea8
AB
1138 * unclean reboots. However, many of them may indicate some problems
1139 * with the flash HW or driver.
1140 */
a4e6042f 1141 if (ai->corr_peb_count) {
32608703 1142 ubi_err(ubi, "%d PEBs are corrupted and preserved",
a4e6042f 1143 ai->corr_peb_count);
e28453bb 1144 pr_err("Corrupted PEBs are:");
a4e6042f 1145 list_for_each_entry(aeb, &ai->corr, u.list)
e28453bb
AB
1146 pr_cont(" %d", aeb->pnum);
1147 pr_cont("\n");
0798cea8
AB
1148
1149 /*
1150 * If too many PEBs are corrupted, we refuse attaching,
1151 * otherwise, only print a warning.
1152 */
a4e6042f 1153 if (ai->corr_peb_count >= max_corr) {
32608703 1154 ubi_err(ubi, "too many corrupted PEBs, refusing");
0798cea8
AB
1155 return -EINVAL;
1156 }
1157 }
1158
a4e6042f 1159 if (ai->empty_peb_count + ai->maybe_bad_peb_count == peb_count) {
0525dac9
AB
1160 /*
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 */
a4e6042f
AB
1175 if (ai->maybe_bad_peb_count <= 2) {
1176 ai->is_empty = 1;
32608703 1177 ubi_msg(ubi, "empty MTD device detected");
0525dac9
AB
1178 get_random_bytes(&ubi->image_seq,
1179 sizeof(ubi->image_seq));
0798cea8 1180 } else {
32608703 1181 ubi_err(ubi, "MTD device is not UBI-formatted and possibly contains non-UBI data - refusing it");
0798cea8
AB
1182 return -EINVAL;
1183 }
0525dac9 1184
0798cea8
AB
1185 }
1186
0798cea8
AB
1187 return 0;
1188}
1189
dac6e208
RW
1190/**
1191 * destroy_av - free volume attaching information.
1192 * @av: volume attaching information
1193 * @ai: attaching information
1194 *
1195 * This function destroys the volume attaching information.
1196 */
1197static void destroy_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av)
1198{
1199 struct ubi_ainf_peb *aeb;
1200 struct rb_node *this = av->root.rb_node;
1201
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 {
1208 aeb = rb_entry(this, struct ubi_ainf_peb, u.rb);
1209 this = rb_parent(this);
1210 if (this) {
1211 if (this->rb_left == &aeb->u.rb)
1212 this->rb_left = NULL;
1213 else
1214 this->rb_right = NULL;
1215 }
1216
1217 kmem_cache_free(ai->aeb_slab_cache, aeb);
1218 }
1219 }
1220 kfree(av);
1221}
1222
1223/**
1224 * destroy_ai - destroy attaching information.
1225 * @ai: attaching information
1226 */
1227static void destroy_ai(struct ubi_attach_info *ai)
1228{
1229 struct ubi_ainf_peb *aeb, *aeb_tmp;
1230 struct ubi_ainf_volume *av;
1231 struct rb_node *rb;
1232
1233 list_for_each_entry_safe(aeb, aeb_tmp, &ai->alien, u.list) {
1234 list_del(&aeb->u.list);
1235 kmem_cache_free(ai->aeb_slab_cache, aeb);
1236 }
1237 list_for_each_entry_safe(aeb, aeb_tmp, &ai->erase, u.list) {
1238 list_del(&aeb->u.list);
1239 kmem_cache_free(ai->aeb_slab_cache, aeb);
1240 }
1241 list_for_each_entry_safe(aeb, aeb_tmp, &ai->corr, u.list) {
1242 list_del(&aeb->u.list);
1243 kmem_cache_free(ai->aeb_slab_cache, aeb);
1244 }
1245 list_for_each_entry_safe(aeb, aeb_tmp, &ai->free, u.list) {
1246 list_del(&aeb->u.list);
1247 kmem_cache_free(ai->aeb_slab_cache, aeb);
1248 }
fdf10ed7
RW
1249 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 }
dac6e208
RW
1253
1254 /* Destroy the volume RB-tree */
1255 rb = ai->volumes.rb_node;
1256 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 {
1262 av = rb_entry(rb, struct ubi_ainf_volume, rb);
1263
1264 rb = rb_parent(rb);
1265 if (rb) {
1266 if (rb->rb_left == &av->rb)
1267 rb->rb_left = NULL;
1268 else
1269 rb->rb_right = NULL;
1270 }
1271
1272 destroy_av(ai, av);
1273 }
1274 }
1275
f9a113d6 1276 kmem_cache_destroy(ai->aeb_slab_cache);
dac6e208
RW
1277 kfree(ai);
1278}
1279
801c135c 1280/**
47e1ec70 1281 * scan_all - scan entire MTD device.
801c135c 1282 * @ubi: UBI device description object
dac6e208
RW
1283 * @ai: attach info object
1284 * @start: start scanning at this PEB
801c135c
AB
1285 *
1286 * This function does full scanning of an MTD device and returns complete
fbd0107f
AB
1287 * information about it in form of a "struct ubi_attach_info" object. In case
1288 * of failure, an error code is returned.
801c135c 1289 */
dac6e208
RW
1290static int scan_all(struct ubi_device *ubi, struct ubi_attach_info *ai,
1291 int start)
801c135c
AB
1292{
1293 int err, pnum;
1294 struct rb_node *rb1, *rb2;
517af48c 1295 struct ubi_ainf_volume *av;
2c5ec5ce 1296 struct ubi_ainf_peb *aeb;
801c135c
AB
1297
1298 err = -ENOMEM;
6c1e875c 1299
801c135c
AB
1300 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1301 if (!ech)
dac6e208 1302 return err;
801c135c 1303
33818bbb 1304 vidh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
801c135c
AB
1305 if (!vidh)
1306 goto out_ech;
1307
dac6e208 1308 for (pnum = start; pnum < ubi->peb_count; pnum++) {
801c135c
AB
1309 cond_resched();
1310
c8566350 1311 dbg_gen("process PEB %d", pnum);
74f2c6e9 1312 err = scan_peb(ubi, ai, pnum, false);
801c135c
AB
1313 if (err < 0)
1314 goto out_vidh;
1315 }
1316
32608703 1317 ubi_msg(ubi, "scanning is finished");
801c135c 1318
4bc1dca4 1319 /* Calculate mean erase counter */
a4e6042f
AB
1320 if (ai->ec_count)
1321 ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count);
801c135c 1322
fbd0107f 1323 err = late_analysis(ubi, ai);
0798cea8
AB
1324 if (err)
1325 goto out_vidh;
4a406856 1326
801c135c
AB
1327 /*
1328 * In case of unknown erase counter we use the mean erase counter
1329 * value.
1330 */
517af48c
AB
1331 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
1332 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
9c47fb2f 1333 if (aeb->ec == UBI_UNKNOWN)
a4e6042f 1334 aeb->ec = ai->mean_ec;
801c135c
AB
1335 }
1336
a4e6042f 1337 list_for_each_entry(aeb, &ai->free, u.list) {
9c47fb2f 1338 if (aeb->ec == UBI_UNKNOWN)
a4e6042f 1339 aeb->ec = ai->mean_ec;
801c135c
AB
1340 }
1341
a4e6042f 1342 list_for_each_entry(aeb, &ai->corr, u.list)
9c47fb2f 1343 if (aeb->ec == UBI_UNKNOWN)
a4e6042f 1344 aeb->ec = ai->mean_ec;
801c135c 1345
a4e6042f 1346 list_for_each_entry(aeb, &ai->erase, u.list)
9c47fb2f 1347 if (aeb->ec == UBI_UNKNOWN)
a4e6042f 1348 aeb->ec = ai->mean_ec;
801c135c 1349
a4e6042f 1350 err = self_check_ai(ubi, ai);
adbf05e3 1351 if (err)
801c135c 1352 goto out_vidh;
801c135c
AB
1353
1354 ubi_free_vid_hdr(ubi, vidh);
1355 kfree(ech);
1356
dac6e208 1357 return 0;
801c135c
AB
1358
1359out_vidh:
1360 ubi_free_vid_hdr(ubi, vidh);
1361out_ech:
1362 kfree(ech);
dac6e208
RW
1363 return err;
1364}
1365
d2158f69 1366static struct ubi_attach_info *alloc_ai(void)
98105d08
RW
1367{
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);
fdf10ed7 1378 INIT_LIST_HEAD(&ai->fastmap);
98105d08 1379 ai->volumes = RB_ROOT;
d2158f69 1380 ai->aeb_slab_cache = kmem_cache_create("ubi_aeb_slab_cache",
98105d08
RW
1381 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
dac6e208
RW
1391#ifdef CONFIG_MTD_UBI_FASTMAP
1392
1393/**
d139d300 1394 * scan_fast - try to find a fastmap and attach from it.
dac6e208
RW
1395 * @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 */
98105d08 1403static int scan_fast(struct ubi_device *ubi, struct ubi_attach_info **ai)
dac6e208 1404{
fdf10ed7
RW
1405 int err, pnum;
1406 struct ubi_attach_info *scan_ai;
dac6e208
RW
1407
1408 err = -ENOMEM;
1409
fdf10ed7
RW
1410 scan_ai = alloc_ai();
1411 if (!scan_ai)
1412 goto out;
1413
dac6e208
RW
1414 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1415 if (!ech)
fdf10ed7 1416 goto out_ai;
dac6e208
RW
1417
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++) {
dac6e208
RW
1423 cond_resched();
1424
1425 dbg_gen("process PEB %d", pnum);
74f2c6e9 1426 err = scan_peb(ubi, scan_ai, pnum, true);
dac6e208
RW
1427 if (err < 0)
1428 goto out_vidh;
dac6e208
RW
1429 }
1430
1431 ubi_free_vid_hdr(ubi, vidh);
1432 kfree(ech);
1433
74f2c6e9
RW
1434 if (scan_ai->force_full_scan)
1435 err = UBI_NO_FASTMAP;
1436 else
1437 err = ubi_scan_fastmap(ubi, *ai, scan_ai);
1438
fdf10ed7
RW
1439 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);
98105d08 1448
fdf10ed7 1449 return err;
dac6e208
RW
1450
1451out_vidh:
1452 ubi_free_vid_hdr(ubi, vidh);
1453out_ech:
1454 kfree(ech);
fdf10ed7
RW
1455out_ai:
1456 destroy_ai(scan_ai);
dac6e208
RW
1457out:
1458 return err;
1459}
1460
1461#endif
1462
47e1ec70
AB
1463/**
1464 * ubi_attach - attach an MTD device.
1465 * @ubi: UBI device descriptor
dac6e208 1466 * @force_scan: if set to non-zero attach by scanning
47e1ec70
AB
1467 *
1468 * This function returns zero in case of success and a negative error code in
1469 * case of failure.
1470 */
dac6e208 1471int ubi_attach(struct ubi_device *ubi, int force_scan)
47e1ec70
AB
1472{
1473 int err;
1474 struct ubi_attach_info *ai;
1475
d2158f69 1476 ai = alloc_ai();
dac6e208
RW
1477 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 {
98105d08 1490 err = scan_fast(ubi, &ai);
180a5357 1491 if (err > 0 || mtd_is_eccerr(err)) {
dac6e208
RW
1492 if (err != UBI_NO_FASTMAP) {
1493 destroy_ai(ai);
d2158f69 1494 ai = alloc_ai();
dac6e208
RW
1495 if (!ai)
1496 return -ENOMEM;
dac6e208 1497
4b3e0a25
RW
1498 err = scan_all(ubi, ai, 0);
1499 } else {
1500 err = scan_all(ubi, ai, UBI_FM_MAX_START);
1501 }
dac6e208
RW
1502 }
1503 }
1504#else
1505 err = scan_all(ubi, ai, 0);
1506#endif
1507 if (err)
1508 goto out_ai;
47e1ec70
AB
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;
719bb840 1515 dbg_gen("max. sequence number: %llu", ai->max_sqnum);
47e1ec70
AB
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
dac6e208 1529#ifdef CONFIG_MTD_UBI_FASTMAP
560d86a1 1530 if (ubi->fm && ubi_dbg_chk_fastmap(ubi)) {
dac6e208
RW
1531 struct ubi_attach_info *scan_ai;
1532
d2158f69 1533 scan_ai = alloc_ai();
4d525145
JL
1534 if (!scan_ai) {
1535 err = -ENOMEM;
dac6e208 1536 goto out_wl;
4d525145 1537 }
dac6e208
RW
1538
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);
47e1ec70
AB
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:
dac6e208 1562 destroy_ai(ai);
47e1ec70
AB
1563 return err;
1564}
1565
801c135c 1566/**
a4e6042f 1567 * self_check_ai - check the attaching information.
801c135c 1568 * @ubi: UBI device description object
a4e6042f 1569 * @ai: attaching information
801c135c 1570 *
a4e6042f 1571 * This function returns zero if the attaching information is all right, and a
adbf05e3 1572 * negative error code if not or if an error occurred.
801c135c 1573 */
a4e6042f 1574static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai)
801c135c
AB
1575{
1576 int pnum, err, vols_found = 0;
1577 struct rb_node *rb1, *rb2;
517af48c 1578 struct ubi_ainf_volume *av;
2c5ec5ce 1579 struct ubi_ainf_peb *aeb, *last_aeb;
801c135c
AB
1580 uint8_t *buf;
1581
64575574 1582 if (!ubi_dbg_chk_gen(ubi))
92d124f5
AB
1583 return 0;
1584
801c135c 1585 /*
a4e6042f 1586 * At first, check that attaching information is OK.
801c135c 1587 */
517af48c 1588 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
801c135c
AB
1589 int leb_count = 0;
1590
1591 cond_resched();
1592
1593 vols_found += 1;
1594
a4e6042f 1595 if (ai->is_empty) {
32608703 1596 ubi_err(ubi, "bad is_empty flag");
517af48c 1597 goto bad_av;
801c135c
AB
1598 }
1599
517af48c
AB
1600 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) {
32608703 1603 ubi_err(ubi, "negative values");
517af48c 1604 goto bad_av;
801c135c
AB
1605 }
1606
517af48c
AB
1607 if (av->vol_id >= UBI_MAX_VOLUMES &&
1608 av->vol_id < UBI_INTERNAL_VOL_START) {
32608703 1609 ubi_err(ubi, "bad vol_id");
517af48c 1610 goto bad_av;
801c135c
AB
1611 }
1612
517af48c 1613 if (av->vol_id > ai->highest_vol_id) {
32608703 1614 ubi_err(ubi, "highest_vol_id is %d, but vol_id %d is there",
517af48c 1615 ai->highest_vol_id, av->vol_id);
801c135c
AB
1616 goto out;
1617 }
1618
517af48c
AB
1619 if (av->vol_type != UBI_DYNAMIC_VOLUME &&
1620 av->vol_type != UBI_STATIC_VOLUME) {
32608703 1621 ubi_err(ubi, "bad vol_type");
517af48c 1622 goto bad_av;
801c135c
AB
1623 }
1624
517af48c 1625 if (av->data_pad > ubi->leb_size / 2) {
32608703 1626 ubi_err(ubi, "bad data_pad");
517af48c 1627 goto bad_av;
801c135c
AB
1628 }
1629
2c5ec5ce 1630 last_aeb = NULL;
517af48c 1631 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
801c135c
AB
1632 cond_resched();
1633
2c5ec5ce 1634 last_aeb = aeb;
801c135c
AB
1635 leb_count += 1;
1636
2c5ec5ce 1637 if (aeb->pnum < 0 || aeb->ec < 0) {
32608703 1638 ubi_err(ubi, "negative values");
2c5ec5ce 1639 goto bad_aeb;
801c135c
AB
1640 }
1641
a4e6042f 1642 if (aeb->ec < ai->min_ec) {
32608703 1643 ubi_err(ubi, "bad ai->min_ec (%d), %d found",
a4e6042f 1644 ai->min_ec, aeb->ec);
2c5ec5ce 1645 goto bad_aeb;
801c135c
AB
1646 }
1647
a4e6042f 1648 if (aeb->ec > ai->max_ec) {
32608703 1649 ubi_err(ubi, "bad ai->max_ec (%d), %d found",
a4e6042f 1650 ai->max_ec, aeb->ec);
2c5ec5ce 1651 goto bad_aeb;
801c135c
AB
1652 }
1653
2c5ec5ce 1654 if (aeb->pnum >= ubi->peb_count) {
32608703 1655 ubi_err(ubi, "too high PEB number %d, total PEBs %d",
2c5ec5ce
AB
1656 aeb->pnum, ubi->peb_count);
1657 goto bad_aeb;
801c135c
AB
1658 }
1659
517af48c
AB
1660 if (av->vol_type == UBI_STATIC_VOLUME) {
1661 if (aeb->lnum >= av->used_ebs) {
32608703 1662 ubi_err(ubi, "bad lnum or used_ebs");
2c5ec5ce 1663 goto bad_aeb;
801c135c
AB
1664 }
1665 } else {
517af48c 1666 if (av->used_ebs != 0) {
32608703 1667 ubi_err(ubi, "non-zero used_ebs");
2c5ec5ce 1668 goto bad_aeb;
801c135c
AB
1669 }
1670 }
1671
517af48c 1672 if (aeb->lnum > av->highest_lnum) {
32608703 1673 ubi_err(ubi, "incorrect highest_lnum or lnum");
2c5ec5ce 1674 goto bad_aeb;
801c135c
AB
1675 }
1676 }
1677
517af48c 1678 if (av->leb_count != leb_count) {
32608703 1679 ubi_err(ubi, "bad leb_count, %d objects in the tree",
801c135c 1680 leb_count);
517af48c 1681 goto bad_av;
801c135c
AB
1682 }
1683
2c5ec5ce 1684 if (!last_aeb)
801c135c
AB
1685 continue;
1686
2c5ec5ce 1687 aeb = last_aeb;
801c135c 1688
517af48c 1689 if (aeb->lnum != av->highest_lnum) {
32608703 1690 ubi_err(ubi, "bad highest_lnum");
2c5ec5ce 1691 goto bad_aeb;
801c135c
AB
1692 }
1693 }
1694
a4e6042f 1695 if (vols_found != ai->vols_found) {
32608703 1696 ubi_err(ubi, "bad ai->vols_found %d, should be %d",
a4e6042f 1697 ai->vols_found, vols_found);
801c135c
AB
1698 goto out;
1699 }
1700
a4e6042f 1701 /* Check that attaching information is correct */
517af48c 1702 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
2c5ec5ce 1703 last_aeb = NULL;
517af48c 1704 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
801c135c
AB
1705 int vol_type;
1706
1707 cond_resched();
1708
2c5ec5ce 1709 last_aeb = aeb;
801c135c 1710
2c5ec5ce 1711 err = ubi_io_read_vid_hdr(ubi, aeb->pnum, vidh, 1);
801c135c 1712 if (err && err != UBI_IO_BITFLIPS) {
32608703
TB
1713 ubi_err(ubi, "VID header is not OK (%d)",
1714 err);
801c135c
AB
1715 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;
517af48c 1722 if (av->vol_type != vol_type) {
32608703 1723 ubi_err(ubi, "bad vol_type");
801c135c
AB
1724 goto bad_vid_hdr;
1725 }
1726
2c5ec5ce 1727 if (aeb->sqnum != be64_to_cpu(vidh->sqnum)) {
32608703 1728 ubi_err(ubi, "bad sqnum %llu", aeb->sqnum);
801c135c
AB
1729 goto bad_vid_hdr;
1730 }
1731
517af48c 1732 if (av->vol_id != be32_to_cpu(vidh->vol_id)) {
32608703 1733 ubi_err(ubi, "bad vol_id %d", av->vol_id);
801c135c
AB
1734 goto bad_vid_hdr;
1735 }
1736
517af48c 1737 if (av->compat != vidh->compat) {
32608703 1738 ubi_err(ubi, "bad compat %d", vidh->compat);
801c135c
AB
1739 goto bad_vid_hdr;
1740 }
1741
2c5ec5ce 1742 if (aeb->lnum != be32_to_cpu(vidh->lnum)) {
32608703 1743 ubi_err(ubi, "bad lnum %d", aeb->lnum);
801c135c
AB
1744 goto bad_vid_hdr;
1745 }
1746
517af48c 1747 if (av->used_ebs != be32_to_cpu(vidh->used_ebs)) {
32608703 1748 ubi_err(ubi, "bad used_ebs %d", av->used_ebs);
801c135c
AB
1749 goto bad_vid_hdr;
1750 }
1751
517af48c 1752 if (av->data_pad != be32_to_cpu(vidh->data_pad)) {
32608703 1753 ubi_err(ubi, "bad data_pad %d", av->data_pad);
801c135c
AB
1754 goto bad_vid_hdr;
1755 }
801c135c
AB
1756 }
1757
2c5ec5ce 1758 if (!last_aeb)
801c135c
AB
1759 continue;
1760
517af48c 1761 if (av->highest_lnum != be32_to_cpu(vidh->lnum)) {
32608703 1762 ubi_err(ubi, "bad highest_lnum %d", av->highest_lnum);
801c135c
AB
1763 goto bad_vid_hdr;
1764 }
1765
517af48c 1766 if (av->last_data_size != be32_to_cpu(vidh->data_size)) {
32608703
TB
1767 ubi_err(ubi, "bad last_data_size %d",
1768 av->last_data_size);
801c135c
AB
1769 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 */
d9b0744d 1777 buf = kzalloc(ubi->peb_count, GFP_KERNEL);
801c135c
AB
1778 if (!buf)
1779 return -ENOMEM;
1780
801c135c
AB
1781 for (pnum = 0; pnum < ubi->peb_count; pnum++) {
1782 err = ubi_io_is_bad(ubi, pnum);
341e1a0c
AB
1783 if (err < 0) {
1784 kfree(buf);
801c135c 1785 return err;
9c9ec147 1786 } else if (err)
d9b0744d 1787 buf[pnum] = 1;
801c135c
AB
1788 }
1789
517af48c
AB
1790 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb)
1791 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
2c5ec5ce 1792 buf[aeb->pnum] = 1;
801c135c 1793
a4e6042f 1794 list_for_each_entry(aeb, &ai->free, u.list)
2c5ec5ce 1795 buf[aeb->pnum] = 1;
801c135c 1796
a4e6042f 1797 list_for_each_entry(aeb, &ai->corr, u.list)
2c5ec5ce 1798 buf[aeb->pnum] = 1;
801c135c 1799
a4e6042f 1800 list_for_each_entry(aeb, &ai->erase, u.list)
2c5ec5ce 1801 buf[aeb->pnum] = 1;
801c135c 1802
a4e6042f 1803 list_for_each_entry(aeb, &ai->alien, u.list)
2c5ec5ce 1804 buf[aeb->pnum] = 1;
801c135c
AB
1805
1806 err = 0;
1807 for (pnum = 0; pnum < ubi->peb_count; pnum++)
d9b0744d 1808 if (!buf[pnum]) {
32608703 1809 ubi_err(ubi, "PEB %d is not referred", pnum);
801c135c
AB
1810 err = 1;
1811 }
1812
1813 kfree(buf);
1814 if (err)
1815 goto out;
1816 return 0;
1817
2c5ec5ce 1818bad_aeb:
32608703 1819 ubi_err(ubi, "bad attaching information about LEB %d", aeb->lnum);
2c5ec5ce 1820 ubi_dump_aeb(aeb, 0);
517af48c 1821 ubi_dump_av(av);
801c135c
AB
1822 goto out;
1823
517af48c 1824bad_av:
32608703 1825 ubi_err(ubi, "bad attaching information about volume %d", av->vol_id);
517af48c 1826 ubi_dump_av(av);
801c135c
AB
1827 goto out;
1828
1829bad_vid_hdr:
32608703 1830 ubi_err(ubi, "bad attaching information about volume %d", av->vol_id);
517af48c 1831 ubi_dump_av(av);
a904e3f1 1832 ubi_dump_vid_hdr(vidh);
801c135c
AB
1833
1834out:
25886a36 1835 dump_stack();
adbf05e3 1836 return -EINVAL;
801c135c 1837}