blob: 68d4d1f76d1eaf47608147aa3a9e4355841d6073 [file] [log] [blame]
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001/*
2 * Copyright (c) International Business Machines Corp., 2006
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Artem Bityutskiy (Битюцкий Артём)
19 */
20
21/*
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030022 * UBI attaching sub-system.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040023 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030024 * This sub-system is responsible for attaching MTD devices and it also
25 * implements flash media scanning.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040026 *
Artem Bityutskiya4e60422012-05-17 13:09:08 +030027 * The attaching information is represented by a &struct ubi_attach_info'
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030028 * object. Information about volumes is represented by &struct ubi_ainf_volume
29 * objects which are kept in volume RB-tree with root at the @volumes field.
30 * The RB-tree is indexed by the volume ID.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040031 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030032 * Logical eraseblocks are represented by &struct ubi_ainf_peb objects. These
33 * objects are kept in per-volume RB-trees with the root at the corresponding
34 * &struct ubi_ainf_volume object. To put it differently, we keep an RB-tree of
35 * per-volume objects and each of these objects is the root of RB-tree of
36 * per-LEB objects.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040037 *
38 * Corrupted physical eraseblocks are put to the @corr list, free physical
39 * eraseblocks are put to the @free list and the physical eraseblock to be
40 * erased are put to the @erase list.
Artem Bityutskiy0525dac2010-09-03 17:11:37 +030041 *
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030042 * About corruptions
43 * ~~~~~~~~~~~~~~~~~
44 *
45 * UBI protects EC and VID headers with CRC-32 checksums, so it can detect
46 * whether the headers are corrupted or not. Sometimes UBI also protects the
47 * data with CRC-32, e.g., when it executes the atomic LEB change operation, or
48 * when it moves the contents of a PEB for wear-leveling purposes.
49 *
Artem Bityutskiy0525dac2010-09-03 17:11:37 +030050 * UBI tries to distinguish between 2 types of corruptions.
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030051 *
52 * 1. Corruptions caused by power cuts. These are expected corruptions and UBI
53 * tries to handle them gracefully, without printing too many warnings and
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030054 * error messages. The idea is that we do not lose important data in these
55 * cases - we may lose only the data which were being written to the media just
56 * before the power cut happened, and the upper layers (e.g., UBIFS) are
57 * supposed to handle such data losses (e.g., by using the FS journal).
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030058 *
59 * When UBI detects a corruption (CRC-32 mismatch) in a PEB, and it looks like
60 * the reason is a power cut, UBI puts this PEB to the @erase list, and all
61 * PEBs in the @erase list are scheduled for erasure later.
Artem Bityutskiy0525dac2010-09-03 17:11:37 +030062 *
63 * 2. Unexpected corruptions which are not caused by power cuts. During
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030064 * attaching, such PEBs are put to the @corr list and UBI preserves them.
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030065 * Obviously, this lessens the amount of available PEBs, and if at some point
66 * UBI runs out of free PEBs, it switches to R/O mode. UBI also loudly informs
67 * about such PEBs every time the MTD device is attached.
Artem Bityutskiy45aafd32010-10-20 11:54:58 +030068 *
69 * However, it is difficult to reliably distinguish between these types of
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030070 * corruptions and UBI's strategy is as follows (in case of attaching by
71 * scanning). UBI assumes corruption type 2 if the VID header is corrupted and
72 * the data area does not contain all 0xFFs, and there were no bit-flips or
73 * integrity errors (e.g., ECC errors in case of NAND) while reading the data
74 * area. Otherwise UBI assumes corruption type 1. So the decision criteria
75 * are as follows.
76 * o If the data area contains only 0xFFs, there are no data, and it is safe
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030077 * to just erase this PEB - this is corruption type 1.
78 * o If the data area has bit-flips or data integrity errors (ECC errors on
Artem Bityutskiy45aafd32010-10-20 11:54:58 +030079 * NAND), it is probably a PEB which was being erased when power cut
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030080 * happened, so this is corruption type 1. However, this is just a guess,
81 * which might be wrong.
82 * o Otherwise this it corruption type 2.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040083 */
84
85#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090086#include <linux/slab.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040087#include <linux/crc32.h>
Artem Bityutskiy3013ee32009-01-16 19:08:43 +020088#include <linux/math64.h>
Matthieu CASTET095751a2010-06-03 16:14:27 +020089#include <linux/random.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040090#include "ubi.h"
91
Artem Bityutskiya4e60422012-05-17 13:09:08 +030092static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040093
94/* Temporary variables used during scanning */
95static struct ubi_ec_hdr *ech;
96static struct ubi_vid_hdr *vidh;
97
Artem Bityutskiy941dfb02007-05-05 16:33:13 +030098/**
Artem Bityutskiy78d87c92007-05-05 11:24:02 +030099 * add_to_list - add physical eraseblock to a list.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300100 * @ai: attaching information
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300101 * @pnum: physical eraseblock number to add
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200102 * @vol_id: the last used volume id for the PEB
103 * @lnum: the last used LEB number for the PEB
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300104 * @ec: erase counter of the physical eraseblock
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300105 * @to_head: if not zero, add to the head of the list
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300106 * @list: the list to add to
107 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300108 * This function allocates a 'struct ubi_ainf_peb' object for physical
109 * eraseblock @pnum and adds it to the "free", "erase", or "alien" lists.
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200110 * It stores the @lnum and @vol_id alongside, which can both be
111 * %UBI_UNKNOWN if they are not available, not readable, or not assigned.
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300112 * If @to_head is not zero, PEB will be added to the head of the list, which
113 * basically means it will be processed first later. E.g., we add corrupted
114 * PEBs (corrupted due to power cuts) to the head of the erase list to make
115 * sure we erase them first and get rid of corruptions ASAP. This function
116 * returns zero in case of success and a negative error code in case of
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300117 * failure.
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300118 */
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200119static int add_to_list(struct ubi_attach_info *ai, int pnum, int vol_id,
120 int lnum, int ec, int to_head, struct list_head *list)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400121{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300122 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400123
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300124 if (list == &ai->free) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400125 dbg_bld("add to free: PEB %d, EC %d", pnum, ec);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300126 } else if (list == &ai->erase) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400127 dbg_bld("add to erase: PEB %d, EC %d", pnum, ec);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300128 } else if (list == &ai->alien) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400129 dbg_bld("add to alien: PEB %d, EC %d", pnum, ec);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300130 ai->alien_peb_count += 1;
Artem Bityutskiy33789fb2010-04-30 12:31:26 +0300131 } else
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400132 BUG();
133
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +0300134 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300135 if (!aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400136 return -ENOMEM;
137
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300138 aeb->pnum = pnum;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200139 aeb->vol_id = vol_id;
140 aeb->lnum = lnum;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300141 aeb->ec = ec;
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300142 if (to_head)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300143 list_add(&aeb->u.list, list);
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300144 else
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300145 list_add_tail(&aeb->u.list, list);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400146 return 0;
147}
148
149/**
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300150 * add_corrupted - add a corrupted physical eraseblock.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300151 * @ai: attaching information
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300152 * @pnum: physical eraseblock number to add
153 * @ec: erase counter of the physical eraseblock
154 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300155 * This function allocates a 'struct ubi_ainf_peb' object for a corrupted
156 * physical eraseblock @pnum and adds it to the 'corr' list. The corruption
157 * was presumably not caused by a power cut. Returns zero in case of success
158 * and a negative error code in case of failure.
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300159 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300160static int add_corrupted(struct ubi_attach_info *ai, int pnum, int ec)
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300161{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300162 struct ubi_ainf_peb *aeb;
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300163
164 dbg_bld("add to corrupted: PEB %d, EC %d", pnum, ec);
165
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +0300166 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300167 if (!aeb)
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300168 return -ENOMEM;
169
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300170 ai->corr_peb_count += 1;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300171 aeb->pnum = pnum;
172 aeb->ec = ec;
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300173 list_add(&aeb->u.list, &ai->corr);
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300174 return 0;
175}
176
177/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300178 * validate_vid_hdr - check volume identifier header.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400179 * @vid_hdr: the volume identifier header to check
Artem Bityutskiy517af482012-05-17 14:38:34 +0300180 * @av: information about the volume this logical eraseblock belongs to
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400181 * @pnum: physical eraseblock number the VID header came from
182 *
183 * This function checks that data stored in @vid_hdr is consistent. Returns
184 * non-zero if an inconsistency was found and zero if not.
185 *
186 * Note, UBI does sanity check of everything it reads from the flash media.
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300187 * 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 +0400188 * information in the VID header is consistent to the information in other VID
189 * headers of the same volume.
190 */
191static int validate_vid_hdr(const struct ubi_vid_hdr *vid_hdr,
Artem Bityutskiy517af482012-05-17 14:38:34 +0300192 const struct ubi_ainf_volume *av, int pnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400193{
194 int vol_type = vid_hdr->vol_type;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300195 int vol_id = be32_to_cpu(vid_hdr->vol_id);
196 int used_ebs = be32_to_cpu(vid_hdr->used_ebs);
197 int data_pad = be32_to_cpu(vid_hdr->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400198
Artem Bityutskiy517af482012-05-17 14:38:34 +0300199 if (av->leb_count != 0) {
200 int av_vol_type;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400201
202 /*
203 * This is not the first logical eraseblock belonging to this
204 * volume. Ensure that the data in its VID header is consistent
205 * to the data in previous logical eraseblock headers.
206 */
207
Artem Bityutskiy517af482012-05-17 14:38:34 +0300208 if (vol_id != av->vol_id) {
Artem Bityutskiye2986822012-05-16 18:39:56 +0300209 ubi_err("inconsistent vol_id");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400210 goto bad;
211 }
212
Artem Bityutskiy517af482012-05-17 14:38:34 +0300213 if (av->vol_type == UBI_STATIC_VOLUME)
214 av_vol_type = UBI_VID_STATIC;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400215 else
Artem Bityutskiy517af482012-05-17 14:38:34 +0300216 av_vol_type = UBI_VID_DYNAMIC;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400217
Artem Bityutskiy517af482012-05-17 14:38:34 +0300218 if (vol_type != av_vol_type) {
Artem Bityutskiye2986822012-05-16 18:39:56 +0300219 ubi_err("inconsistent vol_type");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400220 goto bad;
221 }
222
Artem Bityutskiy517af482012-05-17 14:38:34 +0300223 if (used_ebs != av->used_ebs) {
Artem Bityutskiye2986822012-05-16 18:39:56 +0300224 ubi_err("inconsistent used_ebs");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400225 goto bad;
226 }
227
Artem Bityutskiy517af482012-05-17 14:38:34 +0300228 if (data_pad != av->data_pad) {
Artem Bityutskiye2986822012-05-16 18:39:56 +0300229 ubi_err("inconsistent data_pad");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400230 goto bad;
231 }
232 }
233
234 return 0;
235
236bad:
237 ubi_err("inconsistent VID header at PEB %d", pnum);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300238 ubi_dump_vid_hdr(vid_hdr);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300239 ubi_dump_av(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400240 return -EINVAL;
241}
242
243/**
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300244 * add_volume - add volume to the attaching information.
245 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400246 * @vol_id: ID of the volume to add
247 * @pnum: physical eraseblock number
248 * @vid_hdr: volume identifier header
249 *
250 * If the volume corresponding to the @vid_hdr logical eraseblock is already
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300251 * present in the attaching information, this function does nothing. Otherwise
252 * it adds corresponding volume to the attaching information. Returns a pointer
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300253 * to the allocated "av" object in case of success and a negative error code in
254 * case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400255 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300256static struct ubi_ainf_volume *add_volume(struct ubi_attach_info *ai,
Artem Bityutskiyafc15a82012-05-17 07:46:17 +0300257 int vol_id, int pnum,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400258 const struct ubi_vid_hdr *vid_hdr)
259{
Artem Bityutskiy517af482012-05-17 14:38:34 +0300260 struct ubi_ainf_volume *av;
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300261 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400262
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300263 ubi_assert(vol_id == be32_to_cpu(vid_hdr->vol_id));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400264
265 /* Walk the volume RB-tree to look if this volume is already present */
266 while (*p) {
267 parent = *p;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300268 av = rb_entry(parent, struct ubi_ainf_volume, rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400269
Artem Bityutskiy517af482012-05-17 14:38:34 +0300270 if (vol_id == av->vol_id)
271 return av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400272
Artem Bityutskiy517af482012-05-17 14:38:34 +0300273 if (vol_id > av->vol_id)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400274 p = &(*p)->rb_left;
275 else
276 p = &(*p)->rb_right;
277 }
278
279 /* The volume is absent - add it */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300280 av = kmalloc(sizeof(struct ubi_ainf_volume), GFP_KERNEL);
281 if (!av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400282 return ERR_PTR(-ENOMEM);
283
Artem Bityutskiy517af482012-05-17 14:38:34 +0300284 av->highest_lnum = av->leb_count = 0;
285 av->vol_id = vol_id;
286 av->root = RB_ROOT;
287 av->used_ebs = be32_to_cpu(vid_hdr->used_ebs);
288 av->data_pad = be32_to_cpu(vid_hdr->data_pad);
289 av->compat = vid_hdr->compat;
290 av->vol_type = vid_hdr->vol_type == UBI_VID_DYNAMIC ? UBI_DYNAMIC_VOLUME
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400291 : UBI_STATIC_VOLUME;
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300292 if (vol_id > ai->highest_vol_id)
293 ai->highest_vol_id = vol_id;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400294
Artem Bityutskiy517af482012-05-17 14:38:34 +0300295 rb_link_node(&av->rb, parent, p);
296 rb_insert_color(&av->rb, &ai->volumes);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300297 ai->vols_found += 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400298 dbg_bld("added volume %d", vol_id);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300299 return av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400300}
301
302/**
303 * compare_lebs - find out which logical eraseblock is newer.
304 * @ubi: UBI device description object
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300305 * @aeb: first logical eraseblock to compare
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400306 * @pnum: physical eraseblock number of the second logical eraseblock to
307 * compare
308 * @vid_hdr: volume identifier header of the second logical eraseblock
309 *
310 * This function compares 2 copies of a LEB and informs which one is newer. In
311 * case of success this function returns a positive value, in case of failure, a
312 * negative error code is returned. The success return codes use the following
313 * bits:
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300314 * o bit 0 is cleared: the first PEB (described by @aeb) is newer than the
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400315 * second PEB (described by @pnum and @vid_hdr);
316 * o bit 0 is set: the second PEB is newer;
317 * o bit 1 is cleared: no bit-flips were detected in the newer LEB;
318 * o bit 1 is set: bit-flips were detected in the newer LEB;
319 * o bit 2 is cleared: the older LEB is not corrupted;
320 * o bit 2 is set: the older LEB is corrupted.
321 */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300322static int compare_lebs(struct ubi_device *ubi, const struct ubi_ainf_peb *aeb,
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300323 int pnum, const struct ubi_vid_hdr *vid_hdr)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400324{
325 void *buf;
326 int len, err, second_is_newer, bitflips = 0, corrupted = 0;
327 uint32_t data_crc, crc;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300328 struct ubi_vid_hdr *vh = NULL;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300329 unsigned long long sqnum2 = be64_to_cpu(vid_hdr->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400330
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300331 if (sqnum2 == aeb->sqnum) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400332 /*
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300333 * This must be a really ancient UBI image which has been
334 * created before sequence numbers support has been added. At
335 * that times we used 32-bit LEB versions stored in logical
336 * eraseblocks. That was before UBI got into mainline. We do not
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300337 * support these images anymore. Well, those images still work,
338 * but only if no unclean reboots happened.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400339 */
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300340 ubi_err("unsupported on-flash UBI format\n");
341 return -EINVAL;
342 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400343
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300344 /* Obviously the LEB with lower sequence counter is older */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300345 second_is_newer = (sqnum2 > aeb->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400346
347 /*
348 * Now we know which copy is newer. If the copy flag of the PEB with
349 * newer version is not set, then we just return, otherwise we have to
350 * check data CRC. For the second PEB we already have the VID header,
351 * for the first one - we'll need to re-read it from flash.
352 *
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300353 * Note: this may be optimized so that we wouldn't read twice.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400354 */
355
356 if (second_is_newer) {
357 if (!vid_hdr->copy_flag) {
358 /* It is not a copy, so it is newer */
359 dbg_bld("second PEB %d is newer, copy_flag is unset",
360 pnum);
361 return 1;
362 }
363 } else {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300364 if (!aeb->copy_flag) {
Artem Bityutskiyfb22b592010-10-19 22:00:11 +0300365 /* It is not a copy, so it is newer */
366 dbg_bld("first PEB %d is newer, copy_flag is unset",
367 pnum);
368 return bitflips << 1;
369 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400370
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300371 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300372 if (!vh)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400373 return -ENOMEM;
374
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300375 pnum = aeb->pnum;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300376 err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400377 if (err) {
378 if (err == UBI_IO_BITFLIPS)
379 bitflips = 1;
380 else {
Artem Bityutskiye2986822012-05-16 18:39:56 +0300381 ubi_err("VID of PEB %d header is bad, but it "
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300382 "was OK earlier, err %d", pnum, err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400383 if (err > 0)
384 err = -EIO;
385
386 goto out_free_vidh;
387 }
388 }
389
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300390 vid_hdr = vh;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400391 }
392
393 /* Read the data of the copy and check the CRC */
394
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300395 len = be32_to_cpu(vid_hdr->data_size);
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300396 buf = vmalloc(len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400397 if (!buf) {
398 err = -ENOMEM;
399 goto out_free_vidh;
400 }
401
402 err = ubi_io_read_data(ubi, buf, pnum, 0, len);
Brian Norrisd57f40542011-09-20 18:34:25 -0700403 if (err && err != UBI_IO_BITFLIPS && !mtd_is_eccerr(err))
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400404 goto out_free_buf;
405
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300406 data_crc = be32_to_cpu(vid_hdr->data_crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400407 crc = crc32(UBI_CRC32_INIT, buf, len);
408 if (crc != data_crc) {
409 dbg_bld("PEB %d CRC error: calculated %#08x, must be %#08x",
410 pnum, crc, data_crc);
411 corrupted = 1;
412 bitflips = 0;
413 second_is_newer = !second_is_newer;
414 } else {
415 dbg_bld("PEB %d CRC is OK", pnum);
416 bitflips = !!err;
417 }
418
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300419 vfree(buf);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300420 ubi_free_vid_hdr(ubi, vh);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400421
422 if (second_is_newer)
423 dbg_bld("second PEB %d is newer, copy_flag is set", pnum);
424 else
425 dbg_bld("first PEB %d is newer, copy_flag is set", pnum);
426
427 return second_is_newer | (bitflips << 1) | (corrupted << 2);
428
429out_free_buf:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300430 vfree(buf);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400431out_free_vidh:
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300432 ubi_free_vid_hdr(ubi, vh);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400433 return err;
434}
435
436/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300437 * ubi_add_to_av - add used physical eraseblock to the attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400438 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300439 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400440 * @pnum: the physical eraseblock number
441 * @ec: erase counter
442 * @vid_hdr: the volume identifier header
443 * @bitflips: if bit-flips were detected when this physical eraseblock was read
444 *
Artem Bityutskiy79b510c2007-05-05 17:36:17 +0300445 * This function adds information about a used physical eraseblock to the
446 * 'used' tree of the corresponding volume. The function is rather complex
447 * because it has to handle cases when this is not the first physical
448 * eraseblock belonging to the same logical eraseblock, and the newer one has
449 * to be picked, while the older one has to be dropped. This function returns
450 * zero in case of success and a negative error code in case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400451 */
Artem Bityutskiy35611882012-05-17 15:31:31 +0300452int ubi_add_to_av(struct ubi_device *ubi, struct ubi_attach_info *ai, int pnum,
453 int ec, const struct ubi_vid_hdr *vid_hdr, int bitflips)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400454{
455 int err, vol_id, lnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400456 unsigned long long sqnum;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300457 struct ubi_ainf_volume *av;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300458 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400459 struct rb_node **p, *parent = NULL;
460
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300461 vol_id = be32_to_cpu(vid_hdr->vol_id);
462 lnum = be32_to_cpu(vid_hdr->lnum);
463 sqnum = be64_to_cpu(vid_hdr->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400464
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300465 dbg_bld("PEB %d, LEB %d:%d, EC %d, sqnum %llu, bitflips %d",
466 pnum, vol_id, lnum, ec, sqnum, bitflips);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400467
Artem Bityutskiy517af482012-05-17 14:38:34 +0300468 av = add_volume(ai, vol_id, pnum, vid_hdr);
469 if (IS_ERR(av))
470 return PTR_ERR(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400471
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300472 if (ai->max_sqnum < sqnum)
473 ai->max_sqnum = sqnum;
Brijesh Singh76eafe42007-07-06 14:35:43 +0300474
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400475 /*
476 * Walk the RB-tree of logical eraseblocks of volume @vol_id to look
477 * if this is the first instance of this logical eraseblock or not.
478 */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300479 p = &av->root.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400480 while (*p) {
481 int cmp_res;
482
483 parent = *p;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300484 aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
485 if (lnum != aeb->lnum) {
486 if (lnum < aeb->lnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400487 p = &(*p)->rb_left;
488 else
489 p = &(*p)->rb_right;
490 continue;
491 }
492
493 /*
494 * There is already a physical eraseblock describing the same
495 * logical eraseblock present.
496 */
497
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300498 dbg_bld("this LEB already exists: PEB %d, sqnum %llu, EC %d",
499 aeb->pnum, aeb->sqnum, aeb->ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400500
501 /*
502 * Make sure that the logical eraseblocks have different
503 * sequence numbers. Otherwise the image is bad.
504 *
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300505 * However, if the sequence number is zero, we assume it must
506 * be an ancient UBI image from the era when UBI did not have
507 * sequence numbers. We still can attach these images, unless
508 * there is a need to distinguish between old and new
509 * eraseblocks, in which case we'll refuse the image in
510 * 'compare_lebs()'. In other words, we attach old clean
511 * images, but refuse attaching old images with duplicated
512 * logical eraseblocks because there was an unclean reboot.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400513 */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300514 if (aeb->sqnum == sqnum && sqnum != 0) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400515 ubi_err("two LEBs with same sequence number %llu",
516 sqnum);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300517 ubi_dump_aeb(aeb, 0);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300518 ubi_dump_vid_hdr(vid_hdr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400519 return -EINVAL;
520 }
521
522 /*
523 * Now we have to drop the older one and preserve the newer
524 * one.
525 */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300526 cmp_res = compare_lebs(ubi, aeb, pnum, vid_hdr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400527 if (cmp_res < 0)
528 return cmp_res;
529
530 if (cmp_res & 1) {
531 /*
Shinya Kuribayashi3f502622010-05-06 19:21:47 +0900532 * This logical eraseblock is newer than the one
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400533 * found earlier.
534 */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300535 err = validate_vid_hdr(vid_hdr, av, pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400536 if (err)
537 return err;
538
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200539 err = add_to_list(ai, aeb->pnum, aeb->vol_id,
540 aeb->lnum, aeb->ec, cmp_res & 4,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300541 &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400542 if (err)
543 return err;
544
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300545 aeb->ec = ec;
546 aeb->pnum = pnum;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200547 aeb->vol_id = vol_id;
548 aeb->lnum = lnum;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300549 aeb->scrub = ((cmp_res & 2) || bitflips);
550 aeb->copy_flag = vid_hdr->copy_flag;
551 aeb->sqnum = sqnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400552
Artem Bityutskiy517af482012-05-17 14:38:34 +0300553 if (av->highest_lnum == lnum)
554 av->last_data_size =
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300555 be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400556
557 return 0;
558 } else {
559 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200560 * This logical eraseblock is older than the one found
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400561 * previously.
562 */
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200563 return add_to_list(ai, pnum, vol_id, lnum, ec,
564 cmp_res & 4, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400565 }
566 }
567
568 /*
569 * We've met this logical eraseblock for the first time, add it to the
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300570 * attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400571 */
572
Artem Bityutskiy517af482012-05-17 14:38:34 +0300573 err = validate_vid_hdr(vid_hdr, av, pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400574 if (err)
575 return err;
576
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +0300577 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300578 if (!aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400579 return -ENOMEM;
580
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300581 aeb->ec = ec;
582 aeb->pnum = pnum;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200583 aeb->vol_id = vol_id;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300584 aeb->lnum = lnum;
585 aeb->scrub = bitflips;
586 aeb->copy_flag = vid_hdr->copy_flag;
587 aeb->sqnum = sqnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400588
Artem Bityutskiy517af482012-05-17 14:38:34 +0300589 if (av->highest_lnum <= lnum) {
590 av->highest_lnum = lnum;
591 av->last_data_size = be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400592 }
593
Artem Bityutskiy517af482012-05-17 14:38:34 +0300594 av->leb_count += 1;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300595 rb_link_node(&aeb->u.rb, parent, p);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300596 rb_insert_color(&aeb->u.rb, &av->root);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400597 return 0;
598}
599
600/**
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300601 * ubi_find_av - find volume in the attaching information.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300602 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400603 * @vol_id: the requested volume ID
604 *
605 * This function returns a pointer to the volume description or %NULL if there
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300606 * are no data about this volume in the attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400607 */
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300608struct ubi_ainf_volume *ubi_find_av(const struct ubi_attach_info *ai,
609 int vol_id)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400610{
Artem Bityutskiy517af482012-05-17 14:38:34 +0300611 struct ubi_ainf_volume *av;
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300612 struct rb_node *p = ai->volumes.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400613
614 while (p) {
Artem Bityutskiy517af482012-05-17 14:38:34 +0300615 av = rb_entry(p, struct ubi_ainf_volume, rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400616
Artem Bityutskiy517af482012-05-17 14:38:34 +0300617 if (vol_id == av->vol_id)
618 return av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400619
Artem Bityutskiy517af482012-05-17 14:38:34 +0300620 if (vol_id > av->vol_id)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400621 p = p->rb_left;
622 else
623 p = p->rb_right;
624 }
625
626 return NULL;
627}
628
629/**
Artem Bityutskiyd717dc22012-05-17 15:36:39 +0300630 * ubi_remove_av - delete attaching information about a volume.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300631 * @ai: attaching information
Artem Bityutskiy517af482012-05-17 14:38:34 +0300632 * @av: the volume attaching information to delete
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400633 */
Artem Bityutskiyd717dc22012-05-17 15:36:39 +0300634void ubi_remove_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400635{
636 struct rb_node *rb;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300637 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400638
Artem Bityutskiy517af482012-05-17 14:38:34 +0300639 dbg_bld("remove attaching information about volume %d", av->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400640
Artem Bityutskiy517af482012-05-17 14:38:34 +0300641 while ((rb = rb_first(&av->root))) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300642 aeb = rb_entry(rb, struct ubi_ainf_peb, u.rb);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300643 rb_erase(&aeb->u.rb, &av->root);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300644 list_add_tail(&aeb->u.list, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400645 }
646
Artem Bityutskiy517af482012-05-17 14:38:34 +0300647 rb_erase(&av->rb, &ai->volumes);
648 kfree(av);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300649 ai->vols_found -= 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400650}
651
652/**
Artem Bityutskiy13d33da2012-05-17 15:20:28 +0300653 * early_erase_peb - erase a physical eraseblock.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400654 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300655 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400656 * @pnum: physical eraseblock number to erase;
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +0300657 * @ec: erase counter value to write (%UBI_UNKNOWN if it is unknown)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400658 *
659 * This function erases physical eraseblock 'pnum', and writes the erase
660 * counter header to it. This function should only be used on UBI device
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300661 * initialization stages, when the EBA sub-system had not been yet initialized.
662 * This function returns zero in case of success and a negative error code in
663 * case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400664 */
Artem Bityutskiy13d33da2012-05-17 15:20:28 +0300665static int early_erase_peb(struct ubi_device *ubi,
666 const struct ubi_attach_info *ai, int pnum, int ec)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400667{
668 int err;
669 struct ubi_ec_hdr *ec_hdr;
670
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400671 if ((long long)ec >= UBI_MAX_ERASECOUNTER) {
672 /*
673 * Erase counter overflow. Upgrade UBI and use 64-bit
674 * erase counters internally.
675 */
676 ubi_err("erase counter overflow at PEB %d, EC %d", pnum, ec);
677 return -EINVAL;
678 }
679
Florin Malitadcec4c32007-07-19 15:22:41 -0400680 ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
681 if (!ec_hdr)
682 return -ENOMEM;
683
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300684 ec_hdr->ec = cpu_to_be64(ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400685
686 err = ubi_io_sync_erase(ubi, pnum, 0);
687 if (err < 0)
688 goto out_free;
689
690 err = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr);
691
692out_free:
693 kfree(ec_hdr);
694 return err;
695}
696
697/**
Artem Bityutskiyc87fbd72012-05-17 15:38:56 +0300698 * ubi_early_get_peb - get a free physical eraseblock.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400699 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300700 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400701 *
702 * This function returns a free physical eraseblock. It is supposed to be
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300703 * called on the UBI initialization stages when the wear-leveling sub-system is
704 * not initialized yet. This function picks a physical eraseblocks from one of
705 * the lists, writes the EC header if it is needed, and removes it from the
706 * list.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400707 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300708 * This function returns a pointer to the "aeb" of the found free PEB in case
709 * of success and an error code in case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400710 */
Artem Bityutskiyc87fbd72012-05-17 15:38:56 +0300711struct ubi_ainf_peb *ubi_early_get_peb(struct ubi_device *ubi,
712 struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400713{
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300714 int err = 0;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300715 struct ubi_ainf_peb *aeb, *tmp_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400716
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300717 if (!list_empty(&ai->free)) {
718 aeb = list_entry(ai->free.next, struct ubi_ainf_peb, u.list);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300719 list_del(&aeb->u.list);
720 dbg_bld("return free PEB %d, EC %d", aeb->pnum, aeb->ec);
721 return aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400722 }
723
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300724 /*
725 * We try to erase the first physical eraseblock from the erase list
726 * and pick it if we succeed, or try to erase the next one if not. And
727 * so forth. We don't want to take care about bad eraseblocks here -
728 * they'll be handled later.
729 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300730 list_for_each_entry_safe(aeb, tmp_aeb, &ai->erase, u.list) {
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +0300731 if (aeb->ec == UBI_UNKNOWN)
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300732 aeb->ec = ai->mean_ec;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400733
Artem Bityutskiy13d33da2012-05-17 15:20:28 +0300734 err = early_erase_peb(ubi, ai, aeb->pnum, aeb->ec+1);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300735 if (err)
736 continue;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400737
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300738 aeb->ec += 1;
739 list_del(&aeb->u.list);
740 dbg_bld("return PEB %d, EC %d", aeb->pnum, aeb->ec);
741 return aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400742 }
743
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300744 ubi_err("no free eraseblocks");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400745 return ERR_PTR(-ENOSPC);
746}
747
748/**
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300749 * check_corruption - check the data area of PEB.
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300750 * @ubi: UBI device description object
751 * @vid_hrd: the (corrupted) VID header of this PEB
752 * @pnum: the physical eraseblock number to check
753 *
754 * This is a helper function which is used to distinguish between VID header
755 * corruptions caused by power cuts and other reasons. If the PEB contains only
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300756 * 0xFF bytes in the data area, the VID header is most probably corrupted
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300757 * because of a power cut (%0 is returned in this case). Otherwise, it was
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300758 * probably corrupted for some other reasons (%1 is returned in this case). A
759 * negative error code is returned if a read error occurred.
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300760 *
761 * If the corruption reason was a power cut, UBI can safely erase this PEB.
762 * Otherwise, it should preserve it to avoid possibly destroying important
763 * information.
764 */
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300765static int check_corruption(struct ubi_device *ubi, struct ubi_vid_hdr *vid_hdr,
766 int pnum)
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300767{
768 int err;
769
770 mutex_lock(&ubi->buf_mutex);
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200771 memset(ubi->peb_buf, 0x00, ubi->leb_size);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300772
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200773 err = ubi_io_read(ubi, ubi->peb_buf, pnum, ubi->leb_start,
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300774 ubi->leb_size);
Brian Norrisd57f40542011-09-20 18:34:25 -0700775 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err)) {
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300776 /*
777 * Bit-flips or integrity errors while reading the data area.
778 * It is difficult to say for sure what type of corruption is
779 * this, but presumably a power cut happened while this PEB was
780 * erased, so it became unstable and corrupted, and should be
781 * erased.
782 */
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300783 err = 0;
784 goto out_unlock;
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300785 }
786
787 if (err)
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300788 goto out_unlock;
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300789
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200790 if (ubi_check_pattern(ubi->peb_buf, 0xFF, ubi->leb_size))
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300791 goto out_unlock;
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300792
793 ubi_err("PEB %d contains corrupted VID header, and the data does not "
794 "contain all 0xFF, this may be a non-UBI PEB or a severe VID "
795 "header corruption which requires manual inspection", pnum);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300796 ubi_dump_vid_hdr(vid_hdr);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300797 dbg_msg("hexdump of PEB %d offset %d, length %d",
798 pnum, ubi->leb_start, ubi->leb_size);
799 ubi_dbg_print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1,
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200800 ubi->peb_buf, ubi->leb_size, 1);
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300801 err = 1;
802
803out_unlock:
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300804 mutex_unlock(&ubi->buf_mutex);
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300805 return err;
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300806}
807
808/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300809 * scan_peb - scan and process UBI headers of a PEB.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400810 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300811 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400812 * @pnum: the physical eraseblock number
813 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300814 * This function reads UBI headers of PEB @pnum, checks them, and adds
815 * information about this PEB to the corresponding list or RB-tree in the
816 * "attaching info" structure. Returns zero if the physical eraseblock was
817 * successfully handled and a negative error code in case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400818 */
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300819static int scan_peb(struct ubi_device *ubi, struct ubi_attach_info *ai,
820 int pnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400821{
Artem Bityutskiyc18a8412008-01-24 11:19:14 +0200822 long long uninitialized_var(ec);
Artem Bityutskiye0e718c2010-09-03 14:53:23 +0300823 int err, bitflips = 0, vol_id, ec_err = 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400824
825 dbg_bld("scan PEB %d", pnum);
826
827 /* Skip bad physical eraseblocks */
828 err = ubi_io_is_bad(ubi, pnum);
829 if (err < 0)
830 return err;
831 else if (err) {
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300832 ai->bad_peb_count += 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400833 return 0;
834 }
835
836 err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
837 if (err < 0)
838 return err;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300839 switch (err) {
840 case 0:
841 break;
842 case UBI_IO_BITFLIPS:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400843 bitflips = 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300844 break;
845 case UBI_IO_FF:
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300846 ai->empty_peb_count += 1;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200847 return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
848 UBI_UNKNOWN, 0, &ai->erase);
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300849 case UBI_IO_FF_BITFLIPS:
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300850 ai->empty_peb_count += 1;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200851 return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
852 UBI_UNKNOWN, 1, &ai->erase);
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300853 case UBI_IO_BAD_HDR_EBADMSG:
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300854 case UBI_IO_BAD_HDR:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400855 /*
856 * We have to also look at the VID header, possibly it is not
857 * corrupted. Set %bitflips flag in order to make this PEB be
858 * moved and EC be re-created.
859 */
Artem Bityutskiye0e718c2010-09-03 14:53:23 +0300860 ec_err = err;
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +0300861 ec = UBI_UNKNOWN;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400862 bitflips = 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300863 break;
864 default:
865 ubi_err("'ubi_io_read_ec_hdr()' returned unknown code %d", err);
866 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400867 }
868
Artem Bityutskiye0e718c2010-09-03 14:53:23 +0300869 if (!ec_err) {
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300870 int image_seq;
871
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400872 /* Make sure UBI version is OK */
873 if (ech->version != UBI_VERSION) {
874 ubi_err("this UBI version is %d, image version is %d",
875 UBI_VERSION, (int)ech->version);
876 return -EINVAL;
877 }
878
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300879 ec = be64_to_cpu(ech->ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400880 if (ec > UBI_MAX_ERASECOUNTER) {
881 /*
882 * Erase counter overflow. The EC headers have 64 bits
883 * reserved, but we anyway make use of only 31 bit
884 * values, as this seems to be enough for any existing
885 * flash. Upgrade UBI and use 64-bit erase counters
886 * internally.
887 */
888 ubi_err("erase counter overflow, max is %d",
889 UBI_MAX_ERASECOUNTER);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300890 ubi_dump_ec_hdr(ech);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400891 return -EINVAL;
892 }
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300893
Adrian Hunter32bc4822009-07-24 19:16:04 +0300894 /*
895 * Make sure that all PEBs have the same image sequence number.
896 * This allows us to detect situations when users flash UBI
897 * images incorrectly, so that the flash has the new UBI image
898 * and leftovers from the old one. This feature was added
899 * relatively recently, and the sequence number was always
900 * zero, because old UBI implementations always set it to zero.
901 * For this reasons, we do not panic if some PEBs have zero
902 * sequence number, while other PEBs have non-zero sequence
903 * number.
904 */
Holger Brunck3dc948d2009-07-13 16:47:57 +0200905 image_seq = be32_to_cpu(ech->image_seq);
Artem Bityutskiy2eadaad2009-09-30 10:01:28 +0300906 if (!ubi->image_seq && image_seq)
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300907 ubi->image_seq = image_seq;
Artem Bityutskiy2eadaad2009-09-30 10:01:28 +0300908 if (ubi->image_seq && image_seq &&
909 ubi->image_seq != image_seq) {
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300910 ubi_err("bad image sequence number %d in PEB %d, "
911 "expected %d", image_seq, pnum, ubi->image_seq);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300912 ubi_dump_ec_hdr(ech);
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +0300913 return -EINVAL;
914 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400915 }
916
917 /* OK, we've done with the EC header, let's look at the VID header */
918
919 err = ubi_io_read_vid_hdr(ubi, pnum, vidh, 0);
920 if (err < 0)
921 return err;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300922 switch (err) {
923 case 0:
924 break;
925 case UBI_IO_BITFLIPS:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400926 bitflips = 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300927 break;
928 case UBI_IO_BAD_HDR_EBADMSG:
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300929 if (ec_err == UBI_IO_BAD_HDR_EBADMSG)
930 /*
931 * Both EC and VID headers are corrupted and were read
932 * with data integrity error, probably this is a bad
933 * PEB, bit it is not marked as bad yet. This may also
934 * be a result of power cut during erasure.
935 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300936 ai->maybe_bad_peb_count += 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300937 case UBI_IO_BAD_HDR:
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300938 if (ec_err)
939 /*
940 * Both headers are corrupted. There is a possibility
941 * that this a valid UBI PEB which has corresponding
942 * LEB, but the headers are corrupted. However, it is
943 * impossible to distinguish it from a PEB which just
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300944 * contains garbage because of a power cut during erase
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300945 * operation. So we just schedule this PEB for erasure.
Artem Bityutskiy7ac760c2010-12-02 06:34:01 +0200946 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300947 * Besides, in case of NOR flash, we deliberately
Artem Bityutskiy7ac760c2010-12-02 06:34:01 +0200948 * corrupt both headers because NOR flash erasure is
949 * slow and can start from the end.
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300950 */
951 err = 0;
952 else
953 /*
954 * The EC was OK, but the VID header is corrupted. We
955 * have to check what is in the data area.
956 */
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300957 err = check_corruption(ubi, vidh, pnum);
Artem Bityutskiydf3fca42010-10-20 11:51:21 +0300958
959 if (err < 0)
960 return err;
961 else if (!err)
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300962 /* This corruption is caused by a power cut */
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200963 err = add_to_list(ai, pnum, UBI_UNKNOWN,
964 UBI_UNKNOWN, ec, 1, &ai->erase);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300965 else
966 /* This is an unexpected corruption */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300967 err = add_corrupted(ai, pnum, ec);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300968 if (err)
969 return err;
970 goto adjust_mean_ec;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300971 case UBI_IO_FF_BITFLIPS:
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200972 err = add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
973 ec, 1, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400974 if (err)
975 return err;
976 goto adjust_mean_ec;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300977 case UBI_IO_FF:
Matthieu CASTET193819c2012-08-22 16:03:46 +0200978 if (ec_err || bitflips)
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200979 err = add_to_list(ai, pnum, UBI_UNKNOWN,
980 UBI_UNKNOWN, ec, 1, &ai->erase);
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300981 else
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200982 err = add_to_list(ai, pnum, UBI_UNKNOWN,
983 UBI_UNKNOWN, ec, 0, &ai->free);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400984 if (err)
985 return err;
986 goto adjust_mean_ec;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300987 default:
988 ubi_err("'ubi_io_read_vid_hdr()' returned unknown code %d",
989 err);
990 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400991 }
992
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300993 vol_id = be32_to_cpu(vidh->vol_id);
Artem Bityutskiy91f2d532008-01-24 11:23:23 +0200994 if (vol_id > UBI_MAX_VOLUMES && vol_id != UBI_LAYOUT_VOLUME_ID) {
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300995 int lnum = be32_to_cpu(vidh->lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400996
997 /* Unsupported internal volume */
998 switch (vidh->compat) {
999 case UBI_COMPAT_DELETE:
1000 ubi_msg("\"delete\" compatible internal volume %d:%d"
Brijesh Singh158132c2010-06-16 09:28:26 +03001001 " found, will remove it", vol_id, lnum);
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001002 err = add_to_list(ai, pnum, vol_id, lnum,
1003 ec, 1, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001004 if (err)
1005 return err;
Brijesh Singh158132c2010-06-16 09:28:26 +03001006 return 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001007
1008 case UBI_COMPAT_RO:
1009 ubi_msg("read-only compatible internal volume %d:%d"
1010 " found, switch to read-only mode",
1011 vol_id, lnum);
1012 ubi->ro_mode = 1;
1013 break;
1014
1015 case UBI_COMPAT_PRESERVE:
1016 ubi_msg("\"preserve\" compatible internal volume %d:%d"
1017 " found", vol_id, lnum);
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001018 err = add_to_list(ai, pnum, vol_id, lnum,
1019 ec, 0, &ai->alien);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001020 if (err)
1021 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001022 return 0;
1023
1024 case UBI_COMPAT_REJECT:
1025 ubi_err("incompatible internal volume %d:%d found",
1026 vol_id, lnum);
1027 return -EINVAL;
1028 }
1029 }
1030
Artem Bityutskiye0e718c2010-09-03 14:53:23 +03001031 if (ec_err)
Artem Bityutskiy29a88c92009-07-19 14:03:16 +03001032 ubi_warn("valid VID header but corrupted EC header at PEB %d",
1033 pnum);
Artem Bityutskiy35611882012-05-17 15:31:31 +03001034 err = ubi_add_to_av(ubi, ai, pnum, ec, vidh, bitflips);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001035 if (err)
1036 return err;
1037
1038adjust_mean_ec:
Artem Bityutskiye0e718c2010-09-03 14:53:23 +03001039 if (!ec_err) {
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001040 ai->ec_sum += ec;
1041 ai->ec_count += 1;
1042 if (ec > ai->max_ec)
1043 ai->max_ec = ec;
1044 if (ec < ai->min_ec)
1045 ai->min_ec = ec;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001046 }
1047
1048 return 0;
1049}
1050
1051/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001052 * late_analysis - analyze the overall situation with PEB.
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001053 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001054 * @ai: attaching information
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001055 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001056 * This is a helper function which takes a look what PEBs we have after we
1057 * gather information about all of them ("ai" is compete). It decides whether
1058 * the flash is empty and should be formatted of whether there are too many
1059 * corrupted PEBs and we should not attach this MTD device. Returns zero if we
1060 * should proceed with attaching the MTD device, and %-EINVAL if we should not.
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001061 */
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001062static int late_analysis(struct ubi_device *ubi, struct ubi_attach_info *ai)
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001063{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001064 struct ubi_ainf_peb *aeb;
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001065 int max_corr, peb_count;
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001066
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001067 peb_count = ubi->peb_count - ai->bad_peb_count - ai->alien_peb_count;
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001068 max_corr = peb_count / 20 ?: 8;
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001069
1070 /*
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001071 * Few corrupted PEBs is not a problem and may be just a result of
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001072 * unclean reboots. However, many of them may indicate some problems
1073 * with the flash HW or driver.
1074 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001075 if (ai->corr_peb_count) {
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001076 ubi_err("%d PEBs are corrupted and preserved",
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001077 ai->corr_peb_count);
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001078 printk(KERN_ERR "Corrupted PEBs are:");
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001079 list_for_each_entry(aeb, &ai->corr, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001080 printk(KERN_CONT " %d", aeb->pnum);
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001081 printk(KERN_CONT "\n");
1082
1083 /*
1084 * If too many PEBs are corrupted, we refuse attaching,
1085 * otherwise, only print a warning.
1086 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001087 if (ai->corr_peb_count >= max_corr) {
Artem Bityutskiyfeddbb32011-03-28 10:12:25 +03001088 ubi_err("too many corrupted PEBs, refusing");
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001089 return -EINVAL;
1090 }
1091 }
1092
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001093 if (ai->empty_peb_count + ai->maybe_bad_peb_count == peb_count) {
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001094 /*
1095 * All PEBs are empty, or almost all - a couple PEBs look like
1096 * they may be bad PEBs which were not marked as bad yet.
1097 *
1098 * This piece of code basically tries to distinguish between
1099 * the following situations:
1100 *
1101 * 1. Flash is empty, but there are few bad PEBs, which are not
1102 * marked as bad so far, and which were read with error. We
1103 * want to go ahead and format this flash. While formatting,
1104 * the faulty PEBs will probably be marked as bad.
1105 *
1106 * 2. Flash contains non-UBI data and we do not want to format
1107 * it and destroy possibly important information.
1108 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001109 if (ai->maybe_bad_peb_count <= 2) {
1110 ai->is_empty = 1;
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001111 ubi_msg("empty MTD device detected");
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001112 get_random_bytes(&ubi->image_seq,
1113 sizeof(ubi->image_seq));
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001114 } else {
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001115 ubi_err("MTD device is not UBI-formatted and possibly "
1116 "contains non-UBI data - refusing it");
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001117 return -EINVAL;
1118 }
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001119
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001120 }
1121
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001122 return 0;
1123}
1124
1125/**
Artem Bityutskiy47e1ec72012-05-18 12:41:17 +03001126 * scan_all - scan entire MTD device.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001127 * @ubi: UBI device description object
1128 *
1129 * This function does full scanning of an MTD device and returns complete
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001130 * information about it in form of a "struct ubi_attach_info" object. In case
1131 * of failure, an error code is returned.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001132 */
Artem Bityutskiy47e1ec72012-05-18 12:41:17 +03001133static struct ubi_attach_info *scan_all(struct ubi_device *ubi)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001134{
1135 int err, pnum;
1136 struct rb_node *rb1, *rb2;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001137 struct ubi_ainf_volume *av;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001138 struct ubi_ainf_peb *aeb;
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001139 struct ubi_attach_info *ai;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001140
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001141 ai = kzalloc(sizeof(struct ubi_attach_info), GFP_KERNEL);
1142 if (!ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001143 return ERR_PTR(-ENOMEM);
1144
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001145 INIT_LIST_HEAD(&ai->corr);
1146 INIT_LIST_HEAD(&ai->free);
1147 INIT_LIST_HEAD(&ai->erase);
1148 INIT_LIST_HEAD(&ai->alien);
1149 ai->volumes = RB_ROOT;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001150
1151 err = -ENOMEM;
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001152 ai->aeb_slab_cache = kmem_cache_create("ubi_aeb_slab_cache",
1153 sizeof(struct ubi_ainf_peb),
1154 0, 0, NULL);
1155 if (!ai->aeb_slab_cache)
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001156 goto out_ai;
Artem Bityutskiy6c1e8752010-10-31 17:54:14 +02001157
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001158 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1159 if (!ech)
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001160 goto out_ai;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001161
Artem Bityutskiy33818bb2007-08-28 21:29:32 +03001162 vidh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001163 if (!vidh)
1164 goto out_ech;
1165
1166 for (pnum = 0; pnum < ubi->peb_count; pnum++) {
1167 cond_resched();
1168
Artem Bityutskiyc8566352008-07-16 17:40:22 +03001169 dbg_gen("process PEB %d", pnum);
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001170 err = scan_peb(ubi, ai, pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001171 if (err < 0)
1172 goto out_vidh;
1173 }
1174
1175 dbg_msg("scanning is finished");
1176
Artem Bityutskiy4bc1dca2008-04-19 20:44:31 +03001177 /* Calculate mean erase counter */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001178 if (ai->ec_count)
1179 ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001180
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001181 err = late_analysis(ubi, ai);
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001182 if (err)
1183 goto out_vidh;
Artem Bityutskiy4a406852009-07-19 14:33:14 +03001184
1185 /*
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001186 * In case of unknown erase counter we use the mean erase counter
1187 * value.
1188 */
Artem Bityutskiy517af482012-05-17 14:38:34 +03001189 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
1190 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +03001191 if (aeb->ec == UBI_UNKNOWN)
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001192 aeb->ec = ai->mean_ec;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001193 }
1194
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001195 list_for_each_entry(aeb, &ai->free, u.list) {
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +03001196 if (aeb->ec == UBI_UNKNOWN)
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001197 aeb->ec = ai->mean_ec;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001198 }
1199
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001200 list_for_each_entry(aeb, &ai->corr, u.list)
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +03001201 if (aeb->ec == UBI_UNKNOWN)
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001202 aeb->ec = ai->mean_ec;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001203
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001204 list_for_each_entry(aeb, &ai->erase, u.list)
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +03001205 if (aeb->ec == UBI_UNKNOWN)
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001206 aeb->ec = ai->mean_ec;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001207
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001208 err = self_check_ai(ubi, ai);
Artem Bityutskiyadbf05e2010-01-20 10:28:58 +02001209 if (err)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001210 goto out_vidh;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001211
1212 ubi_free_vid_hdr(ubi, vidh);
1213 kfree(ech);
1214
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001215 return ai;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001216
1217out_vidh:
1218 ubi_free_vid_hdr(ubi, vidh);
1219out_ech:
1220 kfree(ech);
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001221out_ai:
Artem Bityutskiy66a2af32012-05-17 15:41:12 +03001222 ubi_destroy_ai(ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001223 return ERR_PTR(err);
1224}
1225
1226/**
Artem Bityutskiy47e1ec72012-05-18 12:41:17 +03001227 * ubi_attach - attach an MTD device.
1228 * @ubi: UBI device descriptor
1229 *
1230 * This function returns zero in case of success and a negative error code in
1231 * case of failure.
1232 */
1233int ubi_attach(struct ubi_device *ubi)
1234{
1235 int err;
1236 struct ubi_attach_info *ai;
1237
1238 ai = scan_all(ubi);
1239 if (IS_ERR(ai))
1240 return PTR_ERR(ai);
1241
1242 ubi->bad_peb_count = ai->bad_peb_count;
1243 ubi->good_peb_count = ubi->peb_count - ubi->bad_peb_count;
1244 ubi->corr_peb_count = ai->corr_peb_count;
1245 ubi->max_ec = ai->max_ec;
1246 ubi->mean_ec = ai->mean_ec;
1247 ubi_msg("max. sequence number: %llu", ai->max_sqnum);
1248
1249 err = ubi_read_volume_table(ubi, ai);
1250 if (err)
1251 goto out_ai;
1252
1253 err = ubi_wl_init(ubi, ai);
1254 if (err)
1255 goto out_vtbl;
1256
1257 err = ubi_eba_init(ubi, ai);
1258 if (err)
1259 goto out_wl;
1260
1261 ubi_destroy_ai(ai);
1262 return 0;
1263
1264out_wl:
1265 ubi_wl_close(ubi);
1266out_vtbl:
1267 ubi_free_internal_volumes(ubi);
1268 vfree(ubi->vtbl);
1269out_ai:
1270 ubi_destroy_ai(ai);
1271 return err;
1272}
1273
1274/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001275 * destroy_av - free volume attaching information.
1276 * @av: volume attaching information
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001277 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001278 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001279 * This function destroys the volume attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001280 */
Artem Bityutskiy517af482012-05-17 14:38:34 +03001281static void destroy_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001282{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001283 struct ubi_ainf_peb *aeb;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001284 struct rb_node *this = av->root.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001285
1286 while (this) {
1287 if (this->rb_left)
1288 this = this->rb_left;
1289 else if (this->rb_right)
1290 this = this->rb_right;
1291 else {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001292 aeb = rb_entry(this, struct ubi_ainf_peb, u.rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001293 this = rb_parent(this);
1294 if (this) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001295 if (this->rb_left == &aeb->u.rb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001296 this->rb_left = NULL;
1297 else
1298 this->rb_right = NULL;
1299 }
1300
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001301 kmem_cache_free(ai->aeb_slab_cache, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001302 }
1303 }
Artem Bityutskiy517af482012-05-17 14:38:34 +03001304 kfree(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001305}
1306
1307/**
Artem Bityutskiy66a2af32012-05-17 15:41:12 +03001308 * ubi_destroy_ai - destroy attaching information.
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001309 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001310 */
Artem Bityutskiy66a2af32012-05-17 15:41:12 +03001311void ubi_destroy_ai(struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001312{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001313 struct ubi_ainf_peb *aeb, *aeb_tmp;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001314 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001315 struct rb_node *rb;
1316
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001317 list_for_each_entry_safe(aeb, aeb_tmp, &ai->alien, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001318 list_del(&aeb->u.list);
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001319 kmem_cache_free(ai->aeb_slab_cache, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001320 }
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001321 list_for_each_entry_safe(aeb, aeb_tmp, &ai->erase, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001322 list_del(&aeb->u.list);
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001323 kmem_cache_free(ai->aeb_slab_cache, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001324 }
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001325 list_for_each_entry_safe(aeb, aeb_tmp, &ai->corr, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001326 list_del(&aeb->u.list);
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001327 kmem_cache_free(ai->aeb_slab_cache, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001328 }
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001329 list_for_each_entry_safe(aeb, aeb_tmp, &ai->free, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001330 list_del(&aeb->u.list);
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001331 kmem_cache_free(ai->aeb_slab_cache, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001332 }
1333
1334 /* Destroy the volume RB-tree */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001335 rb = ai->volumes.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001336 while (rb) {
1337 if (rb->rb_left)
1338 rb = rb->rb_left;
1339 else if (rb->rb_right)
1340 rb = rb->rb_right;
1341 else {
Artem Bityutskiy517af482012-05-17 14:38:34 +03001342 av = rb_entry(rb, struct ubi_ainf_volume, rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001343
1344 rb = rb_parent(rb);
1345 if (rb) {
Artem Bityutskiy517af482012-05-17 14:38:34 +03001346 if (rb->rb_left == &av->rb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001347 rb->rb_left = NULL;
1348 else
1349 rb->rb_right = NULL;
1350 }
1351
Artem Bityutskiy517af482012-05-17 14:38:34 +03001352 destroy_av(ai, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001353 }
1354 }
1355
Artem Bityutskiy1fc2e3e2012-05-17 15:56:03 +03001356 if (ai->aeb_slab_cache)
1357 kmem_cache_destroy(ai->aeb_slab_cache);
Richard Weinbergera29852b2012-01-30 18:20:13 +01001358
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001359 kfree(ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001360}
1361
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001362/**
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001363 * self_check_ai - check the attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001364 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001365 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001366 *
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001367 * This function returns zero if the attaching information is all right, and a
Artem Bityutskiyadbf05e2010-01-20 10:28:58 +02001368 * negative error code if not or if an error occurred.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001369 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001370static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001371{
1372 int pnum, err, vols_found = 0;
1373 struct rb_node *rb1, *rb2;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001374 struct ubi_ainf_volume *av;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001375 struct ubi_ainf_peb *aeb, *last_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001376 uint8_t *buf;
1377
Artem Bityutskiy2a734bb2011-05-18 14:53:05 +03001378 if (!ubi->dbg->chk_gen)
Artem Bityutskiy92d124f2011-03-14 18:17:40 +02001379 return 0;
1380
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001381 /*
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001382 * At first, check that attaching information is OK.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001383 */
Artem Bityutskiy517af482012-05-17 14:38:34 +03001384 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001385 int leb_count = 0;
1386
1387 cond_resched();
1388
1389 vols_found += 1;
1390
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001391 if (ai->is_empty) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001392 ubi_err("bad is_empty flag");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001393 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001394 }
1395
Artem Bityutskiy517af482012-05-17 14:38:34 +03001396 if (av->vol_id < 0 || av->highest_lnum < 0 ||
1397 av->leb_count < 0 || av->vol_type < 0 || av->used_ebs < 0 ||
1398 av->data_pad < 0 || av->last_data_size < 0) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001399 ubi_err("negative values");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001400 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001401 }
1402
Artem Bityutskiy517af482012-05-17 14:38:34 +03001403 if (av->vol_id >= UBI_MAX_VOLUMES &&
1404 av->vol_id < UBI_INTERNAL_VOL_START) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001405 ubi_err("bad vol_id");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001406 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001407 }
1408
Artem Bityutskiy517af482012-05-17 14:38:34 +03001409 if (av->vol_id > ai->highest_vol_id) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001410 ubi_err("highest_vol_id is %d, but vol_id %d is there",
Artem Bityutskiy517af482012-05-17 14:38:34 +03001411 ai->highest_vol_id, av->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001412 goto out;
1413 }
1414
Artem Bityutskiy517af482012-05-17 14:38:34 +03001415 if (av->vol_type != UBI_DYNAMIC_VOLUME &&
1416 av->vol_type != UBI_STATIC_VOLUME) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001417 ubi_err("bad vol_type");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001418 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001419 }
1420
Artem Bityutskiy517af482012-05-17 14:38:34 +03001421 if (av->data_pad > ubi->leb_size / 2) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001422 ubi_err("bad data_pad");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001423 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001424 }
1425
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001426 last_aeb = NULL;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001427 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001428 cond_resched();
1429
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001430 last_aeb = aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001431 leb_count += 1;
1432
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001433 if (aeb->pnum < 0 || aeb->ec < 0) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001434 ubi_err("negative values");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001435 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001436 }
1437
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001438 if (aeb->ec < ai->min_ec) {
1439 ubi_err("bad ai->min_ec (%d), %d found",
1440 ai->min_ec, aeb->ec);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001441 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001442 }
1443
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001444 if (aeb->ec > ai->max_ec) {
1445 ubi_err("bad ai->max_ec (%d), %d found",
1446 ai->max_ec, aeb->ec);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001447 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001448 }
1449
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001450 if (aeb->pnum >= ubi->peb_count) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001451 ubi_err("too high PEB number %d, total PEBs %d",
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001452 aeb->pnum, ubi->peb_count);
1453 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001454 }
1455
Artem Bityutskiy517af482012-05-17 14:38:34 +03001456 if (av->vol_type == UBI_STATIC_VOLUME) {
1457 if (aeb->lnum >= av->used_ebs) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001458 ubi_err("bad lnum or used_ebs");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001459 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001460 }
1461 } else {
Artem Bityutskiy517af482012-05-17 14:38:34 +03001462 if (av->used_ebs != 0) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001463 ubi_err("non-zero used_ebs");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001464 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001465 }
1466 }
1467
Artem Bityutskiy517af482012-05-17 14:38:34 +03001468 if (aeb->lnum > av->highest_lnum) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001469 ubi_err("incorrect highest_lnum or lnum");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001470 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001471 }
1472 }
1473
Artem Bityutskiy517af482012-05-17 14:38:34 +03001474 if (av->leb_count != leb_count) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001475 ubi_err("bad leb_count, %d objects in the tree",
1476 leb_count);
Artem Bityutskiy517af482012-05-17 14:38:34 +03001477 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001478 }
1479
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001480 if (!last_aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001481 continue;
1482
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001483 aeb = last_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001484
Artem Bityutskiy517af482012-05-17 14:38:34 +03001485 if (aeb->lnum != av->highest_lnum) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001486 ubi_err("bad highest_lnum");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001487 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001488 }
1489 }
1490
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001491 if (vols_found != ai->vols_found) {
1492 ubi_err("bad ai->vols_found %d, should be %d",
1493 ai->vols_found, vols_found);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001494 goto out;
1495 }
1496
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001497 /* Check that attaching information is correct */
Artem Bityutskiy517af482012-05-17 14:38:34 +03001498 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001499 last_aeb = NULL;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001500 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001501 int vol_type;
1502
1503 cond_resched();
1504
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001505 last_aeb = aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001506
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001507 err = ubi_io_read_vid_hdr(ubi, aeb->pnum, vidh, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001508 if (err && err != UBI_IO_BITFLIPS) {
1509 ubi_err("VID header is not OK (%d)", err);
1510 if (err > 0)
1511 err = -EIO;
1512 return err;
1513 }
1514
1515 vol_type = vidh->vol_type == UBI_VID_DYNAMIC ?
1516 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001517 if (av->vol_type != vol_type) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001518 ubi_err("bad vol_type");
1519 goto bad_vid_hdr;
1520 }
1521
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001522 if (aeb->sqnum != be64_to_cpu(vidh->sqnum)) {
1523 ubi_err("bad sqnum %llu", aeb->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001524 goto bad_vid_hdr;
1525 }
1526
Artem Bityutskiy517af482012-05-17 14:38:34 +03001527 if (av->vol_id != be32_to_cpu(vidh->vol_id)) {
1528 ubi_err("bad vol_id %d", av->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001529 goto bad_vid_hdr;
1530 }
1531
Artem Bityutskiy517af482012-05-17 14:38:34 +03001532 if (av->compat != vidh->compat) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001533 ubi_err("bad compat %d", vidh->compat);
1534 goto bad_vid_hdr;
1535 }
1536
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001537 if (aeb->lnum != be32_to_cpu(vidh->lnum)) {
1538 ubi_err("bad lnum %d", aeb->lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001539 goto bad_vid_hdr;
1540 }
1541
Artem Bityutskiy517af482012-05-17 14:38:34 +03001542 if (av->used_ebs != be32_to_cpu(vidh->used_ebs)) {
1543 ubi_err("bad used_ebs %d", av->used_ebs);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001544 goto bad_vid_hdr;
1545 }
1546
Artem Bityutskiy517af482012-05-17 14:38:34 +03001547 if (av->data_pad != be32_to_cpu(vidh->data_pad)) {
1548 ubi_err("bad data_pad %d", av->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001549 goto bad_vid_hdr;
1550 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001551 }
1552
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001553 if (!last_aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001554 continue;
1555
Artem Bityutskiy517af482012-05-17 14:38:34 +03001556 if (av->highest_lnum != be32_to_cpu(vidh->lnum)) {
1557 ubi_err("bad highest_lnum %d", av->highest_lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001558 goto bad_vid_hdr;
1559 }
1560
Artem Bityutskiy517af482012-05-17 14:38:34 +03001561 if (av->last_data_size != be32_to_cpu(vidh->data_size)) {
1562 ubi_err("bad last_data_size %d", av->last_data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001563 goto bad_vid_hdr;
1564 }
1565 }
1566
1567 /*
1568 * Make sure that all the physical eraseblocks are in one of the lists
1569 * or trees.
1570 */
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001571 buf = kzalloc(ubi->peb_count, GFP_KERNEL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001572 if (!buf)
1573 return -ENOMEM;
1574
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001575 for (pnum = 0; pnum < ubi->peb_count; pnum++) {
1576 err = ubi_io_is_bad(ubi, pnum);
Artem Bityutskiy341e1a02007-05-03 11:59:51 +03001577 if (err < 0) {
1578 kfree(buf);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001579 return err;
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +03001580 } else if (err)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001581 buf[pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001582 }
1583
Artem Bityutskiy517af482012-05-17 14:38:34 +03001584 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb)
1585 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001586 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001587
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001588 list_for_each_entry(aeb, &ai->free, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001589 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001590
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001591 list_for_each_entry(aeb, &ai->corr, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001592 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001593
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001594 list_for_each_entry(aeb, &ai->erase, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001595 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001596
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001597 list_for_each_entry(aeb, &ai->alien, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001598 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001599
1600 err = 0;
1601 for (pnum = 0; pnum < ubi->peb_count; pnum++)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001602 if (!buf[pnum]) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001603 ubi_err("PEB %d is not referred", pnum);
1604 err = 1;
1605 }
1606
1607 kfree(buf);
1608 if (err)
1609 goto out;
1610 return 0;
1611
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001612bad_aeb:
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001613 ubi_err("bad attaching information about LEB %d", aeb->lnum);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001614 ubi_dump_aeb(aeb, 0);
Artem Bityutskiy517af482012-05-17 14:38:34 +03001615 ubi_dump_av(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001616 goto out;
1617
Artem Bityutskiy517af482012-05-17 14:38:34 +03001618bad_av:
1619 ubi_err("bad attaching information about volume %d", av->vol_id);
1620 ubi_dump_av(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001621 goto out;
1622
1623bad_vid_hdr:
Artem Bityutskiy517af482012-05-17 14:38:34 +03001624 ubi_err("bad attaching information about volume %d", av->vol_id);
1625 ubi_dump_av(av);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +03001626 ubi_dump_vid_hdr(vidh);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001627
1628out:
Artem Bityutskiy25886a32012-04-24 06:59:49 +03001629 dump_stack();
Artem Bityutskiyadbf05e2010-01-20 10:28:58 +02001630 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001631}