blob: 1bc82154bb18f6b3e03df72d725778d7dea12227 [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
Richard Weinbergerb81000b2014-10-25 19:43:41 +020033 * full information about the volume and protected by a CRC checksum. Note,
34 * nowadays we use the atomic LEB change operation when updating the volume
35 * table, so we do not really need 2 LEBs anymore, but we preserve the older
36 * design for the backward compatibility reasons.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040037 *
Richard Weinbergerb81000b2014-10-25 19:43:41 +020038 * When the volume table is changed, it is first changed in RAM. Then LEB 0 is
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040039 * erased, and the updated volume table is written back to LEB 0. Then same for
40 * LEB 1. This scheme guarantees recoverability from unclean reboots.
41 *
42 * In this UBI implementation the on-flash volume table does not contain any
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030043 * information about how much data static volumes contain.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040044 *
45 * But it would still be beneficial to store this information in the volume
46 * table. For example, suppose we have a static volume X, and all its physical
47 * eraseblocks became bad for some reasons. Suppose we are attaching the
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030048 * corresponding MTD device, for some reason we find no logical eraseblocks
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040049 * corresponding to the volume X. According to the volume table volume X does
50 * exist. So we don't know whether it is just empty or all its physical
Artem Bityutskiyfbd01072012-05-17 16:12:26 +030051 * eraseblocks went bad. So we cannot alarm the user properly.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040052 *
53 * The volume table also stores so-called "update marker", which is used for
54 * volume updates. Before updating the volume, the update marker is set, and
55 * after the update operation is finished, the update marker is cleared. So if
56 * the update operation was interrupted (e.g. by an unclean reboot) - the
57 * update marker is still there and we know that the volume's contents is
58 * damaged.
59 */
60
61#include <linux/crc32.h>
62#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090063#include <linux/slab.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040064#include <asm/div64.h>
65#include "ubi.h"
66
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +030067static void self_vtbl_check(const struct ubi_device *ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040068
69/* Empty volume table record */
70static struct ubi_vtbl_record empty_vtbl_record;
71
72/**
shengyong28485942015-05-26 10:07:10 +000073 * ubi_update_layout_vol - helper for updatting layout volumes on flash
74 * @ubi: UBI device description object
75 */
76static int ubi_update_layout_vol(struct ubi_device *ubi)
77{
78 struct ubi_volume *layout_vol;
79 int i, err;
80
81 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)];
82 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
83 err = ubi_eba_atomic_leb_change(ubi, layout_vol, i, ubi->vtbl,
84 ubi->vtbl_size);
85 if (err)
86 return err;
87 }
88
89 return 0;
90}
91
92/**
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040093 * ubi_change_vtbl_record - change volume table record.
94 * @ubi: UBI device description object
95 * @idx: table index to change
96 * @vtbl_rec: new volume table record
97 *
98 * This function changes volume table record @idx. If @vtbl_rec is %NULL, empty
99 * volume table record is written. The caller does not have to calculate CRC of
100 * the record as it is done by this function. Returns zero in case of success
101 * and a negative error code in case of failure.
102 */
103int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
104 struct ubi_vtbl_record *vtbl_rec)
105{
shengyong28485942015-05-26 10:07:10 +0000106 int err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400107 uint32_t crc;
108
109 ubi_assert(idx >= 0 && idx < ubi->vtbl_slots);
110
111 if (!vtbl_rec)
112 vtbl_rec = &empty_vtbl_record;
113 else {
114 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300115 vtbl_rec->crc = cpu_to_be32(crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400116 }
117
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400118 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record));
shengyong28485942015-05-26 10:07:10 +0000119 err = ubi_update_layout_vol(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400120
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300121 self_vtbl_check(ubi);
shengyong28485942015-05-26 10:07:10 +0000122 return err ? err : 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400123}
124
125/**
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300126 * ubi_vtbl_rename_volumes - rename UBI volumes in the volume table.
127 * @ubi: UBI device description object
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300128 * @rename_list: list of &struct ubi_rename_entry objects
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300129 *
130 * This function re-names multiple volumes specified in @req in the volume
131 * table. Returns zero in case of success and a negative error code in case of
132 * failure.
133 */
134int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
135 struct list_head *rename_list)
136{
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300137 struct ubi_rename_entry *re;
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300138
139 list_for_each_entry(re, rename_list, list) {
140 uint32_t crc;
141 struct ubi_volume *vol = re->desc->vol;
142 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id];
143
144 if (re->remove) {
145 memcpy(vtbl_rec, &empty_vtbl_record,
146 sizeof(struct ubi_vtbl_record));
147 continue;
148 }
149
150 vtbl_rec->name_len = cpu_to_be16(re->new_name_len);
151 memcpy(vtbl_rec->name, re->new_name, re->new_name_len);
152 memset(vtbl_rec->name + re->new_name_len, 0,
153 UBI_VOL_NAME_MAX + 1 - re->new_name_len);
154 crc = crc32(UBI_CRC32_INIT, vtbl_rec,
155 UBI_VTBL_RECORD_SIZE_CRC);
156 vtbl_rec->crc = cpu_to_be32(crc);
157 }
158
shengyong28485942015-05-26 10:07:10 +0000159 return ubi_update_layout_vol(ubi);
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300160}
161
162/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300163 * vtbl_check - check if volume table is not corrupted and sensible.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400164 * @ubi: UBI device description object
165 * @vtbl: volume table
166 *
167 * This function returns zero if @vtbl is all right, %1 if CRC is incorrect,
168 * and %-EINVAL if it contains inconsistent data.
169 */
170static int vtbl_check(const struct ubi_device *ubi,
171 const struct ubi_vtbl_record *vtbl)
172{
173 int i, n, reserved_pebs, alignment, data_pad, vol_type, name_len;
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300174 int upd_marker, err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400175 uint32_t crc;
176 const char *name;
177
178 for (i = 0; i < ubi->vtbl_slots; i++) {
179 cond_resched();
180
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300181 reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
182 alignment = be32_to_cpu(vtbl[i].alignment);
183 data_pad = be32_to_cpu(vtbl[i].data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400184 upd_marker = vtbl[i].upd_marker;
185 vol_type = vtbl[i].vol_type;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300186 name_len = be16_to_cpu(vtbl[i].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400187 name = &vtbl[i].name[0];
188
189 crc = crc32(UBI_CRC32_INIT, &vtbl[i], UBI_VTBL_RECORD_SIZE_CRC);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300190 if (be32_to_cpu(vtbl[i].crc) != crc) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300191 ubi_err(ubi, "bad CRC at record %u: %#08x, not %#08x",
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300192 i, crc, be32_to_cpu(vtbl[i].crc));
Artem Bityutskiy1f021e1d2012-05-16 17:56:50 +0300193 ubi_dump_vtbl_record(&vtbl[i], i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400194 return 1;
195 }
196
197 if (reserved_pebs == 0) {
198 if (memcmp(&vtbl[i], &empty_vtbl_record,
199 UBI_VTBL_RECORD_SIZE)) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300200 err = 2;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400201 goto bad;
202 }
203 continue;
204 }
205
206 if (reserved_pebs < 0 || alignment < 0 || data_pad < 0 ||
207 name_len < 0) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300208 err = 3;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400209 goto bad;
210 }
211
212 if (alignment > ubi->leb_size || alignment == 0) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300213 err = 4;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400214 goto bad;
215 }
216
Kyungmin Parkcadb40c2008-05-22 10:32:18 +0900217 n = alignment & (ubi->min_io_size - 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400218 if (alignment != 1 && n) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300219 err = 5;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400220 goto bad;
221 }
222
223 n = ubi->leb_size % alignment;
224 if (data_pad != n) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300225 ubi_err(ubi, "bad data_pad, has to be %d", n);
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300226 err = 6;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400227 goto bad;
228 }
229
230 if (vol_type != UBI_VID_DYNAMIC && vol_type != UBI_VID_STATIC) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300231 err = 7;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400232 goto bad;
233 }
234
235 if (upd_marker != 0 && upd_marker != 1) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300236 err = 8;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400237 goto bad;
238 }
239
240 if (reserved_pebs > ubi->good_peb_count) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300241 ubi_err(ubi, "too large reserved_pebs %d, good PEBs %d",
Deepak Saxena762a9f292008-10-08 12:56:24 -0700242 reserved_pebs, ubi->good_peb_count);
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300243 err = 9;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400244 goto bad;
245 }
246
247 if (name_len > UBI_VOL_NAME_MAX) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300248 err = 10;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400249 goto bad;
250 }
251
252 if (name[0] == '\0') {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300253 err = 11;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400254 goto bad;
255 }
256
257 if (name_len != strnlen(name, name_len + 1)) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300258 err = 12;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400259 goto bad;
260 }
261 }
262
263 /* Checks that all names are unique */
264 for (i = 0; i < ubi->vtbl_slots - 1; i++) {
265 for (n = i + 1; n < ubi->vtbl_slots; n++) {
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300266 int len1 = be16_to_cpu(vtbl[i].name_len);
267 int len2 = be16_to_cpu(vtbl[n].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400268
269 if (len1 > 0 && len1 == len2 &&
270 !strncmp(vtbl[i].name, vtbl[n].name, len1)) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300271 ubi_err(ubi, "volumes %d and %d have the same name \"%s\"",
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300272 i, n, vtbl[i].name);
Artem Bityutskiy1f021e1d2012-05-16 17:56:50 +0300273 ubi_dump_vtbl_record(&vtbl[i], i);
274 ubi_dump_vtbl_record(&vtbl[n], n);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400275 return -EINVAL;
276 }
277 }
278 }
279
280 return 0;
281
282bad:
Tanya Brokhman326087032014-10-20 19:57:00 +0300283 ubi_err(ubi, "volume table check failed: record %d, error %d", i, err);
Artem Bityutskiy1f021e1d2012-05-16 17:56:50 +0300284 ubi_dump_vtbl_record(&vtbl[i], i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400285 return -EINVAL;
286}
287
288/**
289 * create_vtbl - create a copy of volume table.
290 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300291 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400292 * @copy: number of the volume table copy
293 * @vtbl: contents of the volume table
294 *
295 * This function returns zero in case of success and a negative error code in
296 * case of failure.
297 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300298static int create_vtbl(struct ubi_device *ubi, struct ubi_attach_info *ai,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400299 int copy, void *vtbl)
300{
301 int err, tries = 0;
Boris Brezillon3291b522016-09-16 16:59:26 +0200302 struct ubi_vid_io_buf *vidb;
Richard Weinberger6bdccff2011-12-22 16:12:57 +0100303 struct ubi_vid_hdr *vid_hdr;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300304 struct ubi_ainf_peb *new_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400305
Artem Bityutskiy719bb842012-08-27 17:14:58 +0300306 dbg_gen("create volume table (copy #%d)", copy + 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400307
Boris Brezillon3291b522016-09-16 16:59:26 +0200308 vidb = ubi_alloc_vid_buf(ubi, GFP_KERNEL);
309 if (!vidb)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400310 return -ENOMEM;
311
Boris Brezillon3291b522016-09-16 16:59:26 +0200312 vid_hdr = ubi_get_vid_hdr(vidb);
313
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400314retry:
Artem Bityutskiyc87fbd72012-05-17 15:38:56 +0300315 new_aeb = ubi_early_get_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 */
Boris Brezillon3291b522016-09-16 16:59:26 +0200330 err = ubi_io_write_vid_hdr(ubi, new_aeb->pnum, vidb);
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 Bityutskiy35611882012-05-17 15:31:31 +0300341 * of this LEB as it will be deleted and freed in 'ubi_add_to_av()'.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400342 */
Artem Bityutskiy35611882012-05-17 15:31:31 +0300343 err = ubi_add_to_av(ubi, ai, new_aeb->pnum, new_aeb->ec, vid_hdr, 0);
Boris Brezillon91f42852016-09-16 16:59:18 +0200344 ubi_free_aeb(ai, new_aeb);
Boris Brezillon3291b522016-09-16 16:59:26 +0200345 ubi_free_vid_buf(vidb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400346 return err;
347
348write_error:
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300349 if (err == -EIO && ++tries <= 5) {
350 /*
351 * Probably this physical eraseblock went bad, try to pick
352 * another one.
353 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300354 list_add(&new_aeb->u.list, &ai->erase);
Florin Malitac4e90ec2007-05-03 11:49:57 -0400355 goto retry;
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300356 }
Boris Brezillon91f42852016-09-16 16:59:18 +0200357 ubi_free_aeb(ai, new_aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400358out_free:
Boris Brezillon3291b522016-09-16 16:59:26 +0200359 ubi_free_vid_buf(vidb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400360 return err;
361
362}
363
364/**
365 * process_lvol - process the layout volume.
366 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300367 * @ai: attaching information
Artem Bityutskiy517af482012-05-17 14:38:34 +0300368 * @av: layout volume attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400369 *
370 * This function is responsible for reading the layout volume, ensuring it is
371 * not corrupted, and recovering from corruptions if needed. Returns volume
372 * table in case of success and a negative error code in case of failure.
373 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300374static struct ubi_vtbl_record *process_lvol(struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300375 struct ubi_attach_info *ai,
Artem Bityutskiy517af482012-05-17 14:38:34 +0300376 struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400377{
378 int err;
379 struct rb_node *rb;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300380 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400381 struct ubi_vtbl_record *leb[UBI_LAYOUT_VOLUME_EBS] = { NULL, NULL };
382 int leb_corrupted[UBI_LAYOUT_VOLUME_EBS] = {1, 1};
383
384 /*
385 * UBI goes through the following steps when it changes the layout
386 * volume:
387 * a. erase LEB 0;
388 * b. write new data to LEB 0;
389 * c. erase LEB 1;
390 * d. write new data to LEB 1.
391 *
392 * Before the change, both LEBs contain the same data.
393 *
394 * Due to unclean reboots, the contents of LEB 0 may be lost, but there
395 * should LEB 1. So it is OK if LEB 0 is corrupted while LEB 1 is not.
396 * Similarly, LEB 1 may be lost, but there should be LEB 0. And
397 * finally, unclean reboots may result in a situation when neither LEB
398 * 0 nor LEB 1 are corrupted, but they are different. In this case, LEB
399 * 0 contains more recent information.
400 *
401 * So the plan is to first check LEB 0. Then
Shinya Kuribayashibe436f62010-05-06 19:22:09 +0900402 * a. if LEB 0 is OK, it must be containing the most recent data; then
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400403 * we compare it with LEB 1, and if they are different, we copy LEB
404 * 0 to LEB 1;
405 * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LEB 1
406 * to LEB 0.
407 */
408
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300409 dbg_gen("check layout volume");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400410
411 /* Read both LEB 0 and LEB 1 into memory */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300412 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300413 leb[aeb->lnum] = vzalloc(ubi->vtbl_size);
414 if (!leb[aeb->lnum]) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400415 err = -ENOMEM;
416 goto out_free;
417 }
418
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300419 err = ubi_io_read_data(ubi, leb[aeb->lnum], aeb->pnum, 0,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400420 ubi->vtbl_size);
Brian Norrisd57f40542011-09-20 18:34:25 -0700421 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err))
Artem Bityutskiybeeea632008-05-20 09:54:02 +0300422 /*
423 * Scrub the PEB later. Note, -EBADMSG indicates an
424 * uncorrectable ECC error, but we have our own CRC and
425 * the data will be checked later. If the data is OK,
426 * the PEB will be scrubbed (because we set
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300427 * aeb->scrub). If the data is not OK, the contents of
Artem Bityutskiybeeea632008-05-20 09:54:02 +0300428 * the PEB will be recovered from the second copy, and
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300429 * aeb->scrub will be cleared in
Artem Bityutskiy35611882012-05-17 15:31:31 +0300430 * 'ubi_add_to_av()'.
Artem Bityutskiybeeea632008-05-20 09:54:02 +0300431 */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300432 aeb->scrub = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400433 else if (err)
434 goto out_free;
435 }
436
437 err = -EINVAL;
438 if (leb[0]) {
439 leb_corrupted[0] = vtbl_check(ubi, leb[0]);
440 if (leb_corrupted[0] < 0)
441 goto out_free;
442 }
443
444 if (!leb_corrupted[0]) {
445 /* LEB 0 is OK */
446 if (leb[1])
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300447 leb_corrupted[1] = memcmp(leb[0], leb[1],
448 ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400449 if (leb_corrupted[1]) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300450 ubi_warn(ubi, "volume table copy #2 is corrupted");
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300451 err = create_vtbl(ubi, ai, 1, leb[0]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400452 if (err)
453 goto out_free;
Tanya Brokhman326087032014-10-20 19:57:00 +0300454 ubi_msg(ubi, "volume table was restored");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400455 }
456
457 /* Both LEB 1 and LEB 2 are OK and consistent */
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300458 vfree(leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400459 return leb[0];
460 } else {
461 /* LEB 0 is corrupted or does not exist */
462 if (leb[1]) {
463 leb_corrupted[1] = vtbl_check(ubi, leb[1]);
464 if (leb_corrupted[1] < 0)
465 goto out_free;
466 }
467 if (leb_corrupted[1]) {
468 /* Both LEB 0 and LEB 1 are corrupted */
Tanya Brokhman326087032014-10-20 19:57:00 +0300469 ubi_err(ubi, "both volume tables are corrupted");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400470 goto out_free;
471 }
472
Tanya Brokhman326087032014-10-20 19:57:00 +0300473 ubi_warn(ubi, "volume table copy #1 is corrupted");
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300474 err = create_vtbl(ubi, ai, 0, leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400475 if (err)
476 goto out_free;
Tanya Brokhman326087032014-10-20 19:57:00 +0300477 ubi_msg(ubi, "volume table was restored");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400478
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300479 vfree(leb[0]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400480 return leb[1];
481 }
482
483out_free:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300484 vfree(leb[0]);
485 vfree(leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400486 return ERR_PTR(err);
487}
488
489/**
490 * create_empty_lvol - create empty layout volume.
491 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300492 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400493 *
494 * This function returns volume table contents in case of success and a
495 * negative error code in case of failure.
496 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300497static struct ubi_vtbl_record *create_empty_lvol(struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300498 struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400499{
500 int i;
501 struct ubi_vtbl_record *vtbl;
502
Joe Perches309b5e42010-11-04 20:07:40 -0700503 vtbl = vzalloc(ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400504 if (!vtbl)
505 return ERR_PTR(-ENOMEM);
506
507 for (i = 0; i < ubi->vtbl_slots; i++)
508 memcpy(&vtbl[i], &empty_vtbl_record, UBI_VTBL_RECORD_SIZE);
509
510 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
511 int err;
512
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300513 err = create_vtbl(ubi, ai, i, vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400514 if (err) {
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300515 vfree(vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400516 return ERR_PTR(err);
517 }
518 }
519
520 return vtbl;
521}
522
523/**
524 * init_volumes - initialize volume information for existing volumes.
525 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300526 * @ai: scanning information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400527 * @vtbl: volume table
528 *
529 * This function allocates volume description objects for existing volumes.
530 * Returns zero in case of success and a negative error code in case of
531 * failure.
532 */
Artem Bityutskiyafc15a82012-05-17 07:46:17 +0300533static int init_volumes(struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300534 const struct ubi_attach_info *ai,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400535 const struct ubi_vtbl_record *vtbl)
536{
Richard Weinberger34653fd2018-05-28 22:04:33 +0200537 int i, err, reserved_pebs = 0;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300538 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400539 struct ubi_volume *vol;
540
541 for (i = 0; i < ubi->vtbl_slots; i++) {
542 cond_resched();
543
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300544 if (be32_to_cpu(vtbl[i].reserved_pebs) == 0)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400545 continue; /* Empty record */
546
547 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
548 if (!vol)
549 return -ENOMEM;
550
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300551 vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
552 vol->alignment = be32_to_cpu(vtbl[i].alignment);
553 vol->data_pad = be32_to_cpu(vtbl[i].data_pad);
Peter Hortonff998792010-01-05 11:14:36 +0000554 vol->upd_marker = vtbl[i].upd_marker;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400555 vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ?
556 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300557 vol->name_len = be16_to_cpu(vtbl[i].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400558 vol->usable_leb_size = ubi->leb_size - vol->data_pad;
559 memcpy(vol->name, vtbl[i].name, vol->name_len);
560 vol->name[vol->name_len] = '\0';
561 vol->vol_id = i;
562
Quentin Schulz62652512018-07-02 11:43:50 +0200563 if (vtbl[i].flags & UBI_VTBL_SKIP_CRC_CHECK_FLG)
564 vol->skip_check = 1;
565
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200566 if (vtbl[i].flags & UBI_VTBL_AUTORESIZE_FLG) {
567 /* Auto re-size flag may be set only for one volume */
568 if (ubi->autoresize_vol_id != -1) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300569 ubi_err(ubi, "more than one auto-resize volume (%d and %d)",
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300570 ubi->autoresize_vol_id, i);
Adrian Bunkf7f028372008-03-03 20:07:52 +0200571 kfree(vol);
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200572 return -EINVAL;
573 }
574
575 ubi->autoresize_vol_id = i;
576 }
577
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400578 ubi_assert(!ubi->volumes[i]);
579 ubi->volumes[i] = vol;
580 ubi->vol_count += 1;
581 vol->ubi = ubi;
582 reserved_pebs += vol->reserved_pebs;
583
584 /*
Richard Weinberger25677472018-06-12 09:33:16 +0200585 * We use ubi->peb_count and not vol->reserved_pebs because
586 * we want to keep the code simple. Otherwise we'd have to
587 * resize/check the bitmap upon volume resize too.
588 * Allocating a few bytes more does not hurt.
589 */
590 err = ubi_fastmap_init_checkmap(vol, ubi->peb_count);
591 if (err)
592 return err;
593
594 /*
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400595 * In case of dynamic volume UBI knows nothing about how many
596 * data is stored there. So assume the whole volume is used.
597 */
598 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
599 vol->used_ebs = vol->reserved_pebs;
600 vol->last_eb_bytes = vol->usable_leb_size;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300601 vol->used_bytes =
602 (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400603 continue;
604 }
605
606 /* Static volumes only */
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300607 av = ubi_find_av(ai, i);
Richard Weinbergere8c235b2014-07-08 16:04:44 +0200608 if (!av || !av->leb_count) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400609 /*
610 * No eraseblocks belonging to this volume found. We
611 * don't actually know whether this static volume is
612 * completely corrupted or just contains no data. And
613 * we cannot know this as long as data size is not
614 * stored on flash. So we just assume the volume is
615 * empty. FIXME: this should be handled.
616 */
617 continue;
618 }
619
Artem Bityutskiy517af482012-05-17 14:38:34 +0300620 if (av->leb_count != av->used_ebs) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400621 /*
622 * We found a static volume which misses several
623 * eraseblocks. Treat it as corrupted.
624 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300625 ubi_warn(ubi, "static volume %d misses %d LEBs - corrupted",
Artem Bityutskiy517af482012-05-17 14:38:34 +0300626 av->vol_id, av->used_ebs - av->leb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400627 vol->corrupted = 1;
628 continue;
629 }
630
Artem Bityutskiy517af482012-05-17 14:38:34 +0300631 vol->used_ebs = av->used_ebs;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300632 vol->used_bytes =
633 (long long)(vol->used_ebs - 1) * vol->usable_leb_size;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300634 vol->used_bytes += av->last_data_size;
635 vol->last_eb_bytes = av->last_data_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400636 }
637
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200638 /* And add the layout volume */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400639 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
640 if (!vol)
641 return -ENOMEM;
642
643 vol->reserved_pebs = UBI_LAYOUT_VOLUME_EBS;
Richard Weinberger1f4f4342012-01-10 17:57:03 +0100644 vol->alignment = UBI_LAYOUT_VOLUME_ALIGN;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400645 vol->vol_type = UBI_DYNAMIC_VOLUME;
646 vol->name_len = sizeof(UBI_LAYOUT_VOLUME_NAME) - 1;
647 memcpy(vol->name, UBI_LAYOUT_VOLUME_NAME, vol->name_len + 1);
648 vol->usable_leb_size = ubi->leb_size;
649 vol->used_ebs = vol->reserved_pebs;
650 vol->last_eb_bytes = vol->reserved_pebs;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300651 vol->used_bytes =
652 (long long)vol->used_ebs * (ubi->leb_size - vol->data_pad);
Artem Bityutskiy91f2d532008-01-24 11:23:23 +0200653 vol->vol_id = UBI_LAYOUT_VOLUME_ID;
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200654 vol->ref_count = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400655
656 ubi_assert(!ubi->volumes[i]);
657 ubi->volumes[vol_id2idx(ubi, vol->vol_id)] = vol;
658 reserved_pebs += vol->reserved_pebs;
659 ubi->vol_count += 1;
660 vol->ubi = ubi;
Richard Weinberger34653fd2018-05-28 22:04:33 +0200661 err = ubi_fastmap_init_checkmap(vol, UBI_LAYOUT_VOLUME_EBS);
662 if (err)
663 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400664
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300665 if (reserved_pebs > ubi->avail_pebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300666 ubi_err(ubi, "not enough PEBs, required %d, available %d",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400667 reserved_pebs, ubi->avail_pebs);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300668 if (ubi->corr_peb_count)
Tanya Brokhman326087032014-10-20 19:57:00 +0300669 ubi_err(ubi, "%d PEBs are corrupted and not used",
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300670 ubi->corr_peb_count);
shengyong7c7feb22015-09-28 17:57:19 +0000671 return -ENOSPC;
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300672 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400673 ubi->rsvd_pebs += reserved_pebs;
674 ubi->avail_pebs -= reserved_pebs;
675
676 return 0;
677}
678
679/**
Artem Bityutskiy517af482012-05-17 14:38:34 +0300680 * check_av - check volume attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400681 * @vol: UBI volume description object
Artem Bityutskiy517af482012-05-17 14:38:34 +0300682 * @av: volume attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400683 *
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300684 * This function returns zero if the volume attaching information is consistent
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400685 * to the data read from the volume tabla, and %-EINVAL if not.
686 */
Tanya Brokhman45fc5c82014-11-09 13:06:25 +0200687static int check_av(const struct ubi_volume *vol,
Artem Bityutskiy517af482012-05-17 14:38:34 +0300688 const struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400689{
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300690 int err;
691
Artem Bityutskiy517af482012-05-17 14:38:34 +0300692 if (av->highest_lnum >= vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300693 err = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400694 goto bad;
695 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300696 if (av->leb_count > vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300697 err = 2;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400698 goto bad;
699 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300700 if (av->vol_type != vol->vol_type) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300701 err = 3;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400702 goto bad;
703 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300704 if (av->used_ebs > vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300705 err = 4;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400706 goto bad;
707 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300708 if (av->data_pad != vol->data_pad) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300709 err = 5;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400710 goto bad;
711 }
712 return 0;
713
714bad:
Tanya Brokhman45fc5c82014-11-09 13:06:25 +0200715 ubi_err(vol->ubi, "bad attaching information, error %d", err);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300716 ubi_dump_av(av);
Artem Bityutskiy766381f2012-05-16 17:53:17 +0300717 ubi_dump_vol_info(vol);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400718 return -EINVAL;
719}
720
721/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300722 * check_attaching_info - check that attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400723 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300724 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400725 *
726 * Even though we protect on-flash data by CRC checksums, we still don't trust
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300727 * the media. This function ensures that attaching information is consistent to
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300728 * the information read from the volume table. Returns zero if the attaching
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400729 * information is OK and %-EINVAL if it is not.
730 */
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300731static int check_attaching_info(const struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300732 struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400733{
734 int err, i;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300735 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400736 struct ubi_volume *vol;
737
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300738 if (ai->vols_found > UBI_INT_VOL_COUNT + ubi->vtbl_slots) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300739 ubi_err(ubi, "found %d volumes while attaching, maximum is %d + %d",
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300740 ai->vols_found, UBI_INT_VOL_COUNT, ubi->vtbl_slots);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400741 return -EINVAL;
742 }
743
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300744 if (ai->highest_vol_id >= ubi->vtbl_slots + UBI_INT_VOL_COUNT &&
745 ai->highest_vol_id < UBI_INTERNAL_VOL_START) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300746 ubi_err(ubi, "too large volume ID %d found",
747 ai->highest_vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400748 return -EINVAL;
749 }
750
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400751 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
752 cond_resched();
753
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300754 av = ubi_find_av(ai, i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400755 vol = ubi->volumes[i];
756 if (!vol) {
Artem Bityutskiy517af482012-05-17 14:38:34 +0300757 if (av)
Artem Bityutskiyd717dc22012-05-17 15:36:39 +0300758 ubi_remove_av(ai, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400759 continue;
760 }
761
762 if (vol->reserved_pebs == 0) {
763 ubi_assert(i < ubi->vtbl_slots);
764
Artem Bityutskiy517af482012-05-17 14:38:34 +0300765 if (!av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400766 continue;
767
768 /*
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300769 * During attaching we found a volume which does not
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400770 * exist according to the information in the volume
771 * table. This must have happened due to an unclean
772 * reboot while the volume was being removed. Discard
773 * these eraseblocks.
774 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300775 ubi_msg(ubi, "finish volume %d removal", av->vol_id);
Artem Bityutskiyd717dc22012-05-17 15:36:39 +0300776 ubi_remove_av(ai, av);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300777 } else if (av) {
Tanya Brokhman45fc5c82014-11-09 13:06:25 +0200778 err = check_av(vol, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400779 if (err)
780 return err;
781 }
782 }
783
784 return 0;
785}
786
787/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300788 * ubi_read_volume_table - read the volume table.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400789 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300790 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400791 *
792 * This function reads volume table, checks it, recover from errors if needed,
793 * or creates it if needed. Returns zero in case of success and a negative
794 * error code in case of failure.
795 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300796int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400797{
798 int i, err;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300799 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400800
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300801 empty_vtbl_record.crc = cpu_to_be32(0xf116c36b);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400802
803 /*
804 * The number of supported volumes is limited by the eraseblock size
805 * and by the UBI_MAX_VOLUMES constant.
806 */
807 ubi->vtbl_slots = ubi->leb_size / UBI_VTBL_RECORD_SIZE;
808 if (ubi->vtbl_slots > UBI_MAX_VOLUMES)
809 ubi->vtbl_slots = UBI_MAX_VOLUMES;
810
811 ubi->vtbl_size = ubi->vtbl_slots * UBI_VTBL_RECORD_SIZE;
812 ubi->vtbl_size = ALIGN(ubi->vtbl_size, ubi->min_io_size);
813
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300814 av = ubi_find_av(ai, UBI_LAYOUT_VOLUME_ID);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300815 if (!av) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400816 /*
817 * No logical eraseblocks belonging to the layout volume were
818 * found. This could mean that the flash is just empty. In
819 * this case we create empty layout volume.
820 *
821 * But if flash is not empty this must be a corruption or the
822 * MTD device just contains garbage.
823 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300824 if (ai->is_empty) {
825 ubi->vtbl = create_empty_lvol(ubi, ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400826 if (IS_ERR(ubi->vtbl))
827 return PTR_ERR(ubi->vtbl);
828 } else {
Tanya Brokhman326087032014-10-20 19:57:00 +0300829 ubi_err(ubi, "the layout volume was not found");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400830 return -EINVAL;
831 }
832 } else {
Artem Bityutskiy517af482012-05-17 14:38:34 +0300833 if (av->leb_count > UBI_LAYOUT_VOLUME_EBS) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400834 /* This must not happen with proper UBI images */
Tanya Brokhman326087032014-10-20 19:57:00 +0300835 ubi_err(ubi, "too many LEBs (%d) in layout volume",
Artem Bityutskiy517af482012-05-17 14:38:34 +0300836 av->leb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400837 return -EINVAL;
838 }
839
Artem Bityutskiy517af482012-05-17 14:38:34 +0300840 ubi->vtbl = process_lvol(ubi, ai, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400841 if (IS_ERR(ubi->vtbl))
842 return PTR_ERR(ubi->vtbl);
843 }
844
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300845 ubi->avail_pebs = ubi->good_peb_count - ubi->corr_peb_count;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400846
847 /*
848 * The layout volume is OK, initialize the corresponding in-RAM data
849 * structures.
850 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300851 err = init_volumes(ubi, ai, ubi->vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400852 if (err)
853 goto out_free;
854
855 /*
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300856 * Make sure that the attaching information is consistent to the
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400857 * information stored in the volume table.
858 */
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300859 err = check_attaching_info(ubi, ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400860 if (err)
861 goto out_free;
862
863 return 0;
864
865out_free:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300866 vfree(ubi->vtbl);
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300867 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
Richard Weinberger34653fd2018-05-28 22:04:33 +0200868 ubi_fastmap_destroy_checkmap(ubi->volumes[i]);
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300869 kfree(ubi->volumes[i]);
870 ubi->volumes[i] = NULL;
871 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400872 return err;
873}
874
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400875/**
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300876 * self_vtbl_check - check volume table.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400877 * @ubi: UBI device description object
878 */
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300879static void self_vtbl_check(const struct ubi_device *ubi)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400880{
Ezequiel Garcia64575572012-11-28 09:18:29 -0300881 if (!ubi_dbg_chk_gen(ubi))
Artem Bityutskiy92d124f2011-03-14 18:17:40 +0200882 return;
883
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400884 if (vtbl_check(ubi, ubi->vtbl)) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300885 ubi_err(ubi, "self-check failed");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400886 BUG();
887 }
888}