attach.c 51.0 KB
Newer Older
A
Artem B. Bityutskiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Copyright (c) International Business Machines Corp., 2006
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
 * the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 * Author: Artem Bityutskiy (Битюцкий Артём)
 */

/*
22
 * UBI attaching sub-system.
A
Artem B. Bityutskiy 已提交
23
 *
24 25
 * This sub-system is responsible for attaching MTD devices and it also
 * implements flash media scanning.
A
Artem B. Bityutskiy 已提交
26
 *
A
Artem Bityutskiy 已提交
27
 * The attaching information is represented by a &struct ubi_attach_info'
28 29 30
 * object. Information about volumes is represented by &struct ubi_ainf_volume
 * objects which are kept in volume RB-tree with root at the @volumes field.
 * The RB-tree is indexed by the volume ID.
A
Artem B. Bityutskiy 已提交
31
 *
32 33 34 35 36
 * Logical eraseblocks are represented by &struct ubi_ainf_peb objects. These
 * objects are kept in per-volume RB-trees with the root at the corresponding
 * &struct ubi_ainf_volume object. To put it differently, we keep an RB-tree of
 * per-volume objects and each of these objects is the root of RB-tree of
 * per-LEB objects.
A
Artem B. Bityutskiy 已提交
37 38 39 40
 *
 * Corrupted physical eraseblocks are put to the @corr list, free physical
 * eraseblocks are put to the @free list and the physical eraseblock to be
 * erased are put to the @erase list.
41
 *
42 43 44 45 46 47 48 49
 * About corruptions
 * ~~~~~~~~~~~~~~~~~
 *
 * UBI protects EC and VID headers with CRC-32 checksums, so it can detect
 * whether the headers are corrupted or not. Sometimes UBI also protects the
 * data with CRC-32, e.g., when it executes the atomic LEB change operation, or
 * when it moves the contents of a PEB for wear-leveling purposes.
 *
50
 * UBI tries to distinguish between 2 types of corruptions.
51 52 53
 *
 * 1. Corruptions caused by power cuts. These are expected corruptions and UBI
 * tries to handle them gracefully, without printing too many warnings and
54 55 56 57
 * error messages. The idea is that we do not lose important data in these
 * cases - we may lose only the data which were being written to the media just
 * before the power cut happened, and the upper layers (e.g., UBIFS) are
 * supposed to handle such data losses (e.g., by using the FS journal).
58 59 60 61
 *
 * When UBI detects a corruption (CRC-32 mismatch) in a PEB, and it looks like
 * the reason is a power cut, UBI puts this PEB to the @erase list, and all
 * PEBs in the @erase list are scheduled for erasure later.
62 63
 *
 * 2. Unexpected corruptions which are not caused by power cuts. During
64
 * attaching, such PEBs are put to the @corr list and UBI preserves them.
65 66 67
 * Obviously, this lessens the amount of available PEBs, and if at some  point
 * UBI runs out of free PEBs, it switches to R/O mode. UBI also loudly informs
 * about such PEBs every time the MTD device is attached.
68 69
 *
 * However, it is difficult to reliably distinguish between these types of
70 71 72 73 74 75 76
 * corruptions and UBI's strategy is as follows (in case of attaching by
 * scanning). UBI assumes corruption type 2 if the VID header is corrupted and
 * the data area does not contain all 0xFFs, and there were no bit-flips or
 * integrity errors (e.g., ECC errors in case of NAND) while reading the data
 * area.  Otherwise UBI assumes corruption type 1. So the decision criteria
 * are as follows.
 *   o If the data area contains only 0xFFs, there are no data, and it is safe
77 78
 *     to just erase this PEB - this is corruption type 1.
 *   o If the data area has bit-flips or data integrity errors (ECC errors on
79
 *     NAND), it is probably a PEB which was being erased when power cut
80 81
 *     happened, so this is corruption type 1. However, this is just a guess,
 *     which might be wrong.
82
 *   o Otherwise this is corruption type 2.
A
Artem B. Bityutskiy 已提交
83 84 85
 */

#include <linux/err.h>
86
#include <linux/slab.h>
A
Artem B. Bityutskiy 已提交
87
#include <linux/crc32.h>
A
Artem Bityutskiy 已提交
88
#include <linux/math64.h>
89
#include <linux/random.h>
A
Artem B. Bityutskiy 已提交
90 91
#include "ubi.h"

A
Artem Bityutskiy 已提交
92
static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai);
A
Artem B. Bityutskiy 已提交
93 94 95 96 97

/* Temporary variables used during scanning */
static struct ubi_ec_hdr *ech;
static struct ubi_vid_hdr *vidh;

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
#define AV_FIND		BIT(0)
#define AV_ADD		BIT(1)
#define AV_FIND_OR_ADD	(AV_FIND | AV_ADD)

/**
 * find_or_add_av - internal function to find a volume, add a volume or do
 *		    both (find and add if missing).
 * @ai: attaching information
 * @vol_id: the requested volume ID
 * @flags: a combination of the %AV_FIND and %AV_ADD flags describing the
 *	   expected operation. If only %AV_ADD is set, -EEXIST is returned
 *	   if the volume already exists. If only %AV_FIND is set, NULL is
 *	   returned if the volume does not exist. And if both flags are
 *	   set, the helper first tries to find an existing volume, and if
 *	   it does not exist it creates a new one.
 * @created: in value used to inform the caller whether it"s a newly created
 *	     volume or not.
 *
 * This function returns a pointer to a volume description or an ERR_PTR if
 * the operation failed. It can also return NULL if only %AV_FIND is set and
 * the volume does not exist.
 */
static struct ubi_ainf_volume *find_or_add_av(struct ubi_attach_info *ai,
					      int vol_id, unsigned int flags,
					      bool *created)
{
	struct ubi_ainf_volume *av;
	struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;

	/* Walk the volume RB-tree to look if this volume is already present */
	while (*p) {
		parent = *p;
		av = rb_entry(parent, struct ubi_ainf_volume, rb);

		if (vol_id == av->vol_id) {
			*created = false;

			if (!(flags & AV_FIND))
				return ERR_PTR(-EEXIST);

			return av;
		}

		if (vol_id > av->vol_id)
			p = &(*p)->rb_left;
		else
			p = &(*p)->rb_right;
	}

	if (!(flags & AV_ADD))
		return NULL;

	/* The volume is absent - add it */
	av = kzalloc(sizeof(*av), GFP_KERNEL);
	if (!av)
		return ERR_PTR(-ENOMEM);

	av->vol_id = vol_id;

	if (vol_id > ai->highest_vol_id)
		ai->highest_vol_id = vol_id;

	rb_link_node(&av->rb, parent, p);
	rb_insert_color(&av->rb, &ai->volumes);
	ai->vols_found += 1;
	*created = true;
	dbg_bld("added volume %d", vol_id);
	return av;
}

/**
 * ubi_find_or_add_av - search for a volume in the attaching information and
 *			add one if it does not exist.
 * @ai: attaching information
 * @vol_id: the requested volume ID
 * @created: whether the volume has been created or not
 *
 * This function returns a pointer to the new volume description or an
 * ERR_PTR if the operation failed.
 */
static struct ubi_ainf_volume *ubi_find_or_add_av(struct ubi_attach_info *ai,
						  int vol_id, bool *created)
{
	return find_or_add_av(ai, vol_id, AV_FIND_OR_ADD, created);
}

184
/**
185
 * add_to_list - add physical eraseblock to a list.
A
Artem Bityutskiy 已提交
186
 * @ai: attaching information
187
 * @pnum: physical eraseblock number to add
188 189
 * @vol_id: the last used volume id for the PEB
 * @lnum: the last used LEB number for the PEB
190
 * @ec: erase counter of the physical eraseblock
191
 * @to_head: if not zero, add to the head of the list
192 193
 * @list: the list to add to
 *
194 195
 * This function allocates a 'struct ubi_ainf_peb' object for physical
 * eraseblock @pnum and adds it to the "free", "erase", or "alien" lists.
196 197
 * It stores the @lnum and @vol_id alongside, which can both be
 * %UBI_UNKNOWN if they are not available, not readable, or not assigned.
198 199 200 201 202
 * If @to_head is not zero, PEB will be added to the head of the list, which
 * basically means it will be processed first later. E.g., we add corrupted
 * PEBs (corrupted due to power cuts) to the head of the erase list to make
 * sure we erase them first and get rid of corruptions ASAP. This function
 * returns zero in case of success and a negative error code in case of
203
 * failure.
204
 */
205 206
static int add_to_list(struct ubi_attach_info *ai, int pnum, int vol_id,
		       int lnum, int ec, int to_head, struct list_head *list)
A
Artem B. Bityutskiy 已提交
207
{
A
Artem Bityutskiy 已提交
208
	struct ubi_ainf_peb *aeb;
A
Artem B. Bityutskiy 已提交
209

A
Artem Bityutskiy 已提交
210
	if (list == &ai->free) {
A
Artem B. Bityutskiy 已提交
211
		dbg_bld("add to free: PEB %d, EC %d", pnum, ec);
A
Artem Bityutskiy 已提交
212
	} else if (list == &ai->erase) {
A
Artem B. Bityutskiy 已提交
213
		dbg_bld("add to erase: PEB %d, EC %d", pnum, ec);
A
Artem Bityutskiy 已提交
214
	} else if (list == &ai->alien) {
A
Artem B. Bityutskiy 已提交
215
		dbg_bld("add to alien: PEB %d, EC %d", pnum, ec);
A
Artem Bityutskiy 已提交
216
		ai->alien_peb_count += 1;
217
	} else
A
Artem B. Bityutskiy 已提交
218 219
		BUG();

A
Artem Bityutskiy 已提交
220
	aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
A
Artem Bityutskiy 已提交
221
	if (!aeb)
A
Artem B. Bityutskiy 已提交
222 223
		return -ENOMEM;

A
Artem Bityutskiy 已提交
224
	aeb->pnum = pnum;
225 226
	aeb->vol_id = vol_id;
	aeb->lnum = lnum;
A
Artem Bityutskiy 已提交
227
	aeb->ec = ec;
228
	if (to_head)
A
Artem Bityutskiy 已提交
229
		list_add(&aeb->u.list, list);
230
	else
A
Artem Bityutskiy 已提交
231
		list_add_tail(&aeb->u.list, list);
A
Artem B. Bityutskiy 已提交
232 233 234
	return 0;
}

235 236
/**
 * add_corrupted - add a corrupted physical eraseblock.
A
Artem Bityutskiy 已提交
237
 * @ai: attaching information
238 239 240
 * @pnum: physical eraseblock number to add
 * @ec: erase counter of the physical eraseblock
 *
241 242 243 244
 * This function allocates a 'struct ubi_ainf_peb' object for a corrupted
 * physical eraseblock @pnum and adds it to the 'corr' list.  The corruption
 * was presumably not caused by a power cut. Returns zero in case of success
 * and a negative error code in case of failure.
245
 */
A
Artem Bityutskiy 已提交
246
static int add_corrupted(struct ubi_attach_info *ai, int pnum, int ec)
247
{
A
Artem Bityutskiy 已提交
248
	struct ubi_ainf_peb *aeb;
249 250 251

	dbg_bld("add to corrupted: PEB %d, EC %d", pnum, ec);

A
Artem Bityutskiy 已提交
252
	aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
A
Artem Bityutskiy 已提交
253
	if (!aeb)
254 255
		return -ENOMEM;

A
Artem Bityutskiy 已提交
256
	ai->corr_peb_count += 1;
A
Artem Bityutskiy 已提交
257 258
	aeb->pnum = pnum;
	aeb->ec = ec;
A
Artem Bityutskiy 已提交
259
	list_add(&aeb->u.list, &ai->corr);
260 261 262
	return 0;
}

