blob: 0ea105b1a68bb0c92821102060b273221a30a913 [file] [log] [blame]
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001/*
2 * Copyright (c) International Business Machines Corp., 2006
3 * Copyright (c) Nokia Corporation, 2006, 2007
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 * Author: Artem Bityutskiy (Битюцкий Артём)
20 */
21
22/*
23 * This file includes volume table manipulation code. The volume table is an
24 * on-flash table containing volume meta-data like name, number of reserved
25 * physical eraseblocks, type, etc. The volume table is stored in the so-called
26 * "layout volume".
27 *
28 * The layout volume is an internal volume which is organized as follows. It
29 * consists of two logical eraseblocks - LEB 0 and LEB 1. Each logical
30 * eraseblock stores one volume table copy, i.e. LEB 0 and LEB 1 duplicate each
31 * other. This redundancy guarantees robustness to unclean reboots. The volume
32 * table is basically an array of volume table records. Each record contains
33 * full information about the volume and protected by a CRC checksum.
34 *
35 * The volume table is changed, it is first changed in RAM. Then LEB 0 is
36 * erased, and the updated volume table is written back to LEB 0. Then same for
37 * LEB 1. This scheme guarantees recoverability from unclean reboots.
38 *
39 * In this UBI implementation the on-flash volume table does not contain any
40 * information about how many data static volumes contain. This information may
41 * be found from the scanning data.
42 *
43 * But it would still be beneficial to store this information in the volume
44 * table. For example, suppose we have a static volume X, and all its physical
45 * eraseblocks became bad for some reasons. Suppose we are attaching the
46 * corresponding MTD device, the scanning has found no logical eraseblocks
47 * corresponding to the volume X. According to the volume table volume X does
48 * exist. So we don't know whether it is just empty or all its physical
49 * eraseblocks went bad. So we cannot alarm the user about this corruption.
50 *
51 * The volume table also stores so-called "update marker", which is used for
52 * volume updates. Before updating the volume, the update marker is set, and
53 * after the update operation is finished, the update marker is cleared. So if
54 * the update operation was interrupted (e.g. by an unclean reboot) - the
55 * update marker is still there and we know that the volume's contents is
56 * damaged.
57 */
58
59#include <linux/crc32.h>
60#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090061#include <linux/slab.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040062#include <asm/div64.h>
63#include "ubi.h"
64
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +030065static void self_vtbl_check(const struct ubi_device *ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040066
67/* Empty volume table record */
68static struct ubi_vtbl_record empty_vtbl_record;
69
70/**
71 * ubi_change_vtbl_record - change volume table record.
72 * @ubi: UBI device description object
73 * @idx: table index to change
74 * @vtbl_rec: new volume table record
75 *
76 * This function changes volume table record @idx. If @vtbl_rec is %NULL, empty
77 * volume table record is written. The caller does not have to calculate CRC of
78 * the record as it is done by this function. Returns zero in case of success
79 * and a negative error code in case of failure.
80 */
81int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
82 struct ubi_vtbl_record *vtbl_rec)
83{
84 int i, err;
85 uint32_t crc;
Artem Bityutskiy89b96b62007-12-16 20:00:38 +020086 struct ubi_volume *layout_vol;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040087
88 ubi_assert(idx >= 0 && idx < ubi->vtbl_slots);
Artem Bityutskiy91f2d532008-01-24 11:23:23 +020089 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)];
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040090
91 if (!vtbl_rec)
92 vtbl_rec = &empty_vtbl_record;
93 else {
94 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +030095 vtbl_rec->crc = cpu_to_be32(crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040096 }
97
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040098 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record));
99 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200100 err = ubi_eba_unmap_leb(ubi, layout_vol, i);
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200101 if (err)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400102 return err;
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200103
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200104 err = ubi_eba_write_leb(ubi, layout_vol, i, ubi->vtbl, 0,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200105 ubi->vtbl_size);
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200106 if (err)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400107 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400108 }
109
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300110 self_vtbl_check(ubi);
Artem Bityutskiy6dc4a872008-02-01 13:48:49 +0200111 return 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400112}
113
114/**
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300115 * ubi_vtbl_rename_volumes - rename UBI volumes in the volume table.
116 * @ubi: UBI device description object
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300117 * @rename_list: list of &struct ubi_rename_entry objects
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300118 *
119 * This function re-names multiple volumes specified in @req in the volume
120 * table. Returns zero in case of success and a negative error code in case of
121 * failure.
122 */
123int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
124 struct list_head *rename_list)
125{
126 int i, err;
127 struct ubi_rename_entry *re;
128 struct ubi_volume *layout_vol;
129
130 list_for_each_entry(re, rename_list, list) {
131 uint32_t crc;
132 struct ubi_volume *vol = re->desc->vol;
133 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id];
134
135 if (re->remove) {
136 memcpy(vtbl_rec, &empty_vtbl_record,
137 sizeof(struct ubi_vtbl_record));
138 continue;
139 }
140
141 vtbl_rec->name_len = cpu_to_be16(re->new_name_len);
142 memcpy(vtbl_rec->name, re->new_name, re->new_name_len);
143 memset(vtbl_rec->name + re->new_name_len, 0,
144 UBI_VOL_NAME_MAX + 1 - re->new_name_len);
145 crc = crc32(UBI_CRC32_INIT, vtbl_rec,
146 UBI_VTBL_RECORD_SIZE_CRC);
147 vtbl_rec->crc = cpu_to_be32(crc);
148 }
149
150 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)];
151 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
152 err = ubi_eba_unmap_leb(ubi, layout_vol, i);
153 if (err)
154 return err;
155
156 err = ubi_eba_write_leb(ubi, layout_vol, i, ubi->vtbl, 0,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200157 ubi->vtbl_size);
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300158 if (err)
159 return err;
160 }
161
162 return 0;
163}
164
165/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300166 * vtbl_check - check if volume table is not corrupted and sensible.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400167 * @ubi: UBI device description object
168 * @vtbl: volume table
169 *
170 * This function returns zero if @vtbl is all right, %1 if CRC is incorrect,
171 * and %-EINVAL if it contains inconsistent data.
172 */
173static int vtbl_check(const struct ubi_device *ubi,
174 const struct ubi_vtbl_record *vtbl)
175{
176 int i, n, reserved_pebs, alignment, data_pad, vol_type, name_len;
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300177 int upd_marker, err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400178 uint32_t crc;
179 const char *name;
180
181 for (i = 0; i < ubi->vtbl_slots; i++) {
182 cond_resched();
183
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300184 reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
185 alignment = be32_to_cpu(vtbl[i].alignment);
186 data_pad = be32_to_cpu(vtbl[i].data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400187 upd_marker = vtbl[i].upd_marker;
188 vol_type = vtbl[i].vol_type;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300189 name_len = be16_to_cpu(vtbl[i].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400190 name = &vtbl[i].name[0];
191
192 crc = crc32(UBI_CRC32_INIT, &vtbl[i], UBI_VTBL_RECORD_SIZE_CRC);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300193 if (be32_to_cpu(vtbl[i].crc) != crc) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400194 ubi_err("bad CRC at record %u: %#08x, not %#08x",
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300195 i, crc, be32_to_cpu(vtbl[i].crc));
Artem Bityutskiy1f021e1d2012-05-16 17:56:50 +0300196 ubi_dump_vtbl_record(&vtbl[i], i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400197 return 1;
198 }
199
200 if (reserved_pebs == 0) {
201 if (memcmp(&vtbl[i], &empty_vtbl_record,
202 UBI_VTBL_RECORD_SIZE)) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300203 err = 2;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400204 goto bad;
205 }
206 continue;
207 }
208
209 if (reserved_pebs < 0 || alignment < 0 || data_pad < 0 ||
210 name_len < 0) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300211 err = 3;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400212 goto bad;
213 }
214
215 if (alignment > ubi->leb_size || alignment == 0) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300216 err = 4;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400217 goto bad;
218 }
219
Kyungmin Parkcadb40c2008-05-22 10:32:18 +0900220 n = alignment & (ubi->min_io_size - 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400221 if (alignment != 1 && n) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300222 err = 5;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400223 goto bad;
224 }
225
226 n = ubi->leb_size % alignment;
227 if (data_pad != n) {
Artem Bityutskiye2986822012-05-16 18:39:56 +0300228 ubi_err("bad data_pad, has to be %d", n);
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300229 err = 6;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400230 goto bad;
231 }
232
233 if (vol_type != UBI_VID_DYNAMIC && vol_type != UBI_VID_STATIC) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300234 err = 7;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400235 goto bad;
236 }
237
238 if (upd_marker != 0 && upd_marker != 1) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300239 err = 8;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400240 goto bad;
241 }
242
243 if (reserved_pebs > ubi->good_peb_count) {
Artem Bityutskiye2986822012-05-16 18:39:56 +0300244 ubi_err("too large reserved_pebs %d, good PEBs %d",
Deepak Saxena762a9f22008-10-08 12:56:24 -0700245 reserved_pebs, ubi->good_peb_count);
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300246 err = 9;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400247 goto bad;
248 }
249
250 if (name_len > UBI_VOL_NAME_MAX) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300251 err = 10;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400252 goto bad;
253 }
254
255 if (name[0] == '\0') {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300256 err = 11;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400257 goto bad;
258 }
259
260 if (name_len != strnlen(name, name_len + 1)) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300261 err = 12;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400262 goto bad;
263 }
264 }
265
266 /* Checks that all names are unique */
267 for (i = 0; i < ubi->vtbl_slots - 1; i++) {
268 for (n = i + 1; n < ubi->vtbl_slots; n++) {
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300269 int len1 = be16_to_cpu(vtbl[i].name_len);
270 int len2 = be16_to_cpu(vtbl[n].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400271
272 if (len1 > 0 && len1 == len2 &&
273 !strncmp(vtbl[i].name, vtbl[n].name, len1)) {
274 ubi_err("volumes %d and %d have the same name"
275 " \"%s\"", i, n, vtbl[i].name);
Artem Bityutskiy1f021e1d2012-05-16 17:56:50 +0300276 ubi_dump_vtbl_record(&vtbl[i], i);
277 ubi_dump_vtbl_record(&vtbl[n], n);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400278 return -EINVAL;
279 }
280 }
281 }
282
283 return 0;
284
285bad:
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300286 ubi_err("volume table check failed: record %d, error %d", i, err);
Artem Bityutskiy1f021e1d2012-05-16 17:56:50 +0300287 ubi_dump_vtbl_record(&vtbl[i], i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400288 return -EINVAL;
289}
290
291/**
292 * create_vtbl - create a copy of volume table.
293 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300294 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400295 * @copy: number of the volume table copy
296 * @vtbl: contents of the volume table
297 *
298 * This function returns zero in case of success and a negative error code in
299 * case of failure.
300 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300301static int create_vtbl(struct ubi_device *ubi, struct ubi_attach_info *ai,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400302 int copy, void *vtbl)
303{
304 int err, tries = 0;
Richard Weinberger6bdccff2011-12-22 16:12:57 +0100305 struct ubi_vid_hdr *vid_hdr;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300306 struct ubi_ainf_peb *new_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400307
308 ubi_msg("create volume table (copy #%d)", copy + 1);
309
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300310 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400311 if (!vid_hdr)
312 return -ENOMEM;
313
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400314retry:
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300315 new_aeb = ubi_scan_get_free_peb(ubi, ai);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300316 if (IS_ERR(new_aeb)) {
317 err = PTR_ERR(new_aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400318 goto out_free;
319 }
320
Richard Weinberger1f4f4342012-01-10 17:57:03 +0100321 vid_hdr->vol_type = UBI_LAYOUT_VOLUME_TYPE;
Artem Bityutskiy91f2d532008-01-24 11:23:23 +0200322 vid_hdr->vol_id = cpu_to_be32(UBI_LAYOUT_VOLUME_ID);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400323 vid_hdr->compat = UBI_LAYOUT_VOLUME_COMPAT;
324 vid_hdr->data_size = vid_hdr->used_ebs =
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300325 vid_hdr->data_pad = cpu_to_be32(0);
326 vid_hdr->lnum = cpu_to_be32(copy);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300327 vid_hdr->sqnum = cpu_to_be64(++ai->max_sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400328
329 /* The EC header is already there, write the VID header */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300330 err = ubi_io_write_vid_hdr(ubi, new_aeb->pnum, vid_hdr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400331 if (err)
332 goto write_error;
333
334 /* Write the layout volume contents */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300335 err = ubi_io_write_data(ubi, vtbl, new_aeb->pnum, 0, ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400336 if (err)
337 goto write_error;
338
339 /*
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300340 * And add it to the attaching information. Don't delete the old version
Artem Bityutskiy4788b602011-06-03 19:41:00 +0300341 * of this LEB as it will be deleted and freed in 'ubi_scan_add_used()'.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400342 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300343 err = ubi_scan_add_used(ubi, ai, new_aeb->pnum, new_aeb->ec,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400344 vid_hdr, 0);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300345 kfree(new_aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400346 ubi_free_vid_hdr(ubi, vid_hdr);
347 return err;
348
349write_error:
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300350 if (err == -EIO && ++tries <= 5) {
351 /*
352 * Probably this physical eraseblock went bad, try to pick
353 * another one.
354 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300355 list_add(&new_aeb->u.list, &ai->erase);
Florin Malitac4e90ec2007-05-03 11:49:57 -0400356 goto retry;
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300357 }
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300358 kfree(new_aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400359out_free:
360 ubi_free_vid_hdr(ubi, vid_hdr);
361 return err;
362
363}
364
365/**
366 * process_lvol - process the layout volume.
367 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300368 * @ai: attaching information
Artem Bityutskiy517af482012-05-17 14:38:34 +0300369 * @av: layout volume attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400370 *
371 * This function is responsible for reading the layout volume, ensuring it is
372 * not corrupted, and recovering from corruptions if needed. Returns volume
373 * table in case of success and a negative error code in case of failure.
374 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300375static struct ubi_vtbl_record *process_lvol(struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300376 struct ubi_attach_info *ai,
Artem Bityutskiy517af482012-05-17 14:38:34 +0300377 struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400378{
379 int err;
380 struct rb_node *rb;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300381 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400382 struct ubi_vtbl_record *leb[UBI_LAYOUT_VOLUME_EBS] = { NULL, NULL };
383 int leb_corrupted[UBI_LAYOUT_VOLUME_EBS] = {1, 1};
384
385 /*
386 * UBI goes through the following steps when it changes the layout
387 * volume:
388 * a. erase LEB 0;
389 * b. write new data to LEB 0;
390 * c. erase LEB 1;
391 * d. write new data to LEB 1.
392 *
393 * Before the change, both LEBs contain the same data.
394 *
395 * Due to unclean reboots, the contents of LEB 0 may be lost, but there
396 * should LEB 1. So it is OK if LEB 0 is corrupted while LEB 1 is not.
397 * Similarly, LEB 1 may be lost, but there should be LEB 0. And
398 * finally, unclean reboots may result in a situation when neither LEB
399 * 0 nor LEB 1 are corrupted, but they are different. In this case, LEB
400 * 0 contains more recent information.
401 *
402 * So the plan is to first check LEB 0. Then
Shinya Kuribayashibe436f62010-05-06 19:22:09 +0900403 * a. if LEB 0 is OK, it must be containing the most recent data; then
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400404 * we compare it with LEB 1, and if they are different, we copy LEB
405 * 0 to LEB 1;
406 * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LEB 1
407 * to LEB 0.
408 */
409
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300410 dbg_gen("check layout volume");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400411
412 /* Read both LEB 0 and LEB 1 into memory */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300413 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300414 leb[aeb->lnum] = vzalloc(ubi->vtbl_size);
415 if (!leb[aeb->lnum]) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400416 err = -ENOMEM;
417 goto out_free;
418 }
419
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300420 err = ubi_io_read_data(ubi, leb[aeb->lnum], aeb->pnum, 0,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400421 ubi->vtbl_size);
Brian Norrisd57f40542011-09-20 18:34:25 -0700422 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err))
Artem Bityutskiybeeea632008-05-20 09:54:02 +0300423 /*
424 * Scrub the PEB later. Note, -EBADMSG indicates an
425 * uncorrectable ECC error, but we have our own CRC and
426 * the data will be checked later. If the data is OK,
427 * the PEB will be scrubbed (because we set
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300428 * aeb->scrub). If the data is not OK, the contents of
Artem Bityutskiybeeea632008-05-20 09:54:02 +0300429 * the PEB will be recovered from the second copy, and
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300430 * aeb->scrub will be cleared in
Artem Bityutskiybeeea632008-05-20 09:54:02 +0300431 * 'ubi_scan_add_used()'.
432 */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300433 aeb->scrub = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400434 else if (err)
435 goto out_free;
436 }
437
438 err = -EINVAL;
439 if (leb[0]) {
440 leb_corrupted[0] = vtbl_check(ubi, leb[0]);
441 if (leb_corrupted[0] < 0)
442 goto out_free;
443 }
444
445 if (!leb_corrupted[0]) {
446 /* LEB 0 is OK */
447 if (leb[1])
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300448 leb_corrupted[1] = memcmp(leb[0], leb[1],
449 ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400450 if (leb_corrupted[1]) {
451 ubi_warn("volume table copy #2 is corrupted");
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300452 err = create_vtbl(ubi, ai, 1, leb[0]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400453 if (err)
454 goto out_free;
455 ubi_msg("volume table was restored");
456 }
457
458 /* Both LEB 1 and LEB 2 are OK and consistent */
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300459 vfree(leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400460 return leb[0];
461 } else {
462 /* LEB 0 is corrupted or does not exist */
463 if (leb[1]) {
464 leb_corrupted[1] = vtbl_check(ubi, leb[1]);
465 if (leb_corrupted[1] < 0)
466 goto out_free;
467 }
468 if (leb_corrupted[1]) {
469 /* Both LEB 0 and LEB 1 are corrupted */
470 ubi_err("both volume tables are corrupted");
471 goto out_free;
472 }
473
474 ubi_warn("volume table copy #1 is corrupted");
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300475 err = create_vtbl(ubi, ai, 0, leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400476 if (err)
477 goto out_free;
478 ubi_msg("volume table was restored");
479
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300480 vfree(leb[0]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400481 return leb[1];
482 }
483
484out_free:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300485 vfree(leb[0]);
486 vfree(leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400487 return ERR_PTR(err);
488}
489
490/**
491 * create_empty_lvol - create empty layout volume.
492 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300493 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400494 *
495 * This function returns volume table contents in case of success and a
496 * negative error code in case of failure.
497 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300498static struct ubi_vtbl_record *create_empty_lvol(struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300499 struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400500{
501 int i;
502 struct ubi_vtbl_record *vtbl;
503
Joe Perches309b5e42010-11-04 20:07:40 -0700504 vtbl = vzalloc(ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400505 if (!vtbl)
506 return ERR_PTR(-ENOMEM);
507
508 for (i = 0; i < ubi->vtbl_slots; i++)
509 memcpy(&vtbl[i], &empty_vtbl_record, UBI_VTBL_RECORD_SIZE);
510
511 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
512 int err;
513
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300514 err = create_vtbl(ubi, ai, i, vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400515 if (err) {
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300516 vfree(vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400517 return ERR_PTR(err);
518 }
519 }
520
521 return vtbl;
522}
523
524/**
525 * init_volumes - initialize volume information for existing volumes.
526 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300527 * @ai: scanning information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400528 * @vtbl: volume table
529 *
530 * This function allocates volume description objects for existing volumes.
531 * Returns zero in case of success and a negative error code in case of
532 * failure.
533 */
Artem Bityutskiyafc15a82012-05-17 07:46:17 +0300534static int init_volumes(struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300535 const struct ubi_attach_info *ai,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400536 const struct ubi_vtbl_record *vtbl)
537{
538 int i, reserved_pebs = 0;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300539 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400540 struct ubi_volume *vol;
541
542 for (i = 0; i < ubi->vtbl_slots; i++) {
543 cond_resched();
544
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300545 if (be32_to_cpu(vtbl[i].reserved_pebs) == 0)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400546 continue; /* Empty record */
547
548 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
549 if (!vol)
550 return -ENOMEM;
551
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300552 vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
553 vol->alignment = be32_to_cpu(vtbl[i].alignment);
554 vol->data_pad = be32_to_cpu(vtbl[i].data_pad);
Peter Hortonff998792010-01-05 11:14:36 +0000555 vol->upd_marker = vtbl[i].upd_marker;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400556 vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ?
557 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300558 vol->name_len = be16_to_cpu(vtbl[i].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400559 vol->usable_leb_size = ubi->leb_size - vol->data_pad;
560 memcpy(vol->name, vtbl[i].name, vol->name_len);
561 vol->name[vol->name_len] = '\0';
562 vol->vol_id = i;
563
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200564 if (vtbl[i].flags & UBI_VTBL_AUTORESIZE_FLG) {
565 /* Auto re-size flag may be set only for one volume */
566 if (ubi->autoresize_vol_id != -1) {
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200567 ubi_err("more than one auto-resize volume (%d "
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200568 "and %d)", ubi->autoresize_vol_id, i);
Adrian Bunkf7f028372008-03-03 20:07:52 +0200569 kfree(vol);
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200570 return -EINVAL;
571 }
572
573 ubi->autoresize_vol_id = i;
574 }
575
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400576 ubi_assert(!ubi->volumes[i]);
577 ubi->volumes[i] = vol;
578 ubi->vol_count += 1;
579 vol->ubi = ubi;
580 reserved_pebs += vol->reserved_pebs;
581
582 /*
583 * In case of dynamic volume UBI knows nothing about how many
584 * data is stored there. So assume the whole volume is used.
585 */
586 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
587 vol->used_ebs = vol->reserved_pebs;
588 vol->last_eb_bytes = vol->usable_leb_size;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300589 vol->used_bytes =
590 (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400591 continue;
592 }
593
594 /* Static volumes only */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300595 av = ubi_scan_find_av(ai, i);
596 if (!av) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400597 /*
598 * No eraseblocks belonging to this volume found. We
599 * don't actually know whether this static volume is
600 * completely corrupted or just contains no data. And
601 * we cannot know this as long as data size is not
602 * stored on flash. So we just assume the volume is
603 * empty. FIXME: this should be handled.
604 */
605 continue;
606 }
607
Artem Bityutskiy517af482012-05-17 14:38:34 +0300608 if (av->leb_count != av->used_ebs) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400609 /*
610 * We found a static volume which misses several
611 * eraseblocks. Treat it as corrupted.
612 */
613 ubi_warn("static volume %d misses %d LEBs - corrupted",
Artem Bityutskiy517af482012-05-17 14:38:34 +0300614 av->vol_id, av->used_ebs - av->leb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400615 vol->corrupted = 1;
616 continue;
617 }
618
Artem Bityutskiy517af482012-05-17 14:38:34 +0300619 vol->used_ebs = av->used_ebs;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300620 vol->used_bytes =
621 (long long)(vol->used_ebs - 1) * vol->usable_leb_size;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300622 vol->used_bytes += av->last_data_size;
623 vol->last_eb_bytes = av->last_data_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400624 }
625
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200626 /* And add the layout volume */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400627 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
628 if (!vol)
629 return -ENOMEM;
630
631 vol->reserved_pebs = UBI_LAYOUT_VOLUME_EBS;
Richard Weinberger1f4f4342012-01-10 17:57:03 +0100632 vol->alignment = UBI_LAYOUT_VOLUME_ALIGN;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400633 vol->vol_type = UBI_DYNAMIC_VOLUME;
634 vol->name_len = sizeof(UBI_LAYOUT_VOLUME_NAME) - 1;
635 memcpy(vol->name, UBI_LAYOUT_VOLUME_NAME, vol->name_len + 1);
636 vol->usable_leb_size = ubi->leb_size;
637 vol->used_ebs = vol->reserved_pebs;
638 vol->last_eb_bytes = vol->reserved_pebs;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300639 vol->used_bytes =
640 (long long)vol->used_ebs * (ubi->leb_size - vol->data_pad);
Artem Bityutskiy91f2d532008-01-24 11:23:23 +0200641 vol->vol_id = UBI_LAYOUT_VOLUME_ID;
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200642 vol->ref_count = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400643
644 ubi_assert(!ubi->volumes[i]);
645 ubi->volumes[vol_id2idx(ubi, vol->vol_id)] = vol;
646 reserved_pebs += vol->reserved_pebs;
647 ubi->vol_count += 1;
648 vol->ubi = ubi;
649
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300650 if (reserved_pebs > ubi->avail_pebs) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400651 ubi_err("not enough PEBs, required %d, available %d",
652 reserved_pebs, ubi->avail_pebs);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300653 if (ubi->corr_peb_count)
654 ubi_err("%d PEBs are corrupted and not used",
655 ubi->corr_peb_count);
656 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400657 ubi->rsvd_pebs += reserved_pebs;
658 ubi->avail_pebs -= reserved_pebs;
659
660 return 0;
661}
662
663/**
Artem Bityutskiy517af482012-05-17 14:38:34 +0300664 * check_av - check volume attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400665 * @vol: UBI volume description object
Artem Bityutskiy517af482012-05-17 14:38:34 +0300666 * @av: volume attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400667 *
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300668 * This function returns zero if the volume attaching information is consistent
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400669 * to the data read from the volume tabla, and %-EINVAL if not.
670 */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300671static int check_av(const struct ubi_volume *vol,
672 const struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400673{
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300674 int err;
675
Artem Bityutskiy517af482012-05-17 14:38:34 +0300676 if (av->highest_lnum >= vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300677 err = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400678 goto bad;
679 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300680 if (av->leb_count > vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300681 err = 2;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400682 goto bad;
683 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300684 if (av->vol_type != vol->vol_type) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300685 err = 3;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400686 goto bad;
687 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300688 if (av->used_ebs > vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300689 err = 4;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400690 goto bad;
691 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300692 if (av->data_pad != vol->data_pad) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300693 err = 5;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400694 goto bad;
695 }
696 return 0;
697
698bad:
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300699 ubi_err("bad attaching information, error %d", err);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300700 ubi_dump_av(av);
Artem Bityutskiy766381f2012-05-16 17:53:17 +0300701 ubi_dump_vol_info(vol);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400702 return -EINVAL;
703}
704
705/**
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300706 * check_scanning_info - check that attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400707 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300708 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400709 *
710 * Even though we protect on-flash data by CRC checksums, we still don't trust
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300711 * the media. This function ensures that attaching information is consistent to
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400712 * the information read from the volume table. Returns zero if the scanning
713 * information is OK and %-EINVAL if it is not.
714 */
715static int check_scanning_info(const struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300716 struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400717{
718 int err, i;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300719 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400720 struct ubi_volume *vol;
721
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300722 if (ai->vols_found > UBI_INT_VOL_COUNT + ubi->vtbl_slots) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400723 ubi_err("scanning found %d volumes, maximum is %d + %d",
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300724 ai->vols_found, UBI_INT_VOL_COUNT, ubi->vtbl_slots);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400725 return -EINVAL;
726 }
727
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300728 if (ai->highest_vol_id >= ubi->vtbl_slots + UBI_INT_VOL_COUNT &&
729 ai->highest_vol_id < UBI_INTERNAL_VOL_START) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400730 ubi_err("too large volume ID %d found by scanning",
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300731 ai->highest_vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400732 return -EINVAL;
733 }
734
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400735 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
736 cond_resched();
737
Artem Bityutskiy517af482012-05-17 14:38:34 +0300738 av = ubi_scan_find_av(ai, i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400739 vol = ubi->volumes[i];
740 if (!vol) {
Artem Bityutskiy517af482012-05-17 14:38:34 +0300741 if (av)
742 ubi_scan_rm_volume(ai, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400743 continue;
744 }
745
746 if (vol->reserved_pebs == 0) {
747 ubi_assert(i < ubi->vtbl_slots);
748
Artem Bityutskiy517af482012-05-17 14:38:34 +0300749 if (!av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400750 continue;
751
752 /*
753 * During scanning we found a volume which does not
754 * exist according to the information in the volume
755 * table. This must have happened due to an unclean
756 * reboot while the volume was being removed. Discard
757 * these eraseblocks.
758 */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300759 ubi_msg("finish volume %d removal", av->vol_id);
760 ubi_scan_rm_volume(ai, av);
761 } else if (av) {
762 err = check_av(vol, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400763 if (err)
764 return err;
765 }
766 }
767
768 return 0;
769}
770
771/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300772 * ubi_read_volume_table - read the volume table.
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 *
776 * This function reads volume table, checks it, recover from errors if needed,
777 * or creates it if needed. Returns zero in case of success and a negative
778 * error code in case of failure.
779 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300780int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400781{
782 int i, err;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300783 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400784
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300785 empty_vtbl_record.crc = cpu_to_be32(0xf116c36b);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400786
787 /*
788 * The number of supported volumes is limited by the eraseblock size
789 * and by the UBI_MAX_VOLUMES constant.
790 */
791 ubi->vtbl_slots = ubi->leb_size / UBI_VTBL_RECORD_SIZE;
792 if (ubi->vtbl_slots > UBI_MAX_VOLUMES)
793 ubi->vtbl_slots = UBI_MAX_VOLUMES;
794
795 ubi->vtbl_size = ubi->vtbl_slots * UBI_VTBL_RECORD_SIZE;
796 ubi->vtbl_size = ALIGN(ubi->vtbl_size, ubi->min_io_size);
797
Artem Bityutskiy517af482012-05-17 14:38:34 +0300798 av = ubi_scan_find_av(ai, UBI_LAYOUT_VOLUME_ID);
799 if (!av) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400800 /*
801 * No logical eraseblocks belonging to the layout volume were
802 * found. This could mean that the flash is just empty. In
803 * this case we create empty layout volume.
804 *
805 * But if flash is not empty this must be a corruption or the
806 * MTD device just contains garbage.
807 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300808 if (ai->is_empty) {
809 ubi->vtbl = create_empty_lvol(ubi, ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400810 if (IS_ERR(ubi->vtbl))
811 return PTR_ERR(ubi->vtbl);
812 } else {
813 ubi_err("the layout volume was not found");
814 return -EINVAL;
815 }
816 } else {
Artem Bityutskiy517af482012-05-17 14:38:34 +0300817 if (av->leb_count > UBI_LAYOUT_VOLUME_EBS) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400818 /* This must not happen with proper UBI images */
Artem Bityutskiye2986822012-05-16 18:39:56 +0300819 ubi_err("too many LEBs (%d) in layout volume",
Artem Bityutskiy517af482012-05-17 14:38:34 +0300820 av->leb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400821 return -EINVAL;
822 }
823
Artem Bityutskiy517af482012-05-17 14:38:34 +0300824 ubi->vtbl = process_lvol(ubi, ai, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400825 if (IS_ERR(ubi->vtbl))
826 return PTR_ERR(ubi->vtbl);
827 }
828
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300829 ubi->avail_pebs = ubi->good_peb_count - ubi->corr_peb_count;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400830
831 /*
832 * The layout volume is OK, initialize the corresponding in-RAM data
833 * structures.
834 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300835 err = init_volumes(ubi, ai, ubi->vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400836 if (err)
837 goto out_free;
838
839 /*
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300840 * Make sure that the attaching information is consistent to the
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400841 * information stored in the volume table.
842 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300843 err = check_scanning_info(ubi, ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400844 if (err)
845 goto out_free;
846
847 return 0;
848
849out_free:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300850 vfree(ubi->vtbl);
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300851 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
852 kfree(ubi->volumes[i]);
853 ubi->volumes[i] = NULL;
854 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400855 return err;
856}
857
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400858/**
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300859 * self_vtbl_check - check volume table.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400860 * @ubi: UBI device description object
861 */
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300862static void self_vtbl_check(const struct ubi_device *ubi)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400863{
Artem Bityutskiy2a734bb2011-05-18 14:53:05 +0300864 if (!ubi->dbg->chk_gen)
Artem Bityutskiy92d124f2011-03-14 18:17:40 +0200865 return;
866
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400867 if (vtbl_check(ubi, ubi->vtbl)) {
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300868 ubi_err("self-check failed");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400869 BUG();
870 }
871}