blob: ab0120c0bee2dbe74319f83cbe963219aee76e8e [file] [log] [blame]
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001/*
2 * Copyright (c) International Business Machines Corp., 2006
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Artem Bityutskiy (Битюцкий Артём)
19 */
20
21/*
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030022 * UBI attaching sub-system.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040023 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030024 * This sub-system is responsible for attaching MTD devices and it also
25 * implements flash media scanning.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040026 *
Artem Bityutskiya4e60422012-05-17 13:09:08 +030027 * The attaching information is represented by a &struct ubi_attach_info'
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030028 * object. Information about volumes is represented by &struct ubi_ainf_volume
29 * objects which are kept in volume RB-tree with root at the @volumes field.
30 * The RB-tree is indexed by the volume ID.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040031 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030032 * Logical eraseblocks are represented by &struct ubi_ainf_peb objects. These
33 * objects are kept in per-volume RB-trees with the root at the corresponding
34 * &struct ubi_ainf_volume object. To put it differently, we keep an RB-tree of
35 * per-volume objects and each of these objects is the root of RB-tree of
36 * per-LEB objects.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040037 *
38 * Corrupted physical eraseblocks are put to the @corr list, free physical
39 * eraseblocks are put to the @free list and the physical eraseblock to be
40 * erased are put to the @erase list.
Artem Bityutskiy0525dac2010-09-03 17:11:37 +030041 *
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030042 * About corruptions
43 * ~~~~~~~~~~~~~~~~~
44 *
45 * UBI protects EC and VID headers with CRC-32 checksums, so it can detect
46 * whether the headers are corrupted or not. Sometimes UBI also protects the
47 * data with CRC-32, e.g., when it executes the atomic LEB change operation, or
48 * when it moves the contents of a PEB for wear-leveling purposes.
49 *
Artem Bityutskiy0525dac2010-09-03 17:11:37 +030050 * UBI tries to distinguish between 2 types of corruptions.
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030051 *
52 * 1. Corruptions caused by power cuts. These are expected corruptions and UBI
53 * tries to handle them gracefully, without printing too many warnings and
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030054 * error messages. The idea is that we do not lose important data in these
55 * cases - we may lose only the data which were being written to the media just
56 * before the power cut happened, and the upper layers (e.g., UBIFS) are
57 * supposed to handle such data losses (e.g., by using the FS journal).
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030058 *
59 * When UBI detects a corruption (CRC-32 mismatch) in a PEB, and it looks like
60 * the reason is a power cut, UBI puts this PEB to the @erase list, and all
61 * PEBs in the @erase list are scheduled for erasure later.
Artem Bityutskiy0525dac2010-09-03 17:11:37 +030062 *
63 * 2. Unexpected corruptions which are not caused by power cuts. During
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030064 * attaching, such PEBs are put to the @corr list and UBI preserves them.
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030065 * Obviously, this lessens the amount of available PEBs, and if at some point
66 * UBI runs out of free PEBs, it switches to R/O mode. UBI also loudly informs
67 * about such PEBs every time the MTD device is attached.
Artem Bityutskiy45aafd32010-10-20 11:54:58 +030068 *
69 * However, it is difficult to reliably distinguish between these types of
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030070 * corruptions and UBI's strategy is as follows (in case of attaching by
71 * scanning). UBI assumes corruption type 2 if the VID header is corrupted and
72 * the data area does not contain all 0xFFs, and there were no bit-flips or
73 * integrity errors (e.g., ECC errors in case of NAND) while reading the data
74 * area. Otherwise UBI assumes corruption type 1. So the decision criteria
75 * are as follows.
76 * o If the data area contains only 0xFFs, there are no data, and it is safe
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030077 * to just erase this PEB - this is corruption type 1.
78 * o If the data area has bit-flips or data integrity errors (ECC errors on
Artem Bityutskiy45aafd32010-10-20 11:54:58 +030079 * NAND), it is probably a PEB which was being erased when power cut
Artem Bityutskiyfef2deb2010-10-29 08:34:50 +030080 * happened, so this is corruption type 1. However, this is just a guess,
81 * which might be wrong.
Brian Norris55393ba2012-08-31 14:43:41 -070082 * o Otherwise this is corruption type 2.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040083 */
84
85#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090086#include <linux/slab.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040087#include <linux/crc32.h>
Artem Bityutskiy3013ee32009-01-16 19:08:43 +020088#include <linux/math64.h>
Matthieu CASTET095751a2010-06-03 16:14:27 +020089#include <linux/random.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040090#include "ubi.h"
91
Artem Bityutskiya4e60422012-05-17 13:09:08 +030092static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040093
Boris Brezillonde4c4552016-09-16 16:59:14 +020094#define AV_FIND BIT(0)
95#define AV_ADD BIT(1)
96#define AV_FIND_OR_ADD (AV_FIND | AV_ADD)
97
98/**
99 * find_or_add_av - internal function to find a volume, add a volume or do
100 * both (find and add if missing).
101 * @ai: attaching information
102 * @vol_id: the requested volume ID
103 * @flags: a combination of the %AV_FIND and %AV_ADD flags describing the
104 * expected operation. If only %AV_ADD is set, -EEXIST is returned
105 * if the volume already exists. If only %AV_FIND is set, NULL is
106 * returned if the volume does not exist. And if both flags are
107 * set, the helper first tries to find an existing volume, and if
108 * it does not exist it creates a new one.
109 * @created: in value used to inform the caller whether it"s a newly created
110 * volume or not.
111 *
112 * This function returns a pointer to a volume description or an ERR_PTR if
113 * the operation failed. It can also return NULL if only %AV_FIND is set and
114 * the volume does not exist.
115 */
116static struct ubi_ainf_volume *find_or_add_av(struct ubi_attach_info *ai,
117 int vol_id, unsigned int flags,
118 bool *created)
119{
120 struct ubi_ainf_volume *av;
121 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
122
123 /* Walk the volume RB-tree to look if this volume is already present */
124 while (*p) {
125 parent = *p;
126 av = rb_entry(parent, struct ubi_ainf_volume, rb);
127
128 if (vol_id == av->vol_id) {
129 *created = false;
130
131 if (!(flags & AV_FIND))
132 return ERR_PTR(-EEXIST);
133
134 return av;
135 }
136
137 if (vol_id > av->vol_id)
138 p = &(*p)->rb_left;
139 else
140 p = &(*p)->rb_right;
141 }
142
143 if (!(flags & AV_ADD))
144 return NULL;
145
146 /* The volume is absent - add it */
147 av = kzalloc(sizeof(*av), GFP_KERNEL);
148 if (!av)
149 return ERR_PTR(-ENOMEM);
150
151 av->vol_id = vol_id;
152
153 if (vol_id > ai->highest_vol_id)
154 ai->highest_vol_id = vol_id;
155
156 rb_link_node(&av->rb, parent, p);
157 rb_insert_color(&av->rb, &ai->volumes);
158 ai->vols_found += 1;
159 *created = true;
160 dbg_bld("added volume %d", vol_id);
161 return av;
162}
163
164/**
165 * ubi_find_or_add_av - search for a volume in the attaching information and
166 * add one if it does not exist.
167 * @ai: attaching information
168 * @vol_id: the requested volume ID
169 * @created: whether the volume has been created or not
170 *
171 * This function returns a pointer to the new volume description or an
172 * ERR_PTR if the operation failed.
173 */
174static struct ubi_ainf_volume *ubi_find_or_add_av(struct ubi_attach_info *ai,
175 int vol_id, bool *created)
176{
177 return find_or_add_av(ai, vol_id, AV_FIND_OR_ADD, created);
178}
179
Artem Bityutskiy941dfb02007-05-05 16:33:13 +0300180/**
Boris Brezillon91f42852016-09-16 16:59:18 +0200181 * ubi_alloc_aeb - allocate an aeb element
182 * @ai: attaching information
183 * @pnum: physical eraseblock number
184 * @ec: erase counter of the physical eraseblock
185 *
186 * Allocate an aeb object and initialize the pnum and ec information.
187 * vol_id and lnum are set to UBI_UNKNOWN, and the other fields are
188 * initialized to zero.
189 * Note that the element is not added in any list or RB tree.
190 */
191struct ubi_ainf_peb *ubi_alloc_aeb(struct ubi_attach_info *ai, int pnum,
192 int ec)
193{
194 struct ubi_ainf_peb *aeb;
195
196 aeb = kmem_cache_zalloc(ai->aeb_slab_cache, GFP_KERNEL);
197 if (!aeb)
198 return NULL;
199
200 aeb->pnum = pnum;
201 aeb->ec = ec;
202 aeb->vol_id = UBI_UNKNOWN;
203 aeb->lnum = UBI_UNKNOWN;
204
205 return aeb;
206}
207
208/**
209 * ubi_free_aeb - free an aeb element
210 * @ai: attaching information
211 * @aeb: the element to free
212 *
213 * Free an aeb object. The caller must have removed the element from any list
214 * or RB tree.
215 */
216void ubi_free_aeb(struct ubi_attach_info *ai, struct ubi_ainf_peb *aeb)
217{
218 kmem_cache_free(ai->aeb_slab_cache, aeb);
219}
220
221/**
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300222 * add_to_list - add physical eraseblock to a list.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300223 * @ai: attaching information
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300224 * @pnum: physical eraseblock number to add
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200225 * @vol_id: the last used volume id for the PEB
226 * @lnum: the last used LEB number for the PEB
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300227 * @ec: erase counter of the physical eraseblock
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300228 * @to_head: if not zero, add to the head of the list
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300229 * @list: the list to add to
230 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300231 * This function allocates a 'struct ubi_ainf_peb' object for physical
232 * eraseblock @pnum and adds it to the "free", "erase", or "alien" lists.
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200233 * It stores the @lnum and @vol_id alongside, which can both be
234 * %UBI_UNKNOWN if they are not available, not readable, or not assigned.
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300235 * If @to_head is not zero, PEB will be added to the head of the list, which
236 * basically means it will be processed first later. E.g., we add corrupted
237 * PEBs (corrupted due to power cuts) to the head of the erase list to make
238 * sure we erase them first and get rid of corruptions ASAP. This function
239 * returns zero in case of success and a negative error code in case of
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300240 * failure.
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300241 */
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200242static int add_to_list(struct ubi_attach_info *ai, int pnum, int vol_id,
243 int lnum, int ec, int to_head, struct list_head *list)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400244{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300245 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400246
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300247 if (list == &ai->free) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400248 dbg_bld("add to free: PEB %d, EC %d", pnum, ec);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300249 } else if (list == &ai->erase) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400250 dbg_bld("add to erase: PEB %d, EC %d", pnum, ec);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300251 } else if (list == &ai->alien) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400252 dbg_bld("add to alien: PEB %d, EC %d", pnum, ec);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300253 ai->alien_peb_count += 1;
Artem Bityutskiy33789fb2010-04-30 12:31:26 +0300254 } else
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400255 BUG();
256
Boris Brezillon91f42852016-09-16 16:59:18 +0200257 aeb = ubi_alloc_aeb(ai, pnum, ec);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300258 if (!aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400259 return -ENOMEM;
260
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200261 aeb->vol_id = vol_id;
262 aeb->lnum = lnum;
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300263 if (to_head)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300264 list_add(&aeb->u.list, list);
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300265 else
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300266 list_add_tail(&aeb->u.list, list);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400267 return 0;
268}
269
270/**
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300271 * add_corrupted - add a corrupted physical eraseblock.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300272 * @ai: attaching information
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300273 * @pnum: physical eraseblock number to add
274 * @ec: erase counter of the physical eraseblock
275 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300276 * This function allocates a 'struct ubi_ainf_peb' object for a corrupted
277 * physical eraseblock @pnum and adds it to the 'corr' list. The corruption
278 * was presumably not caused by a power cut. Returns zero in case of success
279 * and a negative error code in case of failure.
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300280 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300281static int add_corrupted(struct ubi_attach_info *ai, int pnum, int ec)
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300282{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300283 struct ubi_ainf_peb *aeb;
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300284
285 dbg_bld("add to corrupted: PEB %d, EC %d", pnum, ec);
286
Boris Brezillon91f42852016-09-16 16:59:18 +0200287 aeb = ubi_alloc_aeb(ai, pnum, ec);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300288 if (!aeb)
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300289 return -ENOMEM;
290
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300291 ai->corr_peb_count += 1;
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300292 list_add(&aeb->u.list, &ai->corr);
Artem Bityutskiy3fb34122010-09-03 15:36:12 +0300293 return 0;
294}
295
296/**
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +0200297 * add_fastmap - add a Fastmap related physical eraseblock.
298 * @ai: attaching information
299 * @pnum: physical eraseblock number the VID header came from
300 * @vid_hdr: the volume identifier header
301 * @ec: erase counter of the physical eraseblock
302 *
303 * This function allocates a 'struct ubi_ainf_peb' object for a Fastamp
304 * physical eraseblock @pnum and adds it to the 'fastmap' list.
305 * Such blocks can be Fastmap super and data blocks from both the most
306 * recent Fastmap we're attaching from or from old Fastmaps which will
307 * be erased.
308 */
309static int add_fastmap(struct ubi_attach_info *ai, int pnum,
310 struct ubi_vid_hdr *vid_hdr, int ec)
311{
312 struct ubi_ainf_peb *aeb;
313
Boris Brezillon91f42852016-09-16 16:59:18 +0200314 aeb = ubi_alloc_aeb(ai, pnum, ec);
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +0200315 if (!aeb)
316 return -ENOMEM;
317
Boris Brezillon3f84e452016-09-16 16:59:10 +0200318 aeb->vol_id = be32_to_cpu(vid_hdr->vol_id);
319 aeb->sqnum = be64_to_cpu(vid_hdr->sqnum);
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +0200320 list_add(&aeb->u.list, &ai->fastmap);
321
322 dbg_bld("add to fastmap list: PEB %d, vol_id %d, sqnum: %llu", pnum,
323 aeb->vol_id, aeb->sqnum);
324
325 return 0;
326}
327
328/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300329 * validate_vid_hdr - check volume identifier header.
Tanya Brokhman326087032014-10-20 19:57:00 +0300330 * @ubi: UBI device description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400331 * @vid_hdr: the volume identifier header to check
Artem Bityutskiy517af482012-05-17 14:38:34 +0300332 * @av: information about the volume this logical eraseblock belongs to
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400333 * @pnum: physical eraseblock number the VID header came from
334 *
335 * This function checks that data stored in @vid_hdr is consistent. Returns
336 * non-zero if an inconsistency was found and zero if not.
337 *
338 * Note, UBI does sanity check of everything it reads from the flash media.
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300339 * 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 +0400340 * information in the VID header is consistent to the information in other VID
341 * headers of the same volume.
342 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300343static int validate_vid_hdr(const struct ubi_device *ubi,
344 const struct ubi_vid_hdr *vid_hdr,
Artem Bityutskiy517af482012-05-17 14:38:34 +0300345 const struct ubi_ainf_volume *av, int pnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400346{
347 int vol_type = vid_hdr->vol_type;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300348 int vol_id = be32_to_cpu(vid_hdr->vol_id);
349 int used_ebs = be32_to_cpu(vid_hdr->used_ebs);
350 int data_pad = be32_to_cpu(vid_hdr->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400351
Artem Bityutskiy517af482012-05-17 14:38:34 +0300352 if (av->leb_count != 0) {
353 int av_vol_type;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400354
355 /*
356 * This is not the first logical eraseblock belonging to this
357 * volume. Ensure that the data in its VID header is consistent
358 * to the data in previous logical eraseblock headers.
359 */
360
Artem Bityutskiy517af482012-05-17 14:38:34 +0300361 if (vol_id != av->vol_id) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300362 ubi_err(ubi, "inconsistent vol_id");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400363 goto bad;
364 }
365
Artem Bityutskiy517af482012-05-17 14:38:34 +0300366 if (av->vol_type == UBI_STATIC_VOLUME)
367 av_vol_type = UBI_VID_STATIC;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400368 else
Artem Bityutskiy517af482012-05-17 14:38:34 +0300369 av_vol_type = UBI_VID_DYNAMIC;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400370
Artem Bityutskiy517af482012-05-17 14:38:34 +0300371 if (vol_type != av_vol_type) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300372 ubi_err(ubi, "inconsistent vol_type");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400373 goto bad;
374 }
375
Artem Bityutskiy517af482012-05-17 14:38:34 +0300376 if (used_ebs != av->used_ebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300377 ubi_err(ubi, "inconsistent used_ebs");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400378 goto bad;
379 }
380
Artem Bityutskiy517af482012-05-17 14:38:34 +0300381 if (data_pad != av->data_pad) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300382 ubi_err(ubi, "inconsistent data_pad");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400383 goto bad;
384 }
385 }
386
387 return 0;
388
389bad:
Tanya Brokhman326087032014-10-20 19:57:00 +0300390 ubi_err(ubi, "inconsistent VID header at PEB %d", pnum);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300391 ubi_dump_vid_hdr(vid_hdr);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300392 ubi_dump_av(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400393 return -EINVAL;
394}
395
396/**
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300397 * add_volume - add volume to the attaching information.
398 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400399 * @vol_id: ID of the volume to add
400 * @pnum: physical eraseblock number
401 * @vid_hdr: volume identifier header
402 *
403 * If the volume corresponding to the @vid_hdr logical eraseblock is already
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300404 * present in the attaching information, this function does nothing. Otherwise
405 * it adds corresponding volume to the attaching information. Returns a pointer
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300406 * to the allocated "av" object in case of success and a negative error code in
407 * case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400408 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300409static struct ubi_ainf_volume *add_volume(struct ubi_attach_info *ai,
Artem Bityutskiyafc15a82012-05-17 07:46:17 +0300410 int vol_id, int pnum,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400411 const struct ubi_vid_hdr *vid_hdr)
412{
Artem Bityutskiy517af482012-05-17 14:38:34 +0300413 struct ubi_ainf_volume *av;
Boris Brezillonde4c4552016-09-16 16:59:14 +0200414 bool created;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400415
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300416 ubi_assert(vol_id == be32_to_cpu(vid_hdr->vol_id));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400417
Boris Brezillonde4c4552016-09-16 16:59:14 +0200418 av = ubi_find_or_add_av(ai, vol_id, &created);
419 if (IS_ERR(av) || !created)
420 return av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400421
Artem Bityutskiy517af482012-05-17 14:38:34 +0300422 av->used_ebs = be32_to_cpu(vid_hdr->used_ebs);
423 av->data_pad = be32_to_cpu(vid_hdr->data_pad);
424 av->compat = vid_hdr->compat;
425 av->vol_type = vid_hdr->vol_type == UBI_VID_DYNAMIC ? UBI_DYNAMIC_VOLUME
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400426 : UBI_STATIC_VOLUME;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400427
Artem Bityutskiy517af482012-05-17 14:38:34 +0300428 return av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400429}
430
431/**
Richard Weinbergerdac6e202012-09-26 17:51:47 +0200432 * ubi_compare_lebs - find out which logical eraseblock is newer.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400433 * @ubi: UBI device description object
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300434 * @aeb: first logical eraseblock to compare
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400435 * @pnum: physical eraseblock number of the second logical eraseblock to
436 * compare
437 * @vid_hdr: volume identifier header of the second logical eraseblock
438 *
439 * This function compares 2 copies of a LEB and informs which one is newer. In
440 * case of success this function returns a positive value, in case of failure, a
441 * negative error code is returned. The success return codes use the following
442 * bits:
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300443 * o bit 0 is cleared: the first PEB (described by @aeb) is newer than the
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400444 * second PEB (described by @pnum and @vid_hdr);
445 * o bit 0 is set: the second PEB is newer;
446 * o bit 1 is cleared: no bit-flips were detected in the newer LEB;
447 * o bit 1 is set: bit-flips were detected in the newer LEB;
448 * o bit 2 is cleared: the older LEB is not corrupted;
449 * o bit 2 is set: the older LEB is corrupted.
450 */
Richard Weinbergerdac6e202012-09-26 17:51:47 +0200451int ubi_compare_lebs(struct ubi_device *ubi, const struct ubi_ainf_peb *aeb,
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300452 int pnum, const struct ubi_vid_hdr *vid_hdr)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400453{
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400454 int len, err, second_is_newer, bitflips = 0, corrupted = 0;
455 uint32_t data_crc, crc;
Boris Brezillon3291b522016-09-16 16:59:26 +0200456 struct ubi_vid_io_buf *vidb = NULL;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300457 unsigned long long sqnum2 = be64_to_cpu(vid_hdr->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400458
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300459 if (sqnum2 == aeb->sqnum) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400460 /*
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300461 * This must be a really ancient UBI image which has been
462 * created before sequence numbers support has been added. At
463 * that times we used 32-bit LEB versions stored in logical
464 * eraseblocks. That was before UBI got into mainline. We do not
Artem Bityutskiy0525dac2010-09-03 17:11:37 +0300465 * support these images anymore. Well, those images still work,
466 * but only if no unclean reboots happened.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400467 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300468 ubi_err(ubi, "unsupported on-flash UBI format");
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300469 return -EINVAL;
470 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400471
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300472 /* Obviously the LEB with lower sequence counter is older */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300473 second_is_newer = (sqnum2 > aeb->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400474
475 /*
476 * Now we know which copy is newer. If the copy flag of the PEB with
477 * newer version is not set, then we just return, otherwise we have to
478 * check data CRC. For the second PEB we already have the VID header,
479 * for the first one - we'll need to re-read it from flash.
480 *
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300481 * Note: this may be optimized so that we wouldn't read twice.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400482 */
483
484 if (second_is_newer) {
485 if (!vid_hdr->copy_flag) {
486 /* It is not a copy, so it is newer */
487 dbg_bld("second PEB %d is newer, copy_flag is unset",
488 pnum);
489 return 1;
490 }
491 } else {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300492 if (!aeb->copy_flag) {
Artem Bityutskiyfb22b592010-10-19 22:00:11 +0300493 /* It is not a copy, so it is newer */
494 dbg_bld("first PEB %d is newer, copy_flag is unset",
495 pnum);
496 return bitflips << 1;
497 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400498
Boris Brezillon3291b522016-09-16 16:59:26 +0200499 vidb = ubi_alloc_vid_buf(ubi, GFP_KERNEL);
500 if (!vidb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400501 return -ENOMEM;
502
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300503 pnum = aeb->pnum;
Boris Brezillon3291b522016-09-16 16:59:26 +0200504 err = ubi_io_read_vid_hdr(ubi, pnum, vidb, 0);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400505 if (err) {
506 if (err == UBI_IO_BITFLIPS)
507 bitflips = 1;
508 else {
Tanya Brokhman326087032014-10-20 19:57:00 +0300509 ubi_err(ubi, "VID of PEB %d header is bad, but it was OK earlier, err %d",
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300510 pnum, err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400511 if (err > 0)
512 err = -EIO;
513
514 goto out_free_vidh;
515 }
516 }
517
Boris Brezillon3291b522016-09-16 16:59:26 +0200518 vid_hdr = ubi_get_vid_hdr(vidb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400519 }
520
521 /* Read the data of the copy and check the CRC */
522
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300523 len = be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400524
Artem Bityutskiyd125a752012-10-26 16:11:26 +0300525 mutex_lock(&ubi->buf_mutex);
526 err = ubi_io_read_data(ubi, ubi->peb_buf, pnum, 0, len);
Brian Norrisd57f40542011-09-20 18:34:25 -0700527 if (err && err != UBI_IO_BITFLIPS && !mtd_is_eccerr(err))
Artem Bityutskiyd125a752012-10-26 16:11:26 +0300528 goto out_unlock;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400529
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300530 data_crc = be32_to_cpu(vid_hdr->data_crc);
Artem Bityutskiyd125a752012-10-26 16:11:26 +0300531 crc = crc32(UBI_CRC32_INIT, ubi->peb_buf, len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400532 if (crc != data_crc) {
533 dbg_bld("PEB %d CRC error: calculated %#08x, must be %#08x",
534 pnum, crc, data_crc);
535 corrupted = 1;
536 bitflips = 0;
537 second_is_newer = !second_is_newer;
538 } else {
539 dbg_bld("PEB %d CRC is OK", pnum);
Brian Norris8eef7d72015-02-28 02:23:25 -0800540 bitflips |= !!err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400541 }
Artem Bityutskiyd125a752012-10-26 16:11:26 +0300542 mutex_unlock(&ubi->buf_mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400543
Boris Brezillon3291b522016-09-16 16:59:26 +0200544 ubi_free_vid_buf(vidb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400545
546 if (second_is_newer)
547 dbg_bld("second PEB %d is newer, copy_flag is set", pnum);
548 else
549 dbg_bld("first PEB %d is newer, copy_flag is set", pnum);
550
551 return second_is_newer | (bitflips << 1) | (corrupted << 2);
552
Artem Bityutskiyd125a752012-10-26 16:11:26 +0300553out_unlock:
554 mutex_unlock(&ubi->buf_mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400555out_free_vidh:
Boris Brezillon3291b522016-09-16 16:59:26 +0200556 ubi_free_vid_buf(vidb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400557 return err;
558}
559
560/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300561 * ubi_add_to_av - add used physical eraseblock to the attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400562 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300563 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400564 * @pnum: the physical eraseblock number
565 * @ec: erase counter
566 * @vid_hdr: the volume identifier header
567 * @bitflips: if bit-flips were detected when this physical eraseblock was read
568 *
Artem Bityutskiy79b510c2007-05-05 17:36:17 +0300569 * This function adds information about a used physical eraseblock to the
570 * 'used' tree of the corresponding volume. The function is rather complex
571 * because it has to handle cases when this is not the first physical
572 * eraseblock belonging to the same logical eraseblock, and the newer one has
573 * to be picked, while the older one has to be dropped. This function returns
574 * zero in case of success and a negative error code in case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400575 */
Artem Bityutskiy35611882012-05-17 15:31:31 +0300576int ubi_add_to_av(struct ubi_device *ubi, struct ubi_attach_info *ai, int pnum,
577 int ec, const struct ubi_vid_hdr *vid_hdr, int bitflips)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400578{
579 int err, vol_id, lnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400580 unsigned long long sqnum;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300581 struct ubi_ainf_volume *av;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300582 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400583 struct rb_node **p, *parent = NULL;
584
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300585 vol_id = be32_to_cpu(vid_hdr->vol_id);
586 lnum = be32_to_cpu(vid_hdr->lnum);
587 sqnum = be64_to_cpu(vid_hdr->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400588
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300589 dbg_bld("PEB %d, LEB %d:%d, EC %d, sqnum %llu, bitflips %d",
590 pnum, vol_id, lnum, ec, sqnum, bitflips);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400591
Artem Bityutskiy517af482012-05-17 14:38:34 +0300592 av = add_volume(ai, vol_id, pnum, vid_hdr);
593 if (IS_ERR(av))
594 return PTR_ERR(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400595
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300596 if (ai->max_sqnum < sqnum)
597 ai->max_sqnum = sqnum;
Brijesh Singh76eafe42007-07-06 14:35:43 +0300598
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400599 /*
600 * Walk the RB-tree of logical eraseblocks of volume @vol_id to look
601 * if this is the first instance of this logical eraseblock or not.
602 */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300603 p = &av->root.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400604 while (*p) {
605 int cmp_res;
606
607 parent = *p;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300608 aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
609 if (lnum != aeb->lnum) {
610 if (lnum < aeb->lnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400611 p = &(*p)->rb_left;
612 else
613 p = &(*p)->rb_right;
614 continue;
615 }
616
617 /*
618 * There is already a physical eraseblock describing the same
619 * logical eraseblock present.
620 */
621
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300622 dbg_bld("this LEB already exists: PEB %d, sqnum %llu, EC %d",
623 aeb->pnum, aeb->sqnum, aeb->ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400624
625 /*
626 * Make sure that the logical eraseblocks have different
627 * sequence numbers. Otherwise the image is bad.
628 *
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300629 * However, if the sequence number is zero, we assume it must
630 * be an ancient UBI image from the era when UBI did not have
631 * sequence numbers. We still can attach these images, unless
632 * there is a need to distinguish between old and new
633 * eraseblocks, in which case we'll refuse the image in
Richard Weinbergerdac6e202012-09-26 17:51:47 +0200634 * 'ubi_compare_lebs()'. In other words, we attach old clean
Artem Bityutskiy9869cd82008-07-18 13:53:39 +0300635 * images, but refuse attaching old images with duplicated
636 * logical eraseblocks because there was an unclean reboot.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400637 */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300638 if (aeb->sqnum == sqnum && sqnum != 0) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300639 ubi_err(ubi, "two LEBs with same sequence number %llu",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400640 sqnum);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300641 ubi_dump_aeb(aeb, 0);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300642 ubi_dump_vid_hdr(vid_hdr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400643 return -EINVAL;
644 }
645
646 /*
647 * Now we have to drop the older one and preserve the newer
648 * one.
649 */
Richard Weinbergerdac6e202012-09-26 17:51:47 +0200650 cmp_res = ubi_compare_lebs(ubi, aeb, pnum, vid_hdr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400651 if (cmp_res < 0)
652 return cmp_res;
653
654 if (cmp_res & 1) {
655 /*
Shinya Kuribayashi3f502622010-05-06 19:21:47 +0900656 * This logical eraseblock is newer than the one
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400657 * found earlier.
658 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300659 err = validate_vid_hdr(ubi, vid_hdr, av, pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400660 if (err)
661 return err;
662
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200663 err = add_to_list(ai, aeb->pnum, aeb->vol_id,
664 aeb->lnum, aeb->ec, cmp_res & 4,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300665 &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400666 if (err)
667 return err;
668
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300669 aeb->ec = ec;
670 aeb->pnum = pnum;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200671 aeb->vol_id = vol_id;
672 aeb->lnum = lnum;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300673 aeb->scrub = ((cmp_res & 2) || bitflips);
674 aeb->copy_flag = vid_hdr->copy_flag;
675 aeb->sqnum = sqnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400676
Artem Bityutskiy517af482012-05-17 14:38:34 +0300677 if (av->highest_lnum == lnum)
678 av->last_data_size =
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300679 be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400680
681 return 0;
682 } else {
683 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200684 * This logical eraseblock is older than the one found
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400685 * previously.
686 */
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200687 return add_to_list(ai, pnum, vol_id, lnum, ec,
688 cmp_res & 4, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400689 }
690 }
691
692 /*
693 * We've met this logical eraseblock for the first time, add it to the
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300694 * attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400695 */
696
Tanya Brokhman326087032014-10-20 19:57:00 +0300697 err = validate_vid_hdr(ubi, vid_hdr, av, pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400698 if (err)
699 return err;
700
Boris Brezillon91f42852016-09-16 16:59:18 +0200701 aeb = ubi_alloc_aeb(ai, pnum, ec);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300702 if (!aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400703 return -ENOMEM;
704
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200705 aeb->vol_id = vol_id;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300706 aeb->lnum = lnum;
707 aeb->scrub = bitflips;
708 aeb->copy_flag = vid_hdr->copy_flag;
709 aeb->sqnum = sqnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400710
Artem Bityutskiy517af482012-05-17 14:38:34 +0300711 if (av->highest_lnum <= lnum) {
712 av->highest_lnum = lnum;
713 av->last_data_size = be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400714 }
715
Artem Bityutskiy517af482012-05-17 14:38:34 +0300716 av->leb_count += 1;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300717 rb_link_node(&aeb->u.rb, parent, p);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300718 rb_insert_color(&aeb->u.rb, &av->root);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400719 return 0;
720}
721
722/**
Boris Brezillonde4c4552016-09-16 16:59:14 +0200723 * ubi_add_av - add volume to the attaching information.
724 * @ai: attaching information
725 * @vol_id: the requested volume ID
726 *
727 * This function returns a pointer to the new volume description or an
728 * ERR_PTR if the operation failed.
729 */
730struct ubi_ainf_volume *ubi_add_av(struct ubi_attach_info *ai, int vol_id)
731{
732 bool created;
733
734 return find_or_add_av(ai, vol_id, AV_ADD, &created);
735}
736
737/**
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300738 * ubi_find_av - find volume in the attaching information.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300739 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400740 * @vol_id: the requested volume ID
741 *
742 * This function returns a pointer to the volume description or %NULL if there
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300743 * are no data about this volume in the attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400744 */
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300745struct ubi_ainf_volume *ubi_find_av(const struct ubi_attach_info *ai,
746 int vol_id)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400747{
Boris Brezillonde4c4552016-09-16 16:59:14 +0200748 bool created;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400749
Boris Brezillonde4c4552016-09-16 16:59:14 +0200750 return find_or_add_av((struct ubi_attach_info *)ai, vol_id, AV_FIND,
751 &created);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400752}
753
Boris Brezillonf9efe8d2016-09-16 16:59:15 +0200754static void destroy_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av,
755 struct list_head *list);
756
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400757/**
Artem Bityutskiyd717dc22012-05-17 15:36:39 +0300758 * ubi_remove_av - delete attaching information about a volume.
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300759 * @ai: attaching information
Artem Bityutskiy517af482012-05-17 14:38:34 +0300760 * @av: the volume attaching information to delete
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400761 */
Artem Bityutskiyd717dc22012-05-17 15:36:39 +0300762void ubi_remove_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400763{
Artem Bityutskiy517af482012-05-17 14:38:34 +0300764 dbg_bld("remove attaching information about volume %d", av->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400765
Artem Bityutskiy517af482012-05-17 14:38:34 +0300766 rb_erase(&av->rb, &ai->volumes);
Boris Brezillonf9efe8d2016-09-16 16:59:15 +0200767 destroy_av(ai, av, &ai->erase);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300768 ai->vols_found -= 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400769}
770
771/**
Artem Bityutskiy13d33da2012-05-17 15:20:28 +0300772 * early_erase_peb - erase a physical eraseblock.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400773 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300774 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400775 * @pnum: physical eraseblock number to erase;
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +0300776 * @ec: erase counter value to write (%UBI_UNKNOWN if it is unknown)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400777 *
778 * This function erases physical eraseblock 'pnum', and writes the erase
779 * counter header to it. This function should only be used on UBI device
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300780 * initialization stages, when the EBA sub-system had not been yet initialized.
781 * This function returns zero in case of success and a negative error code in
782 * case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400783 */
Artem Bityutskiy13d33da2012-05-17 15:20:28 +0300784static int early_erase_peb(struct ubi_device *ubi,
785 const struct ubi_attach_info *ai, int pnum, int ec)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400786{
787 int err;
788 struct ubi_ec_hdr *ec_hdr;
789
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400790 if ((long long)ec >= UBI_MAX_ERASECOUNTER) {
791 /*
792 * Erase counter overflow. Upgrade UBI and use 64-bit
793 * erase counters internally.
794 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300795 ubi_err(ubi, "erase counter overflow at PEB %d, EC %d",
796 pnum, ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400797 return -EINVAL;
798 }
799
Florin Malitadcec4c32007-07-19 15:22:41 -0400800 ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
801 if (!ec_hdr)
802 return -ENOMEM;
803
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300804 ec_hdr->ec = cpu_to_be64(ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400805
806 err = ubi_io_sync_erase(ubi, pnum, 0);
807 if (err < 0)
808 goto out_free;
809
810 err = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr);
811
812out_free:
813 kfree(ec_hdr);
814 return err;
815}
816
817/**
Artem Bityutskiyc87fbd72012-05-17 15:38:56 +0300818 * ubi_early_get_peb - get a free physical eraseblock.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400819 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300820 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400821 *
822 * This function returns a free physical eraseblock. It is supposed to be
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +0300823 * called on the UBI initialization stages when the wear-leveling sub-system is
824 * not initialized yet. This function picks a physical eraseblocks from one of
825 * the lists, writes the EC header if it is needed, and removes it from the
826 * list.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400827 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300828 * This function returns a pointer to the "aeb" of the found free PEB in case
829 * of success and an error code in case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400830 */
Artem Bityutskiyc87fbd72012-05-17 15:38:56 +0300831struct ubi_ainf_peb *ubi_early_get_peb(struct ubi_device *ubi,
832 struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400833{
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300834 int err = 0;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300835 struct ubi_ainf_peb *aeb, *tmp_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400836
Nikhilesh Reddy547808b2015-09-24 16:32:56 -0700837 list_for_each_entry_safe(aeb, tmp_aeb, &ai->free, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300838 list_del(&aeb->u.list);
Nikhilesh Reddy547808b2015-09-24 16:32:56 -0700839 if (aeb->ec == UBI_UNKNOWN) {
840 ubi_err(ubi, "PEB %d in freelist has unknown EC",
841 aeb->pnum);
842 aeb->ec = ai->mean_ec;
843 }
844 err = early_erase_peb(ubi, ai, aeb->pnum, aeb->ec+1);
845 if (err) {
846 ubi_err(ubi, "Erase failed for PEB %d in freelist",
847 aeb->pnum);
848 list_add(&aeb->u.list, &ai->erase);
849 continue;
850 }
851 aeb->ec += 1;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300852 dbg_bld("return free PEB %d, EC %d", aeb->pnum, aeb->ec);
853 return aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400854 }
855
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300856 /*
857 * We try to erase the first physical eraseblock from the erase list
858 * and pick it if we succeed, or try to erase the next one if not. And
859 * so forth. We don't want to take care about bad eraseblocks here -
860 * they'll be handled later.
861 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300862 list_for_each_entry_safe(aeb, tmp_aeb, &ai->erase, u.list) {
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +0300863 if (aeb->ec == UBI_UNKNOWN)
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300864 aeb->ec = ai->mean_ec;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400865
Artem Bityutskiy13d33da2012-05-17 15:20:28 +0300866 err = early_erase_peb(ubi, ai, aeb->pnum, aeb->ec+1);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300867 if (err)
868 continue;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400869
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300870 aeb->ec += 1;
871 list_del(&aeb->u.list);
872 dbg_bld("return PEB %d, EC %d", aeb->pnum, aeb->ec);
873 return aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400874 }
875
Tanya Brokhman326087032014-10-20 19:57:00 +0300876 ubi_err(ubi, "no free eraseblocks");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400877 return ERR_PTR(-ENOSPC);
878}
879
880/**
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300881 * check_corruption - check the data area of PEB.
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300882 * @ubi: UBI device description object
Richard Weinbergerdac6e202012-09-26 17:51:47 +0200883 * @vid_hdr: the (corrupted) VID header of this PEB
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300884 * @pnum: the physical eraseblock number to check
885 *
886 * This is a helper function which is used to distinguish between VID header
887 * corruptions caused by power cuts and other reasons. If the PEB contains only
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300888 * 0xFF bytes in the data area, the VID header is most probably corrupted
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300889 * because of a power cut (%0 is returned in this case). Otherwise, it was
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300890 * probably corrupted for some other reasons (%1 is returned in this case). A
891 * negative error code is returned if a read error occurred.
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300892 *
893 * If the corruption reason was a power cut, UBI can safely erase this PEB.
894 * Otherwise, it should preserve it to avoid possibly destroying important
895 * information.
896 */
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300897static int check_corruption(struct ubi_device *ubi, struct ubi_vid_hdr *vid_hdr,
898 int pnum)
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300899{
900 int err;
901
902 mutex_lock(&ubi->buf_mutex);
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200903 memset(ubi->peb_buf, 0x00, ubi->leb_size);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300904
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200905 err = ubi_io_read(ubi, ubi->peb_buf, pnum, ubi->leb_start,
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300906 ubi->leb_size);
Brian Norrisd57f40542011-09-20 18:34:25 -0700907 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err)) {
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300908 /*
909 * Bit-flips or integrity errors while reading the data area.
910 * It is difficult to say for sure what type of corruption is
911 * this, but presumably a power cut happened while this PEB was
912 * erased, so it became unstable and corrupted, and should be
913 * erased.
914 */
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300915 err = 0;
916 goto out_unlock;
Artem Bityutskiy45aafd32010-10-20 11:54:58 +0300917 }
918
919 if (err)
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300920 goto out_unlock;
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300921
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200922 if (ubi_check_pattern(ubi->peb_buf, 0xFF, ubi->leb_size))
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300923 goto out_unlock;
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300924
Tanya Brokhman326087032014-10-20 19:57:00 +0300925 ubi_err(ubi, "PEB %d contains corrupted VID header, and the data does not contain all 0xFF",
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300926 pnum);
Tanya Brokhman326087032014-10-20 19:57:00 +0300927 ubi_err(ubi, "this may be a non-UBI PEB or a severe VID header corruption which requires manual inspection");
Artem Bityutskiya904e3f2012-04-25 09:02:44 +0300928 ubi_dump_vid_hdr(vid_hdr);
Artem Bityutskiy719bb842012-08-27 17:14:58 +0300929 pr_err("hexdump of PEB %d offset %d, length %d",
930 pnum, ubi->leb_start, ubi->leb_size);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300931 ubi_dbg_print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1,
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200932 ubi->peb_buf, ubi->leb_size, 1);
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300933 err = 1;
934
935out_unlock:
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300936 mutex_unlock(&ubi->buf_mutex);
Dan Carpenter1b1d76e2010-11-18 06:58:04 +0300937 return err;
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300938}
939
Richard Weinberger243a4f82016-06-14 10:12:13 +0200940static bool vol_ignored(int vol_id)
941{
942 switch (vol_id) {
943 case UBI_LAYOUT_VOLUME_ID:
944 return true;
945 }
946
947#ifdef CONFIG_MTD_UBI_FASTMAP
948 return ubi_is_fm_vol(vol_id);
949#else
950 return false;
951#endif
952}
953
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +0300954/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300955 * scan_peb - scan and process UBI headers of a PEB.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400956 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300957 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400958 * @pnum: the physical eraseblock number
Richard Weinberger74f2c6e2016-06-14 10:12:17 +0200959 * @fast: true if we're scanning for a Fastmap
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400960 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300961 * This function reads UBI headers of PEB @pnum, checks them, and adds
962 * information about this PEB to the corresponding list or RB-tree in the
963 * "attaching info" structure. Returns zero if the physical eraseblock was
964 * successfully handled and a negative error code in case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400965 */
Richard Weinberger74f2c6e2016-06-14 10:12:17 +0200966static int scan_peb(struct ubi_device *ubi, struct ubi_attach_info *ai,
967 int pnum, bool fast)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400968{
Boris Brezillon7b6b7492016-09-16 16:59:19 +0200969 struct ubi_ec_hdr *ech = ai->ech;
Boris Brezillon3291b522016-09-16 16:59:26 +0200970 struct ubi_vid_io_buf *vidb = ai->vidb;
971 struct ubi_vid_hdr *vidh = ubi_get_vid_hdr(vidb);
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +0200972 long long ec;
Richard Weinbergerdac6e202012-09-26 17:51:47 +0200973 int err, bitflips = 0, vol_id = -1, ec_err = 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400974
975 dbg_bld("scan PEB %d", pnum);
976
977 /* Skip bad physical eraseblocks */
978 err = ubi_io_is_bad(ubi, pnum);
979 if (err < 0)
980 return err;
981 else if (err) {
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300982 ai->bad_peb_count += 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400983 return 0;
984 }
985
986 err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
987 if (err < 0)
988 return err;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300989 switch (err) {
990 case 0:
991 break;
992 case UBI_IO_BITFLIPS:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400993 bitflips = 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300994 break;
995 case UBI_IO_FF:
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300996 ai->empty_peb_count += 1;
Joel Reardon6dd3bc72012-05-16 14:20:56 +0200997 return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
998 UBI_UNKNOWN, 0, &ai->erase);
Artem Bityutskiyb3321502010-09-03 14:40:55 +0300999 case UBI_IO_FF_BITFLIPS:
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001000 ai->empty_peb_count += 1;
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001001 return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
1002 UBI_UNKNOWN, 1, &ai->erase);
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001003 case UBI_IO_BAD_HDR_EBADMSG:
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001004 case UBI_IO_BAD_HDR:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001005 /*
1006 * We have to also look at the VID header, possibly it is not
1007 * corrupted. Set %bitflips flag in order to make this PEB be
1008 * moved and EC be re-created.
1009 */
Artem Bityutskiye0e718c2010-09-03 14:53:23 +03001010 ec_err = err;
Artem Bityutskiy9c47fb22012-05-18 12:54:58 +03001011 ec = UBI_UNKNOWN;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001012 bitflips = 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001013 break;
1014 default:
Tanya Brokhman326087032014-10-20 19:57:00 +03001015 ubi_err(ubi, "'ubi_io_read_ec_hdr()' returned unknown code %d",
1016 err);
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001017 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001018 }
1019
Artem Bityutskiye0e718c2010-09-03 14:53:23 +03001020 if (!ec_err) {
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +03001021 int image_seq;
1022
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001023 /* Make sure UBI version is OK */
1024 if (ech->version != UBI_VERSION) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001025 ubi_err(ubi, "this UBI version is %d, image version is %d",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001026 UBI_VERSION, (int)ech->version);
1027 return -EINVAL;
1028 }
1029
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001030 ec = be64_to_cpu(ech->ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001031 if (ec > UBI_MAX_ERASECOUNTER) {
1032 /*
1033 * Erase counter overflow. The EC headers have 64 bits
1034 * reserved, but we anyway make use of only 31 bit
1035 * values, as this seems to be enough for any existing
1036 * flash. Upgrade UBI and use 64-bit erase counters
1037 * internally.
1038 */
Tanya Brokhman326087032014-10-20 19:57:00 +03001039 ubi_err(ubi, "erase counter overflow, max is %d",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001040 UBI_MAX_ERASECOUNTER);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +03001041 ubi_dump_ec_hdr(ech);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001042 return -EINVAL;
1043 }
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +03001044
Adrian Hunter32bc4822009-07-24 19:16:04 +03001045 /*
1046 * Make sure that all PEBs have the same image sequence number.
1047 * This allows us to detect situations when users flash UBI
1048 * images incorrectly, so that the flash has the new UBI image
1049 * and leftovers from the old one. This feature was added
1050 * relatively recently, and the sequence number was always
1051 * zero, because old UBI implementations always set it to zero.
1052 * For this reasons, we do not panic if some PEBs have zero
1053 * sequence number, while other PEBs have non-zero sequence
1054 * number.
1055 */
Holger Brunck3dc948d2009-07-13 16:47:57 +02001056 image_seq = be32_to_cpu(ech->image_seq);
Richard Genoud55b80c42013-09-28 15:55:14 +02001057 if (!ubi->image_seq)
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +03001058 ubi->image_seq = image_seq;
Richard Genoud55b80c42013-09-28 15:55:14 +02001059 if (image_seq && ubi->image_seq != image_seq) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001060 ubi_err(ubi, "bad image sequence number %d in PEB %d, expected %d",
Artem Bityutskiy049333c2012-08-27 14:43:54 +03001061 image_seq, pnum, ubi->image_seq);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +03001062 ubi_dump_ec_hdr(ech);
Artem Bityutskiyfe96efc2009-06-30 16:11:59 +03001063 return -EINVAL;
1064 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001065 }
1066
1067 /* OK, we've done with the EC header, let's look at the VID header */
1068
Boris Brezillon3291b522016-09-16 16:59:26 +02001069 err = ubi_io_read_vid_hdr(ubi, pnum, vidb, 0);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001070 if (err < 0)
1071 return err;
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001072 switch (err) {
1073 case 0:
1074 break;
1075 case UBI_IO_BITFLIPS:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001076 bitflips = 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001077 break;
1078 case UBI_IO_BAD_HDR_EBADMSG:
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001079 if (ec_err == UBI_IO_BAD_HDR_EBADMSG)
1080 /*
1081 * Both EC and VID headers are corrupted and were read
1082 * with data integrity error, probably this is a bad
1083 * PEB, bit it is not marked as bad yet. This may also
1084 * be a result of power cut during erasure.
1085 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001086 ai->maybe_bad_peb_count += 1;
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001087 case UBI_IO_BAD_HDR:
Richard Weinberger74f2c6e2016-06-14 10:12:17 +02001088 /*
1089 * If we're facing a bad VID header we have to drop *all*
1090 * Fastmap data structures we find. The most recent Fastmap
1091 * could be bad and therefore there is a chance that we attach
1092 * from an old one. On a fine MTD stack a PEB must not render
1093 * bad all of a sudden, but the reality is different.
1094 * So, let's be paranoid and help finding the root cause by
1095 * falling back to scanning mode instead of attaching with a
1096 * bad EBA table and cause data corruption which is hard to
1097 * analyze.
1098 */
1099 if (fast)
1100 ai->force_full_scan = 1;
1101
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001102 if (ec_err)
1103 /*
1104 * Both headers are corrupted. There is a possibility
1105 * that this a valid UBI PEB which has corresponding
1106 * LEB, but the headers are corrupted. However, it is
1107 * impossible to distinguish it from a PEB which just
Artem Bityutskiy45aafd32010-10-20 11:54:58 +03001108 * contains garbage because of a power cut during erase
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001109 * operation. So we just schedule this PEB for erasure.
Artem Bityutskiy7ac760c2010-12-02 06:34:01 +02001110 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001111 * Besides, in case of NOR flash, we deliberately
Artem Bityutskiy7ac760c2010-12-02 06:34:01 +02001112 * corrupt both headers because NOR flash erasure is
1113 * slow and can start from the end.
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001114 */
1115 err = 0;
1116 else
1117 /*
1118 * The EC was OK, but the VID header is corrupted. We
1119 * have to check what is in the data area.
1120 */
Artem Bityutskiy45aafd32010-10-20 11:54:58 +03001121 err = check_corruption(ubi, vidh, pnum);
Artem Bityutskiydf3fca42010-10-20 11:51:21 +03001122
1123 if (err < 0)
1124 return err;
1125 else if (!err)
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001126 /* This corruption is caused by a power cut */
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001127 err = add_to_list(ai, pnum, UBI_UNKNOWN,
1128 UBI_UNKNOWN, ec, 1, &ai->erase);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001129 else
1130 /* This is an unexpected corruption */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001131 err = add_corrupted(ai, pnum, ec);
Artem Bityutskiyfeeba4b2010-09-03 22:50:53 +03001132 if (err)
1133 return err;
1134 goto adjust_mean_ec;
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001135 case UBI_IO_FF_BITFLIPS:
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001136 err = add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
1137 ec, 1, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001138 if (err)
1139 return err;
1140 goto adjust_mean_ec;
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001141 case UBI_IO_FF:
Matthieu CASTET193819c2012-08-22 16:03:46 +02001142 if (ec_err || bitflips)
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001143 err = add_to_list(ai, pnum, UBI_UNKNOWN,
1144 UBI_UNKNOWN, ec, 1, &ai->erase);
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001145 else
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001146 err = add_to_list(ai, pnum, UBI_UNKNOWN,
1147 UBI_UNKNOWN, ec, 0, &ai->free);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001148 if (err)
1149 return err;
1150 goto adjust_mean_ec;
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001151 default:
Tanya Brokhman326087032014-10-20 19:57:00 +03001152 ubi_err(ubi, "'ubi_io_read_vid_hdr()' returned unknown code %d",
Artem Bityutskiyb3321502010-09-03 14:40:55 +03001153 err);
1154 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001155 }
1156
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001157 vol_id = be32_to_cpu(vidh->vol_id);
Richard Weinberger243a4f82016-06-14 10:12:13 +02001158 if (vol_id > UBI_MAX_VOLUMES && !vol_ignored(vol_id)) {
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001159 int lnum = be32_to_cpu(vidh->lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001160
1161 /* Unsupported internal volume */
1162 switch (vidh->compat) {
1163 case UBI_COMPAT_DELETE:
Richard Weinberger243a4f82016-06-14 10:12:13 +02001164 ubi_msg(ubi, "\"delete\" compatible internal volume %d:%d found, will remove it",
1165 vol_id, lnum);
1166
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001167 err = add_to_list(ai, pnum, vol_id, lnum,
1168 ec, 1, &ai->erase);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001169 if (err)
1170 return err;
Brijesh Singh158132c2010-06-16 09:28:26 +03001171 return 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001172
1173 case UBI_COMPAT_RO:
Tanya Brokhman326087032014-10-20 19:57:00 +03001174 ubi_msg(ubi, "read-only compatible internal volume %d:%d found, switch to read-only mode",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001175 vol_id, lnum);
1176 ubi->ro_mode = 1;
1177 break;
1178
1179 case UBI_COMPAT_PRESERVE:
Tanya Brokhman326087032014-10-20 19:57:00 +03001180 ubi_msg(ubi, "\"preserve\" compatible internal volume %d:%d found",
Artem Bityutskiy049333c2012-08-27 14:43:54 +03001181 vol_id, lnum);
Joel Reardon6dd3bc72012-05-16 14:20:56 +02001182 err = add_to_list(ai, pnum, vol_id, lnum,
1183 ec, 0, &ai->alien);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001184 if (err)
1185 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001186 return 0;
1187
1188 case UBI_COMPAT_REJECT:
Tanya Brokhman326087032014-10-20 19:57:00 +03001189 ubi_err(ubi, "incompatible internal volume %d:%d found",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001190 vol_id, lnum);
1191 return -EINVAL;
1192 }
1193 }
1194
Artem Bityutskiye0e718c2010-09-03 14:53:23 +03001195 if (ec_err)
Tanya Brokhman326087032014-10-20 19:57:00 +03001196 ubi_warn(ubi, "valid VID header but corrupted EC header at PEB %d",
Artem Bityutskiy29a88c92009-07-19 14:03:16 +03001197 pnum);
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001198
1199 if (ubi_is_fm_vol(vol_id))
1200 err = add_fastmap(ai, pnum, vidh, ec);
1201 else
1202 err = ubi_add_to_av(ubi, ai, pnum, ec, vidh, bitflips);
1203
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001204 if (err)
1205 return err;
1206
1207adjust_mean_ec:
Artem Bityutskiye0e718c2010-09-03 14:53:23 +03001208 if (!ec_err) {
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001209 ai->ec_sum += ec;
1210 ai->ec_count += 1;
1211 if (ec > ai->max_ec)
1212 ai->max_ec = ec;
1213 if (ec < ai->min_ec)
1214 ai->min_ec = ec;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001215 }
1216
1217 return 0;
1218}
1219
1220/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001221 * late_analysis - analyze the overall situation with PEB.
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001222 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001223 * @ai: attaching information
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001224 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001225 * This is a helper function which takes a look what PEBs we have after we
1226 * gather information about all of them ("ai" is compete). It decides whether
1227 * the flash is empty and should be formatted of whether there are too many
1228 * corrupted PEBs and we should not attach this MTD device. Returns zero if we
1229 * should proceed with attaching the MTD device, and %-EINVAL if we should not.
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001230 */
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001231static int late_analysis(struct ubi_device *ubi, struct ubi_attach_info *ai)
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001232{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001233 struct ubi_ainf_peb *aeb;
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001234 int max_corr, peb_count;
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001235
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001236 peb_count = ubi->peb_count - ai->bad_peb_count - ai->alien_peb_count;
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001237 max_corr = peb_count / 20 ?: 8;
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001238
1239 /*
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001240 * Few corrupted PEBs is not a problem and may be just a result of
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001241 * unclean reboots. However, many of them may indicate some problems
1242 * with the flash HW or driver.
1243 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001244 if (ai->corr_peb_count) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001245 ubi_err(ubi, "%d PEBs are corrupted and preserved",
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001246 ai->corr_peb_count);
Artem Bityutskiye28453b2012-08-27 15:13:05 +03001247 pr_err("Corrupted PEBs are:");
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001248 list_for_each_entry(aeb, &ai->corr, u.list)
Artem Bityutskiye28453b2012-08-27 15:13:05 +03001249 pr_cont(" %d", aeb->pnum);
1250 pr_cont("\n");
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001251
1252 /*
1253 * If too many PEBs are corrupted, we refuse attaching,
1254 * otherwise, only print a warning.
1255 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001256 if (ai->corr_peb_count >= max_corr) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001257 ubi_err(ubi, "too many corrupted PEBs, refusing");
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001258 return -EINVAL;
1259 }
1260 }
1261
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001262 if (ai->empty_peb_count + ai->maybe_bad_peb_count == peb_count) {
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001263 /*
1264 * All PEBs are empty, or almost all - a couple PEBs look like
1265 * they may be bad PEBs which were not marked as bad yet.
1266 *
1267 * This piece of code basically tries to distinguish between
1268 * the following situations:
1269 *
1270 * 1. Flash is empty, but there are few bad PEBs, which are not
1271 * marked as bad so far, and which were read with error. We
1272 * want to go ahead and format this flash. While formatting,
1273 * the faulty PEBs will probably be marked as bad.
1274 *
1275 * 2. Flash contains non-UBI data and we do not want to format
1276 * it and destroy possibly important information.
1277 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001278 if (ai->maybe_bad_peb_count <= 2) {
1279 ai->is_empty = 1;
Tanya Brokhman326087032014-10-20 19:57:00 +03001280 ubi_msg(ubi, "empty MTD device detected");
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001281 get_random_bytes(&ubi->image_seq,
1282 sizeof(ubi->image_seq));
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001283 } else {
Tanya Brokhman326087032014-10-20 19:57:00 +03001284 ubi_err(ubi, "MTD device is not UBI-formatted and possibly contains non-UBI data - refusing it");
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001285 return -EINVAL;
1286 }
Artem Bityutskiy0525dac2010-09-03 17:11:37 +03001287
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001288 }
1289
Artem Bityutskiy0798cea2010-04-30 13:02:33 +03001290 return 0;
1291}
1292
1293/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001294 * destroy_av - free volume attaching information.
1295 * @av: volume attaching information
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001296 * @ai: attaching information
Boris Brezillonf9efe8d2016-09-16 16:59:15 +02001297 * @list: put the aeb elements in there if !NULL, otherwise free them
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001298 *
Artem Bityutskiyfbd01072012-05-17 16:12:26 +03001299 * This function destroys the volume attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001300 */
Boris Brezillonf9efe8d2016-09-16 16:59:15 +02001301static void destroy_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av,
1302 struct list_head *list)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001303{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001304 struct ubi_ainf_peb *aeb;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001305 struct rb_node *this = av->root.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001306
1307 while (this) {
1308 if (this->rb_left)
1309 this = this->rb_left;
1310 else if (this->rb_right)
1311 this = this->rb_right;
1312 else {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001313 aeb = rb_entry(this, struct ubi_ainf_peb, u.rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001314 this = rb_parent(this);
1315 if (this) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001316 if (this->rb_left == &aeb->u.rb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001317 this->rb_left = NULL;
1318 else
1319 this->rb_right = NULL;
1320 }
1321
Boris Brezillonf9efe8d2016-09-16 16:59:15 +02001322 if (list)
1323 list_add_tail(&aeb->u.list, list);
1324 else
Boris Brezillon91f42852016-09-16 16:59:18 +02001325 ubi_free_aeb(ai, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001326 }
1327 }
Artem Bityutskiy517af482012-05-17 14:38:34 +03001328 kfree(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001329}
1330
1331/**
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001332 * destroy_ai - destroy attaching information.
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001333 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001334 */
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001335static void destroy_ai(struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001336{
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001337 struct ubi_ainf_peb *aeb, *aeb_tmp;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001338 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001339 struct rb_node *rb;
1340
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001341 list_for_each_entry_safe(aeb, aeb_tmp, &ai->alien, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001342 list_del(&aeb->u.list);
Boris Brezillon91f42852016-09-16 16:59:18 +02001343 ubi_free_aeb(ai, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001344 }
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001345 list_for_each_entry_safe(aeb, aeb_tmp, &ai->erase, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001346 list_del(&aeb->u.list);
Boris Brezillon91f42852016-09-16 16:59:18 +02001347 ubi_free_aeb(ai, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001348 }
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001349 list_for_each_entry_safe(aeb, aeb_tmp, &ai->corr, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001350 list_del(&aeb->u.list);
Boris Brezillon91f42852016-09-16 16:59:18 +02001351 ubi_free_aeb(ai, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001352 }
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001353 list_for_each_entry_safe(aeb, aeb_tmp, &ai->free, u.list) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001354 list_del(&aeb->u.list);
Boris Brezillon91f42852016-09-16 16:59:18 +02001355 ubi_free_aeb(ai, aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001356 }
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001357 list_for_each_entry_safe(aeb, aeb_tmp, &ai->fastmap, u.list) {
1358 list_del(&aeb->u.list);
Boris Brezillon91f42852016-09-16 16:59:18 +02001359 ubi_free_aeb(ai, aeb);
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001360 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001361
1362 /* Destroy the volume RB-tree */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001363 rb = ai->volumes.rb_node;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001364 while (rb) {
1365 if (rb->rb_left)
1366 rb = rb->rb_left;
1367 else if (rb->rb_right)
1368 rb = rb->rb_right;
1369 else {
Artem Bityutskiy517af482012-05-17 14:38:34 +03001370 av = rb_entry(rb, struct ubi_ainf_volume, rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001371
1372 rb = rb_parent(rb);
1373 if (rb) {
Artem Bityutskiy517af482012-05-17 14:38:34 +03001374 if (rb->rb_left == &av->rb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001375 rb->rb_left = NULL;
1376 else
1377 rb->rb_right = NULL;
1378 }
1379
Boris Brezillonf9efe8d2016-09-16 16:59:15 +02001380 destroy_av(ai, av, NULL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001381 }
1382 }
1383
Julia Lawallf9a113d2015-09-13 14:15:16 +02001384 kmem_cache_destroy(ai->aeb_slab_cache);
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001385 kfree(ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001386}
1387
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001388/**
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001389 * scan_all - scan entire MTD device.
1390 * @ubi: UBI device description object
1391 * @ai: attach info object
1392 * @start: start scanning at this PEB
1393 *
1394 * This function does full scanning of an MTD device and returns complete
1395 * information about it in form of a "struct ubi_attach_info" object. In case
1396 * of failure, an error code is returned.
1397 */
1398static int scan_all(struct ubi_device *ubi, struct ubi_attach_info *ai,
1399 int start)
1400{
1401 int err, pnum;
1402 struct rb_node *rb1, *rb2;
1403 struct ubi_ainf_volume *av;
1404 struct ubi_ainf_peb *aeb;
1405
1406 err = -ENOMEM;
1407
Boris Brezillon7b6b7492016-09-16 16:59:19 +02001408 ai->ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1409 if (!ai->ech)
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001410 return err;
1411
Boris Brezillon3291b522016-09-16 16:59:26 +02001412 ai->vidb = ubi_alloc_vid_buf(ubi, GFP_KERNEL);
1413 if (!ai->vidb)
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001414 goto out_ech;
1415
1416 for (pnum = start; pnum < ubi->peb_count; pnum++) {
1417 cond_resched();
1418
1419 dbg_gen("process PEB %d", pnum);
Richard Weinberger74f2c6e2016-06-14 10:12:17 +02001420 err = scan_peb(ubi, ai, pnum, false);
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001421 if (err < 0)
1422 goto out_vidh;
1423 }
1424
Tanya Brokhman326087032014-10-20 19:57:00 +03001425 ubi_msg(ubi, "scanning is finished");
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001426
1427 /* Calculate mean erase counter */
1428 if (ai->ec_count)
1429 ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count);
1430
1431 err = late_analysis(ubi, ai);
1432 if (err)
1433 goto out_vidh;
1434
1435 /*
1436 * In case of unknown erase counter we use the mean erase counter
1437 * value.
1438 */
1439 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
1440 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
1441 if (aeb->ec == UBI_UNKNOWN)
1442 aeb->ec = ai->mean_ec;
1443 }
1444
1445 list_for_each_entry(aeb, &ai->free, u.list) {
1446 if (aeb->ec == UBI_UNKNOWN)
1447 aeb->ec = ai->mean_ec;
1448 }
1449
1450 list_for_each_entry(aeb, &ai->corr, u.list)
1451 if (aeb->ec == UBI_UNKNOWN)
1452 aeb->ec = ai->mean_ec;
1453
1454 list_for_each_entry(aeb, &ai->erase, u.list)
1455 if (aeb->ec == UBI_UNKNOWN)
1456 aeb->ec = ai->mean_ec;
1457
1458 err = self_check_ai(ubi, ai);
1459 if (err)
1460 goto out_vidh;
1461
Boris Brezillon3291b522016-09-16 16:59:26 +02001462 ubi_free_vid_buf(ai->vidb);
Boris Brezillon7b6b7492016-09-16 16:59:19 +02001463 kfree(ai->ech);
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001464
1465 return 0;
1466
1467out_vidh:
Boris Brezillon3291b522016-09-16 16:59:26 +02001468 ubi_free_vid_buf(ai->vidb);
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001469out_ech:
Boris Brezillon7b6b7492016-09-16 16:59:19 +02001470 kfree(ai->ech);
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001471 return err;
1472}
1473
Richard Weinbergerd2158f62014-10-06 15:58:07 +02001474static struct ubi_attach_info *alloc_ai(void)
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001475{
1476 struct ubi_attach_info *ai;
1477
1478 ai = kzalloc(sizeof(struct ubi_attach_info), GFP_KERNEL);
1479 if (!ai)
1480 return ai;
1481
1482 INIT_LIST_HEAD(&ai->corr);
1483 INIT_LIST_HEAD(&ai->free);
1484 INIT_LIST_HEAD(&ai->erase);
1485 INIT_LIST_HEAD(&ai->alien);
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001486 INIT_LIST_HEAD(&ai->fastmap);
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001487 ai->volumes = RB_ROOT;
Richard Weinbergerd2158f62014-10-06 15:58:07 +02001488 ai->aeb_slab_cache = kmem_cache_create("ubi_aeb_slab_cache",
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001489 sizeof(struct ubi_ainf_peb),
1490 0, 0, NULL);
1491 if (!ai->aeb_slab_cache) {
1492 kfree(ai);
1493 ai = NULL;
1494 }
1495
1496 return ai;
1497}
1498
Richard Weinberger98105d02014-10-06 15:39:01 +02001499#ifdef CONFIG_MTD_UBI_FASTMAP
1500
1501/**
Richard Weinbergerd139d302016-06-14 10:12:12 +02001502 * scan_fast - try to find a fastmap and attach from it.
Richard Weinberger98105d02014-10-06 15:39:01 +02001503 * @ubi: UBI device description object
1504 * @ai: attach info object
1505 *
1506 * Returns 0 on success, negative return values indicate an internal
1507 * error.
1508 * UBI_NO_FASTMAP denotes that no fastmap was found.
1509 * UBI_BAD_FASTMAP denotes that the found fastmap was invalid.
1510 */
1511static int scan_fast(struct ubi_device *ubi, struct ubi_attach_info **ai)
1512{
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001513 int err, pnum;
1514 struct ubi_attach_info *scan_ai;
Richard Weinberger98105d02014-10-06 15:39:01 +02001515
1516 err = -ENOMEM;
1517
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001518 scan_ai = alloc_ai();
1519 if (!scan_ai)
1520 goto out;
1521
Boris Brezillon7b6b7492016-09-16 16:59:19 +02001522 scan_ai->ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1523 if (!scan_ai->ech)
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001524 goto out_ai;
Richard Weinberger98105d02014-10-06 15:39:01 +02001525
Boris Brezillon3291b522016-09-16 16:59:26 +02001526 scan_ai->vidb = ubi_alloc_vid_buf(ubi, GFP_KERNEL);
1527 if (!scan_ai->vidb)
Richard Weinberger98105d02014-10-06 15:39:01 +02001528 goto out_ech;
1529
1530 for (pnum = 0; pnum < UBI_FM_MAX_START; pnum++) {
Richard Weinberger98105d02014-10-06 15:39:01 +02001531 cond_resched();
1532
1533 dbg_gen("process PEB %d", pnum);
Richard Weinberger74f2c6e2016-06-14 10:12:17 +02001534 err = scan_peb(ubi, scan_ai, pnum, true);
Richard Weinberger98105d02014-10-06 15:39:01 +02001535 if (err < 0)
1536 goto out_vidh;
Richard Weinberger98105d02014-10-06 15:39:01 +02001537 }
1538
Boris Brezillon3291b522016-09-16 16:59:26 +02001539 ubi_free_vid_buf(scan_ai->vidb);
Boris Brezillon7b6b7492016-09-16 16:59:19 +02001540 kfree(scan_ai->ech);
Richard Weinberger98105d02014-10-06 15:39:01 +02001541
Richard Weinberger74f2c6e2016-06-14 10:12:17 +02001542 if (scan_ai->force_full_scan)
1543 err = UBI_NO_FASTMAP;
1544 else
1545 err = ubi_scan_fastmap(ubi, *ai, scan_ai);
1546
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001547 if (err) {
1548 /*
1549 * Didn't attach via fastmap, do a full scan but reuse what
1550 * we've aready scanned.
1551 */
1552 destroy_ai(*ai);
1553 *ai = scan_ai;
1554 } else
1555 destroy_ai(scan_ai);
Richard Weinberger98105d02014-10-06 15:39:01 +02001556
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001557 return err;
Richard Weinberger98105d02014-10-06 15:39:01 +02001558
1559out_vidh:
Boris Brezillon3291b522016-09-16 16:59:26 +02001560 ubi_free_vid_buf(scan_ai->vidb);
Richard Weinberger98105d02014-10-06 15:39:01 +02001561out_ech:
Boris Brezillon7b6b7492016-09-16 16:59:19 +02001562 kfree(scan_ai->ech);
Richard Weinbergerfdf10ed2016-06-14 10:12:15 +02001563out_ai:
1564 destroy_ai(scan_ai);
Richard Weinberger98105d02014-10-06 15:39:01 +02001565out:
1566 return err;
1567}
1568
1569#endif
1570
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001571/**
1572 * ubi_attach - attach an MTD device.
1573 * @ubi: UBI device descriptor
1574 * @force_scan: if set to non-zero attach by scanning
1575 *
1576 * This function returns zero in case of success and a negative error code in
1577 * case of failure.
1578 */
1579int ubi_attach(struct ubi_device *ubi, int force_scan)
1580{
1581 int err;
1582 struct ubi_attach_info *ai;
1583
Richard Weinbergerd2158f62014-10-06 15:58:07 +02001584 ai = alloc_ai();
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001585 if (!ai)
1586 return -ENOMEM;
1587
1588#ifdef CONFIG_MTD_UBI_FASTMAP
1589 /* On small flash devices we disable fastmap in any case. */
1590 if ((int)mtd_div_by_eb(ubi->mtd->size, ubi->mtd) <= UBI_FM_MAX_START) {
1591 ubi->fm_disabled = 1;
1592 force_scan = 1;
1593 }
1594
1595 if (force_scan)
1596 err = scan_all(ubi, ai, 0);
1597 else {
Richard Weinberger98105d02014-10-06 15:39:01 +02001598 err = scan_fast(ubi, &ai);
Richard Weinberger180a5352015-03-09 10:04:09 +01001599 if (err > 0 || mtd_is_eccerr(err)) {
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001600 if (err != UBI_NO_FASTMAP) {
1601 destroy_ai(ai);
Richard Weinbergerd2158f62014-10-06 15:58:07 +02001602 ai = alloc_ai();
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001603 if (!ai)
1604 return -ENOMEM;
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001605
Richard Weinberger4b3e0a22013-09-28 15:55:12 +02001606 err = scan_all(ubi, ai, 0);
1607 } else {
1608 err = scan_all(ubi, ai, UBI_FM_MAX_START);
1609 }
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001610 }
1611 }
1612#else
1613 err = scan_all(ubi, ai, 0);
1614#endif
1615 if (err)
1616 goto out_ai;
1617
1618 ubi->bad_peb_count = ai->bad_peb_count;
1619 ubi->good_peb_count = ubi->peb_count - ubi->bad_peb_count;
1620 ubi->corr_peb_count = ai->corr_peb_count;
1621 ubi->max_ec = ai->max_ec;
1622 ubi->mean_ec = ai->mean_ec;
1623 dbg_gen("max. sequence number: %llu", ai->max_sqnum);
1624
1625 err = ubi_read_volume_table(ubi, ai);
1626 if (err)
1627 goto out_ai;
1628
1629 err = ubi_wl_init(ubi, ai);
1630 if (err)
1631 goto out_vtbl;
1632
1633 err = ubi_eba_init(ubi, ai);
1634 if (err)
1635 goto out_wl;
1636
1637#ifdef CONFIG_MTD_UBI_FASTMAP
Richard Weinberger560d86a2014-10-27 13:00:26 +01001638 if (ubi->fm && ubi_dbg_chk_fastmap(ubi)) {
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001639 struct ubi_attach_info *scan_ai;
1640
Richard Weinbergerd2158f62014-10-06 15:58:07 +02001641 scan_ai = alloc_ai();
Julia Lawall4d525142013-12-29 23:47:19 +01001642 if (!scan_ai) {
1643 err = -ENOMEM;
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001644 goto out_wl;
Julia Lawall4d525142013-12-29 23:47:19 +01001645 }
Richard Weinbergerdac6e202012-09-26 17:51:47 +02001646
1647 err = scan_all(ubi, scan_ai, 0);
1648 if (err) {
1649 destroy_ai(scan_ai);
1650 goto out_wl;
1651 }
1652
1653 err = self_check_eba(ubi, ai, scan_ai);
1654 destroy_ai(scan_ai);
1655
1656 if (err)
1657 goto out_wl;
1658 }
1659#endif
1660
1661 destroy_ai(ai);
1662 return 0;
1663
1664out_wl:
1665 ubi_wl_close(ubi);
1666out_vtbl:
1667 ubi_free_internal_volumes(ubi);
1668 vfree(ubi->vtbl);
1669out_ai:
1670 destroy_ai(ai);
1671 return err;
1672}
1673
1674/**
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001675 * self_check_ai - check the attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001676 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001677 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001678 *
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001679 * This function returns zero if the attaching information is all right, and a
Artem Bityutskiyadbf05e2010-01-20 10:28:58 +02001680 * negative error code if not or if an error occurred.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001681 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001682static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001683{
Boris Brezillon3291b522016-09-16 16:59:26 +02001684 struct ubi_vid_io_buf *vidb = ai->vidb;
1685 struct ubi_vid_hdr *vidh = ubi_get_vid_hdr(vidb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001686 int pnum, err, vols_found = 0;
1687 struct rb_node *rb1, *rb2;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001688 struct ubi_ainf_volume *av;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001689 struct ubi_ainf_peb *aeb, *last_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001690 uint8_t *buf;
1691
Ezequiel Garcia64575572012-11-28 09:18:29 -03001692 if (!ubi_dbg_chk_gen(ubi))
Artem Bityutskiy92d124f2011-03-14 18:17:40 +02001693 return 0;
1694
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001695 /*
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001696 * At first, check that attaching information is OK.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001697 */
Artem Bityutskiy517af482012-05-17 14:38:34 +03001698 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001699 int leb_count = 0;
1700
1701 cond_resched();
1702
1703 vols_found += 1;
1704
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001705 if (ai->is_empty) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001706 ubi_err(ubi, "bad is_empty flag");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001707 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001708 }
1709
Artem Bityutskiy517af482012-05-17 14:38:34 +03001710 if (av->vol_id < 0 || av->highest_lnum < 0 ||
1711 av->leb_count < 0 || av->vol_type < 0 || av->used_ebs < 0 ||
1712 av->data_pad < 0 || av->last_data_size < 0) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001713 ubi_err(ubi, "negative values");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001714 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001715 }
1716
Artem Bityutskiy517af482012-05-17 14:38:34 +03001717 if (av->vol_id >= UBI_MAX_VOLUMES &&
1718 av->vol_id < UBI_INTERNAL_VOL_START) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001719 ubi_err(ubi, "bad vol_id");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001720 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001721 }
1722
Artem Bityutskiy517af482012-05-17 14:38:34 +03001723 if (av->vol_id > ai->highest_vol_id) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001724 ubi_err(ubi, "highest_vol_id is %d, but vol_id %d is there",
Artem Bityutskiy517af482012-05-17 14:38:34 +03001725 ai->highest_vol_id, av->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001726 goto out;
1727 }
1728
Artem Bityutskiy517af482012-05-17 14:38:34 +03001729 if (av->vol_type != UBI_DYNAMIC_VOLUME &&
1730 av->vol_type != UBI_STATIC_VOLUME) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001731 ubi_err(ubi, "bad vol_type");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001732 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001733 }
1734
Artem Bityutskiy517af482012-05-17 14:38:34 +03001735 if (av->data_pad > ubi->leb_size / 2) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001736 ubi_err(ubi, "bad data_pad");
Artem Bityutskiy517af482012-05-17 14:38:34 +03001737 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001738 }
1739
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001740 last_aeb = NULL;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001741 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001742 cond_resched();
1743
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001744 last_aeb = aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001745 leb_count += 1;
1746
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001747 if (aeb->pnum < 0 || aeb->ec < 0) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001748 ubi_err(ubi, "negative values");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001749 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001750 }
1751
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001752 if (aeb->ec < ai->min_ec) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001753 ubi_err(ubi, "bad ai->min_ec (%d), %d found",
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001754 ai->min_ec, aeb->ec);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001755 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001756 }
1757
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001758 if (aeb->ec > ai->max_ec) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001759 ubi_err(ubi, "bad ai->max_ec (%d), %d found",
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001760 ai->max_ec, aeb->ec);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001761 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001762 }
1763
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001764 if (aeb->pnum >= ubi->peb_count) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001765 ubi_err(ubi, "too high PEB number %d, total PEBs %d",
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001766 aeb->pnum, ubi->peb_count);
1767 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001768 }
1769
Artem Bityutskiy517af482012-05-17 14:38:34 +03001770 if (av->vol_type == UBI_STATIC_VOLUME) {
1771 if (aeb->lnum >= av->used_ebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001772 ubi_err(ubi, "bad lnum or used_ebs");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001773 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001774 }
1775 } else {
Artem Bityutskiy517af482012-05-17 14:38:34 +03001776 if (av->used_ebs != 0) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001777 ubi_err(ubi, "non-zero used_ebs");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001778 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001779 }
1780 }
1781
Artem Bityutskiy517af482012-05-17 14:38:34 +03001782 if (aeb->lnum > av->highest_lnum) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001783 ubi_err(ubi, "incorrect highest_lnum or lnum");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001784 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001785 }
1786 }
1787
Artem Bityutskiy517af482012-05-17 14:38:34 +03001788 if (av->leb_count != leb_count) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001789 ubi_err(ubi, "bad leb_count, %d objects in the tree",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001790 leb_count);
Artem Bityutskiy517af482012-05-17 14:38:34 +03001791 goto bad_av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001792 }
1793
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001794 if (!last_aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001795 continue;
1796
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001797 aeb = last_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001798
Artem Bityutskiy517af482012-05-17 14:38:34 +03001799 if (aeb->lnum != av->highest_lnum) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001800 ubi_err(ubi, "bad highest_lnum");
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001801 goto bad_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001802 }
1803 }
1804
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001805 if (vols_found != ai->vols_found) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001806 ubi_err(ubi, "bad ai->vols_found %d, should be %d",
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001807 ai->vols_found, vols_found);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001808 goto out;
1809 }
1810
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001811 /* Check that attaching information is correct */
Artem Bityutskiy517af482012-05-17 14:38:34 +03001812 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001813 last_aeb = NULL;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001814 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001815 int vol_type;
1816
1817 cond_resched();
1818
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001819 last_aeb = aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001820
Boris Brezillon3291b522016-09-16 16:59:26 +02001821 err = ubi_io_read_vid_hdr(ubi, aeb->pnum, vidb, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001822 if (err && err != UBI_IO_BITFLIPS) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001823 ubi_err(ubi, "VID header is not OK (%d)",
1824 err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001825 if (err > 0)
1826 err = -EIO;
1827 return err;
1828 }
1829
1830 vol_type = vidh->vol_type == UBI_VID_DYNAMIC ?
1831 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001832 if (av->vol_type != vol_type) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001833 ubi_err(ubi, "bad vol_type");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001834 goto bad_vid_hdr;
1835 }
1836
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001837 if (aeb->sqnum != be64_to_cpu(vidh->sqnum)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001838 ubi_err(ubi, "bad sqnum %llu", aeb->sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001839 goto bad_vid_hdr;
1840 }
1841
Artem Bityutskiy517af482012-05-17 14:38:34 +03001842 if (av->vol_id != be32_to_cpu(vidh->vol_id)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001843 ubi_err(ubi, "bad vol_id %d", av->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001844 goto bad_vid_hdr;
1845 }
1846
Artem Bityutskiy517af482012-05-17 14:38:34 +03001847 if (av->compat != vidh->compat) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001848 ubi_err(ubi, "bad compat %d", vidh->compat);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001849 goto bad_vid_hdr;
1850 }
1851
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001852 if (aeb->lnum != be32_to_cpu(vidh->lnum)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001853 ubi_err(ubi, "bad lnum %d", aeb->lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001854 goto bad_vid_hdr;
1855 }
1856
Artem Bityutskiy517af482012-05-17 14:38:34 +03001857 if (av->used_ebs != be32_to_cpu(vidh->used_ebs)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001858 ubi_err(ubi, "bad used_ebs %d", av->used_ebs);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001859 goto bad_vid_hdr;
1860 }
1861
Artem Bityutskiy517af482012-05-17 14:38:34 +03001862 if (av->data_pad != be32_to_cpu(vidh->data_pad)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001863 ubi_err(ubi, "bad data_pad %d", av->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001864 goto bad_vid_hdr;
1865 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001866 }
1867
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001868 if (!last_aeb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001869 continue;
1870
Artem Bityutskiy517af482012-05-17 14:38:34 +03001871 if (av->highest_lnum != be32_to_cpu(vidh->lnum)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001872 ubi_err(ubi, "bad highest_lnum %d", av->highest_lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001873 goto bad_vid_hdr;
1874 }
1875
Artem Bityutskiy517af482012-05-17 14:38:34 +03001876 if (av->last_data_size != be32_to_cpu(vidh->data_size)) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001877 ubi_err(ubi, "bad last_data_size %d",
1878 av->last_data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001879 goto bad_vid_hdr;
1880 }
1881 }
1882
1883 /*
1884 * Make sure that all the physical eraseblocks are in one of the lists
1885 * or trees.
1886 */
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001887 buf = kzalloc(ubi->peb_count, GFP_KERNEL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001888 if (!buf)
1889 return -ENOMEM;
1890
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001891 for (pnum = 0; pnum < ubi->peb_count; pnum++) {
1892 err = ubi_io_is_bad(ubi, pnum);
Artem Bityutskiy341e1a02007-05-03 11:59:51 +03001893 if (err < 0) {
1894 kfree(buf);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001895 return err;
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +03001896 } else if (err)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001897 buf[pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001898 }
1899
Artem Bityutskiy517af482012-05-17 14:38:34 +03001900 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb)
1901 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001902 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001903
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001904 list_for_each_entry(aeb, &ai->free, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001905 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001906
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001907 list_for_each_entry(aeb, &ai->corr, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001908 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001909
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001910 list_for_each_entry(aeb, &ai->erase, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001911 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001912
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001913 list_for_each_entry(aeb, &ai->alien, u.list)
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001914 buf[aeb->pnum] = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001915
1916 err = 0;
1917 for (pnum = 0; pnum < ubi->peb_count; pnum++)
Mariusz Kozlowskid9b07442007-08-01 00:02:10 +02001918 if (!buf[pnum]) {
Tanya Brokhman326087032014-10-20 19:57:00 +03001919 ubi_err(ubi, "PEB %d is not referred", pnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001920 err = 1;
1921 }
1922
1923 kfree(buf);
1924 if (err)
1925 goto out;
1926 return 0;
1927
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001928bad_aeb:
Tanya Brokhman326087032014-10-20 19:57:00 +03001929 ubi_err(ubi, "bad attaching information about LEB %d", aeb->lnum);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001930 ubi_dump_aeb(aeb, 0);
Artem Bityutskiy517af482012-05-17 14:38:34 +03001931 ubi_dump_av(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001932 goto out;
1933
Artem Bityutskiy517af482012-05-17 14:38:34 +03001934bad_av:
Tanya Brokhman326087032014-10-20 19:57:00 +03001935 ubi_err(ubi, "bad attaching information about volume %d", av->vol_id);
Artem Bityutskiy517af482012-05-17 14:38:34 +03001936 ubi_dump_av(av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001937 goto out;
1938
1939bad_vid_hdr:
Tanya Brokhman326087032014-10-20 19:57:00 +03001940 ubi_err(ubi, "bad attaching information about volume %d", av->vol_id);
Artem Bityutskiy517af482012-05-17 14:38:34 +03001941 ubi_dump_av(av);
Artem Bityutskiya904e3f2012-04-25 09:02:44 +03001942 ubi_dump_vid_hdr(vidh);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001943
1944out:
Artem Bityutskiy25886a32012-04-24 06:59:49 +03001945 dump_stack();
Artem Bityutskiyadbf05e2010-01-20 10:28:58 +02001946 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001947}