263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
/**
 * add_fastmap - add a Fastmap related physical eraseblock.
 * @ai: attaching information
 * @pnum: physical eraseblock number the VID header came from
 * @vid_hdr: the volume identifier header
 * @ec: erase counter of the physical eraseblock
 *
 * This function allocates a 'struct ubi_ainf_peb' object for a Fastamp
 * physical eraseblock @pnum and adds it to the 'fastmap' list.
 * Such blocks can be Fastmap super and data blocks from both the most
 * recent Fastmap we're attaching from or from old Fastmaps which will
 * be erased.
 */
static int add_fastmap(struct ubi_attach_info *ai, int pnum,
		       struct ubi_vid_hdr *vid_hdr, int ec)
{
	struct ubi_ainf_peb *aeb;

	aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
	if (!aeb)
		return -ENOMEM;

	aeb->pnum = pnum;
286 287
	aeb->vol_id = be32_to_cpu(vid_hdr->vol_id);
	aeb->sqnum = be64_to_cpu(vid_hdr->sqnum);
288 289 290 291 292 293 294 295 296
	aeb->ec = ec;
	list_add(&aeb->u.list, &ai->fastmap);

	dbg_bld("add to fastmap list: PEB %d, vol_id %d, sqnum: %llu", pnum,
		aeb->vol_id, aeb->sqnum);

	return 0;
}

A
Artem B. Bityutskiy 已提交
297
/**
298
 * validate_vid_hdr - check volume identifier header.
299
 * @ubi: UBI device description object
A
Artem B. Bityutskiy 已提交
300
 * @vid_hdr: the volume identifier header to check
A
Artem Bityutskiy 已提交
301
 * @av: information about the volume this logical eraseblock belongs to
A
Artem B. Bityutskiy 已提交
302 303 304 305 306 307
 * @pnum: physical eraseblock number the VID header came from
 *
 * This function checks that data stored in @vid_hdr is consistent. Returns
 * non-zero if an inconsistency was found and zero if not.
 *
 * Note, UBI does sanity check of everything it reads from the flash media.
A
Artem Bityutskiy 已提交
308
 * Most of the checks are done in the I/O sub-system. Here we check that the
A
Artem B. Bityutskiy 已提交
309 310 311
 * information in the VID header is consistent to the information in other VID
 * headers of the same volume.
 */
312 313
static int validate_vid_hdr(const struct ubi_device *ubi,
			    const struct ubi_vid_hdr *vid_hdr,
A
Artem Bityutskiy 已提交
314
			    const struct ubi_ainf_volume *av, int pnum)
A
Artem B. Bityutskiy 已提交
315 316
{
	int vol_type = vid_hdr->vol_type;
317 318 319
	int vol_id = be32_to_cpu(vid_hdr->vol_id);
	int used_ebs = be32_to_cpu(vid_hdr->used_ebs);
	int data_pad = be32_to_cpu(vid_hdr->data_pad);
A
Artem B. Bityutskiy 已提交
320

A
Artem Bityutskiy 已提交
321 322
	if (av->leb_count != 0) {
		int av_vol_type;
A
Artem B. Bityutskiy 已提交
323 324 325 326 327 328 329

		/*
		 * This is not the first logical eraseblock belonging to this
		 * volume. Ensure that the data in its VID header is consistent
		 * to the data in previous logical eraseblock headers.
		 */

A
Artem Bityutskiy 已提交
330
		if (vol_id != av->vol_id) {
331
			ubi_err(ubi, "inconsistent vol_id");
A
Artem B. Bityutskiy 已提交
332 333 334
			goto bad;
		}

A
Artem Bityutskiy 已提交
335 336
		if (av->vol_type == UBI_STATIC_VOLUME)
			av_vol_type = UBI_VID_STATIC;
A
Artem B. Bityutskiy 已提交
337
		else
A
Artem Bityutskiy 已提交
338
			av_vol_type = UBI_VID_DYNAMIC;
A
Artem B. Bityutskiy 已提交
339

A
Artem Bityutskiy 已提交
340
		if (vol_type != av_vol_type) {
341
			ubi_err(ubi, "inconsistent vol_type");
A
Artem B. Bityutskiy 已提交
342 343 344
			goto bad;
		}

A
Artem Bityutskiy 已提交
345
		if (used_ebs != av->used_ebs) {
346
			ubi_err(ubi, "inconsistent used_ebs");
A
Artem B. Bityutskiy 已提交
347 348 349
			goto bad;
		}

A
Artem Bityutskiy 已提交
350
		if (data_pad != av->data_pad) {
351
			ubi_err(ubi, "inconsistent data_pad");
A
Artem B. Bityutskiy 已提交
352 353 354 355 356 357 358
			goto bad;
		}
	}

	return 0;

bad:
359
	ubi_err(ubi, "inconsistent VID header at PEB %d", pnum);
360
	ubi_dump_vid_hdr(vid_hdr);
A
Artem Bityutskiy 已提交
361
	ubi_dump_av(av);
A
Artem B. Bityutskiy 已提交
362 363 364 365
	return -EINVAL;
}

/**
A
Artem Bityutskiy 已提交
366 367
 * add_volume - add volume to the attaching information.
 * @ai: attaching information
A
Artem B. Bityutskiy 已提交
368 369 370 371 372
 * @vol_id: ID of the volume to add
 * @pnum: physical eraseblock number
 * @vid_hdr: volume identifier header
 *
 * If the volume corresponding to the @vid_hdr logical eraseblock is already
A
Artem Bityutskiy 已提交
373 374
 * present in the attaching information, this function does nothing. Otherwise
 * it adds corresponding volume to the attaching information. Returns a pointer
375 376
 * to the allocated "av" object in case of success and a negative error code in
 * case of failure.
A
Artem B. Bityutskiy 已提交
377
 */
A
Artem Bityutskiy 已提交
378
static struct ubi_ainf_volume *add_volume(struct ubi_attach_info *ai,
379
					  int vol_id, int pnum,
A
Artem B. Bityutskiy 已提交
380 381
					  const struct ubi_vid_hdr *vid_hdr)
{
A
Artem Bityutskiy 已提交
382
	struct ubi_ainf_volume *av;
383
	bool created;
A
Artem B. Bityutskiy 已提交
384

385
	ubi_assert(vol_id == be32_to_cpu(vid_hdr->vol_id));
A
Artem B. Bityutskiy 已提交
386

387 388 389
	av = ubi_find_or_add_av(ai, vol_id, &created);
	if (IS_ERR(av) || !created)
		return av;
A
Artem B. Bityutskiy 已提交
390

A
Artem Bityutskiy 已提交
391 392 393 394
	av->used_ebs = be32_to_cpu(vid_hdr->used_ebs);
	av->data_pad = be32_to_cpu(vid_hdr->data_pad);
	av->compat = vid_hdr->compat;
	av->vol_type = vid_hdr->vol_type == UBI_VID_DYNAMIC ? UBI_DYNAMIC_VOLUME
A
Artem B. Bityutskiy 已提交
395 396
							    : UBI_STATIC_VOLUME;

A
Artem Bityutskiy 已提交
397
	return av;
A
Artem B. Bityutskiy 已提交
398 399 400
}

/**
401
 * ubi_compare_lebs - find out which logical eraseblock is newer.
A
Artem B. Bityutskiy 已提交
402
 * @ubi: UBI device description object
A
Artem Bityutskiy 已提交
403
 * @aeb: first logical eraseblock to compare
A
Artem B. Bityutskiy 已提交
404 405 406 407 408 409 410 411
 * @pnum: physical eraseblock number of the second logical eraseblock to
 * compare
 * @vid_hdr: volume identifier header of the second logical eraseblock
 *
 * This function compares 2 copies of a LEB and informs which one is newer. In
 * case of success this function returns a positive value, in case of failure, a
 * negative error code is returned. The success return codes use the following
 * bits:
A
Artem Bityutskiy 已提交
412
 *     o bit 0 is cleared: the first PEB (described by @aeb) is newer than the
A
Artem B. Bityutskiy 已提交
413 414 415 416 417 418 419
 *       second PEB (described by @pnum and @vid_hdr);
 *     o bit 0 is set: the second PEB is newer;
 *     o bit 1 is cleared: no bit-flips were detected in the newer LEB;
 *     o bit 1 is set: bit-flips were detected in the newer LEB;
 *     o bit 2 is cleared: the older LEB is not corrupted;
 *     o bit 2 is set: the older LEB is corrupted.
 */
420
int ubi_compare_lebs(struct ubi_device *ubi, const struct ubi_ainf_peb *aeb,
421
			int pnum, const struct ubi_vid_hdr *vid_hdr)
