blob: de7b2f1c41136c7b9bfdbd1580e6602ecb884711 [file] [log] [blame]
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001/*
2 * Copyright (c) International Business Machines Corp., 2006
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Artem Bityutskiy (Битюцкий Артём)
19 */
20
21/*
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +030022 * UBI scanning sub-system.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040023 *
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +030024 * This sub-system is responsible for scanning the flash media, checking UBI
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040025 * headers and providing complete information about the UBI flash image.
26 *
Artem Bityutskiy78d87c92007-05-05 11:24:02 +030027 * The scanning information is represented by a &struct ubi_scan_info' object.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040028 * 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 * Found 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
43#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040045#include <linux/crc32.h>
Artem Bityutskiy3013ee32009-01-16 19:08:43 +020046#include <linux/math64.h>
Matthieu CASTET095751a2010-06-03 16:14:27 +020047#include <linux/random.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040048#include "ubi.h"
49
50#ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
Artem Bityutskiye88d6e102007-08-29 14:51:52 +030051static int paranoid_check_si(struct ubi_device *ubi, struct ubi_scan_info *si);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040052#else
53#define paranoid_check_si(ubi, si) 0
54#endif
55
56/* Temporary variables used during scanning */
57static struct ubi_ec_hdr *ech;
58static struct ubi_vid_hdr *vidh;
59
Artem Bityutskiy941dfb02007-05-05 16:33:13 +030060/**
Artem Bityutskiy78d87c92007-05-05 11:24:02 +030061 * add_to_list - add physical eraseblock to a list.
62 * @si: scanning information
63 * @pnum: physical eraseblock number to add
64 * @ec: erase counter of the physical eraseblock
65 * @list: the list to add to
66 *
67 * This function adds physical eraseblock @pnum to free, erase, corrupted or
68 * alien lists. Returns zero in case of success and a negative error code in
69 * case of failure.
70 */
71static int add_to_list(struct ubi_scan_info *si, int pnum, int ec,
72 struct list_head *list)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040073{
74 struct ubi_scan_leb *seb;
75
Artem Bityutskiy33789fb2010-04-30 12:31:26 +030076 if (list == &si->free) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040077 dbg_bld("add to free: PEB %d, EC %d", pnum, ec);
Artem Bityutskiy33789fb2010-04-30 12:31:26 +030078 si->free_peb_count += 1;
79 } else if (list == &si->erase) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040080 dbg_bld("add to erase: PEB %d, EC %d", pnum, ec);
Artem Bityutskiy33789fb2010-04-30 12:31:26 +030081 si->erase_peb_count += 1;
82 } else if (list == &si->corr) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040083 dbg_bld("add to corrupted: PEB %d, EC %d", pnum, ec);
Artem Bityutskiy33789fb2010-04-30 12:31:26 +030084 si->corr_peb_count += 1;
85 } else if (list == &si->alien) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040086 dbg_bld("add to alien: PEB %d, EC %d", pnum, ec);
Artem Bityutskiy33789fb2010-04-30 12:31:26 +030087 si->alien_peb_count += 1;
88 } else
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040089 BUG();
90
91 seb = kmalloc(sizeof(struct ubi_scan_leb), GFP_KERNEL);
92 if (!seb)
93 return -ENOMEM;
94
95 seb->pnum = pnum;
96 seb->ec = ec;
97 list_add_tail(&seb->u.list, list);
98 return 0;
99}
100
101/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300102 * validate_vid_hdr - check volume identifier header.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400103 * @vid_hdr: the volume identifier header to check
104 * @sv: information about the volume this logical eraseblock belongs to
105 * @pnum: physical eraseblock number the VID header came from
106 *
107 * This function checks that data stored in @vid_hdr is consistent. Returns
108 * non-zero if an inconsistency was found and zero if not.
109 *
110 * Note, UBI does sanity check of everything it reads from the flash media.
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300111 * Most of the checks are done in the I/O sub-system. Here we check that the
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400112 * information in the VID header is consistent to the information in other VID
113 * headers of the same volume.
114 */
115static int validate_vid_hdr(const struct ubi_vid_hdr *vid_hdr,
116 const struct ubi_scan_volume *sv, int pnum)
117{
118 int vol_type = vid_hdr->vol_type;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300119 int vol_id = be32_to_cpu(vid_hdr->vol_id);
120 int used_ebs = be32_to_cpu(vid_hdr->used_ebs);
121 int data_pad = be32_to_cpu(vid_hdr->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400122
123 if (sv->leb_count != 0) {
124 int sv_vol_type;
125
126 /*
127 * This is not the first logical eraseblock belonging to this
128 * volume. Ensure that the data in its VID header is consistent
129 * to the data in previous logical eraseblock headers.
130 */
131
132 if (vol_id != sv->vol_id) {
133 dbg_err("inconsistent vol_id");
134 goto bad;
135 }
136
137 if (sv->vol_type == UBI_STATIC_VOLUME)
138 sv_vol_type = UBI_VID_STATIC;
139 else
140 sv_vol_type = UBI_VID_DYNAMIC;
141
142 if (vol_type != sv_vol_type) {
143 dbg_err("inconsistent vol_type");
144 goto bad;
145 }
146
147 if (used_ebs != sv->used_ebs) {
148 dbg_err("inconsistent used_ebs");
149 goto bad;
150 }
151
152 if (data_pad != sv->data_pad) {
153 dbg_err("inconsistent data_pad");
154 goto bad;
155 }
156 }
157
158 return 0;
159
160bad:
161 ubi_err("inconsistent VID header at PEB %d", pnum);
162 ubi_dbg_dump_vid_hdr(vid_hdr);
163 ubi_dbg_dump_sv(sv);
164 return -EINVAL;
165}
166
167/**
168 * add_volume - add volume to the scanning information.
169 * @si: scanning information
170 * @vol_id: ID of the volume to add
171 * @pnum: physical eraseblock number
172 * @vid_hdr: volume identifier header
173 *
174 * If the volume corresponding to the @vid_hdr logical eraseblock is already
175 * present in the scanning information, this function does nothing. Otherwise
176 * it adds corresponding volume to the scanning information. Returns a pointer
177 * to the scanning volume object in case of success and a negative error code
178 * in case of failure.
179 */
180static struct ubi_scan_volume *add_volume(struct ubi_scan_info *si, int vol_id,
181 int pnum,
182 const struct ubi_vid_hdr *vid_hdr)
183{
184 struct ubi_scan_volume *sv;
185 struct rb_node **p = &si->volumes.rb_node, *parent = NULL;
186
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300187 ubi_assert(vol_id == be32_to_cpu(vid_hdr->vol_id));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400188
189 /* Walk the volume RB-tree to look if this volume is already present */
190 while (*p) {
191 parent = *p;
192 sv = rb_entry(parent, struct ubi_scan_volume, rb);
193
194 if (vol_id == sv->vol_id)
195 return sv;
196
197 if (vol_id > sv->vol_id)
198 p = &(*p)->rb_left;
199 else
200 p = &(*p)->rb_right;
201 }
202
203 /* The volume is absent - add it */
204 sv = kmalloc(sizeof(struct ubi_scan_volume), GFP_KERNEL);
205 if (!sv)
206 return ERR_PTR(-ENOMEM);
207
208 sv->highest_lnum = sv->leb_count = 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400209 sv->vol_id = vol_id;
210 sv->root = RB_ROOT;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300211 sv->used_ebs = be32_to_cpu(vid_hdr->used_ebs);
212 sv->data_pad = be32_to_cpu(vid_hdr->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400213 sv->compat = vid_hdr->compat;
214 sv->vol_type = vid_hdr->vol_type == UBI_VID_DYNAMIC ? UBI_DYNAMIC_VOLUME
215 : UBI_STATIC_VOLUME;
216 if (vol_id > si->highest_vol_id)
217 si->highest_vol_id = vol_id;
218
219 rb_link_node(&sv->rb, parent, p);
220 rb_insert_color(&sv->rb, &si->volumes);
221 si->vols_found += 1;
222 dbg_bld("added volume %d", vol_id);
223 return sv;
224}
225
226/**
227 * compare_lebs - find out which logical eraseblock is newer.
228 * @ubi: UBI device description object
229 * @seb: first logical eraseblock to compare
230 * @pnum: physical eraseblock number of the second logical eraseblock to
231 * compare
232 * @vid_hdr: volume identifier header of the second logical eraseblock
233 *
234 * This function compares 2 copies of a LEB and informs which one is newer. In
235 * case of success this function returns a positive value, in case of failure, a
236 * negative error code is returned. The success return codes use the following
237 * bits:
Shinya Kuribayashi3f502622010-05-06 19:21:47 +0900238 * o bit 0 is cleared: the first PEB (described by @seb) is newer than the
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400239 * second PEB (described by @pnum and @vid_hdr);
240 * o bit 0 is set: the second PEB is newer;
241 * o bit 1 is cleared: no bit-flips were detected in the newer LEB;
242 * o bit 1 is set: bit-flips were detected in the newer LEB;
243 * o bit 2 is cleared: the older LEB is not corrupted;
244 * o bit 2 is set: the older LEB is corrupted.
245 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300246static int compare_lebs(struct ubi_device *ubi, const struct ubi_scan_leb *seb,
247 int pnum, const struct ubi_vid_hdr *vid_hdr)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400248{
249 void *buf;
250 int len, err, second_is_newer, bitflips = 0, corrupted = 0;
251 uint32_t data_crc, crc;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300252 struct ubi_vid_hdr *vh = NULL;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300253 unsigned long long sqnum2 = be64_to_cpu(vid_hdr->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400254
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300255 if (sqnum2 == seb->sqnum) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400256 /*
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300257 * This must be a really ancient UBI image which has been
258 * created before sequence numbers support has been added. At
259 * that times we used 32-bit LEB versions stored in logical
260 * eraseblocks. That was before UBI got into mainline. We do not
261 * support these images anymore. Well, those images will work
262 * still work, but only if no unclean reboots happened.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400263 */
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300264 ubi_err("unsupported on-flash UBI format\n");
265 return -EINVAL;
266 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400267
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300268 /* Obviously the LEB with lower sequence counter is older */
269 second_is_newer = !!(sqnum2 > seb->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400270
271 /*
272 * Now we know which copy is newer. If the copy flag of the PEB with
273 * newer version is not set, then we just return, otherwise we have to
274 * check data CRC. For the second PEB we already have the VID header,
275 * for the first one - we'll need to re-read it from flash.
276 *
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300277 * Note: this may be optimized so that we wouldn't read twice.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400278 */
279
280 if (second_is_newer) {
281 if (!vid_hdr->copy_flag) {
282 /* It is not a copy, so it is newer */
283 dbg_bld("second PEB %d is newer, copy_flag is unset",
284 pnum);
285 return 1;
286 }
287 } else {
288 pnum = seb->pnum;
289
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300290 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300291 if (!vh)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400292 return -ENOMEM;
293
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300294 err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400295 if (err) {
296 if (err == UBI_IO_BITFLIPS)
297 bitflips = 1;
298 else {
299 dbg_err("VID of PEB %d header is bad, but it "
300 "was OK earlier", pnum);
301 if (err > 0)
302 err = -EIO;
303
304 goto out_free_vidh;
305 }
306 }
307
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300308 if (!vh->copy_flag) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400309 /* It is not a copy, so it is newer */
310 dbg_bld("first PEB %d is newer, copy_flag is unset",
311 pnum);
312 err = bitflips << 1;
313 goto out_free_vidh;
314 }
315
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300316 vid_hdr = vh;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400317 }
318
319 /* Read the data of the copy and check the CRC */
320
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300321 len = be32_to_cpu(vid_hdr->data_size);
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300322 buf = vmalloc(len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400323 if (!buf) {
324 err = -ENOMEM;
325 goto out_free_vidh;
326 }
327
328 err = ubi_io_read_data(ubi, buf, pnum, 0, len);
Zoltan Sogorb77bcb02008-10-29 09:50:02 +0100329 if (err && err != UBI_IO_BITFLIPS && err != -EBADMSG)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400330 goto out_free_buf;
331
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300332 data_crc = be32_to_cpu(vid_hdr->data_crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400333 crc = crc32(UBI_CRC32_INIT, buf, len);
334 if (crc != data_crc) {
335 dbg_bld("PEB %d CRC error: calculated %#08x, must be %#08x",
336 pnum, crc, data_crc);
337 corrupted = 1;
338 bitflips = 0;
339 second_is_newer = !second_is_newer;
340 } else {
341 dbg_bld("PEB %d CRC is OK", pnum);
342 bitflips = !!err;
343 }
344
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300345 vfree(buf);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300346 ubi_free_vid_hdr(ubi, vh);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400347
348 if (second_is_newer)
349 dbg_bld("second PEB %d is newer, copy_flag is set", pnum);
350 else
351 dbg_bld("first PEB %d is newer, copy_flag is set", pnum);
352
353 return second_is_newer | (bitflips << 1) | (corrupted << 2);
354
355out_free_buf:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300356 vfree(buf);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400357out_free_vidh:
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300358 ubi_free_vid_hdr(ubi, vh);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400359 return err;
360}
361
362/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300363 * ubi_scan_add_used - add physical eraseblock to the scanning information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400364 * @ubi: UBI device description object
365 * @si: scanning information
366 * @pnum: the physical eraseblock number
367 * @ec: erase counter
368 * @vid_hdr: the volume identifier header
369 * @bitflips: if bit-flips were detected when this physical eraseblock was read
370 *
Artem Bityutskiy79b510c2007-05-05 17:36:17 +0300371 * This function adds information about a used physical eraseblock to the
372 * 'used' tree of the corresponding volume. The function is rather complex
373 * because it has to handle cases when this is not the first physical
374 * eraseblock belonging to the same logical eraseblock, and the newer one has
375 * to be picked, while the older one has to be dropped. This function returns
376 * zero in case of success and a negative error code in case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400377 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300378int ubi_scan_add_used(struct ubi_device *ubi, struct ubi_scan_info *si,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400379 int pnum, int ec, const struct ubi_vid_hdr *vid_hdr,
380 int bitflips)
381{
382 int err, vol_id, lnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400383 unsigned long long sqnum;
384 struct ubi_scan_volume *sv;
385 struct ubi_scan_leb *seb;
386 struct rb_node **p, *parent = NULL;
387
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300388 vol_id = be32_to_cpu(vid_hdr->vol_id);
389 lnum = be32_to_cpu(vid_hdr->lnum);
390 sqnum = be64_to_cpu(vid_hdr->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400391
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300392 dbg_bld("PEB %d, LEB %d:%d, EC %d, sqnum %llu, bitflips %d",
393 pnum, vol_id, lnum, ec, sqnum, bitflips);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400394
395 sv = add_volume(si, vol_id, pnum, vid_hdr);
Julien Brunel0e4a0082008-09-26 15:27:25 +0200396 if (IS_ERR(sv))
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400397 return PTR_ERR(sv);
398
Brijesh Singh76eafe42007-07-06 14:35:43 +0300399 if (si->max_sqnum < sqnum)
400 si->max_sqnum = sqnum;
401
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400402 /*
403 * Walk the RB-tree of logical eraseblocks of volume @vol_id to look
404 * if this is the first instance of this logical eraseblock or not.
405 */
406 p = &sv->root.rb_node;
407 while (*p) {
408 int cmp_res;
409
410 parent = *p;
411 seb = rb_entry(parent, struct ubi_scan_leb, u.rb);
412 if (lnum != seb->lnum) {
413 if (lnum < seb->lnum)
414 p = &(*p)->rb_left;
415 else
416 p = &(*p)->rb_right;
417 continue;
418 }
419
420 /*
421 * There is already a physical eraseblock describing the same
422 * logical eraseblock present.
423 */
424
425 dbg_bld("this LEB already exists: PEB %d, sqnum %llu, "
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300426 "EC %d", seb->pnum, seb->sqnum, seb->ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400427
428 /*
429 * Make sure that the logical eraseblocks have different
430 * sequence numbers. Otherwise the image is bad.
431 *
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300432 * However, if the sequence number is zero, we assume it must
433 * be an ancient UBI image from the era when UBI did not have
434 * sequence numbers. We still can attach these images, unless
435 * there is a need to distinguish between old and new
436 * eraseblocks, in which case we'll refuse the image in
437 * 'compare_lebs()'. In other words, we attach old clean
438 * images, but refuse attaching old images with duplicated
439 * logical eraseblocks because there was an unclean reboot.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400440 */
441 if (seb->sqnum == sqnum && sqnum != 0) {
442 ubi_err("two LEBs with same sequence number %llu",
443 sqnum);
444 ubi_dbg_dump_seb(seb, 0);
445 ubi_dbg_dump_vid_hdr(vid_hdr);
446 return -EINVAL;
447 }
448
449 /*
450 * Now we have to drop the older one and preserve the newer
451 * one.
452 */
453 cmp_res = compare_lebs(ubi, seb, pnum, vid_hdr);
454 if (cmp_res < 0)
455 return cmp_res;
456
457 if (cmp_res & 1) {
458 /*
Shinya Kuribayashi3f502622010-05-06 19:21:47 +0900459 * This logical eraseblock is newer than the one
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400460 * found earlier.
461 */
462 err = validate_vid_hdr(vid_hdr, sv, pnum);
463 if (err)
464 return err;
465
466 if (cmp_res & 4)
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300467 err = add_to_list(si, seb->pnum, seb->ec,
468 &si->corr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400469 else
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300470 err = add_to_list(si, seb->pnum, seb->ec,
471 &si->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400472 if (err)
473 return err;
474
475 seb->ec = ec;
476 seb->pnum = pnum;
477 seb->scrub = ((cmp_res & 2) || bitflips);
478 seb->sqnum = sqnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400479
480 if (sv->highest_lnum == lnum)
481 sv->last_data_size =
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300482 be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400483
484 return 0;
485 } else {
486 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200487 * This logical eraseblock is older than the one found
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400488 * previously.
489 */
490 if (cmp_res & 4)
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300491 return add_to_list(si, pnum, ec, &si->corr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400492 else
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300493 return add_to_list(si, pnum, ec, &si->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400494 }
495 }
496
497 /*
498 * We've met this logical eraseblock for the first time, add it to the
499 * scanning information.
500 */
501
502 err = validate_vid_hdr(vid_hdr, sv, pnum);
503 if (err)
504 return err;
505
506 seb = kmalloc(sizeof(struct ubi_scan_leb), GFP_KERNEL);
507 if (!seb)
508 return -ENOMEM;
509
510 seb->ec = ec;
511 seb->pnum = pnum;
512 seb->lnum = lnum;
513 seb->sqnum = sqnum;
514 seb->scrub = bitflips;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400515
516 if (sv->highest_lnum <= lnum) {
517 sv->highest_lnum = lnum;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300518 sv->last_data_size = be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400519 }
520
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400521 sv->leb_count += 1;
522 rb_link_node(&seb->u.rb, parent, p);
523 rb_insert_color(&seb->u.rb, &sv->root);
Artem Bityutskiy33789fb2010-04-30 12:31:26 +0300524 si->used_peb_count += 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400525 return 0;
526}
527
528/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300529 * ubi_scan_find_sv - find volume in the scanning information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400530 * @si: scanning information
531 * @vol_id: the requested volume ID
532 *
533 * This function returns a pointer to the volume description or %NULL if there
534 * are no data about this volume in the scanning information.
535 */
536struct ubi_scan_volume *ubi_scan_find_sv(const struct ubi_scan_info *si,
537 int vol_id)
538{
539 struct ubi_scan_volume *sv;
540 struct rb_node *p = si->volumes.rb_node;
541
542 while (p) {
543 sv = rb_entry(p, struct ubi_scan_volume, rb);
544
545 if (vol_id == sv->vol_id)
546 return sv;
547
548 if (vol_id > sv->vol_id)
549 p = p->rb_left;
550 else
551 p = p->rb_right;
552 }
553
554 return NULL;
555}
556
557/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300558 * ubi_scan_find_seb - find LEB in the volume scanning information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400559 * @sv: a pointer to the volume scanning information
560 * @lnum: the requested logical eraseblock
561 *
562 * This function returns a pointer to the scanning logical eraseblock or %NULL
563 * if there are no data about it in the scanning volume information.
564 */
565struct ubi_scan_leb *ubi_scan_find_seb(const struct ubi_scan_volume *sv,
566 int lnum)
567{
568 struct ubi_scan_leb *seb;
569 struct rb_node *p = sv->root.rb_node;
570
571 while (p) {
572 seb = rb_entry(p, struct ubi_scan_leb, u.rb);
573
574 if (lnum == seb->lnum)
575 return seb;
576
577 if (lnum > seb->lnum)
578 p = p->rb_left;
579 else
580 p = p->rb_right;
581 }
582
583 return NULL;
584}
585
586/**
587 * ubi_scan_rm_volume - delete scanning information about a volume.
588 * @si: scanning information
589 * @sv: the volume scanning information to delete
590 */
591void ubi_scan_rm_volume(struct ubi_scan_info *si, struct ubi_scan_volume *sv)
592{
593 struct rb_node *rb;
594 struct ubi_scan_leb *seb;
595
596 dbg_bld("remove scanning information about volume %d", sv->vol_id);
597
598 while ((rb = rb_first(&sv->root))) {
599 seb = rb_entry(rb, struct ubi_scan_leb, u.rb);
600 rb_erase(&seb->u.rb, &sv->root);
601 list_add_tail(&seb->u.list, &si->erase);
602 }
603
604 rb_erase(&sv->rb, &si->volumes);
605 kfree(sv);
606 si->vols_found -= 1;
607}
608
609/**
610 * ubi_scan_erase_peb - erase a physical eraseblock.
611 * @ubi: UBI device description object
612 * @si: scanning information
613 * @pnum: physical eraseblock number to erase;
614 * @ec: erase counter value to write (%UBI_SCAN_UNKNOWN_EC if it is unknown)
615 *
616 * This function erases physical eraseblock 'pnum', and writes the erase
617 * counter header to it. This function should only be used on UBI device
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300618 * initialization stages, when the EBA sub-system had not been yet initialized.
619 * This function returns zero in case of success and a negative error code in
620 * case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400621 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300622int ubi_scan_erase_peb(struct ubi_device *ubi, const struct ubi_scan_info *si,
623 int pnum, int ec)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400624{
625 int err;
626 struct ubi_ec_hdr *ec_hdr;
627
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400628 if ((long long)ec >= UBI_MAX_ERASECOUNTER) {
629 /*
630 * Erase counter overflow. Upgrade UBI and use 64-bit
631 * erase counters internally.
632 */
633 ubi_err("erase counter overflow at PEB %d, EC %d", pnum, ec);
634 return -EINVAL;
635 }
636
Florin Malitadcec4c32007-07-19 15:22:41 -0400637 ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
638 if (!ec_hdr)
639 return -ENOMEM;
640
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300641 ec_hdr->ec = cpu_to_be64(ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400642
643 err = ubi_io_sync_erase(ubi, pnum, 0);
644 if (err < 0)
645 goto out_free;
646
647 err = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr);
648
649out_free:
650 kfree(ec_hdr);
651 return err;
652}
653
654/**
655 * ubi_scan_get_free_peb - get a free physical eraseblock.
656 * @ubi: UBI device description object
657 * @si: scanning information
658 *
659 * This function returns a free physical eraseblock. It is supposed to be
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300660 * called on the UBI initialization stages when the wear-leveling sub-system is
661 * not initialized yet. This function picks a physical eraseblocks from one of
662 * the lists, writes the EC header if it is needed, and removes it from the
663 * list.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400664 *
665 * This function returns scanning physical eraseblock information in case of
666 * success and an error code in case of failure.
667 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300668struct ubi_scan_leb *ubi_scan_get_free_peb(struct ubi_device *ubi,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400669 struct ubi_scan_info *si)
670{
671 int err = 0, i;
672 struct ubi_scan_leb *seb;
673
674 if (!list_empty(&si->free)) {
675 seb = list_entry(si->free.next, struct ubi_scan_leb, u.list);
676 list_del(&seb->u.list);
677 dbg_bld("return free PEB %d, EC %d", seb->pnum, seb->ec);
678 return seb;
679 }
680
681 for (i = 0; i < 2; i++) {
682 struct list_head *head;
683 struct ubi_scan_leb *tmp_seb;
684
685 if (i == 0)
686 head = &si->erase;
687 else
688 head = &si->corr;
689
690 /*
691 * We try to erase the first physical eraseblock from the @head
692 * list and pick it if we succeed, or try to erase the
693 * next one if not. And so forth. We don't want to take care
694 * about bad eraseblocks here - they'll be handled later.
695 */
696 list_for_each_entry_safe(seb, tmp_seb, head, u.list) {
697 if (seb->ec == UBI_SCAN_UNKNOWN_EC)
698 seb->ec = si->mean_ec;
699
700 err = ubi_scan_erase_peb(ubi, si, seb->pnum, seb->ec+1);
701 if (err)
702 continue;
703
704 seb->ec += 1;
705 list_del(&seb->u.list);
706 dbg_bld("return PEB %d, EC %d", seb->pnum, seb->ec);
707 return seb;
708 }
709 }
710
711 ubi_err("no eraseblocks found");
712 return ERR_PTR(-ENOSPC);
713}
714
715/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300716 * process_eb - read, check UBI headers, and add them to scanning information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400717 * @ubi: UBI device description object
718 * @si: scanning information
719 * @pnum: the physical eraseblock number
720 *
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300721 * This function returns a zero if the physical eraseblock was successfully
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400722 * handled and a negative error code in case of failure.
723 */
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300724static int process_eb(struct ubi_device *ubi, struct ubi_scan_info *si,
725 int pnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400726{
Artem Bityutskiyc18a8412008-01-24 11:19:14 +0200727 long long uninitialized_var(ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400728 int err, bitflips = 0, vol_id, ec_corr = 0;
729
730 dbg_bld("scan PEB %d", pnum);
731
732 /* Skip bad physical eraseblocks */
733 err = ubi_io_is_bad(ubi, pnum);
734 if (err < 0)
735 return err;
736 else if (err) {
737 /*
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300738 * FIXME: this is actually duty of the I/O sub-system to
739 * initialize this, but MTD does not provide enough
740 * information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400741 */
742 si->bad_peb_count += 1;
743 return 0;
744 }
745
746 err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
747 if (err < 0)
748 return err;
749 else if (err == UBI_IO_BITFLIPS)
750 bitflips = 1;
751 else if (err == UBI_IO_PEB_EMPTY)
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300752 return add_to_list(si, pnum, UBI_SCAN_UNKNOWN_EC, &si->erase);
Artem Bityutskiyeb895802010-05-03 09:04:39 +0300753 else if (err == UBI_IO_BAD_HDR_READ || err == UBI_IO_BAD_HDR) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400754 /*
755 * We have to also look at the VID header, possibly it is not
756 * corrupted. Set %bitflips flag in order to make this PEB be
757 * moved and EC be re-created.
758 */
Artem Bityutskiy33789fb2010-04-30 12:31:26 +0300759 ec_corr = err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400760 ec = UBI_SCAN_UNKNOWN_EC;
761 bitflips = 1;
762 }
763
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400764 if (!ec_corr) {
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300765 int image_seq;
766
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400767 /* Make sure UBI version is OK */
768 if (ech->version != UBI_VERSION) {
769 ubi_err("this UBI version is %d, image version is %d",
770 UBI_VERSION, (int)ech->version);
771 return -EINVAL;
772 }
773
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300774 ec = be64_to_cpu(ech->ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400775 if (ec > UBI_MAX_ERASECOUNTER) {
776 /*
777 * Erase counter overflow. The EC headers have 64 bits
778 * reserved, but we anyway make use of only 31 bit
779 * values, as this seems to be enough for any existing
780 * flash. Upgrade UBI and use 64-bit erase counters
781 * internally.
782 */
783 ubi_err("erase counter overflow, max is %d",
784 UBI_MAX_ERASECOUNTER);
785 ubi_dbg_dump_ec_hdr(ech);
786 return -EINVAL;
787 }
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300788
Adrian Hunter32bc4822009-07-24 19:16:04 +0300789 /*
790 * Make sure that all PEBs have the same image sequence number.
791 * This allows us to detect situations when users flash UBI
792 * images incorrectly, so that the flash has the new UBI image
793 * and leftovers from the old one. This feature was added
794 * relatively recently, and the sequence number was always
795 * zero, because old UBI implementations always set it to zero.
796 * For this reasons, we do not panic if some PEBs have zero
797 * sequence number, while other PEBs have non-zero sequence
798 * number.
799 */
Holger Brunck3dc948d2009-07-13 16:47:57 +0200800 image_seq = be32_to_cpu(ech->image_seq);
Artem Bityutskiy2eadaad2009-09-30 10:01:28 +0300801 if (!ubi->image_seq && image_seq)
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300802 ubi->image_seq = image_seq;
Artem Bityutskiy2eadaad2009-09-30 10:01:28 +0300803 if (ubi->image_seq && image_seq &&
804 ubi->image_seq != image_seq) {
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300805 ubi_err("bad image sequence number %d in PEB %d, "
806 "expected %d", image_seq, pnum, ubi->image_seq);
807 ubi_dbg_dump_ec_hdr(ech);
808 return -EINVAL;
809 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400810 }
811
812 /* OK, we've done with the EC header, let's look at the VID header */
813
814 err = ubi_io_read_vid_hdr(ubi, pnum, vidh, 0);
815 if (err < 0)
816 return err;
817 else if (err == UBI_IO_BITFLIPS)
818 bitflips = 1;
Artem Bityutskiyeb895802010-05-03 09:04:39 +0300819 else if (err == UBI_IO_BAD_HDR_READ || err == UBI_IO_BAD_HDR ||
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400820 (err == UBI_IO_PEB_FREE && ec_corr)) {
821 /* VID header is corrupted */
Artem Bityutskiy33789fb2010-04-30 12:31:26 +0300822 if (err == UBI_IO_BAD_HDR_READ ||
823 ec_corr == UBI_IO_BAD_HDR_READ)
824 si->read_err_count += 1;
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300825 err = add_to_list(si, pnum, ec, &si->corr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400826 if (err)
827 return err;
828 goto adjust_mean_ec;
829 } else if (err == UBI_IO_PEB_FREE) {
830 /* No VID header - the physical eraseblock is free */
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300831 err = add_to_list(si, pnum, ec, &si->free);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400832 if (err)
833 return err;
834 goto adjust_mean_ec;
835 }
836
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300837 vol_id = be32_to_cpu(vidh->vol_id);
Artem Bityutskiy91f2d532008-01-24 11:23:23 +0200838 if (vol_id > UBI_MAX_VOLUMES && vol_id != UBI_LAYOUT_VOLUME_ID) {
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300839 int lnum = be32_to_cpu(vidh->lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400840
841 /* Unsupported internal volume */
842 switch (vidh->compat) {
843 case UBI_COMPAT_DELETE:
844 ubi_msg("\"delete\" compatible internal volume %d:%d"
845 " found, remove it", vol_id, lnum);
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300846 err = add_to_list(si, pnum, ec, &si->corr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400847 if (err)
848 return err;
849 break;
850
851 case UBI_COMPAT_RO:
852 ubi_msg("read-only compatible internal volume %d:%d"
853 " found, switch to read-only mode",
854 vol_id, lnum);
855 ubi->ro_mode = 1;
856 break;
857
858 case UBI_COMPAT_PRESERVE:
859 ubi_msg("\"preserve\" compatible internal volume %d:%d"
860 " found", vol_id, lnum);
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300861 err = add_to_list(si, pnum, ec, &si->alien);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400862 if (err)
863 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400864 return 0;
865
866 case UBI_COMPAT_REJECT:
867 ubi_err("incompatible internal volume %d:%d found",
868 vol_id, lnum);
869 return -EINVAL;
870 }
871 }
872
Artem Bityutskiy29a88c92009-07-19 14:03:16 +0300873 if (ec_corr)
874 ubi_warn("valid VID header but corrupted EC header at PEB %d",
875 pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400876 err = ubi_scan_add_used(ubi, si, pnum, ec, vidh, bitflips);
877 if (err)
878 return err;
879
880adjust_mean_ec:
881 if (!ec_corr) {
Artem Bityutskiy4bc1dca2008-04-19 20:44:31 +0300882 si->ec_sum += ec;
883 si->ec_count += 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400884 if (ec > si->max_ec)
885 si->max_ec = ec;
886 if (ec < si->min_ec)
887 si->min_ec = ec;
888 }
889
890 return 0;
891}
892
893/**
Artem Bityutskiy0798cea2010-04-30 13:02:33 +0300894 * check_what_we_have - check what PEB were found by scanning.
895 * @ubi: UBI device description object
896 * @si: scanning information
897 *
898 * This is a helper function which takes a look what PEBs were found by
899 * scanning, and decides whether the flash is empty and should be formatted and
900 * whether there are too many corrupted PEBs and we should not attach this
901 * MTD device. Returns zero if we should proceed with attaching the MTD device,
902 * and %-EINVAL if we should not.
903 */
904static int check_what_we_have(const struct ubi_device *ubi,
905 struct ubi_scan_info *si)
906{
907 struct ubi_scan_leb *seb;
908 int max_corr;
909
910 max_corr = ubi->peb_count - si->bad_peb_count - si->alien_peb_count;
911 max_corr = max_corr / 20 ?: 8;
912
913 /*
914 * Few corrupted PEBs are not a problem and may be just a result of
915 * unclean reboots. However, many of them may indicate some problems
916 * with the flash HW or driver.
917 */
918 if (si->corr_peb_count >= 8) {
919 ubi_warn("%d PEBs are corrupted", si->corr_peb_count);
920 printk(KERN_WARNING "corrupted PEBs are:");
921 list_for_each_entry(seb, &si->corr, u.list)
922 printk(KERN_CONT " %d", seb->pnum);
923 printk(KERN_CONT "\n");
924
925 /*
926 * If too many PEBs are corrupted, we refuse attaching,
927 * otherwise, only print a warning.
928 */
929 if (si->corr_peb_count >= max_corr) {
930 ubi_err("too many corrupted PEBs, refusing this device");
931 return -EINVAL;
932 }
933 }
934
935 if (si->free_peb_count + si->used_peb_count +
936 si->alien_peb_count == 0) {
937 /* No UBI-formatted eraseblocks were found */
938 if (si->corr_peb_count == si->read_err_count &&
939 si->corr_peb_count < 8) {
940 /* No or just few corrupted PEBs, and all of them had a
941 * read error. We assume that those are bad PEBs, which
942 * were just not marked as bad so far.
943 *
944 * This piece of code basically tries to distinguish
945 * between the following 2 situations:
946 *
947 * 1. Flash is empty, but there are few bad PEBs, which
948 * are not marked as bad so far, and which were read
949 * with error. We want to go ahead and format this
950 * flash. While formating, the faulty PEBs will
951 * probably be marked as bad.
952 *
953 * 2. Flash probably contains non-UBI data and we do
954 * not want to format it and destroy possibly needed
955 * data (e.g., consider the case when the bootloader
956 * MTD partition was accidentally fed to UBI).
957 */
958 si->is_empty = 1;
959 ubi_msg("empty MTD device detected");
Matthieu CASTET095751a2010-06-03 16:14:27 +0200960 get_random_bytes(&ubi->image_seq, sizeof(ubi->image_seq));
Artem Bityutskiy0798cea2010-04-30 13:02:33 +0300961 } else {
962 ubi_err("MTD device possibly contains non-UBI data, "
963 "refusing it");
964 return -EINVAL;
965 }
966 }
967
968 if (si->corr_peb_count >= 0)
969 ubi_msg("corrupted PEBs will be formatted");
970 return 0;
971}
972
973/**
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400974 * ubi_scan - scan an MTD device.
975 * @ubi: UBI device description object
976 *
977 * This function does full scanning of an MTD device and returns complete
978 * information about it. In case of failure, an error code is returned.
979 */
980struct ubi_scan_info *ubi_scan(struct ubi_device *ubi)
981{
982 int err, pnum;
983 struct rb_node *rb1, *rb2;
984 struct ubi_scan_volume *sv;
985 struct ubi_scan_leb *seb;
986 struct ubi_scan_info *si;
987
988 si = kzalloc(sizeof(struct ubi_scan_info), GFP_KERNEL);
989 if (!si)
990 return ERR_PTR(-ENOMEM);
991
992 INIT_LIST_HEAD(&si->corr);
993 INIT_LIST_HEAD(&si->free);
994 INIT_LIST_HEAD(&si->erase);
995 INIT_LIST_HEAD(&si->alien);
996 si->volumes = RB_ROOT;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400997
998 err = -ENOMEM;
999 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1000 if (!ech)
1001 goto out_si;
1002
Artem Bityutskiy33818bb2007-08-28 21:29:32 +03001003 vidh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001004 if (!vidh)
1005 goto out_ech;
1006
1007 for (pnum = 0; pnum < ubi->peb_count; pnum++) {
1008 cond_resched();
1009
Artem Bityutskiyc8566352008-07-16 17:40:22 +03001010 dbg_gen("process PEB %d", pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001011 err = process_eb(ubi, si, pnum);
1012 if (err < 0)
1013 goto out_vidh;
1014 }
1015
1016 dbg_msg("scanning is finished");
1017
Artem Bityutskiy4bc1dca2008-04-19 20:44:31 +03001018 /* Calculate mean erase counter */
Artem Bityutskiy3013ee32009-01-16 19:08:43 +02001019 if (si->ec_count)
1020 si->mean_ec = div_u64(si->ec_sum, si->ec_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001021
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001022 err = check_what_we_have(ubi, si);
1023 if (err)
1024 goto out_vidh;
Artem Bityutskiy4a406852009-07-19 14:33:14 +03001025
1026 /*
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001027 * In case of unknown erase counter we use the mean erase counter
1028 * value.
1029 */
1030 ubi_rb_for_each_entry(rb1, sv, &si->volumes, rb) {
1031 ubi_rb_for_each_entry(rb2, seb, &sv->root, u.rb)
1032 if (seb->ec == UBI_SCAN_UNKNOWN_EC)
1033 seb->ec = si->mean_ec;
1034 }
1035
1036 list_for_each_entry(seb, &si->free, u.list) {
1037 if (seb->ec == UBI_SCAN_UNKNOWN_EC)
1038 seb->ec = si->mean_ec;
1039 }
1040
1041 list_for_each_entry(seb, &si->corr, u.list)
1042 if (seb->ec == UBI_SCAN_UNKNOWN_EC)
1043 seb->ec = si->mean_ec;
1044
1045 list_for_each_entry(seb, &si->erase, u.list)
1046 if (seb->ec == UBI_SCAN_UNKNOWN_EC)
1047 seb->ec = si->mean_ec;
1048
1049 err = paranoid_check_si(ubi, si);
Artem Bityutskiyadbf05e2010-01-20 10:28:58 +02001050 if (err)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001051 goto out_vidh;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001052
1053 ubi_free_vid_hdr(ubi, vidh);
1054 kfree(ech);
1055
1056 return si;
1057
1058out_vidh:
1059 ubi_free_vid_hdr(ubi, vidh);
1060out_ech:
1061 kfree(ech);
1062out_si:
1063 ubi_scan_destroy_si(si);
1064 return ERR_PTR(err);
1065}
1066
1067/**
1068 * destroy_sv - free the scanning volume information
1069 * @sv: scanning volume information
1070 *
1071 * This function destroys the volume RB-tree (@sv->root) and the scanning
1072 * volume information.
1073 */
1074static void destroy_sv(struct ubi_scan_volume *sv)
1075{
1076 struct ubi_scan_leb *seb;
1077 struct rb_node *this = sv->root.rb_node;
1078
1079 while (this) {
1080 if (this->rb_left)
1081 this = this->rb_left;
1082 else if (this->rb_right)
1083 this = this->rb_right;
1084 else {
1085 seb = rb_entry(this, struct ubi_scan_leb, u.rb);
1086 this = rb_parent(this);
1087 if (this) {
1088 if (this->rb_left == &seb->u.rb)
1089 this->rb_left = NULL;
1090 else
1091 this->rb_right = NULL;
1092 }
1093
1094 kfree(seb);
1095 }
1096 }
1097 kfree(sv);
1098}
1099
1100/**
1101 * ubi_scan_destroy_si - destroy scanning information.
1102 * @si: scanning information
1103 */
1104void ubi_scan_destroy_si(struct ubi_scan_info *si)
1105{
1106 struct ubi_scan_leb *seb, *seb_tmp;
1107 struct ubi_scan_volume *sv;
1108 struct rb_node *rb;
1109
1110 list_for_each_entry_safe(seb, seb_tmp, &si->alien, u.list) {
1111 list_del(&seb->u.list);
1112 kfree(seb);
1113 }
1114 list_for_each_entry_safe(seb, seb_tmp, &si->erase, u.list) {
1115 list_del(&seb->u.list);
1116 kfree(seb);
1117 }
1118 list_for_each_entry_safe(seb, seb_tmp, &si->corr, u.list) {
1119 list_del(&seb->u.list);
1120 kfree(seb);
1121 }
1122 list_for_each_entry_safe(seb, seb_tmp, &si->free, u.list) {
1123 list_del(&seb->u.list);
1124 kfree(seb);
1125 }
1126
1127 /* Destroy the volume RB-tree */
1128 rb = si->volumes.rb_node;
1129 while (rb) {
1130 if (rb->rb_left)
1131 rb = rb->rb_left;
1132 else if (rb->rb_right)
1133 rb = rb->rb_right;
1134 else {
1135 sv = rb_entry(rb, struct ubi_scan_volume, rb);
1136
1137 rb = rb_parent(rb);
1138 if (rb) {
1139 if (rb->rb_left == &sv->rb)
1140 rb->rb_left = NULL;
1141 else
1142 rb->rb_right = NULL;
1143 }
1144
1145 destroy_sv(sv);
1146 }
1147 }
1148
1149 kfree(si);
1150}
1151
1152#ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
1153
1154/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +03001155 * paranoid_check_si - check the scanning information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001156 * @ubi: UBI device description object
1157 * @si: scanning information
1158 *
Artem Bityutskiyadbf05e2010-01-20 10:28:58 +02001159 * This function returns zero if the scanning information is all right, and a
1160 * negative error code if not or if an error occurred.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001161 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +03001162static int paranoid_check_si(struct ubi_device *ubi, struct ubi_scan_info *si)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001163{
1164 int pnum, err, vols_found = 0;
1165 struct rb_node *rb1, *rb2;
1166 struct ubi_scan_volume *sv;
1167 struct ubi_scan_leb *seb, *last_seb;
1168 uint8_t *buf;
1169
1170 /*
Artem Bityutskiy78d87c92007-05-05 11:24:02 +03001171 * At first, check that scanning information is OK.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001172 */
1173 ubi_rb_for_each_entry(rb1, sv, &si->volumes, rb) {
1174 int leb_count = 0;
1175
1176 cond_resched();
1177
1178 vols_found += 1;
1179
1180 if (si->is_empty) {
1181 ubi_err("bad is_empty flag");
1182 goto bad_sv;
1183 }
1184
1185 if (sv->vol_id < 0 || sv->highest_lnum < 0 ||
1186 sv->leb_count < 0 || sv->vol_type < 0 || sv->used_ebs < 0 ||
1187 sv->data_pad < 0 || sv->last_data_size < 0) {
1188 ubi_err("negative values");
1189 goto bad_sv;
1190 }
1191
1192 if (sv->vol_id >= UBI_MAX_VOLUMES &&
1193 sv->vol_id < UBI_INTERNAL_VOL_START) {
1194 ubi_err("bad vol_id");
1195 goto bad_sv;
1196 }
1197
1198 if (sv->vol_id > si->highest_vol_id) {
1199 ubi_err("highest_vol_id is %d, but vol_id %d is there",
1200 si->highest_vol_id, sv->vol_id);
1201 goto out;
1202 }
1203
1204 if (sv->vol_type != UBI_DYNAMIC_VOLUME &&
1205 sv->vol_type != UBI_STATIC_VOLUME) {
1206 ubi_err("bad vol_type");
1207 goto bad_sv;
1208 }
1209
1210 if (sv->data_pad > ubi->leb_size / 2) {
1211 ubi_err("bad data_pad");
1212 goto bad_sv;
1213 }
1214
1215 last_seb = NULL;
1216 ubi_rb_for_each_entry(rb2, seb, &sv->root, u.rb) {
1217 cond_resched();
1218
1219 last_seb = seb;
1220 leb_count += 1;
1221
1222 if (seb->pnum < 0 || seb->ec < 0) {
1223 ubi_err("negative values");
1224 goto bad_seb;
1225 }
1226
1227 if (seb->ec < si->min_ec) {
1228 ubi_err("bad si->min_ec (%d), %d found",
1229 si->min_ec, seb->ec);
1230 goto bad_seb;
1231 }
1232
1233 if (seb->ec > si->max_ec) {
1234 ubi_err("bad si->max_ec (%d), %d found",
1235 si->max_ec, seb->ec);
1236 goto bad_seb;
1237 }
1238
1239 if (seb->pnum >= ubi->peb_count) {
1240 ubi_err("too high PEB number %d, total PEBs %d",
1241 seb->pnum, ubi->peb_count);
1242 goto bad_seb;
1243 }
1244
1245 if (sv->vol_type == UBI_STATIC_VOLUME) {
1246 if (seb->lnum >= sv->used_ebs) {
1247 ubi_err("bad lnum or used_ebs");
1248 goto bad_seb;
1249 }
1250 } else {
1251 if (sv->used_ebs != 0) {
1252 ubi_err("non-zero used_ebs");
1253 goto bad_seb;
1254 }
1255 }
1256
1257 if (seb->lnum > sv->highest_lnum) {
1258 ubi_err("incorrect highest_lnum or lnum");
1259 goto bad_seb;
1260 }
1261 }
1262
1263 if (sv->leb_count != leb_count) {
1264 ubi_err("bad leb_count, %d objects in the tree",
1265 leb_count);
1266 goto bad_sv;
1267 }
1268
1269 if (!last_seb)
1270 continue;
1271
1272 seb = last_seb;
1273
1274 if (seb->lnum != sv->highest_lnum) {
1275 ubi_err("bad highest_lnum");
1276 goto bad_seb;
1277 }
1278 }
1279
1280 if (vols_found != si->vols_found) {
1281 ubi_err("bad si->vols_found %d, should be %d",
1282 si->vols_found, vols_found);
1283 goto out;
1284 }
1285
1286 /* Check that scanning information is correct */
1287 ubi_rb_for_each_entry(rb1, sv, &si->volumes, rb) {
1288 last_seb = NULL;
1289 ubi_rb_for_each_entry(rb2, seb, &sv->root, u.rb) {
1290 int vol_type;
1291
1292 cond_resched();
1293
1294 last_seb = seb;
1295
1296 err = ubi_io_read_vid_hdr(ubi, seb->pnum, vidh, 1);
1297 if (err && err != UBI_IO_BITFLIPS) {
1298 ubi_err("VID header is not OK (%d)", err);
1299 if (err > 0)
1300 err = -EIO;
1301 return err;
1302 }
1303
1304 vol_type = vidh->vol_type == UBI_VID_DYNAMIC ?
1305 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
1306 if (sv->vol_type != vol_type) {
1307 ubi_err("bad vol_type");
1308 goto bad_vid_hdr;
1309 }
1310
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001311 if (seb->sqnum != be64_to_cpu(vidh->sqnum)) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001312 ubi_err("bad sqnum %llu", seb->sqnum);
1313 goto bad_vid_hdr;
1314 }
1315
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001316 if (sv->vol_id != be32_to_cpu(vidh->vol_id)) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001317 ubi_err("bad vol_id %d", sv->vol_id);
1318 goto bad_vid_hdr;
1319 }
1320
1321 if (sv->compat != vidh->compat) {
1322 ubi_err("bad compat %d", vidh->compat);
1323 goto bad_vid_hdr;
1324 }
1325
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001326 if (seb->lnum != be32_to_cpu(vidh->lnum)) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001327 ubi_err("bad lnum %d", seb->lnum);
1328 goto bad_vid_hdr;
1329 }
1330
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001331 if (sv->used_ebs != be32_to_cpu(vidh->used_ebs)) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001332 ubi_err("bad used_ebs %d", sv->used_ebs);
1333 goto bad_vid_hdr;
1334 }
1335
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001336 if (sv->data_pad != be32_to_cpu(vidh->data_pad)) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001337 ubi_err("bad data_pad %d", sv->data_pad);
1338 goto bad_vid_hdr;
1339 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001340 }
1341
1342 if (!last_seb)
1343 continue;
1344
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001345 if (sv->highest_lnum != be32_to_cpu(vidh->lnum)) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001346 ubi_err("bad highest_lnum %d", sv->highest_lnum);
1347 goto bad_vid_hdr;
1348 }
1349
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001350 if (sv->last_data_size != be32_to_cpu(vidh->data_size)) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001351 ubi_err("bad last_data_size %d", sv->last_data_size);
1352 goto bad_vid_hdr;
1353 }
1354 }
1355
1356 /*
1357 * Make sure that all the physical eraseblocks are in one of the lists
1358 * or trees.
1359 */
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001360 buf = kzalloc(ubi->peb_count, GFP_KERNEL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001361 if (!buf)
1362 return -ENOMEM;
1363
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001364 for (pnum = 0; pnum < ubi->peb_count; pnum++) {
1365 err = ubi_io_is_bad(ubi, pnum);
Artem Bityutskiy341e1a02007-05-03 11:59:51 +03001366 if (err < 0) {
1367 kfree(buf);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001368 return err;
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +03001369 } else if (err)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001370 buf[pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001371 }
1372
1373 ubi_rb_for_each_entry(rb1, sv, &si->volumes, rb)
1374 ubi_rb_for_each_entry(rb2, seb, &sv->root, u.rb)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001375 buf[seb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001376
1377 list_for_each_entry(seb, &si->free, u.list)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001378 buf[seb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001379
1380 list_for_each_entry(seb, &si->corr, u.list)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001381 buf[seb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001382
1383 list_for_each_entry(seb, &si->erase, u.list)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001384 buf[seb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001385
1386 list_for_each_entry(seb, &si->alien, u.list)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001387 buf[seb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001388
1389 err = 0;
1390 for (pnum = 0; pnum < ubi->peb_count; pnum++)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001391 if (!buf[pnum]) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001392 ubi_err("PEB %d is not referred", pnum);
1393 err = 1;
1394 }
1395
1396 kfree(buf);
1397 if (err)
1398 goto out;
1399 return 0;
1400
1401bad_seb:
1402 ubi_err("bad scanning information about LEB %d", seb->lnum);
1403 ubi_dbg_dump_seb(seb, 0);
1404 ubi_dbg_dump_sv(sv);
1405 goto out;
1406
1407bad_sv:
1408 ubi_err("bad scanning information about volume %d", sv->vol_id);
1409 ubi_dbg_dump_sv(sv);
1410 goto out;
1411
1412bad_vid_hdr:
1413 ubi_err("bad scanning information about volume %d", sv->vol_id);
1414 ubi_dbg_dump_sv(sv);
1415 ubi_dbg_dump_vid_hdr(vidh);
1416
1417out:
1418 ubi_dbg_dump_stack();
Artem Bityutskiyadbf05e2010-01-20 10:28:58 +02001419 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001420}
1421
1422#endif /* CONFIG_MTD_UBI_DEBUG_PARANOID */