3c631863bf40b5b3b5db70e28f4e6b3937e4be49
[pandora-kernel.git] / drivers / mtd / ubi / scan.c
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 /*
22  * UBI scanning sub-system.
23  *
24  * This sub-system is responsible for scanning the flash media, checking UBI
25  * headers and providing complete information about the UBI flash image.
26  *
27  * The scanning information is represented by a &struct ubi_scan_info' object.
28  * Information about found volumes is represented by &struct ubi_scan_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.
31  *
32  * Scanned logical eraseblocks are represented by &struct ubi_scan_leb objects.
33  * These objects are kept in per-volume RB-trees with the root at the
34  * corresponding &struct ubi_scan_volume object. To put it differently, we keep
35  * an RB-tree of per-volume objects and each of these objects is the root of
36  * RB-tree of per-eraseblock objects.
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.
41  *
42  * UBI tries to distinguish between 2 types of corruptions.
43  * 1. Corruptions caused by power cuts. These are harmless and expected
44  *    corruptions and UBI tries to handle them gracefully, without printing too
45  *    many warnings and error messages. The idea is that we do not lose
46  *    important data in these case - we may lose only the data which was being
47  *    written to the media just before the power cut happened, and the upper
48  *    layers (e.g., UBIFS) are supposed to handle these situations. UBI puts
49  *    these PEBs to the head of the @erase list and they are scheduled for
50  *    erasure.
51  *
52  * 2. Unexpected corruptions which are not caused by power cuts. During
53  *    scanning, such PEBs are put to the @corr list and UBI preserves them.
54  *    Obviously, this lessens the amount of available PEBs, and if at some
55  *    point UBI runs out of free PEBs, it switches to R/O mode. UBI also loudly
56  *    informs about such PEBs every time the MTD device is attached.
57  *
58  * However, it is difficult to reliably distinguish between these types of
59  * corruptions and UBI's strategy is as follows. UBI assumes (2.) if the VID
60  * header is corrupted and the data area does not contain all 0xFFs, and there
61  * were not bit-flips or integrity errors while reading the data area. Otherwise
62  * UBI assumes (1.). The assumptions are:
63  *   o if the data area contains only 0xFFs, there is no data, and it is safe
64  *     to just erase this PEB.
65  *   o if the data area has bit-flips and data integrity errors (ECC errors on
66  *     NAND), it is probably a PEB which was being erased when power cut
67  *     happened.
68  */
69
70 #include <linux/err.h>
71 #include <linux/slab.h>
72 #include <linux/crc32.h>
73 #include <linux/math64.h>
74 #include <linux/random.h>
75 #include "ubi.h"
76
77 #ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
78 static int paranoid_check_si(struct ubi_device *ubi, struct ubi_scan_info *si);
79 #else
80 #define paranoid_check_si(ubi, si) 0
81 #endif
82
83 /* Temporary variables used during scanning */
84 static struct ubi_ec_hdr *ech;
85 static struct ubi_vid_hdr *vidh;
86
87 /**
88  * add_to_list - add physical eraseblock to a list.
89  * @si: scanning information
90  * @pnum: physical eraseblock number to add
91  * @ec: erase counter of the physical eraseblock
92  * @to_head: if not zero, add to the head of the list
93  * @list: the list to add to
94  *
95  * This function adds physical eraseblock @pnum to free, erase, or alien lists.
96  * If @to_head is not zero, PEB will be added to the head of the list, which
97  * basically means it will be processed first later. E.g., we add corrupted
98  * PEBs (corrupted due to power cuts) to the head of the erase list to make
99  * sure we erase them first and get rid of corruptions ASAP. This function
100  * returns zero in case of success and a negative error code in case of
101  * failure.
102  */
103 static int add_to_list(struct ubi_scan_info *si, int pnum, int ec, int to_head,
104                        struct list_head *list)
105 {
106         struct ubi_scan_leb *seb;
107
108         if (list == &si->free) {
109                 dbg_bld("add to free: PEB %d, EC %d", pnum, ec);
110         } else if (list == &si->erase) {
111                 dbg_bld("add to erase: PEB %d, EC %d", pnum, ec);
112         } else if (list == &si->alien) {
113                 dbg_bld("add to alien: PEB %d, EC %d", pnum, ec);
114                 si->alien_peb_count += 1;
115         } else
116                 BUG();
117
118         seb = kmalloc(sizeof(struct ubi_scan_leb), GFP_KERNEL);
119         if (!seb)
120                 return -ENOMEM;
121
122         seb->pnum = pnum;
123         seb->ec = ec;
124         if (to_head)
125                 list_add(&seb->u.list, list);
126         else
127                 list_add_tail(&seb->u.list, list);
128         return 0;
129 }
130
131 /**
132  * add_corrupted - add a corrupted physical eraseblock.
133  * @si: scanning information
134  * @pnum: physical eraseblock number to add
135  * @ec: erase counter of the physical eraseblock
136  *
137  * This function adds corrupted physical eraseblock @pnum to the 'corr' list.
138  * The corruption was presumably not caused by a power cut. Returns zero in
139  * case of success and a negative error code in case of failure.
140  */
141 static int add_corrupted(struct ubi_scan_info *si, int pnum, int ec)
142 {
143         struct ubi_scan_leb *seb;
144
145         dbg_bld("add to corrupted: PEB %d, EC %d", pnum, ec);
146
147         seb = kmalloc(sizeof(struct ubi_scan_leb), GFP_KERNEL);
148         if (!seb)
149                 return -ENOMEM;
150
151         si->corr_peb_count += 1;
152         seb->pnum = pnum;
153         seb->ec = ec;
154         list_add(&seb->u.list, &si->corr);
155         return 0;
156 }
157
158 /**
159  * validate_vid_hdr - check volume identifier header.
160  * @vid_hdr: the volume identifier header to check
161  * @sv: information about the volume this logical eraseblock belongs to
162  * @pnum: physical eraseblock number the VID header came from
163  *
164  * This function checks that data stored in @vid_hdr is consistent. Returns
165  * non-zero if an inconsistency was found and zero if not.
166  *
167  * Note, UBI does sanity check of everything it reads from the flash media.
168  * Most of the checks are done in the I/O sub-system. Here we check that the
169  * information in the VID header is consistent to the information in other VID
170  * headers of the same volume.
171  */
172 static int validate_vid_hdr(const struct ubi_vid_hdr *vid_hdr,
173                             const struct ubi_scan_volume *sv, int pnum)
174 {
175         int vol_type = vid_hdr->vol_type;
176         int vol_id = be32_to_cpu(vid_hdr->vol_id);
177         int used_ebs = be32_to_cpu(vid_hdr->used_ebs);
178         int data_pad = be32_to_cpu(vid_hdr->data_pad);
179
180         if (sv->leb_count != 0) {
181                 int sv_vol_type;
182
183                 /*
184                  * This is not the first logical eraseblock belonging to this
185                  * volume. Ensure that the data in its VID header is consistent
186                  * to the data in previous logical eraseblock headers.
187                  */
188
189                 if (vol_id != sv->vol_id) {
190                         dbg_err("inconsistent vol_id");
191                         goto bad;
192                 }
193
194                 if (sv->vol_type == UBI_STATIC_VOLUME)
195                         sv_vol_type = UBI_VID_STATIC;
196                 else
197                         sv_vol_type = UBI_VID_DYNAMIC;
198
199                 if (vol_type != sv_vol_type) {
200                         dbg_err("inconsistent vol_type");
201                         goto bad;
202                 }
203
204                 if (used_ebs != sv->used_ebs) {
205                         dbg_err("inconsistent used_ebs");
206                         goto bad;
207                 }
208
209                 if (data_pad != sv->data_pad) {
210                         dbg_err("inconsistent data_pad");
211                         goto bad;
212                 }
213         }
214
215         return 0;
216
217 bad:
218         ubi_err("inconsistent VID header at PEB %d", pnum);
219         ubi_dbg_dump_vid_hdr(vid_hdr);
220         ubi_dbg_dump_sv(sv);
221         return -EINVAL;
222 }
223
224 /**
225  * add_volume - add volume to the scanning information.
226  * @si: scanning information
227  * @vol_id: ID of the volume to add
228  * @pnum: physical eraseblock number
229  * @vid_hdr: volume identifier header
230  *
231  * If the volume corresponding to the @vid_hdr logical eraseblock is already
232  * present in the scanning information, this function does nothing. Otherwise
233  * it adds corresponding volume to the scanning information. Returns a pointer
234  * to the scanning volume object in case of success and a negative error code
235  * in case of failure.
236  */
237 static struct ubi_scan_volume *add_volume(struct ubi_scan_info *si, int vol_id,
238                                           int pnum,
239                                           const struct ubi_vid_hdr *vid_hdr)
240 {
241         struct ubi_scan_volume *sv;
242         struct rb_node **p = &si->volumes.rb_node, *parent = NULL;
243
244         ubi_assert(vol_id == be32_to_cpu(vid_hdr->vol_id));
245
246         /* Walk the volume RB-tree to look if this volume is already present */
247         while (*p) {
248                 parent = *p;
249                 sv = rb_entry(parent, struct ubi_scan_volume, rb);
250
251                 if (vol_id == sv->vol_id)
252                         return sv;
253
254                 if (vol_id > sv->vol_id)
255                         p = &(*p)->rb_left;
256                 else
257                         p = &(*p)->rb_right;
258         }
259
260         /* The volume is absent - add it */
261         sv = kmalloc(sizeof(struct ubi_scan_volume), GFP_KERNEL);
262         if (!sv)
263                 return ERR_PTR(-ENOMEM);
264
265         sv->highest_lnum = sv->leb_count = 0;
266         sv->vol_id = vol_id;
267         sv->root = RB_ROOT;
268         sv->used_ebs = be32_to_cpu(vid_hdr->used_ebs);
269         sv->data_pad = be32_to_cpu(vid_hdr->data_pad);
270         sv->compat = vid_hdr->compat;
271         sv->vol_type = vid_hdr->vol_type == UBI_VID_DYNAMIC ? UBI_DYNAMIC_VOLUME
272                                                             : UBI_STATIC_VOLUME;
273         if (vol_id > si->highest_vol_id)
274                 si->highest_vol_id = vol_id;
275
276         rb_link_node(&sv->rb, parent, p);
277         rb_insert_color(&sv->rb, &si->volumes);
278         si->vols_found += 1;
279         dbg_bld("added volume %d", vol_id);
280         return sv;
281 }
282
283 /**
284  * compare_lebs - find out which logical eraseblock is newer.
285  * @ubi: UBI device description object
286  * @seb: first logical eraseblock to compare
287  * @pnum: physical eraseblock number of the second logical eraseblock to
288  * compare
289  * @vid_hdr: volume identifier header of the second logical eraseblock
290  *
291  * This function compares 2 copies of a LEB and informs which one is newer. In
292  * case of success this function returns a positive value, in case of failure, a
293  * negative error code is returned. The success return codes use the following
294  * bits:
295  *     o bit 0 is cleared: the first PEB (described by @seb) is newer than the
296  *       second PEB (described by @pnum and @vid_hdr);
297  *     o bit 0 is set: the second PEB is newer;
298  *     o bit 1 is cleared: no bit-flips were detected in the newer LEB;
299  *     o bit 1 is set: bit-flips were detected in the newer LEB;
300  *     o bit 2 is cleared: the older LEB is not corrupted;
301  *     o bit 2 is set: the older LEB is corrupted.
302  */
303 static int compare_lebs(struct ubi_device *ubi, const struct ubi_scan_leb *seb,
304                         int pnum, const struct ubi_vid_hdr *vid_hdr)
305 {
306         void *buf;
307         int len, err, second_is_newer, bitflips = 0, corrupted = 0;
308         uint32_t data_crc, crc;
309         struct ubi_vid_hdr *vh = NULL;
310         unsigned long long sqnum2 = be64_to_cpu(vid_hdr->sqnum);
311
312         if (sqnum2 == seb->sqnum) {
313                 /*
314                  * This must be a really ancient UBI image which has been
315                  * created before sequence numbers support has been added. At
316                  * that times we used 32-bit LEB versions stored in logical
317                  * eraseblocks. That was before UBI got into mainline. We do not
318                  * support these images anymore. Well, those images still work,
319                  * but only if no unclean reboots happened.
320                  */
321                 ubi_err("unsupported on-flash UBI format\n");
322                 return -EINVAL;
323         }
324
325         /* Obviously the LEB with lower sequence counter is older */
326         second_is_newer = !!(sqnum2 > seb->sqnum);
327
328         /*
329          * Now we know which copy is newer. If the copy flag of the PEB with
330          * newer version is not set, then we just return, otherwise we have to
331          * check data CRC. For the second PEB we already have the VID header,
332          * for the first one - we'll need to re-read it from flash.
333          *
334          * Note: this may be optimized so that we wouldn't read twice.
335          */
336
337         if (second_is_newer) {
338                 if (!vid_hdr->copy_flag) {
339                         /* It is not a copy, so it is newer */
340                         dbg_bld("second PEB %d is newer, copy_flag is unset",
341                                 pnum);
342                         return 1;
343                 }
344         } else {
345                 if (!seb->copy_flag) {
346                         /* It is not a copy, so it is newer */
347                         dbg_bld("first PEB %d is newer, copy_flag is unset",
348                                 pnum);
349                         return bitflips << 1;
350                 }
351
352                 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
353                 if (!vh)
354                         return -ENOMEM;
355
356                 pnum = seb->pnum;
357                 err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
358                 if (err) {
359                         if (err == UBI_IO_BITFLIPS)
360                                 bitflips = 1;
361                         else {
362                                 dbg_err("VID of PEB %d header is bad, but it "
363                                         "was OK earlier, err %d", pnum, err);
364                                 if (err > 0)
365                                         err = -EIO;
366
367                                 goto out_free_vidh;
368                         }
369                 }
370
371                 vid_hdr = vh;
372         }
373
374         /* Read the data of the copy and check the CRC */
375
376         len = be32_to_cpu(vid_hdr->data_size);
377         buf = vmalloc(len);
378         if (!buf) {
379                 err = -ENOMEM;
380                 goto out_free_vidh;
381         }
382
383         err = ubi_io_read_data(ubi, buf, pnum, 0, len);
384         if (err && err != UBI_IO_BITFLIPS && err != -EBADMSG)
385                 goto out_free_buf;
386
387         data_crc = be32_to_cpu(vid_hdr->data_crc);
388         crc = crc32(UBI_CRC32_INIT, buf, len);
389         if (crc != data_crc) {
390                 dbg_bld("PEB %d CRC error: calculated %#08x, must be %#08x",
391                         pnum, crc, data_crc);
392                 corrupted = 1;
393                 bitflips = 0;
394                 second_is_newer = !second_is_newer;
395         } else {
396                 dbg_bld("PEB %d CRC is OK", pnum);
397                 bitflips = !!err;
398         }
399
400         vfree(buf);
401         ubi_free_vid_hdr(ubi, vh);
402
403         if (second_is_newer)
404                 dbg_bld("second PEB %d is newer, copy_flag is set", pnum);
405         else
406                 dbg_bld("first PEB %d is newer, copy_flag is set", pnum);
407
408         return second_is_newer | (bitflips << 1) | (corrupted << 2);
409
410 out_free_buf:
411         vfree(buf);
412 out_free_vidh:
413         ubi_free_vid_hdr(ubi, vh);
414         return err;
415 }
416
417 /**
418  * ubi_scan_add_used - add physical eraseblock to the scanning information.
419  * @ubi: UBI device description object
420  * @si: scanning information
421  * @pnum: the physical eraseblock number
422  * @ec: erase counter
423  * @vid_hdr: the volume identifier header
424  * @bitflips: if bit-flips were detected when this physical eraseblock was read
425  *
426  * This function adds information about a used physical eraseblock to the
427  * 'used' tree of the corresponding volume. The function is rather complex
428  * because it has to handle cases when this is not the first physical
429  * eraseblock belonging to the same logical eraseblock, and the newer one has
430  * to be picked, while the older one has to be dropped. This function returns
431  * zero in case of success and a negative error code in case of failure.
432  */
433 int ubi_scan_add_used(struct ubi_device *ubi, struct ubi_scan_info *si,
434                       int pnum, int ec, const struct ubi_vid_hdr *vid_hdr,
435                       int bitflips)
436 {
437         int err, vol_id, lnum;
438         unsigned long long sqnum;
439         struct ubi_scan_volume *sv;
440         struct ubi_scan_leb *seb;
441         struct rb_node **p, *parent = NULL;
442
443         vol_id = be32_to_cpu(vid_hdr->vol_id);
444         lnum = be32_to_cpu(vid_hdr->lnum);
445         sqnum = be64_to_cpu(vid_hdr->sqnum);
446
447         dbg_bld("PEB %d, LEB %d:%d, EC %d, sqnum %llu, bitflips %d",
448                 pnum, vol_id, lnum, ec, sqnum, bitflips);
449
450         sv = add_volume(si, vol_id, pnum, vid_hdr);
451         if (IS_ERR(sv))
452                 return PTR_ERR(sv);
453
454         if (si->max_sqnum < sqnum)
455                 si->max_sqnum = sqnum;
456
457         /*
458          * Walk the RB-tree of logical eraseblocks of volume @vol_id to look
459          * if this is the first instance of this logical eraseblock or not.
460          */
461         p = &sv->root.rb_node;
462         while (*p) {
463                 int cmp_res;
464
465                 parent = *p;
466                 seb = rb_entry(parent, struct ubi_scan_leb, u.rb);
467                 if (lnum != seb->lnum) {
468                         if (lnum < seb->lnum)
469                                 p = &(*p)->rb_left;
470                         else
471                                 p = &(*p)->rb_right;
472                         continue;
473                 }
474
475                 /*
476                  * There is already a physical eraseblock describing the same
477                  * logical eraseblock present.
478                  */
479
480                 dbg_bld("this LEB already exists: PEB %d, sqnum %llu, "
481                         "EC %d", seb->pnum, seb->sqnum, seb->ec);
482
483                 /*
484                  * Make sure that the logical eraseblocks have different
485                  * sequence numbers. Otherwise the image is bad.
486                  *
487                  * However, if the sequence number is zero, we assume it must
488                  * be an ancient UBI image from the era when UBI did not have
489                  * sequence numbers. We still can attach these images, unless
490                  * there is a need to distinguish between old and new
491                  * eraseblocks, in which case we'll refuse the image in
492                  * 'compare_lebs()'. In other words, we attach old clean
493                  * images, but refuse attaching old images with duplicated
494                  * logical eraseblocks because there was an unclean reboot.
495                  */
496                 if (seb->sqnum == sqnum && sqnum != 0) {
497                         ubi_err("two LEBs with same sequence number %llu",
498                                 sqnum);
499                         ubi_dbg_dump_seb(seb, 0);
500                         ubi_dbg_dump_vid_hdr(vid_hdr);
501                         return -EINVAL;
502                 }
503
504                 /*
505                  * Now we have to drop the older one and preserve the newer
506                  * one.
507                  */
508                 cmp_res = compare_lebs(ubi, seb, pnum, vid_hdr);
509                 if (cmp_res < 0)
510                         return cmp_res;
511
512                 if (cmp_res & 1) {
513                         /*
514                          * This logical eraseblock is newer than the one
515                          * found earlier.
516                          */
517                         err = validate_vid_hdr(vid_hdr, sv, pnum);
518                         if (err)
519                                 return err;
520
521                         err = add_to_list(si, seb->pnum, seb->ec, cmp_res & 4,
522                                           &si->erase);
523                         if (err)
524                                 return err;
525
526                         seb->ec = ec;
527                         seb->pnum = pnum;
528                         seb->scrub = ((cmp_res & 2) || bitflips);
529                         seb->copy_flag = vid_hdr->copy_flag;
530                         seb->sqnum = sqnum;
531
532                         if (sv->highest_lnum == lnum)
533                                 sv->last_data_size =
534                                         be32_to_cpu(vid_hdr->data_size);
535
536                         return 0;
537                 } else {
538                         /*
539                          * This logical eraseblock is older than the one found
540                          * previously.
541                          */
542                         return add_to_list(si, pnum, ec, cmp_res & 4,
543                                            &si->erase);
544                 }
545         }
546
547         /*
548          * We've met this logical eraseblock for the first time, add it to the
549          * scanning information.
550          */
551
552         err = validate_vid_hdr(vid_hdr, sv, pnum);
553         if (err)
554                 return err;
555
556         seb = kmalloc(sizeof(struct ubi_scan_leb), GFP_KERNEL);
557         if (!seb)
558                 return -ENOMEM;
559
560         seb->ec = ec;
561         seb->pnum = pnum;
562         seb->lnum = lnum;
563         seb->scrub = bitflips;
564         seb->copy_flag = vid_hdr->copy_flag;
565         seb->sqnum = sqnum;
566
567         if (sv->highest_lnum <= lnum) {
568                 sv->highest_lnum = lnum;
569                 sv->last_data_size = be32_to_cpu(vid_hdr->data_size);
570         }
571
572         sv->leb_count += 1;
573         rb_link_node(&seb->u.rb, parent, p);
574         rb_insert_color(&seb->u.rb, &sv->root);
575         return 0;
576 }
577
578 /**
579  * ubi_scan_find_sv - find volume in the scanning information.
580  * @si: scanning information
581  * @vol_id: the requested volume ID
582  *
583  * This function returns a pointer to the volume description or %NULL if there
584  * are no data about this volume in the scanning information.
585  */
586 struct ubi_scan_volume *ubi_scan_find_sv(const struct ubi_scan_info *si,
587                                          int vol_id)
588 {
589         struct ubi_scan_volume *sv;
590         struct rb_node *p = si->volumes.rb_node;
591
592         while (p) {
593                 sv = rb_entry(p, struct ubi_scan_volume, rb);
594
595                 if (vol_id == sv->vol_id)
596                         return sv;
597
598                 if (vol_id > sv->vol_id)
599                         p = p->rb_left;
600                 else
601                         p = p->rb_right;
602         }
603
604         return NULL;
605 }
606
607 /**
608  * ubi_scan_find_seb - find LEB in the volume scanning information.
609  * @sv: a pointer to the volume scanning information
610  * @lnum: the requested logical eraseblock
611  *
612  * This function returns a pointer to the scanning logical eraseblock or %NULL
613  * if there are no data about it in the scanning volume information.
614  */
615 struct ubi_scan_leb *ubi_scan_find_seb(const struct ubi_scan_volume *sv,
616                                        int lnum)
617 {
618         struct ubi_scan_leb *seb;
619         struct rb_node *p = sv->root.rb_node;
620
621         while (p) {
622                 seb = rb_entry(p, struct ubi_scan_leb, u.rb);
623
624                 if (lnum == seb->lnum)
625                         return seb;
626
627                 if (lnum > seb->lnum)
628                         p = p->rb_left;
629                 else
630                         p = p->rb_right;
631         }
632
633         return NULL;
634 }
635
636 /**
637  * ubi_scan_rm_volume - delete scanning information about a volume.
638  * @si: scanning information
639  * @sv: the volume scanning information to delete
640  */
641 void ubi_scan_rm_volume(struct ubi_scan_info *si, struct ubi_scan_volume *sv)
642 {
643         struct rb_node *rb;
644         struct ubi_scan_leb *seb;
645
646         dbg_bld("remove scanning information about volume %d", sv->vol_id);
647
648         while ((rb = rb_first(&sv->root))) {
649                 seb = rb_entry(rb, struct ubi_scan_leb, u.rb);
650                 rb_erase(&seb->u.rb, &sv->root);
651                 list_add_tail(&seb->u.list, &si->erase);
652         }
653
654         rb_erase(&sv->rb, &si->volumes);
655         kfree(sv);
656         si->vols_found -= 1;
657 }
658
659 /**
660  * ubi_scan_erase_peb - erase a physical eraseblock.
661  * @ubi: UBI device description object
662  * @si: scanning information
663  * @pnum: physical eraseblock number to erase;
664  * @ec: erase counter value to write (%UBI_SCAN_UNKNOWN_EC if it is unknown)
665  *
666  * This function erases physical eraseblock 'pnum', and writes the erase
667  * counter header to it. This function should only be used on UBI device
668  * initialization stages, when the EBA sub-system had not been yet initialized.
669  * This function returns zero in case of success and a negative error code in
670  * case of failure.
671  */
672 int ubi_scan_erase_peb(struct ubi_device *ubi, const struct ubi_scan_info *si,
673                        int pnum, int ec)
674 {
675         int err;
676         struct ubi_ec_hdr *ec_hdr;
677
678         if ((long long)ec >= UBI_MAX_ERASECOUNTER) {
679                 /*
680                  * Erase counter overflow. Upgrade UBI and use 64-bit
681                  * erase counters internally.
682                  */
683                 ubi_err("erase counter overflow at PEB %d, EC %d", pnum, ec);
684                 return -EINVAL;
685         }
686
687         ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
688         if (!ec_hdr)
689                 return -ENOMEM;
690
691         ec_hdr->ec = cpu_to_be64(ec);
692
693         err = ubi_io_sync_erase(ubi, pnum, 0);
694         if (err < 0)
695                 goto out_free;
696
697         err = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr);
698
699 out_free:
700         kfree(ec_hdr);
701         return err;
702 }
703
704 /**
705  * ubi_scan_get_free_peb - get a free physical eraseblock.
706  * @ubi: UBI device description object
707  * @si: scanning information
708  *
709  * This function returns a free physical eraseblock. It is supposed to be
710  * called on the UBI initialization stages when the wear-leveling sub-system is
711  * not initialized yet. This function picks a physical eraseblocks from one of
712  * the lists, writes the EC header if it is needed, and removes it from the
713  * list.
714  *
715  * This function returns scanning physical eraseblock information in case of
716  * success and an error code in case of failure.
717  */
718 struct ubi_scan_leb *ubi_scan_get_free_peb(struct ubi_device *ubi,
719                                            struct ubi_scan_info *si)
720 {
721         int err = 0;
722         struct ubi_scan_leb *seb, *tmp_seb;
723
724         if (!list_empty(&si->free)) {
725                 seb = list_entry(si->free.next, struct ubi_scan_leb, u.list);
726                 list_del(&seb->u.list);
727                 dbg_bld("return free PEB %d, EC %d", seb->pnum, seb->ec);
728                 return seb;
729         }
730
731         /*
732          * We try to erase the first physical eraseblock from the erase list
733          * and pick it if we succeed, or try to erase the next one if not. And
734          * so forth. We don't want to take care about bad eraseblocks here -
735          * they'll be handled later.
736          */
737         list_for_each_entry_safe(seb, tmp_seb, &si->erase, u.list) {
738                 if (seb->ec == UBI_SCAN_UNKNOWN_EC)
739                         seb->ec = si->mean_ec;
740
741                 err = ubi_scan_erase_peb(ubi, si, seb->pnum, seb->ec+1);
742                 if (err)
743                         continue;
744
745                 seb->ec += 1;
746                 list_del(&seb->u.list);
747                 dbg_bld("return PEB %d, EC %d", seb->pnum, seb->ec);
748                 return seb;
749         }
750
751         ubi_err("no free eraseblocks");
752         return ERR_PTR(-ENOSPC);
753 }
754
755 /**
756  * check_corruption - check the data area of PEB.
757  * @ubi: UBI device description object
758  * @vid_hrd: the (corrupted) VID header of this PEB
759  * @pnum: the physical eraseblock number to check
760  *
761  * This is a helper function which is used to distinguish between VID header
762  * corruptions caused by power cuts and other reasons. If the PEB contains only
763  * 0xFF bytes in the data area, the VID header is most probably corrupted
764  * because of a power cut (%0 is returned in this case). Otherwise, it was
765  * probably corrupted for some other reasons (%1 is returned in this case). A
766  * negative error code is returned if a read error occurred.
767  *
768  * If the corruption reason was a power cut, UBI can safely erase this PEB.
769  * Otherwise, it should preserve it to avoid possibly destroying important
770  * information.
771  */
772 static int check_corruption(struct ubi_device *ubi, struct ubi_vid_hdr *vid_hdr,
773                             int pnum)
774 {
775         int err;
776
777         mutex_lock(&ubi->buf_mutex);
778         memset(ubi->peb_buf1, 0x00, ubi->leb_size);
779
780         err = ubi_io_read(ubi, ubi->peb_buf1, pnum, ubi->leb_start,
781                           ubi->leb_size);
782         if (err == UBI_IO_BITFLIPS || err == -EBADMSG) {
783                 /*
784                  * Bit-flips or integrity errors while reading the data area.
785                  * It is difficult to say for sure what type of corruption is
786                  * this, but presumably a power cut happened while this PEB was
787                  * erased, so it became unstable and corrupted, and should be
788                  * erased.
789                  */
790                 return 0;
791         }
792
793         if (err)
794                 return err;
795
796         if (ubi_check_pattern(ubi->peb_buf1, 0xFF, ubi->leb_size)) {
797                 mutex_unlock(&ubi->buf_mutex);
798                 return 0;
799         }
800
801         ubi_err("PEB %d contains corrupted VID header, and the data does not "
802                 "contain all 0xFF, this may be a non-UBI PEB or a severe VID "
803                 "header corruption which requires manual inspection", pnum);
804         ubi_dbg_dump_vid_hdr(vid_hdr);
805         dbg_msg("hexdump of PEB %d offset %d, length %d",
806                 pnum, ubi->leb_start, ubi->leb_size);
807         ubi_dbg_print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1,
808                                ubi->peb_buf1, ubi->leb_size, 1);
809         mutex_unlock(&ubi->buf_mutex);
810         return 1;
811 }
812
813 /**
814  * process_eb - read, check UBI headers, and add them to scanning information.
815  * @ubi: UBI device description object
816  * @si: scanning information
817  * @pnum: the physical eraseblock number
818  *
819  * This function returns a zero if the physical eraseblock was successfully
820  * handled and a negative error code in case of failure.
821  */
822 static int process_eb(struct ubi_device *ubi, struct ubi_scan_info *si,
823                       int pnum)
824 {
825         long long uninitialized_var(ec);
826         int err, bitflips = 0, vol_id, ec_err = 0;
827
828         dbg_bld("scan PEB %d", pnum);
829
830         /* Skip bad physical eraseblocks */
831         err = ubi_io_is_bad(ubi, pnum);
832         if (err < 0)
833                 return err;
834         else if (err) {
835                 /*
836                  * FIXME: this is actually duty of the I/O sub-system to
837                  * initialize this, but MTD does not provide enough
838                  * information.
839                  */
840                 si->bad_peb_count += 1;
841                 return 0;
842         }
843
844         err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
845         if (err < 0)
846                 return err;
847         switch (err) {
848         case 0:
849                 break;
850         case UBI_IO_BITFLIPS:
851                 bitflips = 1;
852                 break;
853         case UBI_IO_FF:
854                 si->empty_peb_count += 1;
855                 return add_to_list(si, pnum, UBI_SCAN_UNKNOWN_EC, 0,
856                                    &si->erase);
857         case UBI_IO_FF_BITFLIPS:
858                 si->empty_peb_count += 1;
859                 return add_to_list(si, pnum, UBI_SCAN_UNKNOWN_EC, 1,
860                                    &si->erase);
861         case UBI_IO_BAD_HDR_EBADMSG:
862         case UBI_IO_BAD_HDR:
863                 /*
864                  * We have to also look at the VID header, possibly it is not
865                  * corrupted. Set %bitflips flag in order to make this PEB be
866                  * moved and EC be re-created.
867                  */
868                 ec_err = err;
869                 ec = UBI_SCAN_UNKNOWN_EC;
870                 bitflips = 1;
871                 break;
872         default:
873                 ubi_err("'ubi_io_read_ec_hdr()' returned unknown code %d", err);
874                 return -EINVAL;
875         }
876
877         if (!ec_err) {
878                 int image_seq;
879
880                 /* Make sure UBI version is OK */
881                 if (ech->version != UBI_VERSION) {
882                         ubi_err("this UBI version is %d, image version is %d",
883                                 UBI_VERSION, (int)ech->version);
884                         return -EINVAL;
885                 }
886
887                 ec = be64_to_cpu(ech->ec);
888                 if (ec > UBI_MAX_ERASECOUNTER) {
889                         /*
890                          * Erase counter overflow. The EC headers have 64 bits
891                          * reserved, but we anyway make use of only 31 bit
892                          * values, as this seems to be enough for any existing
893                          * flash. Upgrade UBI and use 64-bit erase counters
894                          * internally.
895                          */
896                         ubi_err("erase counter overflow, max is %d",
897                                 UBI_MAX_ERASECOUNTER);
898                         ubi_dbg_dump_ec_hdr(ech);
899                         return -EINVAL;
900                 }
901
902                 /*
903                  * Make sure that all PEBs have the same image sequence number.
904                  * This allows us to detect situations when users flash UBI
905                  * images incorrectly, so that the flash has the new UBI image
906                  * and leftovers from the old one. This feature was added
907                  * relatively recently, and the sequence number was always
908                  * zero, because old UBI implementations always set it to zero.
909                  * For this reasons, we do not panic if some PEBs have zero
910                  * sequence number, while other PEBs have non-zero sequence
911                  * number.
912                  */
913                 image_seq = be32_to_cpu(ech->image_seq);
914                 if (!ubi->image_seq && image_seq)
915                         ubi->image_seq = image_seq;
916                 if (ubi->image_seq && image_seq &&
917                     ubi->image_seq != image_seq) {
918                         ubi_err("bad image sequence number %d in PEB %d, "
919                                 "expected %d", image_seq, pnum, ubi->image_seq);
920                         ubi_dbg_dump_ec_hdr(ech);
921                         return -EINVAL;
922                 }
923         }
924
925         /* OK, we've done with the EC header, let's look at the VID header */
926
927         err = ubi_io_read_vid_hdr(ubi, pnum, vidh, 0);
928         if (err < 0)
929                 return err;
930         switch (err) {
931         case 0:
932                 break;
933         case UBI_IO_BITFLIPS:
934                 bitflips = 1;
935                 break;
936         case UBI_IO_BAD_HDR_EBADMSG:
937                 if (ec_err == UBI_IO_BAD_HDR_EBADMSG)
938                         /*
939                          * Both EC and VID headers are corrupted and were read
940                          * with data integrity error, probably this is a bad
941                          * PEB, bit it is not marked as bad yet. This may also
942                          * be a result of power cut during erasure.
943                          */
944                         si->maybe_bad_peb_count += 1;
945         case UBI_IO_BAD_HDR:
946                 if (ec_err)
947                         /*
948                          * Both headers are corrupted. There is a possibility
949                          * that this a valid UBI PEB which has corresponding
950                          * LEB, but the headers are corrupted. However, it is
951                          * impossible to distinguish it from a PEB which just
952                          * contains garbage because of a power cut during erase
953                          * operation. So we just schedule this PEB for erasure.
954                          */
955                         err = 0;
956                 else
957                         /*
958                          * The EC was OK, but the VID header is corrupted. We
959                          * have to check what is in the data area.
960                          */
961                         err = check_corruption(ubi, vidh, pnum);
962
963                 if (err < 0)
964                         return err;
965                 else if (!err)
966                         /* This corruption is caused by a power cut */
967                         err = add_to_list(si, pnum, ec, 1, &si->erase);
968                 else
969                         /* This is an unexpected corruption */
970                         err = add_corrupted(si, pnum, ec);
971                 if (err)
972                         return err;
973                 goto adjust_mean_ec;
974         case UBI_IO_FF_BITFLIPS:
975                 err = add_to_list(si, pnum, ec, 1, &si->erase);
976                 if (err)
977                         return err;
978                 goto adjust_mean_ec;
979         case UBI_IO_FF:
980                 if (ec_err)
981                         err = add_to_list(si, pnum, ec, 1, &si->erase);
982                 else
983                         err = add_to_list(si, pnum, ec, 0, &si->free);
984                 if (err)
985                         return err;
986                 goto adjust_mean_ec;
987         default:
988                 ubi_err("'ubi_io_read_vid_hdr()' returned unknown code %d",
989                         err);
990                 return -EINVAL;
991         }
992
993         vol_id = be32_to_cpu(vidh->vol_id);
994         if (vol_id > UBI_MAX_VOLUMES && vol_id != UBI_LAYOUT_VOLUME_ID) {
995                 int lnum = be32_to_cpu(vidh->lnum);
996
997                 /* Unsupported internal volume */
998                 switch (vidh->compat) {
999                 case UBI_COMPAT_DELETE:
1000                         ubi_msg("\"delete\" compatible internal volume %d:%d"
1001                                 " found, will remove it", vol_id, lnum);
1002                         err = add_to_list(si, pnum, ec, 1, &si->erase);
1003                         if (err)
1004                                 return err;
1005                         return 0;
1006
1007                 case UBI_COMPAT_RO:
1008                         ubi_msg("read-only compatible internal volume %d:%d"
1009                                 " found, switch to read-only mode",
1010                                 vol_id, lnum);
1011                         ubi->ro_mode = 1;
1012                         break;
1013
1014                 case UBI_COMPAT_PRESERVE:
1015                         ubi_msg("\"preserve\" compatible internal volume %d:%d"
1016                                 " found", vol_id, lnum);
1017                         err = add_to_list(si, pnum, ec, 0, &si->alien);
1018                         if (err)
1019                                 return err;
1020                         return 0;
1021
1022                 case UBI_COMPAT_REJECT:
1023                         ubi_err("incompatible internal volume %d:%d found",
1024                                 vol_id, lnum);
1025                         return -EINVAL;
1026                 }
1027         }
1028
1029         if (ec_err)
1030                 ubi_warn("valid VID header but corrupted EC header at PEB %d",
1031                          pnum);
1032         err = ubi_scan_add_used(ubi, si, pnum, ec, vidh, bitflips);
1033         if (err)
1034                 return err;
1035
1036 adjust_mean_ec:
1037         if (!ec_err) {
1038                 si->ec_sum += ec;
1039                 si->ec_count += 1;
1040                 if (ec > si->max_ec)
1041                         si->max_ec = ec;
1042                 if (ec < si->min_ec)
1043                         si->min_ec = ec;
1044         }
1045
1046         return 0;
1047 }
1048
1049 /**
1050  * check_what_we_have - check what PEB were found by scanning.
1051  * @ubi: UBI device description object
1052  * @si: scanning information
1053  *
1054  * This is a helper function which takes a look what PEBs were found by
1055  * scanning, and decides whether the flash is empty and should be formatted and
1056  * whether there are too many corrupted PEBs and we should not attach this
1057  * MTD device. Returns zero if we should proceed with attaching the MTD device,
1058  * and %-EINVAL if we should not.
1059  */
1060 static int check_what_we_have(struct ubi_device *ubi, struct ubi_scan_info *si)
1061 {
1062         struct ubi_scan_leb *seb;
1063         int max_corr, peb_count;
1064
1065         peb_count = ubi->peb_count - si->bad_peb_count - si->alien_peb_count;
1066         max_corr = peb_count / 20 ?: 8;
1067
1068         /*
1069          * Few corrupted PEBs is not a problem and may be just a result of
1070          * unclean reboots. However, many of them may indicate some problems
1071          * with the flash HW or driver.
1072          */
1073         if (si->corr_peb_count) {
1074                 ubi_err("%d PEBs are corrupted and preserved",
1075                         si->corr_peb_count);
1076                 printk(KERN_ERR "Corrupted PEBs are:");
1077                 list_for_each_entry(seb, &si->corr, u.list)
1078                         printk(KERN_CONT " %d", seb->pnum);
1079                 printk(KERN_CONT "\n");
1080
1081                 /*
1082                  * If too many PEBs are corrupted, we refuse attaching,
1083                  * otherwise, only print a warning.
1084                  */
1085                 if (si->corr_peb_count >= max_corr) {
1086                         ubi_err("too many corrupted PEBs, refusing this device");
1087                         return -EINVAL;
1088                 }
1089         }
1090
1091         if (si->empty_peb_count + si->maybe_bad_peb_count == peb_count) {
1092                 /*
1093                  * All PEBs are empty, or almost all - a couple PEBs look like
1094                  * they may be bad PEBs which were not marked as bad yet.
1095                  *
1096                  * This piece of code basically tries to distinguish between
1097                  * the following situations:
1098                  *
1099                  * 1. Flash is empty, but there are few bad PEBs, which are not
1100                  *    marked as bad so far, and which were read with error. We
1101                  *    want to go ahead and format this flash. While formatting,
1102                  *    the faulty PEBs will probably be marked as bad.
1103                  *
1104                  * 2. Flash contains non-UBI data and we do not want to format
1105                  *    it and destroy possibly important information.
1106                  */
1107                 if (si->maybe_bad_peb_count <= 2) {
1108                         si->is_empty = 1;
1109                         ubi_msg("empty MTD device detected");
1110                         get_random_bytes(&ubi->image_seq,
1111                                          sizeof(ubi->image_seq));
1112                 } else {
1113                         ubi_err("MTD device is not UBI-formatted and possibly "
1114                                 "contains non-UBI data - refusing it");
1115                         return -EINVAL;
1116                 }
1117
1118         }
1119
1120         return 0;
1121 }
1122
1123 /**
1124  * ubi_scan - scan an MTD device.
1125  * @ubi: UBI device description object
1126  *
1127  * This function does full scanning of an MTD device and returns complete
1128  * information about it. In case of failure, an error code is returned.
1129  */
1130 struct ubi_scan_info *ubi_scan(struct ubi_device *ubi)
1131 {
1132         int err, pnum;
1133         struct rb_node *rb1, *rb2;
1134         struct ubi_scan_volume *sv;
1135         struct ubi_scan_leb *seb;
1136         struct ubi_scan_info *si;
1137
1138         si = kzalloc(sizeof(struct ubi_scan_info), GFP_KERNEL);
1139         if (!si)
1140                 return ERR_PTR(-ENOMEM);
1141
1142         INIT_LIST_HEAD(&si->corr);
1143         INIT_LIST_HEAD(&si->free);
1144         INIT_LIST_HEAD(&si->erase);
1145         INIT_LIST_HEAD(&si->alien);
1146         si->volumes = RB_ROOT;
1147
1148         err = -ENOMEM;
1149         ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1150         if (!ech)
1151                 goto out_si;
1152
1153         vidh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
1154         if (!vidh)
1155                 goto out_ech;
1156
1157         for (pnum = 0; pnum < ubi->peb_count; pnum++) {
1158                 cond_resched();
1159
1160                 dbg_gen("process PEB %d", pnum);
1161                 err = process_eb(ubi, si, pnum);
1162                 if (err < 0)
1163                         goto out_vidh;
1164         }
1165
1166         dbg_msg("scanning is finished");
1167
1168         /* Calculate mean erase counter */
1169         if (si->ec_count)
1170                 si->mean_ec = div_u64(si->ec_sum, si->ec_count);
1171
1172         err = check_what_we_have(ubi, si);
1173         if (err)
1174                 goto out_vidh;
1175
1176         /*
1177          * In case of unknown erase counter we use the mean erase counter
1178          * value.
1179          */
1180         ubi_rb_for_each_entry(rb1, sv, &si->volumes, rb) {
1181                 ubi_rb_for_each_entry(rb2, seb, &sv->root, u.rb)
1182                         if (seb->ec == UBI_SCAN_UNKNOWN_EC)
1183                                 seb->ec = si->mean_ec;
1184         }
1185
1186         list_for_each_entry(seb, &si->free, u.list) {
1187                 if (seb->ec == UBI_SCAN_UNKNOWN_EC)
1188                         seb->ec = si->mean_ec;
1189         }
1190
1191         list_for_each_entry(seb, &si->corr, u.list)
1192                 if (seb->ec == UBI_SCAN_UNKNOWN_EC)
1193                         seb->ec = si->mean_ec;
1194
1195         list_for_each_entry(seb, &si->erase, u.list)
1196                 if (seb->ec == UBI_SCAN_UNKNOWN_EC)
1197                         seb->ec = si->mean_ec;
1198
1199         err = paranoid_check_si(ubi, si);
1200         if (err)
1201                 goto out_vidh;
1202
1203         ubi_free_vid_hdr(ubi, vidh);
1204         kfree(ech);
1205
1206         return si;
1207
1208 out_vidh:
1209         ubi_free_vid_hdr(ubi, vidh);
1210 out_ech:
1211         kfree(ech);
1212 out_si:
1213         ubi_scan_destroy_si(si);
1214         return ERR_PTR(err);
1215 }
1216
1217 /**
1218  * destroy_sv - free the scanning volume information
1219  * @sv: scanning volume information
1220  *
1221  * This function destroys the volume RB-tree (@sv->root) and the scanning
1222  * volume information.
1223  */
1224 static void destroy_sv(struct ubi_scan_volume *sv)
1225 {
1226         struct ubi_scan_leb *seb;
1227         struct rb_node *this = sv->root.rb_node;
1228
1229         while (this) {
1230                 if (this->rb_left)
1231                         this = this->rb_left;
1232                 else if (this->rb_right)
1233                         this = this->rb_right;
1234                 else {
1235                         seb = rb_entry(this, struct ubi_scan_leb, u.rb);
1236                         this = rb_parent(this);
1237                         if (this) {
1238                                 if (this->rb_left == &seb->u.rb)
1239                                         this->rb_left = NULL;
1240                                 else
1241                                         this->rb_right = NULL;
1242                         }
1243
1244                         kfree(seb);
1245                 }
1246         }
1247         kfree(sv);
1248 }
1249
1250 /**
1251  * ubi_scan_destroy_si - destroy scanning information.
1252  * @si: scanning information
1253  */
1254 void ubi_scan_destroy_si(struct ubi_scan_info *si)
1255 {
1256         struct ubi_scan_leb *seb, *seb_tmp;
1257         struct ubi_scan_volume *sv;
1258         struct rb_node *rb;
1259
1260         list_for_each_entry_safe(seb, seb_tmp, &si->alien, u.list) {
1261                 list_del(&seb->u.list);
1262                 kfree(seb);
1263         }
1264         list_for_each_entry_safe(seb, seb_tmp, &si->erase, u.list) {
1265                 list_del(&seb->u.list);
1266                 kfree(seb);
1267         }
1268         list_for_each_entry_safe(seb, seb_tmp, &si->corr, u.list) {
1269                 list_del(&seb->u.list);
1270                 kfree(seb);
1271         }
1272         list_for_each_entry_safe(seb, seb_tmp, &si->free, u.list) {
1273                 list_del(&seb->u.list);
1274                 kfree(seb);
1275         }
1276
1277         /* Destroy the volume RB-tree */
1278         rb = si->volumes.rb_node;
1279         while (rb) {
1280                 if (rb->rb_left)
1281                         rb = rb->rb_left;
1282                 else if (rb->rb_right)
1283                         rb = rb->rb_right;
1284                 else {
1285                         sv = rb_entry(rb, struct ubi_scan_volume, rb);
1286
1287                         rb = rb_parent(rb);
1288                         if (rb) {
1289                                 if (rb->rb_left == &sv->rb)
1290                                         rb->rb_left = NULL;
1291                                 else
1292                                         rb->rb_right = NULL;
1293                         }
1294
1295                         destroy_sv(sv);
1296                 }
1297         }
1298
1299         kfree(si);
1300 }
1301
1302 #ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
1303
1304 /**
1305  * paranoid_check_si - check the scanning information.
1306  * @ubi: UBI device description object
1307  * @si: scanning information
1308  *
1309  * This function returns zero if the scanning information is all right, and a
1310  * negative error code if not or if an error occurred.
1311  */
1312 static int paranoid_check_si(struct ubi_device *ubi, struct ubi_scan_info *si)
1313 {
1314         int pnum, err, vols_found = 0;
1315         struct rb_node *rb1, *rb2;
1316         struct ubi_scan_volume *sv;
1317         struct ubi_scan_leb *seb, *last_seb;
1318         uint8_t *buf;
1319
1320         /*
1321          * At first, check that scanning information is OK.
1322          */
1323         ubi_rb_for_each_entry(rb1, sv, &si->volumes, rb) {
1324                 int leb_count = 0;
1325
1326                 cond_resched();
1327
1328                 vols_found += 1;
1329
1330                 if (si->is_empty) {
1331                         ubi_err("bad is_empty flag");
1332                         goto bad_sv;
1333                 }
1334
1335                 if (sv->vol_id < 0 || sv->highest_lnum < 0 ||
1336                     sv->leb_count < 0 || sv->vol_type < 0 || sv->used_ebs < 0 ||
1337                     sv->data_pad < 0 || sv->last_data_size < 0) {
1338                         ubi_err("negative values");
1339                         goto bad_sv;
1340                 }
1341
1342                 if (sv->vol_id >= UBI_MAX_VOLUMES &&
1343                     sv->vol_id < UBI_INTERNAL_VOL_START) {
1344                         ubi_err("bad vol_id");
1345                         goto bad_sv;
1346                 }
1347
1348                 if (sv->vol_id > si->highest_vol_id) {
1349                         ubi_err("highest_vol_id is %d, but vol_id %d is there",
1350                                 si->highest_vol_id, sv->vol_id);
1351                         goto out;
1352                 }
1353
1354                 if (sv->vol_type != UBI_DYNAMIC_VOLUME &&
1355                     sv->vol_type != UBI_STATIC_VOLUME) {
1356                         ubi_err("bad vol_type");
1357                         goto bad_sv;
1358                 }
1359
1360                 if (sv->data_pad > ubi->leb_size / 2) {
1361                         ubi_err("bad data_pad");
1362                         goto bad_sv;
1363                 }
1364
1365                 last_seb = NULL;
1366                 ubi_rb_for_each_entry(rb2, seb, &sv->root, u.rb) {
1367                         cond_resched();
1368
1369                         last_seb = seb;
1370                         leb_count += 1;
1371
1372                         if (seb->pnum < 0 || seb->ec < 0) {
1373                                 ubi_err("negative values");
1374                                 goto bad_seb;
1375                         }
1376
1377                         if (seb->ec < si->min_ec) {
1378                                 ubi_err("bad si->min_ec (%d), %d found",
1379                                         si->min_ec, seb->ec);
1380                                 goto bad_seb;
1381                         }
1382
1383                         if (seb->ec > si->max_ec) {
1384                                 ubi_err("bad si->max_ec (%d), %d found",
1385                                         si->max_ec, seb->ec);
1386                                 goto bad_seb;
1387                         }
1388
1389                         if (seb->pnum >= ubi->peb_count) {
1390                                 ubi_err("too high PEB number %d, total PEBs %d",
1391                                         seb->pnum, ubi->peb_count);
1392                                 goto bad_seb;
1393                         }
1394
1395                         if (sv->vol_type == UBI_STATIC_VOLUME) {
1396                                 if (seb->lnum >= sv->used_ebs) {
1397                                         ubi_err("bad lnum or used_ebs");
1398                                         goto bad_seb;
1399                                 }
1400                         } else {
1401                                 if (sv->used_ebs != 0) {
1402                                         ubi_err("non-zero used_ebs");
1403                                         goto bad_seb;
1404                                 }
1405                         }
1406
1407                         if (seb->lnum > sv->highest_lnum) {
1408                                 ubi_err("incorrect highest_lnum or lnum");
1409                                 goto bad_seb;
1410                         }
1411                 }
1412
1413                 if (sv->leb_count != leb_count) {
1414                         ubi_err("bad leb_count, %d objects in the tree",
1415                                 leb_count);
1416                         goto bad_sv;
1417                 }
1418
1419                 if (!last_seb)
1420                         continue;
1421
1422                 seb = last_seb;
1423
1424                 if (seb->lnum != sv->highest_lnum) {
1425                         ubi_err("bad highest_lnum");
1426                         goto bad_seb;
1427                 }
1428         }
1429
1430         if (vols_found != si->vols_found) {
1431                 ubi_err("bad si->vols_found %d, should be %d",
1432                         si->vols_found, vols_found);
1433                 goto out;
1434         }
1435
1436         /* Check that scanning information is correct */
1437         ubi_rb_for_each_entry(rb1, sv, &si->volumes, rb) {
1438                 last_seb = NULL;
1439                 ubi_rb_for_each_entry(rb2, seb, &sv->root, u.rb) {
1440                         int vol_type;
1441
1442                         cond_resched();
1443
1444                         last_seb = seb;
1445
1446                         err = ubi_io_read_vid_hdr(ubi, seb->pnum, vidh, 1);
1447                         if (err && err != UBI_IO_BITFLIPS) {
1448                                 ubi_err("VID header is not OK (%d)", err);
1449                                 if (err > 0)
1450                                         err = -EIO;
1451                                 return err;
1452                         }
1453
1454                         vol_type = vidh->vol_type == UBI_VID_DYNAMIC ?
1455                                    UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
1456                         if (sv->vol_type != vol_type) {
1457                                 ubi_err("bad vol_type");
1458                                 goto bad_vid_hdr;
1459                         }
1460
1461                         if (seb->sqnum != be64_to_cpu(vidh->sqnum)) {
1462                                 ubi_err("bad sqnum %llu", seb->sqnum);
1463                                 goto bad_vid_hdr;
1464                         }
1465
1466                         if (sv->vol_id != be32_to_cpu(vidh->vol_id)) {
1467                                 ubi_err("bad vol_id %d", sv->vol_id);
1468                                 goto bad_vid_hdr;
1469                         }
1470
1471                         if (sv->compat != vidh->compat) {
1472                                 ubi_err("bad compat %d", vidh->compat);
1473                                 goto bad_vid_hdr;
1474                         }
1475
1476                         if (seb->lnum != be32_to_cpu(vidh->lnum)) {
1477                                 ubi_err("bad lnum %d", seb->lnum);
1478                                 goto bad_vid_hdr;
1479                         }
1480
1481                         if (sv->used_ebs != be32_to_cpu(vidh->used_ebs)) {
1482                                 ubi_err("bad used_ebs %d", sv->used_ebs);
1483                                 goto bad_vid_hdr;
1484                         }
1485
1486                         if (sv->data_pad != be32_to_cpu(vidh->data_pad)) {
1487                                 ubi_err("bad data_pad %d", sv->data_pad);
1488                                 goto bad_vid_hdr;
1489                         }
1490                 }
1491
1492                 if (!last_seb)
1493                         continue;
1494
1495                 if (sv->highest_lnum != be32_to_cpu(vidh->lnum)) {
1496                         ubi_err("bad highest_lnum %d", sv->highest_lnum);
1497                         goto bad_vid_hdr;
1498                 }
1499
1500                 if (sv->last_data_size != be32_to_cpu(vidh->data_size)) {
1501                         ubi_err("bad last_data_size %d", sv->last_data_size);
1502                         goto bad_vid_hdr;
1503                 }
1504         }
1505
1506         /*
1507          * Make sure that all the physical eraseblocks are in one of the lists
1508          * or trees.
1509          */
1510         buf = kzalloc(ubi->peb_count, GFP_KERNEL);
1511         if (!buf)
1512                 return -ENOMEM;
1513
1514         for (pnum = 0; pnum < ubi->peb_count; pnum++) {
1515                 err = ubi_io_is_bad(ubi, pnum);
1516                 if (err < 0) {
1517                         kfree(buf);
1518                         return err;
1519                 } else if (err)
1520                         buf[pnum] = 1;
1521         }
1522
1523         ubi_rb_for_each_entry(rb1, sv, &si->volumes, rb)
1524                 ubi_rb_for_each_entry(rb2, seb, &sv->root, u.rb)
1525                         buf[seb->pnum] = 1;
1526
1527         list_for_each_entry(seb, &si->free, u.list)
1528                 buf[seb->pnum] = 1;
1529
1530         list_for_each_entry(seb, &si->corr, u.list)
1531                 buf[seb->pnum] = 1;
1532
1533         list_for_each_entry(seb, &si->erase, u.list)
1534                 buf[seb->pnum] = 1;
1535
1536         list_for_each_entry(seb, &si->alien, u.list)
1537                 buf[seb->pnum] = 1;
1538
1539         err = 0;
1540         for (pnum = 0; pnum < ubi->peb_count; pnum++)
1541                 if (!buf[pnum]) {
1542                         ubi_err("PEB %d is not referred", pnum);
1543                         err = 1;
1544                 }
1545
1546         kfree(buf);
1547         if (err)
1548                 goto out;
1549         return 0;
1550
1551 bad_seb:
1552         ubi_err("bad scanning information about LEB %d", seb->lnum);
1553         ubi_dbg_dump_seb(seb, 0);
1554         ubi_dbg_dump_sv(sv);
1555         goto out;
1556
1557 bad_sv:
1558         ubi_err("bad scanning information about volume %d", sv->vol_id);
1559         ubi_dbg_dump_sv(sv);
1560         goto out;
1561
1562 bad_vid_hdr:
1563         ubi_err("bad scanning information about volume %d", sv->vol_id);
1564         ubi_dbg_dump_sv(sv);
1565         ubi_dbg_dump_vid_hdr(vidh);
1566
1567 out:
1568         ubi_dbg_dump_stack();
1569         return -EINVAL;
1570 }
1571
1572 #endif /* CONFIG_MTD_UBI_DEBUG_PARANOID */