A
Artem B. Bityutskiy 已提交
422 423 424
{
	int len, err, second_is_newer, bitflips = 0, corrupted = 0;
	uint32_t data_crc, crc;
A
Artem Bityutskiy 已提交
425
	struct ubi_vid_hdr *vh = NULL;
426
	unsigned long long sqnum2 = be64_to_cpu(vid_hdr->sqnum);
A
Artem B. Bityutskiy 已提交
427

A
Artem Bityutskiy 已提交
428
	if (sqnum2 == aeb->sqnum) {
A
Artem B. Bityutskiy 已提交
429
		/*
430 431 432 433
		 * This must be a really ancient UBI image which has been
		 * created before sequence numbers support has been added. At
		 * that times we used 32-bit LEB versions stored in logical
		 * eraseblocks. That was before UBI got into mainline. We do not
434 435
		 * support these images anymore. Well, those images still work,
		 * but only if no unclean reboots happened.
A
Artem B. Bityutskiy 已提交
436
		 */
437
		ubi_err(ubi, "unsupported on-flash UBI format");
438 439
		return -EINVAL;
	}
A
Artem Bityutskiy 已提交
440

441
	/* Obviously the LEB with lower sequence counter is older */
A
Artem Bityutskiy 已提交
442
	second_is_newer = (sqnum2 > aeb->sqnum);
A
Artem B. Bityutskiy 已提交
443 444 445 446 447 448 449

	/*
	 * Now we know which copy is newer. If the copy flag of the PEB with
	 * newer version is not set, then we just return, otherwise we have to
	 * check data CRC. For the second PEB we already have the VID header,
	 * for the first one - we'll need to re-read it from flash.
	 *
450
	 * Note: this may be optimized so that we wouldn't read twice.
A
Artem B. Bityutskiy 已提交
451 452 453 454 455 456 457 458 459 460
	 */

	if (second_is_newer) {
		if (!vid_hdr->copy_flag) {
			/* It is not a copy, so it is newer */
			dbg_bld("second PEB %d is newer, copy_flag is unset",
				pnum);
			return 1;
		}
	} else {
A
Artem Bityutskiy 已提交
461
		if (!aeb->copy_flag) {
462 463 464 465 466
			/* It is not a copy, so it is newer */
			dbg_bld("first PEB %d is newer, copy_flag is unset",
				pnum);
			return bitflips << 1;
		}
A
Artem B. Bityutskiy 已提交
467

468
		vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
A
Artem Bityutskiy 已提交
469
		if (!vh)
A
Artem B. Bityutskiy 已提交
470 471
			return -ENOMEM;

A
Artem Bityutskiy 已提交
472
		pnum = aeb->pnum;
A
Artem Bityutskiy 已提交
473
		err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
A
Artem B. Bityutskiy 已提交
474 475 476 477
		if (err) {
			if (err == UBI_IO_BITFLIPS)
				bitflips = 1;
			else {
478
				ubi_err(ubi, "VID of PEB %d header is bad, but it was OK earlier, err %d",
A
Artem Bityutskiy 已提交
479
					pnum, err);
A
Artem B. Bityutskiy 已提交
480 481 482 483 484 485 486
				if (err > 0)
					err = -EIO;

				goto out_free_vidh;
			}
		}

A
Artem Bityutskiy 已提交
487
		vid_hdr = vh;
A
Artem B. Bityutskiy 已提交
488 489 490 491
	}

	/* Read the data of the copy and check the CRC */

492
	len = be32_to_cpu(vid_hdr->data_size);
A
Artem B. Bityutskiy 已提交
493

494 495
	mutex_lock(&ubi->buf_mutex);
	err = ubi_io_read_data(ubi, ubi->peb_buf, pnum, 0, len);
496
	if (err && err != UBI_IO_BITFLIPS && !mtd_is_eccerr(err))
497
		goto out_unlock;
A
Artem B. Bityutskiy 已提交
498

499
	data_crc = be32_to_cpu(vid_hdr->data_crc);
500
	crc = crc32(UBI_CRC32_INIT, ubi->peb_buf, len);
A
Artem B. Bityutskiy 已提交
501 502 503 504 505 506 507 508
	if (crc != data_crc) {
		dbg_bld("PEB %d CRC error: calculated %#08x, must be %#08x",
			pnum, crc, data_crc);
		corrupted = 1;
		bitflips = 0;
		second_is_newer = !second_is_newer;
	} else {
		dbg_bld("PEB %d CRC is OK", pnum);
509
		bitflips |= !!err;
A
Artem B. Bityutskiy 已提交
510
	}
511
	mutex_unlock(&ubi->buf_mutex);
A
Artem B. Bityutskiy 已提交
512

A
Artem Bityutskiy 已提交
513
	ubi_free_vid_hdr(ubi, vh);
A
Artem B. Bityutskiy 已提交
514 515 516 517 518 519 520 521

	if (second_is_newer)
		dbg_bld("second PEB %d is newer, copy_flag is set", pnum);
	else
		dbg_bld("first PEB %d is newer, copy_flag is set", pnum);

	return second_is_newer | (bitflips << 1) | (corrupted << 2);

522 523
out_unlock:
	mutex_unlock(&ubi->buf_mutex);
A
Artem B. Bityutskiy 已提交
524
out_free_vidh:
A
Artem Bityutskiy 已提交
525
	ubi_free_vid_hdr(ubi, vh);
A
Artem B. Bityutskiy 已提交
526 527 528 529
	return err;
}

/**
530
 * ubi_add_to_av - add used physical eraseblock to the attaching information.
A
Artem B. Bityutskiy 已提交
531
 * @ubi: UBI device description object
A
Artem Bityutskiy 已提交
532
 * @ai: attaching information
A
Artem B. Bityutskiy 已提交
533 534 535 536 537
 * @pnum: the physical eraseblock number
 * @ec: erase counter
 * @vid_hdr: the volume identifier header
 * @bitflips: if bit-flips were detected when this physical eraseblock was read
 *
A
Artem Bityutskiy 已提交
538 539 540 541 542 543
 * This function adds information about a used physical eraseblock to the
 * 'used' tree of the corresponding volume. The function is rather complex
 * because it has to handle cases when this is not the first physical
 * eraseblock belonging to the same logical eraseblock, and the newer one has
 * to be picked, while the older one has to be dropped. This function returns
 * zero in case of success and a negative error code in case of failure.
A
Artem B. Bityutskiy 已提交
544
 */
A
Artem Bityutskiy 已提交
545 546
int ubi_add_to_av(struct ubi_device *ubi, struct ubi_attach_info *ai, int pnum,
		  int ec, const struct ubi_vid_hdr *vid_hdr, int bitflips)
A
Artem B. Bityutskiy 已提交
547 548 549
{
	int err, vol_id, lnum;
	unsigned long long sqnum;
A
Artem Bityutskiy 已提交
550
	struct ubi_ainf_volume *av;
A
Artem Bityutskiy 已提交
551
	struct ubi_ainf_peb *aeb;
A
Artem B. Bityutskiy 已提交
552 553
	struct rb_node **p, *parent = NULL;

554 555 556
	vol_id = be32_to_cpu(vid_hdr->vol_id);
	lnum = be32_to_cpu(vid_hdr->lnum);
	sqnum = be64_to_cpu(vid_hdr->sqnum);
A
Artem B. Bityutskiy 已提交
557

558 559
	dbg_bld("PEB %d, LEB %d:%d, EC %d, sqnum %llu, bitflips %d",
		pnum, vol_id, lnum, ec, sqnum, bitflips);
A
Artem B. Bityutskiy 已提交
560

A
Artem Bityutskiy 已提交
561 562 563
	av = add_volume(ai, vol_id, pnum, vid_hdr);
	if (IS_ERR(av))
		return PTR_ERR(av);
A
Artem B. Bityutskiy 已提交
564

A
Artem Bityutskiy 已提交
565 566
	if (ai->max_sqnum < sqnum)
		ai->max_sqnum = sqnum;
B
Brijesh Singh 已提交
567

A
Artem B. Bityutskiy 已提交
568 569 570 571
	/*
	 * Walk the RB-tree of logical eraseblocks of volume @vol_id to look
	 * if this is the first instance of this logical eraseblock or not.
	 */
A
Artem Bityutskiy 已提交
572
	p = &av->root.rb_node;
A
Artem B. Bityutskiy 已提交
573 574 575 576
	while (*p) {
		int cmp_res;

		parent = *p;
A
Artem Bityutskiy 已提交
577 578 579
		aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
		if (lnum != aeb->lnum) {
			if (lnum < aeb->lnum)
A
Artem B. Bityutskiy 已提交
580 581 582 583 584 585 586 587 588 589 590
				p = &(*p)->rb_left;
			else
				p = &(*p)->rb_right;
			continue;
		}

		/*
		 * There is already a physical eraseblock describing the same
		 * logical eraseblock present.
		 */

A
Artem Bityutskiy 已提交
591 592
		dbg_bld("this LEB already exists: PEB %d, sqnum %llu, EC %d",
			aeb->pnum, aeb->sqnum, aeb->ec);
A
Artem B. Bityutskiy 已提交
593 594 595 596 597

		/*
		 * Make sure that the logical eraseblocks have different
		 * sequence numbers. Otherwise the image is bad.
		 *
598 599 600 601 602
		 * However, if the sequence number is zero, we assume it must
		 * be an ancient UBI image from the era when UBI did not have
		 * sequence numbers. We still can attach these images, unless
		 * there is a need to distinguish between old and new
		 * eraseblocks, in which case we'll refuse the image in
603
		 * 'ubi_compare_lebs()'. In other words, we attach old clean
604 605
		 * images, but refuse attaching old images with duplicated
		 * logical eraseblocks because there was an unclean reboot.
A
Artem B. Bityutskiy 已提交
606
		 */
A
Artem Bityutskiy 已提交
607
		if (aeb->sqnum == sqnum && sqnum != 0) {
608
			ubi_err(ubi, "two LEBs with same sequence number %llu",
A
Artem B. Bityutskiy 已提交
609
				sqnum);
A
Artem Bityutskiy 已提交
610
			ubi_dump_aeb(aeb, 0);
611
			ubi_dump_vid_hdr(vid_hdr);
A
Artem B. Bityutskiy 已提交
612 613 614 615 616 617 618
			return -EINVAL;
		}

		/*
		 * Now we have to drop the older one and preserve the newer
		 * one.
		 */
619
		cmp_res = ubi_compare_lebs(ubi, aeb, pnum, vid_hdr);
A
Artem B. Bityutskiy 已提交
620 621 622 623 624
		if (cmp_res < 0)
			return cmp_res;

		if (cmp_res & 1) {
			/*
S
Shinya Kuribayashi 已提交
625
			 * This logical eraseblock is newer than the one
A
Artem B. Bityutskiy 已提交
626 627
			 * found earlier.
			 */
628
			err = validate_vid_hdr(ubi, vid_hdr, av, pnum);
A
Artem B. Bityutskiy 已提交
629 630 631
			if (err)
				return err;

632 633
			err = add_to_list(ai, aeb->pnum, aeb->vol_id,
					  aeb->lnum, aeb->ec, cmp_res & 4,
A
Artem Bityutskiy 已提交
634
					  &ai->erase);
A
Artem B. Bityutskiy 已提交
635 636 637
			if (err)
				return err;

A
Artem Bityutskiy 已提交
638 639
			aeb->ec = ec;
			aeb->pnum = pnum;
640 641
			aeb->vol_id = vol_id;
			aeb->lnum = lnum;
A
Artem Bityutskiy 已提交
642 643 644
			aeb->scrub = ((cmp_res & 2) || bitflips);
			aeb->copy_flag = vid_hdr->copy_flag;
			aeb->sqnum = sqnum;
A
Artem B. Bityutskiy 已提交
645

A
Artem Bityutskiy 已提交
646 647
			if (av->highest_lnum == lnum)
				av->last_data_size =
648
					be32_to_cpu(vid_hdr->data_size);
A
Artem B. Bityutskiy 已提交
649 650 651 652

			return 0;
		} else {
			/*
653
			 * This logical eraseblock is older than the one found
A
Artem B. Bityutskiy 已提交
654 655
			 * previously.
			 */
656 657
			return add_to_list(ai, pnum, vol_id, lnum, ec,
					   cmp_res & 4, &ai->erase);
A
Artem B. Bityutskiy 已提交
658 659 660 661 662
		}
	}

	/*
	 * We've met this logical eraseblock for the first time, add it to the
A
Artem Bityutskiy 已提交
663
	 * attaching information.
A
Artem B. Bityutskiy 已提交
664 665
	 */

666
	err = validate_vid_hdr(ubi, vid_hdr, av, pnum);
A
Artem B. Bityutskiy 已提交
667 668 669
	if (err)
		return err;

A
Artem Bityutskiy 已提交
670
	aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
A
Artem Bityutskiy 已提交
671
	if (!aeb)
A
Artem B. Bityutskiy 已提交
672 673
		return -ENOMEM;

A
Artem Bityutskiy 已提交
674 675
	aeb->ec = ec;
	aeb->pnum = pnum;
676
	aeb->vol_id = vol_id;
A
Artem Bityutskiy 已提交
677 678 679 680
	aeb->lnum = lnum;
	aeb->scrub = bitflips;
	aeb->copy_flag = vid_hdr->copy_flag;
	aeb->sqnum = sqnum;
A
Artem B. Bityutskiy 已提交
681

A
Artem Bityutskiy 已提交
682 683 684
	if (av->highest_lnum <= lnum) {
		av->highest_lnum = lnum;
		av->last_data_size = be32_to_cpu(vid_hdr->data_size);
A
Artem B. Bityutskiy 已提交
685 686
	}

A
Artem Bityutskiy 已提交
687
	av->leb_count += 1;
A
Artem Bityutskiy 已提交
688
	rb_link_node(&aeb->u.rb, parent, p);
A
Artem Bityutskiy 已提交
689
	rb_insert_color(&aeb->u.rb, &av->root);
A
Artem B. Bityutskiy 已提交
690 691 692
	return 0;
}

693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
/**
 * ubi_add_av - add volume to the attaching information.
 * @ai: attaching information
 * @vol_id: the requested volume ID
 *
 * This function returns a pointer to the new volume description or an
 * ERR_PTR if the operation failed.
 */
struct ubi_ainf_volume *ubi_add_av(struct ubi_attach_info *ai, int vol_id)
{
	bool created;

	return find_or_add_av(ai, vol_id, AV_ADD, &created);
}

A
Artem B. Bityutskiy 已提交
708
/**
A
Artem Bityutskiy 已提交
709
 * ubi_find_av - find volume in the attaching information.
A
Artem Bityutskiy 已提交
710
 * @ai: attaching information
A
Artem B. Bityutskiy 已提交
711 712 713
 * @vol_id: the requested volume ID
 *
 * This function returns a pointer to the volume description or %NULL if there
A
Artem Bityutskiy 已提交
714
 * are no data about this volume in the attaching information.
A
Artem B. Bityutskiy 已提交
715
 */
A
Artem Bityutskiy 已提交
716 717
struct ubi_ainf_volume *ubi_find_av(const struct ubi_attach_info *ai,
				    int vol_id)
A
Artem B. Bityutskiy 已提交
718
{
719
	bool created;
A
Artem B. Bityutskiy 已提交
720

721 722
	return find_or_add_av((struct ubi_attach_info *)ai, vol_id, AV_FIND,
			      &created);
A
Artem B. Bityutskiy 已提交
723 724 725
}

/**
726
 * ubi_remove_av - delete attaching information about a volume.
A
Artem Bityutskiy 已提交
727
 * @ai: attaching information
A
Artem Bityutskiy 已提交
728
 * @av: the volume attaching information to delete
A
Artem B. Bityutskiy 已提交
729
 */
730
void ubi_remove_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av)
A
Artem B. Bityutskiy 已提交
731 732
{
	struct rb_node *rb;
A
Artem Bityutskiy 已提交
733
	struct ubi_ainf_peb *aeb;
A
Artem B. Bityutskiy 已提交
734

A
Artem Bityutskiy 已提交
735
	dbg_bld("remove attaching information about volume %d", av->vol_id);
A
Artem B. Bityutskiy 已提交
736

A
Artem Bityutskiy 已提交
737
	while ((rb = rb_first(&av->root))) {
A
Artem Bityutskiy 已提交
738
		aeb = rb_entry(rb, struct ubi_ainf_peb, u.rb);
A
Artem Bityutskiy 已提交
739
		rb_erase(&aeb->u.rb, &av->root);
A
Artem Bityutskiy 已提交
740
		list_add_tail(&aeb->u.list, &ai->erase);
A
Artem B. Bityutskiy 已提交
741 742
	}

A
Artem Bityutskiy 已提交
743 744
	rb_erase(&av->rb, &ai->volumes);
	kfree(av);
A
Artem Bityutskiy 已提交
745
	ai->vols_found -= 1;
A
Artem B. Bityutskiy 已提交
746 747 748
}

/**
749
 * early_erase_peb - erase a physical eraseblock.
A
Artem B. Bityutskiy 已提交
750
 * @ubi: UBI device description object
A
Artem Bityutskiy 已提交
751
 * @ai: attaching information
A
Artem B. Bityutskiy 已提交
752
 * @pnum: physical eraseblock number to erase;
753
 * @ec: erase counter value to write (%UBI_UNKNOWN if it is unknown)
A
Artem B. Bityutskiy 已提交
754 755 756
 *
 * This function erases physical eraseblock 'pnum', and writes the erase
 * counter header to it. This function should only be used on UBI device
A
Artem Bityutskiy 已提交
757 758 759
 * initialization stages, when the EBA sub-system had not been yet initialized.
 * This function returns zero in case of success and a negative error code in
 * case of failure.
A
Artem B. Bityutskiy 已提交
760
 */
761 762
static int early_erase_peb(struct ubi_device *ubi,
			   const struct ubi_attach_info *ai, int pnum, int ec)
A
Artem B. Bityutskiy 已提交
763 764 765 766 767 768 769 770 771
{
	int err;
	struct ubi_ec_hdr *ec_hdr;

	if ((long long)ec >= UBI_MAX_ERASECOUNTER) {
		/*
		 * Erase counter overflow. Upgrade UBI and use 64-bit
		 * erase counters internally.
		 */
772 773
		ubi_err(ubi, "erase counter overflow at PEB %d, EC %d",
			pnum, ec);
A
Artem B. Bityutskiy 已提交
774 775 776
		return -EINVAL;
	}

777 778 779 780
	ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
	if (!ec_hdr)
		return -ENOMEM;

781
	ec_hdr->ec = cpu_to_be64(ec);
A
Artem B. Bityutskiy 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794

	err = ubi_io_sync_erase(ubi, pnum, 0);
	if (err < 0)
		goto out_free;

	err = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr);

out_free:
	kfree(ec_hdr);
	return err;
}

/**
795
 * ubi_early_get_peb - get a free physical eraseblock.
A
Artem B. Bityutskiy 已提交
796
 * @ubi: UBI device description object
A
Artem Bityutskiy 已提交
797
 * @ai: attaching information
A
Artem B. Bityutskiy 已提交
798 799
 *
 * This function returns a free physical eraseblock. It is supposed to be
A
Artem Bityutskiy 已提交
800 801 802 803
 * called on the UBI initialization stages when the wear-leveling sub-system is
 * not initialized yet. This function picks a physical eraseblocks from one of
 * the lists, writes the EC header if it is needed, and removes it from the
 * list.
A
Artem B. Bityutskiy 已提交
804
 *
805 806
 * This function returns a pointer to the "aeb" of the found free PEB in case
 * of success and an error code in case of failure.
A
Artem B. Bityutskiy 已提交
807
 */
808 809
struct ubi_ainf_peb *ubi_early_get_peb(struct ubi_device *ubi,
				       struct ubi_attach_info *ai)
A
Artem B. Bityutskiy 已提交
810
{
A
Artem Bityutskiy 已提交
811
	int err = 0;
A
Artem Bityutskiy 已提交
812
	struct ubi_ainf_peb *aeb, *tmp_aeb;
A
Artem B. Bityutskiy 已提交
813

A
Artem Bityutskiy 已提交
814 815
	if (!list_empty(&ai->free)) {
		aeb = list_entry(ai->free.next, struct ubi_ainf_peb, u.list);
A
Artem Bityutskiy 已提交
816 817 818
		list_del(&aeb->u.list);
		dbg_bld("return free PEB %d, EC %d", aeb->pnum, aeb->ec);
		return aeb;
A
Artem B. Bityutskiy 已提交
819 820
	}

A
Artem Bityutskiy 已提交
821 822 823 824 825 826
	/*
	 * We try to erase the first physical eraseblock from the erase list
	 * and pick it if we succeed, or try to erase the next one if not. And
	 * so forth. We don't want to take care about bad eraseblocks here -
	 * they'll be handled later.
	 */
A
Artem Bityutskiy 已提交
827
	list_for_each_entry_safe(aeb, tmp_aeb, &ai->erase, u.list) {
828
		if (aeb->ec == UBI_UNKNOWN)
A
Artem Bityutskiy 已提交
829
			aeb->ec = ai->mean_ec;
A
Artem B. Bityutskiy 已提交
830

831
		err = early_erase_peb(ubi, ai, aeb->pnum, aeb->ec+1);
A
Artem Bityutskiy 已提交
832 833
		if (err)
			continue;
A
Artem B. Bityutskiy 已提交
834

A
Artem Bityutskiy 已提交
835 836 837 838
		aeb->ec += 1;
		list_del(&aeb->u.list);
		dbg_bld("return PEB %d, EC %d", aeb->pnum, aeb->ec);
		return aeb;
A
Artem B. Bityutskiy 已提交
839 840
	}

841
	ubi_err(ubi, "no free eraseblocks");
A
Artem B. Bityutskiy 已提交
842 843 844
	return ERR_PTR(-ENOSPC);
}

845
/**
846
 * check_corruption - check the data area of PEB.
847
 * @ubi: UBI device description object
848
 * @vid_hdr: the (corrupted) VID header of this PEB
849 850 851 852
 * @pnum: the physical eraseblock number to check
 *
 * This is a helper function which is used to distinguish between VID header
 * corruptions caused by power cuts and other reasons. If the PEB contains only
853
 * 0xFF bytes in the data area, the VID header is most probably corrupted
854
 * because of a power cut (%0 is returned in this case). Otherwise, it was
855 856
 * probably corrupted for some other reasons (%1 is returned in this case). A
 * negative error code is returned if a read error occurred.
857 858 859 860 861
 *
 * If the corruption reason was a power cut, UBI can safely erase this PEB.
 * Otherwise, it should preserve it to avoid possibly destroying important
 * information.
 */
862 863
static int check_corruption(struct ubi_device *ubi, struct ubi_vid_hdr *vid_hdr,
			    int pnum)
864 865 866 867
{
	int err;

	mutex_lock(&ubi->buf_mutex);
868
	memset(ubi->peb_buf, 0x00, ubi->leb_size);
869

870
	err = ubi_io_read(ubi, ubi->peb_buf, pnum, ubi->leb_start,
871
			  ubi->leb_size);
872
	if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err)) {
873 874 875 876 877 878 879
		/*
		 * Bit-flips or integrity errors while reading the data area.
		 * It is difficult to say for sure what type of corruption is
		 * this, but presumably a power cut happened while this PEB was
		 * erased, so it became unstable and corrupted, and should be
		 * erased.
		 */
880 881
		err = 0;
		goto out_unlock;
882 883 884
	}

	if (err)
885
		goto out_unlock;
886

887
	if (ubi_check_pattern(ubi->peb_buf, 0xFF, ubi->leb_size))
888
		goto out_unlock;
889

890
	ubi_err(ubi, "PEB %d contains corrupted VID header, and the data does not contain all 0xFF",
A
Artem Bityutskiy 已提交
891
		pnum);
892
	ubi_err(ubi, "this may be a non-UBI PEB or a severe VID header corruption which requires manual inspection");
893
	ubi_dump_vid_hdr(vid_hdr);
A
Artem Bityutskiy 已提交
894 895
	pr_err("hexdump of PEB %d offset %d, length %d",
	       pnum, ubi->leb_start, ubi->leb_size);
896
	ubi_dbg_print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1,
897
			       ubi->peb_buf, ubi->leb_size, 1);
898 899 900
	err = 1;

out_unlock:
901
	mutex_unlock(&ubi->buf_mutex);
902
	return err;
903 904
}

905 906 907 908 909 910 911 912 913 914 915 916 917 918
static bool vol_ignored(int vol_id)
{
	switch (vol_id) {
		case UBI_LAYOUT_VOLUME_ID:
		return true;
	}

#ifdef CONFIG_MTD_UBI_FASTMAP
	return ubi_is_fm_vol(vol_id);
#else
	return false;
#endif
}

A
Artem B. Bityutskiy 已提交
919
/**
920
 * scan_peb - scan and process UBI headers of a PEB.
A
Artem B. Bityutskiy 已提交
921
 * @ubi: UBI device description object
A
Artem Bityutskiy 已提交
922
 * @ai: attaching information
A
Artem B. Bityutskiy 已提交
923
 * @pnum: the physical eraseblock number
924
 * @fast: true if we're scanning for a Fastmap
A
Artem B. Bityutskiy 已提交
925
 *
926 927 928 929
 * This function reads UBI headers of PEB @pnum, checks them, and adds
 * information about this PEB to the corresponding list or RB-tree in the
 * "attaching info" structure. Returns zero if the physical eraseblock was
 * successfully handled and a negative error code in case of failure.
A
Artem B. Bityutskiy 已提交
930
 */
931 932
static int scan_peb(struct ubi_device *ubi, struct ubi_attach_info *ai,
		    int pnum, bool fast)
A
Artem B. Bityutskiy 已提交
933
{
934
	long long ec;
935
	int err, bitflips = 0, vol_id = -1, ec_err = 0;
A
Artem B. Bityutskiy 已提交
936 937 938 939 940 941 942 943

	dbg_bld("scan PEB %d", pnum);

	/* Skip bad physical eraseblocks */
	err = ubi_io_is_bad(ubi, pnum);
	if (err < 0)
		return err;
	else if (err) {
A
Artem Bityutskiy 已提交
944
		ai->bad_peb_count += 1;
A
Artem B. Bityutskiy 已提交
945 946 947 948 949 950
		return 0;
	}

	err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
	if (err < 0)
		return err;
951 952 953 954
	switch (err) {
	case 0:
		break;
	case UBI_IO_BITFLIPS:
A
Artem B. Bityutskiy 已提交
955
		bitflips = 1;
956 957
		break;
	case UBI_IO_FF:
A
Artem Bityutskiy 已提交
958
		ai->empty_peb_count += 1;
959 960
		return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
				   UBI_UNKNOWN, 0, &ai->erase);
961
	case UBI_IO_FF_BITFLIPS:
A
Artem Bityutskiy 已提交
962
		ai->empty_peb_count += 1;
963 964
		return add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
				   UBI_UNKNOWN, 1, &ai->erase);
965 966
	case UBI_IO_BAD_HDR_EBADMSG:
	case UBI_IO_BAD_HDR:
A
Artem B. Bityutskiy 已提交
967 968 969 970 971
		/*
		 * We have to also look at the VID header, possibly it is not
		 * corrupted. Set %bitflips flag in order to make this PEB be
		 * moved and EC be re-created.
		 */
A
Artem Bityutskiy 已提交
972
		ec_err = err;
973
		ec = UBI_UNKNOWN;
A
Artem B. Bityutskiy 已提交
974
		bitflips = 1;
975 976
		break;
	default:
977 978
		ubi_err(ubi, "'ubi_io_read_ec_hdr()' returned unknown code %d",
			err);
979
		return -EINVAL;
A
Artem B. Bityutskiy 已提交
980 981
	}

A
Artem Bityutskiy 已提交
982
	if (!ec_err) {
983 984
		int image_seq;

A
Artem B. Bityutskiy 已提交
985 986
		/* Make sure UBI version is OK */
		if (ech->version != UBI_VERSION) {
987
			ubi_err(ubi, "this UBI version is %d, image version is %d",
A
Artem B. Bityutskiy 已提交
988 989 990 991
				UBI_VERSION, (int)ech->version);
			return -EINVAL;
		}

992
		ec = be64_to_cpu(ech->ec);
A
Artem B. Bityutskiy 已提交
993 994 995 996 997 998 999 1000
		if (ec > UBI_MAX_ERASECOUNTER) {
			/*
			 * Erase counter overflow. The EC headers have 64 bits
			 * reserved, but we anyway make use of only 31 bit
			 * values, as this seems to be enough for any existing
			 * flash. Upgrade UBI and use 64-bit erase counters
			 * internally.
			 */
1001
			ubi_err(ubi, "erase counter overflow, max is %d",
A
Artem B. Bityutskiy 已提交
1002
				UBI_MAX_ERASECOUNTER);
1003
			ubi_dump_ec_hdr(ech);
A
Artem B. Bityutskiy 已提交
1004 1005
			return -EINVAL;
		}
1006

1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
		/*
		 * Make sure that all PEBs have the same image sequence number.
		 * This allows us to detect situations when users flash UBI
		 * images incorrectly, so that the flash has the new UBI image
		 * and leftovers from the old one. This feature was added
		 * relatively recently, and the sequence number was always
		 * zero, because old UBI implementations always set it to zero.
		 * For this reasons, we do not panic if some PEBs have zero
		 * sequence number, while other PEBs have non-zero sequence
		 * number.
		 */
1018
		image_seq = be32_to_cpu(ech->image_seq);
R
Richard Genoud 已提交
1019
		if (!ubi->image_seq)
1020
			ubi->image_seq = image_seq;
R
Richard Genoud 已提交
1021
		if (image_seq && ubi->image_seq != image_seq) {
1022
			ubi_err(ubi, "bad image sequence number %d in PEB %d, expected %d",
A
Artem Bityutskiy 已提交
1023
				image_seq, pnum, ubi->image_seq);
1024
			ubi_dump_ec_hdr(ech);
1025 1026
			return -EINVAL;
		}
A
Artem B. Bityutskiy 已提交
1027 1028 1029 1030 1031 1032 1033
	}

	/* OK, we've done with the EC header, let's look at the VID header */

	err = ubi_io_read_vid_hdr(ubi, pnum, vidh, 0);
	if (err < 0)
		return err;
1034 1035 1036 1037
	switch (err) {
	case 0:
		break;
	case UBI_IO_BITFLIPS:
A
Artem B. Bityutskiy 已提交
1038
		bitflips = 1;
1039 1040
		break;
	case UBI_IO_BAD_HDR_EBADMSG:
1041 1042 1043 1044 1045 1046 1047
		if (ec_err == UBI_IO_BAD_HDR_EBADMSG)
			/*
			 * Both EC and VID headers are corrupted and were read
			 * with data integrity error, probably this is a bad
			 * PEB, bit it is not marked as bad yet. This may also
			 * be a result of power cut during erasure.
			 */
A
Artem Bityutskiy 已提交
1048
			ai->maybe_bad_peb_count += 1;
1049
	case UBI_IO_BAD_HDR:
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
			/*
			 * If we're facing a bad VID header we have to drop *all*
			 * Fastmap data structures we find. The most recent Fastmap
			 * could be bad and therefore there is a chance that we attach
			 * from an old one. On a fine MTD stack a PEB must not render
			 * bad all of a sudden, but the reality is different.
			 * So, let's be paranoid and help finding the root cause by
			 * falling back to scanning mode instead of attaching with a
			 * bad EBA table and cause data corruption which is hard to
			 * analyze.
			 */
			if (fast)
				ai->force_full_scan = 1;

1064 1065 1066 1067 1068 1069
		if (ec_err)
			/*
			 * Both headers are corrupted. There is a possibility
			 * that this a valid UBI PEB which has corresponding
			 * LEB, but the headers are corrupted. However, it is
			 * impossible to distinguish it from a PEB which just
1070
			 * contains garbage because of a power cut during erase
1071
			 * operation. So we just schedule this PEB for erasure.
1072
			 *
L
Lucas De Marchi 已提交
1073
			 * Besides, in case of NOR flash, we deliberately
1074 1075
			 * corrupt both headers because NOR flash erasure is
			 * slow and can start from the end.
1076 1077 1078 1079 1080 1081 1082
			 */
			err = 0;
		else
			/*
			 * The EC was OK, but the VID header is corrupted. We
			 * have to check what is in the data area.
			 */
1083
			err = check_corruption(ubi, vidh, pnum);
1084 1085 1086 1087

		if (err < 0)
			return err;
		else if (!err)
1088
			/* This corruption is caused by a power cut */
1089 1090
			err = add_to_list(ai, pnum, UBI_UNKNOWN,
					  UBI_UNKNOWN, ec, 1, &ai->erase);
1091 1092
		else
			/* This is an unexpected corruption */
A
Artem Bityutskiy 已提交
1093
			err = add_corrupted(ai, pnum, ec);
1094 1095 1096
		if (err)
			return err;
		goto adjust_mean_ec;
1097
	case UBI_IO_FF_BITFLIPS:
1098 1099
		err = add_to_list(ai, pnum, UBI_UNKNOWN, UBI_UNKNOWN,
				  ec, 1, &ai->erase);
A
Artem B. Bityutskiy 已提交
1100 1101 1102
		if (err)
			return err;
		goto adjust_mean_ec;
1103
	case UBI_IO_FF:
1104
		if (ec_err || bitflips)
1105 1106
			err = add_to_list(ai, pnum, UBI_UNKNOWN,
					  UBI_UNKNOWN, ec, 1, &ai->erase);
1107
		else
1108 1109
			err = add_to_list(ai, pnum, UBI_UNKNOWN,
					  UBI_UNKNOWN, ec, 0, &ai->free);
A
Artem B. Bityutskiy 已提交
1110 1111 1112
		if (err)
			return err;
		goto adjust_mean_ec;
1113
	default:
1114
		ubi_err(ubi, "'ubi_io_read_vid_hdr()' returned unknown code %d",
1115 1116
			err);
		return -EINVAL;
A
Artem B. Bityutskiy 已提交
1117 1118
	}

1119
	vol_id = be32_to_cpu(vidh->vol_id);
1120
	if (vol_id > UBI_MAX_VOLUMES && !vol_ignored(vol_id)) {
1121
		int lnum = be32_to_cpu(vidh->lnum);
A
Artem B. Bityutskiy 已提交
1122 1123 1124 1125

		/* Unsupported internal volume */
		switch (vidh->compat) {
		case UBI_COMPAT_DELETE:
1126 1127 1128
			ubi_msg(ubi, "\"delete\" compatible internal volume %d:%d found, will remove it",
				vol_id, lnum);

1129 1130
			err = add_to_list(ai, pnum, vol_id, lnum,
					  ec, 1, &ai->erase);
A
Artem B. Bityutskiy 已提交
1131 1132
			if (err)
				return err;
1133
			return 0;
A
Artem B. Bityutskiy 已提交
1134 1135

		case UBI_COMPAT_RO:
1136
			ubi_msg(ubi, "read-only compatible internal volume %d:%d found, switch to read-only mode",
A
Artem B. Bityutskiy 已提交
1137 1138 1139 1140 1141
				vol_id, lnum);
			ubi->ro_mode = 1;
			break;

		case UBI_COMPAT_PRESERVE:
1142
			ubi_msg(ubi, "\"preserve\" compatible internal volume %d:%d found",
A
Artem Bityutskiy 已提交
1143
				vol_id, lnum);
1144 1145
			err = add_to_list(ai, pnum, vol_id, lnum,
					  ec, 0, &ai->alien);
A
Artem B. Bityutskiy 已提交
1146 1147 1148 1149 1150
			if (err)
				return err;
			return 0;

		case UBI_COMPAT_REJECT:
1151
			ubi_err(ubi, "incompatible internal volume %d:%d found",
A
Artem B. Bityutskiy 已提交
1152 1153 1154 1155 1156
				vol_id, lnum);
			return -EINVAL;
		}
	}

A
Artem Bityutskiy 已提交
1157
	if (ec_err)
1158
		ubi_warn(ubi, "valid VID header but corrupted EC header at PEB %d",
1159
			 pnum);
1160 1161 1162 1163 1164 1165

	if (ubi_is_fm_vol(vol_id))
		err = add_fastmap(ai, pnum, vidh, ec);
	else
		err = ubi_add_to_av(ubi, ai, pnum, ec, vidh, bitflips);

A
Artem B. Bityutskiy 已提交
1166 1167 1168 1169
	if (err)
		return err;

adjust_mean_ec:
A
Artem Bityutskiy 已提交
1170
	if (!ec_err) {
A
Artem Bityutskiy 已提交
1171 1172 1173 1174 1175 1176
		ai->ec_sum += ec;
		ai->ec_count += 1;
		if (ec > ai->max_ec)
			ai->max_ec = ec;
		if (ec < ai->min_ec)
			ai->min_ec = ec;
A
Artem B. Bityutskiy 已提交
1177 1178 1179 1180 1181
	}

	return 0;
}

1182
/**
1183
 * late_analysis - analyze the overall situation with PEB.
1184
 * @ubi: UBI device description object
A
Artem Bityutskiy 已提交
1185
 * @ai: attaching information
1186
 *
1187 1188 1189 1190 1191
 * This is a helper function which takes a look what PEBs we have after we
 * gather information about all of them ("ai" is compete). It decides whether
 * the flash is empty and should be formatted of whether there are too many
 * corrupted PEBs and we should not attach this MTD device. Returns zero if we
 * should proceed with attaching the MTD device, and %-EINVAL if we should not.
1192
 */
1193
static int late_analysis(struct ubi_device *ubi, struct ubi_attach_info *ai)
1194
{
A
Artem Bityutskiy 已提交
1195
	struct ubi_ainf_peb *aeb;
1196
	int max_corr, peb_count;
1197

A
Artem Bityutskiy 已提交
1198
	peb_count = ubi->peb_count - ai->bad_peb_count - ai->alien_peb_count;
1199
	max_corr = peb_count / 20 ?: 8;
1200 1201

	/*
1202
	 * Few corrupted PEBs is not a problem and may be just a result of
1203 1204 1205
	 * unclean reboots. However, many of them may indicate some problems
	 * with the flash HW or driver.
	 */
A
Artem Bityutskiy 已提交
1206
	if (ai->corr_peb_count) {
1207
		ubi_err(ubi, "%d PEBs are corrupted and preserved",
A
Artem Bityutskiy 已提交
1208
			ai->corr_peb_count);
1209
		pr_err("Corrupted PEBs are:");
A
Artem Bityutskiy 已提交
1210
		list_for_each_entry(aeb, &ai->corr, u.list)
1211 1212
			pr_cont(" %d", aeb->pnum);
		pr_cont("\n");
1213 1214 1215 1216 1217

		/*
		 * If too many PEBs are corrupted, we refuse attaching,
		 * otherwise, only print a warning.
		 */
A
Artem Bityutskiy 已提交
1218
		if (ai->corr_peb_count >= max_corr) {
1219
			ubi_err(ubi, "too many corrupted PEBs, refusing");
1220 1221 1222 1223
			return -EINVAL;
		}
	}

A
Artem Bityutskiy 已提交
1224
	if (ai->empty_peb_count + ai->maybe_bad_peb_count == peb_count) {
1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239
		/*
		 * All PEBs are empty, or almost all - a couple PEBs look like
		 * they may be bad PEBs which were not marked as bad yet.
		 *
		 * This piece of code basically tries to distinguish between
		 * the following situations:
		 *
		 * 1. Flash is empty, but there are few bad PEBs, which are not
		 *    marked as bad so far, and which were read with error. We
		 *    want to go ahead and format this flash. While formatting,
		 *    the faulty PEBs will probably be marked as bad.
		 *
		 * 2. Flash contains non-UBI data and we do not want to format
		 *    it and destroy possibly important information.
		 */
A
Artem Bityutskiy 已提交
1240 1241
		if (ai->maybe_bad_peb_count <= 2) {
			ai->is_empty = 1;
1242
			ubi_msg(ubi, "empty MTD device detected");
1243 1244
			get_random_bytes(&ubi->image_seq,
					 sizeof(ubi->image_seq));
1245
		} else {
1246
			ubi_err(ubi, "MTD device is not UBI-formatted and possibly contains non-UBI data - refusing it");
1247 1248
			return -EINVAL;
		}
1249

1250 1251 1252 1253 1254
	}

	return 0;
}

1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
/**
 * destroy_av - free volume attaching information.
 * @av: volume attaching information
 * @ai: attaching information
 *
 * This function destroys the volume attaching information.
 */
static void destroy_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av)
{
	struct ubi_ainf_peb *aeb;
	struct rb_node *this = av->root.rb_node;

	while (this) {
		if (this->rb_left)
			this = this->rb_left;
		else if (this->rb_right)
			this = this->rb_right;
		else {
			aeb = rb_entry(this, struct ubi_ainf_peb, u.rb);
			this = rb_parent(this);
			if (this) {
				if (this->rb_left == &aeb->u.rb)
					this->rb_left = NULL;
				else
					this->rb_right = NULL;
			}

			kmem_cache_free(ai->aeb_slab_cache, aeb);
		}
	}
	kfree(av);
}

/**
 * destroy_ai - destroy attaching information.
 * @ai: attaching information
 */
static void destroy_ai(struct ubi_attach_info *ai)
{
	struct ubi_ainf_peb *aeb, *aeb_tmp;
	struct ubi_ainf_volume *av;
	struct rb_node *rb;

	list_for_each_entry_safe(aeb, aeb_tmp, &ai->alien, u.list) {
		list_del(&aeb->u.list);
		kmem_cache_free(ai->aeb_slab_cache, aeb);
	}
	list_for_each_entry_safe(aeb, aeb_tmp, &ai->erase, u.list) {
		list_del(&aeb->u.list);
		kmem_cache_free(ai->aeb_slab_cache, aeb);
	}
	list_for_each_entry_safe(aeb, aeb_tmp, &ai->corr, u.list) {
		list_del(&aeb->u.list);
		kmem_cache_free(ai->aeb_slab_cache, aeb);
	}
	list_for_each_entry_safe(aeb, aeb_tmp, &ai->free, u.list) {
		list_del(&aeb->u.list);
		kmem_cache_free(ai->aeb_slab_cache, aeb);
	}
1314 1315 1316 1317
	list_for_each_entry_safe(aeb, aeb_tmp, &ai->fastmap, u.list) {
		list_del(&aeb->u.list);
		kmem_cache_free(ai->aeb_slab_cache, aeb);
	}
1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340

	/* Destroy the volume RB-tree */
	rb = ai->volumes.rb_node;
	while (rb) {
		if (rb->rb_left)
			rb = rb->rb_left;
		else if (rb->rb_right)
			rb = rb->rb_right;
		else {
			av = rb_entry(rb, struct ubi_ainf_volume, rb);

			rb = rb_parent(rb);
			if (rb) {
				if (rb->rb_left == &av->rb)
					rb->rb_left = NULL;
				else
					rb->rb_right = NULL;
			}

			destroy_av(ai, av);
		}
	}

1341
	kmem_cache_destroy(ai->aeb_slab_cache);
1342 1343 1344
	kfree(ai);
}

A
Artem B. Bityutskiy 已提交
1345
/**
1346
 * scan_all - scan entire MTD device.
A
Artem B. Bityutskiy 已提交
1347
 * @ubi: UBI device description object
1348 1349
 * @ai: attach info object
 * @start: start scanning at this PEB
A
Artem B. Bityutskiy 已提交
1350 1351
 *
 * This function does full scanning of an MTD device and returns complete
1352 1353
 * information about it in form of a "struct ubi_attach_info" object. In case
 * of failure, an error code is returned.
A
Artem B. Bityutskiy 已提交
1354
 */
1355 1356
static int scan_all(struct ubi_device *ubi, struct ubi_attach_info *ai,
		    int start)
A
Artem B. Bityutskiy 已提交
1357 1358 1359
{
	int err, pnum;
	struct rb_node *rb1, *rb2;
A
Artem Bityutskiy 已提交
1360
	struct ubi_ainf_volume *av;
A
Artem Bityutskiy 已提交
1361
	struct ubi_ainf_peb *aeb;
A
Artem B. Bityutskiy 已提交
1362 1363

	err = -ENOMEM;
1364

A
Artem B. Bityutskiy 已提交
1365 1366
	ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
	if (!ech)
1367
		return err;
A
Artem B. Bityutskiy 已提交
1368

1369
	vidh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
A
Artem B. Bityutskiy 已提交
1370 1371 1372
	if (!vidh)
		goto out_ech;

1373
	for (pnum = start; pnum < ubi->peb_count; pnum++) {
A
Artem B. Bityutskiy 已提交
1374 1375
		cond_resched();

1376
		dbg_gen("process PEB %d", pnum);
1377
		err = scan_peb(ubi, ai, pnum, false);
A
Artem B. Bityutskiy 已提交
1378 1379 1380 1381
		if (err < 0)
			goto out_vidh;
	}

1382
	ubi_msg(ubi, "scanning is finished");
A
Artem B. Bityutskiy 已提交
1383

A
Artem Bityutskiy 已提交
1384
	/* Calculate mean erase counter */
A
Artem Bityutskiy 已提交
1385 1386
	if (ai->ec_count)
		ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count);
A
Artem B. Bityutskiy 已提交
1387

1388
	err = late_analysis(ubi, ai);
1389 1390
	if (err)
		goto out_vidh;
1391

A
Artem B. Bityutskiy 已提交
1392 1393 1394 1395
	/*
	 * In case of unknown erase counter we use the mean erase counter
	 * value.
	 */
A
Artem Bityutskiy 已提交
1396 1397
	ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
		ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
1398
			if (aeb->ec == UBI_UNKNOWN)
A
Artem Bityutskiy 已提交
1399
				aeb->ec = ai->mean_ec;
A
Artem B. Bityutskiy 已提交
1400 1401
	}

A
Artem Bityutskiy 已提交
1402
	list_for_each_entry(aeb, &ai->free, u.list) {
1403
		if (aeb->ec == UBI_UNKNOWN)
A
Artem Bityutskiy 已提交
1404
			aeb->ec = ai->mean_ec;
A
Artem B. Bityutskiy 已提交
1405 1406
	}

A
Artem Bityutskiy 已提交
1407
	list_for_each_entry(aeb, &ai->corr, u.list)
1408
		if (aeb->ec == UBI_UNKNOWN)
A
Artem Bityutskiy 已提交
1409
			aeb->ec = ai->mean_ec;
A
Artem B. Bityutskiy 已提交
1410

A
Artem Bityutskiy 已提交
1411
	list_for_each_entry(aeb, &ai->erase, u.list)
1412
		if (aeb->ec == UBI_UNKNOWN)
A
Artem Bityutskiy 已提交
1413
			aeb->ec = ai->mean_ec;
A
Artem B. Bityutskiy 已提交
1414

A
Artem Bityutskiy 已提交
1415
	err = self_check_ai(ubi, ai);
1416
	if (err)
A
Artem B. Bityutskiy 已提交
1417 1418 1419 1420 1421
		goto out_vidh;

	ubi_free_vid_hdr(ubi, vidh);
	kfree(ech);

1422
	return 0;
A
Artem B. Bityutskiy 已提交
1423 1424 1425 1426 1427

out_vidh:
	ubi_free_vid_hdr(ubi, vidh);
out_ech:
	kfree(ech);
1428 1429 1430
	return err;
}

1431
static struct ubi_attach_info *alloc_ai(void)
1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442
{
	struct ubi_attach_info *ai;

	ai = kzalloc(sizeof(struct ubi_attach_info), GFP_KERNEL);
	if (!ai)
		return ai;

	INIT_LIST_HEAD(&ai->corr);
	INIT_LIST_HEAD(&ai->free);
	INIT_LIST_HEAD(&ai->erase);
	INIT_LIST_HEAD(&ai->alien);
1443
	INIT_LIST_HEAD(&ai->fastmap);
1444
	ai->volumes = RB_ROOT;
1445
	ai->aeb_slab_cache = kmem_cache_create("ubi_aeb_slab_cache",
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
					       sizeof(struct ubi_ainf_peb),
					       0, 0, NULL);
	if (!ai->aeb_slab_cache) {
		kfree(ai);
		ai = NULL;
	}

	return ai;
}

1456 1457 1458
#ifdef CONFIG_MTD_UBI_FASTMAP

/**
1459
 * scan_fast - try to find a fastmap and attach from it.
1460 1461 1462 1463 1464 1465 1466 1467
 * @ubi: UBI device description object
 * @ai: attach info object
 *
 * Returns 0 on success, negative return values indicate an internal
 * error.
 * UBI_NO_FASTMAP denotes that no fastmap was found.
 * UBI_BAD_FASTMAP denotes that the found fastmap was invalid.
 */
1468
static int scan_fast(struct ubi_device *ubi, struct ubi_attach_info **ai)
1469
{
1470 1471
	int err, pnum;
	struct ubi_attach_info *scan_ai;
1472 1473 1474

	err = -ENOMEM;

1475 1476 1477 1478
	scan_ai = alloc_ai();
	if (!scan_ai)
		goto out;

1479 1480
	ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
	if (!ech)
1481
		goto out_ai;
1482 1483 1484 1485 1486 1487 1488 1489 1490

	vidh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
	if (!vidh)
		goto out_ech;

	for (pnum = 0; pnum < UBI_FM_MAX_START; pnum++) {
		cond_resched();

		dbg_gen("process PEB %d", pnum);
1491
		err = scan_peb(ubi, scan_ai, pnum, true);
1492 1493 1494 1495 1496 1497 1498
		if (err < 0)
			goto out_vidh;
	}

	ubi_free_vid_hdr(ubi, vidh);
	kfree(ech);

1499 1500 1501 1502 1503
	if (scan_ai->force_full_scan)
		err = UBI_NO_FASTMAP;
	else
		err = ubi_scan_fastmap(ubi, *ai, scan_ai);

1504 1505 1506 1507 1508 1509 1510 1511 1512
	if (err) {
		/*
		 * Didn't attach via fastmap, do a full scan but reuse what
		 * we've aready scanned.
		 */
		destroy_ai(*ai);
		*ai = scan_ai;
	} else
		destroy_ai(scan_ai);
1513

1514
	return err;
1515 1516 1517 1518 1519

out_vidh:
	ubi_free_vid_hdr(ubi, vidh);
out_ech:
	kfree(ech);
1520 1521
out_ai:
	destroy_ai(scan_ai);
1522 1523 1524 1525 1526 1527
out:
	return err;
}

#endif

1528 1529 1530
/**
 * ubi_attach - attach an MTD device.
 * @ubi: UBI device descriptor
1531
 * @force_scan: if set to non-zero attach by scanning
1532 1533 1534 1535
 *
 * This function returns zero in case of success and a negative error code in
 * case of failure.
 */
1536
int ubi_attach(struct ubi_device *ubi, int force_scan)
1537 1538 1539 1540
{
	int err;
	struct ubi_attach_info *ai;

1541
	ai = alloc_ai();
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554
	if (!ai)
		return -ENOMEM;

#ifdef CONFIG_MTD_UBI_FASTMAP
	/* On small flash devices we disable fastmap in any case. */
	if ((int)mtd_div_by_eb(ubi->mtd->size, ubi->mtd) <= UBI_FM_MAX_START) {
		ubi->fm_disabled = 1;
		force_scan = 1;
	}

	if (force_scan)
		err = scan_all(ubi, ai, 0);
	else {
1555
		err = scan_fast(ubi, &ai);
1556
		if (err > 0 || mtd_is_eccerr(err)) {
1557 1558
			if (err != UBI_NO_FASTMAP) {
				destroy_ai(ai);
1559
				ai = alloc_ai();
1560 1561 1562
				if (!ai)
					return -ENOMEM;

1563 1564 1565 1566
				err = scan_all(ubi, ai, 0);
			} else {
				err = scan_all(ubi, ai, UBI_FM_MAX_START);
			}
1567 1568 1569 1570 1571 1572 1573
		}
	}
#else
	err = scan_all(ubi, ai, 0);
#endif
	if (err)
		goto out_ai;
1574 1575 1576 1577 1578 1579

	ubi->bad_peb_count = ai->bad_peb_count;
	ubi->good_peb_count = ubi->peb_count - ubi->bad_peb_count;
	ubi->corr_peb_count = ai->corr_peb_count;
	ubi->max_ec = ai->max_ec;
	ubi->mean_ec = ai->mean_ec;
A
Artem Bityutskiy 已提交
1580
	dbg_gen("max. sequence number:       %llu", ai->max_sqnum);
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593

	err = ubi_read_volume_table(ubi, ai);
	if (err)
		goto out_ai;

	err = ubi_wl_init(ubi, ai);
	if (err)
		goto out_vtbl;

	err = ubi_eba_init(ubi, ai);
	if (err)
		goto out_wl;

1594
#ifdef CONFIG_MTD_UBI_FASTMAP
1595
	if (ubi->fm && ubi_dbg_chk_fastmap(ubi)) {
1596 1597
		struct ubi_attach_info *scan_ai;

1598
		scan_ai = alloc_ai();
J
Julia Lawall 已提交
1599 1600
		if (!scan_ai) {
			err = -ENOMEM;
1601
			goto out_wl;
J
Julia Lawall 已提交
1602
		}
1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618

		err = scan_all(ubi, scan_ai, 0);
		if (err) {
			destroy_ai(scan_ai);
			goto out_wl;
		}

		err = self_check_eba(ubi, ai, scan_ai);
		destroy_ai(scan_ai);

		if (err)
			goto out_wl;
	}
#endif

	destroy_ai(ai);
1619 1620 1621 1622 1623 1624 1625 1626
	return 0;

out_wl:
	ubi_wl_close(ubi);
out_vtbl:
	ubi_free_internal_volumes(ubi);
	vfree(ubi->vtbl);
out_ai:
1627
	destroy_ai(ai);
1628 1629 1630
	return err;
}

A
Artem B. Bityutskiy 已提交
1631
/**
A
Artem Bityutskiy 已提交
1632
 * self_check_ai - check the attaching information.
A
Artem B. Bityutskiy 已提交
1633
 * @ubi: UBI device description object
A
Artem Bityutskiy 已提交
1634
 * @ai: attaching information
A
Artem B. Bityutskiy 已提交
1635
 *
A
Artem Bityutskiy 已提交
1636
 * This function returns zero if the attaching information is all right, and a
1637
 * negative error code if not or if an error occurred.
A
Artem B. Bityutskiy 已提交
1638
 */
A
Artem Bityutskiy 已提交
1639
static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai)
A
Artem B. Bityutskiy 已提交
1640 1641 1642
{
	int pnum, err, vols_found = 0;
	struct rb_node *rb1, *rb2;
A
Artem Bityutskiy 已提交
1643
	struct ubi_ainf_volume *av;
A
Artem Bityutskiy 已提交
1644
	struct ubi_ainf_peb *aeb, *last_aeb;
A
Artem B. Bityutskiy 已提交
1645 1646
	uint8_t *buf;

1647
	if (!ubi_dbg_chk_gen(ubi))
A
Artem Bityutskiy 已提交
1648 1649
		return 0;

A
Artem B. Bityutskiy 已提交
1650
	/*
A
Artem Bityutskiy 已提交
1651
	 * At first, check that attaching information is OK.
A
Artem B. Bityutskiy 已提交
1652
	 */
A
Artem Bityutskiy 已提交
1653
	ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
A
Artem B. Bityutskiy 已提交
1654 1655 1656 1657 1658 1659
		int leb_count = 0;

		cond_resched();

		vols_found += 1;

A
Artem Bityutskiy 已提交
1660
		if (ai->is_empty) {
1661
			ubi_err(ubi, "bad is_empty flag");
A
Artem Bityutskiy 已提交
1662
			goto bad_av;
A
Artem B. Bityutskiy 已提交
1663 1664
		}

A
Artem Bityutskiy 已提交
1665 1666 1667
		if (av->vol_id < 0 || av->highest_lnum < 0 ||
		    av->leb_count < 0 || av->vol_type < 0 || av->used_ebs < 0 ||
		    av->data_pad < 0 || av->last_data_size < 0) {
1668
			ubi_err(ubi, "negative values");
A
Artem Bityutskiy 已提交
1669
			goto bad_av;
A
Artem B. Bityutskiy 已提交
1670 1671
		}

A
Artem Bityutskiy 已提交
1672 1673
		if (av->vol_id >= UBI_MAX_VOLUMES &&
		    av->vol_id < UBI_INTERNAL_VOL_START) {
1674
			ubi_err(ubi, "bad vol_id");
A
Artem Bityutskiy 已提交
1675
			goto bad_av;
A
Artem B. Bityutskiy 已提交
1676 1677
		}

A
Artem Bityutskiy 已提交
1678
		if (av->vol_id > ai->highest_vol_id) {
1679
			ubi_err(ubi, "highest_vol_id is %d, but vol_id %d is there",
A
Artem Bityutskiy 已提交
1680
				ai->highest_vol_id, av->vol_id);
A
Artem B. Bityutskiy 已提交
1681 1682 1683
			goto out;
		}

A
Artem Bityutskiy 已提交
1684 1685
		if (av->vol_type != UBI_DYNAMIC_VOLUME &&
		    av->vol_type != UBI_STATIC_VOLUME) {
1686
			ubi_err(ubi, "bad vol_type");
A
Artem Bityutskiy 已提交
1687
			goto bad_av;
A
Artem B. Bityutskiy 已提交
1688 1689
		}

A
Artem Bityutskiy 已提交
1690
		if (av->data_pad > ubi->leb_size / 2) {
1691
			ubi_err(ubi, "bad data_pad");
A
Artem Bityutskiy 已提交
1692
			goto bad_av;
A
Artem B. Bityutskiy 已提交
1693 1694
		}

A
Artem Bityutskiy 已提交
1695
		last_aeb = NULL;
A
Artem Bityutskiy 已提交
1696
		ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
A
Artem B. Bityutskiy 已提交
1697 1698
			cond_resched();

A
Artem Bityutskiy 已提交
1699
			last_aeb = aeb;
A
Artem B. Bityutskiy 已提交
1700 1701
			leb_count += 1;

A
Artem Bityutskiy 已提交
1702
			if (aeb->pnum < 0 || aeb->ec < 0) {
1703
				ubi_err(ubi, "negative values");
A
Artem Bityutskiy 已提交
1704
				goto bad_aeb;
A
Artem B. Bityutskiy 已提交
1705 1706
			}

A
Artem Bityutskiy 已提交
1707
			if (aeb->ec < ai->min_ec) {
1708
				ubi_err(ubi, "bad ai->min_ec (%d), %d found",
A
Artem Bityutskiy 已提交
1709
					ai->min_ec, aeb->ec);
A
Artem Bityutskiy 已提交
1710
				goto bad_aeb;
A
Artem B. Bityutskiy 已提交
1711 1712
			}

A
Artem Bityutskiy 已提交
1713
			if (aeb->ec > ai->max_ec) {
1714
				ubi_err(ubi, "bad ai->max_ec (%d), %d found",
A
Artem Bityutskiy 已提交
1715
					ai->max_ec, aeb->ec);
A
Artem Bityutskiy 已提交
1716
				goto bad_aeb;
A
Artem B. Bityutskiy 已提交
1717 1718
			}

A
Artem Bityutskiy 已提交
1719
			if (aeb->pnum >= ubi->peb_count) {
1720
				ubi_err(ubi, "too high PEB number %d, total PEBs %d",
A
Artem Bityutskiy 已提交
1721 1722
					aeb->pnum, ubi->peb_count);
				goto bad_aeb;
A
Artem B. Bityutskiy 已提交
1723 1724
			}

A
Artem Bityutskiy 已提交
1725 1726
			if (av->vol_type == UBI_STATIC_VOLUME) {
				if (aeb->lnum >= av->used_ebs) {
1727
					ubi_err(ubi, "bad lnum or used_ebs");
A
Artem Bityutskiy 已提交
1728
					goto bad_aeb;
A
Artem B. Bityutskiy 已提交
1729 1730
				}
			} else {
A
Artem Bityutskiy 已提交
1731
				if (av->used_ebs != 0) {
1732
					ubi_err(ubi, "non-zero used_ebs");
A
Artem Bityutskiy 已提交
1733
					goto bad_aeb;
A
Artem B. Bityutskiy 已提交
1734 1735 1736
				}
			}

A
Artem Bityutskiy 已提交
1737
			if (aeb->lnum > av->highest_lnum) {
1738
				ubi_err(ubi, "incorrect highest_lnum or lnum");
A
Artem Bityutskiy 已提交
1739
				goto bad_aeb;
A
Artem B. Bityutskiy 已提交
1740 1741 1742
			}
		}

A
Artem Bityutskiy 已提交
1743
		if (av->leb_count != leb_count) {
1744
			ubi_err(ubi, "bad leb_count, %d objects in the tree",
A
Artem B. Bityutskiy 已提交
1745
				leb_count);
A
Artem Bityutskiy 已提交
1746
			goto bad_av;
A
Artem B. Bityutskiy 已提交
1747 1748
		}

A
Artem Bityutskiy 已提交
1749
		if (!last_aeb)
A
Artem B. Bityutskiy 已提交
1750 1751
			continue;

A
Artem Bityutskiy 已提交
1752
		aeb = last_aeb;
A
Artem B. Bityutskiy 已提交
1753

A
Artem Bityutskiy 已提交
1754
		if (aeb->lnum != av->highest_lnum) {
1755
			ubi_err(ubi, "bad highest_lnum");
A
Artem Bityutskiy 已提交
1756
			goto bad_aeb;
A
Artem B. Bityutskiy 已提交
1757 1758 1759
		}
	}

A
Artem Bityutskiy 已提交
1760
	if (vols_found != ai->vols_found) {
1761
		ubi_err(ubi, "bad ai->vols_found %d, should be %d",
A
Artem Bityutskiy 已提交
1762
			ai->vols_found, vols_found);
A
Artem B. Bityutskiy 已提交
1763 1764 1765
		goto out;
	}

A
Artem Bityutskiy 已提交
1766
	/* Check that attaching information is correct */
A
Artem Bityutskiy 已提交
1767
	ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
A
Artem Bityutskiy 已提交
1768
		last_aeb = NULL;
A
Artem Bityutskiy 已提交
1769
		ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
A
Artem B. Bityutskiy 已提交
1770 1771 1772 1773
			int vol_type;

			cond_resched();

A
Artem Bityutskiy 已提交
1774
			last_aeb = aeb;
A
Artem B. Bityutskiy 已提交
1775

A
Artem Bityutskiy 已提交
1776
			err = ubi_io_read_vid_hdr(ubi, aeb->pnum, vidh, 1);
A
Artem B. Bityutskiy 已提交
1777
			if (err && err != UBI_IO_BITFLIPS) {
1778 1779
				ubi_err(ubi, "VID header is not OK (%d)",
					err);
A
Artem B. Bityutskiy 已提交
1780 1781 1782 1783 1784 1785 1786
				if (err > 0)
					err = -EIO;
				return err;
			}

			vol_type = vidh->vol_type == UBI_VID_DYNAMIC ?
				   UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
A
Artem Bityutskiy 已提交
1787
			if (av->vol_type != vol_type) {
1788
				ubi_err(ubi, "bad vol_type");
A
Artem B. Bityutskiy 已提交
1789 1790 1791
				goto bad_vid_hdr;
			}

A
Artem Bityutskiy 已提交
1792
			if (aeb->sqnum != be64_to_cpu(vidh->sqnum)) {
1793
				ubi_err(ubi, "bad sqnum %llu", aeb->sqnum);
A
Artem B. Bityutskiy 已提交
1794 1795 1796
				goto bad_vid_hdr;
			}

A
Artem Bityutskiy 已提交
1797
			if (av->vol_id != be32_to_cpu(vidh->vol_id)) {
1798
				ubi_err(ubi, "bad vol_id %d", av->vol_id);
A
Artem B. Bityutskiy 已提交
1799 1800 1801
				goto bad_vid_hdr;
			}

A
Artem Bityutskiy 已提交
1802
			if (av->compat != vidh->compat) {
1803
				ubi_err(ubi, "bad compat %d", vidh->compat);
A
Artem B. Bityutskiy 已提交
1804 1805 1806
				goto bad_vid_hdr;
			}

A
Artem Bityutskiy 已提交
1807
			if (aeb->lnum != be32_to_cpu(vidh->lnum)) {
1808
				ubi_err(ubi, "bad lnum %d", aeb->lnum);
A
Artem B. Bityutskiy 已提交
1809 1810 1811
				goto bad_vid_hdr;
			}

A
Artem Bityutskiy 已提交
1812
			if (av->used_ebs != be32_to_cpu(vidh->used_ebs)) {
1813
				ubi_err(ubi, "bad used_ebs %d", av->used_ebs);
A
Artem B. Bityutskiy 已提交
1814 1815 1816
				goto bad_vid_hdr;
			}

A
Artem Bityutskiy 已提交
1817
			if (av->data_pad != be32_to_cpu(vidh->data_pad)) {
1818
				ubi_err(ubi, "bad data_pad %d", av->data_pad);
A
Artem B. Bityutskiy 已提交
1819 1820 1821 1822
				goto bad_vid_hdr;
			}
		}

A
Artem Bityutskiy 已提交
1823
		if (!last_aeb)
A
Artem B. Bityutskiy 已提交
1824 1825
			continue;

A
Artem Bityutskiy 已提交
1826
		if (av->highest_lnum != be32_to_cpu(vidh->lnum)) {
1827
			ubi_err(ubi, "bad highest_lnum %d", av->highest_lnum);
A
Artem B. Bityutskiy 已提交
1828 1829 1830
			goto bad_vid_hdr;
		}

A
Artem Bityutskiy 已提交
1831
		if (av->last_data_size != be32_to_cpu(vidh->data_size)) {
1832 1833
			ubi_err(ubi, "bad last_data_size %d",
				av->last_data_size);
A
Artem B. Bityutskiy 已提交
1834 1835 1836 1837 1838 1839 1840 1841
			goto bad_vid_hdr;
		}
	}

	/*
	 * Make sure that all the physical eraseblocks are in one of the lists
	 * or trees.
	 */
1842
	buf = kzalloc(ubi->peb_count, GFP_KERNEL);
A
Artem B. Bityutskiy 已提交
1843 1844 1845 1846 1847
	if (!buf)
		return -ENOMEM;

	for (pnum = 0; pnum < ubi->peb_count; pnum++) {
		err = ubi_io_is_bad(ubi, pnum);
1848 1849
		if (err < 0) {
			kfree(buf);
A
Artem B. Bityutskiy 已提交
1850
			return err;
1851
		} else if (err)
1852
			buf[pnum] = 1;
A
Artem B. Bityutskiy 已提交
1853 1854
	}

A
Artem Bityutskiy 已提交
1855 1856
	ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb)
		ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
A
Artem Bityutskiy 已提交
1857
			buf[aeb->pnum] = 1;
A
Artem B. Bityutskiy 已提交
1858

A
Artem Bityutskiy 已提交
1859
	list_for_each_entry(aeb, &ai->free, u.list)
A
Artem Bityutskiy 已提交
1860
		buf[aeb->pnum] = 1;
A
Artem B. Bityutskiy 已提交
1861

A
Artem Bityutskiy 已提交
1862
	list_for_each_entry(aeb, &ai->corr, u.list)
A
Artem Bityutskiy 已提交
1863
		buf[aeb->pnum] = 1;
A
Artem B. Bityutskiy 已提交
1864

A
Artem Bityutskiy 已提交
1865
	list_for_each_entry(aeb, &ai->erase, u.list)
A
Artem Bityutskiy 已提交
1866
		buf[aeb->pnum] = 1;
A
Artem B. Bityutskiy 已提交
1867

A
Artem Bityutskiy 已提交
1868
	list_for_each_entry(aeb, &ai->alien, u.list)
A
Artem Bityutskiy 已提交
1869
		buf[aeb->pnum] = 1;
A
Artem B. Bityutskiy 已提交
1870 1871 1872

	err = 0;
	for (pnum = 0; pnum < ubi->peb_count; pnum++)
1873
		if (!buf[pnum]) {
1874
			ubi_err(ubi, "PEB %d is not referred", pnum);
A
Artem B. Bityutskiy 已提交
1875 1876 1877 1878 1879 1880 1881 1882
			err = 1;
		}

	kfree(buf);
	if (err)
		goto out;
	return 0;

A
Artem Bityutskiy 已提交
1883
bad_aeb:
1884
	ubi_err(ubi, "bad attaching information about LEB %d", aeb->lnum);
A
Artem Bityutskiy 已提交
1885
	ubi_dump_aeb(aeb, 0);
A
Artem Bityutskiy 已提交
1886
	ubi_dump_av(av);
A
Artem B. Bityutskiy 已提交
1887 1888
	goto out;

A
Artem Bityutskiy 已提交
1889
bad_av:
1890
	ubi_err(ubi, "bad attaching information about volume %d", av->vol_id);
A
Artem Bityutskiy 已提交
1891
	ubi_dump_av(av);
A
Artem B. Bityutskiy 已提交
1892 1893 1894
	goto out;

bad_vid_hdr:
1895
	ubi_err(ubi, "bad attaching information about volume %d", av->vol_id);
A
Artem Bityutskiy 已提交
1896
	ubi_dump_av(av);
1897
	ubi_dump_vid_hdr(vidh);
A
Artem B. Bityutskiy 已提交
1898 1899

out:
1900
	dump_stack();
1901
	return -EINVAL;
A
Artem B. Bityutskiy 已提交
1902
}